@omnia/fx 8.0.76-dev → 8.0.77-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/shared/models/OmniaSharedBootstrapData.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +6 -1
- package/internal-do-not-import-from-here/shared/models/theming/ChromeDefinition.d.ts +7 -5
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.css.d.ts +3 -5
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/ChromePicker.d.ts +132 -97
- package/internal-do-not-import-from-here/ux/blueprintpickers/chromepicker/{ChromePreview.d.ts → ChromeViewer.d.ts} +35 -18
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +90 -90
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview2.d.ts +496 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/chrome/store/ChromeEditorStore.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +156 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/BlueprintsChrome.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsChrome.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsChrome.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +23 -24
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +25 -25
- package/internal-do-not-import-from-here/ux/theming-v2/store/ComponentBlueprintStore.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +22 -24
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +45 -45
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +27 -29
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +81 -81
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +720 -715
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +31 -31
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/wctypings.d.ts +18 -3
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/DefinitionsChrome.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/DefinitionsChrome.d.ts +0 -49
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/DefinitionsChrome.d.ts +0 -49
@@ -6,7 +6,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
6
6
|
onContainer: import("@omnia/fx-models").ColorDefinition;
|
7
7
|
isContainer: boolean;
|
8
8
|
name: string;
|
9
|
-
colorSchemaType: "info" | "error" |
|
9
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
10
10
|
id: import("@omnia/fx-models").GuidValue;
|
11
11
|
};
|
12
12
|
events: {
|
@@ -16,13 +16,13 @@ export declare function useColorSchemaSetup(props: object): {
|
|
16
16
|
onMutatedOnContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
17
17
|
onMutatedIsContainer: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
18
18
|
onMutatedName: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
19
|
-
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" |
|
19
|
+
onMutatedColorSchemaType: import("@omnia/fx").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
20
20
|
onMutatedId: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
21
21
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
22
22
|
actions: {
|
23
23
|
onDispatching: {
|
24
24
|
setColorSchema: {
|
25
|
-
subscribe(fn: (colorSchemaType: "info" | "error" |
|
25
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
26
|
};
|
27
27
|
setCustomColorSchema: {
|
28
28
|
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -58,17 +58,17 @@ export declare function useColorSchemaSetup(props: object): {
|
|
58
58
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
59
59
|
};
|
60
60
|
get: {
|
61
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
61
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
62
62
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
63
63
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
64
64
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
65
65
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
66
66
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
67
|
-
color(colorSchemaType: "info" | "error" |
|
68
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
67
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
68
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
69
69
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
70
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
71
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
70
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
71
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
72
72
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
73
73
|
};
|
74
74
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -76,7 +76,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
76
76
|
};
|
77
77
|
onDispatched: {
|
78
78
|
setColorSchema: {
|
79
|
-
subscribe(fn: (result: void, colorSchemaType: "info" | "error" |
|
79
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
80
80
|
};
|
81
81
|
setCustomColorSchema: {
|
82
82
|
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -112,17 +112,17 @@ export declare function useColorSchemaSetup(props: object): {
|
|
112
112
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
113
113
|
};
|
114
114
|
get: {
|
115
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
115
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
116
116
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
117
117
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
118
118
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
119
119
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
120
120
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
121
|
-
color(colorSchemaType: "info" | "error" |
|
122
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
121
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
122
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
123
123
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
124
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
125
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
124
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
125
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
126
126
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
127
127
|
};
|
128
128
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -130,7 +130,7 @@ export declare function useColorSchemaSetup(props: object): {
|
|
130
130
|
};
|
131
131
|
onFailure: {
|
132
132
|
setColorSchema: {
|
133
|
-
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" |
|
133
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
134
134
|
};
|
135
135
|
setCustomColorSchema: {
|
136
136
|
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -166,24 +166,24 @@ export declare function useColorSchemaSetup(props: object): {
|
|
166
166
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
167
167
|
};
|
168
168
|
get: {
|
169
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
169
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
170
170
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
171
171
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
172
172
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
173
173
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
174
174
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
175
|
-
color(colorSchemaType: "info" | "error" |
|
176
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
175
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
176
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
177
177
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
178
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
179
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
178
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
179
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
180
180
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
181
181
|
};
|
182
182
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
183
183
|
};
|
184
184
|
};
|
185
185
|
} & {
|
186
|
-
setColorSchema(colorSchemaType: "info" | "error" |
|
186
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
187
187
|
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
188
188
|
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
189
189
|
setThemeStore(themeStoreInstance: {
|
@@ -213,17 +213,17 @@ export declare function useColorSchemaSetup(props: object): {
|
|
213
213
|
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
214
214
|
};
|
215
215
|
get: {
|
216
|
-
colorSchema(colorSchemaType: "info" | "error" |
|
216
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
217
217
|
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
218
218
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
219
219
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
220
220
|
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
221
221
|
component(): import("@omnia/fx-models").ComponentBlueprint;
|
222
|
-
color(colorSchemaType: "info" | "error" |
|
223
|
-
colorDefinition(colorSchemaType: "info" | "error" |
|
222
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
223
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
224
224
|
complementaryColorType(colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorTypes;
|
225
|
-
complementaryColor(colorSchemaType: "info" | "error" |
|
226
|
-
complementaryColorDefinition(colorSchemaType: "info" | "error" |
|
225
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): string;
|
226
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer"): import("@omnia/fx-models").ColorDefinition;
|
227
227
|
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
228
228
|
};
|
229
229
|
}): void;
|
@@ -485,17 +485,17 @@ export declare function useColorSchemaSetup(props: object): {
|
|
485
485
|
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
486
486
|
};
|
487
487
|
get: {
|
488
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
488
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
489
489
|
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
490
490
|
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
491
491
|
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
492
492
|
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
493
493
|
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
494
|
-
color: (colorSchemaType: "info" | "error" |
|
495
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
494
|
+
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
495
|
+
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorDefinition;
|
496
496
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
497
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
498
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
497
|
+
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
498
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorDefinition;
|
499
499
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
500
500
|
};
|
501
501
|
};
|
@@ -8,21 +8,21 @@ export declare const useVelcronColorSchemaStore: (newStateWithName?: string) =>
|
|
8
8
|
onContainer: ColorDefinition;
|
9
9
|
isContainer: boolean;
|
10
10
|
name: string;
|
11
|
-
colorSchemaType: "info" | "error" |
|
11
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
|
12
12
|
themeStore: {
|
13
13
|
state: {
|
14
14
|
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
15
15
|
};
|
16
16
|
get: {
|
17
17
|
componentBlueprints: (blueprintType: import("@omnia/fx-models").VelcronBlueprintDefintionTypes) => import("@omnia/fx-models").ComponentBlueprint;
|
18
|
-
colorSchema: (colorSchemaType: "info" | "error" |
|
18
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes) => ColorSchema;
|
19
19
|
spacing: () => import("@omnia/fx-models").SpacingDefinition;
|
20
20
|
typography: (typographyType: "title" | "text" | "navigation" | import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl" | import("@omnia/fx-models").TypographySizes) => any;
|
21
|
-
color: (colorSchemaType: "info" | "error" |
|
22
|
-
colorDefinition: (colorSchemaType: "info" | "error" |
|
21
|
+
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
22
|
+
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
|
23
23
|
complementaryColorType: (colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => import("@omnia/fx-models").ColorTypes;
|
24
|
-
complementaryColor: (colorSchemaType: "info" | "error" |
|
25
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" |
|
24
|
+
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
25
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes, colorType: import("@omnia/fx-models").ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
|
26
26
|
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
27
27
|
};
|
28
28
|
actions: {
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
12
12
|
type: import("vue").PropType<boolean>;
|
13
13
|
};
|
14
14
|
"color-schema-type": {
|
15
|
-
type: import("vue").PropType<"info" | "error" |
|
15
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
|
16
16
|
};
|
17
17
|
"theme-definition": {
|
18
18
|
type: import("vue").PropType<ThemeDefinitionV2>;
|
@@ -52,7 +52,7 @@ declare const _default: {
|
|
52
52
|
type: import("vue").PropType<boolean>;
|
53
53
|
};
|
54
54
|
"color-schema-type": {
|
55
|
-
type: import("vue").PropType<"info" | "error" |
|
55
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
|
56
56
|
};
|
57
57
|
"theme-definition": {
|
58
58
|
type: import("vue").PropType<ThemeDefinitionV2>;
|
@@ -100,7 +100,7 @@ declare const _default: {
|
|
100
100
|
type: import("vue").PropType<boolean>;
|
101
101
|
};
|
102
102
|
"color-schema-type": {
|
103
|
-
type: import("vue").PropType<"info" | "error" |
|
103
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
|
104
104
|
};
|
105
105
|
"theme-definition": {
|
106
106
|
type: import("vue").PropType<ThemeDefinitionV2>;
|
@@ -145,7 +145,7 @@ declare const _default: {
|
|
145
145
|
type: import("vue").PropType<boolean>;
|
146
146
|
};
|
147
147
|
"color-schema-type": {
|
148
|
-
type: import("vue").PropType<"info" | "error" |
|
148
|
+
type: import("vue").PropType<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes>;
|
149
149
|
};
|
150
150
|
"theme-definition": {
|
151
151
|
type: import("vue").PropType<ThemeDefinitionV2>;
|
@@ -185,7 +185,7 @@ declare const _default: {
|
|
185
185
|
colorSchemaType: any;
|
186
186
|
colors?: any;
|
187
187
|
} & {
|
188
|
-
"color-schema-type"?: "info" | "error" |
|
188
|
+
"color-schema-type"?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | ColorSchemaTypes;
|
189
189
|
themeDefinition?: ThemeDefinitionV2;
|
190
190
|
"theme-definition"?: ThemeDefinitionV2;
|
191
191
|
context?: VelcronRenderContext;
|
@@ -138,7 +138,7 @@ import wc612fef70e86b4b12a4c138324dbc6895 from './ux/appprovisioning/apptitledes
|
|
138
138
|
import wc42aef9ddfa3745489aed5b4fedef43ed from './ux/appprovisioning/apptitleinput/AppTitleInput';
|
139
139
|
import wc171ae6335cef4eaa88977eba3bca0049 from './ux/appprovisioning/renderer/Renderer';
|
140
140
|
import wc44e2dd896269442f800da69000d4c2f1 from './ux/blueprintpickers/chromepicker/ChromePicker';
|
141
|
-
import wcb059e461e6c048fe830c6d32722e5cdc from './ux/blueprintpickers/chromepicker/
|
141
|
+
import wcb059e461e6c048fe830c6d32722e5cdc from './ux/blueprintpickers/chromepicker/ChromeViewer';
|
142
142
|
import wc564bced7081c496483e8df717f600ff3 from './ux/blueprintpickers/spacingpicker/SpacingPicker3';
|
143
143
|
import wc54730f05dd2c4f2da1c830b3985b36a9 from './ux/blueprintpickers/typographypicker/TypographyPicker';
|
144
144
|
import wc1f31fc580b854d19895c1879120a9891 from './ux/docs/chrome/DocsChrome';
|
@@ -233,6 +233,7 @@ import wc94cf71a5a68d4b86aea325d400df2bd2 from './ux/oxide/textfield/TextField';
|
|
233
233
|
import wc575bd9ad6c0d4fc9ab53fbd1b93786c4 from './ux/oxide/toolbar/Toolbar';
|
234
234
|
import wc19adb19938604f41b10f3a00eb3eb534 from './ux/oxide/tooltip/Tooltip';
|
235
235
|
import wcc617a9d7e25249929c41becb55905973 from './ux/oxide/treeview/Treeview';
|
236
|
+
import wc8c432da2228d4893816c81c49a40ddd4 from './ux/oxide/treeview/Treeview2';
|
236
237
|
import wc1e7fa637f4914cbeb9ceb6d577fec150 from './ux/oxide/validation/Validation';
|
237
238
|
import wc8270a3e368484538870b0bc4a6654234 from './ux/properties/block/PropertyBlock';
|
238
239
|
import wcab2cfe16632d45b5bab39e05612982a3 from './ux/properties/block/PropertyBlockSettings';
|
@@ -802,7 +803,7 @@ declare global {
|
|
802
803
|
"omfx-chrome-picker": typeof wc44e2dd896269442f800da69000d4c2f1 extends {
|
803
804
|
propsDefinition: infer TProp;
|
804
805
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc44e2dd896269442f800da69000d4c2f1 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc44e2dd896269442f800da69000d4c2f1>, "propsDefinition">> : never;
|
805
|
-
"omfx-chrome-
|
806
|
+
"omfx-chrome-viewer": typeof wcb059e461e6c048fe830c6d32722e5cdc extends {
|
806
807
|
propsDefinition: infer TProp;
|
807
808
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcb059e461e6c048fe830c6d32722e5cdc extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcb059e461e6c048fe830c6d32722e5cdc>, "propsDefinition">> : never;
|
808
809
|
"omfx-spacing-picker": typeof wc564bced7081c496483e8df717f600ff3 extends {
|
@@ -1087,6 +1088,9 @@ declare global {
|
|
1087
1088
|
"o-treeview": typeof wcc617a9d7e25249929c41becb55905973 extends {
|
1088
1089
|
propsDefinition: infer TProp;
|
1089
1090
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcc617a9d7e25249929c41becb55905973 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcc617a9d7e25249929c41becb55905973>, "propsDefinition">> : never;
|
1091
|
+
"o-treeview-v2": typeof wc8c432da2228d4893816c81c49a40ddd4 extends {
|
1092
|
+
propsDefinition: infer TProp;
|
1093
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc8c432da2228d4893816c81c49a40ddd4 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc8c432da2228d4893816c81c49a40ddd4>, "propsDefinition">> : never;
|
1090
1094
|
"o-validation": typeof wc1e7fa637f4914cbeb9ceb6d577fec150 extends {
|
1091
1095
|
propsDefinition: infer TProp;
|
1092
1096
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc1e7fa637f4914cbeb9ceb6d577fec150 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc1e7fa637f4914cbeb9ceb6d577fec150>, "propsDefinition">> : never;
|
@@ -1649,7 +1653,7 @@ declare global {
|
|
1649
1653
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1650
1654
|
};
|
1651
1655
|
} : typeof wc44e2dd896269442f800da69000d4c2f1;
|
1652
|
-
"
|
1656
|
+
"viewer": typeof wcb059e461e6c048fe830c6d32722e5cdc extends {
|
1653
1657
|
propsDefinition: infer TProp;
|
1654
1658
|
} ? {
|
1655
1659
|
new (...args: any[]): {
|
@@ -3358,6 +3362,17 @@ declare global {
|
|
3358
3362
|
} : typeof wc8c48b06bb9aa40699a8291b6e2c9780f;
|
3359
3363
|
};
|
3360
3364
|
};
|
3365
|
+
"o": {
|
3366
|
+
"treeview": {
|
3367
|
+
"v2": typeof wc8c432da2228d4893816c81c49a40ddd4 extends {
|
3368
|
+
propsDefinition: infer TProp;
|
3369
|
+
} ? {
|
3370
|
+
new (...args: any[]): {
|
3371
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3372
|
+
};
|
3373
|
+
} : typeof wc8c432da2228d4893816c81c49a40ddd4;
|
3374
|
+
};
|
3375
|
+
};
|
3361
3376
|
"emoticon": typeof wc58330f37503947799af05363e58bda3c extends {
|
3362
3377
|
propsDefinition: infer TProp;
|
3363
3378
|
} ? {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.77-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.
|
23
|
+
"@omnia/fx-models": "8.0.77-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
@@ -1,49 +0,0 @@
|
|
1
|
-
import { ChromeDefinition, Guid } from "@omnia/fx-models";
|
2
|
-
export declare class FlatChrome implements ChromeDefinition {
|
3
|
-
name: string;
|
4
|
-
id: Guid;
|
5
|
-
header: {
|
6
|
-
definitionId: Guid;
|
7
|
-
};
|
8
|
-
colors: {
|
9
|
-
colorSchemaType: any;
|
10
|
-
};
|
11
|
-
styles: {
|
12
|
-
border: {
|
13
|
-
top: number;
|
14
|
-
bottom: number;
|
15
|
-
left: number;
|
16
|
-
right: number;
|
17
|
-
};
|
18
|
-
borderRadius: {
|
19
|
-
top: number;
|
20
|
-
bottom: number;
|
21
|
-
left: number;
|
22
|
-
right: number;
|
23
|
-
};
|
24
|
-
};
|
25
|
-
}
|
26
|
-
export declare class RoundedChrome implements ChromeDefinition {
|
27
|
-
name: string;
|
28
|
-
id: Guid;
|
29
|
-
header: {
|
30
|
-
definitionId: Guid;
|
31
|
-
};
|
32
|
-
colors: {
|
33
|
-
colorSchemaType: any;
|
34
|
-
};
|
35
|
-
styles: {
|
36
|
-
border: {
|
37
|
-
top: number;
|
38
|
-
bottom: number;
|
39
|
-
left: number;
|
40
|
-
right: number;
|
41
|
-
};
|
42
|
-
borderRadius: {
|
43
|
-
top: number;
|
44
|
-
bottom: number;
|
45
|
-
left: number;
|
46
|
-
right: number;
|
47
|
-
};
|
48
|
-
};
|
49
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
import { ChromeDefinition, Guid } from "@omnia/fx-models";
|
2
|
-
export declare class FlatChrome implements ChromeDefinition {
|
3
|
-
name: string;
|
4
|
-
id: Guid;
|
5
|
-
header: {
|
6
|
-
definitionId: Guid;
|
7
|
-
};
|
8
|
-
colors: {
|
9
|
-
colorSchemaType: any;
|
10
|
-
};
|
11
|
-
styles: {
|
12
|
-
border: {
|
13
|
-
top: number;
|
14
|
-
bottom: number;
|
15
|
-
left: number;
|
16
|
-
right: number;
|
17
|
-
};
|
18
|
-
borderRadius: {
|
19
|
-
top: number;
|
20
|
-
bottom: number;
|
21
|
-
left: number;
|
22
|
-
right: number;
|
23
|
-
};
|
24
|
-
};
|
25
|
-
}
|
26
|
-
export declare class RoundedChrome implements ChromeDefinition {
|
27
|
-
name: string;
|
28
|
-
id: Guid;
|
29
|
-
header: {
|
30
|
-
definitionId: Guid;
|
31
|
-
};
|
32
|
-
colors: {
|
33
|
-
colorSchemaType: any;
|
34
|
-
};
|
35
|
-
styles: {
|
36
|
-
border: {
|
37
|
-
top: number;
|
38
|
-
bottom: number;
|
39
|
-
left: number;
|
40
|
-
right: number;
|
41
|
-
};
|
42
|
-
borderRadius: {
|
43
|
-
top: number;
|
44
|
-
bottom: number;
|
45
|
-
left: number;
|
46
|
-
right: number;
|
47
|
-
};
|
48
|
-
};
|
49
|
-
}
|
@@ -1,49 +0,0 @@
|
|
1
|
-
import { ChromeDefinition, Guid } from "@omnia/fx-models";
|
2
|
-
export declare class FlatChrome implements ChromeDefinition {
|
3
|
-
name: string;
|
4
|
-
id: Guid;
|
5
|
-
header: {
|
6
|
-
definitionId: Guid;
|
7
|
-
};
|
8
|
-
colors: {
|
9
|
-
colorSchemaType: any;
|
10
|
-
};
|
11
|
-
styles: {
|
12
|
-
border: {
|
13
|
-
top: number;
|
14
|
-
bottom: number;
|
15
|
-
left: number;
|
16
|
-
right: number;
|
17
|
-
};
|
18
|
-
borderRadius: {
|
19
|
-
top: number;
|
20
|
-
bottom: number;
|
21
|
-
left: number;
|
22
|
-
right: number;
|
23
|
-
};
|
24
|
-
};
|
25
|
-
}
|
26
|
-
export declare class RoundedChrome implements ChromeDefinition {
|
27
|
-
name: string;
|
28
|
-
id: Guid;
|
29
|
-
header: {
|
30
|
-
definitionId: Guid;
|
31
|
-
};
|
32
|
-
colors: {
|
33
|
-
colorSchemaType: any;
|
34
|
-
};
|
35
|
-
styles: {
|
36
|
-
border: {
|
37
|
-
top: number;
|
38
|
-
bottom: number;
|
39
|
-
left: number;
|
40
|
-
right: number;
|
41
|
-
};
|
42
|
-
borderRadius: {
|
43
|
-
top: number;
|
44
|
-
bottom: number;
|
45
|
-
left: number;
|
46
|
-
right: number;
|
47
|
-
};
|
48
|
-
};
|
49
|
-
}
|