@leaflink/stash 50.0.5 → 50.0.7

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.
Files changed (37) hide show
  1. package/dist/CurrencyInput.js +55 -50
  2. package/dist/CurrencyInput.js.map +1 -1
  3. package/dist/CurrencyInput.vue.d.ts +31 -6
  4. package/dist/DatePicker.js +7 -7
  5. package/dist/DatePicker.js.map +1 -1
  6. package/dist/Field.js +1 -1
  7. package/dist/Field.vue.d.ts +11 -0
  8. package/dist/Field.vue_vue_type_script_setup_true_lang-DEizIcDo.js +88 -0
  9. package/dist/Field.vue_vue_type_script_setup_true_lang-DEizIcDo.js.map +1 -0
  10. package/dist/FilterSelect.js +67 -56
  11. package/dist/FilterSelect.js.map +1 -1
  12. package/dist/FilterSelect.vue.d.ts +54 -2
  13. package/dist/Filters.vue.d.ts +162 -96
  14. package/dist/Input.js +97 -91
  15. package/dist/Input.js.map +1 -1
  16. package/dist/Input.vue.d.ts +31 -21
  17. package/dist/InputOptions.js +83 -62
  18. package/dist/InputOptions.js.map +1 -1
  19. package/dist/InputOptions.vue.d.ts +49 -16
  20. package/dist/ListView.vue.d.ts +231 -134
  21. package/dist/RadioGroup.js +67 -70
  22. package/dist/RadioGroup.js.map +1 -1
  23. package/dist/RadioGroup.vue.d.ts +54 -45
  24. package/dist/Select.js +350 -336
  25. package/dist/Select.js.map +1 -1
  26. package/dist/Select.vue.d.ts +54 -47
  27. package/dist/TextEditor.js +671 -684
  28. package/dist/TextEditor.js.map +1 -1
  29. package/dist/TextEditor.vue.d.ts +54 -61
  30. package/dist/Textarea.js +65 -59
  31. package/dist/Textarea.js.map +1 -1
  32. package/dist/Textarea.vue.d.ts +50 -32
  33. package/dist/components.css +2 -2
  34. package/package.json +1 -1
  35. package/styles/backwards-compat.css +3 -3
  36. package/dist/Field.vue_vue_type_script_setup_true_lang-DjxUvSRF.js +0 -95
  37. package/dist/Field.vue_vue_type_script_setup_true_lang-DjxUvSRF.js.map +0 -1
@@ -494,26 +494,36 @@ default: string;
494
494
  };
495
495
  disabled: {
496
496
  type: PropType<boolean>;
497
- default: boolean;
497
+ };
498
+ fieldset: {
499
+ type: PropType<boolean>;
498
500
  };
499
501
  label: {
500
502
  type: PropType<string>;
501
- default: undefined;
502
503
  };
503
504
  id: {
504
505
  type: PropType<string>;
505
- default: undefined;
506
+ };
507
+ isRequired: {
508
+ type: PropType<boolean>;
509
+ };
510
+ isDisabled: {
511
+ type: PropType<boolean>;
506
512
  };
507
513
  addBottomSpace: {
508
514
  type: PropType<boolean>;
509
515
  };
510
516
  errorText: {
511
517
  type: PropType<string>;
512
- default: undefined;
513
518
  };
514
519
  hintText: {
515
520
  type: PropType<string>;
516
- default: undefined;
521
+ };
522
+ errorId: {
523
+ type: PropType<string>;
524
+ };
525
+ isReadOnly: {
526
+ type: PropType<boolean>;
517
527
  };
518
528
  showOptionalInLabel: {
519
529
  type: PropType<boolean>;
@@ -548,11 +558,6 @@ focus: (evt: Event) => void;
548
558
  blur: (evt: Event) => void;
549
559
  }, PublicProps, {
550
560
  type: string;
551
- disabled: boolean;
552
- label: string;
553
- id: string;
554
- errorText: string;
555
- hintText: string;
556
561
  placeholder: string;
557
562
  modelValue: string | number;
558
563
  value: string | number | null;
@@ -571,26 +576,36 @@ default: string;
571
576
  };
572
577
  disabled: {
573
578
  type: PropType<boolean>;
574
- default: boolean;
579
+ };
580
+ fieldset: {
581
+ type: PropType<boolean>;
575
582
  };
576
583
  label: {
577
584
  type: PropType<string>;
578
- default: undefined;
579
585
  };
580
586
  id: {
581
587
  type: PropType<string>;
582
- default: undefined;
588
+ };
589
+ isRequired: {
590
+ type: PropType<boolean>;
591
+ };
592
+ isDisabled: {
593
+ type: PropType<boolean>;
583
594
  };
584
595
  addBottomSpace: {
585
596
  type: PropType<boolean>;
586
597
  };
