@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
@@ -1767,26 +1767,36 @@ default: string;
1767
1767
  };
1768
1768
  disabled: {
1769
1769
  type: PropType<boolean>;
1770
- default: boolean;
1770
+ };
1771
+ fieldset: {
1772
+ type: PropType<boolean>;
1771
1773
  };
1772
1774
  label: {
1773
1775
  type: PropType<string>;
1774
- default: undefined;
1775
1776
  };
1776
1777
  id: {
1777
1778
  type: PropType<string>;
1778
- default: undefined;
1779
+ };
1780
+ isRequired: {
1781
+ type: PropType<boolean>;
1782
+ };
1783
+ isDisabled: {
1784
+ type: PropType<boolean>;
1779
1785
  };
1780
1786
  addBottomSpace: {
1781
1787
  type: PropType<boolean>;
1782
1788
  };
1783
1789
  errorText: {
1784
1790
  type: PropType<string>;
1785
- default: undefined;
1786
1791
  };
1787
1792
  hintText: {
1788
1793
  type: PropType<string>;
1789
- default: undefined;
1794
+ };
1795
+ errorId: {
1796
+ type: PropType<string>;
1797
+ };
1798
+ isReadOnly: {
1799
+ type: PropType<boolean>;
1790
1800
  };
1791
1801
  showOptionalInLabel: {
1792
1802
  type: PropType<boolean>;
@@ -1821,11 +1831,6 @@ focus: (evt: Event) => void;
1821
1831
  blur: (evt: Event) => void;
1822
1832
  }, PublicProps, {
1823
1833
  type: string;
1824
- disabled: boolean;
1825
- label: string;
1826
- id: string;
1827
- errorText: string;
1828
- hintText: string;
1829
1834
  placeholder: string;
1830
1835
  modelValue: string | number;
1831
1836
  value: string | number | null;
@@ -1844,26 +1849,36 @@ default: string;
1844
1849
  };
1845
1850
  disabled: {
1846
1851
  type: PropType<boolean>;
1847
- default: boolean;
1852
+ };
1853
+ fieldset: {
1854
+ type: PropType<boolean>;
1848
1855
  };
1849
1856
  label: {
1850
1857
  type: PropType<string>;
1851
- default: undefined;
1852
1858
  };
1853
1859
  id: {
1854
1860
  type: PropType<string>;
1855
- default: undefined;
1861
+ };
1862
+ isRequired: {
1863
+ type: PropType<boolean>;
1864
+ };
1865
+ isDisabled: {
1866
+ type: PropType<boolean>;
1856
1867
  };
1857
1868
  addBottomSpace: {
1858
1869
  type: PropType<boolean>;
1859
1870
  };
1860
1871
  errorText: {
1861
1872
  type: PropType<string>;
1862
- default: undefined;
1863
1873
  };
1864
1874
  hintText: {
1865
1875
  type: PropType<string>;
1866
- default: undefined;
1876
+ };
1877
+ errorId: {
1878
+ type: PropType<string>;
1879
+ };
1880
+ isReadOnly: {
1881
+ type: PropType<boolean>;
1867
1882
  };
1868
1883
  showOptionalInLabel: {
1869
1884
  type: PropType<boolean>;
@@ -1893,11 +1908,6 @@ onFocus?: ((evt: Event) => any) | undefined;
1893
1908
  inputEl: Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
1894
1909
  }, {}, {}, {}, {
1895
1910
  type: string;
1896
- disabled: boolean;
1897
- label: string;
1898
- id: string;
1899
- errorText: string;
1900
- hintText: string;
1901
1911
  placeholder: string;
1902
1912
  modelValue: string | number;
1903
1913
  value: string | number | null;
@@ -1913,26 +1923,36 @@ default: string;
1913
1923
  };
1914
1924
  disabled: {
1915
1925
  type: PropType<boolean>;
1916
- default: boolean;
1926
+ };
1927
+ fieldset: {
1928
+ type: PropType<boolean>;
1917
1929
  };
1918
1930
  label: {
1919
1931
  type: PropType<string>;
1920
- default: undefined;
1921
1932
  };
1922
1933
  id: {
1923
1934
  type: PropType<string>;
1924
- default: undefined;
1935
+ };
1936
+ isRequired: {
1937
+ type: PropType<boolean>;
1938
+ };
1939
+ isDisabled: {
1940
+ type: PropType<boolean>;
1925
1941
  };
