@omnia/fx 8.0.173-dev → 8.0.175-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.
Files changed (32) hide show
  1. package/internal-do-not-import-from-here/core/services/ServiceLocator.d.ts +1 -0
  2. package/internal-do-not-import-from-here/services/FileStorageService.d.ts +5 -1
  3. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +45 -24
  4. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +341 -0
  5. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +341 -0
  6. package/internal-do-not-import-from-here/ux/directives/Directives.d.ts +5 -1
  7. package/internal-do-not-import-from-here/ux/directives/motion/Motion.d.ts +1 -0
  8. package/internal-do-not-import-from-here/ux/models/MotionDirective.d.ts +6 -0
  9. package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -0
  10. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
  11. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
  12. package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +13 -492
  13. package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +2 -2
  14. package/internal-do-not-import-from-here/ux/use/UseInterSectionObserver.d.ts +0 -1
  15. package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/useVelcronStateManager.d.ts +4 -1
  16. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +50 -0
  17. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.d.ts +8 -3
  18. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +10 -0
  19. package/internal-do-not-import-from-here/ux/velcron/core/models/Effects.d.ts +324 -0
  20. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +4 -1
  21. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronState.d.ts +15 -23
  22. package/internal-do-not-import-from-here/ux/velcron/core/models/index.d.ts +1 -0
  23. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +3 -1
  24. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/old/state/VelcronColorSchemaBuilder.d.ts +2 -2
  25. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/BlueprintEditor.d.ts +1 -22
  26. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/MarkdownEditor.d.ts +22 -1
  27. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SliderEditor.d.ts +22 -1
  28. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SwitchEditor.d.ts +22 -0
  29. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/TextEditor.d.ts +22 -1
  30. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/TypographyEditor.d.ts +22 -1
  31. package/internal-do-not-import-from-here/ux/velcron/stores/useVelcronStateManager.d.ts +4 -1
  32. package/package.json +2 -2
