@omnia/fx-models 8.0.40-dev → 8.0.41-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ManifestIds.d.ts CHANGED
@@ -138,7 +138,8 @@ export declare class OmniaWebComponentManifests {
138
138
  static get SignInOmniaRenderer(): Guid;
139
139
  static get SignInIdentityCreationRequestRenderer(): Guid;
140
140
  static get SignOut(): Guid;
141
- static get MagicLink(): Guid;
141
+ static get MagicLinkSuccess(): Guid;
142
+ static get MagicLinkFailure(): Guid;
142
143
  static get LayoutRendererCanvas(): Guid;
143
144
  static get VersionedLayoutBladeBuilder(): Guid;
144
145
  static get VersionedLayoutListBladeBuilder(): Guid;
package/ManifestIds.js CHANGED
@@ -435,8 +435,11 @@ class OmniaWebComponentManifests {
435
435
  static get SignOut() {
436
436
  return new models_1.Guid("f297290b-5ea4-409a-9738-ca880f1ea612");
437
437
  }
438
- static get MagicLink() {
439
- return new models_1.Guid("f365f5cb-3a69-4c20-be7b-96423bbc3eca");
438
+ static get MagicLinkSuccess() {
439
+ return new models_1.Guid("168b37eb-8cbc-4e46-944c-bf9a6a5e9063");
440
+ }
441
+ static get MagicLinkFailure() {
442
+ return new models_1.Guid("d836de74-ad89-4f49-99e2-1046b1ba2cab");
440
443
  }
441
444
  static get LayoutRendererCanvas() {
442
445
  return new models_1.Guid("f346db89-a53b-4046-90b1-795429fb0162");
@@ -1,4 +1,4 @@
1
- import { TypographySize, TypographyType, VelcronImageRatios } from "@omnia/fx-models";
1
+ import { TypographySize, TypographyType, VelcronImageRatios, VelcronSpacing } from "@omnia/fx-models";
2
2
  export interface ResolvedPropertyEditor {
3
3
  editor: VelcronPropertyEditor;
4
4
  }
@@ -85,6 +85,10 @@ export interface VelcronState {
85
85
  content?: VelcronContentState;
86
86
  header?: VelcronHeaderState;
87
87
  properties?: VelcronPropertiesState;
88
+ spacing?: VelcronSpacingState;
89
+ }
90
+ export interface VelcronSpacingState {
91
+ chrome?: VelcronSpacing;
88
92
  }
89
93
  export interface VelcronHeaderState {
90
94
  title?: VelcronTextState;
@@ -196,6 +200,14 @@ export declare const VelcronColorSchemasStateBinding: {
196
200
  filled: string;
197
201
  };
198
202
  };
203
+ export declare const VelcronSpacingStateBinding: {
204
+ chrome: {
205
+ top: string;
206
+ right: string;
207
+ bottom: string;
208
+ left: string;
209
+ };
210
+ };
199
211
  export declare const VelcronStateBinding: {
200
212
  colorSchemas: {
201
213
  main: {
@@ -266,4 +278,12 @@ export declare const VelcronStateBinding: {
266
278
  };
267
279
  icon: string;
268
280
  };
281
+ spacing: {
282
+ chrome: {
283
+ top: string;
284
+ right: string;
285
+ bottom: string;
286
+ left: string;
287
+ };
288
+ };
269
289
  };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VelcronStateBinding = exports.VelcronColorSchemasStateBinding = exports.VelcronContentStateBinding = exports.VelcronHeaderStateBinding = exports.VelcronImagesStateBinding = exports.BuiltInPropertyEditorTypes = void 0;
3
+ exports.VelcronStateBinding = exports.VelcronSpacingStateBinding = exports.VelcronColorSchemasStateBinding = exports.VelcronContentStateBinding = exports.VelcronHeaderStateBinding = exports.VelcronImagesStateBinding = exports.BuiltInPropertyEditorTypes = void 0;
4
4
  var BuiltInPropertyEditorTypes;
5
5
  (function (BuiltInPropertyEditorTypes) {
6
6
  BuiltInPropertyEditorTypes["text"] = "text";
@@ -83,10 +83,26 @@ exports.VelcronColorSchemasStateBinding = {
83
83
  filled: "{{colorSchemas.main.filled}}"
84
84
  }
85
85
  };
86
+ exports.VelcronSpacingStateBinding = {
87
+ chrome: {
88
+ "top": "{{spacing.chrome.top}}",
89
+ "right": "{{spacing.chrome.right}}",
90
+ "bottom": "{{spacing.chrome.bottom}}",
91
+ "left": "{{spacing.chrome.left}}",
92
+ }
93
+ };
94
+ // export interface VelcronSpacingState {
95
+ // chrome?: VelcronDimensionState
96
+ // }
97
+ // export interface VelcronDimensionState {
98
+ // margin?: VelcronSpacing;
99
+ // padding?: VelcronSpacing;
100
+ // }
86
101
  exports.VelcronStateBinding = {
87
102
  colorSchemas: exports.VelcronColorSchemasStateBinding,
88
103
  images: exports.VelcronImagesStateBinding,
89
104
  content: exports.VelcronContentStateBinding,
90
105
  header: exports.VelcronHeaderStateBinding,
106
+ spacing: exports.VelcronSpacingStateBinding
91
107
  //properties?:VelcronPropertiesState,
92
108
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.40-dev",
4
+ "version": "8.0.41-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"