@fkui/vue 5.44.0 → 5.45.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/index.cjs.js +3627 -3616
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/esm/index.esm.js +3629 -3618
- package/dist/esm/index.esm.js.map +1 -1
- package/dist/types/index.d.ts +447 -267
- 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;
|
|
@@ -630,244 +854,20 @@ shrink: {
|
|
|
630
854
|
type: BooleanConstructor;
|
|
631
855
|
default: boolean;
|
|
632
856
|
};
|
|
633
|
-
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: {
|
|
857
|
+
align: {
|
|
843
858
|
type: StringConstructor;
|
|
844
|
-
|
|
845
|
-
|
|
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;
|
|
859
|
+
default: string;
|
|
860
|
+
validator(val: string): boolean;
|
|
861
861
|
};
|
|
862
|
-
}>> & Readonly<{
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
id: string;
|
|
867
|
-
disabled: boolean;
|
|
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
|
|
|
@@ -1076,6 +1076,11 @@ type: PropType<string[] | undefined>;
|
|
|
1076
1076
|
required: false;
|
|
1077
1077
|
default: () => undefined;
|
|
1078
1078
|
};
|
|
1079
|
+
disabled: {
|
|
1080
|
+
type: BooleanConstructor;
|
|
1081
|
+
required: false;
|
|
1082
|
+
default: boolean;
|
|
1083
|
+
};
|
|
1079
1084
|
}>, {
|
|
1080
1085
|
textFieldTableMode: boolean;
|
|
1081
1086
|
viewValue: Ref<string, string>;
|
|
@@ -1169,6 +1174,11 @@ type: PropType<string[] | undefined>;
|
|
|
1169
1174
|
required: false;
|
|
1170
1175
|
default: () => undefined;
|
|
1171
1176
|
};
|
|
1177
|
+
disabled: {
|
|
1178
|
+
type: BooleanConstructor;
|
|
1179
|
+
required: false;
|
|
1180
|
+
default: boolean;
|
|
1181
|
+
};
|
|
1172
1182
|
}>> & Readonly<{
|
|
1173
1183
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1174
1184
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1179,6 +1189,7 @@ type: string;
|
|
|
1179
1189
|
id: string;
|
|
1180
1190
|
modelValue: string | number;
|
|
1181
1191
|
inline: boolean;
|
|
1192
|
+
disabled: boolean;
|
|
1182
1193
|
options: string[] | undefined;
|
|
1183
1194
|
labelWidth: string;
|
|
1184
1195
|
formatter: FormatFunction<any>;
|
|
@@ -1522,6 +1533,11 @@ type: PropType<string[] | undefined>;
|
|
|
1522
1533
|
required: false;
|
|
1523
1534
|
default: () => undefined;
|
|
1524
1535
|
};
|
|
1536
|
+
disabled: {
|
|
1537
|
+
type: BooleanConstructor;
|
|
1538
|
+
required: false;
|
|
1539
|
+
default: boolean;
|
|
1540
|
+
};
|
|
1525
1541
|
}>, {
|
|
1526
1542
|
textFieldTableMode: boolean;
|
|
1527
1543
|
viewValue: Ref<string, string>;
|
|
@@ -1615,6 +1631,11 @@ type: PropType<string[] | undefined>;
|
|
|
1615
1631
|
required: false;
|
|
1616
1632
|
default: () => undefined;
|
|
1617
1633
|
};
|
|
1634
|
+
disabled: {
|
|
1635
|
+
type: BooleanConstructor;
|
|
1636
|
+
required: false;
|
|
1637
|
+
default: boolean;
|
|
1638
|
+
};
|
|
1618
1639
|
}>> & Readonly<{
|
|
1619
1640
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1620
1641
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1625,6 +1646,7 @@ type: string;
|
|
|
1625
1646
|
id: string;
|
|
1626
1647
|
modelValue: string | number;
|
|
1627
1648
|
inline: boolean;
|
|
1649
|
+
disabled: boolean;
|
|
1628
1650
|
options: string[] | undefined;
|
|
1629
1651
|
labelWidth: string;
|
|
1630
1652
|
formatter: FormatFunction<any>;
|
|
@@ -2547,6 +2569,11 @@ type: PropType<string[] | undefined>;
|
|
|
2547
2569
|
required: false;
|
|
2548
2570
|
default: () => undefined;
|
|
2549
2571
|
};
|
|
2572
|
+
disabled: {
|
|
2573
|
+
type: BooleanConstructor;
|
|
2574
|
+
required: false;
|
|
2575
|
+
default: boolean;
|
|
2576
|
+
};
|
|
2550
2577
|
}>, {
|
|
2551
2578
|
textFieldTableMode: boolean;
|
|
2552
2579
|
viewValue: Ref<string, string>;
|
|
@@ -2640,6 +2667,11 @@ type: PropType<string[] | undefined>;
|
|
|
2640
2667
|
required: false;
|
|
2641
2668
|
default: () => undefined;
|
|
2642
2669
|
};
|
|
2670
|
+
disabled: {
|
|
2671
|
+
type: BooleanConstructor;
|
|
2672
|
+
required: false;
|
|
2673
|
+
default: boolean;
|
|
2674
|
+
};
|
|
2643
2675
|
}>> & Readonly<{
|
|
2644
2676
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2645
2677
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -2650,6 +2682,7 @@ type: string;
|
|
|
2650
2682
|
id: string;
|
|
2651
2683
|
modelValue: string | number;
|
|
2652
2684
|
inline: boolean;
|
|
2685
|
+
disabled: boolean;
|
|
2653
2686
|
options: string[] | undefined;
|
|
2654
2687
|
labelWidth: string;
|
|
2655
2688
|
formatter: FormatFunction<any>;
|
|
@@ -3169,8 +3202,8 @@ validator(value: string): boolean;
|
|
|
3169
3202
|
}>> & Readonly<{
|
|
3170
3203
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
3171
3204
|
}>, {
|
|
3172
|
-
focus: "on" | "off" | "open";
|
|
3173
3205
|
type: "" | "warning" | "error" | "information";
|
|
3206
|
+
focus: "on" | "off" | "open";
|
|
3174
3207
|
size: string;
|
|
3175
3208
|
isOpen: boolean;
|
|
3176
3209
|
fullscreen: boolean;
|
|
@@ -3437,7 +3470,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
3437
3470
|
}>, {
|
|
3438
3471
|
anchor: HTMLElement | null | undefined;
|
|
3439
3472
|
viewport: HTMLElement;
|
|
3440
|
-
inline: "
|
|
3473
|
+
inline: "auto" | "always" | "never";
|
|
3441
3474
|
alwaysInline: boolean;
|
|
3442
3475
|
container: HTMLElement | null | undefined;
|
|
3443
3476
|
keyboardTrap: boolean;
|
|
@@ -3780,9 +3813,9 @@ onCreated?: ((...args: any[]) => any) | undefined;
|
|
|
3780
3813
|
onUpdated?: ((...args: any[]) => any) | undefined;
|
|
3781
3814
|
onDeleted?: ((...args: any[]) => any) | undefined;
|
|
3782
3815
|
}>, {
|
|
3783
|
-
beforeSubmit: FValidationFormCallback;
|
|
3784
3816
|
beforeCreate: (() => ListItem) | undefined;
|
|
3785
3817
|
modelValue: ListArray<UnknownItem>;
|
|
3818
|
+
beforeSubmit: FValidationFormCallback;
|
|
3786
3819
|
beforeValidation: FValidationFormCallback;
|
|
3787
3820
|
onCancel: () => void;
|
|
3788
3821
|
primaryButtonRight: boolean;
|
|
@@ -3916,9 +3949,9 @@ value: Record<string, any>;
|
|
|
3916
3949
|
size: string;
|
|
3917
3950
|
isOpen: boolean;
|
|
3918
3951
|
fullscreen: boolean;
|
|
3919
|
-
beforeSubmit: FValidationFormCallback;
|
|
3920
3952
|
ariaCloseText: string;
|
|
3921
3953
|
buttons: FModalButtonDescriptor[];
|
|
3954
|
+
beforeSubmit: FValidationFormCallback;
|
|
3922
3955
|
beforeValidation: FValidationFormCallback;
|
|
3923
3956
|
useErrorList: boolean;
|
|
3924
3957
|
dataTest: string;
|
|
@@ -4010,8 +4043,8 @@ validator(value: string): boolean;
|
|
|
4010
4043
|
}>> & Readonly<{
|
|
4011
4044
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
4012
4045
|
}>, {
|
|
4013
|
-
focus: "on" | "off" | "open";
|
|
4014
4046
|
type: "" | "warning" | "error" | "information";
|
|
4047
|
+
focus: "on" | "off" | "open";
|
|
4015
4048
|
size: string;
|
|
4016
4049
|
isOpen: boolean;
|
|
4017
4050
|
fullscreen: boolean;
|
|
@@ -4148,8 +4181,8 @@ default(): BeforeNavigate;
|
|
|
4148
4181
|
}>> & Readonly<{
|
|
4149
4182
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
4150
4183
|
}>, {
|
|
4151
|
-
beforeSubmit: FValidationFormCallback;
|
|
4152
4184
|
id: string;
|
|
4185
|
+
beforeSubmit: FValidationFormCallback;
|
|
4153
4186
|
beforeValidation: FValidationFormCallback;
|
|
4154
4187
|
useErrorList: boolean;
|
|
4155
4188
|
errorListBullets: boolean;
|
|
@@ -4552,8 +4585,8 @@ validator(value: string): boolean;
|
|
|
4552
4585
|
}>> & Readonly<{
|
|
4553
4586
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
4554
4587
|
}>, {
|
|
4555
|
-
focus: "on" | "off" | "open";
|
|
4556
4588
|
type: "" | "warning" | "error" | "information";
|
|
4589
|
+
focus: "on" | "off" | "open";
|
|
4557
4590
|
size: string;
|
|
4558
4591
|
isOpen: boolean;
|
|
4559
4592
|
fullscreen: boolean;
|
|
@@ -4766,6 +4799,11 @@ type: PropType<string[] | undefined>;
|
|
|
4766
4799
|
required: false;
|
|
4767
4800
|
default: () => undefined;
|
|
4768
4801
|
};
|
|
4802
|
+
disabled: {
|
|
4803
|
+
type: BooleanConstructor;
|
|
4804
|
+
required: false;
|
|
4805
|
+
default: boolean;
|
|
4806
|
+
};
|
|
4769
4807
|
}>, {
|
|
4770
4808
|
textFieldTableMode: boolean;
|
|
4771
4809
|
viewValue: Ref<string, string>;
|
|
@@ -4859,6 +4897,11 @@ type: PropType<string[] | undefined>;
|
|
|
4859
4897
|
required: false;
|
|
4860
4898
|
default: () => undefined;
|
|
4861
4899
|
};
|
|
4900
|
+
disabled: {
|
|
4901
|
+
type: BooleanConstructor;
|
|
4902
|
+
required: false;
|
|
4903
|
+
default: boolean;
|
|
4904
|
+
};
|
|
4862
4905
|
}>> & Readonly<{
|
|
4863
4906
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
4864
4907
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -4869,6 +4912,7 @@ type: string;
|
|
|
4869
4912
|
id: string;
|
|
4870
4913
|
modelValue: string | number;
|
|
4871
4914
|
inline: boolean;
|
|
4915
|
+
disabled: boolean;
|
|
4872
4916
|
options: string[] | undefined;
|
|
4873
4917
|
labelWidth: string;
|
|
4874
4918
|
formatter: FormatFunction<any>;
|
|
@@ -5832,7 +5876,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
5832
5876
|
}>, {
|
|
5833
5877
|
anchor: HTMLElement | null | undefined;
|
|
5834
5878
|
viewport: HTMLElement;
|
|
5835
|
-
inline: "
|
|
5879
|
+
inline: "auto" | "always" | "never";
|
|
5836
5880
|
alwaysInline: boolean;
|
|
5837
5881
|
container: HTMLElement | null | undefined;
|
|
5838
5882
|
keyboardTrap: boolean;
|
|
@@ -5885,6 +5929,11 @@ type: PropType<string[] | undefined>;
|
|
|
5885
5929
|
required: false;
|
|
5886
5930
|
default: () => undefined;
|
|
5887
5931
|
};
|
|
5932
|
+
disabled: {
|
|
5933
|
+
type: BooleanConstructor;
|
|
5934
|
+
required: false;
|
|
5935
|
+
default: boolean;
|
|
5936
|
+
};
|
|
5888
5937
|
}>, {
|
|
5889
5938
|
textFieldTableMode: boolean;
|
|
5890
5939
|
viewValue: Ref<string, string>;
|
|
@@ -5978,6 +6027,11 @@ type: PropType<string[] | undefined>;
|
|
|
5978
6027
|
required: false;
|
|
5979
6028
|
default: () => undefined;
|
|
5980
6029
|
};
|
|
6030
|
+
disabled: {
|
|
6031
|
+
type: BooleanConstructor;
|
|
6032
|
+
required: false;
|
|
6033
|
+
default: boolean;
|
|
6034
|
+
};
|
|
5981
6035
|
}>> & Readonly<{
|
|
5982
6036
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
5983
6037
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -5988,6 +6042,7 @@ type: string;
|
|
|
5988
6042
|
id: string;
|
|
5989
6043
|
modelValue: string | number;
|
|
5990
6044
|
inline: boolean;
|
|
6045
|
+
disabled: boolean;
|
|
5991
6046
|
options: string[] | undefined;
|
|
5992
6047
|
labelWidth: string;
|
|
5993
6048
|
formatter: FormatFunction<any>;
|
|
@@ -6666,6 +6721,11 @@ type: PropType<string[] | undefined>;
|
|
|
6666
6721
|
required: false;
|
|
6667
6722
|
default: () => undefined;
|
|
6668
6723
|
};
|
|
6724
|
+
disabled: {
|
|
6725
|
+
type: BooleanConstructor;
|
|
6726
|
+
required: false;
|
|
6727
|
+
default: boolean;
|
|
6728
|
+
};
|
|
6669
6729
|
}>, {
|
|
6670
6730
|
textFieldTableMode: boolean;
|
|
6671
6731
|
viewValue: Ref<string, string>;
|
|
@@ -6759,6 +6819,11 @@ type: PropType<string[] | undefined>;
|
|
|
6759
6819
|
required: false;
|
|
6760
6820
|
default: () => undefined;
|
|
6761
6821
|
};
|
|
6822
|
+
disabled: {
|
|
6823
|
+
type: BooleanConstructor;
|
|
6824
|
+
required: false;
|
|
6825
|
+
default: boolean;
|
|
6826
|
+
};
|
|
6762
6827
|
}>> & Readonly<{
|
|
6763
6828
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
6764
6829
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -6769,6 +6834,7 @@ type: string;
|
|
|
6769
6834
|
id: string;
|
|
6770
6835
|
modelValue: string | number;
|
|
6771
6836
|
inline: boolean;
|
|
6837
|
+
disabled: boolean;
|
|
6772
6838
|
options: string[] | undefined;
|
|
6773
6839
|
labelWidth: string;
|
|
6774
6840
|
formatter: FormatFunction<any>;
|
|
@@ -8841,9 +8907,9 @@ value: Record<string, any>;
|
|
|
8841
8907
|
size: string;
|
|
8842
8908
|
isOpen: boolean;
|
|
8843
8909
|
fullscreen: boolean;
|
|
8844
|
-
beforeSubmit: FValidationFormCallback;
|
|
8845
8910
|
ariaCloseText: string;
|
|
8846
8911
|
buttons: FModalButtonDescriptor[];
|
|
8912
|
+
beforeSubmit: FValidationFormCallback;
|
|
8847
8913
|
beforeValidation: FValidationFormCallback;
|
|
8848
8914
|
useErrorList: boolean;
|
|
8849
8915
|
dataTest: string;
|
|
@@ -8935,8 +9001,8 @@ validator(value: string): boolean;
|
|
|
8935
9001
|
}>> & Readonly<{
|
|
8936
9002
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
8937
9003
|
}>, {
|
|
8938
|
-
focus: "on" | "off" | "open";
|
|
8939
9004
|
type: "" | "warning" | "error" | "information";
|
|
9005
|
+
focus: "on" | "off" | "open";
|
|
8940
9006
|
size: string;
|
|
8941
9007
|
isOpen: boolean;
|
|
8942
9008
|
fullscreen: boolean;
|
|
@@ -9073,8 +9139,8 @@ default(): BeforeNavigate;
|
|
|
9073
9139
|
}>> & Readonly<{
|
|
9074
9140
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
9075
9141
|
}>, {
|
|
9076
|
-
beforeSubmit: FValidationFormCallback;
|
|
9077
9142
|
id: string;
|
|
9143
|
+
beforeSubmit: FValidationFormCallback;
|
|
9078
9144
|
beforeValidation: FValidationFormCallback;
|
|
9079
9145
|
useErrorList: boolean;
|
|
9080
9146
|
errorListBullets: boolean;
|
|
@@ -10095,17 +10161,17 @@ onClick?: ((...args: any[]) => any) | undefined;
|
|
|
10095
10161
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
10096
10162
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
10097
10163
|
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
10098
|
-
onUnselect?: ((...args: any[]) => any) | undefined;
|
|
10099
10164
|
onCollapse?: ((...args: any[]) => any) | undefined;
|
|
10100
10165
|
onExpand?: ((...args: any[]) => any) | undefined;
|
|
10166
|
+
onUnselect?: ((...args: any[]) => any) | undefined;
|
|
10101
10167
|
}>, {
|
|
10102
10168
|
scroll: TableScroll;
|
|
10103
10169
|
modelValue: ListArray | undefined;
|
|
10104
10170
|
striped: boolean;
|
|
10105
|
-
selectable: boolean;
|
|
10106
10171
|
hover: boolean;
|
|
10107
10172
|
expandableAttribute: string;
|
|
10108
10173
|
expandableDescribedby: string;
|
|
10174
|
+
selectable: boolean;
|
|
10109
10175
|
}, {}, {
|
|
10110
10176
|
FCheckboxField: DefineComponent<ExtractPropTypes< {
|
|
10111
10177
|
disabled: {
|
|
@@ -11346,8 +11412,8 @@ validator(value: string): boolean;
|
|
|
11346
11412
|
}>> & Readonly<{
|
|
11347
11413
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
11348
11414
|
}>, {
|
|
11349
|
-
focus: "on" | "off" | "open";
|
|
11350
11415
|
type: "" | "warning" | "error" | "information";
|
|
11416
|
+
focus: "on" | "off" | "open";
|
|
11351
11417
|
size: string;
|
|
11352
11418
|
isOpen: boolean;
|
|
11353
11419
|
fullscreen: boolean;
|
|
@@ -11768,9 +11834,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
11768
11834
|
}>, {
|
|
11769
11835
|
anchor: HTMLElement | undefined;
|
|
11770
11836
|
modelValue: string;
|
|
11771
|
-
ariaLabel: string;
|
|
11772
11837
|
focusedItem: string;
|
|
11773
11838
|
enableKeyboardNavigation: boolean;
|
|
11839
|
+
ariaLabel: string;
|
|
11774
11840
|
selectedMenuItemScreenReaderText: string;
|
|
11775
11841
|
}, {}, {
|
|
11776
11842
|
IPopup: DefineComponent<ExtractPropTypes< {
|
|
@@ -11888,7 +11954,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
11888
11954
|
}>, {
|
|
11889
11955
|
anchor: HTMLElement | null | undefined;
|
|
11890
11956
|
viewport: HTMLElement;
|
|
11891
|
-
inline: "
|
|
11957
|
+
inline: "auto" | "always" | "never";
|
|
11892
11958
|
alwaysInline: boolean;
|
|
11893
11959
|
container: HTMLElement | null | undefined;
|
|
11894
11960
|
keyboardTrap: boolean;
|
|
@@ -11988,6 +12054,11 @@ type: PropType<string[] | undefined>;
|
|
|
11988
12054
|
required: false;
|
|
11989
12055
|
default: () => undefined;
|
|
11990
12056
|
};
|
|
12057
|
+
disabled: {
|
|
12058
|
+
type: BooleanConstructor;
|
|
12059
|
+
required: false;
|
|
12060
|
+
default: boolean;
|
|
12061
|
+
};
|
|
11991
12062
|
}>, {
|
|
11992
12063
|
textFieldTableMode: boolean;
|
|
11993
12064
|
viewValue: Ref<string, string>;
|
|
@@ -12081,6 +12152,11 @@ type: PropType<string[] | undefined>;
|
|
|
12081
12152
|
required: false;
|
|
12082
12153
|
default: () => undefined;
|
|
12083
12154
|
};
|
|
12155
|
+
disabled: {
|
|
12156
|
+
type: BooleanConstructor;
|
|
12157
|
+
required: false;
|
|
12158
|
+
default: boolean;
|
|
12159
|
+
};
|
|
12084
12160
|
}>> & Readonly<{
|
|
12085
12161
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
12086
12162
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -12091,6 +12167,7 @@ type: string;
|
|
|
12091
12167
|
id: string;
|
|
12092
12168
|
modelValue: string | number;
|
|
12093
12169
|
inline: boolean;
|
|
12170
|
+
disabled: boolean;
|
|
12094
12171
|
options: string[] | undefined;
|
|
12095
12172
|
labelWidth: string;
|
|
12096
12173
|
formatter: FormatFunction<any>;
|
|
@@ -12615,6 +12692,11 @@ type: PropType<string[] | undefined>;
|
|
|
12615
12692
|
required: false;
|
|
12616
12693
|
default: () => undefined;
|
|
12617
12694
|
};
|
|
12695
|
+
disabled: {
|
|
12696
|
+
type: BooleanConstructor;
|
|
12697
|
+
required: false;
|
|
12698
|
+
default: boolean;
|
|
12699
|
+
};
|
|
12618
12700
|
}>, {
|
|
12619
12701
|
textFieldTableMode: boolean;
|
|
12620
12702
|
viewValue: Ref<string, string>;
|
|
@@ -12708,6 +12790,11 @@ type: PropType<string[] | undefined>;
|
|
|
12708
12790
|
required: false;
|
|
12709
12791
|
default: () => undefined;
|
|
12710
12792
|
};
|
|
12793
|
+
disabled: {
|
|
12794
|
+
type: BooleanConstructor;
|
|
12795
|
+
required: false;
|
|
12796
|
+
default: boolean;
|
|
12797
|
+
};
|
|
12711
12798
|
}>> & Readonly<{
|
|
12712
12799
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
12713
12800
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -12718,6 +12805,7 @@ type: string;
|
|
|
12718
12805
|
id: string;
|
|
12719
12806
|
modelValue: string | number;
|
|
12720
12807
|
inline: boolean;
|
|
12808
|
+
disabled: boolean;
|
|
12721
12809
|
options: string[] | undefined;
|
|
12722
12810
|
labelWidth: string;
|
|
12723
12811
|
formatter: FormatFunction<any>;
|
|
@@ -13015,7 +13103,7 @@ export declare interface FormErrorList extends ErrorItem {
|
|
|
13015
13103
|
* @public
|
|
13016
13104
|
*/
|
|
13017
13105
|
export declare class FormErrorList implements FormErrorList {
|
|
13018
|
-
focusElementId?: string;
|
|
13106
|
+
focusElementId?: string | undefined;
|
|
13019
13107
|
id: string;
|
|
13020
13108
|
isValid: boolean;
|
|
13021
13109
|
numberOfTimesSubmitted: number;
|
|
@@ -13045,8 +13133,6 @@ export declare type FormModalMaybeOptions = Partial<FormModalModalOptions>;
|
|
|
13045
13133
|
export declare interface FormModalModalOptions {
|
|
13046
13134
|
/** Modal size */
|
|
13047
13135
|
size: "large" | "fullscreen";
|
|
13048
|
-
/** Modal beforeSubmit callback */
|
|
13049
|
-
beforeSubmit?: FValidationFormCallback;
|
|
13050
13136
|
/** Modal props */
|
|
13051
13137
|
props: Record<string, unknown | undefined>;
|
|
13052
13138
|
}
|
|
@@ -13449,6 +13535,11 @@ type: PropType<string[] | undefined>;
|
|
|
13449
13535
|
required: false;
|
|
13450
13536
|
default: () => undefined;
|
|
13451
13537
|
};
|
|
13538
|
+
disabled: {
|
|
13539
|
+
type: BooleanConstructor;
|
|
13540
|
+
required: false;
|
|
13541
|
+
default: boolean;
|
|
13542
|
+
};
|
|
13452
13543
|
}>, {
|
|
13453
13544
|
textFieldTableMode: boolean;
|
|
13454
13545
|
viewValue: Ref<string, string>;
|
|
@@ -13542,6 +13633,11 @@ type: PropType<string[] | undefined>;
|
|
|
13542
13633
|
required: false;
|
|
13543
13634
|
default: () => undefined;
|
|
13544
13635
|
};
|
|
13636
|
+
disabled: {
|
|
13637
|
+
type: BooleanConstructor;
|
|
13638
|
+
required: false;
|
|
13639
|
+
default: boolean;
|
|
13640
|
+
};
|
|
13545
13641
|
}>> & Readonly<{
|
|
13546
13642
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
13547
13643
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -13552,6 +13648,7 @@ type: string;
|
|
|
13552
13648
|
id: string;
|
|
13553
13649
|
modelValue: string | number;
|
|
13554
13650
|
inline: boolean;
|
|
13651
|
+
disabled: boolean;
|
|
13555
13652
|
options: string[] | undefined;
|
|
13556
13653
|
labelWidth: string;
|
|
13557
13654
|
formatter: FormatFunction<any>;
|
|
@@ -13917,6 +14014,11 @@ type: PropType<string[] | undefined>;
|
|
|
13917
14014
|
required: false;
|
|
13918
14015
|
default: () => undefined;
|
|
13919
14016
|
};
|
|
14017
|
+
disabled: {
|
|
14018
|
+
type: BooleanConstructor;
|
|
14019
|
+
required: false;
|
|
14020
|
+
default: boolean;
|
|
14021
|
+
};
|
|
13920
14022
|
}>, {
|
|
13921
14023
|
textFieldTableMode: boolean;
|
|
13922
14024
|
viewValue: Ref<string, string>;
|
|
@@ -14010,6 +14112,11 @@ type: PropType<string[] | undefined>;
|
|
|
14010
14112
|
required: false;
|
|
14011
14113
|
default: () => undefined;
|
|
14012
14114
|
};
|
|
14115
|
+
disabled: {
|
|
14116
|
+
type: BooleanConstructor;
|
|
14117
|
+
required: false;
|
|
14118
|
+
default: boolean;
|
|
14119
|
+
};
|
|
14013
14120
|
}>> & Readonly<{
|
|
14014
14121
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
14015
14122
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -14020,6 +14127,7 @@ type: string;
|
|
|
14020
14127
|
id: string;
|
|
14021
14128
|
modelValue: string | number;
|
|
14022
14129
|
inline: boolean;
|
|
14130
|
+
disabled: boolean;
|
|
14023
14131
|
options: string[] | undefined;
|
|
14024
14132
|
labelWidth: string;
|
|
14025
14133
|
formatter: FormatFunction<any>;
|
|
@@ -14430,6 +14538,11 @@ type: PropType<string[] | undefined>;
|
|
|
14430
14538
|
required: false;
|
|
14431
14539
|
default: () => undefined;
|
|
14432
14540
|
};
|
|
14541
|
+
disabled: {
|
|
14542
|
+
type: BooleanConstructor;
|
|
14543
|
+
required: false;
|
|
14544
|
+
default: boolean;
|
|
14545
|
+
};
|
|
14433
14546
|
}>, {
|
|
14434
14547
|
textFieldTableMode: boolean;
|
|
14435
14548
|
viewValue: Ref<string, string>;
|
|
@@ -14523,6 +14636,11 @@ type: PropType<string[] | undefined>;
|
|
|
14523
14636
|
required: false;
|
|
14524
14637
|
default: () => undefined;
|
|
14525
14638
|
};
|
|
14639
|
+
disabled: {
|
|
14640
|
+
type: BooleanConstructor;
|
|
14641
|
+
required: false;
|
|
14642
|
+
default: boolean;
|
|
14643
|
+
};
|
|
14526
14644
|
}>> & Readonly<{
|
|
14527
14645
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
14528
14646
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -14533,6 +14651,7 @@ type: string;
|
|
|
14533
14651
|
id: string;
|
|
14534
14652
|
modelValue: string | number;
|
|
14535
14653
|
inline: boolean;
|
|
14654
|
+
disabled: boolean;
|
|
14536
14655
|
options: string[] | undefined;
|
|
14537
14656
|
labelWidth: string;
|
|
14538
14657
|
formatter: FormatFunction<any>;
|
|
@@ -14869,6 +14988,11 @@ type: PropType<string[] | undefined>;
|
|
|
14869
14988
|
required: false;
|
|
14870
14989
|
default: () => undefined;
|
|
14871
14990
|
};
|
|
14991
|
+
disabled: {
|
|
14992
|
+
type: BooleanConstructor;
|
|
14993
|
+
required: false;
|
|
14994
|
+
default: boolean;
|
|
14995
|
+
};
|
|
14872
14996
|
}>, {
|
|
14873
14997
|
textFieldTableMode: boolean;
|
|
14874
14998
|
viewValue: Ref<string, string>;
|
|
@@ -14962,6 +15086,11 @@ type: PropType<string[] | undefined>;
|
|
|
14962
15086
|
required: false;
|
|
14963
15087
|
default: () => undefined;
|
|
14964
15088
|
};
|
|
15089
|
+
disabled: {
|
|
15090
|
+
type: BooleanConstructor;
|
|
15091
|
+
required: false;
|
|
15092
|
+
default: boolean;
|
|
15093
|
+
};
|
|
14965
15094
|
}>> & Readonly<{
|
|
14966
15095
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
14967
15096
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -14972,6 +15101,7 @@ type: string;
|
|
|
14972
15101
|
id: string;
|
|
14973
15102
|
modelValue: string | number;
|
|
14974
15103
|
inline: boolean;
|
|
15104
|
+
disabled: boolean;
|
|
14975
15105
|
options: string[] | undefined;
|
|
14976
15106
|
labelWidth: string;
|
|
14977
15107
|
formatter: FormatFunction<any>;
|
|
@@ -15317,6 +15447,11 @@ type: PropType<string[] | undefined>;
|
|
|
15317
15447
|
required: false;
|
|
15318
15448
|
default: () => undefined;
|
|
15319
15449
|
};
|
|
15450
|
+
disabled: {
|
|
15451
|
+
type: BooleanConstructor;
|
|
15452
|
+
required: false;
|
|
15453
|
+
default: boolean;
|
|
15454
|
+
};
|
|
15320
15455
|
}>, {
|
|
15321
15456
|
textFieldTableMode: boolean;
|
|
15322
15457
|
viewValue: Ref<string, string>;
|
|
@@ -15410,6 +15545,11 @@ type: PropType<string[] | undefined>;
|
|
|
15410
15545
|
required: false;
|
|
15411
15546
|
default: () => undefined;
|
|
15412
15547
|
};
|
|
15548
|
+
disabled: {
|
|
15549
|
+
type: BooleanConstructor;
|
|
15550
|
+
required: false;
|
|
15551
|
+
default: boolean;
|
|
15552
|
+
};
|
|
15413
15553
|
}>> & Readonly<{
|
|
15414
15554
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
15415
15555
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -15420,6 +15560,7 @@ type: string;
|
|
|
15420
15560
|
id: string;
|
|
15421
15561
|
modelValue: string | number;
|
|
15422
15562
|
inline: boolean;
|
|
15563
|
+
disabled: boolean;
|
|
15423
15564
|
options: string[] | undefined;
|
|
15424
15565
|
labelWidth: string;
|
|
15425
15566
|
formatter: FormatFunction<any>;
|
|
@@ -16096,6 +16237,11 @@ type: PropType<string[] | undefined>;
|
|
|
16096
16237
|
required: false;
|
|
16097
16238
|
default: () => undefined;
|
|
16098
16239
|
};
|
|
16240
|
+
disabled: {
|
|
16241
|
+
type: BooleanConstructor;
|
|
16242
|
+
required: false;
|
|
16243
|
+
default: boolean;
|
|
16244
|
+
};
|
|
16099
16245
|
}>, {
|
|
16100
16246
|
textFieldTableMode: boolean;
|
|
16101
16247
|
viewValue: Ref<string, string>;
|
|
@@ -16189,6 +16335,11 @@ type: PropType<string[] | undefined>;
|
|
|
16189
16335
|
required: false;
|
|
16190
16336
|
default: () => undefined;
|
|
16191
16337
|
};
|
|
16338
|
+
disabled: {
|
|
16339
|
+
type: BooleanConstructor;
|
|
16340
|
+
required: false;
|
|
16341
|
+
default: boolean;
|
|
16342
|
+
};
|
|
16192
16343
|
}>> & Readonly<{
|
|
16193
16344
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
16194
16345
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -16199,6 +16350,7 @@ type: string;
|
|
|
16199
16350
|
id: string;
|
|
16200
16351
|
modelValue: string | number;
|
|
16201
16352
|
inline: boolean;
|
|
16353
|
+
disabled: boolean;
|
|
16202
16354
|
options: string[] | undefined;
|
|
16203
16355
|
labelWidth: string;
|
|
16204
16356
|
formatter: FormatFunction<any>;
|
|
@@ -16589,7 +16741,7 @@ labelClass(): string;
|
|
|
16589
16741
|
labelWrapperClass(): string | undefined;
|
|
16590
16742
|
selectWrapperClass(): string | undefined;
|
|
16591
16743
|
vModel: {
|
|
16592
|
-
get(): string | number | boolean | Record<string, any> |
|
|
16744
|
+
get(): string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
16593
16745
|
set(value: unknown): void;
|
|
16594
16746
|
};
|
|
16595
16747
|
}, {
|
|
@@ -16652,7 +16804,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
16652
16804
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
16653
16805
|
}>, {
|
|
16654
16806
|
id: string;
|
|
16655
|
-
modelValue: string | number | boolean | Record<string, any
|
|
16807
|
+
modelValue: string | number | boolean | unknown[] | Record<string, any>;
|
|
16656
16808
|
inline: boolean;
|
|
16657
16809
|
labelWidth: string;
|
|
16658
16810
|
selectWidth: string;
|
|
@@ -16974,7 +17126,7 @@ labelClass(): string;
|
|
|
16974
17126
|
labelWrapperClass(): string | undefined;
|
|
16975
17127
|
selectWrapperClass(): string | undefined;
|
|
16976
17128
|
vModel: {
|
|
16977
|
-
get(): string | number | boolean | Record<string, any> |
|
|
17129
|
+
get(): string | number | boolean | unknown[] | Record<string, any> | undefined;
|
|
16978
17130
|
set(value: unknown): void;
|
|
16979
17131
|
};
|
|
16980
17132
|
}, {
|
|
@@ -17010,7 +17162,7 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
17010
17162
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17011
17163
|
}>, {
|
|
17012
17164
|
id: string;
|
|
17013
|
-
modelValue: string | number | boolean | Record<string, any
|
|
17165
|
+
modelValue: string | number | boolean | unknown[] | Record<string, any>;
|
|
17014
17166
|
inline: boolean;
|
|
17015
17167
|
labelWidth: string;
|
|
17016
17168
|
selectWidth: string;
|
|
@@ -17194,6 +17346,11 @@ type: PropType<string[] | undefined>;
|
|
|
17194
17346
|
required: false;
|
|
17195
17347
|
default: () => undefined;
|
|
17196
17348
|
};
|
|
17349
|
+
disabled: {
|
|
17350
|
+
type: BooleanConstructor;
|
|
17351
|
+
required: false;
|
|
17352
|
+
default: boolean;
|
|
17353
|
+
};
|
|
17197
17354
|
}>, {
|
|
17198
17355
|
textFieldTableMode: boolean;
|
|
17199
17356
|
viewValue: Ref<string, string>;
|
|
@@ -17287,6 +17444,11 @@ type: PropType<string[] | undefined>;
|
|
|
17287
17444
|
required: false;
|
|
17288
17445
|
default: () => undefined;
|
|
17289
17446
|
};
|
|
17447
|
+
disabled: {
|
|
17448
|
+
type: BooleanConstructor;
|
|
17449
|
+
required: false;
|
|
17450
|
+
default: boolean;
|
|
17451
|
+
};
|
|
17290
17452
|
}>> & Readonly<{
|
|
17291
17453
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
17292
17454
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -17297,6 +17459,7 @@ type: string;
|
|
|
17297
17459
|
id: string;
|
|
17298
17460
|
modelValue: string | number;
|
|
17299
17461
|
inline: boolean;
|
|
17462
|
+
disabled: boolean;
|
|
17300
17463
|
options: string[] | undefined;
|
|
17301
17464
|
labelWidth: string;
|
|
17302
17465
|
formatter: FormatFunction<any>;
|
|
@@ -18418,6 +18581,14 @@ type: PropType<string[] | undefined>;
|
|
|
18418
18581
|
required: false;
|
|
18419
18582
|
default: () => undefined;
|
|
18420
18583
|
};
|
|
18584
|
+
/**
|
|
18585
|
+
* Set to `true`, empty string `""` or string `"disabled"` to disable this field.
|
|
18586
|
+
*/
|
|
18587
|
+
disabled: {
|
|
18588
|
+
type: BooleanConstructor;
|
|
18589
|
+
required: false;
|
|
18590
|
+
default: boolean;
|
|
18591
|
+
};
|
|
18421
18592
|
}>, {
|
|
18422
18593
|
textFieldTableMode: boolean;
|
|
18423
18594
|
viewValue: Ref<string, string>;
|
|
@@ -18568,6 +18739,14 @@ type: PropType<string[] | undefined>;
|
|
|
18568
18739
|
required: false;
|
|
18569
18740
|
default: () => undefined;
|
|
18570
18741
|
};
|
|
18742
|
+
/**
|
|
18743
|
+
* Set to `true`, empty string `""` or string `"disabled"` to disable this field.
|
|
18744
|
+
*/
|
|
18745
|
+
disabled: {
|
|
18746
|
+
type: BooleanConstructor;
|
|
18747
|
+
required: false;
|
|
18748
|
+
default: boolean;
|
|
18749
|
+
};
|
|
18571
18750
|
}>> & Readonly<{
|
|
18572
18751
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
18573
18752
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -18578,6 +18757,7 @@ type: string;
|
|
|
18578
18757
|
id: string;
|
|
18579
18758
|
modelValue: string | number;
|
|
18580
18759
|
inline: boolean;
|
|
18760
|
+
disabled: boolean;
|
|
18581
18761
|
options: string[] | undefined;
|
|
18582
18762
|
labelWidth: string;
|
|
18583
18763
|
formatter: FormatFunction<any>;
|
|
@@ -19655,8 +19835,8 @@ default(): BeforeNavigate;
|
|
|
19655
19835
|
}>> & Readonly<{
|
|
19656
19836
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
19657
19837
|
}>, {
|
|
19658
|
-
beforeSubmit: FValidationFormCallback;
|
|
19659
19838
|
id: string;
|
|
19839
|
+
beforeSubmit: FValidationFormCallback;
|
|
19660
19840
|
beforeValidation: FValidationFormCallback;
|
|
19661
19841
|
useErrorList: boolean;
|
|
19662
19842
|
errorListBullets: boolean;
|
|
@@ -20886,7 +21066,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
20886
21066
|
}>, {
|
|
20887
21067
|
anchor: HTMLElement | null | undefined;
|
|
20888
21068
|
viewport: HTMLElement;
|
|
20889
|
-
inline: "
|
|
21069
|
+
inline: "auto" | "always" | "never";
|
|
20890
21070
|
alwaysInline: boolean;
|
|
20891
21071
|
container: HTMLElement | null | undefined;
|
|
20892
21072
|
keyboardTrap: boolean;
|
|
@@ -21202,9 +21382,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
21202
21382
|
}>, {
|
|
21203
21383
|
anchor: HTMLElement | undefined;
|
|
21204
21384
|
modelValue: string;
|
|
21205
|
-
ariaLabel: string;
|
|
21206
21385
|
focusedItem: string;
|
|
21207
21386
|
enableKeyboardNavigation: boolean;
|
|
21387
|
+
ariaLabel: string;
|
|
21208
21388
|
selectedMenuItemScreenReaderText: string;
|
|
21209
21389
|
}, {}, {
|
|
21210
21390
|
IPopup: DefineComponent<ExtractPropTypes< {
|
|
@@ -21322,7 +21502,7 @@ onOpen?: ((...args: any[]) => any) | undefined;
|
|
|
21322
21502
|
}>, {
|
|
21323
21503
|
anchor: HTMLElement | null | undefined;
|
|
21324
21504
|
viewport: HTMLElement;
|
|
21325
|
-
inline: "
|
|
21505
|
+
inline: "auto" | "always" | "never";
|
|
21326
21506
|
alwaysInline: boolean;
|
|
21327
21507
|
container: HTMLElement | null | undefined;
|
|
21328
21508
|
keyboardTrap: boolean;
|
|
@@ -21514,19 +21694,19 @@ export declare interface MountOptions {
|
|
|
21514
21694
|
*/
|
|
21515
21695
|
export declare interface NavigationMenuItem {
|
|
21516
21696
|
/**
|
|
21517
|
-
*
|
|
21697
|
+
* Text to display for the menu item.
|
|
21518
21698
|
*/
|
|
21519
21699
|
label: string;
|
|
21520
21700
|
/**
|
|
21521
|
-
*
|
|
21701
|
+
* Unique identifier for the menu item.
|
|
21522
21702
|
*/
|
|
21523
21703
|
route: string;
|
|
21524
21704
|
/**
|
|
21525
|
-
*
|
|
21705
|
+
* `href` attribute to add to menu item anchor element
|
|
21526
21706
|
*/
|
|
21527
21707
|
href?: string;
|
|
21528
21708
|
/**
|
|
21529
|
-
*
|
|
21709
|
+
* `target` attribute to add to menu item anchor element.
|
|
21530
21710
|
*/
|
|
21531
21711
|
target?: string;
|
|
21532
21712
|
}
|