@fkui/vue 6.1.0 → 6.3.0
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/dist/cjs/{cypress.js → cypress.cjs.js} +2 -56
- package/dist/cjs/{cypress.js.map → cypress.cjs.js.map} +1 -1
- package/dist/cjs/index.cjs.js +1162 -389
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +1516 -0
- package/dist/esm/cypress.esm.js.map +7 -0
- package/dist/esm/index.esm.js +1163 -390
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +202 -63
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/elements/components.js +29 -0
- package/htmlvalidate/elements/internal-components.js +1 -0
- package/package.json +9 -8
- package/tsconfig-consumer.json +1 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -129,7 +129,16 @@ id: string;
|
|
|
129
129
|
focusRef: HTMLElement | null;
|
|
130
130
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
131
131
|
|
|
132
|
-
declare const __VLS_component_3: DefineComponent<
|
|
132
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
133
|
+
|
|
134
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
|
|
135
|
+
disabled: boolean;
|
|
136
|
+
min: string;
|
|
137
|
+
max: string;
|
|
138
|
+
initial: string;
|
|
139
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
140
|
+
|
|
141
|
+
declare const __VLS_component_5: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
133
142
|
close: () => any;
|
|
134
143
|
}, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
|
|
135
144
|
onClose?: (() => any) | undefined;
|
|
@@ -160,6 +169,38 @@ declare type __VLS_PrettifyLocal_5<T> = {
|
|
|
160
169
|
} & {};
|
|
161
170
|
|
|
162
171
|
declare type __VLS_Props = {
|
|
172
|
+
layout: string;
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
declare type __VLS_Props_2 = {
|
|
176
|
+
/**
|
|
177
|
+
* Disables resizing. The current size is locked.
|
|
178
|
+
*/
|
|
179
|
+
disabled?: boolean;
|
|
180
|
+
/**
|
|
181
|
+
* Minimal size of pane.
|
|
182
|
+
*
|
|
183
|
+
* Can be set in `px`, `%` (percent of application layout total size)
|
|
184
|
+
* or both as a space-separated list, e.g. `200px 20%`.
|
|
185
|
+
*/
|
|
186
|
+
min?: string;
|
|
187
|
+
/**
|
|
188
|
+
* Maximum size of pane.
|
|
189
|
+
*
|
|
190
|
+
* Can be set in `px`, `%` (percent of application layout total size)
|
|
191
|
+
* or both as a space-separated list, e.g. `600px 50%`.
|
|
192
|
+
*/
|
|
193
|
+
max?: string;
|
|
194
|
+
/**
|
|
195
|
+
* Initial size of pane used when the pane is used for the first time.
|
|
196
|
+
*
|
|
197
|
+
* Can be set in `px` or `%` (percent of application layout total
|
|
198
|
+
* size)
|
|
199
|
+
*/
|
|
200
|
+
initial?: string;
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
declare type __VLS_Props_3 = {
|
|
163
204
|
id: string;
|
|
164
205
|
isOpen: boolean;
|
|
165
206
|
options: string[];
|
|
@@ -198,6 +239,22 @@ declare function __VLS_template_2(): {
|
|
|
198
239
|
};
|
|
199
240
|
|
|
200
241
|
declare function __VLS_template_3(): {
|
|
242
|
+
attrs: Partial<{}>;
|
|
243
|
+
slots: Partial<Record<string, (_: {}) => any>>;
|
|
244
|
+
refs: {};
|
|
245
|
+
rootEl: any;
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
declare function __VLS_template_4(): {
|
|
249
|
+
attrs: Partial<{}>;
|
|
250
|
+
slots: {
|
|
251
|
+
default?(_: {}): any;
|
|
252
|
+
};
|
|
253
|
+
refs: {};
|
|
254
|
+
rootEl: any;
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
declare function __VLS_template_5(): {
|
|
201
258
|
attrs: Partial<{}>;
|
|
202
259
|
slots: {
|
|
203
260
|
default?(_: {}): any;
|
|
@@ -216,6 +273,10 @@ declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
|
216
273
|
|
|
217
274
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
218
275
|
|
|
276
|
+
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
277
|
+
|
|
278
|
+
declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
|
|
279
|
+
|
|
219
280
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
220
281
|
new (): {
|
|
221
282
|
$slots: S;
|
|
@@ -234,6 +295,18 @@ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
|
234
295
|
};
|
|
235
296
|
};
|
|
236
297
|
|
|
298
|
+
declare type __VLS_WithTemplateSlots_4<T, S> = T & {
|
|
299
|
+
new (): {
|
|
300
|
+
$slots: S;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
305
|
+
new (): {
|
|
306
|
+
$slots: S;
|
|
307
|
+
};
|
|
308
|
+
};
|
|
309
|
+
|
|
237
310
|
/* Excluded from this release type: actionFromKeyboardEvent */
|
|
238
311
|
|
|
239
312
|
/**
|
|
@@ -844,7 +917,7 @@ required: false;
|
|
|
844
917
|
default: boolean;
|
|
845
918
|
};
|
|
846
919
|
modelValue: {
|
|
847
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
920
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
848
921
|
required: false;
|
|
849
922
|
default: string;
|
|
850
923
|
};
|
|
@@ -942,7 +1015,7 @@ required: false;
|
|
|
942
1015
|
default: boolean;
|
|
943
1016
|
};
|
|
944
1017
|
modelValue: {
|
|
945
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1018
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
946
1019
|
required: false;
|
|
947
1020
|
default: string;
|
|
948
1021
|
};
|
|
@@ -988,7 +1061,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
988
1061
|
}>, {
|
|
989
1062
|
type: string;
|
|
990
1063
|
id: string;
|
|
991
|
-
modelValue: string | number;
|
|
1064
|
+
modelValue: string | number | null;
|
|
992
1065
|
inline: boolean;
|
|
993
1066
|
disabled: boolean;
|
|
994
1067
|
options: string[] | undefined;
|
|
@@ -1301,7 +1374,7 @@ required: false;
|
|
|
1301
1374
|
default: boolean;
|
|
1302
1375
|
};
|
|
1303
1376
|
modelValue: {
|
|
1304
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1377
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
1305
1378
|
required: false;
|
|
1306
1379
|
default: string;
|
|
1307
1380
|
};
|
|
@@ -1399,7 +1472,7 @@ required: false;
|
|
|
1399
1472
|
default: boolean;
|
|
1400
1473
|
};
|
|
1401
1474
|
modelValue: {
|
|
1402
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
1475
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
1403
1476
|
required: false;
|
|
1404
1477
|
default: string;
|
|
1405
1478
|
};
|
|
@@ -1445,7 +1518,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
1445
1518
|
}>, {
|
|
1446
1519
|
type: string;
|
|
1447
1520
|
id: string;
|
|
1448
|
-
modelValue: string | number;
|
|
1521
|
+
modelValue: string | number | null;
|
|
1449
1522
|
inline: boolean;
|
|
1450
1523
|
disabled: boolean;
|
|
1451
1524
|
options: string[] | undefined;
|
|
@@ -2232,7 +2305,7 @@ required: false;
|
|
|
2232
2305
|
default: boolean;
|
|
2233
2306
|
};
|
|
2234
2307
|
modelValue: {
|
|
2235
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
2308
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
2236
2309
|
required: false;
|
|
2237
2310
|
default: string;
|
|
2238
2311
|
};
|
|
@@ -2330,7 +2403,7 @@ required: false;
|
|
|
2330
2403
|
default: boolean;
|
|
2331
2404
|
};
|
|
2332
2405
|
modelValue: {
|
|
2333
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
2406
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
2334
2407
|
required: false;
|
|
2335
2408
|
default: string;
|
|
2336
2409
|
};
|
|
@@ -2376,7 +2449,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
2376
2449
|
}>, {
|
|
2377
2450
|
type: string;
|
|
2378
2451
|
id: string;
|
|
2379
|
-
modelValue: string | number;
|
|
2452
|
+
modelValue: string | number | null;
|
|
2380
2453
|
inline: boolean;
|
|
2381
2454
|
disabled: boolean;
|
|
2382
2455
|
options: string[] | undefined;
|
|
@@ -3411,7 +3484,7 @@ required: false;
|
|
|
3411
3484
|
default: boolean;
|
|
3412
3485
|
};
|
|
3413
3486
|
modelValue: {
|
|
3414
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
3487
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
3415
3488
|
required: false;
|
|
3416
3489
|
default: string;
|
|
3417
3490
|
};
|
|
@@ -3509,7 +3582,7 @@ required: false;
|
|
|
3509
3582
|
default: boolean;
|
|
3510
3583
|
};
|
|
3511
3584
|
modelValue: {
|
|
3512
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
3585
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
3513
3586
|
required: false;
|
|
3514
3587
|
default: string;
|
|
3515
3588
|
};
|
|
@@ -3555,7 +3628,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
3555
3628
|
}>, {
|
|
3556
3629
|
type: string;
|
|
3557
3630
|
id: string;
|
|
3558
|
-
modelValue: string | number;
|
|
3631
|
+
modelValue: string | number | null;
|
|
3559
3632
|
inline: boolean;
|
|
3560
3633
|
disabled: boolean;
|
|
3561
3634
|
options: string[] | undefined;
|
|
@@ -4403,7 +4476,7 @@ required: false;
|
|
|
4403
4476
|
default: boolean;
|
|
4404
4477
|
};
|
|
4405
4478
|
modelValue: {
|
|
4406
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
4479
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
4407
4480
|
required: false;
|
|
4408
4481
|
default: string;
|
|
4409
4482
|
};
|
|
@@ -4501,7 +4574,7 @@ required: false;
|
|
|
4501
4574
|
default: boolean;
|
|
4502
4575
|
};
|
|
4503
4576
|
modelValue: {
|
|
4504
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
4577
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
4505
4578
|
required: false;
|
|
4506
4579
|
default: string;
|
|
4507
4580
|
};
|
|
@@ -4547,7 +4620,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
4547
4620
|
}>, {
|
|
4548
4621
|
type: string;
|
|
4549
4622
|
id: string;
|
|
4550
|
-
modelValue: string | number;
|
|
4623
|
+
modelValue: string | number | null;
|
|
4551
4624
|
inline: boolean;
|
|
4552
4625
|
disabled: boolean;
|
|
4553
4626
|
options: string[] | undefined;
|
|
@@ -5097,7 +5170,7 @@ default: () => string;
|
|
|
5097
5170
|
* @model
|
|
5098
5171
|
*/
|
|
5099
5172
|
modelValue: {
|
|
5100
|
-
type: StringConstructor;
|
|
5173
|
+
type: (StringConstructor | null)[];
|
|
5101
5174
|
required: false;
|
|
5102
5175
|
default: undefined;
|
|
5103
5176
|
};
|
|
@@ -5149,7 +5222,7 @@ default: () => string;
|
|
|
5149
5222
|
* @model
|
|
5150
5223
|
*/
|
|
5151
5224
|
modelValue: {
|
|
5152
|
-
type: StringConstructor;
|
|
5225
|
+
type: (StringConstructor | null)[];
|
|
5153
5226
|
required: false;
|
|
5154
5227
|
default: undefined;
|
|
5155
5228
|
};
|
|
@@ -5176,7 +5249,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
5176
5249
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5177
5250
|
}>, {
|
|
5178
5251
|
id: string;
|
|
5179
|
-
modelValue: string;
|
|
5252
|
+
modelValue: string | null;
|
|
5180
5253
|
maxLength: number;
|
|
5181
5254
|
extendedValidation: boolean;
|
|
5182
5255
|
pasteErrorText: string;
|
|
@@ -5193,7 +5266,7 @@ required: false;
|
|
|
5193
5266
|
default: boolean;
|
|
5194
5267
|
};
|
|
5195
5268
|
modelValue: {
|
|
5196
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
5269
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
5197
5270
|
required: false;
|
|
5198
5271
|
default: string;
|
|
5199
5272
|
};
|
|
@@ -5291,7 +5364,7 @@ required: false;
|
|
|
5291
5364
|
default: boolean;
|
|
5292
5365
|
};
|
|
5293
5366
|
modelValue: {
|
|
5294
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
5367
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
5295
5368
|
required: false;
|
|
5296
5369
|
default: string;
|
|
5297
5370
|
};
|
|
@@ -5337,7 +5410,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
5337
5410
|
}>, {
|
|
5338
5411
|
type: string;
|
|
5339
5412
|
id: string;
|
|
5340
|
-
modelValue: string | number;
|
|
5413
|
+
modelValue: string | number | null;
|
|
5341
5414
|
inline: boolean;
|
|
5342
5415
|
disabled: boolean;
|
|
5343
5416
|
options: string[] | undefined;
|
|
@@ -9135,7 +9208,7 @@ required: false;
|
|
|
9135
9208
|
default: boolean;
|
|
9136
9209
|
};
|
|
9137
9210
|
modelValue: {
|
|
9138
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
9211
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
9139
9212
|
required: false;
|
|
9140
9213
|
default: string;
|
|
9141
9214
|
};
|
|
@@ -9233,7 +9306,7 @@ required: false;
|
|
|
9233
9306
|
default: boolean;
|
|
9234
9307
|
};
|
|
9235
9308
|
modelValue: {
|
|
9236
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
9309
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
9237
9310
|
required: false;
|
|
9238
9311
|
default: string;
|
|
9239
9312
|
};
|
|
@@ -9279,7 +9352,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
9279
9352
|
}>, {
|
|
9280
9353
|
type: string;
|
|
9281
9354
|
id: string;
|
|
9282
|
-
modelValue: string | number;
|
|
9355
|
+
modelValue: string | number | null;
|
|
9283
9356
|
inline: boolean;
|
|
9284
9357
|
disabled: boolean;
|
|
9285
9358
|
options: string[] | undefined;
|
|
@@ -9773,7 +9846,7 @@ required: false;
|
|
|
9773
9846
|
default: boolean;
|
|
9774
9847
|
};
|
|
9775
9848
|
modelValue: {
|
|
9776
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
9849
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
9777
9850
|
required: false;
|
|
9778
9851
|
default: string;
|
|
9779
9852
|
};
|
|
@@ -9871,7 +9944,7 @@ required: false;
|
|
|
9871
9944
|
default: boolean;
|
|
9872
9945
|
};
|
|
9873
9946
|
modelValue: {
|
|
9874
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
9947
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
9875
9948
|
required: false;
|
|
9876
9949
|
default: string;
|
|
9877
9950
|
};
|
|
@@ -9917,7 +9990,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
9917
9990
|
}>, {
|
|
9918
9991
|
type: string;
|
|
9919
9992
|
id: string;
|
|
9920
|
-
modelValue: string | number;
|
|
9993
|
+
modelValue: string | number | null;
|
|
9921
9994
|
inline: boolean;
|
|
9922
9995
|
disabled: boolean;
|
|
9923
9996
|
options: string[] | undefined;
|
|
@@ -10445,6 +10518,8 @@ href: string;
|
|
|
10445
10518
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10446
10519
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10447
10520
|
|
|
10521
|
+
export declare const FPageLayout: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
10522
|
+
|
|
10448
10523
|
export declare const FPercentTextField: DefineComponent<ExtractPropTypes< {
|
|
10449
10524
|
/**
|
|
10450
10525
|
* The number of decimals to format number as.
|
|
@@ -10490,7 +10565,7 @@ required: false;
|
|
|
10490
10565
|
default: boolean;
|
|
10491
10566
|
};
|
|
10492
10567
|
modelValue: {
|
|
10493
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
10568
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
10494
10569
|
required: false;
|
|
10495
10570
|
default: string;
|
|
10496
10571
|
};
|
|
@@ -10588,7 +10663,7 @@ required: false;
|
|
|
10588
10663
|
default: boolean;
|
|
10589
10664
|
};
|
|
10590
10665
|
modelValue: {
|
|
10591
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
10666
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
10592
10667
|
required: false;
|
|
10593
10668
|
default: string;
|
|
10594
10669
|
};
|
|
@@ -10634,7 +10709,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
10634
10709
|
}>, {
|
|
10635
10710
|
type: string;
|
|
10636
10711
|
id: string;
|
|
10637
|
-
modelValue: string | number;
|
|
10712
|
+
modelValue: string | number | null;
|
|
10638
10713
|
inline: boolean;
|
|
10639
10714
|
disabled: boolean;
|
|
10640
10715
|
options: string[] | undefined;
|
|
@@ -10969,7 +11044,7 @@ required: false;
|
|
|
10969
11044
|
default: boolean;
|
|
10970
11045
|
};
|
|
10971
11046
|
modelValue: {
|
|
10972
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
11047
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
10973
11048
|
required: false;
|
|
10974
11049
|
default: string;
|
|
10975
11050
|
};
|
|
@@ -11067,7 +11142,7 @@ required: false;
|
|
|
11067
11142
|
default: boolean;
|
|
11068
11143
|
};
|
|
11069
11144
|
modelValue: {
|
|
11070
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
11145
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
11071
11146
|
required: false;
|
|
11072
11147
|
default: string;
|
|
11073
11148
|
};
|
|
@@ -11113,7 +11188,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
11113
11188
|
}>, {
|
|
11114
11189
|
type: string;
|
|
11115
11190
|
id: string;
|
|
11116
|
-
modelValue: string | number;
|
|
11191
|
+
modelValue: string | number | null;
|
|
11117
11192
|
inline: boolean;
|
|
11118
11193
|
disabled: boolean;
|
|
11119
11194
|
options: string[] | undefined;
|
|
@@ -11413,11 +11488,12 @@ default: () => string;
|
|
|
11413
11488
|
};
|
|
11414
11489
|
/**
|
|
11415
11490
|
* The value for the input.
|
|
11416
|
-
* If the prop is not
|
|
11491
|
+
* If the prop is not used or set to undefined
|
|
11492
|
+
* or null then the default value will be used.
|
|
11417
11493
|
* @model
|
|
11418
11494
|
*/
|
|
11419
11495
|
modelValue: {
|
|
11420
|
-
type: StringConstructor;
|
|
11496
|
+
type: (StringConstructor | null)[];
|
|
11421
11497
|
required: false;
|
|
11422
11498
|
default: undefined;
|
|
11423
11499
|
};
|
|
@@ -11454,11 +11530,12 @@ default: () => string;
|
|
|
11454
11530
|
};
|
|
11455
11531
|
/**
|
|
11456
11532
|
* The value for the input.
|
|
11457
|
-
* If the prop is not
|
|
11533
|
+
* If the prop is not used or set to undefined
|
|
11534
|
+
* or null then the default value will be used.
|
|
11458
11535
|
* @model
|
|
11459
11536
|
*/
|
|
11460
11537
|
modelValue: {
|
|
11461
|
-
type: StringConstructor;
|
|
11538
|
+
type: (StringConstructor | null)[];
|
|
11462
11539
|
required: false;
|
|
11463
11540
|
default: undefined;
|
|
11464
11541
|
};
|
|
@@ -11476,7 +11553,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
11476
11553
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11477
11554
|
}>, {
|
|
11478
11555
|
id: string;
|
|
11479
|
-
modelValue: string;
|
|
11556
|
+
modelValue: string | null;
|
|
11480
11557
|
maxLength: number;
|
|
11481
11558
|
extendedValidation: boolean;
|
|
11482
11559
|
}, {}, {
|
|
@@ -11492,7 +11569,7 @@ required: false;
|
|
|
11492
11569
|
default: boolean;
|
|
11493
11570
|
};
|
|
11494
11571
|
modelValue: {
|
|
11495
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
11572
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
11496
11573
|
required: false;
|
|
11497
11574
|
default: string;
|
|
11498
11575
|
};
|
|
@@ -11590,7 +11667,7 @@ required: false;
|
|
|
11590
11667
|
default: boolean;
|
|
11591
11668
|
};
|
|
11592
11669
|
modelValue: {
|
|
11593
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
11670
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
11594
11671
|
required: false;
|
|
11595
11672
|
default: string;
|
|
11596
11673
|
};
|
|
@@ -11636,7 +11713,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
11636
11713
|
}>, {
|
|
11637
11714
|
type: string;
|
|
11638
11715
|
id: string;
|
|
11639
|
-
modelValue: string | number;
|
|
11716
|
+
modelValue: string | number | null;
|
|
11640
11717
|
inline: boolean;
|
|
11641
11718
|
disabled: boolean;
|
|
11642
11719
|
options: string[] | undefined;
|
|
@@ -11942,7 +12019,7 @@ required: false;
|
|
|
11942
12019
|
default: boolean;
|
|
11943
12020
|
};
|
|
11944
12021
|
modelValue: {
|
|
11945
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12022
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
11946
12023
|
required: false;
|
|
11947
12024
|
default: string;
|
|
11948
12025
|
};
|
|
@@ -12040,7 +12117,7 @@ required: false;
|
|
|
12040
12117
|
default: boolean;
|
|
12041
12118
|
};
|
|
12042
12119
|
modelValue: {
|
|
12043
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12120
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
12044
12121
|
required: false;
|
|
12045
12122
|
default: string;
|
|
12046
12123
|
};
|
|
@@ -12086,7 +12163,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12086
12163
|
}>, {
|
|
12087
12164
|
type: string;
|
|
12088
12165
|
id: string;
|
|
12089
|
-
modelValue: string | number;
|
|
12166
|
+
modelValue: string | number | null;
|
|
12090
12167
|
inline: boolean;
|
|
12091
12168
|
disabled: boolean;
|
|
12092
12169
|
options: string[] | undefined;
|
|
@@ -12401,7 +12478,7 @@ required: false;
|
|
|
12401
12478
|
default: boolean;
|
|
12402
12479
|
};
|
|
12403
12480
|
modelValue: {
|
|
12404
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12481
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
12405
12482
|
required: false;
|
|
12406
12483
|
default: string;
|
|
12407
12484
|
};
|
|
@@ -12499,7 +12576,7 @@ required: false;
|
|
|
12499
12576
|
default: boolean;
|
|
12500
12577
|
};
|
|
12501
12578
|
modelValue: {
|
|
12502
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
12579
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
12503
12580
|
required: false;
|
|
12504
12581
|
default: string;
|
|
12505
12582
|
};
|
|
@@ -12545,7 +12622,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12545
12622
|
}>, {
|
|
12546
12623
|
type: string;
|
|
12547
12624
|
id: string;
|
|
12548
|
-
modelValue: string | number;
|
|
12625
|
+
modelValue: string | number | null;
|
|
12549
12626
|
inline: boolean;
|
|
12550
12627
|
disabled: boolean;
|
|
12551
12628
|
options: string[] | undefined;
|
|
@@ -12998,6 +13075,8 @@ id: string;
|
|
|
12998
13075
|
disabled: boolean;
|
|
12999
13076
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13000
13077
|
|
|
13078
|
+
export declare const FResizePane: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
13079
|
+
|
|
13001
13080
|
export declare const FSearchTextField: DefineComponent<ExtractPropTypes< {
|
|
13002
13081
|
id: {
|
|
13003
13082
|
type: StringConstructor;
|
|
@@ -13005,7 +13084,7 @@ required: false;
|
|
|
13005
13084
|
default: () => string;
|
|
13006
13085
|
};
|
|
13007
13086
|
modelValue: {
|
|
13008
|
-
type: StringConstructor;
|
|
13087
|
+
type: (StringConstructor | null)[];
|
|
13009
13088
|
required: false;
|
|
13010
13089
|
default: string;
|
|
13011
13090
|
};
|
|
@@ -13035,7 +13114,7 @@ required: false;
|
|
|
13035
13114
|
default: () => string;
|
|
13036
13115
|
};
|
|
13037
13116
|
modelValue: {
|
|
13038
|
-
type: StringConstructor;
|
|
13117
|
+
type: (StringConstructor | null)[];
|
|
13039
13118
|
required: false;
|
|
13040
13119
|
default: string;
|
|
13041
13120
|
};
|
|
@@ -13055,7 +13134,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
13055
13134
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
13056
13135
|
}>, {
|
|
13057
13136
|
id: string;
|
|
13058
|
-
modelValue: string;
|
|
13137
|
+
modelValue: string | null;
|
|
13059
13138
|
maxLength: number;
|
|
13060
13139
|
clearableScreenReaderText: string;
|
|
13061
13140
|
}, {}, {
|
|
@@ -13071,7 +13150,7 @@ required: false;
|
|
|
13071
13150
|
default: boolean;
|
|
13072
13151
|
};
|
|
13073
13152
|
modelValue: {
|
|
13074
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
13153
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
13075
13154
|
required: false;
|
|
13076
13155
|
default: string;
|
|
13077
13156
|
};
|
|
@@ -13169,7 +13248,7 @@ required: false;
|
|
|
13169
13248
|
default: boolean;
|
|
13170
13249
|
};
|
|
13171
13250
|
modelValue: {
|
|
13172
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
13251
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
13173
13252
|
required: false;
|
|
13174
13253
|
default: string;
|
|
13175
13254
|
};
|
|
@@ -13215,7 +13294,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
13215
13294
|
}>, {
|
|
13216
13295
|
type: string;
|
|
13217
13296
|
id: string;
|
|
13218
|
-
modelValue: string | number;
|
|
13297
|
+
modelValue: string | number | null;
|
|
13219
13298
|
inline: boolean;
|
|
13220
13299
|
disabled: boolean;
|
|
13221
13300
|
options: string[] | undefined;
|
|
@@ -14479,11 +14558,12 @@ default: boolean;
|
|
|
14479
14558
|
};
|
|
14480
14559
|
/**
|
|
14481
14560
|
* The value for the input.
|
|
14482
|
-
* If the prop is not
|
|
14561
|
+
* If the prop is not used or set to undefined
|
|
14562
|
+
* or null then the default value will be used.
|
|
14483
14563
|
* @model
|
|
14484
14564
|
*/
|
|
14485
14565
|
modelValue: {
|
|
14486
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
14566
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
14487
14567
|
required: false;
|
|
14488
14568
|
default: string;
|
|
14489
14569
|
};
|
|
@@ -14639,11 +14719,12 @@ default: boolean;
|
|
|
14639
14719
|
};
|
|
14640
14720
|
/**
|
|
14641
14721
|
* The value for the input.
|
|
14642
|
-
* If the prop is not
|
|
14722
|
+
* If the prop is not used or set to undefined
|
|
14723
|
+
* or null then the default value will be used.
|
|
14643
14724
|
* @model
|
|
14644
14725
|
*/
|
|
14645
14726
|
modelValue: {
|
|
14646
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
14727
|
+
type: (StringConstructor | NumberConstructor | null)[];
|
|
14647
14728
|
required: false;
|
|
14648
14729
|
default: string;
|
|
14649
14730
|
};
|
|
@@ -14738,7 +14819,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
14738
14819
|
}>, {
|
|
14739
14820
|
type: string;
|
|
14740
14821
|
id: string;
|
|
14741
|
-
modelValue: string | number;
|
|
14822
|
+
modelValue: string | number | null;
|
|
14742
14823
|
inline: boolean;
|
|
14743
14824
|
disabled: boolean;
|
|
14744
14825
|
options: string[] | undefined;
|
|
@@ -16682,10 +16763,10 @@ rotate: string;
|
|
|
16682
16763
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16683
16764
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16684
16765
|
|
|
16685
|
-
export declare const IComboboxDropdown: DefineComponent<
|
|
16766
|
+
export declare const IComboboxDropdown: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16686
16767
|
close: () => any;
|
|
16687
16768
|
select: (option: string) => any;
|
|
16688
|
-
}, string, PublicProps, Readonly<
|
|
16769
|
+
}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
|
|
16689
16770
|
onClose?: (() => any) | undefined;
|
|
16690
16771
|
onSelect?: ((option: string) => any) | undefined;
|
|
16691
16772
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -17180,7 +17261,7 @@ export declare interface IPopupErrorData {
|
|
|
17180
17261
|
arrowOffset: number;
|
|
17181
17262
|
}
|
|
17182
17263
|
|
|
17183
|
-
export declare const IPopupListbox:
|
|
17264
|
+
export declare const IPopupListbox: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
17184
17265
|
|
|
17185
17266
|
declare interface IPopupListboxProps {
|
|
17186
17267
|
isOpen: boolean;
|
|
@@ -17514,6 +17595,38 @@ href: string;
|
|
|
17514
17595
|
*/
|
|
17515
17596
|
export declare function itemEquals<T extends object, K extends keyof T>(item1: T | undefined, item2: T | undefined, compareAttribute: K): boolean;
|
|
17516
17597
|
|
|
17598
|
+
/**
|
|
17599
|
+
* @public
|
|
17600
|
+
*/
|
|
17601
|
+
export declare type LayoutAreaAttachPanel = "none" | "left" | "right" | "top" | "bottom";
|
|
17602
|
+
|
|
17603
|
+
/**
|
|
17604
|
+
* @public
|
|
17605
|
+
*/
|
|
17606
|
+
export declare interface LayoutAreaDefinition {
|
|
17607
|
+
/** Where panels will attach to */
|
|
17608
|
+
attachPanel: LayoutAreaAttachPanel;
|
|
17609
|
+
/** What direction content of the area will appear (mapped to `flex-direction`) */
|
|
17610
|
+
direction: LayoutAreaDirection;
|
|
17611
|
+
/** If the content of the area is scrollable (in direction given by `direction`), default `false`. */
|
|
17612
|
+
scroll?: boolean;
|
|
17613
|
+
}
|
|
17614
|
+
|
|
17615
|
+
/**
|
|
17616
|
+
* @public
|
|
17617
|
+
*/
|
|
17618
|
+
export declare type LayoutAreaDirection = "column" | "row";
|
|
17619
|
+
|
|
17620
|
+
/**
|
|
17621
|
+
* A definition of a layout for {@link FPageLayout}.
|
|
17622
|
+
*
|
|
17623
|
+
* @public
|
|
17624
|
+
*/
|
|
17625
|
+
export declare interface LayoutDefinition {
|
|
17626
|
+
name: string;
|
|
17627
|
+
areas: Record<string, LayoutAreaDefinition>;
|
|
17628
|
+
}
|
|
17629
|
+
|
|
17517
17630
|
/**
|
|
17518
17631
|
* Represents an array of items in a list-based component (FList, FTable, etc).
|
|
17519
17632
|
*
|
|
@@ -17811,6 +17924,13 @@ export declare function refIsVue(value: unknown): value is ComponentPublicInstan
|
|
|
17811
17924
|
*/
|
|
17812
17925
|
export declare function refIsVueArray(value: unknown): value is ComponentPublicInstance[];
|
|
17813
17926
|
|
|
17927
|
+
/**
|
|
17928
|
+
* Register a new layout for usage with {@link FPageLayout}.
|
|
17929
|
+
*
|
|
17930
|
+
* @public
|
|
17931
|
+
*/
|
|
17932
|
+
export declare function registerLayout<T extends LayoutDefinition>(definition: T): void;
|
|
17933
|
+
|
|
17814
17934
|
/**
|
|
17815
17935
|
* @public
|
|
17816
17936
|
*/
|
|
@@ -17895,7 +18015,7 @@ export declare const TestPlugin: Plugin_2;
|
|
|
17895
18015
|
export declare interface TextFieldSetupProps {
|
|
17896
18016
|
id: string;
|
|
17897
18017
|
inline: boolean;
|
|
17898
|
-
modelValue: string | number;
|
|
18018
|
+
modelValue: string | number | null;
|
|
17899
18019
|
type: string;
|
|
17900
18020
|
formatter?: FormatFunction<unknown>;
|
|
17901
18021
|
parser?: ParseFunction<unknown>;
|
|
@@ -17964,6 +18084,25 @@ export declare const UNHANDLED_ERROR_EVENT: "unhandled-error";
|
|
|
17964
18084
|
*/
|
|
17965
18085
|
export declare type UnknownItem = Record<string, unknown>;
|
|
17966
18086
|
|
|
18087
|
+
/**
|
|
18088
|
+
* @public
|
|
18089
|
+
*/
|
|
18090
|
+
export declare interface UseAreaData {
|
|
18091
|
+
/** Name of layout area */
|
|
18092
|
+
readonly area: Readonly<Ref<string | null>>;
|
|
18093
|
+
/** Panel attachment */
|
|
18094
|
+
readonly attachPanel: Readonly<Ref<LayoutAreaAttachPanel | null>>;
|
|
18095
|
+
/** Direction area content flows */
|
|
18096
|
+
readonly direction: Readonly<Ref<LayoutAreaDirection | null>>;
|
|
18097
|
+
}
|
|
18098
|
+
|
|
18099
|
+
/**
|
|
18100
|
+
* Fetch information about the layout area given element belongs to.
|
|
18101
|
+
*
|
|
18102
|
+
* @public
|
|
18103
|
+
*/
|
|
18104
|
+
export declare function useAreaData(element: Readonly<ShallowRef<HTMLElement | null | undefined>>): UseAreaData;
|
|
18105
|
+
|
|
17967
18106
|
/**
|
|
17968
18107
|
* @public
|
|
17969
18108
|
*/
|