@omnia/fx 8.0.99-vnext → 8.0.101-vnext

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 (57) hide show
  1. package/internal-do-not-import-from-here/stores/DefineStore.d.ts +36 -37
  2. package/internal-do-not-import-from-here/stores/LocalizationStore.d.ts +19 -7
  3. package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +50 -26
  4. package/internal-do-not-import-from-here/stores/oxide/ComponentSharedSettingsStore.d.ts +17 -8
  5. package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +10 -1
  6. package/internal-do-not-import-from-here/ux/compositiontests/stores/useNewStoreTest.d.ts +3 -6
  7. package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +73 -52
  8. package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformEditor/ImageTransformEditor.d.ts +295 -50
  9. package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformEditor/ImageTransformEditor_old.d.ts +66 -0
  10. package/internal-do-not-import-from-here/ux/imagetransformer/IImageTransformer.d.ts +1 -2
  11. package/internal-do-not-import-from-here/ux/imagetransformer/ImageTransformer.d.ts +208 -38
  12. package/internal-do-not-import-from-here/ux/imagetransformer/ImageTransformer_older.d.ts +40 -0
  13. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyMenuStore.d.ts +23 -11
  14. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +141 -84
  15. package/internal-do-not-import-from-here/ux/mediapicker/IMediaPicker.d.ts +1 -1
  16. package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker.css.d.ts +2 -16
  17. package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker.d.ts +159 -17
  18. package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker_old.css.d.ts +18 -0
  19. package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker_old.d.ts +17 -0
  20. package/internal-do-not-import-from-here/ux/mediapicker/components/ImageEditor.css.d.ts +15 -0
  21. package/internal-do-not-import-from-here/ux/mediapicker/components/ImageEditor.d.ts +91 -0
  22. package/internal-do-not-import-from-here/ux/mediapicker/components/ImageSelector.css.d.ts +6 -0
  23. package/internal-do-not-import-from-here/ux/mediapicker/components/ImageSelector.d.ts +104 -0
  24. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +2 -0
  25. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.css.d.ts +2 -1
  26. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +17 -0
  27. package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +18 -18
  28. package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +25 -0
  29. package/internal-do-not-import-from-here/ux/oxide/list/List.css.d.ts +1 -1
  30. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +5 -5
  31. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +11 -0
  32. package/internal-do-not-import-from-here/ux/theming-v2/BlueprintStore.d.ts +27 -11
  33. package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +44 -25
  34. package/internal-do-not-import-from-here/ux/theming-v2/ThemeContextStore.d.ts +213 -143
  35. package/internal-do-not-import-from-here/ux/theming-v2/ThemeDefinitionStoreV2.d.ts +22 -10
  36. package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +25 -16
  37. package/internal-do-not-import-from-here/ux/theming-v2/VelcronDefinitionStore.d.ts +22 -10
  38. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +464 -101
  39. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/BlueprintEditorStore.d.ts +21 -10
  40. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/ThemeEditorStore.d.ts +27 -13
  41. package/internal-do-not-import-from-here/ux/use/UseBlueprintSetup.d.ts +155 -34
  42. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +172 -48
  43. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +2 -0
  44. package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +53 -24
  45. package/internal-do-not-import-from-here/ux/velcron/core/actions/Date.d.ts +1 -1
  46. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +33 -6
  47. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronContentEditor.d.ts +26 -2
  48. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronColorSchemaBuilder.d.ts +10 -5
  49. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronContentStateBuilder.d.ts +7 -13
  50. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronImageStateBuilder.d.ts +2 -4
  51. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronPropertyMappingStateBuilder.d.ts +3 -2
  52. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronStateBuilder.d.ts +2 -1
  53. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronStateBuilderBase.d.ts +7 -3
  54. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronTextContentBuilder.d.ts +32 -0
  55. package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +128 -57
  56. package/internal-do-not-import-from-here/wctypings.d.ts +14 -0
  57. package/package.json +2 -2
@@ -6,6 +6,7 @@ declare const _default: {
6
6
  style?: unknown;
7
7
  class?: unknown;
8
8
  key?: string | number | symbol;
9
+ readonly width?: number;
9
10
  readonly height?: number;
10
11
  ref?: import("vue").VNodeRef;
11
12
  ref_for?: boolean;
@@ -49,6 +50,7 @@ declare const _default: {
49
50
  [key: string]: any;
50
51
  }>) => void)[];
51
52
  readonly aspectRatio?: "default" | "landscape";
53
+ readonly cover?: boolean;
52
54
  readonly alt?: string;
53
55
  readonly src?: string;
54
56
  };
