@leaflink/stash 50.0.6 → 50.0.8
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/CurrencyInput.js +23 -19
- package/dist/CurrencyInput.js.map +1 -1
- package/dist/CurrencyInput.vue.d.ts +31 -10
- package/dist/Field.js +1 -1
- package/dist/Field.vue.d.ts +9 -0
- package/dist/{Field.vue_vue_type_script_setup_true_lang--tBfZB2K.js → Field.vue_vue_type_script_setup_true_lang-DEizIcDo.js} +35 -32
- package/dist/Field.vue_vue_type_script_setup_true_lang-DEizIcDo.js.map +1 -0
- package/dist/FilterSelect.js +67 -56
- package/dist/FilterSelect.js.map +1 -1
- package/dist/FilterSelect.vue.d.ts +54 -2
- package/dist/Filters.vue.d.ts +162 -105
- package/dist/Input.js +71 -68
- package/dist/Input.js.map +1 -1
- package/dist/Input.vue.d.ts +31 -28
- package/dist/InputOptions.js +76 -68
- package/dist/InputOptions.js.map +1 -1
- package/dist/InputOptions.vue.d.ts +55 -23
- package/dist/ListView.vue.d.ts +213 -146
- package/dist/RadioGroup.js +67 -70
- package/dist/RadioGroup.js.map +1 -1
- package/dist/RadioGroup.vue.d.ts +54 -45
- package/dist/Select.js +223 -224
- package/dist/Select.js.map +1 -1
- package/dist/Select.vue.d.ts +54 -51
- package/dist/TextEditor.js +671 -684
- package/dist/TextEditor.js.map +1 -1
- package/dist/TextEditor.vue.d.ts +54 -61
- package/dist/Textarea.js +63 -60
- package/dist/Textarea.js.map +1 -1
- package/dist/Textarea.vue.d.ts +50 -39
- package/dist/components.css +2 -2
- package/package.json +1 -1
- package/dist/Field.vue_vue_type_script_setup_true_lang--tBfZB2K.js.map +0 -1
package/dist/ListView.vue.d.ts
CHANGED
|
@@ -1767,30 +1767,36 @@ default: string;
|
|
|
1767
1767
|
};
|
|
1768
1768
|
disabled: {
|
|
1769
1769
|
type: PropType<boolean>;
|
|
1770
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1794
|
+
};
|
|
1795
|
+
errorId: {
|
|
1796
|
+
type: PropType<string>;
|
|
1790
1797
|
};
|
|
1791
1798
|
isReadOnly: {
|
|
1792
1799
|
type: PropType<boolean>;
|
|
1793
|
-
default: boolean;
|
|
1794
1800
|
};
|
|
1795
1801
|
showOptionalInLabel: {
|
|
1796
1802
|
type: PropType<boolean>;
|
|
@@ -1825,12 +1831,6 @@ focus: (evt: Event) => void;
|
|
|
1825
1831
|
blur: (evt: Event) => void;
|
|
1826
1832
|
}, PublicProps, {
|
|
1827
1833
|
type: string;
|
|
1828
|
-
disabled: boolean;
|
|
1829
|
-
label: string;
|
|
1830
|
-
id: string;
|
|
1831
|
-
errorText: string;
|
|
1832
|
-
hintText: string;
|
|
1833
|
-
isReadOnly: boolean;
|
|
1834
1834
|
placeholder: string;
|
|
1835
1835
|
modelValue: string | number;
|
|
1836
1836
|
value: string | number | null;
|
|
@@ -1849,30 +1849,36 @@ default: string;
|
|
|
1849
1849
|
};
|
|
1850
1850
|
disabled: {
|
|
1851
1851
|
type: PropType<boolean>;
|
|
1852
|
-
|
|
1852
|
+
};
|
|
1853
|
+
fieldset: {
|
|
1854
|
+
type: PropType<boolean>;
|
|
1853
1855
|
};
|
|
1854
1856
|
label: {
|
|
1855
1857
|
type: PropType<string>;
|
|
1856
|
-
default: undefined;
|
|
1857
1858
|
};
|
|
1858
1859
|
id: {
|
|
1859
1860
|
type: PropType<string>;
|
|
1860
|
-
|
|
1861
|
+
};
|
|
1862
|
+
isRequired: {
|
|
1863
|
+
type: PropType<boolean>;
|
|
1864
|
+
};
|
|
1865
|
+
isDisabled: {
|
|
1866
|
+
type: PropType<boolean>;
|
|
1861
1867
|
};
|
|
1862
1868
|
addBottomSpace: {
|
|
1863
1869
|
type: PropType<boolean>;
|
|
1864
1870
|
};
|
|
1865
1871
|
errorText: {
|
|
1866
1872
|
type: PropType<string>;
|
|
1867
|
-
default: undefined;
|
|
1868
1873
|
};
|
|
1869
1874
|
hintText: {
|
|
1870
1875
|
type: PropType<string>;
|
|
1871
|
-
|
|
1876
|
+
};
|
|
1877
|
+
errorId: {
|
|
1878
|
+
type: PropType<string>;
|
|
1872
1879
|
};
|
|
1873
1880
|
isReadOnly: {
|
|
1874
1881
|
type: PropType<boolean>;
|
|
1875
|
-
default: boolean;
|
|
1876
1882
|
};
|
|
1877
1883
|
showOptionalInLabel: {
|
|
1878
1884
|
type: PropType<boolean>;
|
|
@@ -1902,12 +1908,6 @@ onFocus?: ((evt: Event) => any) | undefined;
|
|
|
1902
1908
|
inputEl: Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
1903
1909
|
}, {}, {}, {}, {
|
|
1904
1910
|
type: string;
|
|
1905
|
-
disabled: boolean;
|
|
1906
|
-
label: string;
|
|
1907
|
-
id: string;
|
|
1908
|
-
errorText: string;
|
|
1909
|
-
hintText: string;
|
|
1910
|
-
isReadOnly: boolean;
|
|
1911
1911
|
placeholder: string;
|
|
1912
1912
|
modelValue: string | number;
|
|
1913
1913
|
value: string | number | null;
|
|
@@ -1923,30 +1923,36 @@ default: string;
|
|
|
1923
1923
|
};
|
|
1924
1924
|
disabled: {
|
|
1925
1925
|
type: PropType<boolean>;
|
|
1926
|
-
|
|
1926
|
+
};
|
|
1927
|
+
fieldset: {
|
|
1928
|
+
type: PropType<boolean>;
|
|
1927
1929
|
};
|
|
1928
1930
|
label: {
|
|
1929
1931
|
type: PropType<string>;
|
|
1930
|
-
default: undefined;
|
|
1931
1932
|
};
|
|
1932
1933
|
id: {
|
|
1933
1934
|
type: PropType<string>;
|
|
1934
|
-
|
|
1935
|
+
};
|
|
1936
|
+
isRequired: {
|
|
1937
|
+
type: PropType<boolean>;
|
|
1938
|
+
};
|
|
1939
|
+
isDisabled: {
|
|
1940
|
+
type: PropType<boolean>;
|
|
1935
1941
|
};
|
|
1936
1942
|
addBottomSpace: {
|
|
1937
1943
|
type: PropType<boolean>;
|
|
1938
1944
|
};
|
|
1939
1945
|
errorText: {
|
|
1940
1946
|
type: PropType<string>;
|
|
1941
|
-
default: undefined;
|
|
1942
1947
|
};
|
|
1943
1948
|
hintText: {
|
|
1944
1949
|
type: PropType<string>;
|
|
1945
|
-
|
|
1950
|
+
};
|
|
1951
|
+
errorId: {
|
|
1952
|
+
type: PropType<string>;
|
|
1946
1953
|
};
|
|
1947
1954
|
isReadOnly: {
|
|
1948
1955
|
type: PropType<boolean>;
|
|
1949
|
-
default: boolean;
|
|
1950
1956
|
};
|
|
1951
1957
|
showOptionalInLabel: {
|
|
1952
1958
|
type: PropType<boolean>;
|
|
@@ -1981,12 +1987,6 @@ focus: (evt: Event) => void;
|
|
|
1981
1987
|
blur: (evt: Event) => void;
|
|
1982
1988
|
}, string, {
|
|
1983
1989
|
type: string;
|
|
1984
|
-
disabled: boolean;
|
|
1985
|
-
label: string;
|
|
1986
|
-
id: string;
|
|
1987
|
-
errorText: string;
|
|
1988
|
-
hintText: string;
|
|
1989
|
-
isReadOnly: boolean;
|
|
1990
1990
|
placeholder: string;
|
|
1991
1991
|
modelValue: string | number;
|
|
1992
1992
|
value: string | number | null;
|
|
@@ -2006,28 +2006,52 @@ default: string;
|
|
|
2006
2006
|
};
|
|
2007
2007
|
disabled: {
|
|
2008
2008
|
type: PropType<boolean>;
|
|
2009
|
-
|
|
2009
|
+
};
|
|
2010
|
+
fieldset: {
|
|
2011
|
+
type: PropType<boolean>;
|
|
2010
2012
|
};
|
|
2011
2013
|
label: {
|
|
2012
2014
|
type: PropType<string>;
|
|
2015
|
+
};
|
|
2016
|
+
id: {
|
|
2017
|
+
type: PropType<string>;
|
|
2018
|
+
};
|
|
2019
|
+
trackBy: {
|
|
2020
|
+
type: PropType<string>;
|
|
2013
2021
|
default: undefined;
|
|
2014
2022
|
};
|
|
2023
|
+
isRequired: {
|
|
2024
|
+
type: PropType<boolean>;
|
|
2025
|
+
};
|
|
2026
|
+
isDisabled: {
|
|
2027
|
+
type: PropType<boolean>;
|
|
2028
|
+
};
|
|
2029
|
+
addBottomSpace: {
|
|
2030
|
+
type: PropType<boolean>;
|
|
2031
|
+
};
|
|
2015
2032
|
errorText: {
|
|
2016
2033
|
type: PropType<string>;
|
|
2017
|
-
default: undefined;
|
|
2018
2034
|
};
|
|
2019
2035
|
hintText: {
|
|
2020
2036
|
type: PropType<string>;
|
|
2021
|
-
|
|
2037
|
+
};
|
|
2038
|
+
errorId: {
|
|
2039
|
+
type: PropType<string>;
|
|
2022
2040
|
};
|
|
2023
2041
|
isReadOnly: {
|
|
2024
2042
|
type: PropType<boolean>;
|
|
2025
|
-
|
|
2043
|
+
};
|
|
2044
|
+
showOptionalInLabel: {
|
|
2045
|
+
type: PropType<boolean>;
|
|
2026
2046
|
};
|
|
2027
2047
|
placeholder: {
|
|
2028
2048
|
type: PropType<string>;
|
|
2029
2049
|
default: undefined;
|
|
2030
2050
|
};
|
|
2051
|
+
displayBy: {
|
|
2052
|
+
type: PropType<string>;
|
|
2053
|
+
default: undefined;
|
|
2054
|
+
};
|
|
2031
2055
|
options: {
|
|
2032
2056
|
type: PropType<any[]>;
|
|
2033
2057
|
default: () => never[];
|
|
@@ -2055,14 +2079,18 @@ type: "input" | "select";
|
|
|
2055
2079
|
}) => any) | undefined;
|
|
2056
2080
|
"onUpdate:model-value"?: ((v: {
|
|
2057
2081
|
value?: string | undefined;
|
|
2058
|
-
option?: any;
|
|
2082
|
+
option?: any; /**
|
|
2083
|
+
* Hide the Select All checkbox for bulk actions
|
|
2084
|
+
*/
|
|
2059
2085
|
isValueChange: boolean;
|
|
2060
2086
|
type: "input" | "select";
|
|
2061
2087
|
}) => any) | undefined;
|
|
2062
2088
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2063
2089
|
"update:model-value": (v: {
|
|
2064
2090
|
value?: string | undefined;
|
|
2065
|
-
option?: any;
|
|
2091
|
+
option?: any; /**
|
|
2092
|
+
* Hide the Select All checkbox for bulk actions
|
|
2093
|
+
*/
|
|
2066
2094
|
isValueChange: boolean;
|
|
2067
2095
|
type: "input" | "select";
|
|
2068
2096
|
}) => void;
|
|
@@ -2074,12 +2102,9 @@ type: "input" | "select";
|
|
|
2074
2102
|
}) => void;
|
|
2075
2103
|
}, PublicProps, {
|
|
2076
2104
|
type: string;
|
|
2077
|
-
|
|
2078
|
-
label: string;
|
|
2079
|
-
errorText: string;
|
|
2080
|
-
hintText: string;
|
|
2081
|
-
isReadOnly: boolean;
|
|
2105
|
+
trackBy: string;
|
|
2082
2106
|
placeholder: string;
|
|
2107
|
+
displayBy: string;
|
|
2083
2108
|
options: any[];
|
|
2084
2109
|
modelValue: {
|
|
2085
2110
|
value: string;
|
|
@@ -2100,28 +2125,52 @@ default: string;
|
|
|
2100
2125
|
};
|
|
2101
2126
|
disabled: {
|
|
2102
2127
|
type: PropType<boolean>;
|
|
2103
|
-
|
|
2128
|
+
};
|
|
2129
|
+
fieldset: {
|
|
2130
|
+
type: PropType<boolean>;
|
|
2104
2131
|
};
|
|
2105
2132
|
label: {
|
|
2106
2133
|
type: PropType<string>;
|
|
2134
|
+
};
|
|
2135
|
+
id: {
|
|
2136
|
+
type: PropType<string>;
|
|
2137
|
+
};
|
|
2138
|
+
trackBy: {
|
|
2139
|
+
type: PropType<string>;
|
|
2107
2140
|
default: undefined;
|
|
2108
2141
|
};
|
|
2142
|
+
isRequired: {
|
|
2143
|
+
type: PropType<boolean>;
|
|
2144
|
+
};
|
|
2145
|
+
isDisabled: {
|
|
2146
|
+
type: PropType<boolean>;
|
|
2147
|
+
};
|
|
2148
|
+
addBottomSpace: {
|
|
2149
|
+
type: PropType<boolean>;
|
|
2150
|
+
};
|
|
2109
2151
|
errorText: {
|
|
2110
2152
|
type: PropType<string>;
|
|
2111
|
-
default: undefined;
|
|
2112
2153
|
};
|
|
2113
2154
|
hintText: {
|
|
2114
2155
|
type: PropType<string>;
|
|
2115
|
-
|
|
2156
|
+
};
|
|
2157
|
+
errorId: {
|
|
2158
|
+
type: PropType<string>;
|
|
2116
2159
|
};
|
|
2117
2160
|
isReadOnly: {
|
|
2118
2161
|
type: PropType<boolean>;
|
|
2119
|
-
|
|
2162
|
+
};
|
|
2163
|
+
showOptionalInLabel: {
|
|
2164
|
+
type: PropType<boolean>;
|
|
2120
2165
|
};
|
|
2121
2166
|
placeholder: {
|
|
2122
2167
|
type: PropType<string>;
|
|
2123
2168
|
default: undefined;
|
|
2124
2169
|
};
|
|
2170
|
+
displayBy: {
|
|
2171
|
+
type: PropType<string>;
|
|
2172
|
+
default: undefined;
|
|
2173
|
+
};
|
|
2125
2174
|
options: {
|
|
2126
2175
|
type: PropType<any[]>;
|
|
2127
2176
|
default: () => never[];
|
|
@@ -2149,18 +2198,17 @@ type: "input" | "select";
|
|
|
2149
2198
|
}) => any) | undefined;
|
|
2150
2199
|
"onUpdate:model-value"?: ((v: {
|
|
2151
2200
|
value?: string | undefined;
|
|
2152
|
-
option?: any;
|
|
2201
|
+
option?: any; /**
|
|
2202
|
+
* Hide the Select All checkbox for bulk actions
|
|
2203
|
+
*/
|
|
2153
2204
|
isValueChange: boolean;
|
|
2154
2205
|
type: "input" | "select";
|
|
2155
2206
|
}) => any) | undefined;
|
|
2156
2207
|
}>, {}, {}, {}, {}, {
|
|
2157
2208
|
type: string;
|
|
2158
|
-
|
|
2159
|
-
label: string;
|
|
2160
|
-
errorText: string;
|
|
2161
|
-
hintText: string;
|
|
2162
|
-
isReadOnly: boolean;
|
|
2209
|
+
trackBy: string;
|
|
2163
2210
|
placeholder: string;
|
|
2211
|
+
displayBy: string;
|
|
2164
2212
|
options: any[];
|
|
2165
2213
|
modelValue: {
|
|
2166
2214
|
value: string;
|
|
@@ -2178,28 +2226,52 @@ default: string;
|
|
|
2178
2226
|
};
|
|
2179
2227
|
disabled: {
|
|
2180
2228
|
type: PropType<boolean>;
|
|
2181
|
-
|
|
2229
|
+
};
|
|
2230
|
+
fieldset: {
|
|
2231
|
+
type: PropType<boolean>;
|
|
2182
2232
|
};
|
|
2183
2233
|
label: {
|
|
2184
2234
|
type: PropType<string>;
|
|
2235
|
+
};
|
|
2236
|
+
id: {
|
|
2237
|
+
type: PropType<string>;
|
|
2238
|
+
};
|
|
2239
|
+
trackBy: {
|
|
2240
|
+
type: PropType<string>;
|
|
2185
2241
|
default: undefined;
|
|
2186
2242
|
};
|
|
2243
|
+
isRequired: {
|
|
2244
|
+
type: PropType<boolean>;
|
|
2245
|
+
};
|
|
2246
|
+
isDisabled: {
|
|
2247
|
+
type: PropType<boolean>;
|
|
2248
|
+
};
|
|
2249
|
+
addBottomSpace: {
|
|
2250
|
+
type: PropType<boolean>;
|
|
2251
|
+
};
|
|
2187
2252
|
errorText: {
|
|
2188
2253
|
type: PropType<string>;
|
|
2189
|
-
default: undefined;
|
|
2190
2254
|
};
|
|
2191
2255
|
hintText: {
|
|
2192
2256
|
type: PropType<string>;
|
|
2193
|
-
|
|
2257
|
+
};
|
|
2258
|
+
errorId: {
|
|
2259
|
+
type: PropType<string>;
|
|
2194
2260
|
};
|
|
2195
2261
|
isReadOnly: {
|
|
2196
2262
|
type: PropType<boolean>;
|
|
2197
|
-
|
|
2263
|
+
};
|
|
2264
|
+
showOptionalInLabel: {
|
|
2265
|
+
type: PropType<boolean>;
|
|
2198
2266
|
};
|
|
2199
2267
|
placeholder: {
|
|
2200
2268
|
type: PropType<string>;
|
|
2201
2269
|
default: undefined;
|
|
2202
2270
|
};
|
|
2271
|
+
displayBy: {
|
|
2272
|
+
type: PropType<string>;
|
|
2273
|
+
default: undefined;
|
|
2274
|
+
};
|
|
2203
2275
|
options: {
|
|
2204
2276
|
type: PropType<any[]>;
|
|
2205
2277
|
default: () => never[];
|
|
@@ -2227,14 +2299,18 @@ type: "input" | "select";
|
|
|
2227
2299
|
}) => any) | undefined;
|
|
2228
2300
|
"onUpdate:model-value"?: ((v: {
|
|
2229
2301
|
value?: string | undefined;
|
|
2230
|
-
option?: any;
|
|
2302
|
+
option?: any; /**
|
|
2303
|
+
* Hide the Select All checkbox for bulk actions
|
|
2304
|
+
*/
|
|
2231
2305
|
isValueChange: boolean;
|
|
2232
2306
|
type: "input" | "select";
|
|
2233
2307
|
}) => any) | undefined;
|
|
2234
2308
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2235
2309
|
"update:model-value": (v: {
|
|
2236
2310
|
value?: string | undefined;
|
|
2237
|
-
option?: any;
|
|
2311
|
+
option?: any; /**
|
|
2312
|
+
* Hide the Select All checkbox for bulk actions
|
|
2313
|
+
*/
|
|
2238
2314
|
isValueChange: boolean;
|
|
2239
2315
|
type: "input" | "select";
|
|
2240
2316
|
}) => void;
|
|
@@ -2246,12 +2322,9 @@ type: "input" | "select";
|
|
|
2246
2322
|
}) => void;
|
|
2247
2323
|
}, string, {
|
|
2248
2324
|
type: string;
|
|
2249
|
-
|
|
2250
|
-
label: string;
|
|
2251
|
-
errorText: string;
|
|
2252
|
-
hintText: string;
|
|
2253
|
-
isReadOnly: boolean;
|
|
2325
|
+
trackBy: string;
|
|
2254
2326
|
placeholder: string;
|
|
2327
|
+
displayBy: string;
|
|
2255
2328
|
options: any[];
|
|
2256
2329
|
modelValue: {
|
|
2257
2330
|
value: string;
|
|
@@ -2332,15 +2405,15 @@ default: undefined;
|
|
|
2332
2405
|
};
|
|
2333
2406
|
disabled: {
|
|
2334
2407
|
type: PropType<boolean>;
|
|
2335
|
-
|
|
2408
|
+
};
|
|
2409
|
+
fieldset: {
|
|
2410
|
+
type: PropType<boolean>;
|
|
2336
2411
|
};
|
|
2337
2412
|
label: {
|
|
2338
2413
|
type: PropType<string>;
|
|
2339
|
-
default: string;
|
|
2340
2414
|
};
|
|
2341
2415
|
id: {
|
|
2342
2416
|
type: PropType<string>;
|
|
2343
|
-
default: string;
|
|
2344
2417
|
};
|
|
2345
2418
|
icon: {
|
|
2346
2419
|
type: PropType<string | boolean>;
|
|
@@ -2350,24 +2423,29 @@ trackBy: {
|
|
|
2350
2423
|
type: PropType<string>;
|
|
2351
2424
|
default: string;
|
|
2352
2425
|
};
|
|
2426
|
+
isRequired: {
|
|
2427
|
+
type: PropType<boolean>;
|
|
2428
|
+
};
|
|
2429
|
+
isDisabled: {
|
|
2430
|
+
type: PropType<boolean>;
|
|
2431
|
+
};
|
|
2353
2432
|
addBottomSpace: {
|
|
2354
2433
|
type: PropType<boolean>;
|
|
2355
|
-
default: boolean;
|
|
2356
2434
|
};
|
|
2357
2435
|
errorText: {
|
|
2358
2436
|
type: PropType<string>;
|
|
2359
|
-
default: string;
|
|
2360
2437
|
};
|
|
2361
2438
|
hintText: {
|
|
2362
2439
|
type: PropType<string>;
|
|
2363
|
-
|
|
2440
|
+
};
|
|
2441
|
+
errorId: {
|
|
2442
|
+
type: PropType<string>;
|
|
2364
2443
|
};
|
|
2365
2444
|
isReadOnly: {
|
|
2366
2445
|
type: PropType<boolean>;
|
|
2367
2446
|
};
|
|
2368
2447
|
showOptionalInLabel: {
|
|
2369
2448
|
type: PropType<boolean>;
|
|
2370
|
-
default: boolean;
|
|
2371
2449
|
};
|
|
2372
2450
|
placeholder: {
|
|
2373
2451
|
type: PropType<string>;
|
|
@@ -2487,15 +2565,8 @@ closed: (selectedOptions: any) => void;
|
|
|
2487
2565
|
lazy: () => any[];
|
|
2488
2566
|
error: string;
|
|
2489
2567
|
name: string;
|
|
2490
|
-
disabled: boolean;
|
|
2491
|
-
label: string;
|
|
2492
|
-
id: string;
|
|
2493
2568
|
icon: string | boolean;
|
|
2494
2569
|
trackBy: string;
|
|
2495
|
-
addBottomSpace: boolean;
|
|
2496
|
-
errorText: string;
|
|
2497
|
-
hintText: string;
|
|
2498
|
-
showOptionalInLabel: boolean;
|
|
2499
2570
|
placeholder: string;
|
|
2500
2571
|
hint: string;
|
|
2501
2572
|
preventEmpty: boolean;
|
|
@@ -2543,15 +2614,15 @@ default: undefined;
|
|
|
2543
2614
|
};
|
|
2544
2615
|
disabled: {
|
|
2545
2616
|
type: PropType<boolean>;
|
|
2546
|
-
|
|
2617
|
+
};
|
|
2618
|
+
fieldset: {
|
|
2619
|
+
type: PropType<boolean>;
|
|
2547
2620
|
};
|
|
2548
2621
|
label: {
|
|
2549
2622
|
type: PropType<string>;
|
|
2550
|
-
default: string;
|
|
2551
2623
|
};
|
|
2552
2624
|
id: {
|
|
2553
2625
|
type: PropType<string>;
|
|
2554
|
-
default: string;
|
|
2555
2626
|
};
|
|
2556
2627
|
icon: {
|
|
2557
2628
|
type: PropType<string | boolean>;
|
|
@@ -2561,24 +2632,29 @@ trackBy: {
|
|
|
2561
2632
|
type: PropType<string>;
|
|
2562
2633
|
default: string;
|
|
2563
2634
|
};
|
|
2635
|
+
isRequired: {
|
|
2636
|
+
type: PropType<boolean>;
|
|
2637
|
+
};
|
|
2638
|
+
isDisabled: {
|
|
2639
|
+
type: PropType<boolean>;
|
|
2640
|
+
};
|
|
2564
2641
|
addBottomSpace: {
|
|
2565
2642
|
type: PropType<boolean>;
|
|
2566
|
-
default: boolean;
|
|
2567
2643
|
};
|
|
2568
2644
|
errorText: {
|
|
2569
2645
|
type: PropType<string>;
|
|
2570
|
-
default: string;
|
|
2571
2646
|
};
|
|
2572
2647
|
hintText: {
|
|
2573
2648
|
type: PropType<string>;
|
|
2574
|
-
|
|
2649
|
+
};
|
|
2650
|
+
errorId: {
|
|
2651
|
+
type: PropType<string>;
|
|
2575
2652
|
};
|
|
2576
2653
|
isReadOnly: {
|
|
2577
2654
|
type: PropType<boolean>;
|
|
2578
2655
|
};
|
|
2579
2656
|
showOptionalInLabel: {
|
|
2580
2657
|
type: PropType<boolean>;
|
|
2581
|
-
default: boolean;
|
|
2582
2658
|
};
|
|
2583
2659
|
placeholder: {
|
|
2584
2660
|
type: PropType<string>;
|
|
@@ -2691,15 +2767,8 @@ onClosed?: ((selectedOptions: any) => any) | undefined;
|
|
|
2691
2767
|
lazy: () => any[];
|
|
2692
2768
|
error: string;
|
|
2693
2769
|
name: string;
|
|
2694
|
-
disabled: boolean;
|
|
2695
|
-
label: string;
|
|
2696
|
-
id: string;
|
|
2697
2770
|
icon: string | boolean;
|
|
2698
2771
|
trackBy: string;
|
|
2699
|
-
addBottomSpace: boolean;
|
|
2700
|
-
errorText: string;
|
|
2701
|
-
hintText: string;
|
|
2702
|
-
showOptionalInLabel: boolean;
|
|
2703
2772
|
placeholder: string;
|
|
2704
2773
|
hint: string;
|
|
2705
2774
|
preventEmpty: boolean;
|
|
@@ -2744,15 +2813,15 @@ default: undefined;
|
|
|
2744
2813
|
};
|
|
2745
2814
|
disabled: {
|
|
2746
2815
|
type: PropType<boolean>;
|
|
2747
|
-
|
|
2816
|
+
};
|
|
2817
|
+
fieldset: {
|
|
2818
|
+
type: PropType<boolean>;
|
|
2748
2819
|
};
|
|
2749
2820
|
label: {
|
|
2750
2821
|
type: PropType<string>;
|
|
2751
|
-
default: string;
|
|
2752
2822
|
};
|
|
2753
2823
|
id: {
|
|
2754
2824
|
type: PropType<string>;
|
|
2755
|
-
default: string;
|
|
2756
2825
|
};
|
|
2757
2826
|
icon: {
|
|
2758
2827
|
type: PropType<string | boolean>;
|
|
@@ -2762,24 +2831,29 @@ trackBy: {
|
|
|
2762
2831
|
type: PropType<string>;
|
|
2763
2832
|
default: string;
|
|
2764
2833
|
};
|
|
2834
|
+
isRequired: {
|
|
2835
|
+
type: PropType<boolean>;
|
|
2836
|
+
};
|
|
2837
|
+
isDisabled: {
|
|
2838
|
+
type: PropType<boolean>;
|
|
2839
|
+
};
|
|
2765
2840
|
addBottomSpace: {
|
|
2766
2841
|
type: PropType<boolean>;
|
|
2767
|
-
default: boolean;
|
|
2768
2842
|
};
|
|
2769
2843
|
errorText: {
|
|
2770
2844
|
type: PropType<string>;
|
|
2771
|
-
default: string;
|
|
2772
2845
|
};
|
|
2773
2846
|
hintText: {
|
|
2774
2847
|
type: PropType<string>;
|
|
2775
|
-
|
|
2848
|
+
};
|
|
2849
|
+
errorId: {
|
|
2850
|
+
type: PropType<string>;
|
|
2776
2851
|
};
|
|
2777
2852
|
isReadOnly: {
|
|
2778
2853
|
type: PropType<boolean>;
|
|
2779
2854
|
};
|
|
2780
2855
|
showOptionalInLabel: {
|
|
2781
2856
|
type: PropType<boolean>;
|
|
2782
|
-
default: boolean;
|
|
2783
2857
|
};
|
|
2784
2858
|
placeholder: {
|
|
2785
2859
|
type: PropType<string>;
|
|
@@ -2899,15 +2973,8 @@ closed: (selectedOptions: any) => void;
|
|
|
2899
2973
|
lazy: () => any[];
|
|
2900
2974
|
error: string;
|
|
2901
2975
|
name: string;
|
|
2902
|
-
disabled: boolean;
|
|
2903
|
-
label: string;
|
|
2904
|
-
id: string;
|
|
2905
2976
|
icon: string | boolean;
|
|
2906
2977
|
trackBy: string;
|
|
2907
|
-
addBottomSpace: boolean;
|
|
2908
|
-
errorText: string;
|
|
2909
|
-
hintText: string;
|
|
2910
|
-
showOptionalInLabel: boolean;
|
|
2911
2978
|
placeholder: string;
|
|
2912
2979
|
hint: string;
|
|
2913
2980
|
preventEmpty: boolean;
|
|
@@ -4382,30 +4449,36 @@ default: string;
|
|
|
4382
4449
|
};
|
|
4383
4450
|
disabled: {
|
|
4384
4451
|
type: PropType<boolean>;
|
|
4385
|
-
|
|
4452
|
+
};
|
|
4453
|
+
fieldset: {
|
|
4454
|
+
type: PropType<boolean>;
|
|
4386
4455
|
};
|
|
4387
4456
|
label: {
|
|
4388
4457
|
type: PropType<string>;
|
|
4389
|
-
default: undefined;
|
|
4390
4458
|
};
|
|
4391
4459
|
id: {
|
|
4392
4460
|
type: PropType<string>;
|
|
4393
|
-
|
|
4461
|
+
};
|
|
4462
|
+
isRequired: {
|
|
4463
|
+
type: PropType<boolean>;
|
|
4464
|
+
};
|
|
4465
|
+
isDisabled: {
|
|
4466
|
+
type: PropType<boolean>;
|
|
4394
4467
|
};
|
|
4395
4468
|
addBottomSpace: {
|
|
4396
4469
|
type: PropType<boolean>;
|
|
4397
4470
|
};
|
|
4398
4471
|
errorText: {
|
|
4399
4472
|
type: PropType<string>;
|
|
4400
|
-
default: undefined;
|
|
4401
4473
|
};
|
|
4402
4474
|
hintText: {
|
|
4403
4475
|
type: PropType<string>;
|
|
4404
|
-
|
|
4476
|
+
};
|
|
4477
|
+
errorId: {
|
|
4478
|
+
type: PropType<string>;
|
|
4405
4479
|
};
|
|
4406
4480
|
isReadOnly: {
|
|
4407
4481
|
type: PropType<boolean>;
|
|
4408
|
-
default: boolean;
|
|
4409
4482
|
};
|
|
4410
4483
|
showOptionalInLabel: {
|
|
4411
4484
|
type: PropType<boolean>;
|
|
@@ -4440,12 +4513,6 @@ focus: (evt: Event) => void;
|
|
|
4440
4513
|
blur: (evt: Event) => void;
|
|
4441
4514
|
}, PublicProps, {
|
|
4442
4515
|
type: string;
|
|
4443
|
-
disabled: boolean;
|
|
4444
|
-
label: string;
|
|
4445
|
-
id: string;
|
|
4446
|
-
errorText: string;
|
|
4447
|
-
hintText: string;
|
|
4448
|
-
isReadOnly: boolean;
|
|
4449
4516
|
placeholder: string;
|
|
4450
4517
|
modelValue: string | number;
|
|
4451
4518
|
value: string | number | null;
|
|
@@ -4464,30 +4531,36 @@ default: string;
|
|
|
4464
4531
|
};
|
|
4465
4532
|
disabled: {
|
|
4466
4533
|
type: PropType<boolean>;
|
|
4467
|
-
|
|
4534
|
+
};
|
|
4535
|
+
fieldset: {
|
|
4536
|
+
type: PropType<boolean>;
|
|
4468
4537
|
};
|
|
4469
4538
|
label: {
|
|
4470
4539
|
type: PropType<string>;
|
|
4471
|
-
default: undefined;
|
|
4472
4540
|
};
|
|
4473
4541
|
id: {
|
|
4474
4542
|
type: PropType<string>;
|
|
4475
|
-
|
|
4543
|
+
};
|
|
4544
|
+
isRequired: {
|
|
4545
|
+
type: PropType<boolean>;
|
|
4546
|
+
};
|
|
4547
|
+
isDisabled: {
|
|
4548
|
+
type: PropType<boolean>;
|
|
4476
4549
|
};
|
|
4477
4550
|
addBottomSpace: {
|
|
4478
4551
|
type: PropType<boolean>;
|
|
4479
4552
|
};
|
|
4480
4553
|
errorText: {
|
|
4481
4554
|
type: PropType<string>;
|
|
4482
|
-
default: undefined;
|
|
4483
4555
|
};
|
|
4484
4556
|
hintText: {
|
|
4485
4557
|
type: PropType<string>;
|
|
4486
|
-
|
|
4558
|
+
};
|
|
4559
|
+
errorId: {
|
|
4560
|
+
type: PropType<string>;
|
|
4487
4561
|
};
|
|
4488
4562
|
isReadOnly: {
|
|
4489
4563
|
type: PropType<boolean>;
|
|
4490
|
-
default: boolean;
|
|
4491
4564
|
};
|
|
4492
4565
|
showOptionalInLabel: {
|
|
4493
4566
|
type: PropType<boolean>;
|
|
@@ -4517,12 +4590,6 @@ onFocus?: ((evt: Event) => any) | undefined;
|
|
|
4517
4590
|
inputEl: Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
4518
4591
|
}, {}, {}, {}, {
|
|
4519
4592
|
type: string;
|
|
4520
|
-
disabled: boolean;
|
|
4521
|
-
label: string;
|
|
4522
|
-
id: string;
|
|
4523
|
-
errorText: string;
|
|
4524
|
-
hintText: string;
|
|
4525
|
-
isReadOnly: boolean;
|
|
4526
4593
|
placeholder: string;
|
|
4527
4594
|
modelValue: string | number;
|
|
4528
4595
|
value: string | number | null;
|
|
@@ -4538,30 +4605,36 @@ default: string;
|
|
|
4538
4605
|
};
|
|
4539
4606
|
disabled: {
|
|
4540
4607
|
type: PropType<boolean>;
|
|
4541
|
-
|
|
4608
|
+
};
|
|
4609
|
+
fieldset: {
|
|
4610
|
+
type: PropType<boolean>;
|
|
4542
4611
|
};
|
|
4543
4612
|
label: {
|
|
4544
4613
|
type: PropType<string>;
|
|
4545
|
-
default: undefined;
|
|
4546
4614
|
};
|
|
4547
4615
|
id: {
|
|
4548
4616
|
type: PropType<string>;
|
|
4549
|
-
|
|
4617
|
+
};
|
|
4618
|
+
isRequired: {
|
|
4619
|
+
type: PropType<boolean>;
|
|
4620
|
+
};
|
|
4621
|
+
isDisabled: {
|
|
4622
|
+
type: PropType<boolean>;
|
|
4550
4623
|
};
|
|
4551
4624
|
addBottomSpace: {
|
|
4552
4625
|
type: PropType<boolean>;
|
|
4553
4626
|
};
|
|
4554
4627
|
errorText: {
|
|
4555
4628
|
type: PropType<string>;
|
|
4556
|
-
default: undefined;
|
|
4557
4629
|
};
|
|
4558
4630
|
hintText: {
|
|
4559
4631
|
type: PropType<string>;
|
|
4560
|
-
|
|
4632
|
+
};
|
|
4633
|
+
errorId: {
|
|
4634
|
+
type: PropType<string>;
|
|
4561
4635
|
};
|
|
4562
4636
|
isReadOnly: {
|
|
4563
4637
|
type: PropType<boolean>;
|
|
4564
|
-
default: boolean;
|
|
4565
4638
|
};
|
|
4566
4639
|
showOptionalInLabel: {
|
|
4567
4640
|
type: PropType<boolean>;
|
|
@@ -4596,12 +4669,6 @@ focus: (evt: Event) => void;
|
|
|
4596
4669
|
blur: (evt: Event) => void;
|
|
4597
4670
|
}, string, {
|
|
4598
4671
|
type: string;
|
|
4599
|
-
disabled: boolean;
|
|
4600
|
-
label: string;
|
|
4601
|
-
id: string;
|
|
4602
|
-
errorText: string;
|
|
4603
|
-
hintText: string;
|
|
4604
|
-
isReadOnly: boolean;
|
|
4605
4672
|
placeholder: string;
|
|
4606
4673
|
modelValue: string | number;
|
|
4607
4674
|
value: string | number | null;
|