@omnia/fx 8.0.136-dev → 8.0.137-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/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/DefineStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseglossary/componentbase/EnterpriseGlossaryTermComponentBase.d.ts +113 -41
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyRouterStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +34 -68
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +68 -136
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +68 -136
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/blueprints/typography/store/TypographyEditorStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/DefinitionsChrome.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/BlueprintsTypography.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/BlueprintsTypography.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/shared/BlueprintsTemplates.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/shared/ThemeDefinitionInstance.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/shared/TypographyBlueprints.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming-v2/store/BlueprintTemplatesStore.d.ts +32 -32
- package/internal-do-not-import-from-here/ux/theming-v2/store/ChromeBlueprintStore.d.ts +34 -68
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaDefinitionStore.d.ts +12 -10
- package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaStore.d.ts +34 -68
- package/internal-do-not-import-from-here/ux/theming-v2/store/SpacingBlueprintStore.d.ts +34 -68
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeDefinitionStoreV2.d.ts +15 -5
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemingService.d.ts +45 -0
- package/internal-do-not-import-from-here/ux/theming-v2/store/TypographyBlueprintStore.d.ts +34 -68
- package/internal-do-not-import-from-here/ux/theming-v2/store/tmpUseIndexDb.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +34 -68
- package/internal-do-not-import-from-here/wctypings.d.ts +41 -0
- package/package.json +3 -3
- package/internal-do-not-import-from-here/ux/enterpriseglossary/componentbase/index.d.ts +0 -2
package/internal-do-not-import-from-here/ux/theming-v2/designkits/shared/BlueprintsTemplates.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ChromeBlueprints, ComponentBlueprints,
|
1
|
+
import { ChromeBlueprints, ComponentBlueprints, GuidValue, SpacingBlueprints, TypographyBlueprints } from "@omnia/fx-models";
|
2
2
|
import { DefaultInnerSpacing, DefaultLayoutSpacing, PreviewInnerSpacing } from "./SpacingBlueprint";
|
3
3
|
import { DefaultTypography, FunkyTypography, PreviewMiniTypography, PreviewTypography } from "./TypographyBlueprints";
|
4
4
|
declare class ChromeBlueprintsTemplate implements ChromeBlueprints {
|
@@ -10,7 +10,7 @@ declare class ChromeBlueprintsTemplate implements ChromeBlueprints {
|
|
10
10
|
variant3: any;
|
11
11
|
}
|
12
12
|
export declare class DefaultSpacingBlueprintTemplate implements SpacingBlueprints {
|
13
|
-
id:
|
13
|
+
id: string;
|
14
14
|
name: string;
|
15
15
|
primary: {
|
16
16
|
layout: DefaultLayoutSpacing;
|
@@ -20,7 +20,7 @@ export declare class DefaultSpacingBlueprintTemplate implements SpacingBlueprint
|
|
20
20
|
}
|
21
21
|
export declare class PreviewSpacingBlueprintTemplate implements SpacingBlueprints {
|
22
22
|
name: string;
|
23
|
-
id:
|
23
|
+
id: string;
|
24
24
|
primary: {
|
25
25
|
layout: PreviewInnerSpacing;
|
26
26
|
inner: PreviewInnerSpacing;
|
@@ -61,16 +61,16 @@ declare class ComponentBlueprintsTemplate implements ComponentBlueprints {
|
|
61
61
|
variant3: any;
|
62
62
|
};
|
63
63
|
blocks: ChromeBlueprintsTemplate;
|
64
|
-
constructor(id:
|
64
|
+
constructor(id: GuidValue, name: string);
|
65
65
|
}
|
66
66
|
export declare class DefaultTypographyBlueprint implements TypographyBlueprints {
|
67
|
-
id:
|
67
|
+
id: string;
|
68
68
|
name: string;
|
69
69
|
primary: DefaultTypography;
|
70
70
|
constructor();
|
71
71
|
}
|
72
72
|
export declare class FunkyTypographyBlueprint implements TypographyBlueprints {
|
73
|
-
id:
|
73
|
+
id: string;
|
74
74
|
name: string;
|
75
75
|
primary: FunkyTypography;
|
76
76
|
constructor();
|
@@ -79,13 +79,13 @@ export declare class PreviewTypographyBlueprint implements TypographyBlueprints
|
|
79
79
|
name: string;
|
80
80
|
primary: PreviewTypography;
|
81
81
|
constructor();
|
82
|
-
id:
|
82
|
+
id: string;
|
83
83
|
}
|
84
84
|
export declare class PreviewMiniTypographyBlueprint implements TypographyBlueprints {
|
85
85
|
name: string;
|
86
86
|
primary: PreviewMiniTypography;
|
87
87
|
constructor();
|
88
|
-
id:
|
88
|
+
id: string;
|
89
89
|
}
|
90
90
|
export declare const BlueprintsTemplates: {
|
91
91
|
chrome: {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { ColorSchema, ColorSchemas, ComponentBlueprints, Guid, SpacingBlueprints, ThemeDefinitionV2, TypographyBlueprints } from "@omnia/fx-models";
|
1
|
+
import { ColorSchema, ColorSchemas, ComponentBlueprints, Guid, GuidValue, SpacingBlueprints, ThemeDefinitionV2, TypographyBlueprints } from "@omnia/fx-models";
|
2
2
|
export declare class ThemeDefinitionInstance implements ThemeDefinitionV2 {
|
3
|
-
id:
|
3
|
+
id: GuidValue;
|
4
4
|
colors: ColorSchemas;
|
5
5
|
dark: boolean;
|
6
6
|
name: string;
|
package/internal-do-not-import-from-here/ux/theming-v2/designkits/shared/TypographyBlueprints.d.ts
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
import {
|
1
|
+
import { TypographyBlueprint } from "@omnia/fx-models";
|
2
2
|
export declare class FunkyTypography implements TypographyBlueprint {
|
3
3
|
name: string;
|
4
4
|
font: {
|
5
|
-
id:
|
5
|
+
id: string;
|
6
6
|
family: string;
|
7
7
|
cdn: string;
|
8
8
|
};
|
@@ -103,7 +103,7 @@ export declare class FunkyTypography implements TypographyBlueprint {
|
|
103
103
|
export declare class DefaultTypography implements TypographyBlueprint {
|
104
104
|
name: string;
|
105
105
|
font: {
|
106
|
-
id:
|
106
|
+
id: string;
|
107
107
|
family: string;
|
108
108
|
};
|
109
109
|
title: {
|
@@ -201,7 +201,7 @@ export declare class DefaultTypography implements TypographyBlueprint {
|
|
201
201
|
};
|
202
202
|
}
|
203
203
|
export declare class PreviewTypography implements TypographyBlueprint {
|
204
|
-
id:
|
204
|
+
id: string;
|
205
205
|
name: string;
|
206
206
|
title: {
|
207
207
|
xl: {
|
@@ -301,7 +301,7 @@ export declare class PreviewTypography implements TypographyBlueprint {
|
|
301
301
|
}
|
302
302
|
export declare class PreviewMiniTypography implements TypographyBlueprint {
|
303
303
|
name: string;
|
304
|
-
id:
|
304
|
+
id: string;
|
305
305
|
title: {
|
306
306
|
xl: {
|
307
307
|
lg: {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { BorderStylingDefinition, ButtonBlueprint, ChromeBlueprint, ChromeBlueprints, ComponentBlueprints, FillDefinition,
|
1
|
+
import { BorderStylingDefinition, ButtonBlueprint, ChromeBlueprint, ChromeBlueprints, ComponentBlueprints, FillDefinition, GuidValue, ITemplateRegistration, IThemeRegistrationApiHandler, SpacingBlueprints, SpacingDefinition, TabsBlueprint, ThemeDefinitionV2, TypographyBlueprints } from "@omnia/fx-models";
|
2
2
|
export declare const useBlueprintTemplatesStore: () => {
|
3
3
|
state: {
|
4
4
|
registrations: IThemeRegistrationApiHandler;
|
@@ -28,153 +28,153 @@ export declare const useBlueprintTemplatesStore: () => {
|
|
28
28
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
29
29
|
actions: {
|
30
30
|
onDispatching: {
|
31
|
-
|
31
|
+
ensureReferencesFromTheme: {
|
32
32
|
subscribe(fn: (themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
33
33
|
};
|
34
34
|
upsertSpacingBlueprints: {
|
35
35
|
subscribe(fn: (blueprint: ITemplateRegistration<SpacingBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
36
36
|
};
|
37
37
|
deleteSpacingBlueprints: {
|
38
|
-
subscribe(fn: (registrationId:
|
38
|
+
subscribe(fn: (registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
39
39
|
};
|
40
40
|
upsertButtonBlueprint: {
|
41
41
|
subscribe(fn: (blueprint: ITemplateRegistration<ButtonBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
42
42
|
};
|
43
43
|
deleteButtonBlueprint: {
|
44
|
-
subscribe(fn: (registrationId:
|
44
|
+
subscribe(fn: (registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
45
45
|
};
|
46
46
|
upsertTabsBlueprint: {
|
47
47
|
subscribe(fn: (blueprint: ITemplateRegistration<TabsBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
48
48
|
};
|
49
49
|
deleteTabsBlueprint: {
|
50
|
-
subscribe(fn: (registrationId:
|
50
|
+
subscribe(fn: (registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
51
51
|
};
|
52
52
|
upsertChromeBlueprint: {
|
53
53
|
subscribe(fn: (blueprint: ITemplateRegistration<ChromeBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
54
54
|
};
|
55
55
|
deleteChromeBlueprint: {
|
56
|
-
subscribe(fn: (registrationId:
|
56
|
+
subscribe(fn: (registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
57
57
|
};
|
58
58
|
upsertComponentBlueprints: {
|
59
59
|
subscribe(fn: (blueprint: ITemplateRegistration<ComponentBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
60
60
|
};
|
61
61
|
deleteComponentBlueprints: {
|
62
|
-
subscribe(fn: (registrationId:
|
62
|
+
subscribe(fn: (registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
63
63
|
};
|
64
64
|
upsertTypographyBlueprints: {
|
65
65
|
subscribe(fn: (blueprints: ITemplateRegistration<TypographyBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
66
66
|
};
|
67
67
|
deleteTypographyBlueprints: {
|
68
|
-
subscribe(fn: (registrationId:
|
68
|
+
subscribe(fn: (registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
69
69
|
};
|
70
70
|
};
|
71
71
|
onDispatched: {
|
72
|
-
|
72
|
+
ensureReferencesFromTheme: {
|
73
73
|
subscribe(fn: (result: void, themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
74
74
|
};
|
75
75
|
upsertSpacingBlueprints: {
|
76
76
|
subscribe(fn: (result: boolean, blueprint: ITemplateRegistration<SpacingBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
77
77
|
};
|
78
78
|
deleteSpacingBlueprints: {
|
79
|
-
subscribe(fn: (result: boolean, registrationId:
|
79
|
+
subscribe(fn: (result: boolean, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
80
80
|
};
|
81
81
|
upsertButtonBlueprint: {
|
82
82
|
subscribe(fn: (result: boolean, blueprint: ITemplateRegistration<ButtonBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
83
83
|
};
|
84
84
|
deleteButtonBlueprint: {
|
85
|
-
subscribe(fn: (result: boolean, registrationId:
|
85
|
+
subscribe(fn: (result: boolean, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
86
86
|
};
|
87
87
|
upsertTabsBlueprint: {
|
88
88
|
subscribe(fn: (result: boolean, blueprint: ITemplateRegistration<TabsBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
89
89
|
};
|
90
90
|
deleteTabsBlueprint: {
|
91
|
-
subscribe(fn: (result: boolean, registrationId:
|
91
|
+
subscribe(fn: (result: boolean, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
92
92
|
};
|
93
93
|
upsertChromeBlueprint: {
|
94
94
|
subscribe(fn: (result: boolean, blueprint: ITemplateRegistration<ChromeBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
95
95
|
};
|
96
96
|
deleteChromeBlueprint: {
|
97
|
-
subscribe(fn: (result: boolean, registrationId:
|
97
|
+
subscribe(fn: (result: boolean, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
98
98
|
};
|
99
99
|
upsertComponentBlueprints: {
|
100
100
|
subscribe(fn: (result: boolean, blueprint: ITemplateRegistration<ComponentBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
101
101
|
};
|
102
102
|
deleteComponentBlueprints: {
|
103
|
-
subscribe(fn: (result: boolean, registrationId:
|
103
|
+
subscribe(fn: (result: boolean, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
104
104
|
};
|
105
105
|
upsertTypographyBlueprints: {
|
106
106
|
subscribe(fn: (result: unknown, blueprints: ITemplateRegistration<TypographyBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
107
107
|
};
|
108
108
|
deleteTypographyBlueprints: {
|
109
|
-
subscribe(fn: (result: boolean, registrationId:
|
109
|
+
subscribe(fn: (result: boolean, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
110
110
|
};
|
111
111
|
};
|
112
112
|
onFailure: {
|
113
|
-
|
113
|
+
ensureReferencesFromTheme: {
|
114
114
|
subscribe(fn: (failureReason: any, themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
115
115
|
};
|
116
116
|
upsertSpacingBlueprints: {
|
117
117
|
subscribe(fn: (failureReason: any, blueprint: ITemplateRegistration<SpacingBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
118
118
|
};
|
119
119
|
deleteSpacingBlueprints: {
|
120
|
-
subscribe(fn: (failureReason: any, registrationId:
|
120
|
+
subscribe(fn: (failureReason: any, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
121
121
|
};
|
122
122
|
upsertButtonBlueprint: {
|
123
123
|
subscribe(fn: (failureReason: any, blueprint: ITemplateRegistration<ButtonBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
124
124
|
};
|
125
125
|
deleteButtonBlueprint: {
|
126
|
-
subscribe(fn: (failureReason: any, registrationId:
|
126
|
+
subscribe(fn: (failureReason: any, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
127
127
|
};
|
128
128
|
upsertTabsBlueprint: {
|
129
129
|
subscribe(fn: (failureReason: any, blueprint: ITemplateRegistration<TabsBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
130
130
|
};
|
131
131
|
deleteTabsBlueprint: {
|
132
|
-
subscribe(fn: (failureReason: any, registrationId:
|
132
|
+
subscribe(fn: (failureReason: any, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
133
133
|
};
|
134
134
|
upsertChromeBlueprint: {
|
135
135
|
subscribe(fn: (failureReason: any, blueprint: ITemplateRegistration<ChromeBlueprint>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
136
136
|
};
|
137
137
|
deleteChromeBlueprint: {
|
138
|
-
subscribe(fn: (failureReason: any, registrationId:
|
138
|
+
subscribe(fn: (failureReason: any, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
139
139
|
};
|
140
140
|
upsertComponentBlueprints: {
|
141
141
|
subscribe(fn: (failureReason: any, blueprint: ITemplateRegistration<ComponentBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
142
142
|
};
|
143
143
|
deleteComponentBlueprints: {
|
144
|
-
subscribe(fn: (failureReason: any, registrationId:
|
144
|
+
subscribe(fn: (failureReason: any, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
145
145
|
};
|
146
146
|
upsertTypographyBlueprints: {
|
147
147
|
subscribe(fn: (failureReason: any, blueprints: ITemplateRegistration<TypographyBlueprints>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
148
148
|
};
|
149
149
|
deleteTypographyBlueprints: {
|
150
|
-
subscribe(fn: (failureReason: any, registrationId:
|
150
|
+
subscribe(fn: (failureReason: any, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
151
151
|
};
|
152
152
|
};
|
153
153
|
} & {
|
154
|
-
|
154
|
+
ensureReferencesFromTheme(themeDefinition: ThemeDefinitionV2): Promise<void>;
|
155
155
|
upsertSpacingBlueprints(blueprint: ITemplateRegistration<SpacingBlueprints>): Promise<boolean>;
|
156
|
-
deleteSpacingBlueprints(registrationId:
|
156
|
+
deleteSpacingBlueprints(registrationId: GuidValue): Promise<boolean>;
|
157
157
|
/**Button */
|
158
158
|
upsertButtonBlueprint(blueprint: ITemplateRegistration<ButtonBlueprint>): Promise<boolean>;
|
159
|
-
deleteButtonBlueprint(registrationId:
|
159
|
+
deleteButtonBlueprint(registrationId: GuidValue): Promise<boolean>;
|
160
160
|
/**Tabs */
|
161
161
|
upsertTabsBlueprint(blueprint: ITemplateRegistration<TabsBlueprint>): Promise<boolean>;
|
162
|
-
deleteTabsBlueprint(registrationId:
|
162
|
+
deleteTabsBlueprint(registrationId: GuidValue): Promise<boolean>;
|
163
163
|
/**Chrome */
|
164
164
|
upsertChromeBlueprint(blueprint: ITemplateRegistration<ChromeBlueprint>): Promise<boolean>;
|
165
|
-
deleteChromeBlueprint(registrationId:
|
165
|
+
deleteChromeBlueprint(registrationId: GuidValue): Promise<boolean>;
|
166
166
|
/**Components */
|
167
167
|
upsertComponentBlueprints(blueprint: ITemplateRegistration<ComponentBlueprints>): Promise<boolean>;
|
168
|
-
deleteComponentBlueprints(registrationId:
|
168
|
+
deleteComponentBlueprints(registrationId: GuidValue): Promise<boolean>;
|
169
169
|
/**Typography */
|
170
170
|
upsertTypographyBlueprints(blueprints: ITemplateRegistration<TypographyBlueprints>): Promise<unknown>;
|
171
|
-
deleteTypographyBlueprints(registrationId:
|
171
|
+
deleteTypographyBlueprints(registrationId: GuidValue): Promise<boolean>;
|
172
172
|
};
|
173
173
|
get: {
|
174
174
|
byId: {
|
175
|
-
componentBlueprints(id:
|
176
|
-
spacingBlueprints(id:
|
177
|
-
typopgraphyBlueprints(id:
|
175
|
+
componentBlueprints(id: GuidValue): ComponentBlueprints;
|
176
|
+
spacingBlueprints(id: GuidValue): SpacingBlueprints;
|
177
|
+
typopgraphyBlueprints(id: GuidValue): TypographyBlueprints;
|
178
178
|
};
|
179
179
|
};
|
180
180
|
};
|
@@ -309,12 +309,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
309
309
|
colorToned: string;
|
310
310
|
};
|
311
311
|
id: {
|
312
|
-
|
312
|
+
toString: () => string;
|
313
|
+
equals?: {
|
313
314
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
314
315
|
};
|
315
|
-
toString: () => string;
|
316
|
-
toJSON: () => string;
|
317
|
-
valueOf: () => string;
|
318
316
|
};
|
319
317
|
};
|
320
318
|
secondary: {
|
@@ -340,12 +338,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
340
338
|
colorToned: string;
|
341
339
|
};
|
342
340
|
id: {
|
343
|
-
|
341
|
+
toString: () => string;
|
342
|
+
equals?: {
|
344
343
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
345
344
|
};
|
346
|
-
toString: () => string;
|
347
|
-
toJSON: () => string;
|
348
|
-
valueOf: () => string;
|
349
345
|
};
|
350
346
|
};
|
351
347
|
accent1: {
|
@@ -371,12 +367,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
371
367
|
colorToned: string;
|
372
368
|
};
|
373
369
|
id: {
|
374
|
-
|
370
|
+
toString: () => string;
|
371
|
+
equals?: {
|
375
372
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
376
373
|
};
|
377
|
-
toString: () => string;
|
378
|
-
toJSON: () => string;
|
379
|
-
valueOf: () => string;
|
380
374
|
};
|
381
375
|
};
|
382
376
|
accent2: {
|
@@ -402,12 +396,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
402
396
|
colorToned: string;
|
403
397
|
};
|
404
398
|
id: {
|
405
|
-
|
399
|
+
toString: () => string;
|
400
|
+
equals?: {
|
406
401
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
407
402
|
};
|
408
|
-
toString: () => string;
|
409
|
-
toJSON: () => string;
|
410
|
-
valueOf: () => string;
|
411
403
|
};
|
412
404
|
};
|
413
405
|
accent3: {
|
@@ -433,12 +425,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
433
425
|
colorToned: string;
|
434
426
|
};
|
435
427
|
id: {
|
436
|
-
|
428
|
+
toString: () => string;
|
429
|
+
equals?: {
|
437
430
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
438
431
|
};
|
439
|
-
toString: () => string;
|
440
|
-
toJSON: () => string;
|
441
|
-
valueOf: () => string;
|
442
432
|
};
|
443
433
|
};
|
444
434
|
neutral: {
|
@@ -464,12 +454,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
464
454
|
colorToned: string;
|
465
455
|
};
|
466
456
|
id: {
|
467
|
-
|
457
|
+
toString: () => string;
|
458
|
+
equals?: {
|
468
459
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
469
460
|
};
|
470
|
-
toString: () => string;
|
471
|
-
toJSON: () => string;
|
472
|
-
valueOf: () => string;
|
473
461
|
};
|
474
462
|
};
|
475
463
|
background: {
|
@@ -495,12 +483,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
495
483
|
colorToned: string;
|
496
484
|
};
|
497
485
|
id: {
|
498
|
-
|
486
|
+
toString: () => string;
|
487
|
+
equals?: {
|
499
488
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
500
489
|
};
|
501
|
-
toString: () => string;
|
502
|
-
toJSON: () => string;
|
503
|
-
valueOf: () => string;
|
504
490
|
};
|
505
491
|
};
|
506
492
|
error: {
|
@@ -526,12 +512,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
526
512
|
colorToned: string;
|
527
513
|
};
|
528
514
|
id: {
|
529
|
-
|
515
|
+
toString: () => string;
|
516
|
+
equals?: {
|
530
517
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
531
518
|
};
|
532
|
-
toString: () => string;
|
533
|
-
toJSON: () => string;
|
534
|
-
valueOf: () => string;
|
535
519
|
};
|
536
520
|
};
|
537
521
|
info: {
|
@@ -557,12 +541,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
557
541
|
colorToned: string;
|
558
542
|
};
|
559
543
|
id: {
|
560
|
-
|
544
|
+
toString: () => string;
|
545
|
+
equals?: {
|
561
546
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
562
547
|
};
|
563
|
-
toString: () => string;
|
564
|
-
toJSON: () => string;
|
565
|
-
valueOf: () => string;
|
566
548
|
};
|
567
549
|
};
|
568
550
|
warning: {
|
@@ -588,12 +570,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
588
570
|
colorToned: string;
|
589
571
|
};
|
590
572
|
id: {
|
591
|
-
|
573
|
+
toString: () => string;
|
574
|
+
equals?: {
|
592
575
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
593
576
|
};
|
594
|
-
toString: () => string;
|
595
|
-
toJSON: () => string;
|
596
|
-
valueOf: () => string;
|
597
577
|
};
|
598
578
|
};
|
599
579
|
notification: {
|
@@ -619,12 +599,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
619
599
|
colorToned: string;
|
620
600
|
};
|
621
601
|
id: {
|
622
|
-
|
602
|
+
toString: () => string;
|
603
|
+
equals?: {
|
623
604
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
624
605
|
};
|
625
|
-
toString: () => string;
|
626
|
-
toJSON: () => string;
|
627
|
-
valueOf: () => string;
|
628
606
|
};
|
629
607
|
};
|
630
608
|
};
|
@@ -633,12 +611,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
633
611
|
name: string;
|
634
612
|
font?: {
|
635
613
|
id: {
|
636
|
-
|
614
|
+
toString: () => string;
|
615
|
+
equals?: {
|
637
616
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
638
617
|
};
|
639
|
-
toString: () => string;
|
640
|
-
toJSON: () => string;
|
641
|
-
valueOf: () => string;
|
642
618
|
};
|
643
619
|
family: string;
|
644
620
|
cdn?: string;
|
@@ -870,12 +846,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
870
846
|
};
|
871
847
|
name?: string;
|
872
848
|
id: {
|
873
|
-
|
849
|
+
toString: () => string;
|
850
|
+
equals?: {
|
874
851
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
875
852
|
};
|
876
|
-
toString: () => string;
|
877
|
-
toJSON: () => string;
|
878
|
-
valueOf: () => string;
|
879
853
|
};
|
880
854
|
};
|
881
855
|
spacing: {
|
@@ -899,12 +873,10 @@ export declare const useChromeBlueprintStore: () => {
|
|
899
873
|
};
|
900
874
|
name?: string;
|
901
875
|
id: {
|
902
|
-
|
876
|
+
toString: () => string;
|
877
|
+
equals?: {
|
903
878
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
904
879
|
};
|
905
|
-
toString: () => string;
|
906
|
-
toJSON: () => string;
|
907
|
-
valueOf: () => string;
|
908
880
|
};
|
909
881
|
};
|
910
882
|
components: {
|
@@ -4979,31 +4951,25 @@ export declare const useChromeBlueprintStore: () => {
|
|
4979
4951
|
};
|
4980
4952
|
name?: string;
|
4981
4953
|
id: {
|
4982
|
-
|
4954
|
+
toString: () => string;
|
4955
|
+
equals?: {
|
4983
4956
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
4984
4957
|
};
|
4985
|
-
toString: () => string;
|
4986
|
-
toJSON: () => string;
|
4987
|
-
valueOf: () => string;
|
4988
4958
|
};
|
4989
4959
|
};
|
4990
4960
|
name?: string;
|
4991
4961
|
id: {
|
4992
|
-
|
4962
|
+
toString: () => string;
|
4963
|
+
equals?: {
|
4993
4964
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
4994
4965
|
};
|
4995
|
-
toString: () => string;
|
4996
|
-
toJSON: () => string;
|
4997
|
-
valueOf: () => string;
|
4998
4966
|
};
|
4999
4967
|
};
|
5000
4968
|
id: {
|
5001
|
-
|
4969
|
+
toString: () => string;
|
4970
|
+
equals?: {
|
5002
4971
|
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
5003
4972
|
};
|
5004
|
-
toString: () => string;
|
5005
|
-
toJSON: () => string;
|
5006
|
-
valueOf: () => string;
|
5007
4973
|
};
|
5008
4974
|
name?: string;
|
5009
4975
|
};
|
package/internal-do-not-import-from-here/ux/theming-v2/store/ColorSchemaDefinitionStore.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorSchema,
|
1
|
+
import { ColorSchema, GuidValue, ITemplateRegistration, ThemeDefinitionV2 } from "@omnia/fx-models";
|
2
2
|
export declare const useColorSchemaDefinitionStore: () => {
|
3
3
|
state: {
|
4
4
|
schemas: ITemplateRegistration<ColorSchema>[];
|
@@ -8,42 +8,44 @@ export declare const useColorSchemaDefinitionStore: () => {
|
|
8
8
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
9
9
|
actions: {
|
10
10
|
onDispatching: {
|
11
|
-
|
11
|
+
ensureReferencesFromTheme: {
|
12
12
|
subscribe(fn: (themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
13
13
|
};
|
14
14
|
upsertColorSchema: {
|
15
15
|
subscribe(fn: (colorSchemaRegistration: ITemplateRegistration<ColorSchema>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
16
16
|
};
|
17
17
|
deleteColorSchema: {
|
18
|
-
subscribe(fn: (registrationId:
|
18
|
+
subscribe(fn: (registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
19
19
|
};
|
20
20
|
};
|
21
21
|
onDispatched: {
|
22
|
-
|
22
|
+
ensureReferencesFromTheme: {
|
23
23
|
subscribe(fn: (result: void, themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
24
|
};
|
25
25
|
upsertColorSchema: {
|
26
26
|
subscribe(fn: (result: unknown, colorSchemaRegistration: ITemplateRegistration<ColorSchema>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
27
27
|
};
|
28
28
|
deleteColorSchema: {
|
29
|
-
subscribe(fn: (result: unknown, registrationId:
|
29
|
+
subscribe(fn: (result: unknown, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
30
30
|
};
|
31
31
|
};
|
32
32
|
onFailure: {
|
33
|
-
|
33
|
+
ensureReferencesFromTheme: {
|
34
34
|
subscribe(fn: (failureReason: any, themeDefinition: ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
35
35
|
};
|
36
36
|
upsertColorSchema: {
|
37
37
|
subscribe(fn: (failureReason: any, colorSchemaRegistration: ITemplateRegistration<ColorSchema>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
38
38
|
};
|
39
39
|
deleteColorSchema: {
|
40
|
-
subscribe(fn: (failureReason: any, registrationId:
|
40
|
+
subscribe(fn: (failureReason: any, registrationId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
41
41
|
};
|
42
42
|
};
|
43
43
|
} & {
|
44
|
-
|
44
|
+
ensureReferencesFromTheme(themeDefinition: ThemeDefinitionV2): Promise<void>;
|
45
45
|
upsertColorSchema(colorSchemaRegistration: ITemplateRegistration<ColorSchema>): Promise<unknown>;
|
46
|
-
deleteColorSchema(registrationId:
|
46
|
+
deleteColorSchema(registrationId: GuidValue): Promise<unknown>;
|
47
|
+
};
|
48
|
+
get: {
|
49
|
+
byId: (id: GuidValue) => ColorSchema;
|
47
50
|
};
|
48
|
-
get: {};
|
49
51
|
};
|