@@ -70,6 +72,13 @@ declare const _default: {
70
72
  type: import("vue").PropType<string>;
71
73
  required: false;
72
74
  };
75
+ cover: {
76
+ type: import("vue").PropType<boolean>;
77
+ required: false;
78
+ };
79
+ width: {
80
+ type: import("vue").PropType<number>;
81
+ };
73
82
  height: {
74
83
  type: import("vue").PropType<number>;
75
84
  };
@@ -104,6 +113,13 @@ declare const _default: {
104
113
  type: import("vue").PropType<string>;
105
114
  required: false;
106
115
  };
116
+ cover: {
117
+ type: import("vue").PropType<boolean>;
118
+ required: false;
119
+ };
120
+ width: {
121
+ type: import("vue").PropType<number>;
122
+ };
107
123
  height: {
108
124
  type: import("vue").PropType<number>;
109
125
  };
@@ -122,6 +138,13 @@ declare const _default: {
122
138
  type: import("vue").PropType<string>;
123
139
  required: false;
124
140
  };
141
+ cover: {
142
+ type: import("vue").PropType<boolean>;
143
+ required: false;
144
+ };
145
+ width: {
146
+ type: import("vue").PropType<number>;
147
+ };
125
148
  height: {
126
149
  type: import("vue").PropType<number>;
127
150
  };
@@ -133,8 +156,10 @@ declare const _default: {
133
156
  };
134
157
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
135
158
  propsDefinition: Omit<Readonly<{} & {
159
+ width?: number;
136
160
  height?: number;
137
161
  aspectRatio?: "default" | "landscape";
162
+ cover?: boolean;
138
163
  alt?: string;
139
164
  src?: string;
140
165
  }>, never>;
@@ -1,4 +1,4 @@
1
1
  import { ListTypes } from "@omnia/fx-models";
2
2
  export declare const listStyles: {
3
- wrapper: (listType: ListTypes) => string;
3
+ wrapper: (listType: ListTypes, dark: any) => string;
4
4
  };
@@ -53,7 +53,7 @@ declare const _default: {
53
53
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
54
54
  [key: string]: any;
55
55
  }>) => void)[];
56
- readonly variant?: "navigation" | "default";
56
+ readonly variant?: "navigation" | "default" | "options";
57
57
  readonly lines?: false | "one" | "two" | "three";
58
58
  readonly toned?: boolean;
59
59
  };
