@omnia/fx 8.0.285-dev → 8.0.287-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. package/internal-do-not-import-from-here/index.d.ts +1 -1
  2. package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/spacing/store/SpacingEditorStore.d.ts +7 -7
  3. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingEditor.d.ts +8 -8
  4. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +10 -554
  5. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingViewer.d.ts +8 -8
  6. package/internal-do-not-import-from-here/ux/aurora/designkits/shared/BlueprintsTemplates.d.ts +4 -4
  7. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +136 -124
  8. package/internal-do-not-import-from-here/ux/aurora/store/SpacingMigration.d.ts +4 -0
  9. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +136 -124
  10. package/internal-do-not-import-from-here/ux/aurora/store/index.d.ts +1 -0
  11. package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +9 -13
  12. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +6 -5
  13. package/internal-do-not-import-from-here/ux/aurora/styling/styles/Chrome.d.ts +3 -3
  14. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockHeader.d.ts +20 -20
  15. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/GlobalHeaderStyling.d.ts +20 -20
  16. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/Style.d.ts +20 -20
  17. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/lock/Lock.d.ts +20 -20
  18. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Css.d.ts +20 -20
  19. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Header.d.ts +20 -20
  20. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Style.d.ts +20 -20
  21. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Targeting.d.ts +20 -20
  22. package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +4 -4
  23. package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +1 -2
  24. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +3 -2
  25. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronTypes.d.ts +1 -1
  26. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +1 -0
  27. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +17 -3
  28. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -2
  29. package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentePropertiesGroupDescriptorTemplates.d.ts +2 -2
  30. package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronDescriptors.d.ts +32 -3
  31. package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +6 -1
  32. package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +1 -1
  33. package/package.json +4 -4
@@ -122,7 +122,7 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
122
122
  getVueApps(): Set<import("vue").App<Element>>;
123
123
  destroyVueApp(app: import("vue").App<Element>): void;
124
124
  createVueApp(rootComponent: any, rootProps?: any): import("vue").App<Element>;
125
- registerAsyncVueComponent(app: import("vue").App, component: Models.ComponentBundleManifest): void;
125
+ registerAsyncVueComponent(app: import("vue").App, component: ComponentBundleManifest): void;
126
126
  resolveAsyncVueComponent(elementName: string, definition: import("vue").DefineComponent): void;
127
127
  vueCustomElement(tag: string, componentDefinition: Exposes.ComponentDefinitionFunc | Object, options?: Exposes.VueCustomElementOptions): HTMLElement;
128
128
  DisplayRules: typeof Exposes.DisplayRules;
