@omnia/fx 8.0.45-vnext → 8.0.47-vnext
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/ux/identitypicker/IdentityPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +283 -71
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +353 -86
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +369 -93
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +13 -9
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +14 -0
- package/package.json +2 -2
@@ -56,23 +56,26 @@ declare const _default: {
|
|
56
56
|
[key: string]: any;
|
57
57
|
}>) => void)[];
|
58
58
|
readonly description?: string;
|
59
|
-
readonly
|
59
|
+
readonly "v-model"?: Identity[];
|
60
|
+
readonly modelValue?: Identity[];
|
61
|
+
"onUpdate:modelValue"?: ((value: Identity[]) => any) & ((value: Identity[]) => any);
|
60
62
|
readonly singleLine?: boolean;
|
61
63
|
readonly ariaInvalid?: boolean;
|
62
64
|
readonly ariaDescribedby?: string;
|
63
65
|
readonly providerIds?: GuidValue[];
|
64
|
-
readonly
|
65
|
-
readonly isKeepMenuOpen?: (value: Boolean) => void;
|
66
|
-
readonly attachToParent?: boolean;
|
66
|
+
readonly "provider-ids"?: GuidValue[];
|
67
67
|
readonly keepSelectionMenu?: boolean;
|
68
68
|
readonly showCurrentUserOption?: boolean;
|
69
|
+
readonly autoOpenSelection?: boolean;
|
69
70
|
readonly disabledIdentities?: Identity[];
|
70
71
|
readonly blockedIdentities?: Identity[];
|
71
|
-
readonly onMenuToggle?: (
|
72
|
+
readonly onMenuToggle?: (value: boolean) => void;
|
73
|
+
readonly "on-menu-toggle"?: (value: boolean) => void;
|
72
74
|
readonly hideTab?: boolean;
|
73
75
|
readonly hideGroupTypeSelection?: boolean;
|
74
76
|
readonly hideUserTypeSelection?: boolean;
|
75
77
|
readonly hideDynamicGroupSelection?: boolean;
|
78
|
+
onDoc$?: (description?: string) => any;
|
76
79
|
readonly showSelectedIdentities?: boolean;
|
77
80
|
};
|
78
81
|
$attrs: {
|
@@ -86,36 +89,127 @@ declare const _default: {
|
|
86
89
|
}>;
|
87
90
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
88
91
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
89
|
-
$emit: (event: string,
|
92
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: Identity[]) => void);
|
90
93
|
$el: any;
|
91
94
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
onMenuToggle:
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
95
|
+
hideDynamicGroupSelection: {
|
96
|
+
type: import("vue").PropType<boolean>;
|
97
|
+
required: false;
|
98
|
+
};
|
99
|
+
hideUserTypeSelection: {
|
100
|
+
type: import("vue").PropType<boolean>;
|
101
|
+
required: false;
|
102
|
+
};
|
103
|
+
hideGroupTypeSelection: {
|
104
|
+
type: import("vue").PropType<boolean>;
|
105
|
+
required: false;
|
106
|
+
};
|
107
|
+
hideTab: {
|
108
|
+
type: import("vue").PropType<boolean>;
|
109
|
+
required: false;
|
110
|
+
};
|
111
|
+
"on-menu-toggle": {
|
112
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
113
|
+
};
|
114
|
+
onMenuToggle: {
|
115
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
116
|
+
};
|
117
|
+
filter: {
|
118
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
119
|
+
} & {
|
120
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
121
|
+
};
|
122
|
+
blockedIdentities: {
|
123
|
+
type: import("vue").PropType<Identity[]>;
|
124
|
+
required: false;
|
125
|
+
};
|
126
|
+
disabledIdentities: {
|
127
|
+
type: import("vue").PropType<Identity[]>;
|
128
|
+
required: false;
|
129
|
+
};
|
130
|
+
autoOpenSelection: {
|
131
|
+
type: import("vue").PropType<boolean>;
|
132
|
+
required: false;
|
133
|
+
};
|
134
|
+
showCurrentUserOption: {
|
135
|
+
type: import("vue").PropType<boolean>;
|
136
|
+
required: false;
|
137
|
+
};
|
138
|
+
ariaInvalid: {
|
139
|
+
type: import("vue").PropType<boolean>;
|
140
|
+
required: false;
|
141
|
+
};
|
142
|
+
ariaDescribedby: {
|
143
|
+
type: import("vue").PropType<string>;
|
144
|
+
required: false;
|
145
|
+
};
|
146
|
+
singleLine: {
|
147
|
+
type: import("vue").PropType<boolean>;
|
148
|
+
required: false;
|
149
|
+
};
|
150
|
+
top: {
|
151
|
+
type: import("vue").PropType<boolean>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
keepSelectionMenu: {
|
155
|
+
type: import("vue").PropType<boolean>;
|
156
|
+
required: false;
|
157
|
+
};
|
158
|
+
showSelectedIdentities: {
|
159
|
+
type: import("vue").PropType<boolean>;
|
160
|
+
required: false;
|
161
|
+
};
|
162
|
+
disabled: {
|
163
|
+
type: import("vue").PropType<boolean>;
|
164
|
+
required: false;
|
165
|
+
};
|
166
|
+
required: {
|
167
|
+
type: import("vue").PropType<boolean>;
|
168
|
+
required: false;
|
169
|
+
};
|
170
|
+
multiple: {
|
171
|
+
type: import("vue").PropType<boolean>;
|
172
|
+
required: false;
|
173
|
+
};
|
174
|
+
description: {
|
175
|
+
type: import("vue").PropType<string>;
|
176
|
+
required: false;
|
177
|
+
};
|
178
|
+
label: {
|
179
|
+
type: import("vue").PropType<string>;
|
180
|
+
required: false;
|
181
|
+
};
|
182
|
+
"provider-ids": {
|
183
|
+
type: import("vue").PropType<GuidValue[]>;
|
184
|
+
};
|
185
|
+
providerIds: {
|
186
|
+
type: import("vue").PropType<GuidValue[]>;
|
187
|
+
};
|
188
|
+
type: {
|
189
|
+
type: import("vue").PropType<PrincipalTypes>;
|
190
|
+
} & {
|
191
|
+
type: import("vue").PropType<PrincipalTypes>;
|
192
|
+
};
|
193
|
+
"onUpdate:modelValue": {
|
194
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
195
|
+
};
|
196
|
+
"v-model": {
|
197
|
+
type: import("vue").PropType<Identity[]>;
|
198
|
+
required: false;
|
199
|
+
};
|
200
|
+
modelValue: {
|
201
|
+
type: import("vue").PropType<Identity[]>;
|
202
|
+
required: false;
|
203
|
+
};
|
204
|
+
}>> & {
|
205
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
206
|
+
onDoc$?: (description?: string) => any;
|
207
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
208
|
+
"update:modelValue": (value: Identity[]) => true;
|
209
|
+
doc$(description?: string): {
|
210
|
+
"update:modelValue": (value: Identity[]) => true;
|
211
|
+
};
|
212
|
+
}, string, {}, {}, string, {}> & {
|
119
213
|
beforeCreate?: (() => void) | (() => void)[];
|
120
214
|
created?: (() => void) | (() => void)[];
|
121
215
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -136,64 +230,241 @@ declare const _default: {
|
|
136
230
|
$nextTick: typeof import("vue").nextTick;
|
137
231
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
138
232
|
} & Readonly<import("vue").ExtractPropTypes<{
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
onMenuToggle:
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
233
|
+
hideDynamicGroupSelection: {
|
234
|
+
type: import("vue").PropType<boolean>;
|
235
|
+
required: false;
|
236
|
+
};
|
237
|
+
hideUserTypeSelection: {
|
238
|
+
type: import("vue").PropType<boolean>;
|
239
|
+
required: false;
|
240
|
+
};
|
241
|
+
hideGroupTypeSelection: {
|
242
|
+
type: import("vue").PropType<boolean>;
|
243
|
+
required: false;
|
244
|
+
};
|
245
|
+
hideTab: {
|
246
|
+
type: import("vue").PropType<boolean>;
|
247
|
+
required: false;
|
248
|
+
};
|
249
|
+
"on-menu-toggle": {
|
250
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
251
|
+
};
|
252
|
+
onMenuToggle: {
|
253
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
254
|
+
};
|
255
|
+
filter: {
|
256
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
257
|
+
} & {
|
258
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
259
|
+
};
|
260
|
+
blockedIdentities: {
|
261
|
+
type: import("vue").PropType<Identity[]>;
|
262
|
+
required: false;
|
263
|
+
};
|
264
|
+
disabledIdentities: {
|
265
|
+
type: import("vue").PropType<Identity[]>;
|
266
|
+
required: false;
|
267
|
+
};
|
268
|
+
autoOpenSelection: {
|
269
|
+
type: import("vue").PropType<boolean>;
|
270
|
+
required: false;
|
271
|
+
};
|
272
|
+
showCurrentUserOption: {
|
273
|
+
type: import("vue").PropType<boolean>;
|
274
|
+
required: false;
|
275
|
+
};
|
276
|
+
ariaInvalid: {
|
277
|
+
type: import("vue").PropType<boolean>;
|
278
|
+
required: false;
|
279
|
+
};
|
280
|
+
ariaDescribedby: {
|
281
|
+
type: import("vue").PropType<string>;
|
282
|
+
required: false;
|
283
|
+
};
|
284
|
+
singleLine: {
|
285
|
+
type: import("vue").PropType<boolean>;
|
286
|
+
required: false;
|
287
|
+
};
|
288
|
+
top: {
|
289
|
+
type: import("vue").PropType<boolean>;
|
290
|
+
required: false;
|
291
|
+
};
|
292
|
+
keepSelectionMenu: {
|
293
|
+
type: import("vue").PropType<boolean>;
|
294
|
+
required: false;
|
295
|
+
};
|
296
|
+
showSelectedIdentities: {
|
297
|
+
type: import("vue").PropType<boolean>;
|
298
|
+
required: false;
|
299
|
+
};
|
300
|
+
disabled: {
|
301
|
+
type: import("vue").PropType<boolean>;
|
302
|
+
required: false;
|
303
|
+
};
|
304
|
+
required: {
|
305
|
+
type: import("vue").PropType<boolean>;
|
306
|
+
required: false;
|
307
|
+
};
|
308
|
+
multiple: {
|
309
|
+
type: import("vue").PropType<boolean>;
|
310
|
+
required: false;
|
311
|
+
};
|
312
|
+
description: {
|
313
|
+
type: import("vue").PropType<string>;
|
314
|
+
required: false;
|
315
|
+
};
|
316
|
+
label: {
|
317
|
+
type: import("vue").PropType<string>;
|
318
|
+
required: false;
|
319
|
+
};
|
320
|
+
"provider-ids": {
|
321
|
+
type: import("vue").PropType<GuidValue[]>;
|
322
|
+
};
|
323
|
+
providerIds: {
|
324
|
+
type: import("vue").PropType<GuidValue[]>;
|
325
|
+
};
|
326
|
+
type: {
|
327
|
+
type: import("vue").PropType<PrincipalTypes>;
|
328
|
+
} & {
|
329
|
+
type: import("vue").PropType<PrincipalTypes>;
|
330
|
+
};
|
331
|
+
"onUpdate:modelValue": {
|
332
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
333
|
+
};
|
334
|
+
"v-model": {
|
335
|
+
type: import("vue").PropType<Identity[]>;
|
336
|
+
required: false;
|
337
|
+
};
|
338
|
+
modelValue: {
|
339
|
+
type: import("vue").PropType<Identity[]>;
|
340
|
+
required: false;
|
341
|
+
};
|
342
|
+
}>> & {
|
343
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
344
|
+
onDoc$?: (description?: string) => any;
|
345
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
166
346
|
__isFragment?: never;
|
167
347
|
__isTeleport?: never;
|
168
348
|
__isSuspense?: never;
|
169
349
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
onMenuToggle:
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
}
|
350
|
+
hideDynamicGroupSelection: {
|
351
|
+
type: import("vue").PropType<boolean>;
|
352
|
+
required: false;
|
353
|
+
};
|
354
|
+
hideUserTypeSelection: {
|
355
|
+
type: import("vue").PropType<boolean>;
|
356
|
+
required: false;
|
357
|
+
};
|
358
|
+
hideGroupTypeSelection: {
|
359
|
+
type: import("vue").PropType<boolean>;
|
360
|
+
required: false;
|
361
|
+
};
|
362
|
+
hideTab: {
|
363
|
+
type: import("vue").PropType<boolean>;
|
364
|
+
required: false;
|
365
|
+
};
|
366
|
+
"on-menu-toggle": {
|
367
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
368
|
+
};
|
369
|
+
onMenuToggle: {
|
370
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
371
|
+
};
|
372
|
+
filter: {
|
373
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
374
|
+
} & {
|
375
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
376
|
+
};
|
377
|
+
blockedIdentities: {
|
378
|
+
type: import("vue").PropType<Identity[]>;
|
379
|
+
required: false;
|
380
|
+
};
|
381
|
+
disabledIdentities: {
|
382
|
+
type: import("vue").PropType<Identity[]>;
|
383
|
+
required: false;
|
384
|
+
};
|
385
|
+
autoOpenSelection: {
|
386
|
+
type: import("vue").PropType<boolean>;
|
387
|
+
required: false;
|
388
|
+
};
|
389
|
+
showCurrentUserOption: {
|
390
|
+
type: import("vue").PropType<boolean>;
|
391
|
+
required: false;
|
392
|
+
};
|
393
|
+
ariaInvalid: {
|
394
|
+
type: import("vue").PropType<boolean>;
|
395
|
+
required: false;
|
396
|
+
};
|
397
|
+
ariaDescribedby: {
|
398
|
+
type: import("vue").PropType<string>;
|
399
|
+
required: false;
|
400
|
+
};
|
401
|
+
singleLine: {
|
402
|
+
type: import("vue").PropType<boolean>;
|
403
|
+
required: false;
|
404
|
+
};
|
405
|
+
top: {
|
406
|
+
type: import("vue").PropType<boolean>;
|
407
|
+
required: false;
|
408
|
+
};
|
409
|
+
keepSelectionMenu: {
|
410
|
+
type: import("vue").PropType<boolean>;
|
411
|
+
required: false;
|
412
|
+
};
|
413
|
+
showSelectedIdentities: {
|
414
|
+
type: import("vue").PropType<boolean>;
|
415
|
+
required: false;
|
416
|
+
};
|
417
|
+
disabled: {
|
418
|
+
type: import("vue").PropType<boolean>;
|
419
|
+
required: false;
|
420
|
+
};
|
421
|
+
required: {
|
422
|
+
type: import("vue").PropType<boolean>;
|
423
|
+
required: false;
|
424
|
+
};
|
425
|
+
multiple: {
|
426
|
+
type: import("vue").PropType<boolean>;
|
427
|
+
required: false;
|
428
|
+
};
|
429
|
+
description: {
|
430
|
+
type: import("vue").PropType<string>;
|
431
|
+
required: false;
|
432
|
+
};
|
433
|
+
label: {
|
434
|
+
type: import("vue").PropType<string>;
|
435
|
+
required: false;
|
436
|
+
};
|
437
|
+
"provider-ids": {
|
438
|
+
type: import("vue").PropType<GuidValue[]>;
|
439
|
+
};
|
440
|
+
providerIds: {
|
441
|
+
type: import("vue").PropType<GuidValue[]>;
|
442
|
+
};
|
443
|
+
type: {
|
444
|
+
type: import("vue").PropType<PrincipalTypes>;
|
445
|
+
} & {
|
446
|
+
type: import("vue").PropType<PrincipalTypes>;
|
447
|
+
};
|
448
|
+
"onUpdate:modelValue": {
|
449
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
450
|
+
};
|
451
|
+
"v-model": {
|
452
|
+
type: import("vue").PropType<Identity[]>;
|
453
|
+
required: false;
|
454
|
+
};
|
455
|
+
modelValue: {
|
456
|
+
type: import("vue").PropType<Identity[]>;
|
457
|
+
required: false;
|
458
|
+
};
|
459
|
+
}>> & {
|
460
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
461
|
+
onDoc$?: (description?: string) => any;
|
462
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
463
|
+
"update:modelValue": (value: Identity[]) => true;
|
464
|
+
doc$(description?: string): {
|
465
|
+
"update:modelValue": (value: Identity[]) => true;
|
466
|
+
};
|
467
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
197
468
|
propsDefinition: Omit<Readonly<{} & {
|
198
469
|
filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
199
470
|
label?: string;
|
@@ -203,24 +474,29 @@ declare const _default: {
|
|
203
474
|
disabled?: boolean;
|
204
475
|
required?: boolean;
|
205
476
|
description?: string;
|
206
|
-
|
477
|
+
"v-model"?: Identity[];
|
478
|
+
modelValue?: Identity[];
|
479
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
207
480
|
singleLine?: boolean;
|
208
481
|
ariaInvalid?: boolean;
|
209
482
|
ariaDescribedby?: string;
|
210
483
|
providerIds?: GuidValue[];
|
211
|
-
|
212
|
-
isKeepMenuOpen?: (value: Boolean) => void;
|
213
|
-
attachToParent?: boolean;
|
484
|
+
"provider-ids"?: GuidValue[];
|
214
485
|
keepSelectionMenu?: boolean;
|
215
486
|
showCurrentUserOption?: boolean;
|
487
|
+
autoOpenSelection?: boolean;
|
216
488
|
disabledIdentities?: Identity[];
|
217
489
|
blockedIdentities?: Identity[];
|
218
|
-
onMenuToggle?: (
|
490
|
+
onMenuToggle?: (value: boolean) => void;
|
491
|
+
"on-menu-toggle"?: (value: boolean) => void;
|
219
492
|
hideTab?: boolean;
|
220
493
|
hideGroupTypeSelection?: boolean;
|
221
494
|
hideUserTypeSelection?: boolean;
|
222
495
|
hideDynamicGroupSelection?: boolean;
|
223
496
|
showSelectedIdentities?: boolean;
|
224
|
-
}>,
|
497
|
+
}>, "onUpdate:modelValue" | "onDoc$"> & {
|
498
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
499
|
+
onDoc$?: (description?: string) => any;
|
500
|
+
};
|
225
501
|
};
|
226
502
|
export default _default;
|
@@ -69,9 +69,9 @@ declare const _default: {
|
|
69
69
|
"onClick:delete"?: (id: string) => any;
|
70
70
|
"onClick:back"?: (id: string) => any;
|
71
71
|
readonly searchable?: boolean;
|
72
|
+
readonly onClickSave?: (bladeId: string) => void | Promise<void>;
|
72
73
|
onSearch?: (searchText: string) => any;
|
73
74
|
"onClick:add"?: (id: string) => any;
|
74
|
-
"onClick:save"?: (id: string) => any;
|
75
75
|
"onClick:settings"?: (id: string) => any;
|
76
76
|
};
|
77
77
|
$attrs: {
|
@@ -85,7 +85,7 @@ declare const _default: {
|
|
85
85
|
}>;
|
86
86
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
87
87
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
88
|
-
$emit: ((event: "search", searchText: string) => void) & ((event: "click:cancel", id: string) => void) & ((event: "click:delete", id: string) => void) & ((event: "click:back", id: string) => void) & ((event: "click:add", id: string) => void) & ((event: "click:
|
88
|
+
$emit: ((event: "search", searchText: string) => void) & ((event: "click:cancel", id: string) => void) & ((event: "click:delete", id: string) => void) & ((event: "click:back", id: string) => void) & ((event: "click:add", id: string) => void) & ((event: "click:settings", id: string) => void);
|
89
89
|
$el: any;
|
90
90
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
91
91
|
"v-slots": import("vue").Prop<{
|
@@ -94,6 +94,9 @@ declare const _default: {
|
|
94
94
|
actions?: Func<[VNodeChild]>;
|
95
95
|
actionsFooter?: Func<[VNodeChild]>;
|
96
96
|
}>;
|
97
|
+
onClickSave: {
|
98
|
+
type: import("vue").PropType<(bladeId: string) => void | Promise<void>>;
|
99
|
+
};
|
97
100
|
variant: {
|
98
101
|
type: import("vue").PropType<"info" | "new" | "edit">;
|
99
102
|
};
|
@@ -134,13 +137,11 @@ declare const _default: {
|
|
134
137
|
"onClick:back"?: (id: string) => any;
|
135
138
|
onSearch?: (searchText: string) => any;
|
136
139
|
"onClick:add"?: (id: string) => any;
|
137
|
-
"onClick:save"?: (id: string) => any;
|
138
140
|
"onClick:settings"?: (id: string) => any;
|
139
141
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
140
142
|
"click:add": (id: string) => boolean;
|
141
143
|
"click:back": (id: string) => boolean;
|
142
144
|
"click:cancel": (id: string) => boolean;
|
143
|
-
"click:save": (id: string) => boolean;
|
144
145
|
"click:delete": (id: string) => boolean;
|
145
146
|
"click:settings": (id: string) => boolean;
|
146
147
|
search: (searchText: string) => boolean;
|
@@ -171,6 +172,9 @@ declare const _default: {
|
|
171
172
|
actions?: Func<[VNodeChild]>;
|
172
173
|
actionsFooter?: Func<[VNodeChild]>;
|
173
174
|
}>;
|
175
|
+
onClickSave: {
|
176
|
+
type: import("vue").PropType<(bladeId: string) => void | Promise<void>>;
|
177
|
+
};
|
174
178
|
variant: {
|
175
179
|
type: import("vue").PropType<"info" | "new" | "edit">;
|
176
180
|
};
|
@@ -211,7 +215,6 @@ declare const _default: {
|
|
211
215
|
"onClick:back"?: (id: string) => any;
|
212
216
|
onSearch?: (searchText: string) => any;
|
213
217
|
"onClick:add"?: (id: string) => any;
|
214
|
-
"onClick:save"?: (id: string) => any;
|
215
218
|
"onClick:settings"?: (id: string) => any;
|
216
219
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
217
220
|
__isFragment?: never;
|
@@ -224,6 +227,9 @@ declare const _default: {
|
|
224
227
|
actions?: Func<[VNodeChild]>;
|
225
228
|
actionsFooter?: Func<[VNodeChild]>;
|
226
229
|
}>;
|
230
|
+
onClickSave: {
|
231
|
+
type: import("vue").PropType<(bladeId: string) => void | Promise<void>>;
|
232
|
+
};
|
227
233
|
variant: {
|
228
234
|
type: import("vue").PropType<"info" | "new" | "edit">;
|
229
235
|
};
|
@@ -264,13 +270,11 @@ declare const _default: {
|
|
264
270
|
"onClick:back"?: (id: string) => any;
|
265
271
|
onSearch?: (searchText: string) => any;
|
266
272
|
"onClick:add"?: (id: string) => any;
|
267
|
-
"onClick:save"?: (id: string) => any;
|
268
273
|
"onClick:settings"?: (id: string) => any;
|
269
274
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
270
275
|
"click:add": (id: string) => boolean;
|
271
276
|
"click:back": (id: string) => boolean;
|
272
277
|
"click:cancel": (id: string) => boolean;
|
273
|
-
"click:save": (id: string) => boolean;
|
274
278
|
"click:delete": (id: string) => boolean;
|
275
279
|
"click:settings": (id: string) => boolean;
|
276
280
|
search: (searchText: string) => boolean;
|
@@ -293,13 +297,13 @@ declare const _default: {
|
|
293
297
|
save?: boolean;
|
294
298
|
subTitle?: string;
|
295
299
|
searchable?: boolean;
|
296
|
-
|
300
|
+
onClickSave?: (bladeId: string) => void | Promise<void>;
|
301
|
+
}>, "onClick:cancel" | "onClick:delete" | "onClick:back" | "onSearch" | "onClick:add" | "onClick:settings"> & {
|
297
302
|
"onClick:cancel"?: (id: string) => any;
|
298
303
|
"onClick:delete"?: (id: string) => any;
|
299
304
|
"onClick:back"?: (id: string) => any;
|
300
305
|
onSearch?: (searchText: string) => any;
|
301
306
|
"onClick:add"?: (id: string) => any;
|
302
|
-
"onClick:save"?: (id: string) => any;
|
303
307
|
"onClick:settings"?: (id: string) => any;
|
304
308
|
};
|
305
309
|
};
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { ColorDefinition } from "../../velcron/core";
|
2
|
+
declare const _default: {
|
3
|
+
fadeEffect: (color: any, colors: ColorDefinition) => {
|
4
|
+
background: string;
|
5
|
+
$nest: {
|
6
|
+
"&::after": {
|
7
|
+
content: string;
|
8
|
+
display: string;
|
9
|
+
width: string;
|
10
|
+
height: string;
|
11
|
+
borderRadius: string;
|
12
|
+
position: any;
|
13
|
+
top: string;
|
14
|
+
left: string;
|
15
|
+
boxShadow: string;
|
16
|
+
};
|
17
|
+
};
|
18
|
+
};
|
19
|
+
};
|
20
|
+
export default _default;
|