@@ -3,13 +3,16 @@ import { VelcronImageRatios } from "./VelcronDefinitions";
3
3
  export interface VelcronState {
4
4
  images?: VelcronImagesState;
5
5
  container?: {
6
+ maxWidth?: number;
7
+ minHeight?: number;
8
+ alignX?: string;
9
+ alignY?: string;
6
10
  colorSchemaType?: string;
7
11
  spacing?: VelcronSpacing;
8
12
  blueprint?: ContainerBlueprint | ContainerVariant;
9
13
  background?: BackgroundDefinition;
10
14
  };
11
15
  grid?: VelcronGridState;
12
- colorSchemas?: VelcronColorSchemasState;
13
16
  content?: VelcronContentState;
14
17
  header?: VelcronHeaderState;
15
18
  properties?: VelcronPropertiesState;
@@ -59,11 +62,6 @@ export interface VelcronImageState {
59
62
  width?: number;
60
63
  height?: number;
61
64
  }
62
- export interface VelcronStylingState {
63
- }
64
- export interface VelcronColorSchemasState {
65
- main: string;
66
- }
67
65
  export declare const VelcronImagesStateBinding: {
68
66
  main: {
69
67
  editor: string;
@@ -96,16 +94,19 @@ export declare const VelcronStateMapping: {
96
94
  };
97
95
  };
98
96
  export declare const VelcronStateBinding: {
99
- colorSchemas: {
100
- main_depricated: {
101
- value: string;
102
- type: string;
103
- filled: string;
104
- };
105
- };
106
97
  container: {
98
+ maxWidth: string;
99
+ minHeight: string;
100
+ alignX: string;
101
+ alignY: string;
107
102
  colorSchemaType: string;
108
- spacing: string;
103
+ spacing: {
104
+ value: string;
105
+ top: string;
106
+ right: string;
107
+ bottom: string;
108
+ left: string;
109
+ };
109
110
  blueprint: string;
110
111
  background: {
111
112
  value: string;
@@ -174,13 +175,4 @@ export declare const VelcronStateBinding: {
174
175
  };
175
176
  icon: string;
176
177
  };
177
- spacing: {
178
- container: {
179
- value: string;
180
- top: string;
181
- right: string;
182
- bottom: string;
183
- left: string;
184
- };
185
- };
186
178
  };
@@ -6,3 +6,4 @@ export * from "./VelcronUnitProvider";
6
6
  export * from "./VelcronPropertyEditorDefinitions";
7
7
  export * from "./ActionHooks";
8
8
  export * from "./VelcronState";
9
+ export * from "./Effects";
@@ -1,4 +1,4 @@
1
- import { TypographyType, VelcronEditor, VelcronTypographyEditorSettings } from "@omnia/fx-models";
1
+ import { TypographyType, VelcronEditor, VelcronTypographyEditorSettings, VelcronSliderPropertyEditorSettings } from "@omnia/fx-models";
2
2
  export declare class VelcronEditorBuilder {
3
3
  private editors;
4
4
  private formatStateMapping;
@@ -12,7 +12,9 @@ export declare class VelcronEditorBuilder {
12
12
  blockHeaderEditor: () => VelcronEditorBuilder;
13
13
  typographyEditor: (stateMapping: string, settings: VelcronTypographyEditorSettings) => VelcronEditorBuilder;
14
14
  backgroundEditor: (name: string, stateMapping: string, type: "image" | "video") => VelcronEditorBuilder;
15
+ sliderEditor: (name: string, stateMapping: string, settings: VelcronSliderPropertyEditorSettings) => VelcronEditorBuilder;
15
16
  gridEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
17
+ widthEditor: (name: string, stateMapping: string) => VelcronEditorBuilder;
16
18
  };
17
19
  build(): VelcronEditor<any>[];
18
20
  }
@@ -1,4 +1,4 @@
1
- import { ColorSchemaType, VelcronState } from "@omnia/fx-models";
1
+ import { ColorSchemaType } from "@omnia/fx-models";
2
2
  import { VelcronStateBuilderBase } from "./VelcronStateBuilderBase";
3
3
  export declare class VelcronColorSchemaStateBuilder extends VelcronStateBuilderBase {
4
4
  private colorSchema;
@@ -12,5 +12,5 @@ export declare class VelcronColorSchemaStateBuilder extends VelcronStateBuilderB
12
12
  add(filled: boolean): VelcronColorSchemaStateBuilder;
13
13
  bind: any;
14
14
  };
15
- protected internalBuild(): VelcronState;
15
+ protected internalBuild(): void;
16
16
  }
@@ -1,4 +1,4 @@
1
- import { EditorLocation, VelcronSpacingEditorSettings } from "@omnia/fx-models";
1
+ import { EditorLocation } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
4
  "preview-color-schema-type": {
@@ -12,11 +12,6 @@ declare const _default: {
12
12
  } & {
13
13
  type: import("vue").PropType<EditorLocation>;
14
14
  };
15
- settings: {
16
- type: import("vue").PropType<VelcronSpacingEditorSettings>;
17
- } & {
18
- type: import("vue").PropType<VelcronSpacingEditorSettings>;
19
- };
20
15
  "onUpdate:modelValue": {
21
16
  type: import("vue").PropType<(value: any) => any>;
22
17
  };
@@ -103,11 +98,6 @@ declare const _default: {
103
98
  } & {
104
99
  type: import("vue").PropType<EditorLocation>;
105
100
  };
106
- settings: {
107
- type: import("vue").PropType<VelcronSpacingEditorSettings>;
108
- } & {
109
- type: import("vue").PropType<VelcronSpacingEditorSettings>;
110
- };
111
101
  "onUpdate:modelValue": {
112
102
  type: import("vue").PropType<(value: any) => any>;
113
103
  };
@@ -197,11 +187,6 @@ declare const _default: {
197
187
  } & {
198
188
  type: import("vue").PropType<EditorLocation>;
199
189
  };
200
- settings: {
201
- type: import("vue").PropType<VelcronSpacingEditorSettings>;
202
- } & {
203
- type: import("vue").PropType<VelcronSpacingEditorSettings>;
204
- };
205
190
  "onUpdate:modelValue": {
206
191
  type: import("vue").PropType<(value: any) => any>;
207
192
  };
@@ -288,11 +273,6 @@ declare const _default: {
288
273
  } & {
289
274
  type: import("vue").PropType<EditorLocation>;
290
275
  };
291
- settings: {
292
- type: import("vue").PropType<VelcronSpacingEditorSettings>;
293
- } & {
294
- type: import("vue").PropType<VelcronSpacingEditorSettings>;
295
- };
296
276
  "onUpdate:modelValue": {
297
277
  type: import("vue").PropType<(value: any) => any>;
298
278
  };
@@ -430,7 +410,6 @@ declare const _default: {
430
410
  };
431
411
  }>;
432
412
  };
433
- settings?: VelcronSpacingEditorSettings;
434
413
  "v-model"?: any;
435
414
  "onUpdate:modelValue"?: (value: any) => any;
436
415
  modelValue?: any;
@@ -1,6 +1,11 @@
1
- import { VelcronMarkdownEditorSettings } from "@omnia/fx-models";
1
+ import { EditorLocation, VelcronMarkdownEditorSettings } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ location: {
5
+ type: import("vue").PropType<EditorLocation>;
6
+ } & {
7
+ type: import("vue").PropType<EditorLocation>;
8
+ };
4
9
  settings: {
5
10
  type: import("vue").PropType<VelcronMarkdownEditorSettings>;
6
11
  } & {
@@ -77,6 +82,11 @@ declare const _default: {
77
82
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
78
83
  "update:modelValue": (value: string) => true;
79
84
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
85
+ location: {
86
+ type: import("vue").PropType<EditorLocation>;
87
+ } & {
88
+ type: import("vue").PropType<EditorLocation>;
89
+ };
80
90
  settings: {
81
91
  type: import("vue").PropType<VelcronMarkdownEditorSettings>;
82
92
  } & {
@@ -158,6 +168,11 @@ declare const _default: {
158
168
  M: {};
159
169
  Defaults: {};
160
170
  }, Readonly<import("vue").ExtractPropTypes<{
171
+ location: {
172
+ type: import("vue").PropType<EditorLocation>;
173
+ } & {
174
+ type: import("vue").PropType<EditorLocation>;
175
+ };
161
176
  settings: {
162
177
  type: import("vue").PropType<VelcronMarkdownEditorSettings>;
163
178
  } & {
@@ -236,6 +251,11 @@ declare const _default: {
236
251
  __isTeleport?: never;
237
252
  __isSuspense?: never;
238
253
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
254
+ location: {
255
+ type: import("vue").PropType<EditorLocation>;
256
+ } & {
257
+ type: import("vue").PropType<EditorLocation>;
258
+ };
239
259
  settings: {
240
260
  type: import("vue").PropType<VelcronMarkdownEditorSettings>;
241
261
  } & {
@@ -378,6 +398,7 @@ declare const _default: {
378
398
  "v-model"?: string;
379
399
  "onUpdate:modelValue"?: (value: string) => any;
380
400
  modelValue?: string;
401
+ location?: EditorLocation;
381
402
  }>, "onUpdate:modelValue"> & {
382
403
  "onUpdate:modelValue"?: (value: string) => any;
383
404
  };
@@ -1,6 +1,11 @@
1
- import { VelcronSliderPropertyEditorSettings } from "@omnia/fx-models";
1
+ import { EditorLocation, VelcronSliderPropertyEditorSettings } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ location: {
5
+ type: import("vue").PropType<EditorLocation>;
6
+ } & {
7
+ type: import("vue").PropType<EditorLocation>;
8
+ };
4
9
  settings: {
5
10
  type: import("vue").PropType<VelcronSliderPropertyEditorSettings>;
6
11
  required: false;
@@ -79,6 +84,11 @@ declare const _default: {
79
84
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
80
85
  "update:modelValue": (value: number) => true;
81
86
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
87
+ location: {
88
+ type: import("vue").PropType<EditorLocation>;
89
+ } & {
90
+ type: import("vue").PropType<EditorLocation>;
91
+ };
82
92
  settings: {
83
93
  type: import("vue").PropType<VelcronSliderPropertyEditorSettings>;
84
94
  required: false;
@@ -162,6 +172,11 @@ declare const _default: {
162
172
  M: {};
163
173
  Defaults: {};
164
174
  }, Readonly<import("vue").ExtractPropTypes<{
175
+ location: {
176
+ type: import("vue").PropType<EditorLocation>;
177
+ } & {
178
+ type: import("vue").PropType<EditorLocation>;
179
+ };
165
180
  settings: {
166
181
  type: import("vue").PropType<VelcronSliderPropertyEditorSettings>;
167
182
  required: false;
@@ -242,6 +257,11 @@ declare const _default: {
242
257
  __isTeleport?: never;
243
258
  __isSuspense?: never;
244
259
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
260
+ location: {
261
+ type: import("vue").PropType<EditorLocation>;
262
+ } & {
263
+ type: import("vue").PropType<EditorLocation>;
264
+ };
245
265
  settings: {
246
266
  type: import("vue").PropType<VelcronSliderPropertyEditorSettings>;
247
267
  required: false;
@@ -386,6 +406,7 @@ declare const _default: {
386
406
  "v-model"?: number;
387
407
  "onUpdate:modelValue"?: (value: number) => any;
388
408
  modelValue?: number;
409
+ location?: EditorLocation;
389
410
  }>, "onUpdate:modelValue"> & {
390
411
  "onUpdate:modelValue"?: (value: number) => any;
391
412
  };
@@ -1,5 +1,11 @@
1
+ import { EditorLocation } from "@omnia/fx-models";
1
2
  declare const _default: {
2
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ location: {
5
+ type: import("vue").PropType<EditorLocation>;
6
+ } & {
7
+ type: import("vue").PropType<EditorLocation>;
8
+ };
3
9
  label: {
4
10
  type: import("vue").PropType<string>;
5
11
  } & {
@@ -76,6 +82,11 @@ declare const _default: {
76
82
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
77
83
  "update:modelValue": (value: boolean) => true;
78
84
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
85
+ location: {
86
+ type: import("vue").PropType<EditorLocation>;
87
+ } & {
88
+ type: import("vue").PropType<EditorLocation>;
89
+ };
79
90
  label: {
80
91
  type: import("vue").PropType<string>;
81
92
  } & {
@@ -157,6 +168,11 @@ declare const _default: {
157
168
  M: {};
158
169
  Defaults: {};
159
170
  }, Readonly<import("vue").ExtractPropTypes<{
171
+ location: {
172
+ type: import("vue").PropType<EditorLocation>;
173
+ } & {
174
+ type: import("vue").PropType<EditorLocation>;
175
+ };
160
176
  label: {
161
177
  type: import("vue").PropType<string>;
162
178
  } & {
@@ -235,6 +251,11 @@ declare const _default: {
235
251
  __isTeleport?: never;
236
252
  __isSuspense?: never;
237
253
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
254
+ location: {
255
+ type: import("vue").PropType<EditorLocation>;
256
+ } & {
257
+ type: import("vue").PropType<EditorLocation>;
258
+ };
238
259
  label: {
239
260
  type: import("vue").PropType<string>;
240
261
  } & {
@@ -377,6 +398,7 @@ declare const _default: {
377
398
  "v-model"?: boolean;
378
399
  "onUpdate:modelValue"?: (value: boolean) => any;
379
400
  modelValue?: boolean;
401
+ location?: EditorLocation;
380
402
  }>, "onUpdate:modelValue"> & {
381
403
  "onUpdate:modelValue"?: (value: boolean) => any;
382
404
  };
@@ -1,6 +1,11 @@
1
- import { VelcronTextEditorSettings } from "@omnia/fx-models";
1
+ import { EditorLocation, VelcronTextEditorSettings } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ location: {
5
+ type: import("vue").PropType<EditorLocation>;
6
+ } & {
7
+ type: import("vue").PropType<EditorLocation>;
8
+ };
4
9
  settings: {
5
10
  type: import("vue").PropType<VelcronTextEditorSettings>;
6
11
  } & {
@@ -82,6 +87,11 @@ declare const _default: {
82
87
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
83
88
  "update:modelValue": (value: string) => true;
84
89
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
90
+ location: {
91
+ type: import("vue").PropType<EditorLocation>;
92
+ } & {
93
+ type: import("vue").PropType<EditorLocation>;
94
+ };
85
95
  settings: {
86
96
  type: import("vue").PropType<VelcronTextEditorSettings>;
87
97
  } & {
@@ -168,6 +178,11 @@ declare const _default: {
168
178
  M: {};
169
179
  Defaults: {};
170
180
  }, Readonly<import("vue").ExtractPropTypes<{
181
+ location: {
182
+ type: import("vue").PropType<EditorLocation>;
183
+ } & {
184
+ type: import("vue").PropType<EditorLocation>;
185
+ };
171
186
  settings: {
172
187
  type: import("vue").PropType<VelcronTextEditorSettings>;
173
188
  } & {
@@ -251,6 +266,11 @@ declare const _default: {
251
266
  __isTeleport?: never;
252
267
  __isSuspense?: never;
253
268
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
269
+ location: {
270
+ type: import("vue").PropType<EditorLocation>;
271
+ } & {
272
+ type: import("vue").PropType<EditorLocation>;
273
+ };
254
274
  settings: {
255
275
  type: import("vue").PropType<VelcronTextEditorSettings>;
256
276
  } & {
@@ -399,6 +419,7 @@ declare const _default: {
399
419
  "v-model"?: string;
400
420
  "onUpdate:modelValue"?: (value: string) => any;
401
421
  modelValue?: string;
422
+ location?: EditorLocation;
402
423
  }>, "onUpdate:modelValue"> & {
403
424
  "onUpdate:modelValue"?: (value: string) => any;
404
425
  };
@@ -1,6 +1,11 @@
1
- import { TextBlueprint, VelcronTypographyEditorSettings } from "@omnia/fx-models";
1
+ import { EditorLocation, TextBlueprint, VelcronTypographyEditorSettings } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ location: {
5
+ type: import("vue").PropType<EditorLocation>;
6
+ } & {
7
+ type: import("vue").PropType<EditorLocation>;
8
+ };
4
9
  settings: {
5
10
  type: import("vue").PropType<VelcronTypographyEditorSettings>;
6
11
  } & {
@@ -77,6 +82,11 @@ declare const _default: {
77
82
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
78
83
  "update:modelValue": (value: TextBlueprint) => true;
79
84
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
85
+ location: {
86
+ type: import("vue").PropType<EditorLocation>;
87
+ } & {
88
+ type: import("vue").PropType<EditorLocation>;
89
+ };
80
90
  settings: {
81
91
  type: import("vue").PropType<VelcronTypographyEditorSettings>;
82
92
  } & {
@@ -158,6 +168,11 @@ declare const _default: {
158
168
  M: {};
159
169
  Defaults: {};
160
170
  }, Readonly<import("vue").ExtractPropTypes<{
171
+ location: {
172
+ type: import("vue").PropType<EditorLocation>;
173
+ } & {
174
+ type: import("vue").PropType<EditorLocation>;
175
+ };
161
176
  settings: {
162
177
  type: import("vue").PropType<VelcronTypographyEditorSettings>;
163
178
  } & {
@@ -236,6 +251,11 @@ declare const _default: {
236
251
  __isTeleport?: never;
237
252
  __isSuspense?: never;
238
253
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
254
+ location: {
255
+ type: import("vue").PropType<EditorLocation>;
256
+ } & {
257
+ type: import("vue").PropType<EditorLocation>;
258
+ };
239
259
  settings: {
240
260
  type: import("vue").PropType<VelcronTypographyEditorSettings>;
241
261
  } & {
@@ -378,6 +398,7 @@ declare const _default: {
378
398
  "v-model"?: TextBlueprint;
379
399
  "onUpdate:modelValue"?: (value: TextBlueprint) => any;
380
400
  modelValue?: TextBlueprint;
401
+ location?: EditorLocation;
381
402
  }>, "onUpdate:modelValue"> & {
382
403
  "onUpdate:modelValue"?: (value: TextBlueprint) => any;
383
404
  };
@@ -4,13 +4,16 @@ export declare function useVelcronStateManager(): {
4
4
  copyState: (fromState: VelcronState, toState: VelcronState) => {
5
5
  images?: import("@omnia/fx-models").VelcronImagesState;
6
6
  container?: {
7
+ maxWidth?: number;
8
+ minHeight?: number;
9
+ alignX?: string;
10
+ alignY?: string;
7
11
  colorSchemaType?: string;
8
12
  spacing?: import("@omnia/fx-models").VelcronSpacing;
9
13
  blueprint?: import("@omnia/fx-models").ContainerVariant | import("@omnia/fx-models").ContainerBlueprint;
10
14
  background?: import("@omnia/fx-models").BackgroundDefinition;
11
15
  };
12
16
  grid?: import("@omnia/fx-models").VelcronGridState;
13
- colorSchemas?: import("@omnia/fx-models").VelcronColorSchemasState;
14
17
  content?: import("@omnia/fx-models").VelcronContentState;
15
18
  header?: import("@omnia/fx-models").VelcronHeaderState;
16
19
  properties?: import("@omnia/fx-models").VelcronPropertiesState;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.173-dev",
4
+ "version": "8.0.175-dev",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.173-dev",
23
+ "@omnia/fx-models": "8.0.175-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",