@@ -1,21 +1,21 @@
1
- import { guid, ITemplateRegistration, SpacingBlueprintTypes, SpacingBlueprints, SpacingDefinition } from "@omnia/fx-models";
1
+ import { guid, ITemplateRegistration, SpacingBlueprints, SpacingDefinition, SpacingScale } from "@omnia/fx-models";
2
2
  export declare const useSpacingEditorStore: () => {
3
3
  state: {
4
4
  definition: SpacingDefinition;
5
5
  blueprints: ITemplateRegistration<SpacingBlueprints>;
6
6
  editMode: boolean;
7
- editType: SpacingBlueprintTypes;
7
+ editType: SpacingScale;
8
8
  };
9
9
  events: {
10
10
  onMutatedDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<SpacingDefinition>;
11
11
  onMutatedBlueprints: import("@omnia/fx").MessageBusExposeOnlySubscription<ITemplateRegistration<SpacingBlueprints, import("@omnia/fx-models").TemplateRegistrationType>>;
12
12
  onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
13
- onMutatedEditType: import("@omnia/fx").MessageBusExposeOnlySubscription<SpacingBlueprintTypes>;
13
+ onMutatedEditType: import("@omnia/fx").MessageBusExposeOnlySubscription<SpacingScale>;
14
14
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
15
15
  actions: {
16
16
  onDispatching: {
17
17
  editDefinition: {
18
- subscribe(fn: (type: SpacingBlueprintTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
18
+ subscribe(fn: (scale: SpacingScale) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
19
19
  };
20
20
  editBlueprint: {
21
21
  subscribe(fn: (blueprints: ITemplateRegistration<SpacingBlueprints, import("@omnia/fx-models").TemplateRegistrationType>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -41,7 +41,7 @@ export declare const useSpacingEditorStore: () => {
41
41
  };
42
42
  onDispatched: {
43
43
  editDefinition: {
44
- subscribe(fn: (result: void, type: SpacingBlueprintTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
44
+ subscribe(fn: (result: void, scale: SpacingScale) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
45
45
  };
46
46
  editBlueprint: {
47
47
  subscribe(fn: (result: void, blueprints: ITemplateRegistration<SpacingBlueprints, import("@omnia/fx-models").TemplateRegistrationType>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -67,7 +67,7 @@ export declare const useSpacingEditorStore: () => {
67
67
  };
68
68
  onFailure: {
69
69
  editDefinition: {
70
- subscribe(fn: (failureReason: any, type: SpacingBlueprintTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
70
+ subscribe(fn: (failureReason: any, scale: SpacingScale) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
71
71
  };
72
72
  editBlueprint: {
73
73
  subscribe(fn: (failureReason: any, blueprints: ITemplateRegistration<SpacingBlueprints, import("@omnia/fx-models").TemplateRegistrationType>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -92,7 +92,7 @@ export declare const useSpacingEditorStore: () => {
92
92
  };
93
93
  };
94
94
  } & {
95
- editDefinition(type: SpacingBlueprintTypes): void;
95
+ editDefinition(scale: SpacingScale): void;
96
96
  editBlueprint(blueprints: ITemplateRegistration<SpacingBlueprints>): void;
97
97
  addBlueprint(): void;
98
98
  copyDefinition(definition: SpacingDefinition): void;
@@ -1,4 +1,4 @@
1
- import { SpacingBlueprintTypes, SpacingDefinition } from "@omnia/fx/models";
1
+ import { SpacingDefinition, SpacingScale } from "@omnia/fx/models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
4
4
  "onUpdate:modelValue": {
@@ -68,9 +68,9 @@ declare const _default: {
68
68
  }>;
69
69
  };
70
70
  }>> & {
71
- "onUpdate:modelValue"?: (value: SpacingBlueprintTypes) => any;
71
+ "onUpdate:modelValue"?: (value: SpacingScale) => any;
72
72
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
73
- "update:modelValue": (value: SpacingBlueprintTypes) => true;
73
+ "update:modelValue": (value: SpacingScale) => true;
74
74
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
75
75
  "onUpdate:modelValue": {
76
76
  type: import("vue").PropType<(value: SpacingDefinition) => any | void>;
@@ -139,7 +139,7 @@ declare const _default: {
139
139
  }>;
140
140
  };
141
141
  }>> & {
142
- "onUpdate:modelValue"?: (value: SpacingBlueprintTypes) => any;
142
+ "onUpdate:modelValue"?: (value: SpacingScale) => any;
143
143
  }, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
144
144
  P: {};
145
145
  B: {};
@@ -215,7 +215,7 @@ declare const _default: {
215
215
  }>;
216
216
  };
217
217
  }>> & {
218
- "onUpdate:modelValue"?: (value: SpacingBlueprintTypes) => any;
218
+ "onUpdate:modelValue"?: (value: SpacingScale) => any;
219
219
  }, () => JSX.Element, {}, {}, {}, {}>;
220
220
  __isFragment?: never;
221
221
  __isTeleport?: never;
@@ -288,9 +288,9 @@ declare const _default: {
288
288
  }>;
289
289
  };
290
290
  }>> & {
291
- "onUpdate:modelValue"?: (value: SpacingBlueprintTypes) => any;
291
+ "onUpdate:modelValue"?: (value: SpacingScale) => any;
292
292
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
293
- "update:modelValue": (value: SpacingBlueprintTypes) => true;
293
+ "update:modelValue": (value: SpacingScale) => true;
294
294
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
295
295
  propsDefinition: Omit<Readonly<{} & {
296
296
  name?: {
@@ -358,7 +358,7 @@ declare const _default: {
358
358
  "v-model"?: SpacingDefinition;
359
359
  "onUpdate:modelValue"?: (value: SpacingDefinition) => any | void;
360
360
  }>, "onUpdate:modelValue"> & {
361
- "onUpdate:modelValue"?: (value: SpacingBlueprintTypes) => any;
361
+ "onUpdate:modelValue"?: (value: SpacingScale) => any;
362
362
  };
363
363
  };
364
364
  export default _default;