@omnia/fx 8.0.396-dev → 8.0.398-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/stores/mediapicker/ImageTransformerStore.d.ts +3 -3
- package/internal-do-not-import-from-here/stores/mediapicker/MediaPickerGalleryStore.d.ts +10 -6
- package/internal-do-not-import-from-here/stores/mediapicker/ProviderStore.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/admin/system/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/auditlogs/blades/ListingBlade.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/TenantContactConstant.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/MainContactsBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/SecurityContactsBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/SystemUpdateNotificationBlade.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/TenantContactBladeStore.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/admin/system/submenu/tenantcontact/blades/UserSyncContacts.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/admin/usermanagement/shared/UserManagementHelper.d.ts +194 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/store/ColorSchemaPickerStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/containerFillpicker/ContainerFillPicker.d.ts +102 -91
- package/internal-do-not-import-from-here/ux/aurora/components/containerFillpicker/store/ContainerFillPickerStore.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/store/FillPickerStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStore.d.ts +13 -3
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/FillStyling.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/links/store/LinkPickerStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/selection/Selection.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/selection/store/SelectionStore.d.ts +6 -5
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorSettings.d.ts +9 -294
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +4 -5
- package/package.json +3 -3
@@ -1,5 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { ContainerFillValue } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
+
type Variant = "default" | "journey";
|
3
4
|
declare const _default: {
|
4
5
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
5
6
|
"v-slots": import("vue").Prop<{
|
@@ -19,6 +20,9 @@ declare const _default: {
|
|
19
20
|
allowCustom: {
|
20
21
|
type: import("vue").PropType<boolean>;
|
21
22
|
};
|
23
|
+
variant: {
|
24
|
+
type: import("vue").PropType<Variant>;
|
25
|
+
};
|
22
26
|
toned: {
|
23
27
|
type: import("vue").PropType<boolean>;
|
24
28
|
};
|
@@ -27,79 +31,79 @@ declare const _default: {
|
|
27
31
|
required: false;
|
28
32
|
};
|
29
33
|
"onUpdate:modelValue": {
|
30
|
-
type: import("vue").PropType<(value:
|
34
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
31
35
|
};
|
32
36
|
"v-model": {
|
33
|
-
type: import("vue").PropType<
|
37
|
+
type: import("vue").PropType<ContainerFillValue>;
|
34
38
|
required: false;
|
35
39
|
};
|
36
40
|
modelValue: {
|
37
|
-
type: import("vue").PropType<
|
41
|
+
type: import("vue").PropType<ContainerFillValue>;
|
38
42
|
required: false;
|
39
43
|
};
|
40
44
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
41
|
-
type: import("vue").PropType<(value:
|
45
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
42
46
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
43
|
-
type: import("vue").PropType<
|
47
|
+
type: import("vue").PropType<ContainerFillValue>;
|
44
48
|
required: false;
|
45
49
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
46
|
-
type: import("vue").PropType<
|
50
|
+
type: import("vue").PropType<ContainerFillValue>;
|
47
51
|
required: false;
|
48
52
|
}; } & {
|
49
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName,
|
53
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ContainerFillValue, {
|
50
54
|
"onUpdate:modelValue": {
|
51
|
-
type: import("vue").PropType<(value:
|
55
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
52
56
|
};
|
53
57
|
} & {
|
54
58
|
"v-model": {
|
55
|
-
type: import("vue").PropType<
|
59
|
+
type: import("vue").PropType<ContainerFillValue>;
|
56
60
|
required: false;
|
57
61
|
};
|
58
62
|
} & {
|
59
63
|
modelValue: {
|
60
|
-
type: import("vue").PropType<
|
64
|
+
type: import("vue").PropType<ContainerFillValue>;
|
61
65
|
required: false;
|
62
66
|
};
|
63
67
|
}>;
|
64
|
-
defaultValue(value?:
|
68
|
+
defaultValue(value?: ContainerFillValue): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ContainerFillValue, {
|
65
69
|
"onUpdate:modelValue": {
|
66
|
-
type: import("vue").PropType<(value:
|
70
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
67
71
|
};
|
68
72
|
} & {
|
69
73
|
"v-model": {
|
70
|
-
type: import("vue").PropType<
|
74
|
+
type: import("vue").PropType<ContainerFillValue>;
|
71
75
|
required: false;
|
72
76
|
};
|
73
77
|
} & {
|
74
78
|
modelValue: {
|
75
|
-
type: import("vue").PropType<
|
79
|
+
type: import("vue").PropType<ContainerFillValue>;
|
76
80
|
required: false;
|
77
81
|
};
|
78
82
|
}, false>;
|
79
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName,
|
83
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ContainerFillValue, {
|
80
84
|
"onUpdate:modelValue": {
|
81
|
-
type: import("vue").PropType<(value:
|
85
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
82
86
|
};
|
83
87
|
} & {
|
84
88
|
"v-model": {
|
85
|
-
type: import("vue").PropType<
|
89
|
+
type: import("vue").PropType<ContainerFillValue>;
|
86
90
|
required: false;
|
87
91
|
};
|
88
92
|
} & {
|
89
93
|
modelValue: {
|
90
|
-
type: import("vue").PropType<
|
94
|
+
type: import("vue").PropType<ContainerFillValue>;
|
91
95
|
required: false;
|
92
96
|
};
|
93
97
|
}>;
|
94
98
|
};
|
95
99
|
}>> & {
|
96
|
-
"onUpdate:modelValue"?: (value:
|
97
|
-
"onItem:enter"?: (value:
|
98
|
-
"onItem:leave"?: (value:
|
100
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any;
|
101
|
+
"onItem:enter"?: (value: ContainerFillValue) => any;
|
102
|
+
"onItem:leave"?: (value: ContainerFillValue) => any;
|
99
103
|
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
100
|
-
"update:modelValue": (value:
|
101
|
-
"item:enter": (value:
|
102
|
-
"item:leave": (value:
|
104
|
+
"update:modelValue": (value: ContainerFillValue) => any;
|
105
|
+
"item:enter": (value: ContainerFillValue) => any;
|
106
|
+
"item:leave": (value: ContainerFillValue) => any;
|
103
107
|
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
104
108
|
P: {};
|
105
109
|
B: {};
|
@@ -125,6 +129,9 @@ declare const _default: {
|
|
125
129
|
allowCustom: {
|
126
130
|
type: import("vue").PropType<boolean>;
|
127
131
|
};
|
132
|
+
variant: {
|
133
|
+
type: import("vue").PropType<Variant>;
|
134
|
+
};
|
128
135
|
toned: {
|
129
136
|
type: import("vue").PropType<boolean>;
|
130
137
|
};
|
@@ -133,75 +140,75 @@ declare const _default: {
|
|
133
140
|
required: false;
|
134
141
|
};
|
135
142
|
"onUpdate:modelValue": {
|
136
|
-
type: import("vue").PropType<(value:
|
143
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
137
144
|
};
|
138
145
|
"v-model": {
|
139
|
-
type: import("vue").PropType<
|
146
|
+
type: import("vue").PropType<ContainerFillValue>;
|
140
147
|
required: false;
|
141
148
|
};
|
142
149
|
modelValue: {
|
143
|
-
type: import("vue").PropType<
|
150
|
+
type: import("vue").PropType<ContainerFillValue>;
|
144
151
|
required: false;
|
145
152
|
};
|
146
153
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
147
|
-
type: import("vue").PropType<(value:
|
154
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
148
155
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
149
|
-
type: import("vue").PropType<
|
156
|
+
type: import("vue").PropType<ContainerFillValue>;
|
150
157
|
required: false;
|
151
158
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
152
|
-
type: import("vue").PropType<
|
159
|
+
type: import("vue").PropType<ContainerFillValue>;
|
153
160
|
required: false;
|
154
161
|
}; } & {
|
155
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName,
|
162
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ContainerFillValue, {
|
156
163
|
"onUpdate:modelValue": {
|
157
|
-
type: import("vue").PropType<(value:
|
164
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
158
165
|
};
|
159
166
|
} & {
|
160
167
|
"v-model": {
|
161
|
-
type: import("vue").PropType<
|
168
|
+
type: import("vue").PropType<ContainerFillValue>;
|
162
169
|
required: false;
|
163
170
|
};
|
164
171
|
} & {
|
165
172
|
modelValue: {
|
166
|
-
type: import("vue").PropType<
|
173
|
+
type: import("vue").PropType<ContainerFillValue>;
|
167
174
|
required: false;
|
168
175
|
};
|
169
176
|
}>;
|
170
|
-
defaultValue(value?:
|
177
|
+
defaultValue(value?: ContainerFillValue): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ContainerFillValue, {
|
171
178
|
"onUpdate:modelValue": {
|
172
|
-
type: import("vue").PropType<(value:
|
179
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
173
180
|
};
|
174
181
|
} & {
|
175
182
|
"v-model": {
|
176
|
-
type: import("vue").PropType<
|
183
|
+
type: import("vue").PropType<ContainerFillValue>;
|
177
184
|
required: false;
|
178
185
|
};
|
179
186
|
} & {
|
180
187
|
modelValue: {
|
181
|
-
type: import("vue").PropType<
|
188
|
+
type: import("vue").PropType<ContainerFillValue>;
|
182
189
|
required: false;
|
183
190
|
};
|
184
191
|
}, false>;
|
185
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName,
|
192
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ContainerFillValue, {
|
186
193
|
"onUpdate:modelValue": {
|
187
|
-
type: import("vue").PropType<(value:
|
194
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
188
195
|
};
|
189
196
|
} & {
|
190
197
|
"v-model": {
|
191
|
-
type: import("vue").PropType<
|
198
|
+
type: import("vue").PropType<ContainerFillValue>;
|
192
199
|
required: false;
|
193
200
|
};
|
194
201
|
} & {
|
195
202
|
modelValue: {
|
196
|
-
type: import("vue").PropType<
|
203
|
+
type: import("vue").PropType<ContainerFillValue>;
|
197
204
|
required: false;
|
198
205
|
};
|
199
206
|
}>;
|
200
207
|
};
|
201
208
|
}>> & {
|
202
|
-
"onUpdate:modelValue"?: (value:
|
203
|
-
"onItem:enter"?: (value:
|
204
|
-
"onItem:leave"?: (value:
|
209
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any;
|
210
|
+
"onItem:enter"?: (value: ContainerFillValue) => any;
|
211
|
+
"onItem:leave"?: (value: ContainerFillValue) => any;
|
205
212
|
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
206
213
|
__isFragment?: never;
|
207
214
|
__isTeleport?: never;
|
@@ -224,6 +231,9 @@ declare const _default: {
|
|
224
231
|
allowCustom: {
|
225
232
|
type: import("vue").PropType<boolean>;
|
226
233
|
};
|
234
|
+
variant: {
|
235
|
+
type: import("vue").PropType<Variant>;
|
236
|
+
};
|
227
237
|
toned: {
|
228
238
|
type: import("vue").PropType<boolean>;
|
229
239
|
};
|
@@ -232,160 +242,161 @@ declare const _default: {
|
|
232
242
|
required: false;
|
233
243
|
};
|
234
244
|
"onUpdate:modelValue": {
|
235
|
-
type: import("vue").PropType<(value:
|
245
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
236
246
|
};
|
237
247
|
"v-model": {
|
238
|
-
type: import("vue").PropType<
|
248
|
+
type: import("vue").PropType<ContainerFillValue>;
|
239
249
|
required: false;
|
240
250
|
};
|
241
251
|
modelValue: {
|
242
|
-
type: import("vue").PropType<
|
252
|
+
type: import("vue").PropType<ContainerFillValue>;
|
243
253
|
required: false;
|
244
254
|
};
|
245
255
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
246
|
-
type: import("vue").PropType<(value:
|
256
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
247
257
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
248
|
-
type: import("vue").PropType<
|
258
|
+
type: import("vue").PropType<ContainerFillValue>;
|
249
259
|
required: false;
|
250
260
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
251
|
-
type: import("vue").PropType<
|
261
|
+
type: import("vue").PropType<ContainerFillValue>;
|
252
262
|
required: false;
|
253
263
|
}; } & {
|
254
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName,
|
264
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ContainerFillValue, {
|
255
265
|
"onUpdate:modelValue": {
|
256
|
-
type: import("vue").PropType<(value:
|
266
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
257
267
|
};
|
258
268
|
} & {
|
259
269
|
"v-model": {
|
260
|
-
type: import("vue").PropType<
|
270
|
+
type: import("vue").PropType<ContainerFillValue>;
|
261
271
|
required: false;
|
262
272
|
};
|
263
273
|
} & {
|
264
274
|
modelValue: {
|
265
|
-
type: import("vue").PropType<
|
275
|
+
type: import("vue").PropType<ContainerFillValue>;
|
266
276
|
required: false;
|
267
277
|
};
|
268
278
|
}>;
|
269
|
-
defaultValue(value?:
|
279
|
+
defaultValue(value?: ContainerFillValue): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ContainerFillValue, {
|
270
280
|
"onUpdate:modelValue": {
|
271
|
-
type: import("vue").PropType<(value:
|
281
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
272
282
|
};
|
273
283
|
} & {
|
274
284
|
"v-model": {
|
275
|
-
type: import("vue").PropType<
|
285
|
+
type: import("vue").PropType<ContainerFillValue>;
|
276
286
|
required: false;
|
277
287
|
};
|
278
288
|
} & {
|
279
289
|
modelValue: {
|
280
|
-
type: import("vue").PropType<
|
290
|
+
type: import("vue").PropType<ContainerFillValue>;
|
281
291
|
required: false;
|
282
292
|
};
|
283
293
|
}, false>;
|
284
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName,
|
294
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ContainerFillValue, {
|
285
295
|
"onUpdate:modelValue": {
|
286
|
-
type: import("vue").PropType<(value:
|
296
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
287
297
|
};
|
288
298
|
} & {
|
289
299
|
"v-model": {
|
290
|
-
type: import("vue").PropType<
|
300
|
+
type: import("vue").PropType<ContainerFillValue>;
|
291
301
|
required: false;
|
292
302
|
};
|
293
303
|
} & {
|
294
304
|
modelValue: {
|
295
|
-
type: import("vue").PropType<
|
305
|
+
type: import("vue").PropType<ContainerFillValue>;
|
296
306
|
required: false;
|
297
307
|
};
|
298
308
|
}>;
|
299
309
|
};
|
300
310
|
}>> & {
|
301
|
-
"onUpdate:modelValue"?: (value:
|
302
|
-
"onItem:enter"?: (value:
|
303
|
-
"onItem:leave"?: (value:
|
311
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any;
|
312
|
+
"onItem:enter"?: (value: ContainerFillValue) => any;
|
313
|
+
"onItem:leave"?: (value: ContainerFillValue) => any;
|
304
314
|
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
305
|
-
"update:modelValue": (value:
|
306
|
-
"item:enter": (value:
|
307
|
-
"item:leave": (value:
|
315
|
+
"update:modelValue": (value: ContainerFillValue) => any;
|
316
|
+
"item:enter": (value: ContainerFillValue) => any;
|
317
|
+
"item:leave": (value: ContainerFillValue) => any;
|
308
318
|
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
309
319
|
propsDefinition: Omit<Readonly<{} & {
|
310
320
|
name?: {
|
311
321
|
[x: `onUpdate:${string}`]: {
|
312
|
-
type: import("vue").PropType<(value:
|
322
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
313
323
|
};
|
314
324
|
} & {
|
315
325
|
[x: `v-model:${string}`]: {
|
316
|
-
type: import("vue").PropType<
|
326
|
+
type: import("vue").PropType<ContainerFillValue>;
|
317
327
|
required: false;
|
318
328
|
};
|
319
329
|
} & {
|
320
330
|
[x: string]: {
|
321
|
-
type: import("vue").PropType<
|
331
|
+
type: import("vue").PropType<ContainerFillValue>;
|
322
332
|
required: false;
|
323
333
|
};
|
324
334
|
} & {
|
325
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string,
|
335
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, ContainerFillValue, {
|
326
336
|
"onUpdate:modelValue": {
|
327
|
-
type: import("vue").PropType<(value:
|
337
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
328
338
|
};
|
329
339
|
} & {
|
330
340
|
"v-model": {
|
331
|
-
type: import("vue").PropType<
|
341
|
+
type: import("vue").PropType<ContainerFillValue>;
|
332
342
|
required: false;
|
333
343
|
};
|
334
344
|
} & {
|
335
345
|
modelValue: {
|
336
|
-
type: import("vue").PropType<
|
346
|
+
type: import("vue").PropType<ContainerFillValue>;
|
337
347
|
required: false;
|
338
348
|
};
|
339
349
|
}>;
|
340
|
-
defaultValue(value?:
|
350
|
+
defaultValue(value?: ContainerFillValue): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, ContainerFillValue, {
|
341
351
|
"onUpdate:modelValue": {
|
342
|
-
type: import("vue").PropType<(value:
|
352
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
343
353
|
};
|
344
354
|
} & {
|
345
355
|
"v-model": {
|
346
|
-
type: import("vue").PropType<
|
356
|
+
type: import("vue").PropType<ContainerFillValue>;
|
347
357
|
required: false;
|
348
358
|
};
|
349
359
|
} & {
|
350
360
|
modelValue: {
|
351
|
-
type: import("vue").PropType<
|
361
|
+
type: import("vue").PropType<ContainerFillValue>;
|
352
362
|
required: false;
|
353
363
|
};
|
354
364
|
}, false>;
|
355
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string,
|
365
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, ContainerFillValue, {
|
356
366
|
"onUpdate:modelValue": {
|
357
|
-
type: import("vue").PropType<(value:
|
367
|
+
type: import("vue").PropType<(value: ContainerFillValue) => any | void>;
|
358
368
|
};
|
359
369
|
} & {
|
360
370
|
"v-model": {
|
361
|
-
type: import("vue").PropType<
|
371
|
+
type: import("vue").PropType<ContainerFillValue>;
|
362
372
|
required: false;
|
363
373
|
};
|
364
374
|
} & {
|
365
375
|
modelValue: {
|
366
|
-
type: import("vue").PropType<
|
376
|
+
type: import("vue").PropType<ContainerFillValue>;
|
367
377
|
required: false;
|
368
378
|
};
|
369
379
|
}>;
|
370
380
|
};
|
381
|
+
variant?: Variant;
|
371
382
|
label?: string;
|
372
|
-
modelValue?:
|
383
|
+
modelValue?: ContainerFillValue;
|
373
384
|
"v-slots"?: {
|
374
385
|
default?: import("../../../DefineVueTypings").Slot;
|
375
386
|
} & {
|
376
387
|
activator?: () => VNodeChild;
|
377
388
|
};
|
378
|
-
"onUpdate:modelValue"?: (value:
|
379
|
-
"v-model"?:
|
389
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any | void;
|
390
|
+
"v-model"?: ContainerFillValue;
|
380
391
|
toned?: boolean;
|
381
392
|
previewColorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
382
393
|
individualRadiusSelection?: boolean;
|
383
394
|
individualBorderWidthSelection?: boolean;
|
384
395
|
allowCustom?: boolean;
|
385
396
|
}>, "onUpdate:modelValue" | "onItem:enter" | "onItem:leave"> & {
|
386
|
-
"onUpdate:modelValue"?: (value:
|
387
|
-
"onItem:enter"?: (value:
|
388
|
-
"onItem:leave"?: (value:
|
397
|
+
"onUpdate:modelValue"?: (value: ContainerFillValue) => any;
|
398
|
+
"onItem:enter"?: (value: ContainerFillValue) => any;
|
399
|
+
"onItem:leave"?: (value: ContainerFillValue) => any;
|
389
400
|
};
|
390
401
|
};
|
391
402
|
export default _default;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { ContainerFillBlueprint, ContainerFillValue, TextFillBlueprint } from "@omnia/fx-models";
|
2
|
+
export declare const useContainerFillPickerStore: () => {
|
3
|
+
state: {
|
4
|
+
internalModel: ContainerFillValue;
|
5
|
+
customDefinition: ContainerFillBlueprint;
|
6
|
+
isCustom: boolean;
|
7
|
+
colorValue: any;
|
8
|
+
hasSelection: boolean;
|
9
|
+
settings: {
|
10
|
+
defaultColorSchemaType: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
11
|
+
customSchema: boolean;
|
12
|
+
};
|
13
|
+
};
|
14
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
15
|
+
onSelectContainer(type: ContainerFillValue, colorValue: boolean): void;
|
16
|
+
initState: (model: ContainerFillValue) => void;
|
17
|
+
}>;
|
18
|
+
get: {
|
19
|
+
blueprintByValue: (value: ContainerFillValue) => TextFillBlueprint;
|
20
|
+
};
|
21
|
+
rules: {
|
22
|
+
isSelected: (value: ContainerFillValue) => boolean;
|
23
|
+
isPlaceholder: (value: ContainerFillValue) => boolean;
|
24
|
+
hasCustomFill: () => import("@omnia/fx-models").BorderStylingDefinition | (import("@omnia/fx-models").ColorValue | import("@omnia/fx-models").ColorGradientValue)[];
|
25
|
+
};
|
26
|
+
} & {
|
27
|
+
dispose?: () => void;
|
28
|
+
};
|
@@ -1,14 +1,14 @@
|
|
1
1
|
import { DefineSlot } from "@omnia/fx/ux";
|
2
|
-
import { ThemeContextType,
|
2
|
+
import { ThemeContextType, TextFillDefinitionValue } from "@omnia/fx-models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
export type ColorPickerType = "default" | "colorSchema" | "onBase" | "base";
|
5
5
|
type FillPickerVariant = "dialog" | "editor" | "journey";
|
6
6
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
7
|
-
"emit:update:modelValue": (value:
|
7
|
+
"emit:update:modelValue": (value: TextFillDefinitionValue) => void;
|
8
8
|
} & {
|
9
|
-
"v-model"?:
|
9
|
+
"v-model"?: TextFillDefinitionValue;
|
10
10
|
} & {
|
11
|
-
modelValue?:
|
11
|
+
modelValue?: TextFillDefinitionValue;
|
12
12
|
} & {
|
13
13
|
colorType?: ColorPickerType;
|
14
14
|
} & {
|
@@ -32,7 +32,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
32
32
|
} & {
|
33
33
|
toolbarCallback?: (value: () => VNodeChild) => void;
|
34
34
|
} & DefineSlot<"activator", () => VNodeChild>> & {
|
35
|
-
"onUpdate:modelValue"?: (value:
|
35
|
+
"onUpdate:modelValue"?: (value: TextFillDefinitionValue) => any;
|
36
36
|
} & {
|
37
37
|
"v-slots"?: {
|
38
38
|
activator?: () => VNodeChild;
|
package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/store/FillPickerStore.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorGradientValue, ColorSchemaType, ColorValue, FillDefinition,
|
1
|
+
import { ColorGradientValue, ColorSchemaType, ColorValue, FillDefinition, TextFillDefinitionValue, FilterPickerFilter, ThemeContextType } from "@omnia/fx-models";
|
2
2
|
export declare enum ColorMode {
|
3
3
|
colorOnly = "color",
|
4
4
|
linearGradient = "linear",
|
@@ -26,7 +26,7 @@ export declare const useFillPickerStore: () => {
|
|
26
26
|
addColor: (colorType: string, defaultColorSchemaType: ColorSchemaType, dynamicColor: boolean) => ColorGradientValue;
|
27
27
|
removeColor: (index: number) => void;
|
28
28
|
changeGradientMode: (newVal: any) => void;
|
29
|
-
initState: (fill:
|
29
|
+
initState: (fill: TextFillDefinitionValue, themeContextType: ThemeContextType) => void;
|
30
30
|
}>;
|
31
31
|
rules: {
|
32
32
|
hasFillOneColor: () => boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Blueprint, ButtonBlueprint, ButtonBlueprintVariant, ComponentBlueprints,
|
1
|
+
import { Blueprint, ButtonBlueprint, ButtonBlueprintVariant, ComponentBlueprints, BlueprintVariant, OIconSizes, TabsBlueprint, WebBlueprintItemDefintionType, HeaderBlueprint, InputBlueprint, ContainerFillValue } from "@omnia/fx-models";
|
2
2
|
type blueprintType = "default";
|
3
3
|
export declare const useComponentBlueprintStore: () => {
|
4
4
|
state: {
|
@@ -35,7 +35,7 @@ export declare const useComponentBlueprintStore: () => {
|
|
35
35
|
};
|
36
36
|
containerFill: {
|
37
37
|
hasVariant(type: BlueprintVariant | string): boolean;
|
38
|
-
getByType(type:
|
38
|
+
getByType(type: ContainerFillValue): any;
|
39
39
|
};
|
40
40
|
header: {
|
41
41
|
hasVariant(type: BlueprintVariant | string): boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorSchema, ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes,
|
1
|
+
import { ColorSchema, ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, BlueprintVariant, ResolvedThemeDefinition, guid, TextFillDefinitionValue, ContainerFillValue } from "@omnia/fx-models";
|
2
2
|
import { type ColorSchemaStoreType } from "./ColorSchemaStore";
|
3
3
|
export declare const useThemeStore: () => {
|
4
4
|
id: guid;
|
@@ -51,7 +51,7 @@ export declare const useThemeStore: () => {
|
|
51
51
|
};
|
52
52
|
containerFill: {
|
53
53
|
hasVariant(type: BlueprintVariant | string): boolean;
|
54
|
-
getByType(type:
|
54
|
+
getByType(type: ContainerFillValue): any;
|
55
55
|
};
|
56
56
|
header: {
|
57
57
|
hasVariant(type: BlueprintVariant | string): boolean;
|
@@ -64,7 +64,17 @@ export declare const useThemeStore: () => {
|
|
64
64
|
};
|
65
65
|
colorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType | ColorSchema): ColorSchema;
|
66
66
|
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
67
|
-
|
67
|
+
fills(): {
|
68
|
+
text: {
|
69
|
+
hasVariant(type: BlueprintVariant | string): boolean;
|
70
|
+
byValue(value: TextFillDefinitionValue): any;
|
71
|
+
};
|
72
|
+
container: {
|
73
|
+
hasVariant(type: BlueprintVariant | string): boolean;
|
74
|
+
bluePrints(): import("@omnia/fx-models").ContainerFillBlueprints;
|
75
|
+
byValue(value: ContainerFillValue): any;
|
76
|
+
};
|
77
|
+
};
|
68
78
|
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
69
79
|
component(): import("@omnia/fx-models").ComponentBlueprints;
|
70
80
|
color(colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType): string;
|
@@ -1,12 +1,12 @@
|
|
1
|
-
import {
|
1
|
+
import { TextFillDefinitionValue } from "@omnia/fx-models";
|
2
2
|
import { StylexValue } from "internal/fx/ux/Styles.stylex";
|
3
3
|
import { useColorSchemaStore } from "../../store";
|
4
4
|
import { NestedCSSProperties } from "typestyle/lib/types";
|
5
5
|
export declare namespace FillStyling {
|
6
|
-
function generateFillColorString(definition:
|
7
|
-
function getBlueprintFillStylex(definition:
|
8
|
-
function getBlueprintFillObject(definition:
|
9
|
-
function getBlueprintFillObjectStylex(definition:
|
6
|
+
function generateFillColorString(definition: TextFillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): string;
|
7
|
+
function getBlueprintFillStylex(definition: TextFillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): Readonly<StylexValue>;
|
8
|
+
function getBlueprintFillObject(definition: TextFillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): NestedCSSProperties;
|
9
|
+
function getBlueprintFillObjectStylex(definition: TextFillDefinitionValue, colors?: ReturnType<typeof useColorSchemaStore>): {
|
10
10
|
background?: StylexValue;
|
11
11
|
backdropFilter?: StylexValue;
|
12
12
|
};
|
@@ -6,7 +6,7 @@ export declare const useLinkPickerStore: () => {
|
|
6
6
|
link: LinkItem;
|
7
7
|
};
|
8
8
|
mutate: {
|
9
|
-
pickers: LinkPickerRegistration[];
|
9
|
+
pickers: (value: LinkPickerRegistration[] | ((prev: LinkPickerRegistration[]) => LinkPickerRegistration[])) => void;
|
10
10
|
link: (value: LinkItem | ((prev: LinkItem) => LinkItem)) => void;
|
11
11
|
};
|
12
12
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
|
1
|
+
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, ItemValueType } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
import { OMultiSelectionStyles } from "@omnia/fx-models";
|
4
4
|
type SelectionVariants = "remove" | "settings";
|
5
|
-
type BaseProps = DefinePropTheming & DefineProp<"items", any[], 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<"variant", SelectionVariants, false, null, "The component variants"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"sorting", boolean, false, null, "Sets the component to sorting mode"> & DefineProp<"itemTitle",
|
5
|
+
type BaseProps = DefinePropTheming & DefineProp<"items", any[], 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<"variant", SelectionVariants, false, null, "The component variants"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"sorting", boolean, false, null, "Sets the component to sorting mode"> & DefineProp<"itemTitle", ItemValueType<any>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemSubtitle", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"itemIcon", string, false, null, "Property on supplied items that contains its value."> & DefineProp<"enableAdd", boolean, false, null, "If add button is shown"> & DefineProp<"selectionStyle", OMultiSelectionStyles, false, null, "The style of multi select"> & DefineSlot<"item", (item: any, index: Number) => VNodeChild> & DefineEmit<"selectItem", (index: any) => true> & DefineEmit<"addItem", () => true>;
|
6
6
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BaseProps> & {
|
7
7
|
onSelectItem?: (index: any) => any;
|
8
8
|
onAddItem?: () => any;
|