@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.
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/StyleFlow.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/admin/settings/blades/mediapicker/store/SettingsBladeStore.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/blades/EditColorSchemasBlade.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/blades/EditThemeBladeStyles.stylex.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/blades/SelectionThemeBlade.d.ts +2 -16
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts +23 -3
- package/internal-do-not-import-from-here/ux/aurora/components/chromepicker/ChromePicker.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/aurora/components/chromepicker/store/ChromePickerStore.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaDefinitionPicker.d.ts +31 -326
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/store/ColorSchemaDefinitionPickerStore.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/store/ThemePickerStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/BlabeContext.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/journey/stores/JourneySelectStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/oxide/picker/PickerSelection.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +2 -2
- package/internal-do-not-import-from-here/wctypings.d.ts +0 -20
- package/package.json +3 -3
- package/internal-do-not-import-from-here/ux/aurora/components/blueprinttemplatespicker/BlueprintsTemplatePicker.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/aurora/components/blueprinttemplatespicker/BlueprintsTemplatePicker.d.ts +0 -306
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeEditor.d.ts +0 -27
@@ -1,328 +1,33 @@
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
1
2
|
import { ColorSchema } from "@omnia/fx-models";
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
33
|
-
};
|
34
|
-
} & {
|
35
|
-
"v-model": {
|
36
|
-
type: import("vue").PropType<ColorSchema>;
|
37
|
-
required: false;
|
38
|
-
};
|
39
|
-
} & {
|
40
|
-
modelValue: {
|
41
|
-
type: import("vue").PropType<ColorSchema>;
|
42
|
-
required: false;
|
43
|
-
};
|
44
|
-
}>;
|
45
|
-
defaultValue(value?: ColorSchema): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ColorSchema, {
|
46
|
-
"onUpdate:modelValue": {
|
47
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
48
|
-
};
|
49
|
-
} & {
|
50
|
-
"v-model": {
|
51
|
-
type: import("vue").PropType<ColorSchema>;
|
52
|
-
required: false;
|
53
|
-
};
|
54
|
-
} & {
|
55
|
-
modelValue: {
|
56
|
-
type: import("vue").PropType<ColorSchema>;
|
57
|
-
required: false;
|
58
|
-
};
|
59
|
-
}, false>;
|
60
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ColorSchema, {
|
61
|
-
"onUpdate:modelValue": {
|
62
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
63
|
-
};
|
64
|
-
} & {
|
65
|
-
"v-model": {
|
66
|
-
type: import("vue").PropType<ColorSchema>;
|
67
|
-
required: false;
|
68
|
-
};
|
69
|
-
} & {
|
70
|
-
modelValue: {
|
71
|
-
type: import("vue").PropType<ColorSchema>;
|
72
|
-
required: false;
|
73
|
-
};
|
74
|
-
}>;
|
75
|
-
};
|
76
|
-
class: {
|
77
|
-
type: import("vue").PropType<String | String[]>;
|
78
|
-
required: boolean;
|
79
|
-
};
|
80
|
-
}>> & {
|
81
|
-
"onUpdate:modelValue"?: (colorSchema: ColorSchema) => any;
|
82
|
-
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
83
|
-
"update:modelValue": (colorSchema: ColorSchema) => any;
|
84
|
-
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
85
|
-
P: {};
|
86
|
-
B: {};
|
87
|
-
D: {};
|
88
|
-
C: {};
|
89
|
-
M: {};
|
90
|
-
Defaults: {};
|
91
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
92
|
-
label: {
|
93
|
-
type: import("vue").PropType<string>;
|
94
|
-
};
|
95
|
-
items: {
|
96
|
-
type: import("vue").PropType<ColorSchema[]>;
|
97
|
-
};
|
98
|
-
"onUpdate:modelValue": {
|
99
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
100
|
-
};
|
101
|
-
"v-model": {
|
102
|
-
type: import("vue").PropType<ColorSchema>;
|
103
|
-
required: false;
|
104
|
-
};
|
105
|
-
modelValue: {
|
106
|
-
type: import("vue").PropType<ColorSchema>;
|
107
|
-
required: false;
|
108
|
-
};
|
109
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
110
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
111
|
-
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
112
|
-
type: import("vue").PropType<ColorSchema>;
|
113
|
-
required: false;
|
114
|
-
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
115
|
-
type: import("vue").PropType<ColorSchema>;
|
116
|
-
required: false;
|
117
|
-
}; } & {
|
118
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ColorSchema, {
|
119
|
-
"onUpdate:modelValue": {
|
120
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
121
|
-
};
|
122
|
-
} & {
|
123
|
-
"v-model": {
|
124
|
-
type: import("vue").PropType<ColorSchema>;
|
125
|
-
required: false;
|
126
|
-
};
|
127
|
-
} & {
|
128
|
-
modelValue: {
|
129
|
-
type: import("vue").PropType<ColorSchema>;
|
130
|
-
required: false;
|
131
|
-
};
|
132
|
-
}>;
|
133
|
-
defaultValue(value?: ColorSchema): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ColorSchema, {
|
134
|
-
"onUpdate:modelValue": {
|
135
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
136
|
-
};
|
137
|
-
} & {
|
138
|
-
"v-model": {
|
139
|
-
type: import("vue").PropType<ColorSchema>;
|
140
|
-
required: false;
|
141
|
-
};
|
142
|
-
} & {
|
143
|
-
modelValue: {
|
144
|
-
type: import("vue").PropType<ColorSchema>;
|
145
|
-
required: false;
|
146
|
-
};
|
147
|
-
}, false>;
|
148
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ColorSchema, {
|
149
|
-
"onUpdate:modelValue": {
|
150
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
151
|
-
};
|
152
|
-
} & {
|
153
|
-
"v-model": {
|
154
|
-
type: import("vue").PropType<ColorSchema>;
|
155
|
-
required: false;
|
156
|
-
};
|
157
|
-
} & {
|
158
|
-
modelValue: {
|
159
|
-
type: import("vue").PropType<ColorSchema>;
|
160
|
-
required: false;
|
161
|
-
};
|
162
|
-
}>;
|
163
|
-
};
|
164
|
-
class: {
|
165
|
-
type: import("vue").PropType<String | String[]>;
|
166
|
-
required: boolean;
|
167
|
-
};
|
168
|
-
}>> & {
|
169
|
-
"onUpdate:modelValue"?: (colorSchema: ColorSchema) => any;
|
170
|
-
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
171
|
-
__isFragment?: never;
|
172
|
-
__isTeleport?: never;
|
173
|
-
__isSuspense?: never;
|
174
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
175
|
-
label: {
|
176
|
-
type: import("vue").PropType<string>;
|
177
|
-
};
|
178
|
-
items: {
|
179
|
-
type: import("vue").PropType<ColorSchema[]>;
|
180
|
-
};
|
181
|
-
"onUpdate:modelValue": {
|
182
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
183
|
-
};
|
184
|
-
"v-model": {
|
185
|
-
type: import("vue").PropType<ColorSchema>;
|
186
|
-
required: false;
|
187
|
-
};
|
188
|
-
modelValue: {
|
189
|
-
type: import("vue").PropType<ColorSchema>;
|
190
|
-
required: false;
|
191
|
-
};
|
192
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
193
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
194
|
-
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
195
|
-
type: import("vue").PropType<ColorSchema>;
|
196
|
-
required: false;
|
197
|
-
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
198
|
-
type: import("vue").PropType<ColorSchema>;
|
199
|
-
required: false;
|
200
|
-
}; } & {
|
201
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ColorSchema, {
|
202
|
-
"onUpdate:modelValue": {
|
203
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
204
|
-
};
|
205
|
-
} & {
|
206
|
-
"v-model": {
|
207
|
-
type: import("vue").PropType<ColorSchema>;
|
208
|
-
required: false;
|
209
|
-
};
|
210
|
-
} & {
|
211
|
-
modelValue: {
|
212
|
-
type: import("vue").PropType<ColorSchema>;
|
213
|
-
required: false;
|
214
|
-
};
|
215
|
-
}>;
|
216
|
-
defaultValue(value?: ColorSchema): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ColorSchema, {
|
217
|
-
"onUpdate:modelValue": {
|
218
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
219
|
-
};
|
220
|
-
} & {
|
221
|
-
"v-model": {
|
222
|
-
type: import("vue").PropType<ColorSchema>;
|
223
|
-
required: false;
|
224
|
-
};
|
225
|
-
} & {
|
226
|
-
modelValue: {
|
227
|
-
type: import("vue").PropType<ColorSchema>;
|
228
|
-
required: false;
|
229
|
-
};
|
230
|
-
}, false>;
|
231
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ColorSchema, {
|
232
|
-
"onUpdate:modelValue": {
|
233
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
234
|
-
};
|
235
|
-
} & {
|
236
|
-
"v-model": {
|
237
|
-
type: import("vue").PropType<ColorSchema>;
|
238
|
-
required: false;
|
239
|
-
};
|
240
|
-
} & {
|
241
|
-
modelValue: {
|
242
|
-
type: import("vue").PropType<ColorSchema>;
|
243
|
-
required: false;
|
244
|
-
};
|
245
|
-
}>;
|
246
|
-
};
|
247
|
-
class: {
|
248
|
-
type: import("vue").PropType<String | String[]>;
|
249
|
-
required: boolean;
|
250
|
-
};
|
251
|
-
}>> & {
|
252
|
-
"onUpdate:modelValue"?: (colorSchema: ColorSchema) => any;
|
253
|
-
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
254
|
-
"update:modelValue": (colorSchema: ColorSchema) => any;
|
255
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
256
|
-
propsDefinition: Omit<Readonly<{} & {
|
257
|
-
name?: {
|
258
|
-
[x: `onUpdate:${string}`]: {
|
259
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
260
|
-
};
|
261
|
-
} & {
|
262
|
-
[x: `v-model:${string}`]: {
|
263
|
-
type: import("vue").PropType<ColorSchema>;
|
264
|
-
required: false;
|
265
|
-
};
|
266
|
-
} & {
|
267
|
-
[x: string]: {
|
268
|
-
type: import("vue").PropType<ColorSchema>;
|
269
|
-
required: false;
|
270
|
-
};
|
271
|
-
} & {
|
272
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, ColorSchema, {
|
273
|
-
"onUpdate:modelValue": {
|
274
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
275
|
-
};
|
276
|
-
} & {
|
277
|
-
"v-model": {
|
278
|
-
type: import("vue").PropType<ColorSchema>;
|
279
|
-
required: false;
|
280
|
-
};
|
281
|
-
} & {
|
282
|
-
modelValue: {
|
283
|
-
type: import("vue").PropType<ColorSchema>;
|
284
|
-
required: false;
|
285
|
-
};
|
286
|
-
}>;
|
287
|
-
defaultValue(value?: ColorSchema): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, ColorSchema, {
|
288
|
-
"onUpdate:modelValue": {
|
289
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
290
|
-
};
|
291
|
-
} & {
|
292
|
-
"v-model": {
|
293
|
-
type: import("vue").PropType<ColorSchema>;
|
294
|
-
required: false;
|
295
|
-
};
|
296
|
-
} & {
|
297
|
-
modelValue: {
|
298
|
-
type: import("vue").PropType<ColorSchema>;
|
299
|
-
required: false;
|
300
|
-
};
|
301
|
-
}, false>;
|
302
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, ColorSchema, {
|
303
|
-
"onUpdate:modelValue": {
|
304
|
-
type: import("vue").PropType<(value: ColorSchema) => any | void>;
|
305
|
-
};
|
306
|
-
} & {
|
307
|
-
"v-model": {
|
308
|
-
type: import("vue").PropType<ColorSchema>;
|
309
|
-
required: false;
|
310
|
-
};
|
311
|
-
} & {
|
312
|
-
modelValue: {
|
313
|
-
type: import("vue").PropType<ColorSchema>;
|
314
|
-
required: false;
|
315
|
-
};
|
316
|
-
}>;
|
317
|
-
};
|
318
|
-
class?: String | String[];
|
319
|
-
label?: string;
|
320
|
-
modelValue?: ColorSchema;
|
321
|
-
items?: ColorSchema[];
|
322
|
-
"onUpdate:modelValue"?: (value: ColorSchema) => any | void;
|
323
|
-
"v-model"?: ColorSchema;
|
324
|
-
}>, "onUpdate:modelValue"> & {
|
325
|
-
"onUpdate:modelValue"?: (colorSchema: ColorSchema) => any;
|
326
|
-
};
|
327
|
-
};
|
3
|
+
import { VNode } from "vue";
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
"emit:update:modelValue": (value: ColorSchema) => void;
|
6
|
+
} & {
|
7
|
+
"v-model"?: ColorSchema;
|
8
|
+
} & {
|
9
|
+
modelValue?: ColorSchema;
|
10
|
+
} & {
|
11
|
+
toned?: boolean;
|
12
|
+
} & {
|
13
|
+
items?: ColorSchema[];
|
14
|
+
} & {
|
15
|
+
variant?: "button" | "dialog" | "dropdown" | "journey";
|
16
|
+
} & {
|
17
|
+
fallbackColorType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
18
|
+
} & {
|
19
|
+
label?: string;
|
20
|
+
} & {
|
21
|
+
selectionLabel?: string;
|
22
|
+
} & {
|
23
|
+
placeholder?: string;
|
24
|
+
} & DefineSlot<"activator", () => VNode>> & {
|
25
|
+
"onUpdate:modelValue"?: (value: ColorSchema) => any;
|
26
|
+
} & {
|
27
|
+
"v-slots"?: {
|
28
|
+
activator?: () => VNode;
|
29
|
+
} & Omit<{
|
30
|
+
default?: import("vue").Slot;
|
31
|
+
}, "activator">;
|
32
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "variant" | "label" | "modelValue" | "items" | "v-model" | "toned" | "placeholder" | "emit:update:modelValue" | "slot:activator" | "fallbackColorType" | "selectionLabel"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
328
33
|
export default _default;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ColorSchema } from "@omnia/fx-models";
|
2
|
-
type Variant = "default" | "toolbar" | "palette" | "card-preview" | "button" | "swatch";
|
2
|
+
type Variant = "default" | "toolbar" | "palette" | "card-preview" | "button" | "swatch" | "placeholder";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
5
5
|
class: {
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { ColorSchema, ColorSchemaType } from "@omnia/fx-models";
|
2
|
+
export declare const useColorSchemaDefinitionPickerStore: () => {
|
3
|
+
state: {
|
4
|
+
internalModel: ColorSchema;
|
5
|
+
colorSchemas: ColorSchema[];
|
6
|
+
};
|
7
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
8
|
+
colorSchemas: {
|
9
|
+
readonly all: ColorSchema[];
|
10
|
+
};
|
11
|
+
clear: () => void;
|
12
|
+
select: (model: ColorSchema) => void;
|
13
|
+
initState: (model: ColorSchema, colorSchemas: ColorSchema[]) => void;
|
14
|
+
}>;
|
15
|
+
get: {
|
16
|
+
fallBackColorSchema: (colorSchemaType: ColorSchemaType) => any;
|
17
|
+
};
|
18
|
+
rules: {
|
19
|
+
isSelected: (schema: ColorSchema) => boolean;
|
20
|
+
};
|
21
|
+
} & {
|
22
|
+
dispose?: () => void;
|
23
|
+
};
|
@@ -14,13 +14,13 @@ export declare const useThemePickerStore: () => {
|
|
14
14
|
state: {
|
15
15
|
searchText: string;
|
16
16
|
blueprint: import("@omnia/fx-models").InputBlueprint;
|
17
|
-
variant: "dialog" | "dropdown" | "journey" | "virtual-list";
|
17
|
+
variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list";
|
18
18
|
showMenu: boolean;
|
19
19
|
};
|
20
20
|
events: import("@omnia/fx/stores").StoreEvents<{
|
21
21
|
searchText: string;
|
22
22
|
blueprint: import("@omnia/fx-models").InputBlueprint;
|
23
|
-
variant: "dialog" | "dropdown" | "journey" | "virtual-list";
|
23
|
+
variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list";
|
24
24
|
showMenu: boolean;
|
25
25
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
26
26
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
@@ -28,7 +28,7 @@ export declare const useThemePickerStore: () => {
|
|
28
28
|
show: () => void;
|
29
29
|
hide: () => void;
|
30
30
|
};
|
31
|
-
init(externalModel: import("@omnia/fx-models").MenuState, renderingSlots: any, blueprint: import("@omnia/fx-models").InputBlueprint, variant: "dialog" | "dropdown" | "journey" | "virtual-list"): void;
|
31
|
+
init(externalModel: import("@omnia/fx-models").MenuState, renderingSlots: any, blueprint: import("@omnia/fx-models").InputBlueprint, variant: "button" | "dialog" | "dropdown" | "journey" | "virtual-list"): void;
|
32
32
|
}>;
|
33
33
|
get: {
|
34
34
|
readonly bladesId: {
|
@@ -7,7 +7,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
7
7
|
} & {
|
8
8
|
required?: boolean;
|
9
9
|
} & {
|
10
|
-
variant?: "dropdown" | "journey";
|
10
|
+
variant?: "button" | "dropdown" | "journey";
|
11
11
|
} & {
|
12
12
|
"emit:update:modelValue": (value: IconPickerModel) => void;
|
13
13
|
} & {
|
@@ -1,5 +1,10 @@
|
|
1
|
+
import { guid } from "@omnia/fx-models";
|
1
2
|
import { BladeContext } from "./models";
|
2
3
|
export declare class JourneyBladeContext {
|
3
4
|
container: BladeContext;
|
4
5
|
constructor(container: BladeContext);
|
5
6
|
}
|
7
|
+
export declare class JourneyBladeComponentHost {
|
8
|
+
id: guid;
|
9
|
+
constructor(id: guid);
|
10
|
+
}
|
@@ -70,6 +70,7 @@ export declare const useJourneySelectStore: () => {
|
|
70
70
|
propertyValueMapping: JourneySelectPropertyMapping;
|
71
71
|
};
|
72
72
|
bladeActions: ActionDefinition[];
|
73
|
+
containerBladeId: guid;
|
73
74
|
};
|
74
75
|
events: import("@omnia/fx/stores").StoreEvents<{
|
75
76
|
searchText: string;
|
@@ -106,6 +107,7 @@ export declare const useJourneySelectStore: () => {
|
|
106
107
|
propertyValueMapping: JourneySelectPropertyMapping;
|
107
108
|
};
|
108
109
|
bladeActions: ActionDefinition[];
|
110
|
+
containerBladeId: guid;
|
109
111
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
110
112
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
111
113
|
translateToSelectItem: (item: any) => JourneySelectItem<any>;
|
@@ -39,7 +39,7 @@ declare const _default: {
|
|
39
39
|
type: import("vue").PropType<boolean>;
|
40
40
|
};
|
41
41
|
variant: {
|
42
|
-
type: import("vue").PropType<"dropdown" | "journey">;
|
42
|
+
type: import("vue").PropType<"button" | "dropdown" | "journey">;
|
43
43
|
};
|
44
44
|
"onUpdate:modelValue": {
|
45
45
|
type: import("vue").PropType<(value: Language) => any | void>;
|
@@ -152,7 +152,7 @@ declare const _default: {
|
|
152
152
|
type: import("vue").PropType<boolean>;
|
153
153
|
};
|
154
154
|
variant: {
|
155
|
-
type: import("vue").PropType<"dropdown" | "journey">;
|
155
|
+
type: import("vue").PropType<"button" | "dropdown" | "journey">;
|
156
156
|
};
|
157
157
|
"onUpdate:modelValue": {
|
158
158
|
type: import("vue").PropType<(value: Language) => any | void>;
|
@@ -260,7 +260,7 @@ declare const _default: {
|
|
260
260
|
type: import("vue").PropType<boolean>;
|
261
261
|
};
|
262
262
|
variant: {
|
263
|
-
type: import("vue").PropType<"dropdown" | "journey">;
|
263
|
+
type: import("vue").PropType<"button" | "dropdown" | "journey">;
|
264
264
|
};
|
265
265
|
"onUpdate:modelValue": {
|
266
266
|
type: import("vue").PropType<(value: Language) => any | void>;
|
@@ -395,7 +395,7 @@ declare const _default: {
|
|
395
395
|
};
|
396
396
|
}>;
|
397
397
|
};
|
398
|
-
variant?: "dropdown" | "journey";
|
398
|
+
variant?: "button" | "dropdown" | "journey";
|
399
399
|
label?: string;
|
400
400
|
required?: boolean;
|
401
401
|
disabled?: boolean;
|
@@ -1,15 +1,16 @@
|
|
1
1
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
-
type PickerSelectionProps = DefinePropTheming & DefineProp<"text", string, false, null, "Sets the text of the component."> & DefineProp<"grid", boolean, false, null, "Sets the component to disabled"> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"searchable", boolean, false, null, "A search box is displayed with the text value"> & DefineProp<"isLoading", boolean, false, null, "Displays a loading indicator"> & DefineProp<"hasSelection", boolean | any, false, null, "If the component has selection or not. If true it will render the selection slot and show clear icon"> & DefineProp<"placeholder", string, false, null, "Sets the placeholder of the component. The placeholder is shown if there is no selection and displays select if empty"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void> & DefineEmit<"show:selection", () => void> & DefineEmit<"search", (text: string) => void> & DefineSlot<"selectedItemRenderer", () => VNodeChild>;
|
3
|
+
type PickerSelectionProps = DefinePropTheming & DefineProp<"text", string, false, null, "Sets the text of the component."> & DefineProp<"grid", boolean, false, null, "Sets the component to disabled"> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"searchable", boolean, false, null, "A search box is displayed with the text value"> & DefineProp<"isLoading", boolean, false, null, "Displays a loading indicator"> & DefineProp<"hasSelection", boolean | any, false, null, "If the component has selection or not. If true it will render the selection slot and show clear icon"> & DefineProp<"placeholder", string, false, null, "Sets the placeholder of the component. The placeholder is shown if there is no selection and displays select if empty"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void> & DefineEmit<"show:selection", () => void> & DefineEmit<"search", (text: string) => void> & DefineSlot<"placeholderRenderer", () => VNodeChild> & DefineSlot<"selectedItemRenderer", () => VNodeChild>;
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<PickerSelectionProps> & {
|
5
5
|
"onClick:clear"?: () => any;
|
6
6
|
onSearch?: (text: string) => any;
|
7
7
|
"onShow:selection"?: () => any;
|
8
8
|
} & {
|
9
9
|
"v-slots"?: {
|
10
|
+
placeholderRenderer?: () => VNodeChild;
|
10
11
|
selectedItemRenderer?: () => VNodeChild;
|
11
12
|
} & Omit<{
|
12
13
|
default?: import("vue").Slot;
|
13
|
-
}, "selectedItemRenderer">;
|
14
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "grid" | "disabled" | "colorSchemaType" | "colors" | "toned" | "placeholder" | "searchable" | "emit:search" | "emit:click:clear" | "clearable" | "isLoading" | "slot:selectedItemRenderer" | "hasSelection" | "emit:show:selection"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
14
|
+
}, "selectedItemRenderer" | "placeholderRenderer">;
|
15
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "grid" | "disabled" | "colorSchemaType" | "colors" | "toned" | "placeholder" | "searchable" | "emit:search" | "emit:click:clear" | "clearable" | "isLoading" | "slot:selectedItemRenderer" | "hasSelection" | "emit:show:selection" | "slot:placeholderRenderer"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
15
16
|
export default _default;
|
@@ -13,11 +13,11 @@ export interface OSelectSlots extends Omit<VSelectSlots, "item" | "selection" |
|
|
13
13
|
declare const defaultRules: ValidationRule[];
|
14
14
|
type SlotsWithReturnObject<TItem> = DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild>;
|
15
15
|
type SlotsWithoutReturnObject = DefineSlot<"chip", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild>;
|
16
|
-
type BaseProps<TItem, TReturnObject extends boolean> = DefinePropTheming & DefineProp<"
|
16
|
+
type BaseProps<TItem, TReturnObject extends boolean> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", any, false, null, true, "The v-model of the component"> & DefineProp<"rules", ValidationRule[], false, typeof defaultRules, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string."> & DefineProp<"label", string, false, null, "Sets the label of the component."> & DefineProp<"hint", string, false, null, "Sets the hint of the component."> & DefineProp<"items", TItem, false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"itemTitle", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemValue", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its value."> & DefineProp<"variant", OSelectTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"returnObject", TReturnObject, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value."> & DefineProp<"clearable", boolean, false, null, "Allows for the component to be cleared."> & DefineProp<"searchable", boolean, false, null, "Allows to searching when user typing."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"toned", boolean> & DefineProp<"chips", boolean, false, false, "Puts input in readonly state."> & DefineProp<"readonly", boolean, false, null, "Puts input in readonly state."> & DefineProp<"multiple", boolean, false, false, "Multiple selection."> & DefineProp<"hideNoData", boolean, false, false, "Hidden no data message."> & DefineProp<"hideDetails", boolean, false, false, "Hides hint and validation errors. When set to auto messages will be rendered only if there’s a message (hint, error message, counter value etc) to display."> & DefineProp<"menuIcon", IIcon, false, null, "Custom menu icon."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineProp<"persistentHint", boolean, false, null, "Forces hint to always be visible."> & DefineProp<"hideSelected", boolean, false, null, "Hide selected items from all items list."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & DefineProp<"errorMessages", string | readonly string[], false, null, "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation."> & DefineProp<"error", boolean, false, false, "Puts the input in a manual error state."> & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"append-item", () => VNodeChild> & DefineSlot<"prepend-inner", () => VNodeChild> & DefineSlot<"append-inner", () => VNodeChild> & DefineProp<"maxHeight", number, false, 300> & DefineProp<"itemHeight", number, false, 40>;
|
17
17
|
export type OSelectProps<TItem, TReturnObject extends boolean> = BaseProps<TItem, TReturnObject> & DefineType<TReturnObject extends true ? SlotsWithReturnObject<TItem> : SlotsWithoutReturnObject>;
|
18
18
|
declare const _default: <TItem extends readonly any[], TReturnObject extends boolean>(props: ExtractProps<OSelectProps<TItem, TReturnObject>> & ((OSelectProps<TItem, TReturnObject> extends infer T ? { [K in keyof T as K extends `emit:${infer N}` ? N : never]: OSelectProps<TItem, TReturnObject>[K]; } : never) extends infer T_1 ? T_1 extends (OSelectProps<TItem, TReturnObject> extends infer T_2 ? { [K in keyof T_2 as K extends `emit:${infer N}` ? N : never]: OSelectProps<TItem, TReturnObject>[K]; } : never) ? T_1 extends string[] ? { [K_1 in `on${Capitalize<T_1[number]>}`]?: (...args: any[]) => any; } : T_1 extends import("vue").ObjectEmitsOptions ? { [K_2 in `on${Capitalize<string & keyof T_1>}`]?: K_2 extends `on${infer C}` ? T_1[Uncapitalize<C>] extends null ? (...args: any[]) => any : (...args: T_1[Uncapitalize<C>] extends (...args: infer P) => any ? P : never) => any : never; } : {} : never : never) & {
|
19
19
|
"v-slots"?: (OSelectProps<TItem, TReturnObject> extends infer T_3 ? { [K_3 in keyof T_3 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: OSelectProps<TItem, TReturnObject>[K_3]; } : never) & Omit<{
|
20
20
|
default?: import("vue").Slot;
|
21
21
|
}, keyof (OSelectProps<TItem, TReturnObject> extends infer T_4 ? { [K_3 in keyof T_4 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: OSelectProps<TItem, TReturnObject>[K_3]; } : never)>;
|
22
|
-
} & (OSelectProps<TItem, TReturnObject> extends infer T_5 ? { [K_4 in keyof T_5 as K_4 extends "ref" ? "ref" : never]: import("vue").Ref<OSelectProps<TItem, TReturnObject>[K_4], OSelectProps<TItem, TReturnObject>[K_4]> | ((ref: OSelectProps<TItem, TReturnObject>[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blueprint" | "maxHeight" | "variant" | "error" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "modelValue" | "items" | "itemHeight" | "loading" | "readonly" | "errorMessages" | "rules" | "hideDetails" | "hint" | "persistentHint" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "itemValue" | "searchable" | "slot:append-inner" | "slot:prepend-inner" | "emit:update:focused" | "emit:click:button" | "clearable" | "hideSelected" | "
|
22
|
+
} & (OSelectProps<TItem, TReturnObject> extends infer T_5 ? { [K_4 in keyof T_5 as K_4 extends "ref" ? "ref" : never]: import("vue").Ref<OSelectProps<TItem, TReturnObject>[K_4], OSelectProps<TItem, TReturnObject>[K_4]> | ((ref: OSelectProps<TItem, TReturnObject>[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blueprint" | "maxHeight" | "variant" | "error" | "class" | "label" | "multiple" | "disabled" | "colorSchemaType" | "modelValue" | "items" | "itemHeight" | "loading" | "readonly" | "errorMessages" | "rules" | "hideDetails" | "hint" | "persistentHint" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "itemValue" | "searchable" | "slot:append-inner" | "slot:prepend-inner" | "emit:update:focused" | "emit:click:button" | "clearable" | "hideSelected" | "itemTitle" | "returnObject" | "chips" | "hideNoData" | "menuIcon" | "emit:update:search" | "slot:append-item" | keyof (TReturnObject extends true ? SlotsWithReturnObject<TItem> : SlotsWithoutReturnObject)> & import("@omnia/fx/ux").VNodeEvents) => any;
|
23
23
|
export default _default;
|
@@ -385,7 +385,6 @@ import wca457ba6d0da84795925235989b9c0c9a from './ux/app/apps/admin/AppManagemen
|
|
385
385
|
import wc669778312f2b40739774539e6de4d1ea from './ux/app/apps/admin/AppDefinitionsListing';
|
386
386
|
import wc1f34388f1f4140d3a38e6b0cc8897fc5 from './ux/aurora/components/backgroundstyle/BackgroundStyleEditor';
|
387
387
|
import wc811d753f7c54407093158c49519020f5 from './ux/aurora/components/backgroundstyle/BackgroundStyleViewer';
|
388
|
-
import wc21b90a7556c8450ead8de25357de90d3 from './ux/aurora/components/blueprinttemplatespicker/BlueprintsTemplatePicker';
|
389
388
|
import wc78fbae25bf1f421bb9c5dc31ba835bd3 from './ux/aurora/components/borderpicker/BorderPicker';
|
390
389
|
import wc8391c3abe04c43b78b32edde15337988 from './ux/aurora/components/borderpicker/BorderPreview';
|
391
390
|
import wcdb6d37c1525f463aa5b4a89a4ddfe05c from './ux/aurora/components/buttonstyle/ButtonStylePicker';
|
@@ -423,7 +422,6 @@ import wc5ac01b439b7b494baf066921c2ae7f9a from './ux/aurora/components/textcolor
|
|
423
422
|
import wc5682a90ca29b443fa48b3b691b622e15 from './ux/aurora/components/textformatpicker/TextFormatPicker';
|
424
423
|
import wc287d666180644ba5ab5def0471a75a89 from './ux/aurora/components/textstylepicker/TextStylePicker';
|
425
424
|
import wc252ece0016594978b3ddfafdd59adda4 from './ux/aurora/components/themepicker/ThemePicker';
|
426
|
-
import wcb89e133162f54c1fb2cd6d03cc2e4fe2 from './ux/aurora/components/themepicker/ThemeEditor';
|
427
425
|
import wc73e1c232690249f78967e3e3f6d92bd7 from './ux/aurora/components/themepreview/ThemePreview';
|
428
426
|
import wcc6eec07d48af435ab0c75195d9c7dcfc from './ux/aurora/components/themepreview/ComponentPreview';
|
429
427
|
import wc99a73153b5c647da9d6de517f51e53f0 from './ux/aurora/components/typography/TypographyEditor';
|
@@ -2971,13 +2969,6 @@ declare global {
|
|
2971
2969
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2972
2970
|
};
|
2973
2971
|
} : typeof wc252ece0016594978b3ddfafdd59adda4;
|
2974
|
-
"editor": typeof wcb89e133162f54c1fb2cd6d03cc2e4fe2 extends {
|
2975
|
-
propsDefinition: infer TProp;
|
2976
|
-
} ? {
|
2977
|
-
new (...args: any[]): {
|
2978
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2979
|
-
};
|
2980
|
-
} : typeof wcb89e133162f54c1fb2cd6d03cc2e4fe2;
|
2981
2972
|
"viewer": typeof wc73e1c232690249f78967e3e3f6d92bd7 extends {
|
2982
2973
|
propsDefinition: infer TProp;
|
2983
2974
|
} ? {
|
@@ -3972,17 +3963,6 @@ declare global {
|
|
3972
3963
|
};
|
3973
3964
|
} : typeof wc811d753f7c54407093158c49519020f5;
|
3974
3965
|
};
|
3975
|
-
"blueprints": {
|
3976
|
-
"template": {
|
3977
|
-
"picker": typeof wc21b90a7556c8450ead8de25357de90d3 extends {
|
3978
|
-
propsDefinition: infer TProp;
|
3979
|
-
} ? {
|
3980
|
-
new (...args: any[]): {
|
3981
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3982
|
-
};
|
3983
|
-
} : typeof wc21b90a7556c8450ead8de25357de90d3;
|
3984
|
-
};
|
3985
|
-
};
|
3986
3966
|
"border": {
|
3987
3967
|
"picker": typeof wc78fbae25bf1f421bb9c5dc31ba835bd3 extends {
|
3988
3968
|
propsDefinition: infer TProp;
|
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.394-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,13 +20,13 @@
|
|
20
20
|
],
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.394-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
27
27
|
"splitpanes": "3.1.5",
|
28
28
|
"vue": "3.5.13",
|
29
|
-
"vuetify": "3.7.
|
29
|
+
"vuetify": "3.7.14",
|
30
30
|
"tslib": "2.6.2",
|
31
31
|
"typescript": "5.7.2",
|
32
32
|
"@tiptap/vue-3": "2.1.13",
|