@fkui/vue 5.44.0 → 5.45.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/index.cjs.js +4055 -3992
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/index.esm.js +4057 -3994
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +490 -272
- package/dist/types/tsdoc-metadata.json +1 -1
- package/package.json +3 -3
- /package/htmlvalidate/{index.js → index.cjs} +0 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -293,6 +293,230 @@ export declare function createFFormProvideOptions(vm: {
|
|
|
293
293
|
|
|
294
294
|
declare const _default: DefineComponent<ExtractPropTypes< {
|
|
295
295
|
/**
|
|
296
|
+
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
297
|
+
*/
|
|
298
|
+
disabled: {
|
|
299
|
+
type: BooleanConstructor;
|
|
300
|
+
required: false;
|
|
301
|
+
default: boolean;
|
|
302
|
+
};
|
|
303
|
+
/**
|
|
304
|
+
* The id for the input id attribute.
|
|
305
|
+
* The id for the label for attribute.
|
|
306
|
+
* If the prop is not set a random value will be generated.
|
|
307
|
+
*/
|
|
308
|
+
id: {
|
|
309
|
+
type: StringConstructor;
|
|
310
|
+
required: false;
|
|
311
|
+
default: () => string;
|
|
312
|
+
};
|
|
313
|
+
/**
|
|
314
|
+
* The value for the input checked attribute.
|
|
315
|
+
* @model
|
|
316
|
+
*/
|
|
317
|
+
modelValue: {
|
|
318
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
319
|
+
required: false;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* The value for the input.
|
|
323
|
+
*/
|
|
324
|
+
value: {
|
|
325
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
326
|
+
required: true;
|
|
327
|
+
};
|
|
328
|
+
}>, {
|
|
329
|
+
showDetails: "always" | "never" | "when-selected";
|
|
330
|
+
getFieldsetLabelText: () => string | undefined;
|
|
331
|
+
}, {
|
|
332
|
+
expanded: boolean;
|
|
333
|
+
height: number;
|
|
334
|
+
initialStyle: {
|
|
335
|
+
overflow: string;
|
|
336
|
+
transition: string;
|
|
337
|
+
};
|
|
338
|
+
hiddenStyle: {
|
|
339
|
+
height: string;
|
|
340
|
+
position: string;
|
|
341
|
+
visibility: string;
|
|
342
|
+
};
|
|
343
|
+
visibleStyle: {
|
|
344
|
+
width: string;
|
|
345
|
+
position: string;
|
|
346
|
+
visibility: string;
|
|
347
|
+
height: string;
|
|
348
|
+
};
|
|
349
|
+
openedStyle: {
|
|
350
|
+
height: string;
|
|
351
|
+
};
|
|
352
|
+
}, {
|
|
353
|
+
attrs(): Record<string, unknown>;
|
|
354
|
+
disabledClass(): string;
|
|
355
|
+
injected(): any;
|
|
356
|
+
}, {
|
|
357
|
+
updateExpandedFlag(): void;
|
|
358
|
+
emitVModelEvent(event: Event): void;
|
|
359
|
+
onKeydown(event: Event): void;
|
|
360
|
+
onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
361
|
+
enter(element: Element): void;
|
|
362
|
+
afterEnter(element: Element): void;
|
|
363
|
+
leave(element: Element): void;
|
|
364
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
365
|
+
/**
|
|
366
|
+
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
367
|
+
*/
|
|
368
|
+
disabled: {
|
|
369
|
+
type: BooleanConstructor;
|
|
370
|
+
required: false;
|
|
371
|
+
default: boolean;
|
|
372
|
+
};
|
|
373
|
+
/**
|
|
374
|
+
* The id for the input id attribute.
|
|
375
|
+
* The id for the label for attribute.
|
|
376
|
+
* If the prop is not set a random value will be generated.
|
|
377
|
+
*/
|
|
378
|
+
id: {
|
|
379
|
+
type: StringConstructor;
|
|
380
|
+
required: false;
|
|
381
|
+
default: () => string;
|
|
382
|
+
};
|
|
383
|
+
/**
|
|
384
|
+
* The value for the input checked attribute.
|
|
385
|
+
* @model
|
|
386
|
+
*/
|
|
387
|
+
modelValue: {
|
|
388
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
389
|
+
required: false;
|
|
390
|
+
};
|
|
391
|
+
/**
|
|
392
|
+
* The value for the input.
|
|
393
|
+
*/
|
|
394
|
+
value: {
|
|
395
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
396
|
+
required: true;
|
|
397
|
+
};
|
|
398
|
+
}>> & Readonly<{
|
|
399
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
400
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
401
|
+
}>, {
|
|
402
|
+
id: string;
|
|
403
|
+
disabled: boolean;
|
|
404
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
405
|
+
export { _default as FCheckboxField }
|
|
406
|
+
export { _default as FCheckboxGroupField }
|
|
407
|
+
|
|
408
|
+
declare const _default_2: DefineComponent<ExtractPropTypes< {
|
|
409
|
+
/**
|
|
410
|
+
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
411
|
+
*/
|
|
412
|
+
disabled: {
|
|
413
|
+
type: BooleanConstructor;
|
|
414
|
+
required: false;
|
|
415
|
+
default: boolean;
|
|
416
|
+
};
|
|
417
|
+
/**
|
|
418
|
+
* The id for the input id attribute.
|
|
419
|
+
* The id for the label for attribute.
|
|
420
|
+
* If the prop is not set a random value will be generated.
|
|
421
|
+
*/
|
|
422
|
+
id: {
|
|
423
|
+
type: StringConstructor;
|
|
424
|
+
required: false;
|
|
425
|
+
default: () => string;
|
|
426
|
+
};
|
|
427
|
+
/**
|
|
428
|
+
* The value for the input checked attribute.
|
|
429
|
+
* @model
|
|
430
|
+
*/
|
|
431
|
+
modelValue: {
|
|
432
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
433
|
+
required: false;
|
|
434
|
+
};
|
|
435
|
+
/**
|
|
436
|
+
* The value for the input.
|
|
437
|
+
*/
|
|
438
|
+
value: {
|
|
439
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
440
|
+
required: true;
|
|
441
|
+
};
|
|
442
|
+
}>, {
|
|
443
|
+
sharedName: string | undefined;
|
|
444
|
+
showDetails: "always" | "never" | "when-selected";
|
|
445
|
+
getFieldsetLabelText: () => string | undefined;
|
|
446
|
+
}, {
|
|
447
|
+
height: number;
|
|
448
|
+
initialStyle: {
|
|
449
|
+
overflow: string;
|
|
450
|
+
transition: string;
|
|
451
|
+
};
|
|
452
|
+
hiddenStyle: {
|
|
453
|
+
height: string;
|
|
454
|
+
position: string;
|
|
455
|
+
visibility: string;
|
|
456
|
+
};
|
|
457
|
+
visibleStyle: {
|
|
458
|
+
width: string;
|
|
459
|
+
position: string;
|
|
460
|
+
visibility: string;
|
|
461
|
+
height: string;
|
|
462
|
+
};
|
|
463
|
+
openedStyle: {
|
|
464
|
+
height: string;
|
|
465
|
+
};
|
|
466
|
+
}, {
|
|
467
|
+
attrs(): Record<string, unknown>;
|
|
468
|
+
disabledClass(): string;
|
|
469
|
+
}, {
|
|
470
|
+
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
471
|
+
enter(element: Element): void;
|
|
472
|
+
afterEnter(element: Element): void;
|
|
473
|
+
leave(element: Element): void;
|
|
474
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
475
|
+
/**
|
|
476
|
+
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
477
|
+
*/
|
|
478
|
+
disabled: {
|
|
479
|
+
type: BooleanConstructor;
|
|
480
|
+
required: false;
|
|
481
|
+
default: boolean;
|
|
482
|
+
};
|
|
483
|
+
/**
|
|
484
|
+
* The id for the input id attribute.
|
|
485
|
+
* The id for the label for attribute.
|
|
486
|
+
* If the prop is not set a random value will be generated.
|
|
487
|
+
*/
|
|
488
|
+
id: {
|
|
489
|
+
type: StringConstructor;
|
|
490
|
+
required: false;
|
|
491
|
+
default: () => string;
|
|
492
|
+
};
|
|
493
|
+
/**
|
|
494
|
+
* The value for the input checked attribute.
|
|
495
|
+
* @model
|
|
496
|
+
*/
|
|
497
|
+
modelValue: {
|
|
498
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
499
|
+
required: false;
|
|
500
|
+
};
|
|
501
|
+
/**
|
|
502
|
+
* The value for the input.
|
|
503
|
+
*/
|
|
504
|
+
value: {
|
|
505
|
+
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
506
|
+
required: true;
|
|
507
|
+
};
|
|
508
|
+
}>> & Readonly<{
|
|
509
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
510
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
511
|
+
}>, {
|
|
512
|
+
id: string;
|
|
513
|
+
disabled: boolean;
|
|
514
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
515
|
+
export { _default_2 as FRadioField }
|
|
516
|
+
export { _default_2 as FRadioGroupField }
|
|
517
|
+
|
|
518
|
+
declare const _default_3: DefineComponent<ExtractPropTypes< {
|
|
519
|
+
/**
|
|
296
520
|
* If given, this function is called before the `submit` event is emitted.
|
|
297
521
|
*
|
|
298
522
|
* Optionally this callback may return `FValidationFormAction`. If
|
|
@@ -424,8 +648,8 @@ default(): BeforeNavigate;
|
|
|
424
648
|
}>> & Readonly<{
|
|
425
649
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
426
650
|
}>, {
|
|
427
|
-
beforeSubmit: FValidationFormCallback;
|
|
428
651
|
id: string;
|
|
652
|
+
beforeSubmit: FValidationFormCallback;
|
|
429
653
|
beforeValidation: FValidationFormCallback;
|
|
430
654
|
useErrorList: boolean;
|
|
431
655
|
errorListBullets: boolean;
|
|
@@ -631,243 +855,19 @@ type: BooleanConstructor;
|
|
|
631
855
|
default: boolean;
|
|
632
856
|
};
|
|
633
857
|
align: {
|
|
634
|
-
type: StringConstructor;
|
|
635
|
-
default: string;
|
|
636
|
-
validator(val: string): boolean;
|
|
637
|
-
};
|
|
638
|
-
}>> & Readonly<{}>, {
|
|
639
|
-
grow: boolean;
|
|
640
|
-
shrink: boolean;
|
|
641
|
-
align: string;
|
|
642
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
643
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
644
|
-
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
645
|
-
export { _default as FValidationForm }
|
|
646
|
-
export { _default as IValidationForm }
|
|
647
|
-
|
|
648
|
-
declare const _default_2: DefineComponent<ExtractPropTypes< {
|
|
649
|
-
/**
|
|
650
|
-
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
651
|
-
*/
|
|
652
|
-
disabled: {
|
|
653
|
-
type: BooleanConstructor;
|
|
654
|
-
required: false;
|
|
655
|
-
default: boolean;
|
|
656
|
-
};
|
|
657
|
-
/**
|
|
658
|
-
* The id for the input id attribute.
|
|
659
|
-
* The id for the label for attribute.
|
|
660
|
-
* If the prop is not set a random value will be generated.
|
|
661
|
-
*/
|
|
662
|
-
id: {
|
|
663
|
-
type: StringConstructor;
|
|
664
|
-
required: false;
|
|
665
|
-
default: () => string;
|
|
666
|
-
};
|
|
667
|
-
/**
|
|
668
|
-
* The value for the input checked attribute.
|
|
669
|
-
* @model
|
|
670
|
-
*/
|
|
671
|
-
modelValue: {
|
|
672
|
-
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
673
|
-
required: false;
|
|
674
|
-
};
|
|
675
|
-
/**
|
|
676
|
-
* The value for the input.
|
|
677
|
-
*/
|
|
678
|
-
value: {
|
|
679
|
-
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
680
|
-
required: true;
|
|
681
|
-
};
|
|
682
|
-
}>, {
|
|
683
|
-
showDetails: "always" | "never" | "when-selected";
|
|
684
|
-
getFieldsetLabelText: () => string | undefined;
|
|
685
|
-
}, {
|
|
686
|
-
expanded: boolean;
|
|
687
|
-
height: number;
|
|
688
|
-
initialStyle: {
|
|
689
|
-
overflow: string;
|
|
690
|
-
transition: string;
|
|
691
|
-
};
|
|
692
|
-
hiddenStyle: {
|
|
693
|
-
height: string;
|
|
694
|
-
position: string;
|
|
695
|
-
visibility: string;
|
|
696
|
-
};
|
|
697
|
-
visibleStyle: {
|
|
698
|
-
width: string;
|
|
699
|
-
position: string;
|
|
700
|
-
visibility: string;
|
|
701
|
-
height: string;
|
|
702
|
-
};
|
|
703
|
-
openedStyle: {
|
|
704
|
-
height: string;
|
|
705
|
-
};
|
|
706
|
-
}, {
|
|
707
|
-
attrs(): Record<string, unknown>;
|
|
708
|
-
disabledClass(): string;
|
|
709
|
-
injected(): any;
|
|
710
|
-
}, {
|
|
711
|
-
updateExpandedFlag(): void;
|
|
712
|
-
emitVModelEvent(event: Event): void;
|
|
713
|
-
onKeydown(event: Event): void;
|
|
714
|
-
onValidity({ detail }: CustomEvent<ValidityEvent>): void;
|
|
715
|
-
enter(element: Element): void;
|
|
716
|
-
afterEnter(element: Element): void;
|
|
717
|
-
leave(element: Element): void;
|
|
718
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
719
|
-
/**
|
|
720
|
-
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
721
|
-
*/
|
|
722
|
-
disabled: {
|
|
723
|
-
type: BooleanConstructor;
|
|
724
|
-
required: false;
|
|
725
|
-
default: boolean;
|
|
726
|
-
};
|
|
727
|
-
/**
|
|
728
|
-
* The id for the input id attribute.
|
|
729
|
-
* The id for the label for attribute.
|
|
730
|
-
* If the prop is not set a random value will be generated.
|
|
731
|
-
*/
|
|
732
|
-
id: {
|
|
733
|
-
type: StringConstructor;
|
|
734
|
-
required: false;
|
|
735
|
-
default: () => string;
|
|
736
|
-
};
|
|
737
|
-
/**
|
|
738
|
-
* The value for the input checked attribute.
|
|
739
|
-
* @model
|
|
740
|
-
*/
|
|
741
|
-
modelValue: {
|
|
742
|
-
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
743
|
-
required: false;
|
|
744
|
-
};
|
|
745
|
-
/**
|
|
746
|
-
* The value for the input.
|
|
747
|
-
*/
|
|
748
|
-
value: {
|
|
749
|
-
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
750
|
-
required: true;
|
|
751
|
-
};
|
|
752
|
-
}>> & Readonly<{
|
|
753
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
754
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
755
|
-
}>, {
|
|
756
|
-
id: string;
|
|
757
|
-
disabled: boolean;
|
|
758
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
759
|
-
export { _default_2 as FCheckboxField }
|
|
760
|
-
export { _default_2 as FCheckboxGroupField }
|
|
761
|
-
|
|
762
|
-
declare const _default_3: DefineComponent<ExtractPropTypes< {
|
|
763
|
-
/**
|
|
764
|
-
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
765
|
-
*/
|
|
766
|
-
disabled: {
|
|
767
|
-
type: BooleanConstructor;
|
|
768
|
-
required: false;
|
|
769
|
-
default: boolean;
|
|
770
|
-
};
|
|
771
|
-
/**
|
|
772
|
-
* The id for the input id attribute.
|
|
773
|
-
* The id for the label for attribute.
|
|
774
|
-
* If the prop is not set a random value will be generated.
|
|
775
|
-
*/
|
|
776
|
-
id: {
|
|
777
|
-
type: StringConstructor;
|
|
778
|
-
required: false;
|
|
779
|
-
default: () => string;
|
|
780
|
-
};
|
|
781
|
-
/**
|
|
782
|
-
* The value for the input checked attribute.
|
|
783
|
-
* @model
|
|
784
|
-
*/
|
|
785
|
-
modelValue: {
|
|
786
|
-
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
787
|
-
required: false;
|
|
788
|
-
};
|
|
789
|
-
/**
|
|
790
|
-
* The value for the input.
|
|
791
|
-
*/
|
|
792
|
-
value: {
|
|
793
|
-
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
794
|
-
required: true;
|
|
795
|
-
};
|
|
796
|
-
}>, {
|
|
797
|
-
sharedName: string | undefined;
|
|
798
|
-
showDetails: "always" | "never" | "when-selected";
|
|
799
|
-
getFieldsetLabelText: () => string | undefined;
|
|
800
|
-
}, {
|
|
801
|
-
height: number;
|
|
802
|
-
initialStyle: {
|
|
803
|
-
overflow: string;
|
|
804
|
-
transition: string;
|
|
805
|
-
};
|
|
806
|
-
hiddenStyle: {
|
|
807
|
-
height: string;
|
|
808
|
-
position: string;
|
|
809
|
-
visibility: string;
|
|
810
|
-
};
|
|
811
|
-
visibleStyle: {
|
|
812
|
-
width: string;
|
|
813
|
-
position: string;
|
|
814
|
-
visibility: string;
|
|
815
|
-
height: string;
|
|
816
|
-
};
|
|
817
|
-
openedStyle: {
|
|
818
|
-
height: string;
|
|
819
|
-
};
|
|
820
|
-
}, {
|
|
821
|
-
attrs(): Record<string, unknown>;
|
|
822
|
-
disabledClass(): string;
|
|
823
|
-
}, {
|
|
824
|
-
onValidity({ detail }: CustomEvent<ValidityEvent>): Promise<void>;
|
|
825
|
-
enter(element: Element): void;
|
|
826
|
-
afterEnter(element: Element): void;
|
|
827
|
-
leave(element: Element): void;
|
|
828
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
829
|
-
/**
|
|
830
|
-
* Set to `true`, empty string `""` or string `"disabled"` to disable this input field.
|
|
831
|
-
*/
|
|
832
|
-
disabled: {
|
|
833
|
-
type: BooleanConstructor;
|
|
834
|
-
required: false;
|
|
835
|
-
default: boolean;
|
|
836
|
-
};
|
|
837
|
-
/**
|
|
838
|
-
* The id for the input id attribute.
|
|
839
|
-
* The id for the label for attribute.
|
|
840
|
-
* If the prop is not set a random value will be generated.
|
|
841
|
-
*/
|
|
842
|
-
id: {
|
|
843
|
-
type: StringConstructor;
|
|
844
|
-
required: false;
|
|
845
|
-
default: () => string;
|
|
846
|
-
};
|
|
847
|
-
/**
|
|
848
|
-
* The value for the input checked attribute.
|
|
849
|
-
* @model
|
|
850
|
-
*/
|
|
851
|
-
modelValue: {
|
|
852
|
-
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
853
|
-
required: false;
|
|
854
|
-
};
|
|
855
|
-
/**
|
|
856
|
-
* The value for the input.
|
|
857
|
-
*/
|
|
858
|
-
value: {
|
|
859
|
-
type: (StringConstructor | BooleanConstructor | ObjectConstructor | DateConstructor | ArrayConstructor | NumberConstructor)[];
|
|
860
|
-
required: true;
|
|
861
|
-
};
|
|
862
|
-
}>> & Readonly<{
|
|
863
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
864
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
865
|
-
}>, {
|
|
866
|
-
id: string;
|
|
867
|
-
disabled: boolean;
|
|
858
|
+
type: StringConstructor;
|
|
859
|
+
default: string;
|
|
860
|
+
validator(val: string): boolean;
|
|
861
|
+
};
|
|
862
|
+
}>> & Readonly<{}>, {
|
|
863
|
+
grow: boolean;
|
|
864
|
+
shrink: boolean;
|
|
865
|
+
align: string;
|
|
868
866
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
869
|
-
|
|
870
|
-
|
|
867
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
868
|
+
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
869
|
+
export { _default_3 as FValidationForm }
|
|
870
|
+
export { _default_3 as IValidationForm }
|
|
871
871
|
|
|
872
872
|
/* Excluded from this release type: dispatchComponentUnmountEvent */
|
|
873
873
|
|
|
@@ -1002,7 +1002,6 @@ export declare interface ExpandableTable {
|
|
|
1002
1002
|
isExpanded(row: ListItem): boolean;
|
|
1003
1003
|
rowAriaExpanded(row: ListItem): boolean | undefined;
|
|
1004
1004
|
expandableRowClasses(row: ListItem, index: number): string[];
|
|
1005
|
-
expandableColumnClasses(column: FTableColumnData, index: number): string[];
|
|
1006
1005
|
getExpandableDescribedby(row: ListItem): string | undefined;
|
|
1007
1006
|
expandableRows(row: ListItem): ListArray | undefined;
|
|
1008
1007
|
hasExpandableContent(row: ListItem): boolean;
|
|
@@ -1076,6 +1075,11 @@ type: PropType<string[] | undefined>;
|
|
|
1076
1075
|
required: false;
|
|
1077
1076
|
default: () => undefined;
|
|
1078
1077
|
};
|
|
1078
|
+
disabled: {
|
|
1079
|
+
type: BooleanConstructor;
|
|
1080
|
+
required: false;
|
|
1081
|
+
default: boolean;
|
|
1082
|
+
};
|
|
1079
1083
|
}>, {
|
|
1080
1084
|
textFieldTableMode: boolean;
|
|
1081
1085
|
viewValue: Ref<string, string>;
|
|
@@ -1169,6 +1173,11 @@ type: PropType<string[] | undefined>;
|
|
|
1169
1173
|
required: false;
|
|
1170
1174
|
default: () => undefined;
|
|
1171
1175
|
};
|
|
1176
|
+
disabled: {
|
|
1177
|
+
type: BooleanConstructor;
|
|
1178
|
+
required: false;
|
|
1179
|
+
default: boolean;
|
|
1180
|
+
};
|
|
1172
1181
|
}>> & Readonly<{
|
|
1173
1182
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1174
1183
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1179,6 +1188,7 @@ type: string;
|
|
|
1179
1188
|
id: string;
|
|
1180
1189
|
modelValue: string | number;
|
|
1181
1190
|
inline: boolean;
|
|
1191
|
+
disabled: boolean;
|
|
1182
1192
|
options: string[] | undefined;
|
|
1183
1193
|
labelWidth: string;
|
|
1184
1194
|
formatter: FormatFunction<any>;
|
|
@@ -1522,6 +1532,11 @@ type: PropType<string[] | undefined>;
|
|
|
1522
1532
|
required: false;
|
|
1523
1533
|
default: () => undefined;
|
|
1524
1534
|
};
|
|
1535
|
+
disabled: {
|
|
1536
|
+
type: BooleanConstructor;
|
|
1537
|
+
required: false;
|
|
1538
|
+
default: boolean;
|
|
1539
|
+
};
|
|
1525
1540
|
}>, {
|
|
1526
1541
|
textFieldTableMode: boolean;
|
|
1527
1542
|
viewValue: Ref<string, string>;
|
|
@@ -1615,6 +1630,11 @@ type: PropType<string[] | undefined>;
|
|
|
1615
1630
|
required: false;
|
|
1616
1631
|
default: () => undefined;
|
|
1617
1632
|
};
|
|
1633
|
+
disabled: {
|
|
1634
|
+
type: BooleanConstructor;
|
|
1635
|
+
required: false;
|
|
1636
|
+
default: boolean;
|
|
1637
|
+
};
|
|
1618
1638
|
}>> & Readonly<{
|
|
1619
1639
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1620
1640
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1625,6 +1645,7 @@ type: string;
|
|
|
1625
1645
|
id: string;
|
|
1626
1646
|
modelValue: string | number;
|
|
1627
1647
|
inline: boolean;
|
|
1648
|
+
disabled: boolean;
|
|
1628
1649
|
options: string[] | undefined;
|
|
1629
1650
|
labelWidth: string;
|
|
1630
1651
|
formatter: FormatFunction<any>;
|
|
@@ -2547,6 +2568,11 @@ type: PropType<string[] | undefined>;
|
|
|
2547
2568
|
required: false;
|
|
2548
2569
|
default: () => undefined;
|
|
2549
2570
|
};
|
|
2571
|
+
disabled: {
|
|
2572
|
+
type: BooleanConstructor;
|
|
2573
|
+
required: false;
|
|
2574
|
+
default: boolean;
|
|
2575
|
+
};
|
|
2550
2576
|
}>, {
|
|
2551
2577
|
textFieldTableMode: boolean;
|
|
2552
2578
|
viewValue: Ref<string, string>;
|
|
@@ -2640,6 +2666,11 @@ type: PropType<string[] | undefined>;
|
|
|
2640
2666
|
required: false;
|
|
2641
2667
|
default: () => undefined;
|
|
2642
2668
|
};
|
|
2669
|
+
disabled: {
|
|
2670
|
+
type: BooleanConstructor;
|
|
2671
|
+
required: false;
|
|
2672
|
+
default: boolean;
|
|
2673
|
+
};
|
|
2643
2674
|
}>> & Readonly<{
|
|
2644
2675
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2645
2676
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2650,6 +2681,7 @@ type: string;
|
|
|
2650
2681
|
id: string;
|
|
2651
2682
|
modelValue: string | number;
|
|
2652
2683
|
inline: boolean;
|
|
2684
|
+
disabled: boolean;
|
|
2653
2685
|
options: string[] | undefined;
|
|
2654
2686
|
labelWidth: string;
|
|
2655
2687
|
formatter: FormatFunction<any>;
|
|
@@ -3169,8 +3201,8 @@ validator(value: string): boolean;
|
|
|
3169
3201
|
}>> & Readonly<{
|
|
3170
3202
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
3171
3203
|
}>, {
|
|
3172
|
-
focus: "on" | "off" | "open";
|
|
3173
3204
|
type: "" | "warning" | "error" | "information";
|
|
3205
|
+
focus: "on" | "off" | "open";
|
|
3174
3206
|
size: string;
|
|
3175
3207
|
isOpen: boolean;
|
|
3176
3208
|
fullscreen: boolean;
|
|
@@ -3437,7 +3469,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
3437
3469
|
}>, {
|
|
3438
3470
|
anchor: HTMLElement | null | undefined;
|
|
3439
3471
|
viewport: HTMLElement;
|
|
3440
|
-
inline: "
|
|
3472
|
+
inline: "auto" | "always" | "never";
|
|
3441
3473
|
alwaysInline: boolean;
|
|
3442
3474
|
container: HTMLElement | null | undefined;
|
|
3443
3475
|
keyboardTrap: boolean;
|
|
@@ -3780,9 +3812,9 @@ onCreated?: ((...args: any[]) => any) | undefined;
|
|
|
3780
3812
|
onUpdated?: ((...args: any[]) => any) | undefined;
|
|
3781
3813
|
onDeleted?: ((...args: any[]) => any) | undefined;
|
|
3782
3814
|
}>, {
|
|
3783
|
-
beforeSubmit: FValidationFormCallback;
|
|
3784
3815
|
beforeCreate: (() => ListItem) | undefined;
|
|
3785
3816
|
modelValue: ListArray<UnknownItem>;
|
|
3817
|
+
beforeSubmit: FValidationFormCallback;
|
|
3786
3818
|
beforeValidation: FValidationFormCallback;
|
|
3787
3819
|
onCancel: () => void;
|
|
3788
3820
|
primaryButtonRight: boolean;
|
|
@@ -3916,9 +3948,9 @@ value: Record<string, any>;
|
|
|
3916
3948
|
size: string;
|
|
3917
3949
|
isOpen: boolean;
|
|
3918
3950
|
fullscreen: boolean;
|
|
3919
|
-
beforeSubmit: FValidationFormCallback;
|
|
3920
3951
|
ariaCloseText: string;
|
|
3921
3952
|
buttons: FModalButtonDescriptor[];
|
|
3953
|
+
beforeSubmit: FValidationFormCallback;
|
|
3922
3954
|
beforeValidation: FValidationFormCallback;
|
|
3923
3955
|
useErrorList: boolean;
|
|
3924
3956
|
dataTest: string;
|
|
@@ -4010,8 +4042,8 @@ validator(value: string): boolean;
|
|
|
4010
4042
|
}>> & Readonly<{
|
|
4011
4043
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
4012
4044
|
}>, {
|
|
4013
|
-
focus: "on" | "off" | "open";
|
|
4014
4045
|
type: "" | "warning" | "error" | "information";
|
|
4046
|
+
focus: "on" | "off" | "open";
|
|
4015
4047
|
size: string;
|
|
4016
4048
|
isOpen: boolean;
|
|
4017
4049
|
fullscreen: boolean;
|
|
@@ -4148,8 +4180,8 @@ default(): BeforeNavigate;
|
|
|
4148
4180
|
}>> & Readonly<{
|
|
4149
4181
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
4150
4182
|
}>, {
|
|
4151
|
-
beforeSubmit: FValidationFormCallback;
|
|
4152
4183
|
id: string;
|
|
4184
|
+
beforeSubmit: FValidationFormCallback;
|
|
4153
4185
|
beforeValidation: FValidationFormCallback;
|
|
4154
4186
|
useErrorList: boolean;
|
|
4155
4187
|
errorListBullets: boolean;
|
|
@@ -4552,8 +4584,8 @@ validator(value: string): boolean;
|
|
|
4552
4584
|
}>> & Readonly<{
|
|
4553
4585
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
4554
4586
|
}>, {
|
|
4555
|
-
focus: "on" | "off" | "open";
|
|
4556
4587
|
type: "" | "warning" | "error" | "information";
|
|
4588
|
+
focus: "on" | "off" | "open";
|
|
4557
4589
|
size: string;
|
|
4558
4590
|
isOpen: boolean;
|
|
4559
4591
|
fullscreen: boolean;
|
|
@@ -4766,6 +4798,11 @@ type: PropType<string[] | undefined>;
|
|
|
4766
4798
|
required: false;
|
|
4767
4799
|
default: () => undefined;
|
|
4768
4800
|
};
|
|
4801
|
+
disabled: {
|
|
4802
|
+
type: BooleanConstructor;
|
|
4803
|
+
required: false;
|
|
4804
|
+
default: boolean;
|
|
4805
|
+
};
|
|
4769
4806
|
}>, {
|
|
4770
4807
|
textFieldTableMode: boolean;
|
|
4771
4808
|
viewValue: Ref<string, string>;
|
|
@@ -4859,6 +4896,11 @@ type: PropType<string[] | undefined>;
|
|
|
4859
4896
|
required: false;
|
|
4860
4897
|
default: () => undefined;
|
|
4861
4898
|
};
|
|
4899
|
+
disabled: {
|
|
4900
|
+
type: BooleanConstructor;
|
|
4901
|
+
required: false;
|
|
4902
|
+
default: boolean;
|
|
4903
|
+
};
|
|
4862
4904
|
}>> & Readonly<{
|
|
4863
4905
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
4864
4906
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -4869,6 +4911,7 @@ type: string;
|
|
|
4869
4911
|
id: string;
|
|
4870
4912
|
modelValue: string | number;
|
|
4871
4913
|
inline: boolean;
|
|
4914
|
+
disabled: boolean;
|
|
4872
4915
|
options: string[] | undefined;
|
|
4873
4916
|
labelWidth: string;
|
|
4874
4917
|
formatter: FormatFunction<any>;
|
|
@@ -5832,7 +5875,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
5832
5875
|
}>, {
|
|
5833
5876
|
anchor: HTMLElement | null | undefined;
|
|
5834
5877
|
viewport: HTMLElement;
|
|
5835
|
-
inline: "
|
|
5878
|
+
inline: "auto" | "always" | "never";
|
|
5836
5879
|
alwaysInline: boolean;
|
|
5837
5880
|
container: HTMLElement | null | undefined;
|
|
5838
5881
|
keyboardTrap: boolean;
|
|
@@ -5885,6 +5928,11 @@ type: PropType<string[] | undefined>;
|
|
|
5885
5928
|
required: false;
|
|
5886
5929
|
default: () => undefined;
|
|
5887
5930
|
};
|
|
5931
|
+
disabled: {
|
|
5932
|
+
type: BooleanConstructor;
|
|
5933
|
+
required: false;
|
|
5934
|
+
default: boolean;
|
|
5935
|
+
};
|
|
5888
5936
|
}>, {
|
|
5889
5937
|
textFieldTableMode: boolean;
|
|
5890
5938
|
viewValue: Ref<string, string>;
|
|
@@ -5978,6 +6026,11 @@ type: PropType<string[] | undefined>;
|
|
|
5978
6026
|
required: false;
|
|
5979
6027
|
default: () => undefined;
|
|
5980
6028
|
};
|
|
6029
|
+
disabled: {
|
|
6030
|
+
type: BooleanConstructor;
|
|
6031
|
+
required: false;
|
|
6032
|
+
default: boolean;
|
|
6033
|
+
};
|
|
5981
6034
|
}>> & Readonly<{
|
|
5982
6035
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
5983
6036
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -5988,6 +6041,7 @@ type: string;
|
|
|
5988
6041
|
id: string;
|
|
5989
6042
|
modelValue: string | number;
|
|
5990
6043
|
inline: boolean;
|
|
6044
|
+
disabled: boolean;
|
|
5991
6045
|
options: string[] | undefined;
|
|
5992
6046
|
labelWidth: string;
|
|
5993
6047
|
formatter: FormatFunction<any>;
|
|
@@ -6666,6 +6720,11 @@ type: PropType<string[] | undefined>;
|
|
|
6666
6720
|
required: false;
|
|
6667
6721
|
default: () => undefined;
|
|
6668
6722
|
};
|
|
6723
|
+
disabled: {
|
|
6724
|
+
type: BooleanConstructor;
|
|
6725
|
+
required: false;
|
|
6726
|
+
default: boolean;
|
|
6727
|
+
};
|
|
6669
6728
|
}>, {
|
|
6670
6729
|
textFieldTableMode: boolean;
|
|
6671
6730
|
viewValue: Ref<string, string>;
|
|
@@ -6759,6 +6818,11 @@ type: PropType<string[] | undefined>;
|
|
|
6759
6818
|
required: false;
|
|
6760
6819
|
default: () => undefined;
|
|
6761
6820
|
};
|
|
6821
|
+
disabled: {
|
|
6822
|
+
type: BooleanConstructor;
|
|
6823
|
+
required: false;
|
|
6824
|
+
default: boolean;
|
|
6825
|
+
};
|
|
6762
6826
|
}>> & Readonly<{
|
|
6763
6827
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
6764
6828
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -6769,6 +6833,7 @@ type: string;
|
|
|
6769
6833
|
id: string;
|
|
6770
6834
|
modelValue: string | number;
|
|
6771
6835
|
inline: boolean;
|
|
6836
|
+
disabled: boolean;
|
|
6772
6837
|
options: string[] | undefined;
|
|
6773
6838
|
labelWidth: string;
|
|
6774
6839
|
formatter: FormatFunction<any>;
|
|
@@ -8841,9 +8906,9 @@ value: Record<string, any>;
|
|
|
8841
8906
|
size: string;
|
|
8842
8907
|
isOpen: boolean;
|
|
8843
8908
|
fullscreen: boolean;
|
|
8844
|
-
beforeSubmit: FValidationFormCallback;
|
|
8845
8909
|
ariaCloseText: string;
|
|
8846
8910
|
buttons: FModalButtonDescriptor[];
|
|
8911
|
+
beforeSubmit: FValidationFormCallback;
|
|
8847
8912
|
beforeValidation: FValidationFormCallback;
|
|
8848
8913
|
useErrorList: boolean;
|
|
8849
8914
|
dataTest: string;
|
|
@@ -8935,8 +9000,8 @@ validator(value: string): boolean;
|
|
|
8935
9000
|
}>> & Readonly<{
|
|
8936
9001
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
8937
9002
|
}>, {
|
|
8938
|
-
focus: "on" | "off" | "open";
|
|
8939
9003
|
type: "" | "warning" | "error" | "information";
|
|
9004
|
+
focus: "on" | "off" | "open";
|
|
8940
9005
|
size: string;
|
|
8941
9006
|
isOpen: boolean;
|
|
8942
9007
|
fullscreen: boolean;
|
|
@@ -9073,8 +9138,8 @@ default(): BeforeNavigate;
|
|
|
9073
9138
|
}>> & Readonly<{
|
|
9074
9139
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
9075
9140
|
}>, {
|
|
9076
|
-
beforeSubmit: FValidationFormCallback;
|
|
9077
9141
|
id: string;
|
|
9142
|
+
beforeSubmit: FValidationFormCallback;
|
|
9078
9143
|
beforeValidation: FValidationFormCallback;
|
|
9079
9144
|
useErrorList: boolean;
|
|
9080
9145
|
errorListBullets: boolean;
|
|
@@ -9983,7 +10048,25 @@ type: PropType<ListArray | undefined>;
|
|
|
9983
10048
|
required: false;
|
|
9984
10049
|
default: undefined;
|
|
9985
10050
|
};
|
|
9986
|
-
|
|
10051
|
+
/**
|
|
10052
|
+
* Enable showing the active row.
|
|
10053
|
+
*/
|
|
10054
|
+
showActive: {
|
|
10055
|
+
type: BooleanConstructor;
|
|
10056
|
+
required: false;
|
|
10057
|
+
default: boolean;
|
|
10058
|
+
};
|
|
10059
|
+
/**
|
|
10060
|
+
* V-model will bind to value containing the current active row.
|
|
10061
|
+
*/
|
|
10062
|
+
active: {
|
|
10063
|
+
type: PropType<ListItem | undefined>;
|
|
10064
|
+
required: false;
|
|
10065
|
+
default: () => undefined;
|
|
10066
|
+
};
|
|
10067
|
+
}>, FSortFilterDatasetInterface & ActivateItemInterface & ExpandableTable, FInteractiveTableData & {
|
|
10068
|
+
tbodyKey: number;
|
|
10069
|
+
}, {
|
|
9987
10070
|
hasCaption(): boolean;
|
|
9988
10071
|
hasCheckboxDescription(): boolean;
|
|
9989
10072
|
isEmpty(): boolean;
|
|
@@ -10013,7 +10096,9 @@ callbackSortableColumns(columnNames: string[]): void;
|
|
|
10013
10096
|
callbackAfterItemAdd(item: ListItem): void;
|
|
10014
10097
|
callbackBeforeItemDelete(item: ListItem): void;
|
|
10015
10098
|
escapeNewlines(value: string): string;
|
|
10016
|
-
|
|
10099
|
+
updateActiveRowFromVModel(): void;
|
|
10100
|
+
setActiveRow(row: ListItem | undefined): void;
|
|
10101
|
+
}, ComponentOptions, ComponentOptionsMixin, ("change" | "click" | "select" | "collapse" | "update:modelValue" | "expand" | "update" | "unselect" | "update:active")[], "change" | "click" | "select" | "collapse" | "update:modelValue" | "expand" | "update" | "unselect" | "update:active", PublicProps, Readonly<ExtractPropTypes< {
|
|
10017
10102
|
/**
|
|
10018
10103
|
* The rows to be listed.
|
|
10019
10104
|
* The rows will be listed in the given array order.
|
|
@@ -10089,23 +10174,42 @@ type: PropType<ListArray | undefined>;
|
|
|
10089
10174
|
required: false;
|
|
10090
10175
|
default: undefined;
|
|
10091
10176
|
};
|
|
10177
|
+
/**
|
|
10178
|
+
* Enable showing the active row.
|
|
10179
|
+
*/
|
|
10180
|
+
showActive: {
|
|
10181
|
+
type: BooleanConstructor;
|
|
10182
|
+
required: false;
|
|
10183
|
+
default: boolean;
|
|
10184
|
+
};
|
|
10185
|
+
/**
|
|
10186
|
+
* V-model will bind to value containing the current active row.
|
|
10187
|
+
*/
|
|
10188
|
+
active: {
|
|
10189
|
+
type: PropType<ListItem | undefined>;
|
|
10190
|
+
required: false;
|
|
10191
|
+
default: () => undefined;
|
|
10192
|
+
};
|
|
10092
10193
|
}>> & Readonly<{
|
|
10093
10194
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
10094
10195
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
10095
10196
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
10096
10197
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
10097
10198
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
10098
|
-
onUnselect?: ((...args: any[]) => any) | undefined;
|
|
10099
10199
|
onCollapse?: ((...args: any[]) => any) | undefined;
|
|
10100
10200
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
10201
|
+
onUnselect?: ((...args: any[]) => any) | undefined;
|
|
10202
|
+
"onUpdate:active"?: ((...args: any[]) => any) | undefined;
|
|
10101
10203
|
}>, {
|
|
10102
10204
|
scroll: TableScroll;
|
|
10103
10205
|
modelValue: ListArray | undefined;
|
|
10104
10206
|
striped: boolean;
|
|
10105
|
-
selectable: boolean;
|
|
10106
10207
|
hover: boolean;
|
|
10107
10208
|
expandableAttribute: string;
|
|
10108
10209
|
expandableDescribedby: string;
|
|
10210
|
+
selectable: boolean;
|
|
10211
|
+
showActive: boolean;
|
|
10212
|
+
active: UnknownItem | undefined;
|
|
10109
10213
|
}, {}, {
|
|
10110
10214
|
FCheckboxField: DefineComponent<ExtractPropTypes< {
|
|
10111
10215
|
disabled: {
|
|
@@ -11346,8 +11450,8 @@ validator(value: string): boolean;
|
|
|
11346
11450
|
}>> & Readonly<{
|
|
11347
11451
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
11348
11452
|
}>, {
|
|
11349
|
-
focus: "on" | "off" | "open";
|
|
11350
11453
|
type: "" | "warning" | "error" | "information";
|
|
11454
|
+
focus: "on" | "off" | "open";
|
|
11351
11455
|
size: string;
|
|
11352
11456
|
isOpen: boolean;
|
|
11353
11457
|
fullscreen: boolean;
|
|
@@ -11768,9 +11872,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
11768
11872
|
}>, {
|
|
11769
11873
|
anchor: HTMLElement | undefined;
|
|
11770
11874
|
modelValue: string;
|
|
11771
|
-
ariaLabel: string;
|
|
11772
11875
|
focusedItem: string;
|
|
11773
11876
|
enableKeyboardNavigation: boolean;
|
|
11877
|
+
ariaLabel: string;
|
|
11774
11878
|
selectedMenuItemScreenReaderText: string;
|
|
11775
11879
|
}, {}, {
|
|
11776
11880
|
IPopup: DefineComponent<ExtractPropTypes< {
|
|
@@ -11888,7 +11992,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
11888
11992
|
}>, {
|
|
11889
11993
|
anchor: HTMLElement | null | undefined;
|
|
11890
11994
|
viewport: HTMLElement;
|
|
11891
|
-
inline: "
|
|
11995
|
+
inline: "auto" | "always" | "never";
|
|
11892
11996
|
alwaysInline: boolean;
|
|
11893
11997
|
container: HTMLElement | null | undefined;
|
|
11894
11998
|
keyboardTrap: boolean;
|
|
@@ -11988,6 +12092,11 @@ type: PropType<string[] | undefined>;
|
|
|
11988
12092
|
required: false;
|
|
11989
12093
|
default: () => undefined;
|
|
11990
12094
|
};
|
|
12095
|
+
disabled: {
|
|
12096
|
+
type: BooleanConstructor;
|
|
12097
|
+
required: false;
|
|
12098
|
+
default: boolean;
|
|
12099
|
+
};
|
|
11991
12100
|
}>, {
|
|
11992
12101
|
textFieldTableMode: boolean;
|
|
11993
12102
|
viewValue: Ref<string, string>;
|
|
@@ -12081,6 +12190,11 @@ type: PropType<string[] | undefined>;
|
|
|
12081
12190
|
required: false;
|
|
12082
12191
|
default: () => undefined;
|
|
12083
12192
|
};
|
|
12193
|
+
disabled: {
|
|
12194
|
+
type: BooleanConstructor;
|
|
12195
|
+
required: false;
|
|
12196
|
+
default: boolean;
|
|
12197
|
+
};
|
|
12084
12198
|
}>> & Readonly<{
|
|
12085
12199
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
12086
12200
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -12091,6 +12205,7 @@ type: string;
|
|
|
12091
12205
|
id: string;
|
|
12092
12206
|
modelValue: string | number;
|
|
12093
12207
|
inline: boolean;
|
|
12208
|
+
disabled: boolean;
|
|
12094
12209
|
options: string[] | undefined;
|
|
12095
12210
|
labelWidth: string;
|
|
12096
12211
|
formatter: FormatFunction<any>;
|
|
@@ -12615,6 +12730,11 @@ type: PropType<string[] | undefined>;
|
|
|
12615
12730
|
required: false;
|
|
12616
12731
|
default: () => undefined;
|
|
12617
12732
|
};
|
|
12733
|
+
disabled: {
|
|
12734
|
+
type: BooleanConstructor;
|
|
12735
|
+
required: false;
|
|
12736
|
+
default: boolean;
|
|
12737
|
+
};
|
|
12618
12738
|
}>, {
|
|
12619
12739
|
textFieldTableMode: boolean;
|
|
12620
12740
|
viewValue: Ref<string, string>;
|
|
@@ -12708,6 +12828,11 @@ type: PropType<string[] | undefined>;
|
|
|
12708
12828
|
required: false;
|
|
12709
12829
|
default: () => undefined;
|
|
12710
12830
|
};
|
|
12831
|
+
disabled: {
|
|
12832
|
+
type: BooleanConstructor;
|
|
12833
|
+
required: false;
|
|
12834
|
+
default: boolean;
|
|
12835
|
+
};
|
|
12711
12836
|
}>> & Readonly<{
|
|
12712
12837
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
12713
12838
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -12718,6 +12843,7 @@ type: string;
|
|
|
12718
12843
|
id: string;
|
|
12719
12844
|
modelValue: string | number;
|
|
12720
12845
|
inline: boolean;
|
|
12846
|
+
disabled: boolean;
|
|
12721
12847
|
options: string[] | undefined;
|
|
12722
12848
|
labelWidth: string;
|
|
12723
12849
|
formatter: FormatFunction<any>;
|
|
@@ -13015,7 +13141,7 @@ export declare interface FormErrorList extends ErrorItem {
|
|
|
13015
13141
|
* @public
|
|
13016
13142
|
*/
|
|
13017
13143
|
export declare class FormErrorList implements FormErrorList {
|
|
13018
|
-
focusElementId?: string;
|
|
13144
|
+
focusElementId?: string | undefined;
|
|
13019
13145
|
id: string;
|
|
13020
13146
|
isValid: boolean;
|
|
13021
13147
|
numberOfTimesSubmitted: number;
|
|
@@ -13045,8 +13171,6 @@ export declare type FormModalMaybeOptions = Partial<FormModalModalOptions>;
|
|
|
13045
13171
|
export declare interface FormModalModalOptions {
|
|
13046
13172
|
/** Modal size */
|
|
13047
13173
|
size: "large" | "fullscreen";
|
|
13048
|
-
/** Modal beforeSubmit callback */
|
|
13049
|
-
beforeSubmit?: FValidationFormCallback;
|
|
13050
13174
|
/** Modal props */
|
|
13051
13175
|
props: Record<string, unknown | undefined>;
|
|
13052
13176
|
}
|
|
@@ -13449,6 +13573,11 @@ type: PropType<string[] | undefined>;
|
|
|
13449
13573
|
required: false;
|
|
13450
13574
|
default: () => undefined;
|
|
13451
13575
|
};
|
|
13576
|
+
disabled: {
|
|
13577
|
+
type: BooleanConstructor;
|
|
13578
|
+
required: false;
|
|
13579
|
+
default: boolean;
|
|
13580
|
+
};
|
|
13452
13581
|
}>, {
|
|
13453
13582
|
textFieldTableMode: boolean;
|
|
13454
13583
|
viewValue: Ref<string, string>;
|
|
@@ -13542,6 +13671,11 @@ type: PropType<string[] | undefined>;
|
|
|
13542
13671
|
required: false;
|
|
13543
13672
|
default: () => undefined;
|
|
13544
13673
|
};
|
|
13674
|
+
disabled: {
|
|
13675
|
+
type: BooleanConstructor;
|
|
13676
|
+
required: false;
|
|
13677
|
+
default: boolean;
|
|
13678
|
+
};
|
|
13545
13679
|
}>> & Readonly<{
|
|
13546
13680
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
13547
13681
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -13552,6 +13686,7 @@ type: string;
|
|
|
13552
13686
|
id: string;
|
|
13553
13687
|
modelValue: string | number;
|
|
13554
13688
|
inline: boolean;
|
|
13689
|
+
disabled: boolean;
|
|
13555
13690
|
options: string[] | undefined;
|
|
13556
13691
|
labelWidth: string;
|
|
13557
13692
|
formatter: FormatFunction<any>;
|
|
@@ -13917,6 +14052,11 @@ type: PropType<string[] | undefined>;
|
|
|
13917
14052
|
required: false;
|
|
13918
14053
|
default: () => undefined;
|
|
13919
14054
|
};
|
|
14055
|
+
disabled: {
|
|
14056
|
+
type: BooleanConstructor;
|
|
14057
|
+
required: false;
|
|
14058
|
+
default: boolean;
|
|
14059
|
+
};
|
|
13920
14060
|
}>, {
|
|
13921
14061
|
textFieldTableMode: boolean;
|
|
13922
14062
|
viewValue: Ref<string, string>;
|
|
@@ -14010,6 +14150,11 @@ type: PropType<string[] | undefined>;
|
|
|
14010
14150
|
required: false;
|
|
14011
14151
|
default: () => undefined;
|
|
14012
14152
|
};
|
|
14153
|
+
disabled: {
|
|
14154
|
+
type: BooleanConstructor;
|
|
14155
|
+
required: false;
|
|
14156
|
+
default: boolean;
|
|
14157
|
+
};
|
|
14013
14158
|
}>> & Readonly<{
|
|
14014
14159
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
14015
14160
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -14020,6 +14165,7 @@ type: string;
|
|
|
14020
14165
|
id: string;
|
|
14021
14166
|
modelValue: string | number;
|
|
14022
14167
|
inline: boolean;
|
|
14168
|
+
disabled: boolean;
|
|
14023
14169
|
options: string[] | undefined;
|
|
14024
14170
|
labelWidth: string;
|
|
14025
14171
|
formatter: FormatFunction<any>;
|
|
@@ -14430,6 +14576,11 @@ type: PropType<string[] | undefined>;
|
|
|
14430
14576
|
required: false;
|
|
14431
14577
|
default: () => undefined;
|
|
14432
14578
|
};
|
|
14579
|
+
disabled: {
|
|
14580
|
+
type: BooleanConstructor;
|
|
14581
|
+
required: false;
|
|
14582
|
+
default: boolean;
|
|
14583
|
+
};
|
|
14433
14584
|
}>, {
|
|
14434
14585
|
textFieldTableMode: boolean;
|
|
14435
14586
|
viewValue: Ref<string, string>;
|
|
@@ -14523,6 +14674,11 @@ type: PropType<string[] | undefined>;
|
|
|
14523
14674
|
required: false;
|
|
14524
14675
|
default: () => undefined;
|
|
14525
14676
|
};
|
|
14677
|
+
disabled: {
|
|
14678
|
+
type: BooleanConstructor;
|
|
14679
|
+
required: false;
|
|
14680
|
+
default: boolean;
|
|
14681
|
+
};
|
|
14526
14682
|
}>> & Readonly<{
|
|
14527
14683
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
14528
14684
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -14533,6 +14689,7 @@ type: string;
|
|
|
14533
14689
|
id: string;
|
|
14534
14690
|
modelValue: string | number;
|
|
14535
14691
|
inline: boolean;
|
|
14692
|
+
disabled: boolean;
|
|
14536
14693
|
options: string[] | undefined;
|
|
14537
14694
|
labelWidth: string;
|
|
14538
14695
|
formatter: FormatFunction<any>;
|
|
@@ -14869,6 +15026,11 @@ type: PropType<string[] | undefined>;
|
|
|
14869
15026
|
required: false;
|
|
14870
15027
|
default: () => undefined;
|
|
14871
15028
|
};
|
|
15029
|
+
disabled: {
|
|
15030
|
+
type: BooleanConstructor;
|
|
15031
|
+
required: false;
|
|
15032
|
+
default: boolean;
|
|
15033
|
+
};
|
|
14872
15034
|
}>, {
|
|
14873
15035
|
textFieldTableMode: boolean;
|
|
14874
15036
|
viewValue: Ref<string, string>;
|
|
@@ -14962,6 +15124,11 @@ type: PropType<string[] | undefined>;
|
|
|
14962
15124
|
required: false;
|
|
14963
15125
|
default: () => undefined;
|
|
14964
15126
|
};
|
|
15127
|
+
disabled: {
|
|
15128
|
+
type: BooleanConstructor;
|
|
15129
|
+
required: false;
|
|
15130
|
+
default: boolean;
|
|
15131
|
+
};
|
|
14965
15132
|
}>> & Readonly<{
|
|
14966
15133
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
14967
15134
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -14972,6 +15139,7 @@ type: string;
|
|
|
14972
15139
|
id: string;
|
|
14973
15140
|
modelValue: string | number;
|
|
14974
15141
|
inline: boolean;
|
|
15142
|
+
disabled: boolean;
|
|
14975
15143
|
options: string[] | undefined;
|
|
14976
15144
|
labelWidth: string;
|
|
14977
15145
|
formatter: FormatFunction<any>;
|
|
@@ -15317,6 +15485,11 @@ type: PropType<string[] | undefined>;
|
|
|
15317
15485
|
required: false;
|
|
15318
15486
|
default: () => undefined;
|
|
15319
15487
|
};
|
|
15488
|
+
disabled: {
|
|
15489
|
+
type: BooleanConstructor;
|
|
15490
|
+
required: false;
|
|
15491
|
+
default: boolean;
|
|
15492
|
+
};
|
|
15320
15493
|
}>, {
|
|
15321
15494
|
textFieldTableMode: boolean;
|
|
15322
15495
|
viewValue: Ref<string, string>;
|
|
@@ -15410,6 +15583,11 @@ type: PropType<string[] | undefined>;
|
|
|
15410
15583
|
required: false;
|
|
15411
15584
|
default: () => undefined;
|
|
15412
15585
|
};
|
|
15586
|
+
disabled: {
|
|
15587
|
+
type: BooleanConstructor;
|
|
15588
|
+
required: false;
|
|
15589
|
+
default: boolean;
|
|
15590
|
+
};
|
|
15413
15591
|
}>> & Readonly<{
|
|
15414
15592
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
15415
15593
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -15420,6 +15598,7 @@ type: string;
|
|
|
15420
15598
|
id: string;
|
|
15421
15599
|
modelValue: string | number;
|
|
15422
15600
|
inline: boolean;
|
|
15601
|
+
disabled: boolean;
|
|
15423
15602
|
options: string[] | undefined;
|
|
15424
15603
|
labelWidth: string;
|
|
15425
15604
|
formatter: FormatFunction<any>;
|
|
@@ -16096,6 +16275,11 @@ type: PropType<string[] | undefined>;
|
|
|
16096
16275
|
required: false;
|
|
16097
16276
|
default: () => undefined;
|
|
16098
16277
|
};
|
|
16278
|
+
disabled: {
|
|
16279
|
+
type: BooleanConstructor;
|
|
16280
|
+
required: false;
|
|
16281
|
+
default: boolean;
|
|
16282
|
+
};
|
|
16099
16283
|
}>, {
|
|
16100
16284
|
textFieldTableMode: boolean;
|
|
16101
16285
|
viewValue: Ref<string, string>;
|
|
@@ -16189,6 +16373,11 @@ type: PropType<string[] | undefined>;
|
|
|
16189
16373
|
required: false;
|
|
16190
16374
|
default: () => undefined;
|
|
16191
16375
|
};
|
|
16376
|
+
disabled: {
|
|
16377
|
+
type: BooleanConstructor;
|
|
16378
|
+
required: false;
|
|
16379
|
+
default: boolean;
|
|
16380
|
+
};
|
|
16192
16381
|
}>> & Readonly<{
|
|
16193
16382
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
16194
16383
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -16199,6 +16388,7 @@ type: string;
|
|
|
16199
16388
|
id: string;
|
|
16200
16389
|
modelValue: string | number;
|
|
16201
16390
|
inline: boolean;
|
|
16391
|
+
disabled: boolean;
|
|
16202
16392
|
options: string[] | undefined;
|
|
16203
16393
|
labelWidth: string;
|
|
16204
16394
|
formatter: FormatFunction<any>;
|
|
@@ -16589,7 +16779,7 @@ labelClass(): string;
|
|
|
16589
16779
|
labelWrapperClass(): string | undefined;
|
|
16590
16780
|
selectWrapperClass(): string | undefined;
|
|
16591
16781
|
vModel: {
|
|
16592
|
-
get(): string | number | boolean | Record<string, any> |
|
|
16782
|
+
get(): string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
16593
16783
|
set(value: unknown): void;
|
|
16594
16784
|
};
|
|
16595
16785
|
}, {
|
|
@@ -16652,7 +16842,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
16652
16842
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
16653
16843
|
}>, {
|
|
16654
16844
|
id: string;
|
|
16655
|
-
modelValue: string | number | boolean | Record<string, any
|
|
16845
|
+
modelValue: string | number | boolean | unknown[] | Record<string, any>;
|
|
16656
16846
|
inline: boolean;
|
|
16657
16847
|
labelWidth: string;
|
|
16658
16848
|
selectWidth: string;
|
|
@@ -16974,7 +17164,7 @@ labelClass(): string;
|
|
|
16974
17164
|
labelWrapperClass(): string | undefined;
|
|
16975
17165
|
selectWrapperClass(): string | undefined;
|
|
16976
17166
|
vModel: {
|
|
16977
|
-
get(): string | number | boolean | Record<string, any> |
|
|
17167
|
+
get(): string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
16978
17168
|
set(value: unknown): void;
|
|
16979
17169
|
};
|
|
16980
17170
|
}, {
|
|
@@ -17010,7 +17200,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
17010
17200
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17011
17201
|
}>, {
|
|
17012
17202
|
id: string;
|
|
17013
|
-
modelValue: string | number | boolean | Record<string, any
|
|
17203
|
+
modelValue: string | number | boolean | unknown[] | Record<string, any>;
|
|
17014
17204
|
inline: boolean;
|
|
17015
17205
|
labelWidth: string;
|
|
17016
17206
|
selectWidth: string;
|
|
@@ -17194,6 +17384,11 @@ type: PropType<string[] | undefined>;
|
|
|
17194
17384
|
required: false;
|
|
17195
17385
|
default: () => undefined;
|
|
17196
17386
|
};
|
|
17387
|
+
disabled: {
|
|
17388
|
+
type: BooleanConstructor;
|
|
17389
|
+
required: false;
|
|
17390
|
+
default: boolean;
|
|
17391
|
+
};
|
|
17197
17392
|
}>, {
|
|
17198
17393
|
textFieldTableMode: boolean;
|
|
17199
17394
|
viewValue: Ref<string, string>;
|
|
@@ -17287,6 +17482,11 @@ type: PropType<string[] | undefined>;
|
|
|
17287
17482
|
required: false;
|
|
17288
17483
|
default: () => undefined;
|
|
17289
17484
|
};
|
|
17485
|
+
disabled: {
|
|
17486
|
+
type: BooleanConstructor;
|
|
17487
|
+
required: false;
|
|
17488
|
+
default: boolean;
|
|
17489
|
+
};
|
|
17290
17490
|
}>> & Readonly<{
|
|
17291
17491
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
17292
17492
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -17297,6 +17497,7 @@ type: string;
|
|
|
17297
17497
|
id: string;
|
|
17298
17498
|
modelValue: string | number;
|
|
17299
17499
|
inline: boolean;
|
|
17500
|
+
disabled: boolean;
|
|
17300
17501
|
options: string[] | undefined;
|
|
17301
17502
|
labelWidth: string;
|
|
17302
17503
|
formatter: FormatFunction<any>;
|
|
@@ -17909,7 +18110,7 @@ required: false;
|
|
|
17909
18110
|
default: FTableColumnType;
|
|
17910
18111
|
validator(value: string): value is FTableColumnType;
|
|
17911
18112
|
};
|
|
17912
|
-
}>, FTableInterface, {}, {
|
|
18113
|
+
}>, Omit<FTableInterface, "textFieldTableMode">, {}, {
|
|
17913
18114
|
classes(): string[];
|
|
17914
18115
|
scope(): "row" | null;
|
|
17915
18116
|
tagName(): "td" | "th";
|
|
@@ -18418,6 +18619,14 @@ type: PropType<string[] | undefined>;
|
|
|
18418
18619
|
required: false;
|
|
18419
18620
|
default: () => undefined;
|
|
18420
18621
|
};
|
|
18622
|
+
/**
|
|
18623
|
+
* Set to `true`, empty string `""` or string `"disabled"` to disable this field.
|
|
18624
|
+
*/
|
|
18625
|
+
disabled: {
|
|
18626
|
+
type: BooleanConstructor;
|
|
18627
|
+
required: false;
|
|
18628
|
+
default: boolean;
|
|
18629
|
+
};
|
|
18421
18630
|
}>, {
|
|
18422
18631
|
textFieldTableMode: boolean;
|
|
18423
18632
|
viewValue: Ref<string, string>;
|
|
@@ -18568,6 +18777,14 @@ type: PropType<string[] | undefined>;
|
|
|
18568
18777
|
required: false;
|
|
18569
18778
|
default: () => undefined;
|
|
18570
18779
|
};
|
|
18780
|
+
/**
|
|
18781
|
+
* Set to `true`, empty string `""` or string `"disabled"` to disable this field.
|
|
18782
|
+
*/
|
|
18783
|
+
disabled: {
|
|
18784
|
+
type: BooleanConstructor;
|
|
18785
|
+
required: false;
|
|
18786
|
+
default: boolean;
|
|
18787
|
+
};
|
|
18571
18788
|
}>> & Readonly<{
|
|
18572
18789
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
18573
18790
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -18578,6 +18795,7 @@ type: string;
|
|
|
18578
18795
|
id: string;
|
|
18579
18796
|
modelValue: string | number;
|
|
18580
18797
|
inline: boolean;
|
|
18798
|
+
disabled: boolean;
|
|
18581
18799
|
options: string[] | undefined;
|
|
18582
18800
|
labelWidth: string;
|
|
18583
18801
|
formatter: FormatFunction<any>;
|
|
@@ -19655,8 +19873,8 @@ default(): BeforeNavigate;
|
|
|
19655
19873
|
}>> & Readonly<{
|
|
19656
19874
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
19657
19875
|
}>, {
|
|
19658
|
-
beforeSubmit: FValidationFormCallback;
|
|
19659
19876
|
id: string;
|
|
19877
|
+
beforeSubmit: FValidationFormCallback;
|
|
19660
19878
|
beforeValidation: FValidationFormCallback;
|
|
19661
19879
|
useErrorList: boolean;
|
|
19662
19880
|
errorListBullets: boolean;
|
|
@@ -20886,7 +21104,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
20886
21104
|
}>, {
|
|
20887
21105
|
anchor: HTMLElement | null | undefined;
|
|
20888
21106
|
viewport: HTMLElement;
|
|
20889
|
-
inline: "
|
|
21107
|
+
inline: "auto" | "always" | "never";
|
|
20890
21108
|
alwaysInline: boolean;
|
|
20891
21109
|
container: HTMLElement | null | undefined;
|
|
20892
21110
|
keyboardTrap: boolean;
|
|
@@ -21202,9 +21420,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
21202
21420
|
}>, {
|
|
21203
21421
|
anchor: HTMLElement | undefined;
|
|
21204
21422
|
modelValue: string;
|
|
21205
|
-
ariaLabel: string;
|
|
21206
21423
|
focusedItem: string;
|
|
21207
21424
|
enableKeyboardNavigation: boolean;
|
|
21425
|
+
ariaLabel: string;
|
|
21208
21426
|
selectedMenuItemScreenReaderText: string;
|
|
21209
21427
|
}, {}, {
|
|
21210
21428
|
IPopup: DefineComponent<ExtractPropTypes< {
|
|
@@ -21322,7 +21540,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
21322
21540
|
}>, {
|
|
21323
21541
|
anchor: HTMLElement | null | undefined;
|
|
21324
21542
|
viewport: HTMLElement;
|
|
21325
|
-
inline: "
|
|
21543
|
+
inline: "auto" | "always" | "never";
|
|
21326
21544
|
alwaysInline: boolean;
|
|
21327
21545
|
container: HTMLElement | null | undefined;
|
|
21328
21546
|
keyboardTrap: boolean;
|
|
@@ -21514,19 +21732,19 @@ export declare interface MountOptions {
|
|
|
21514
21732
|
*/
|
|
21515
21733
|
export declare interface NavigationMenuItem {
|
|
21516
21734
|
/**
|
|
21517
|
-
*
|
|
21735
|
+
* Text to display for the menu item.
|
|
21518
21736
|
*/
|
|
21519
21737
|
label: string;
|
|
21520
21738
|
/**
|
|
21521
|
-
*
|
|
21739
|
+
* Unique identifier for the menu item.
|
|
21522
21740
|
*/
|
|
21523
21741
|
route: string;
|
|
21524
21742
|
/**
|
|
21525
|
-
*
|
|
21743
|
+
* `href` attribute to add to menu item anchor element
|
|
21526
21744
|
*/
|
|
21527
21745
|
href?: string;
|
|
21528
21746
|
/**
|
|
21529
|
-
*
|
|
21747
|
+
* `target` attribute to add to menu item anchor element.
|
|
21530
21748
|
*/
|
|
21531
21749
|
target?: string;
|
|
21532
21750
|
}
|