587
598
  errorText: {
588
599
  type: PropType<string>;
589
- default: undefined;
590
600
  };
591
601
  hintText: {
592
602
  type: PropType<string>;
593
- default: undefined;
603
+ };
604
+ errorId: {
605
+ type: PropType<string>;
606
+ };
607
+ isReadOnly: {
608
+ type: PropType<boolean>;
594
609
  };
595
610
  showOptionalInLabel: {
596
611
  type: PropType<boolean>;
@@ -620,11 +635,6 @@ onFocus?: ((evt: Event) => any) | undefined;
620
635
  inputEl: Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
621
636
  }, {}, {}, {}, {
622
637
  type: string;
623
- disabled: boolean;
624
- label: string;
625
- id: string;
626
- errorText: string;
627
- hintText: string;
628
638
  placeholder: string;
629
639
  modelValue: string | number;
630
640
  value: string | number | null;
@@ -640,26 +650,36 @@ default: string;
640
650
  };
641
651
  disabled: {
642
652
  type: PropType<boolean>;
643
- default: boolean;
653
+ };
654
+ fieldset: {
655
+ type: PropType<boolean>;
644
656
  };
645
657
  label: {
646
658
  type: PropType<string>;
647
- default: undefined;
648
659
  };
649
660
  id: {
650
661
  type: PropType<string>;
651
- default: undefined;
662
+ };
663
+ isRequired: {
664
+ type: PropType<boolean>;
665
+ };
666
+ isDisabled: {
667
+ type: PropType<boolean>;
652
668
  };
653
669
  addBottomSpace: {
654
670
  type: PropType<boolean>;
655
671
  };
656
672
  errorText: {
657
673
  type: PropType<string>;
658
- default: undefined;
659
674
  };
660
675
  hintText: {
661
676
  type: PropType<string>;
662
- default: undefined;
677
+ };
678
+ errorId: {
679
+ type: PropType<string>;
680
+ };
681
+ isReadOnly: {
682
+ type: PropType<boolean>;
663
683
  };
664
684
  showOptionalInLabel: {
665
685
  type: PropType<boolean>;
@@ -694,11 +714,6 @@ focus: (evt: Event) => void;
694
714
  blur: (evt: Event) => void;
695
715
  }, string, {
696
716
  type: string;
697
- disabled: boolean;
698
- label: string;
699
- id: string;
700
- errorText: string;
701
- hintText: string;
702
717
  placeholder: string;
703
718
  modelValue: string | number;
704
719
  value: string | number | null;
@@ -718,19 +733,39 @@ default: string;
718
733
  };
719
734
  disabled: {
720
735
  type: PropType<boolean>;
721
- default: boolean;
736
+ };
737
+ fieldset: {
738
+ type: PropType<boolean>;
722
739
  };
723
740
  label: {
724
741
  type: PropType<string>;
725
- default: undefined;
742
+ };
743
+ id: {
744
+ type: PropType<string>;
745
+ };
746
+ isRequired: {
747
+ type: PropType<boolean>;
748
+ };
749
+ isDisabled: {
750
+ type: PropType<boolean>;
751
+ };
752
+ addBottomSpace: {
753
+ type: PropType<boolean>;
726
754
  };
727
755
  errorText: {
728
756
  type: PropType<string>;
729
- default: undefined;
730
757
  };
731
758
  hintText: {
732
759
  type: PropType<string>;
733
- default: undefined;
760
+ };
761
+ errorId: {
762
+ type: PropType<string>;
763
+ };
764
+ isReadOnly: {
765
+ type: PropType<boolean>;
766
+ };
767
+ showOptionalInLabel: {
768
+ type: PropType<boolean>;
734
769
  };
735
770
  placeholder: {
736
771
  type: PropType<string>;
@@ -782,10 +817,6 @@ type: "input" | "select";
782
817
  }) => void;
783
818
  }, PublicProps, {
784
819
  type: string;
785
- disabled: boolean;
786
- label: string;
787
- errorText: string;
788
- hintText: string;
789
820
  placeholder: string;
790
821
  options: any[];
791
822
  modelValue: {
@@ -807,19 +838,39 @@ default: string;
807
838
  };
808
839
  disabled: {
809
840
  type: PropType<boolean>;
810
- default: boolean;
841
+ };
842
+ fieldset: {
843
+ type: PropType<boolean>;
811
844
  };
812
845
  label: {
813
846
  type: PropType<string>;
814
- default: undefined;
847
+ };
848
+ id: {
849
+ type: PropType<string>;
850
+ };
851
+ isRequired: {
852
+ type: PropType<boolean>;
853
+ };
854
+ isDisabled: {
855
+ type: PropType<boolean>;
856
+ };
857
+ addBottomSpace: {
858
+ type: PropType<boolean>;
815
859
  };
816
860
  errorText: {
817
861
  type: PropType<string>;
818
- default: undefined;
819
862
  };
820
863
  hintText: {
821
864
  type: PropType<string>;
822
- default: undefined;
865
+ };
866
+ errorId: {
867
+ type: PropType<string>;
868
+ };
869
+ isReadOnly: {
870
+ type: PropType<boolean>;
871
+ };
872
+ showOptionalInLabel: {
873
+ type: PropType<boolean>;
823
874
  };
824
875
  placeholder: {
825
876
  type: PropType<string>;
@@ -858,10 +909,6 @@ type: "input" | "select";
858
909
  }) => any) | undefined;
