@fkui/vue 6.6.0 → 6.7.1
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.cjs.js +33 -10
- package/dist/cjs/cypress.cjs.js.map +2 -2
- package/dist/cjs/index.cjs.js +653 -522
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/cypress.esm.js +33 -10
- package/dist/esm/cypress.esm.js.map +2 -2
- package/dist/esm/index.esm.js +653 -522
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/cypress.d.ts +9 -1
- package/dist/types/index.d.ts +211 -165
- package/dist/types/tsdoc-metadata.json +1 -1
- package/htmlvalidate/configs/recommended.js +2 -0
- package/htmlvalidate/elements/components.js +22 -1
- package/htmlvalidate/rules/classdeprecated.rule.js +42 -10
- package/htmlvalidate/rules/finteractivetable-checkbox-description.rule.js +73 -0
- package/htmlvalidate/rules/index.js +3 -0
- package/package.json +5 -5
package/dist/types/cypress.d.ts
CHANGED
|
@@ -959,7 +959,7 @@ export declare class FWizardStepPageobject implements BasePageObject {
|
|
|
959
959
|
selector: string;
|
|
960
960
|
el(): DefaultCypressChainable;
|
|
961
961
|
/**
|
|
962
|
-
* Get the header
|
|
962
|
+
* Get the header pageobject in the FWizardStep
|
|
963
963
|
*/
|
|
964
964
|
header: FWizardStepHeaderPageobject;
|
|
965
965
|
/**
|
|
@@ -978,6 +978,14 @@ export declare class FWizardStepPageobject implements BasePageObject {
|
|
|
978
978
|
* Get the body element of the FWizardStep
|
|
979
979
|
*/
|
|
980
980
|
body(): DefaultCypressChainable;
|
|
981
|
+
/**
|
|
982
|
+
* Get the steps number
|
|
983
|
+
*/
|
|
984
|
+
stepNumber(): DefaultCypressChainable;
|
|
985
|
+
/**
|
|
986
|
+
* Get the title element
|
|
987
|
+
*/
|
|
988
|
+
title(): DefaultCypressChainable;
|
|
981
989
|
/**
|
|
982
990
|
* Wait for open animation to finish.
|
|
983
991
|
*/
|
package/dist/types/index.d.ts
CHANGED
|
@@ -129,21 +129,92 @@ id: string;
|
|
|
129
129
|
focusRef: HTMLElement | null;
|
|
130
130
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
131
131
|
|
|
132
|
-
declare const __VLS_component_3: DefineComponent<
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
132
|
+
declare const __VLS_component_3: DefineComponent<ExtractPropTypes< {
|
|
133
|
+
/**
|
|
134
|
+
* The action to be performed by the button.
|
|
135
|
+
* Must be one of the following values: "delete" or "modify".
|
|
136
|
+
*/
|
|
137
|
+
action: {
|
|
138
|
+
type: StringConstructor;
|
|
139
|
+
required: true;
|
|
140
|
+
validator(value: string): boolean;
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* Determines if an icon should be displayed on the button.
|
|
144
|
+
*/
|
|
145
|
+
icon: {
|
|
146
|
+
type: BooleanConstructor;
|
|
147
|
+
default: boolean;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* The item that the action will be performed on.
|
|
151
|
+
*/
|
|
152
|
+
item: {
|
|
153
|
+
type: ObjectConstructor;
|
|
154
|
+
required: true;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* Determines if the button should display a label.
|
|
158
|
+
* If false, the button will use a visually hidden text for accessibility.
|
|
159
|
+
*/
|
|
160
|
+
label: {
|
|
161
|
+
type: BooleanConstructor;
|
|
162
|
+
default: boolean;
|
|
163
|
+
};
|
|
164
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
165
|
+
/**
|
|
166
|
+
* The action to be performed by the button.
|
|
167
|
+
* Must be one of the following values: "delete" or "modify".
|
|
168
|
+
*/
|
|
169
|
+
action: {
|
|
170
|
+
type: StringConstructor;
|
|
171
|
+
required: true;
|
|
172
|
+
validator(value: string): boolean;
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* Determines if an icon should be displayed on the button.
|
|
176
|
+
*/
|
|
177
|
+
icon: {
|
|
178
|
+
type: BooleanConstructor;
|
|
179
|
+
default: boolean;
|
|
180
|
+
};
|
|
181
|
+
/**
|
|
182
|
+
* The item that the action will be performed on.
|
|
183
|
+
*/
|
|
184
|
+
item: {
|
|
185
|
+
type: ObjectConstructor;
|
|
186
|
+
required: true;
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* Determines if the button should display a label.
|
|
190
|
+
* If false, the button will use a visually hidden text for accessibility.
|
|
191
|
+
*/
|
|
192
|
+
label: {
|
|
193
|
+
type: BooleanConstructor;
|
|
194
|
+
default: boolean;
|
|
195
|
+
};
|
|
196
|
+
}>> & Readonly<{}>, {
|
|
197
|
+
label: boolean;
|
|
198
|
+
icon: boolean;
|
|
199
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
137
200
|
|
|
138
|
-
declare const __VLS_component_4: DefineComponent<
|
|
201
|
+
declare const __VLS_component_4: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
139
202
|
|
|
140
|
-
declare const __VLS_component_5: DefineComponent<
|
|
203
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
204
|
+
|
|
205
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
|
|
141
206
|
min: string;
|
|
142
207
|
max: string;
|
|
143
208
|
initial: string;
|
|
144
209
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
145
210
|
|
|
146
|
-
declare const
|
|
211
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
212
|
+
click: () => any;
|
|
213
|
+
}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
|
|
214
|
+
onClick?: (() => any) | undefined;
|
|
215
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
216
|
+
|
|
217
|
+
declare const __VLS_component_8: DefineComponent<ExtractPropTypes< {
|
|
147
218
|
/**
|
|
148
219
|
* Unique (per-table) identifier. Typically set to the row
|
|
149
220
|
* property displayed but any unique string can be used.
|
|
@@ -155,14 +226,16 @@ type: StringConstructor;
|
|
|
155
226
|
default: undefined;
|
|
156
227
|
};
|
|
157
228
|
/**
|
|
158
|
-
*
|
|
229
|
+
* When enabled controls column visibility (default `true`)
|
|
230
|
+
*
|
|
231
|
+
* Should be used instead of `v-if` or `v-show`.
|
|
159
232
|
*/
|
|
160
233
|
visible: {
|
|
161
234
|
type: BooleanConstructor;
|
|
162
235
|
default: boolean;
|
|
163
236
|
};
|
|
164
237
|
/**
|
|
165
|
-
*
|
|
238
|
+
* When enabled this cell will be a row header (`<th>` as opposed to
|
|
166
239
|
* `<td>`).
|
|
167
240
|
*/
|
|
168
241
|
rowHeader: {
|
|
@@ -238,14 +311,16 @@ type: StringConstructor;
|
|
|
238
311
|
default: undefined;
|
|
239
312
|
};
|
|
240
313
|
/**
|
|
241
|
-
*
|
|
314
|
+
* When enabled controls column visibility (default `true`)
|
|
315
|
+
*
|
|
316
|
+
* Should be used instead of `v-if` or `v-show`.
|
|
242
317
|
*/
|
|
243
318
|
visible: {
|
|
244
319
|
type: BooleanConstructor;
|
|
245
320
|
default: boolean;
|
|
246
321
|
};
|
|
247
322
|
/**
|
|
248
|
-
*
|
|
323
|
+
* When enabled this cell will be a row header (`<th>` as opposed to
|
|
249
324
|
* `<td>`).
|
|
250
325
|
*/
|
|
251
326
|
rowHeader: {
|
|
@@ -321,7 +396,7 @@ rowHeader: boolean;
|
|
|
321
396
|
element: unknown;
|
|
322
397
|
}, any>;
|
|
323
398
|
|
|
324
|
-
declare const
|
|
399
|
+
declare const __VLS_component_9: DefineComponent<IPopupListboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
325
400
|
close: () => any;
|
|
326
401
|
}, string, PublicProps, Readonly<IPopupListboxProps> & Readonly<{
|
|
327
402
|
onClose?: (() => any) | undefined;
|
|
@@ -355,11 +430,11 @@ declare type __VLS_PrettifyLocal_6<T> = {
|
|
|
355
430
|
[K in keyof T]: T[K];
|
|
356
431
|
} & {};
|
|
357
432
|
|
|
358
|
-
declare type
|
|
359
|
-
|
|
360
|
-
};
|
|
433
|
+
declare type __VLS_PrettifyLocal_7<T> = {
|
|
434
|
+
[K in keyof T]: T[K];
|
|
435
|
+
} & {};
|
|
361
436
|
|
|
362
|
-
declare type
|
|
437
|
+
declare type __VLS_Props = {
|
|
363
438
|
/**
|
|
364
439
|
* Screenreader context for toggle button.
|
|
365
440
|
*
|
|
@@ -368,7 +443,7 @@ declare type __VLS_Props_2 = {
|
|
|
368
443
|
context?: string;
|
|
369
444
|
};
|
|
370
445
|
|
|
371
|
-
declare type
|
|
446
|
+
declare type __VLS_Props_2 = {
|
|
372
447
|
/**
|
|
373
448
|
* Minimal size of pane.
|
|
374
449
|
*
|
|
@@ -392,6 +467,18 @@ declare type __VLS_Props_3 = {
|
|
|
392
467
|
initial?: string;
|
|
393
468
|
};
|
|
394
469
|
|
|
470
|
+
declare type __VLS_Props_3 = {
|
|
471
|
+
/**
|
|
472
|
+
* When set to an icon name an icon is displayed next to the label.
|
|
473
|
+
*/
|
|
474
|
+
icon?: string;
|
|
475
|
+
/**
|
|
476
|
+
* By default the label is visually hidden. When this prop is enabled the
|
|
477
|
+
* label is rendered visually as well.
|
|
478
|
+
*/
|
|
479
|
+
label?: boolean;
|
|
480
|
+
};
|
|
481
|
+
|
|
395
482
|
declare type __VLS_Props_4 = {
|
|
396
483
|
id: string;
|
|
397
484
|
isOpen: boolean;
|
|
@@ -432,12 +519,23 @@ declare function __VLS_template_2(): {
|
|
|
432
519
|
|
|
433
520
|
declare function __VLS_template_3(): {
|
|
434
521
|
attrs: Partial<{}>;
|
|
435
|
-
slots:
|
|
522
|
+
slots: {
|
|
523
|
+
default?(_: {}): any;
|
|
524
|
+
};
|
|
436
525
|
refs: {};
|
|
437
526
|
rootEl: any;
|
|
438
527
|
};
|
|
439
528
|
|
|
440
529
|
declare function __VLS_template_4(): {
|
|
530
|
+
attrs: Partial<{}>;
|
|
531
|
+
slots: {
|
|
532
|
+
default?(_: {}): any;
|
|
533
|
+
};
|
|
534
|
+
refs: {};
|
|
535
|
+
rootEl: any;
|
|
536
|
+
};
|
|
537
|
+
|
|
538
|
+
declare function __VLS_template_5(): {
|
|
441
539
|
attrs: Partial<{}>;
|
|
442
540
|
slots: {
|
|
443
541
|
default?(_: {
|
|
@@ -454,7 +552,7 @@ declare function __VLS_template_4(): {
|
|
|
454
552
|
rootEl: any;
|
|
455
553
|
};
|
|
456
554
|
|
|
457
|
-
declare function
|
|
555
|
+
declare function __VLS_template_6(): {
|
|
458
556
|
attrs: Partial<{}>;
|
|
459
557
|
slots: {
|
|
460
558
|
default?(_: {}): any;
|
|
@@ -463,7 +561,17 @@ declare function __VLS_template_5(): {
|
|
|
463
561
|
rootEl: any;
|
|
464
562
|
};
|
|
465
563
|
|
|
466
|
-
declare function
|
|
564
|
+
declare function __VLS_template_7(): {
|
|
565
|
+
attrs: Partial<{}>;
|
|
566
|
+
slots: {
|
|
567
|
+
default?(_: {}): any;
|
|
568
|
+
default?(_: {}): any;
|
|
569
|
+
};
|
|
570
|
+
refs: {};
|
|
571
|
+
rootEl: HTMLButtonElement;
|
|
572
|
+
};
|
|
573
|
+
|
|
574
|
+
declare function __VLS_template_8(): {
|
|
467
575
|
attrs: Partial<{}>;
|
|
468
576
|
slots: {
|
|
469
577
|
default?(_: {}): any;
|
|
@@ -474,7 +582,7 @@ declare function __VLS_template_6(): {
|
|
|
474
582
|
rootEl: any;
|
|
475
583
|
};
|
|
476
584
|
|
|
477
|
-
declare function
|
|
585
|
+
declare function __VLS_template_9(): {
|
|
478
586
|
attrs: Partial<{}>;
|
|
479
587
|
slots: {
|
|
480
588
|
default?(_: {}): any;
|
|
@@ -501,6 +609,10 @@ declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
|
|
|
501
609
|
|
|
502
610
|
declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
|
|
503
611
|
|
|
612
|
+
declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
|
|
613
|
+
|
|
614
|
+
declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
|
|
615
|
+
|
|
504
616
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
505
617
|
new (): {
|
|
506
618
|
$slots: S;
|
|
@@ -543,6 +655,18 @@ declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
|
543
655
|
};
|
|
544
656
|
};
|
|
545
657
|
|
|
658
|
+
declare type __VLS_WithTemplateSlots_8<T, S> = T & {
|
|
659
|
+
new (): {
|
|
660
|
+
$slots: S;
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
|
|
664
|
+
declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
665
|
+
new (): {
|
|
666
|
+
$slots: S;
|
|
667
|
+
};
|
|
668
|
+
};
|
|
669
|
+
|
|
546
670
|
/* Excluded from this release type: actionFromKeyboardEvent */
|
|
547
671
|
|
|
548
672
|
/**
|
|
@@ -3536,134 +3660,7 @@ rotate: string;
|
|
|
3536
3660
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3537
3661
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3538
3662
|
|
|
3539
|
-
export declare const FCrudButton:
|
|
3540
|
-
/**
|
|
3541
|
-
* The action to be performed by the button.
|
|
3542
|
-
* Must be one of the following values: "delete" or "modify".
|
|
3543
|
-
*/
|
|
3544
|
-
action: {
|
|
3545
|
-
type: StringConstructor;
|
|
3546
|
-
required: true;
|
|
3547
|
-
validator(value: string): boolean;
|
|
3548
|
-
};
|
|
3549
|
-
/**
|
|
3550
|
-
* Determines if an icon should be displayed on the button.
|
|
3551
|
-
*/
|
|
3552
|
-
icon: {
|
|
3553
|
-
type: BooleanConstructor;
|
|
3554
|
-
default: boolean;
|
|
3555
|
-
};
|
|
3556
|
-
/**
|
|
3557
|
-
* The item that the action will be performed on.
|
|
3558
|
-
*/
|
|
3559
|
-
item: {
|
|
3560
|
-
type: ObjectConstructor;
|
|
3561
|
-
required: true;
|
|
3562
|
-
};
|
|
3563
|
-
/**
|
|
3564
|
-
* Determines if the button should display a label.
|
|
3565
|
-
* If false, the button will use a visually hidden text for accessibility.
|
|
3566
|
-
*/
|
|
3567
|
-
label: {
|
|
3568
|
-
type: BooleanConstructor;
|
|
3569
|
-
default: boolean;
|
|
3570
|
-
};
|
|
3571
|
-
}>, FCrudDatasetInterface, {}, {
|
|
3572
|
-
iconName(): string;
|
|
3573
|
-
buttonText(): string;
|
|
3574
|
-
}, {
|
|
3575
|
-
executeAction(): void;
|
|
3576
|
-
}, ComponentOptions, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3577
|
-
/**
|
|
3578
|
-
* The action to be performed by the button.
|
|
3579
|
-
* Must be one of the following values: "delete" or "modify".
|
|
3580
|
-
*/
|
|
3581
|
-
action: {
|
|
3582
|
-
type: StringConstructor;
|
|
3583
|
-
required: true;
|
|
3584
|
-
validator(value: string): boolean;
|
|
3585
|
-
};
|
|
3586
|
-
/**
|
|
3587
|
-
* Determines if an icon should be displayed on the button.
|
|
3588
|
-
*/
|
|
3589
|
-
icon: {
|
|
3590
|
-
type: BooleanConstructor;
|
|
3591
|
-
default: boolean;
|
|
3592
|
-
};
|
|
3593
|
-
/**
|
|
3594
|
-
* The item that the action will be performed on.
|
|
3595
|
-
*/
|
|
3596
|
-
item: {
|
|
3597
|
-
type: ObjectConstructor;
|
|
3598
|
-
required: true;
|
|
3599
|
-
};
|
|
3600
|
-
/**
|
|
3601
|
-
* Determines if the button should display a label.
|
|
3602
|
-
* If false, the button will use a visually hidden text for accessibility.
|
|
3603
|
-
*/
|
|
3604
|
-
label: {
|
|
3605
|
-
type: BooleanConstructor;
|
|
3606
|
-
default: boolean;
|
|
3607
|
-
};
|
|
3608
|
-
}>> & Readonly<{}>, {
|
|
3609
|
-
label: boolean;
|
|
3610
|
-
icon: boolean;
|
|
3611
|
-
}, {}, {
|
|
3612
|
-
FIcon: DefineComponent<ExtractPropTypes< {
|
|
3613
|
-
name: {
|
|
3614
|
-
type: StringConstructor;
|
|
3615
|
-
required: true;
|
|
3616
|
-
};
|
|
3617
|
-
library: {
|
|
3618
|
-
type: StringConstructor;
|
|
3619
|
-
required: false;
|
|
3620
|
-
default: string;
|
|
3621
|
-
};
|
|
3622
|
-
flip: {
|
|
3623
|
-
type: PropType<string>;
|
|
3624
|
-
default: null;
|
|
3625
|
-
required: false;
|
|
3626
|
-
validator(value: string): boolean;
|
|
3627
|
-
};
|
|
3628
|
-
rotate: {
|
|
3629
|
-
type: PropType<string>;
|
|
3630
|
-
default: null;
|
|
3631
|
-
required: false;
|
|
3632
|
-
validator(value: string): boolean;
|
|
3633
|
-
};
|
|
3634
|
-
}>, {}, {}, {
|
|
3635
|
-
spriteKey(): string;
|
|
3636
|
-
spriteId(): string;
|
|
3637
|
-
modifiers(): string[];
|
|
3638
|
-
ariaHidden(): "true" | undefined;
|
|
3639
|
-
}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3640
|
-
name: {
|
|
3641
|
-
type: StringConstructor;
|
|
3642
|
-
required: true;
|
|
3643
|
-
};
|
|
3644
|
-
library: {
|
|
3645
|
-
type: StringConstructor;
|
|
3646
|
-
required: false;
|
|
3647
|
-
default: string;
|
|
3648
|
-
};
|
|
3649
|
-
flip: {
|
|
3650
|
-
type: PropType<string>;
|
|
3651
|
-
default: null;
|
|
3652
|
-
required: false;
|
|
3653
|
-
validator(value: string): boolean;
|
|
3654
|
-
};
|
|
3655
|
-
rotate: {
|
|
3656
|
-
type: PropType<string>;
|
|
3657
|
-
default: null;
|
|
3658
|
-
required: false;
|
|
3659
|
-
validator(value: string): boolean;
|
|
3660
|
-
};
|
|
3661
|
-
}>> & Readonly<{}>, {
|
|
3662
|
-
library: string;
|
|
3663
|
-
flip: string;
|
|
3664
|
-
rotate: string;
|
|
3665
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3666
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3663
|
+
export declare const FCrudButton: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
3667
3664
|
|
|
3668
3665
|
export declare const FCrudDataset: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3669
3666
|
props: __VLS_PrettifyLocal<Pick<Partial<{
|
|
@@ -3694,7 +3691,10 @@ export declare const FCrudDataset: <T>(__VLS_props: NonNullable<Awaited<typeof _
|
|
|
3694
3691
|
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
3695
3692
|
attrs: any;
|
|
3696
3693
|
slots: {
|
|
3697
|
-
default?(_: {
|
|
3694
|
+
default?(_: {
|
|
3695
|
+
updateItem: (current: T) => void;
|
|
3696
|
+
deleteItem: (current: T) => void;
|
|
3697
|
+
}): any;
|
|
3698
3698
|
'add-button'?(_: {}): any;
|
|
3699
3699
|
buttons?(_: {
|
|
3700
3700
|
buttonClasses: string[];
|
|
@@ -7154,6 +7154,8 @@ rotate: string;
|
|
|
7154
7154
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7155
7155
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7156
7156
|
|
|
7157
|
+
export declare const FFixedPane: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
7158
|
+
|
|
7157
7159
|
export declare const FFormModal: DefineComponent<ExtractPropTypes< {
|
|
7158
7160
|
/**
|
|
7159
7161
|
* Enable fullscreen mode in mobile.
|
|
@@ -7958,11 +7960,11 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
|
|
|
7958
7960
|
active: [{
|
|
7959
7961
|
type: PropType<T | undefined>;
|
|
7960
7962
|
required: false;
|
|
7961
|
-
default:
|
|
7963
|
+
default: undefined;
|
|
7962
7964
|
}] extends [Prop<infer V, infer D>] ? unknown extends V ? keyof V extends never ? IfAny<V, V, D> : V : V : {
|
|
7963
7965
|
type: PropType<T | undefined>;
|
|
7964
7966
|
required: false;
|
|
7965
|
-
default:
|
|
7967
|
+
default: undefined;
|
|
7966
7968
|
};
|
|
7967
7969
|
}> & Omit<{
|
|
7968
7970
|
readonly scroll: TableScroll;
|
|
@@ -7978,11 +7980,11 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
|
|
|
7978
7980
|
readonly active?: ([{
|
|
7979
7981
|
type: PropType<T | undefined>;
|
|
7980
7982
|
required: false;
|
|
7981
|
-
default:
|
|
7983
|
+
default: undefined;
|
|
7982
7984
|
}] extends [Prop<infer V, infer D>] ? unknown extends V ? keyof V extends never ? IfAny<V, V, D> : V : V : {
|
|
7983
7985
|
type: PropType<T | undefined>;
|
|
7984
7986
|
required: false;
|
|
7985
|
-
default:
|
|
7987
|
+
default: undefined;
|
|
7986
7988
|
}) | undefined;
|
|
7987
7989
|
readonly onSelect?: ((row: T) => any) | undefined;
|
|
7988
7990
|
readonly onCollapse?: ((row: T) => any) | undefined;
|
|
@@ -7991,7 +7993,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
|
|
|
7991
7993
|
readonly onClick?: ((row: T) => any) | undefined;
|
|
7992
7994
|
readonly onExpand?: ((row: T) => any) | undefined;
|
|
7993
7995
|
readonly onUnselect?: ((row: T) => any) | undefined;
|
|
7994
|
-
readonly "onUpdate:active"?: ((row: T) => any) | undefined;
|
|
7996
|
+
readonly "onUpdate:active"?: ((row: T | undefined) => any) | undefined;
|
|
7995
7997
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "modelValue" | "scroll" | "keyAttribute" | "striped" | "hover" | "expandableAttribute" | "expandableDescribedby" | "selectable" | "showActive" | "active">, "onChange" | "onClick" | "onSelect" | "onUpdate:modelValue" | "rows" | "onCollapse" | "onExpand" | "onUnselect" | "onUpdate:active" | ("modelValue" | "scroll" | "keyAttribute" | "striped" | "hover" | "expandableAttribute" | "expandableDescribedby" | "selectable" | "showActive" | "active")> & {} & Partial<{}>> & PublicProps;
|
|
7996
7998
|
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
7997
7999
|
attrs: any;
|
|
@@ -8022,7 +8024,7 @@ export declare const FInteractiveTable: <T extends object, K extends keyof T>(__
|
|
|
8022
8024
|
}): any;
|
|
8023
8025
|
empty?(_: {}): any;
|
|
8024
8026
|
};
|
|
8025
|
-
emit: ((evt: "select", row: T) => void) & ((evt: "collapse", row: T) => void) & ((evt: "update:modelValue", rows: T[]) => void) & ((evt: "change", row: T) => void) & ((evt: "click", row: T) => void) & ((evt: "expand", row: T) => void) & ((evt: "unselect", row: T) => void) & ((evt: "update:active", row: T) => void);
|
|
8027
|
+
emit: ((evt: "select", row: T) => void) & ((evt: "collapse", row: T) => void) & ((evt: "update:modelValue", rows: T[]) => void) & ((evt: "change", row: T) => void) & ((evt: "click", row: T) => void) & ((evt: "expand", row: T) => void) & ((evt: "unselect", row: T) => void) & ((evt: "update:active", row: T | undefined) => void);
|
|
8026
8028
|
}>) => VNode & {
|
|
8027
8029
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
8028
8030
|
};
|
|
@@ -8805,7 +8807,7 @@ align: string;
|
|
|
8805
8807
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8806
8808
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8807
8809
|
|
|
8808
|
-
export declare const FMinimizablePanel:
|
|
8810
|
+
export declare const FMinimizablePanel: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
8809
8811
|
|
|
8810
8812
|
/**
|
|
8811
8813
|
* Level: Ready
|
|
@@ -10869,7 +10871,43 @@ href: string;
|
|
|
10869
10871
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10870
10872
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10871
10873
|
|
|
10872
|
-
export declare const FPageLayout:
|
|
10874
|
+
export declare const FPageLayout: <T extends FPageLayoutType>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_6<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
10875
|
+
props: __VLS_PrettifyLocal_6<Pick<Partial<{}> & Omit<{
|
|
10876
|
+
readonly onUpdate?: (() => any) | undefined;
|
|
10877
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate"> & {
|
|
10878
|
+
layout: T;
|
|
10879
|
+
} & Partial<{}>> & PublicProps;
|
|
10880
|
+
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
10881
|
+
attrs: any;
|
|
10882
|
+
slots: {
|
|
10883
|
+
default?(_: FPageLayoutBindings<T>): any;
|
|
10884
|
+
};
|
|
10885
|
+
emit: (evt: "update") => void;
|
|
10886
|
+
}>) => VNode & {
|
|
10887
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
10888
|
+
};
|
|
10889
|
+
|
|
10890
|
+
/**
|
|
10891
|
+
* @public
|
|
10892
|
+
*/
|
|
10893
|
+
export declare type FPageLayoutBindings<K extends string> = K extends FPageLayoutType ? {
|
|
10894
|
+
[Property in FPageLayoutSlotMapping[K][number]]: `${Property}`;
|
|
10895
|
+
} : never;
|
|
10896
|
+
|
|
10897
|
+
/**
|
|
10898
|
+
* @public
|
|
10899
|
+
*/
|
|
10900
|
+
export declare interface FPageLayoutSlotMapping {
|
|
10901
|
+
simple: ["header", "content", "footer"];
|
|
10902
|
+
"left-panel": ["header", "left", "content", "footer"];
|
|
10903
|
+
"right-panel": ["header", "right", "content", "footer"];
|
|
10904
|
+
"three-column": ["header", "left", "right", "content", "footer"];
|
|
10905
|
+
}
|
|
10906
|
+
|
|
10907
|
+
/**
|
|
10908
|
+
* @public
|
|
10909
|
+
*/
|
|
10910
|
+
export declare type FPageLayoutType = Exclude<keyof FPageLayoutSlotMapping, never>;
|
|
10873
10911
|
|
|
10874
10912
|
export declare const FPercentTextField: DefineComponent<ExtractPropTypes< {
|
|
10875
10913
|
/**
|
|
@@ -13426,7 +13464,7 @@ id: string;
|
|
|
13426
13464
|
disabled: boolean;
|
|
13427
13465
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13428
13466
|
|
|
13429
|
-
export declare const FResizePane:
|
|
13467
|
+
export declare const FResizePane: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
13430
13468
|
|
|
13431
13469
|
export declare const FSearchTextField: DefineComponent<ExtractPropTypes< {
|
|
13432
13470
|
id: {
|
|
@@ -14241,8 +14279,8 @@ rotate: string;
|
|
|
14241
14279
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14242
14280
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14243
14281
|
|
|
14244
|
-
export declare const FSortFilterDataset: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?:
|
|
14245
|
-
props:
|
|
14282
|
+
export declare const FSortFilterDataset: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_7<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
14283
|
+
props: __VLS_PrettifyLocal_7<Pick<Partial<{
|
|
14246
14284
|
data: T[];
|
|
14247
14285
|
defaultSortAttribute: string;
|
|
14248
14286
|
showSort: boolean;
|
|
@@ -14399,7 +14437,9 @@ rotate: string;
|
|
|
14399
14437
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14400
14438
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14401
14439
|
|
|
14402
|
-
export declare const
|
|
14440
|
+
export declare const FTableButton: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
14441
|
+
|
|
14442
|
+
export declare const FTableColumn: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
14403
14443
|
|
|
14404
14444
|
/**
|
|
14405
14445
|
* @public
|
|
@@ -14470,7 +14510,7 @@ export declare interface FTableInterface {
|
|
|
14470
14510
|
* - When disabled the column will be registered in the table component but
|
|
14471
14511
|
* no actual content will be rendered.
|
|
14472
14512
|
*/
|
|
14473
|
-
readonly renderColumns: boolean
|
|
14513
|
+
readonly renderColumns: Ref<boolean>;
|
|
14474
14514
|
}
|
|
14475
14515
|
|
|
14476
14516
|
export declare const FTextareaField: DefineComponent<ExtractPropTypes< {
|
|
@@ -17443,7 +17483,7 @@ export declare interface IPopupErrorData {
|
|
|
17443
17483
|
arrowOffset: number;
|
|
17444
17484
|
}
|
|
17445
17485
|
|
|
17446
|
-
export declare const IPopupListbox:
|
|
17486
|
+
export declare const IPopupListbox: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
17447
17487
|
|
|
17448
17488
|
declare interface IPopupListboxProps {
|
|
17449
17489
|
isOpen: boolean;
|
|
@@ -18174,7 +18214,13 @@ export declare type StepNumber = number;
|
|
|
18174
18214
|
*/
|
|
18175
18215
|
export declare enum TableScroll {
|
|
18176
18216
|
HORIZONTAL = "horizontal",
|
|
18217
|
+
/**
|
|
18218
|
+
* @deprecated Only horizontal is supported. Deprecated since 6.7.0.
|
|
18219
|
+
*/
|
|
18177
18220
|
VERTICAL = "vertical",
|
|
18221
|
+
/**
|
|
18222
|
+
* @deprecated Acts as horizontal. Recommended to use `TableScroll.HORIZONTAL` instead. Deprecated since 6.7.0.
|
|
18223
|
+
*/
|
|
18178
18224
|
BOTH = "both",
|
|
18179
18225
|
NONE = "none"
|
|
18180
18226
|
}
|
|
@@ -11,8 +11,10 @@ module.exports = {
|
|
|
11
11
|
"fkui/class-deprecated": "error",
|
|
12
12
|
"fkui/prefer-ficon": "error",
|
|
13
13
|
"fkui/required-max-length": "error",
|
|
14
|
+
"fkui/finteractivetable-checkbox-description": "error",
|
|
14
15
|
"fkui/ftextfield-formatter-validation": "error",
|
|
15
16
|
"fkui/no-template-modal": "error",
|
|
16
17
|
"fkui/ftablecolumn-name": "error",
|
|
18
|
+
"vue/prefer-slot-shorthand": "off",
|
|
17
19
|
},
|
|
18
20
|
};
|
|
@@ -508,6 +508,10 @@ module.exports = defineMetadata({
|
|
|
508
508
|
},
|
|
509
509
|
},
|
|
510
510
|
|
|
511
|
+
"f-fixed-pane": {
|
|
512
|
+
flow: true,
|
|
513
|
+
},
|
|
514
|
+
|
|
511
515
|
"f-sort-filter-dataset": {
|
|
512
516
|
flow: true,
|
|
513
517
|
interactive: true,
|
|
@@ -542,6 +546,23 @@ module.exports = defineMetadata({
|
|
|
542
546
|
inherit: "f-label#description",
|
|
543
547
|
},
|
|
544
548
|
|
|
549
|
+
"f-table-button": {
|
|
550
|
+
flow: false,
|
|
551
|
+
interactive: true,
|
|
552
|
+
attributes: {
|
|
553
|
+
icon: {
|
|
554
|
+
enum: ["/.+/"],
|
|
555
|
+
},
|
|
556
|
+
label: {
|
|
557
|
+
boolean: true,
|
|
558
|
+
},
|
|
559
|
+
},
|
|
560
|
+
textContent: "accessible",
|
|
561
|
+
permittedContent: ["span", "template"],
|
|
562
|
+
permittedDescendants: [{ exclude: ["@interactive"] }],
|
|
563
|
+
requiredAncestors: ["f-table-column"],
|
|
564
|
+
},
|
|
565
|
+
|
|
545
566
|
"f-table-column": {
|
|
546
567
|
flow: false,
|
|
547
568
|
attributes: {
|
|
@@ -551,7 +572,7 @@ module.exports = defineMetadata({
|
|
|
551
572
|
type: ["text", "date", "numeric", "action"],
|
|
552
573
|
},
|
|
553
574
|
requiredAttributes: ["title"],
|
|
554
|
-
permittedContent: ["@phrasing", "button", "f-badge"],
|
|
575
|
+
permittedContent: ["@phrasing", "button", "f-badge", "f-table-button"],
|
|
555
576
|
},
|
|
556
577
|
|
|
557
578
|
"f-tooltip": {
|