1926
1942
  addBottomSpace: {
1927
1943
  type: PropType<boolean>;
1928
1944
  };
1929
1945
  errorText: {
1930
1946
  type: PropType<string>;
1931
- default: undefined;
1932
1947
  };
1933
1948
  hintText: {
1934
1949
  type: PropType<string>;
1935
- default: undefined;
1950
+ };
1951
+ errorId: {
1952
+ type: PropType<string>;
1953
+ };
1954
+ isReadOnly: {
1955
+ type: PropType<boolean>;
1936
1956
  };
1937
1957
  showOptionalInLabel: {
1938
1958
  type: PropType<boolean>;
@@ -1967,11 +1987,6 @@ focus: (evt: Event) => void;
1967
1987
  blur: (evt: Event) => void;
1968
1988
  }, string, {
1969
1989
  type: string;
1970
- disabled: boolean;
1971
- label: string;
1972
- id: string;
1973
- errorText: string;
1974
- hintText: string;
1975
1990
  placeholder: string;
1976
1991
  modelValue: string | number;
1977
1992
  value: string | number | null;
@@ -1991,19 +2006,39 @@ default: string;
1991
2006
  };
1992
2007
  disabled: {
1993
2008
  type: PropType<boolean>;
1994
- default: boolean;
2009
+ };
2010
+ fieldset: {
2011
+ type: PropType<boolean>;
1995
2012
  };
1996
2013
  label: {
1997
2014
  type: PropType<string>;
1998
- default: undefined;
2015
+ };
2016
+ id: {
2017
+ type: PropType<string>;
2018
+ };
2019
+ isRequired: {
2020
+ type: PropType<boolean>;
2021
+ };
2022
+ isDisabled: {
2023
+ type: PropType<boolean>;
2024
+ };
2025
+ addBottomSpace: {
2026
+ type: PropType<boolean>;
1999
2027
  };
2000
2028
  errorText: {
2001
2029
  type: PropType<string>;
2002
- default: undefined;
2003
2030
  };
2004
2031
  hintText: {
2005
2032
  type: PropType<string>;
2006
- default: undefined;
2033
+ };
2034
+ errorId: {
2035
+ type: PropType<string>;
2036
+ };
2037
+ isReadOnly: {
2038
+ type: PropType<boolean>;
2039
+ };
2040
+ showOptionalInLabel: {
2041
+ type: PropType<boolean>;
2007
2042
  };
2008
2043
  placeholder: {
2009
2044
  type: PropType<string>;
@@ -2020,7 +2055,9 @@ option?: any;
2020
2055
  }>;
2021
2056
  default: () => {
2022
2057
  value: string;
2023
- option: undefined;
2058
+ option: undefined; /**
2059
+ * Validation schema function that returns an object
2060
+ */
2024
2061
  };
2025
2062
  };
2026
2063
  noTruncate: {
@@ -2038,14 +2075,18 @@ type: "input" | "select";
2038
2075
  value?: string | undefined;
2039
2076
  option?: any;
2040
2077
  isValueChange: boolean;
2041
- type: "input" | "select";
2078
+ type: "input" | "select"; /**
2079
+ * Hide the Select All checkbox for bulk actions
2080
+ */
2042
2081
  }) => any) | undefined;
2043
2082
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2044
2083
  "update:model-value": (v: {
2045
2084
  value?: string | undefined;
2046
2085
  option?: any;
2047
2086
  isValueChange: boolean;
2048
- type: "input" | "select";
2087
+ type: "input" | "select"; /**
2088
+ * Hide the Select All checkbox for bulk actions
2089
+ */
2049
2090
  }) => void;
2050
2091
  change: (v: {
2051
2092
  value?: string | undefined;
@@ -2055,10 +2096,6 @@ type: "input" | "select";
2055
2096
  }) => void;
