@omnia/fx 8.0.392-dev → 8.0.394-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.
Files changed (26) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/ux/StyleFlow.d.ts +1 -1
  3. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/admin/settings/blades/mediapicker/store/SettingsBladeStore.d.ts +3 -0
  5. package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/blades/EditColorSchemasBlade.d.ts +16 -0
  6. package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/blades/EditThemeBladeStyles.stylex.d.ts +4 -0
  7. package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/blades/SelectionThemeBlade.d.ts +2 -16
  8. package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts +23 -3
  9. package/internal-do-not-import-from-here/ux/aurora/components/chromepicker/ChromePicker.d.ts +6 -2
  10. package/internal-do-not-import-from-here/ux/aurora/components/chromepicker/store/ChromePickerStore.d.ts +26 -0
  11. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +4 -4
  12. package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaDefinitionPicker.d.ts +31 -326
  13. package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
  14. package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/store/ColorSchemaDefinitionPickerStore.d.ts +23 -0
  15. package/internal-do-not-import-from-here/ux/aurora/components/themepicker/store/ThemePickerStore.d.ts +3 -3
  16. package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/journey/BlabeContext.d.ts +5 -0
  18. package/internal-do-not-import-from-here/ux/journey/stores/JourneySelectStore.d.ts +2 -0
  19. package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +4 -4
  20. package/internal-do-not-import-from-here/ux/oxide/picker/PickerSelection.d.ts +4 -3
  21. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +2 -2
  22. package/internal-do-not-import-from-here/wctypings.d.ts +0 -20
  23. package/package.json +3 -3
  24. package/internal-do-not-import-from-here/ux/aurora/components/blueprinttemplatespicker/BlueprintsTemplatePicker.css.d.ts +0 -4
  25. package/internal-do-not-import-from-here/ux/aurora/components/blueprinttemplatespicker/BlueprintsTemplatePicker.d.ts +0 -306
  26. package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeEditor.d.ts +0 -27
