@omnia/fx 8.0.285-dev → 8.0.287-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/internal-do-not-import-from-here/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/blueprints/spacing/store/SpacingEditorStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingEditor.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +10 -554
- package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingViewer.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/aurora/designkits/shared/BlueprintsTemplates.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +136 -124
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingMigration.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +136 -124
- package/internal-do-not-import-from-here/ux/aurora/store/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +9 -13
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +6 -5
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Chrome.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockHeader.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/GlobalHeaderStyling.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/Style.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/lock/Lock.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Css.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Header.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Style.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Targeting.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronTypes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +17 -3
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/models/ComponentePropertiesGroupDescriptorTemplates.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronDescriptors.d.ts +32 -3
- package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +1 -1
- 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:
|
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,
|
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:
|
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<
|
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: (
|
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,
|
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,
|
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(
|
95
|
+
editDefinition(scale: SpacingScale): void;
|
96
96
|
editBlueprint(blueprints: ITemplateRegistration<SpacingBlueprints>): void;
|
97
97
|
addBlueprint(): void;
|
98
98
|
copyDefinition(definition: SpacingDefinition): void;
|
package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingEditor.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
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:
|
71
|
+
"onUpdate:modelValue"?: (value: SpacingScale) => any;
|
72
72
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
73
|
-
"update:modelValue": (value:
|
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:
|
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:
|
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:
|
291
|
+
"onUpdate:modelValue"?: (value: SpacingScale) => any;
|
292
292
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
293
|
-
"update:modelValue": (value:
|
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:
|
361
|
+
"onUpdate:modelValue"?: (value: SpacingScale) => any;
|
362
362
|
};
|
363
363
|
};
|
364
364
|
export default _default;
|