2056
2097
  }, PublicProps, {
2057
2098
  type: string;
2058
- disabled: boolean;
2059
- label: string;
2060
- errorText: string;
2061
- hintText: string;
2062
2099
  placeholder: string;
2063
2100
  options: any[];
2064
2101
  modelValue: {
@@ -2080,19 +2117,39 @@ default: string;
2080
2117
  };
2081
2118
  disabled: {
2082
2119
  type: PropType<boolean>;
2083
- default: boolean;
2120
+ };
2121
+ fieldset: {
2122
+ type: PropType<boolean>;
2084
2123
  };
2085
2124
  label: {
2086
2125
  type: PropType<string>;
2087
- default: undefined;
2126
+ };
2127
+ id: {
2128
+ type: PropType<string>;
2129
+ };
2130
+ isRequired: {
2131
+ type: PropType<boolean>;
2132
+ };
2133
+ isDisabled: {
2134
+ type: PropType<boolean>;
2135
+ };
2136
+ addBottomSpace: {
2137
+ type: PropType<boolean>;
2088
2138
  };
2089
2139
  errorText: {
2090
2140
  type: PropType<string>;
2091
- default: undefined;
2092
2141
  };
2093
2142
  hintText: {
2094
2143
  type: PropType<string>;
2095
- default: undefined;
2144
+ };
2145
+ errorId: {
2146
+ type: PropType<string>;
2147
+ };
2148
+ isReadOnly: {
2149
+ type: PropType<boolean>;
2150
+ };
2151
+ showOptionalInLabel: {
2152
+ type: PropType<boolean>;
2096
2153
  };
2097
2154
  placeholder: {
2098
2155
  type: PropType<string>;
@@ -2109,7 +2166,9 @@ option?: any;
2109
2166
  }>;
2110
2167
  default: () => {
2111
2168
  value: string;
2112
- option: undefined;
2169
+ option: undefined; /**
2170
+ * Validation schema function that returns an object
2171
+ */
2113
2172
  };
2114
2173
  };
2115
2174
  noTruncate: {
@@ -2127,14 +2186,12 @@ type: "input" | "select";
2127
2186
  value?: string | undefined;
2128
2187
  option?: any;
2129
2188
  isValueChange: boolean;
2130
- type: "input" | "select";
2189
+ type: "input" | "select"; /**
2190
+ * Hide the Select All checkbox for bulk actions
2191
+ */
2131
2192
  }) => any) | undefined;
2132
2193
  }>, {}, {}, {}, {}, {
2133
2194
  type: string;
2134
- disabled: boolean;
2135
- label: string;
2136
- errorText: string;
2137
- hintText: string;
2138
2195
  placeholder: string;
2139
2196
  options: any[];
2140
2197
  modelValue: {
@@ -2153,19 +2210,39 @@ default: string;
2153
2210
  };
2154
2211
  disabled: {
2155
2212
  type: PropType<boolean>;
2156
- default: boolean;
2213
+ };
2214
+ fieldset: {
2215
+ type: PropType<boolean>;
2157
2216
  };
2158
2217
  label: {
2159
2218
  type: PropType<string>;
2160
- default: undefined;
2219
+ };
2220
+ id: {
2221
+ type: PropType<string>;
2222
+ };
2223
+ isRequired: {
2224
+ type: PropType<boolean>;
2225
+ };
2226
+ isDisabled: {
2227
+ type: PropType<boolean>;
2228
+ };
2229
+ addBottomSpace: {
2230
+ type: PropType<boolean>;
2161
2231
  };
2162
2232
  errorText: {
2163
2233
  type: PropType<string>;
2164
- default: undefined;
2165
2234
  };
2166
2235
  hintText: {
2167
2236
  type: PropType<string>;
2168
- default: undefined;
2237
+ };
2238
+ errorId: {
2239
+ type: PropType<string>;
2240
+ };
2241
+ isReadOnly: {
2242
+ type: PropType<boolean>;
2243
+ };
2244
+ showOptionalInLabel: {
2245
+ type: PropType<boolean>;
2169
2246
  };
2170
2247
  placeholder: {
2171
2248
  type: PropType<string>;
@@ -2182,7 +2259,9 @@ option?: any;
2182
2259
  }>;
2183
2260
  default: () => {
2184
2261
  value: string;
2185
- option: undefined;
2262
+ option: undefined; /**
2263
+ * Validation schema function that returns an object
2264
+ */
2186
2265
  };
2187
2266
  };
2188
2267
  noTruncate: {
@@ -2200,14 +2279,18 @@ type: "input" | "select";
2200
2279
  value?: string | undefined;
2201
2280
  option?: any;
2202
2281
  isValueChange: boolean;
2203
- type: "input" | "select";
2282
+ type: "input" | "select"; /**
2283
+ * Hide the Select All checkbox for bulk actions
2284
+ */
2204
2285
  }) => any) | undefined;