859
910
  }>, {}, {}, {}, {}, {
860
911
  type: string;
861
- disabled: boolean;
862
- label: string;
863
- errorText: string;
864
- hintText: string;
865
912
  placeholder: string;
866
913
  options: any[];
867
914
  modelValue: {
@@ -880,19 +927,39 @@ default: string;
880
927
  };
881
928
  disabled: {
882
929
  type: PropType<boolean>;
883
- default: boolean;
930
+ };
931
+ fieldset: {
932
+ type: PropType<boolean>;
884
933
  };
885
934
  label: {
886
935
  type: PropType<string>;
887
- default: undefined;
936
+ };
937
+ id: {
938
+ type: PropType<string>;
939
+ };
940
+ isRequired: {
941
+ type: PropType<boolean>;
942
+ };
943
+ isDisabled: {
944
+ type: PropType<boolean>;
945
+ };
946
+ addBottomSpace: {
947
+ type: PropType<boolean>;
888
948
  };
889
949
  errorText: {
890
950
  type: PropType<string>;
891
- default: undefined;
892
951
  };
893
952
  hintText: {
894
953
  type: PropType<string>;
895
- default: undefined;
954
+ };
955
+ errorId: {
956
+ type: PropType<string>;
957
+ };
958
+ isReadOnly: {
959
+ type: PropType<boolean>;
960
+ };
961
+ showOptionalInLabel: {
962
+ type: PropType<boolean>;
896
963
  };
897
964
  placeholder: {
898
965
  type: PropType<string>;
@@ -944,10 +1011,6 @@ type: "input" | "select";
944
1011
  }) => void;