@@ -1,306 +0,0 @@
1
- import { Blueprints } from "@omnia/fx-models";
2
- type variant = "chrome" | "components" | "typography" | "spacings";
3
- declare const _default: {
4
- new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
5
- variant: {
6
- type: import("vue").PropType<variant>;
7
- };
8
- "onUpdate:modelValue": {
9
- type: import("vue").PropType<(value: Blueprints) => any | void>;
10
- };
11
- "v-model": {
12
- type: import("vue").PropType<Blueprints>;
13
- required: false;
14
- };
15
- modelValue: {
16
- type: import("vue").PropType<Blueprints>;
17
- required: false;
18
- };
19
- name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
20
- type: import("vue").PropType<(value: Blueprints) => any | void>;
21
- }; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
22
- type: import("vue").PropType<Blueprints>;
23
- required: false;
24
- }; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
25
- type: import("vue").PropType<Blueprints>;
26
- required: false;
27
- }; } & {
28
- require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, Blueprints, {
29
- "onUpdate:modelValue": {
30
- type: import("vue").PropType<(value: Blueprints) => any | void>;
31
- };
32
- } & {
33
- "v-model": {
34
- type: import("vue").PropType<Blueprints>;
35
- required: false;
36
- };
37
- } & {
38
- modelValue: {
39
- type: import("vue").PropType<Blueprints>;
40
- required: false;
41
- };
42
- }>;
43
- defaultValue(value?: Blueprints): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, Blueprints, {
44
- "onUpdate:modelValue": {
45
- type: import("vue").PropType<(value: Blueprints) => any | void>;
46
- };
47
- } & {
48
- "v-model": {
49
- type: import("vue").PropType<Blueprints>;
50
- required: false;
51
- };
52
- } & {
53
- modelValue: {
54
- type: import("vue").PropType<Blueprints>;
55
- required: false;
56
- };
57
- }, false>;
58
- doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, Blueprints, {
59
- "onUpdate:modelValue": {
60
- type: import("vue").PropType<(value: Blueprints) => any | void>;
61
- };
62
- } & {
63
- "v-model": {
64
- type: import("vue").PropType<Blueprints>;
65
- required: false;
66
- };
67
- } & {
68
- modelValue: {
69
- type: import("vue").PropType<Blueprints>;
70
- required: false;
71
- };
72
- }>;
73
- };
74
- }>> & {
75
- "onUpdate:modelValue"?: (value: Blueprints) => any;
76
- }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
77
- "update:modelValue": (value: Blueprints) => any;
78
- }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
79
- P: {};
80
- B: {};
81
- D: {};
82
- C: {};
83
- M: {};
84
- Defaults: {};
85
- }, Readonly<import("vue").ExtractPropTypes<{
86
- variant: {
87
- type: import("vue").PropType<variant>;
88
- };
89
- "onUpdate:modelValue": {
90
- type: import("vue").PropType<(value: Blueprints) => any | void>;
91
- };
92
- "v-model": {
93
- type: import("vue").PropType<Blueprints>;
94
- required: false;
95
- };
96
- modelValue: {
97
- type: import("vue").PropType<Blueprints>;
98
- required: false;
99
- };
100
- name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
101
- type: import("vue").PropType<(value: Blueprints) => any | void>;
102
- }; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
103
- type: import("vue").PropType<Blueprints>;
104
- required: false;
105
- }; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
106
- type: import("vue").PropType<Blueprints>;
107
- required: false;
108
- }; } & {
109
- require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, Blueprints, {
110
- "onUpdate:modelValue": {
111
- type: import("vue").PropType<(value: Blueprints) => any | void>;
112
- };
113
- } & {
114
- "v-model": {
115
- type: import("vue").PropType<Blueprints>;
116
- required: false;
117
- };
118
- } & {
119
- modelValue: {
120
- type: import("vue").PropType<Blueprints>;
121
- required: false;
122
- };
123
- }>;
124
- defaultValue(value?: Blueprints): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, Blueprints, {
125
- "onUpdate:modelValue": {
126
- type: import("vue").PropType<(value: Blueprints) => any | void>;
127
- };
128
- } & {
129
- "v-model": {
130
- type: import("vue").PropType<Blueprints>;
131
- required: false;
132
- };
133
- } & {
134
- modelValue: {
135
- type: import("vue").PropType<Blueprints>;
136
- required: false;
137
- };
138
- }, false>;
139
- doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, Blueprints, {
140
- "onUpdate:modelValue": {
141
- type: import("vue").PropType<(value: Blueprints) => any | void>;
142
- };
143
- } & {
144
- "v-model": {
145
- type: import("vue").PropType<Blueprints>;
146
- required: false;
147
- };
148
- } & {
149
- modelValue: {
150
- type: import("vue").PropType<Blueprints>;
151
- required: false;
152
- };
153
- }>;
154
- };
155
- }>> & {
156
- "onUpdate:modelValue"?: (value: Blueprints) => any;
157
- }, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
158
- __isFragment?: never;
159
- __isTeleport?: never;
160
- __isSuspense?: never;
161
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
162
- variant: {
163
- type: import("vue").PropType<variant>;
164
- };
165
- "onUpdate:modelValue": {
166
- type: import("vue").PropType<(value: Blueprints) => any | void>;
167
- };
168
- "v-model": {
169
- type: import("vue").PropType<Blueprints>;
170
- required: false;
171
- };
172
- modelValue: {
173
- type: import("vue").PropType<Blueprints>;
174
- required: false;
175
- };
176
- name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
177
- type: import("vue").PropType<(value: Blueprints) => any | void>;
178
- }; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
179
- type: import("vue").PropType<Blueprints>;
180
- required: false;
181
- }; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
182
- type: import("vue").PropType<Blueprints>;
183
- required: false;
184
- }; } & {
185
- require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, Blueprints, {
186
- "onUpdate:modelValue": {
187
- type: import("vue").PropType<(value: Blueprints) => any | void>;
188
- };
189
- } & {
190
- "v-model": {
191
- type: import("vue").PropType<Blueprints>;
192
- required: false;
193
- };
194
- } & {
195
- modelValue: {
196
- type: import("vue").PropType<Blueprints>;
197
- required: false;
198
- };
199
- }>;
200
- defaultValue(value?: Blueprints): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, Blueprints, {
201
- "onUpdate:modelValue": {
202
- type: import("vue").PropType<(value: Blueprints) => any | void>;
203
- };
204
- } & {
205
- "v-model": {
206
- type: import("vue").PropType<Blueprints>;
207
- required: false;
208
- };
209
- } & {
210
- modelValue: {
211
- type: import("vue").PropType<Blueprints>;
212
- required: false;
213
- };
214
- }, false>;
215
- doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, Blueprints, {
216
- "onUpdate:modelValue": {
217
- type: import("vue").PropType<(value: Blueprints) => any | void>;
218
- };
219
- } & {
220
- "v-model": {
221
- type: import("vue").PropType<Blueprints>;
222
- required: false;
223
- };
224
- } & {
225
- modelValue: {
226
- type: import("vue").PropType<Blueprints>;
227
- required: false;
228
- };
229
- }>;
230
- };
231
- }>> & {
232
- "onUpdate:modelValue"?: (value: Blueprints) => any;
233
- }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
234
- "update:modelValue": (value: Blueprints) => any;
235
- }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
236
- propsDefinition: Omit<Readonly<{} & {
237
- name?: {
238
- [x: `onUpdate:${string}`]: {
239
- type: import("vue").PropType<(value: Blueprints) => any | void>;
240
- };
241
- } & {
242
- [x: `v-model:${string}`]: {
243
- type: import("vue").PropType<Blueprints>;
244
- required: false;
245
- };
246
- } & {
247
- [x: string]: {
248
- type: import("vue").PropType<Blueprints>;
249
- required: false;
250
- };
251
- } & {
252
- require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, Blueprints, {
253
- "onUpdate:modelValue": {
254
- type: import("vue").PropType<(value: Blueprints) => any | void>;
255
- };
256
- } & {
257
- "v-model": {
258
- type: import("vue").PropType<Blueprints>;
259
- required: false;
260
- };
261
- } & {
262
- modelValue: {
263
- type: import("vue").PropType<Blueprints>;
264
- required: false;
265
- };
266
- }>;
267
- defaultValue(value?: Blueprints): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, Blueprints, {
268
- "onUpdate:modelValue": {
269
- type: import("vue").PropType<(value: Blueprints) => any | void>;
270
- };
271
- } & {
272
- "v-model": {
273
- type: import("vue").PropType<Blueprints>;
274
- required: false;
275
- };
276
- } & {
277
- modelValue: {
278
- type: import("vue").PropType<Blueprints>;
279
- required: false;
280
- };
281
- }, false>;
282
- doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, Blueprints, {
283
- "onUpdate:modelValue": {
284
- type: import("vue").PropType<(value: Blueprints) => any | void>;
285
- };
286
- } & {
287
- "v-model": {
288
- type: import("vue").PropType<Blueprints>;
289
- required: false;
290
- };
291
- } & {
292
- modelValue: {
293
- type: import("vue").PropType<Blueprints>;
294
- required: false;
295
- };
296
- }>;
297
- };
298
- variant?: variant;
299
- modelValue?: Blueprints;
300
- "onUpdate:modelValue"?: (value: Blueprints) => any | void;
301
- "v-model"?: Blueprints;
302
- }>, "onUpdate:modelValue"> & {
303
- "onUpdate:modelValue"?: (value: Blueprints) => any;
304
- };
305
- };
306
- export default _default;
@@ -1,27 +0,0 @@
1
- import { ResolvedThemeDefinition } from "@omnia/fx-models";
2
- import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
3
- import { VNodeChild } from "vue";
4
- type EditorVariant = "default" | "dialog";
5
- declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
6
- "emit:update:modelValue": (value: ResolvedThemeDefinition) => void;
7
- } & {
8
- "v-model"?: ResolvedThemeDefinition;
9
- } & {
10
- modelValue?: ResolvedThemeDefinition;
11
- } & {
12
- variant?: EditorVariant;
13
- } & {
14
- preview?: boolean;
15
- } & {
16
- toolbarCallback?: (value: () => VNodeChild) => void;
17
- } & DefineEmit<"click:confirm", (value: ResolvedThemeDefinition) => void> & DefineSlot<"activator", () => VNodeChild>> & {
18
- "onUpdate:modelValue"?: (value: ResolvedThemeDefinition) => any;
19
- "onClick:confirm"?: (value: ResolvedThemeDefinition) => any;
20
- } & {
21
- "v-slots"?: {
22
- activator?: () => VNodeChild;
23
- } & Omit<{
24
- default?: import("vue").Slot;
25
- }, "activator">;
26
- } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "preview" | "modelValue" | "v-model" | "emit:update:modelValue" | "slot:activator" | "emit:click:confirm" | "toolbarCallback"> & import("@omnia/fx/ux").VNodeEvents) => any;
27
- export default _default;