2205
2286
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2206
2287
  "update:model-value": (v: {
2207
2288
  value?: string | undefined;
2208
2289
  option?: any;
2209
2290
  isValueChange: boolean;
2210
- type: "input" | "select";
2291
+ type: "input" | "select"; /**
2292
+ * Hide the Select All checkbox for bulk actions
2293
+ */
2211
2294
  }) => void;
2212
2295
  change: (v: {
2213
2296
  value?: string | undefined;
@@ -2217,10 +2300,6 @@ type: "input" | "select";
2217
2300
  }) => void;
2218
2301
  }, string, {
2219
2302
  type: string;
2220
- disabled: boolean;
2221
- label: string;
2222
- errorText: string;
2223
- hintText: string;
2224
2303
  placeholder: string;
2225
2304
  options: any[];
2226
2305
  modelValue: {
@@ -2302,15 +2381,15 @@ default: undefined;
2302
2381
  };
2303
2382
  disabled: {
2304
2383
  type: PropType<boolean>;
2305
- default: boolean;
2384
+ };
2385
+ fieldset: {
2386
+ type: PropType<boolean>;
2306
2387
  };
2307
2388
  label: {
2308
2389
  type: PropType<string>;
2309
- default: string;
2310
2390
  };
2311
2391
  id: {
2312
2392
  type: PropType<string>;
2313
- default: string;
2314
2393
  };
2315
2394
  icon: {
2316
2395
  type: PropType<string | boolean>;
@@ -2320,21 +2399,29 @@ trackBy: {
2320
2399
  type: PropType<string>;
2321
2400
  default: string;
2322
2401
  };
2402
+ isRequired: {
2403
+ type: PropType<boolean>;
2404
+ };
2405
+ isDisabled: {
2406
+ type: PropType<boolean>;
2407
+ };
2323
2408
  addBottomSpace: {
2324
2409
  type: PropType<boolean>;
2325
- default: boolean;
2326
2410
  };
2327
2411
  errorText: {
2328
2412
  type: PropType<string>;
2329
- default: string;
2330
2413
  };
2331
2414
  hintText: {
2332
2415
  type: PropType<string>;
2333
- default: string;
2416
+ };
2417
+ errorId: {
2418
+ type: PropType<string>;
2419
+ };
2420
+ isReadOnly: {
2421
+ type: PropType<boolean>;
2334
2422
  };
2335
2423
  showOptionalInLabel: {
2336
2424
  type: PropType<boolean>;
2337
- default: boolean;
2338
2425
  };
2339
2426
  placeholder: {
2340
2427
  type: PropType<string>;
@@ -2454,15 +2541,8 @@ closed: (selectedOptions: any) => void;
2454
2541
  lazy: () => any[];
2455
2542
  error: string;
2456
2543
  name: string;
2457
- disabled: boolean;
2458
- label: string;
2459
- id: string;
2460
2544
  icon: string | boolean;
2461
2545
  trackBy: string;
2462
- addBottomSpace: boolean;
2463
- errorText: string;
2464
- hintText: string;
2465
- showOptionalInLabel: boolean;
2466
2546
  placeholder: string;
2467
2547
  hint: string;
2468
2548
  preventEmpty: boolean;
@@ -2510,15 +2590,15 @@ default: undefined;
2510
2590
  };
2511
2591
  disabled: {
2512
2592
  type: PropType<boolean>;
2513
- default: boolean;
2593
+ };
2594
+ fieldset: {
2595
+ type: PropType<boolean>;
2514
2596
  };
2515
2597
  label: {
2516
2598
  type: PropType<string>;
2517
- default: string;
2518
2599
  };
2519
2600
  id: {
2520
2601
  type: PropType<string>;
2521
- default: string;
2522
2602
  };
2523
2603
  icon: {
2524
2604
  type: PropType<string | boolean>;
@@ -2528,21 +2608,29 @@ trackBy: {
2528
2608
  type: PropType<string>;
2529
2609
  default: string;
2530
2610
  };
2611
+ isRequired: {
2612
+ type: PropType<boolean>;
2613
+ };
2614
+ isDisabled: {
2615
+ type: PropType<boolean>;
2616
+ };
2531
2617
  addBottomSpace: {
2532
2618
  type: PropType<boolean>;
2533
- default: boolean;
2534
2619
  };
2535
2620
  errorText: {
2536
2621
  type: PropType<string>;
2537
- default: string;
2538
2622
  };
2539
2623
  hintText: {
2540
2624
  type: PropType<string>;
2541
- default: string;
2625
+ };
2626
+ errorId: {
2627
+ type: PropType<string>;
2628
+ };
2629
+ isReadOnly: {
2630
+ type: PropType<boolean>;
2542
2631
  };
2543
2632
  showOptionalInLabel: {
2544
2633
  type: PropType<boolean>;
2545
- default: boolean;
2546
2634
  };
2547
2635
  placeholder: {
2548
2636
  type: PropType<string>;
@@ -2655,15 +2743,8 @@ onClosed?: ((selectedOptions: any) => any) | undefined;
2655
2743
  lazy: () => any[];
2656
2744
  error: string;
2657
2745
  name: string;
2658
- disabled: boolean;
2659
- label: string;
2660
- id: string;
2661
2746
  icon: string | boolean;
2662
2747
  trackBy: string;
2663
- addBottomSpace: boolean;
2664
- errorText: string;
2665
- hintText: string;
2666
- showOptionalInLabel: boolean;
2667
2748
  placeholder: string;
2668
2749
  hint: string;
2669
2750
  preventEmpty: boolean;
@@ -2708,15 +2789,15 @@ default: undefined;
2708
2789
  };
2709
2790
  disabled: {
2710
2791
  type: PropType<boolean>;
2711
- default: boolean;
2792
+ };
2793
+ fieldset: {
2794
+ type: PropType<boolean>;
2712
2795
  };
2713
2796
  label: {
2714
2797
  type: PropType<string>;
2715
- default: string;
2716
2798
  };
2717
2799
  id: {
2718
2800
  type: PropType<string>;
2719
- default: string;
2720
2801
  };
2721
2802
  icon: {
2722
2803
  type: PropType<string | boolean>;
@@ -2726,21 +2807,29 @@ trackBy: {
2726
2807
  type: PropType<string>;
2727
2808
  default: string;
2728
2809
  };
2810
+ isRequired: {
2811
+ type: PropType<boolean>;
2812
+ };
2813
+ isDisabled: {
2814
+ type: PropType<boolean>;
2815
+ };
2729
2816
  addBottomSpace: {
2730
2817
  type: PropType<boolean>;
2731
- default: boolean;
2732
2818
  };
2733
2819
  errorText: {
2734
2820
  type: PropType<string>;
2735
- default: string;
2736
2821
  };
2737
2822
  hintText: {
2738
2823
  type: PropType<string>;
2739
- default: string;
2824
+ };
2825
+ errorId: {
2826
+ type: PropType<string>;
2827
+ };
2828
+ isReadOnly: {
2829
+ type: PropType<boolean>;
2740
2830
  };
2741
2831
  showOptionalInLabel: {
2742
2832
  type: PropType<boolean>;
2743
- default: boolean;
2744
2833
  };
2745
2834
  placeholder: {
2746
2835
  type: PropType<string>;
@@ -2860,15 +2949,8 @@ closed: (selectedOptions: any) => void;
2860
2949
  lazy: () => any[];
2861
2950
  error: string;
2862
2951
  name: string;
2863
- disabled: boolean;
2864
- label: string;
2865
- id: string;
2866
2952
  icon: string | boolean;
2867
2953
  trackBy: string;
2868
- addBottomSpace: boolean;
2869
- errorText: string;
2870
- hintText: string;
2871
- showOptionalInLabel: boolean;
2872
2954
  placeholder: string;
2873
2955
  hint: string;
2874
2956
  preventEmpty: boolean;
@@ -4343,26 +4425,36 @@ default: string;
4343
4425
  };
4344
4426
  disabled: {
4345
4427
  type: PropType<boolean>;
4346
- default: boolean;
4428
+ };
4429
+ fieldset: {
4430
+ type: PropType<boolean>;
4347
4431
  };
4348
4432
  label: {
4349
4433
  type: PropType<string>;
4350
- default: undefined;
4351
4434
  };
4352
4435
  id: {
4353
4436
  type: PropType<string>;
4354
- default: undefined;
4437
+ };
4438
+ isRequired: {
4439
+ type: PropType<boolean>;
4440
+ };
4441
+ isDisabled: {
4442
+ type: PropType<boolean>;
4355
4443
  };
4356
4444
  addBottomSpace: {
4357
4445
  type: PropType<boolean>;
4358
4446
  };
4359
4447
  errorText: {
4360
4448
  type: PropType<string>;
4361
- default: undefined;
4362
4449
  };
4363
4450
  hintText: {
4364
4451
  type: PropType<string>;
4365
- default: undefined;
4452
+ };
4453
+ errorId: {
4454
+ type: PropType<string>;
4455
+ };
4456
+ isReadOnly: {
4457
+ type: PropType<boolean>;
4366
4458
  };
4367
4459
  showOptionalInLabel: {
4368
4460
  type: PropType<boolean>;
@@ -4397,11 +4489,6 @@ focus: (evt: Event) => void;
4397
4489
  blur: (evt: Event) => void;
4398
4490
  }, PublicProps, {
4399
4491
  type: string;
4400
- disabled: boolean;
4401
- label: string;
4402
- id: string;
4403
- errorText: string;
4404
- hintText: string;
4405
4492
  placeholder: string;
4406
4493
  modelValue: string | number;
4407
4494
  value: string | number | null;
@@ -4420,26 +4507,36 @@ default: string;
4420
4507
  };
4421
4508
  disabled: {
4422
4509
  type: PropType<boolean>;
4423
- default: boolean;
4510
+ };
4511
+ fieldset: {
4512
+ type: PropType<boolean>;
4424
4513
  };
4425
4514
  label: {
4426
4515
  type: PropType<string>;
4427
- default: undefined;
4428
4516
  };
4429
4517
  id: {
4430
4518
  type: PropType<string>;
4431
- default: undefined;
4519
+ };
4520
+ isRequired: {
4521
+ type: PropType<boolean>;
4522
+ };
4523
+ isDisabled: {
4524
+ type: PropType<boolean>;
4432
4525
  };
4433
4526
  addBottomSpace: {
4434
4527
  type: PropType<boolean>;
4435
4528
  };
4436
4529
  errorText: {
4437
4530
  type: PropType<string>;
4438
- default: undefined;
4439
4531
  };
4440
4532
  hintText: {
4441
4533
  type: PropType<string>;
4442
- default: undefined;
4534
+ };
4535
+ errorId: {
4536
+ type: PropType<string>;
4537
+ };
4538
+ isReadOnly: {
4539
+ type: PropType<boolean>;
4443
4540
  };
4444
4541
  showOptionalInLabel: {
4445
4542
  type: PropType<boolean>;
@@ -4469,11 +4566,6 @@ onFocus?: ((evt: Event) => any) | undefined;
4469
4566
  inputEl: Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
4470
4567
  }, {}, {}, {}, {
4471
4568
  type: string;
4472
- disabled: boolean;
4473
- label: string;
4474
- id: string;
4475
- errorText: string;
4476
- hintText: string;
4477
4569
  placeholder: string;
4478
4570
  modelValue: string | number;
4479
4571
  value: string | number | null;
@@ -4489,26 +4581,36 @@ default: string;
4489
4581
  };
4490
4582
  disabled: {
4491
4583
  type: PropType<boolean>;
4492
- default: boolean;
4584
+ };
4585
+ fieldset: {
4586
+ type: PropType<boolean>;
4493
4587
  };
4494
4588
  label: {
4495
4589
  type: PropType<string>;
4496
- default: undefined;
4497
4590
  };
4498
4591
  id: {
4499
4592
  type: PropType<string>;
4500
- default: undefined;
4593
+ };
4594
+ isRequired: {
4595
+ type: PropType<boolean>;
4596
+ };
4597
+ isDisabled: {
4598
+ type: PropType<boolean>;
4501
4599
  };
4502
4600
  addBottomSpace: {
4503
4601
  type: PropType<boolean>;
4504
4602
  };
4505
4603
  errorText: {
4506
4604
  type: PropType<string>;
4507
- default: undefined;
4508
4605
  };
4509
4606
  hintText: {
4510
4607
  type: PropType<string>;
4511
- default: undefined;
4608
+ };
4609
+ errorId: {
4610
+ type: PropType<string>;
4611
+ };
4612
+ isReadOnly: {
4613
+ type: PropType<boolean>;
4512
4614
  };
4513
4615
  showOptionalInLabel: {
4514
4616
  type: PropType<boolean>;
@@ -4543,11 +4645,6 @@ focus: (evt: Event) => void;
4543
4645
  blur: (evt: Event) => void;
4544
4646
  }, string, {
4545
4647
  type: string;
4546
- disabled: boolean;
4547
- label: string;
4548
- id: string;
4549
- errorText: string;
4550
- hintText: string;
4551
4648
  placeholder: string;
4552
4649
  modelValue: string | number;
4553
4650
  value: string | number | null;