@@ -72,7 +72,7 @@ declare const _default: {
72
72
  $el: any;
73
73
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
74
74
  variant: {
75
- type: import("vue").PropType<"navigation" | "default">;
75
+ type: import("vue").PropType<"navigation" | "default" | "options">;
76
76
  };
77
77
  toned: {
78
78
  type: import("vue").PropType<boolean>;
@@ -122,7 +122,7 @@ declare const _default: {
122
122
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
123
123
  } & Readonly<import("vue").ExtractPropTypes<{
124
124
  variant: {
125
- type: import("vue").PropType<"navigation" | "default">;
125
+ type: import("vue").PropType<"navigation" | "default" | "options">;
126
126
  };
127
127
  toned: {
128
128
  type: import("vue").PropType<boolean>;
@@ -150,7 +150,7 @@ declare const _default: {
150
150
  __isSuspense?: never;
151
151
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
152
152
  variant: {
153
- type: import("vue").PropType<"navigation" | "default">;
153
+ type: import("vue").PropType<"navigation" | "default" | "options">;
154
154
  };
155
155
  toned: {
156
156
  type: import("vue").PropType<boolean>;
@@ -188,7 +188,7 @@ declare const _default: {
188
188
  } & {
189
189
  nav?: boolean;
190
190
  class?: String | String[];
191
- variant?: "navigation" | "default";
191
+ variant?: "navigation" | "default" | "options";
192
192
  lines?: false | "one" | "two" | "three";
193
193
  toned?: boolean;
194
194
  }>, never>;
@@ -64,6 +64,7 @@ declare const _default: {
64
64
  customButtons?: Func<[VNodeChild]>;
65
65
  };
66
66
  readonly variant?: "default" | "menu" | "blade";
67
+ readonly toned?: boolean;
67
68
  readonly subTitle?: string;
68
69
  "onClick:close"?: () => any;
69
70
  "onClick:back"?: () => any;
@@ -89,6 +90,9 @@ declare const _default: {
89
90
  title?: Func<[VNodeChild]>;
90
91
  customButtons?: Func<[VNodeChild]>;
91
92
  }>;
93
+ toned: {
94
+ type: import("vue").PropType<boolean>;
95
+ };
92
96
  backButton: {
93
97
  type: import("vue").PropType<boolean>;
94
98
  };
@@ -155,6 +159,9 @@ declare const _default: {
155
159
  title?: Func<[VNodeChild]>;
156
160
  customButtons?: Func<[VNodeChild]>;
157
161
  }>;
162
+ toned: {
163
+ type: import("vue").PropType<boolean>;
164
+ };
158
165
  backButton: {
159
166
  type: import("vue").PropType<boolean>;
160
167
  };
@@ -196,6 +203,9 @@ declare const _default: {
196
203
  title?: Func<[VNodeChild]>;
197
204
  customButtons?: Func<[VNodeChild]>;
198
205
  }>;
206
+ toned: {
207
+ type: import("vue").PropType<boolean>;
208
+ };
199
209
  backButton: {
200
210
  type: import("vue").PropType<boolean>;
201
211
  };
@@ -254,6 +264,7 @@ declare const _default: {
254
264
  customButtons?: Func<[VNodeChild]>;
255
265
  };
256
266
  variant?: "default" | "menu" | "blade";
267
+ toned?: boolean;
257
268
  subTitle?: string;
258
269
  backButton?: boolean;
259
270
  }>, "onClick:close" | "onClick:back"> & {
@@ -5,6 +5,33 @@ export declare const useBlueprintStore: (newInstanceWithName?: string) => {
5
5
  blueprint: BlueprintDefinition;
6
6
  blueprintType: "default" | "variant1" | "variant2" | "variant3" | BlueprintTypes;
7
7
  };
8
+ events: {
9
+ onMutatingBlueprint: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<BlueprintDefinition>;
10
+ onMutatedBlueprint: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<BlueprintDefinition>;
11
+ onMutatingBlueprintType: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<"default" | "variant1" | "variant2" | "variant3" | BlueprintTypes>;
12
+ onMutatedBlueprintType: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<"default" | "variant1" | "variant2" | "variant3" | BlueprintTypes>;
13
+ } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
14
+ actions: {
15
+ onDispatching<T extends (...args: any) => any>(action: (actions: {
16
+ setBlueprint(type: BlueprintTypes | BlueprintType): void;
17
+ setCustomBlueprint(blueprint: BlueprintDefinition): void;
18
+ setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
19
+ }) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
20
+ onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
21
+ setBlueprint(type: BlueprintTypes | BlueprintType): void;
22
+ setCustomBlueprint(blueprint: BlueprintDefinition): void;
23
+ setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
24
+ }) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
25
+ onFailure<T_2 extends (...args: any) => any>(action: (actions: {
26
+ setBlueprint(type: BlueprintTypes | BlueprintType): void;
27
+ setCustomBlueprint(blueprint: BlueprintDefinition): void;
28
+ setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
29
+ }) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
30
+ } & {
31
+ setBlueprint(type: BlueprintTypes | BlueprintType): void;
32
+ setCustomBlueprint(blueprint: BlueprintDefinition): void;
33
+ setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
34
+ };
8
35
  get: {
9
36
  readonly all: BlueprintDefinition;
10
37
  byType: <TType extends BlueprintItemDefinition>(type: WebBlueprintDefintionTypes | WebBlueprintDefintionType) => TType;
@@ -15,16 +42,5 @@ export declare const useBlueprintStore: (newInstanceWithName?: string) => {
15
42
  readonly layout: SpacingBlueprint;
16
43
  };
17
44
  };
18
- actions: {
19
- setBlueprint: (type: BlueprintTypes | BlueprintType) => void;
20
- setThemeStore: (themeStoreInstance: ReturnType<typeof useThemeStoreV2>) => void;
21
- setCustomBlueprint: (blueprint: BlueprintDefinition) => void;
22
- };
23
- events: {
24
- onMutatingBlueprint: import("@omnia/fx").EventHook<BlueprintDefinition>;
25
- onMutatedBlueprint: import("@omnia/fx").EventHook<BlueprintDefinition>;
26
- onMutatingBlueprintType: import("@omnia/fx").EventHook<"default" | "variant1" | "variant2" | "variant3" | BlueprintTypes>;
27
- onMutatedBlueprintType: import("@omnia/fx").EventHook<"default" | "variant1" | "variant2" | "variant3" | BlueprintTypes>;
28
- };
29
45
  deactivated(): void;
30
46
  };
@@ -11,9 +11,52 @@ export declare const useColorSchemaStore: (newInstanceWithName?: string) => {
11
11
  colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
12
12
  id: import("@omnia/fx-models").GuidValue;
13
13
  };
14
+ events: {
15
+ onMutatingBase: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<ColorDefinition>;
16
+ onMutatedBase: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<ColorDefinition>;
17
+ onMutatingOnBase: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<ColorDefinition>;
18
+ onMutatedOnBase: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<ColorDefinition>;
19
+ onMutatingContainer: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<ColorDefinition>;
20
+ onMutatedContainer: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<ColorDefinition>;
21
+ onMutatingOnContainer: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<ColorDefinition>;
22
+ onMutatedOnContainer: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<ColorDefinition>;
23
+ onMutatingIsContainer: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<boolean>;
24
+ onMutatedIsContainer: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<boolean>;
25
+ onMutatingName: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<string>;
26
+ onMutatedName: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<string>;
27
+ onMutatingColorSchemaType: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
28
+ onMutatedColorSchemaType: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
29
+ onMutatingId: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<import("@omnia/fx-models").GuidValue>;
30
+ onMutatedId: import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<import("@omnia/fx-models").GuidValue>;
31
+ } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
32
+ actions: {
33
+ onDispatching<T extends (...args: any) => any>(action: (actions: {
34
+ setColorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType, container?: boolean): void;
35
+ setCustomColorSchema(colorSchema: ColorSchema, container?: boolean): void;
36
+ setColor(colorDefinition: ColorDefinition, colorType: ColorTypes): void;
37
+ setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
38
+ }) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
39
+ onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
40
+ setColorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType, container?: boolean): void;
41
+ setCustomColorSchema(colorSchema: ColorSchema, container?: boolean): void;
42
+ setColor(colorDefinition: ColorDefinition, colorType: ColorTypes): void;
43
+ setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
44
+ }) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
45
+ onFailure<T_2 extends (...args: any) => any>(action: (actions: {
46
+ setColorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType, container?: boolean): void;
47
+ setCustomColorSchema(colorSchema: ColorSchema, container?: boolean): void;
48
+ setColor(colorDefinition: ColorDefinition, colorType: ColorTypes): void;
49
+ setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
50
+ }) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
51
+ } & {
52
+ setColorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType, container?: boolean): void;
53
+ setCustomColorSchema(colorSchema: ColorSchema, container?: boolean): void;
54
+ setColor(colorDefinition: ColorDefinition, colorType: ColorTypes): void;
55
+ setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
56
+ };
14
57
  get: {
15
- readonly theme: "dark" | "light";
16
58
  readonly colorSchema: ColorSchema;
59
+ readonly theme: "dark" | "light";
17
60
  readonly base: ColorDefinition;
18
61
  readonly onBase: ColorDefinition;
19
62
  readonly container: ColorDefinition;
@@ -25,29 +68,5 @@ export declare const useColorSchemaStore: (newInstanceWithName?: string) => {
25
68
  readonly onContainer: ColorDefinition;
26
69
  };
27
70
  };
28
- actions: {
29
- setColorSchema: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, container?: boolean) => void;
30
- setThemeStore: (themeStoreInstance: ReturnType<typeof useThemeStoreV2>) => void;
31
- setCustomColorSchema: (colorSchema: ColorSchema, container?: boolean) => void;
32
- setColor: (colorDefinition: ColorDefinition, colorType: ColorTypes) => void;
33
- };
34
- events: {
35
- onMutatingBase: import("@omnia/fx").EventHook<ColorDefinition>;
36
- onMutatedBase: import("@omnia/fx").EventHook<ColorDefinition>;
37
- onMutatingOnBase: import("@omnia/fx").EventHook<ColorDefinition>;
38
- onMutatedOnBase: import("@omnia/fx").EventHook<ColorDefinition>;
39
- onMutatingContainer: import("@omnia/fx").EventHook<ColorDefinition>;
40
- onMutatedContainer: import("@omnia/fx").EventHook<ColorDefinition>;
41
- onMutatingOnContainer: import("@omnia/fx").EventHook<ColorDefinition>;
42
- onMutatedOnContainer: import("@omnia/fx").EventHook<ColorDefinition>;
43
- onMutatingIsContainer: import("@omnia/fx").EventHook<boolean>;
44
- onMutatedIsContainer: import("@omnia/fx").EventHook<boolean>;
45
- onMutatingName: import("@omnia/fx").EventHook<string>;
46
- onMutatedName: import("@omnia/fx").EventHook<string>;
47
- onMutatingColorSchemaType: import("@omnia/fx").EventHook<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
48
- onMutatedColorSchemaType: import("@omnia/fx").EventHook<"info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background">;
49
- onMutatingId: import("@omnia/fx").EventHook<import("@omnia/fx-models").GuidValue>;
50
- onMutatedId: import("@omnia/fx").EventHook<import("@omnia/fx-models").GuidValue>;
51
- };
52
71
  deactivated(): void;
53
72
  };