945
1012
  }, string, {
946
1013
  type: string;
947
- disabled: boolean;
948
- label: string;
949
- errorText: string;
950
- hintText: string;
951
1014
  placeholder: string;
952
1015
  options: any[];
953
1016
  modelValue: {
@@ -1029,15 +1092,15 @@ default: undefined;
1029
1092
  };
1030
1093
  disabled: {
1031
1094
  type: PropType<boolean>;
1032
- default: boolean;
1095
+ };
1096
+ fieldset: {
1097
+ type: PropType<boolean>;
1033
1098
  };
1034
1099
  label: {
1035
1100
  type: PropType<string>;
1036
- default: string;
1037
1101
  };
1038
1102
  id: {
1039
1103
  type: PropType<string>;
1040
- default: string;
1041
1104
  };
1042
1105
  icon: {
1043
1106
  type: PropType<string | boolean>;
@@ -1047,21 +1110,29 @@ trackBy: {
1047
1110
  type: PropType<string>;
1048
1111
  default: string;
1049
1112
  };
1113
+ isRequired: {
1114
+ type: PropType<boolean>;
1115
+ };
1116
+ isDisabled: {
1117
+ type: PropType<boolean>;
1118
+ };
1050
1119
  addBottomSpace: {
1051
1120
  type: PropType<boolean>;
1052
- default: boolean;
1053
1121
  };
1054
1122
  errorText: {
1055
1123
  type: PropType<string>;
1056
- default: string;
1057
1124
  };
1058
1125
  hintText: {
1059
1126
  type: PropType<string>;
1060
- default: string;
1127
+ };
1128
+ errorId: {
1129
+ type: PropType<string>;
1130
+ };
1131
+ isReadOnly: {
1132
+ type: PropType<boolean>;
1061
1133
  };
1062
1134
  showOptionalInLabel: {
1063
1135
  type: PropType<boolean>;
1064
- default: boolean;
1065
1136
  };
1066
1137
  placeholder: {
1067
1138
  type: PropType<string>;
@@ -1181,15 +1252,8 @@ closed: (selectedOptions: any) => void;
1181
1252
  lazy: () => any[];
1182
1253
  error: string;
1183
1254
  name: string;
1184
- disabled: boolean;
1185
- label: string;
1186
- id: string;
1187
1255
  icon: string | boolean;
1188
1256
  trackBy: string;
1189
- addBottomSpace: boolean;
1190
- errorText: string;
1191
- hintText: string;
1192
- showOptionalInLabel: boolean;
1193
1257
  placeholder: string;
1194
1258
  hint: string;
1195
1259
  preventEmpty: boolean;
@@ -1237,15 +1301,15 @@ default: undefined;
1237
1301
  };
1238
1302
  disabled: {
1239
1303
  type: PropType<boolean>;
1240
- default: boolean;
1304
+ };
1305
+ fieldset: {
1306
+ type: PropType<boolean>;
1241
1307
  };
1242
1308
  label: {
1243
1309
  type: PropType<string>;
1244
- default: string;
1245
1310
  };
1246
1311
  id: {
1247
1312
  type: PropType<string>;
1248
- default: string;
1249
1313
  };
1250
1314
  icon: {
1251
1315
  type: PropType<string | boolean>;
@@ -1255,21 +1319,29 @@ trackBy: {
1255
1319
  type: PropType<string>;
1256
1320
  default: string;
1257
1321
  };
1322
+ isRequired: {
1323
+ type: PropType<boolean>;
1324
+ };
1325
+ isDisabled: {
1326
+ type: PropType<boolean>;
1327
+ };
1258
1328
  addBottomSpace: {
1259
1329
  type: PropType<boolean>;
1260
- default: boolean;
1261
1330
  };
1262
1331
  errorText: {
1263
1332
  type: PropType<string>;
1264
- default: string;
1265
1333
  };
1266
1334
  hintText: {
1267
1335
  type: PropType<string>;
1268
- default: string;
1336
+ };
1337
+ errorId: {
1338
+ type: PropType<string>;
1339
+ };
1340
+ isReadOnly: {
1341
+ type: PropType<boolean>;
1269
1342
  };
1270
1343
  showOptionalInLabel: {
1271
1344
  type: PropType<boolean>;
1272
- default: boolean;
1273
1345
  };
1274
1346
  placeholder: {
1275
1347
  type: PropType<string>;
@@ -1382,15 +1454,8 @@ onClosed?: ((selectedOptions: any) => any) | undefined;
1382
1454
  lazy: () => any[];
1383
1455
  error: string;
1384
1456
  name: string;
1385
- disabled: boolean;
1386
- label: string;
1387
- id: string;
1388
1457
  icon: string | boolean;
1389
1458
  trackBy: string;
1390
- addBottomSpace: boolean;
1391
- errorText: string;
1392
- hintText: string;
1393
- showOptionalInLabel: boolean;
1394
1459
  placeholder: string;
1395
1460
  hint: string;
1396
1461
  preventEmpty: boolean;
@@ -1435,15 +1500,15 @@ default: undefined;
1435
1500
  };
1436
1501
  disabled: {
1437
1502
  type: PropType<boolean>;
1438
- default: boolean;
1503
+ };
1504
+ fieldset: {
1505
+ type: PropType<boolean>;
1439
1506
  };
1440
1507
  label: {
1441
1508
  type: PropType<string>;
1442
- default: string;
1443
1509
  };
1444
1510
  id: {
1445
1511
  type: PropType<string>;
1446
- default: string;
1447
1512
  };
1448
1513
  icon: {
1449
1514
  type: PropType<string | boolean>;
@@ -1453,21 +1518,29 @@ trackBy: {
1453
1518
  type: PropType<string>;
1454
1519
  default: string;
1455
1520
  };
1521
+ isRequired: {
1522
+ type: PropType<boolean>;
1523
+ };
1524
+ isDisabled: {
1525
+ type: PropType<boolean>;
1526
+ };
1456
1527
  addBottomSpace: {
1457
1528
  type: PropType<boolean>;
1458
- default: boolean;
1459
1529
  };
1460
1530
  errorText: {
1461
1531
  type: PropType<string>;
1462
- default: string;
1463
1532
  };
1464
1533
  hintText: {
1465
1534
  type: PropType<string>;
1466
- default: string;
1535
+ };
1536
+ errorId: {
1537
+ type: PropType<string>;
1538
+ };
1539
+ isReadOnly: {
1540
+ type: PropType<boolean>;
1467
1541
  };
1468
1542
  showOptionalInLabel: {
1469
1543
  type: PropType<boolean>;
1470
- default: boolean;
1471
1544
  };
1472
1545
  placeholder: {
1473
1546
  type: PropType<string>;
@@ -1587,15 +1660,8 @@ closed: (selectedOptions: any) => void;
1587
1660
  lazy: () => any[];
1588
1661
  error: string;
1589
1662
  name: string;
1590
- disabled: boolean;
1591
- label: string;
1592
- id: string;
1593
1663
  icon: string | boolean;
1594
1664
  trackBy: string;
1595
- addBottomSpace: boolean;
1596
- errorText: string;
1597
- hintText: string;
1598
- showOptionalInLabel: boolean;
1599
1665
  placeholder: string;
1600
1666
  hint: string;
1601
1667
  preventEmpty: boolean;