@leaflink/stash 50.0.6 → 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.
- 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 +135 -108
- 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 +64 -57
- package/dist/InputOptions.js.map +1 -1
- package/dist/InputOptions.vue.d.ts +45 -19
- package/dist/ListView.vue.d.ts +195 -152
- 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,23 +2006,39 @@ 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>;
|
|
2013
|
-
|
|
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>;
|
|
2014
2027
|
};
|
|
2015
2028
|
errorText: {
|
|
2016
2029
|
type: PropType<string>;
|
|
2017
|
-
default: undefined;
|
|
2018
2030
|
};
|
|
2019
2031
|
hintText: {
|
|
2020
2032
|
type: PropType<string>;
|
|
2021
|
-
|
|
2033
|
+
};
|
|
2034
|
+
errorId: {
|
|
2035
|
+
type: PropType<string>;
|
|
2022
2036
|
};
|
|
2023
2037
|
isReadOnly: {
|
|
2024
2038
|
type: PropType<boolean>;
|
|
2025
|
-
|
|
2039
|
+
};
|
|
2040
|
+
showOptionalInLabel: {
|
|
2041
|
+
type: PropType<boolean>;
|
|
2026
2042
|
};
|
|
2027
2043
|
placeholder: {
|
|
2028
2044
|
type: PropType<string>;
|
|
@@ -2039,7 +2055,9 @@ option?: any;
|
|
|
2039
2055
|
}>;
|
|
2040
2056
|
default: () => {
|
|
2041
2057
|
value: string;
|
|
2042
|
-
option: undefined;
|
|
2058
|
+
option: undefined; /**
|
|
2059
|
+
* Validation schema function that returns an object
|
|
2060
|
+
*/
|
|
2043
2061
|
};
|
|
2044
2062
|
};
|
|
2045
2063
|
noTruncate: {
|
|
@@ -2057,14 +2075,18 @@ type: "input" | "select";
|
|
|
2057
2075
|
value?: string | undefined;
|
|
2058
2076
|
option?: any;
|
|
2059
2077
|
isValueChange: boolean;
|
|
2060
|
-
type: "input" | "select";
|
|
2078
|
+
type: "input" | "select"; /**
|
|
2079
|
+
* Hide the Select All checkbox for bulk actions
|
|
2080
|
+
*/
|
|
2061
2081
|
}) => any) | undefined;
|
|
2062
2082
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2063
2083
|
"update:model-value": (v: {
|
|
2064
2084
|
value?: string | undefined;
|
|
2065
2085
|
option?: any;
|
|
2066
2086
|
isValueChange: boolean;
|
|
2067
|
-
type: "input" | "select";
|
|
2087
|
+
type: "input" | "select"; /**
|
|
2088
|
+
* Hide the Select All checkbox for bulk actions
|
|
2089
|
+
*/
|
|
2068
2090
|
}) => void;
|
|
2069
2091
|
change: (v: {
|
|
2070
2092
|
value?: string | undefined;
|
|
@@ -2074,11 +2096,6 @@ type: "input" | "select";
|
|
|
2074
2096
|
}) => void;
|
|
2075
2097
|
}, PublicProps, {
|
|
2076
2098
|
type: string;
|
|
2077
|
-
disabled: boolean;
|
|
2078
|
-
label: string;
|
|
2079
|
-
errorText: string;
|
|
2080
|
-
hintText: string;
|
|
2081
|
-
isReadOnly: boolean;
|
|
2082
2099
|
placeholder: string;
|
|
2083
2100
|
options: any[];
|
|
2084
2101
|
modelValue: {
|
|
@@ -2100,23 +2117,39 @@ default: string;
|
|
|
2100
2117
|
};
|
|
2101
2118
|
disabled: {
|
|
2102
2119
|
type: PropType<boolean>;
|
|
2103
|
-
|
|
2120
|
+
};
|
|
2121
|
+
fieldset: {
|
|
2122
|
+
type: PropType<boolean>;
|
|
2104
2123
|
};
|
|
2105
2124
|
label: {
|
|
2106
2125
|
type: PropType<string>;
|
|
2107
|
-
|
|
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>;
|
|
2108
2138
|
};
|
|
2109
2139
|
errorText: {
|
|
2110
2140
|
type: PropType<string>;
|
|
2111
|
-
default: undefined;
|
|
2112
2141
|
};
|
|
2113
2142
|
hintText: {
|
|
2114
2143
|
type: PropType<string>;
|
|
2115
|
-
|
|
2144
|
+
};
|
|
2145
|
+
errorId: {
|
|
2146
|
+
type: PropType<string>;
|
|
2116
2147
|
};
|
|
2117
2148
|
isReadOnly: {
|
|
2118
2149
|
type: PropType<boolean>;
|
|
2119
|
-
|
|
2150
|
+
};
|
|
2151
|
+
showOptionalInLabel: {
|
|
2152
|
+
type: PropType<boolean>;
|
|
2120
2153
|
};
|
|
2121
2154
|
placeholder: {
|
|
2122
2155
|
type: PropType<string>;
|
|
@@ -2133,7 +2166,9 @@ option?: any;
|
|
|
2133
2166
|
}>;
|
|
2134
2167
|
default: () => {
|
|
2135
2168
|
value: string;
|
|
2136
|
-
option: undefined;
|
|
2169
|
+
option: undefined; /**
|
|
2170
|
+
* Validation schema function that returns an object
|
|
2171
|
+
*/
|
|
2137
2172
|
};
|
|
2138
2173
|
};
|
|
2139
2174
|
noTruncate: {
|
|
@@ -2151,15 +2186,12 @@ type: "input" | "select";
|
|
|
2151
2186
|
value?: string | undefined;
|
|
2152
2187
|
option?: any;
|
|
2153
2188
|
isValueChange: boolean;
|
|
2154
|
-
type: "input" | "select";
|
|
2189
|
+
type: "input" | "select"; /**
|
|
2190
|
+
* Hide the Select All checkbox for bulk actions
|
|
2191
|
+
*/
|
|
2155
2192
|
}) => any) | undefined;
|
|
2156
2193
|
}>, {}, {}, {}, {}, {
|
|
2157
2194
|
type: string;
|
|
2158
|
-
disabled: boolean;
|
|
2159
|
-
label: string;
|
|
2160
|
-
errorText: string;
|
|
2161
|
-
hintText: string;
|
|
2162
|
-
isReadOnly: boolean;
|
|
2163
2195
|
placeholder: string;
|
|
2164
2196
|
options: any[];
|
|
2165
2197
|
modelValue: {
|
|
@@ -2178,23 +2210,39 @@ default: string;
|
|
|
2178
2210
|
};
|
|
2179
2211
|
disabled: {
|
|
2180
2212
|
type: PropType<boolean>;
|
|
2181
|
-
|
|
2213
|
+
};
|
|
2214
|
+
fieldset: {
|
|
2215
|
+
type: PropType<boolean>;
|
|
2182
2216
|
};
|
|
2183
2217
|
label: {
|
|
2184
2218
|
type: PropType<string>;
|
|
2185
|
-
|
|
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>;
|
|
2186
2231
|
};
|
|
2187
2232
|
errorText: {
|
|
2188
2233
|
type: PropType<string>;
|
|
2189
|
-
default: undefined;
|
|
2190
2234
|
};
|
|
2191
2235
|
hintText: {
|
|
2192
2236
|
type: PropType<string>;
|
|
2193
|
-
|
|
2237
|
+
};
|
|
2238
|
+
errorId: {
|
|
2239
|
+
type: PropType<string>;
|
|
2194
2240
|
};
|
|
2195
2241
|
isReadOnly: {
|
|
2196
2242
|
type: PropType<boolean>;
|
|
2197
|
-
|
|
2243
|
+
};
|
|
2244
|
+
showOptionalInLabel: {
|
|
2245
|
+
type: PropType<boolean>;
|
|
2198
2246
|
};
|
|
2199
2247
|
placeholder: {
|
|
2200
2248
|
type: PropType<string>;
|
|
@@ -2211,7 +2259,9 @@ option?: any;
|
|
|
2211
2259
|
}>;
|
|
2212
2260
|
default: () => {
|
|
2213
2261
|
value: string;
|
|
2214
|
-
option: undefined;
|
|
2262
|
+
option: undefined; /**
|
|
2263
|
+
* Validation schema function that returns an object
|
|
2264
|
+
*/
|
|
2215
2265
|
};
|
|
2216
2266
|
};
|
|
2217
2267
|
noTruncate: {
|
|
@@ -2229,14 +2279,18 @@ type: "input" | "select";
|
|
|
2229
2279
|
value?: string | undefined;
|
|
2230
2280
|
option?: any;
|
|
2231
2281
|
isValueChange: boolean;
|
|
2232
|
-
type: "input" | "select";
|
|
2282
|
+
type: "input" | "select"; /**
|
|
2283
|
+
* Hide the Select All checkbox for bulk actions
|
|
2284
|
+
*/
|
|
2233
2285
|
}) => any) | undefined;
|
|
2234
2286
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2235
2287
|
"update:model-value": (v: {
|
|
2236
2288
|
value?: string | undefined;
|
|
2237
2289
|
option?: any;
|
|
2238
2290
|
isValueChange: boolean;
|
|
2239
|
-
type: "input" | "select";
|
|
2291
|
+
type: "input" | "select"; /**
|
|
2292
|
+
* Hide the Select All checkbox for bulk actions
|
|
2293
|
+
*/
|
|
2240
2294
|
}) => void;
|
|
2241
2295
|
change: (v: {
|
|
2242
2296
|
value?: string | undefined;
|
|
@@ -2246,11 +2300,6 @@ type: "input" | "select";
|
|
|
2246
2300
|
}) => void;
|
|
2247
2301
|
}, string, {
|
|
2248
2302
|
type: string;
|
|
2249
|
-
disabled: boolean;
|
|
2250
|
-
label: string;
|
|
2251
|
-
errorText: string;
|
|
2252
|
-
hintText: string;
|
|
2253
|
-
isReadOnly: boolean;
|
|
2254
2303
|
placeholder: string;
|
|
2255
2304
|
options: any[];
|
|
2256
2305
|
modelValue: {
|
|
@@ -2332,15 +2381,15 @@ default: undefined;
|
|
|
2332
2381
|
};
|
|
2333
2382
|
disabled: {
|
|
2334
2383
|
type: PropType<boolean>;
|
|
2335
|
-
|
|
2384
|
+
};
|
|
2385
|
+
fieldset: {
|
|
2386
|
+
type: PropType<boolean>;
|
|
2336
2387
|
};
|
|
2337
2388
|
label: {
|
|
2338
2389
|
type: PropType<string>;
|
|
2339
|
-
default: string;
|
|
2340
2390
|
};
|
|
2341
2391
|
id: {
|
|
2342
2392
|
type: PropType<string>;
|
|
2343
|
-
default: string;
|
|
2344
2393
|
};
|
|
2345
2394
|
icon: {
|
|
2346
2395
|
type: PropType<string | boolean>;
|
|
@@ -2350,24 +2399,29 @@ trackBy: {
|
|
|
2350
2399
|
type: PropType<string>;
|
|
2351
2400
|
default: string;
|
|
2352
2401
|
};
|
|
2402
|
+
isRequired: {
|
|
2403
|
+
type: PropType<boolean>;
|
|
2404
|
+
};
|
|
2405
|
+
isDisabled: {
|
|
2406
|
+
type: PropType<boolean>;
|
|
2407
|
+
};
|
|
2353
2408
|
addBottomSpace: {
|
|
2354
2409
|
type: PropType<boolean>;
|
|
2355
|
-
default: boolean;
|
|
2356
2410
|
};
|
|
2357
2411
|
errorText: {
|
|
2358
2412
|
type: PropType<string>;
|
|
2359
|
-
default: string;
|
|
2360
2413
|
};
|
|
2361
2414
|
hintText: {
|
|
2362
2415
|
type: PropType<string>;
|
|
2363
|
-
|
|
2416
|
+
};
|
|
2417
|
+
errorId: {
|
|
2418
|
+
type: PropType<string>;
|
|
2364
2419
|
};
|
|
2365
2420
|
isReadOnly: {
|
|
2366
2421
|
type: PropType<boolean>;
|
|
2367
2422
|
};
|
|
2368
2423
|
showOptionalInLabel: {
|
|
2369
2424
|
type: PropType<boolean>;
|
|
2370
|
-
default: boolean;
|
|
2371
2425
|
};
|
|
2372
2426
|
placeholder: {
|
|
2373
2427
|
type: PropType<string>;
|
|
@@ -2487,15 +2541,8 @@ closed: (selectedOptions: any) => void;
|
|
|
2487
2541
|
lazy: () => any[];
|
|
2488
2542
|
error: string;
|
|
2489
2543
|
name: string;
|
|
2490
|
-
disabled: boolean;
|
|
2491
|
-
label: string;
|
|
2492
|
-
id: string;
|
|
2493
2544
|
icon: string | boolean;
|
|
2494
2545
|
trackBy: string;
|
|
2495
|
-
addBottomSpace: boolean;
|
|
2496
|
-
errorText: string;
|
|
2497
|
-
hintText: string;
|
|
2498
|
-
showOptionalInLabel: boolean;
|
|
2499
2546
|
placeholder: string;
|
|
2500
2547
|
hint: string;
|
|
2501
2548
|
preventEmpty: boolean;
|
|
@@ -2543,15 +2590,15 @@ default: undefined;
|
|
|
2543
2590
|
};
|
|
2544
2591
|
disabled: {
|
|
2545
2592
|
type: PropType<boolean>;
|
|
2546
|
-
|
|
2593
|
+
};
|
|
2594
|
+
fieldset: {
|
|
2595
|
+
type: PropType<boolean>;
|
|
2547
2596
|
};
|
|
2548
2597
|
label: {
|
|
2549
2598
|
type: PropType<string>;
|
|
2550
|
-
default: string;
|
|
2551
2599
|
};
|
|
2552
2600
|
id: {
|
|
2553
2601
|
type: PropType<string>;
|
|
2554
|
-
default: string;
|
|
2555
2602
|
};
|
|
2556
2603
|
icon: {
|
|
2557
2604
|
type: PropType<string | boolean>;
|
|
@@ -2561,24 +2608,29 @@ trackBy: {
|
|
|
2561
2608
|
type: PropType<string>;
|
|
2562
2609
|
default: string;
|
|
2563
2610
|
};
|
|
2611
|
+
isRequired: {
|
|
2612
|
+
type: PropType<boolean>;
|
|
2613
|
+
};
|
|
2614
|
+
isDisabled: {
|
|
2615
|
+
type: PropType<boolean>;
|
|
2616
|
+
};
|
|
2564
2617
|
addBottomSpace: {
|
|
2565
2618
|
type: PropType<boolean>;
|
|
2566
|
-
default: boolean;
|
|
2567
2619
|
};
|
|
2568
2620
|
errorText: {
|
|
2569
2621
|
type: PropType<string>;
|
|
2570
|
-
default: string;
|
|
2571
2622
|
};
|
|
2572
2623
|
hintText: {
|
|
2573
2624
|
type: PropType<string>;
|
|
2574
|
-
|
|
2625
|
+
};
|
|
2626
|
+
errorId: {
|
|
2627
|
+
type: PropType<string>;
|
|
2575
2628
|
};
|
|
2576
2629
|
isReadOnly: {
|
|
2577
2630
|
type: PropType<boolean>;
|
|
2578
2631
|
};
|
|
2579
2632
|
showOptionalInLabel: {
|
|
2580
2633
|
type: PropType<boolean>;
|
|
2581
|
-
default: boolean;
|
|
2582
2634
|
};
|
|
2583
2635
|
placeholder: {
|
|
2584
2636
|
type: PropType<string>;
|
|
@@ -2691,15 +2743,8 @@ onClosed?: ((selectedOptions: any) => any) | undefined;
|
|
|
2691
2743
|
lazy: () => any[];
|
|
2692
2744
|
error: string;
|
|
2693
2745
|
name: string;
|
|
2694
|
-
disabled: boolean;
|
|
2695
|
-
label: string;
|
|
2696
|
-
id: string;
|
|
2697
2746
|
icon: string | boolean;
|
|
2698
2747
|
trackBy: string;
|
|
2699
|
-
addBottomSpace: boolean;
|
|
2700
|
-
errorText: string;
|
|
2701
|
-
hintText: string;
|
|
2702
|
-
showOptionalInLabel: boolean;
|
|
2703
2748
|
placeholder: string;
|
|
2704
2749
|
hint: string;
|
|
2705
2750
|
preventEmpty: boolean;
|
|
@@ -2744,15 +2789,15 @@ default: undefined;
|
|
|
2744
2789
|
};
|
|
2745
2790
|
disabled: {
|
|
2746
2791
|
type: PropType<boolean>;
|
|
2747
|
-
|
|
2792
|
+
};
|
|
2793
|
+
fieldset: {
|
|
2794
|
+
type: PropType<boolean>;
|
|
2748
2795
|
};
|
|
2749
2796
|
label: {
|
|
2750
2797
|
type: PropType<string>;
|
|
2751
|
-
default: string;
|
|
2752
2798
|
};
|
|
2753
2799
|
id: {
|
|
2754
2800
|
type: PropType<string>;
|
|
2755
|
-
default: string;
|
|
2756
2801
|
};
|
|
2757
2802
|
icon: {
|
|
2758
2803
|
type: PropType<string | boolean>;
|
|
@@ -2762,24 +2807,29 @@ trackBy: {
|
|
|
2762
2807
|
type: PropType<string>;
|
|
2763
2808
|
default: string;
|
|
2764
2809
|
};
|
|
2810
|
+
isRequired: {
|
|
2811
|
+
type: PropType<boolean>;
|
|
2812
|
+
};
|
|
2813
|
+
isDisabled: {
|
|
2814
|
+
type: PropType<boolean>;
|
|
2815
|
+
};
|
|
2765
2816
|
addBottomSpace: {
|
|
2766
2817
|
type: PropType<boolean>;
|
|
2767
|
-
default: boolean;
|
|
2768
2818
|
};
|
|
2769
2819
|
errorText: {
|
|
2770
2820
|
type: PropType<string>;
|
|
2771
|
-
default: string;
|
|
2772
2821
|
};
|
|
2773
2822
|
hintText: {
|
|
2774
2823
|
type: PropType<string>;
|
|
2775
|
-
|
|
2824
|
+
};
|
|
2825
|
+
errorId: {
|
|
2826
|
+
type: PropType<string>;
|
|
2776
2827
|
};
|
|
2777
2828
|
isReadOnly: {
|
|
2778
2829
|
type: PropType<boolean>;
|
|
2779
2830
|
};
|
|
2780
2831
|
showOptionalInLabel: {
|
|
2781
2832
|
type: PropType<boolean>;
|
|
2782
|
-
default: boolean;
|
|
2783
2833
|
};
|
|
2784
2834
|
placeholder: {
|
|
2785
2835
|
type: PropType<string>;
|
|
@@ -2899,15 +2949,8 @@ closed: (selectedOptions: any) => void;
|
|
|
2899
2949
|
lazy: () => any[];
|
|
2900
2950
|
error: string;
|
|
2901
2951
|
name: string;
|
|
2902
|
-
disabled: boolean;
|
|
2903
|
-
label: string;
|
|
2904
|
-
id: string;
|
|
2905
2952
|
icon: string | boolean;
|
|
2906
2953
|
trackBy: string;
|
|
2907
|
-
addBottomSpace: boolean;
|
|
2908
|
-
errorText: string;
|
|
2909
|
-
hintText: string;
|
|
2910
|
-
showOptionalInLabel: boolean;
|
|
2911
2954
|
placeholder: string;
|
|
2912
2955
|
hint: string;
|
|
2913
2956
|
preventEmpty: boolean;
|
|
@@ -4382,30 +4425,36 @@ default: string;
|
|
|
4382
4425
|
};
|
|
4383
4426
|
disabled: {
|
|
4384
4427
|
type: PropType<boolean>;
|
|
4385
|
-
|
|
4428
|
+
};
|
|
4429
|
+
fieldset: {
|
|
4430
|
+
type: PropType<boolean>;
|
|
4386
4431
|
};
|
|
4387
4432
|
label: {
|
|
4388
4433
|
type: PropType<string>;
|
|
4389
|
-
default: undefined;
|
|
4390
4434
|
};
|
|
4391
4435
|
id: {
|
|
4392
4436
|
type: PropType<string>;
|
|
4393
|
-
|
|
4437
|
+
};
|
|
4438
|
+
isRequired: {
|
|
4439
|
+
type: PropType<boolean>;
|
|
4440
|
+
};
|
|
4441
|
+
isDisabled: {
|
|
4442
|
+
type: PropType<boolean>;
|
|
4394
4443
|
};
|
|
4395
4444
|
addBottomSpace: {
|
|
4396
4445
|
type: PropType<boolean>;
|
|
4397
4446
|
};
|
|
4398
4447
|
errorText: {
|
|
4399
4448
|
type: PropType<string>;
|
|
4400
|
-
default: undefined;
|
|
4401
4449
|
};
|
|
4402
4450
|
hintText: {
|
|
4403
4451
|
type: PropType<string>;
|
|
4404
|
-
|
|
4452
|
+
};
|
|
4453
|
+
errorId: {
|
|
4454
|
+
type: PropType<string>;
|
|
4405
4455
|
};
|
|
4406
4456
|
isReadOnly: {
|
|
4407
4457
|
type: PropType<boolean>;
|
|
4408
|
-
default: boolean;
|
|
4409
4458
|
};
|
|
4410
4459
|
showOptionalInLabel: {
|
|
4411
4460
|
type: PropType<boolean>;
|
|
@@ -4440,12 +4489,6 @@ focus: (evt: Event) => void;
|
|
|
4440
4489
|
blur: (evt: Event) => void;
|
|
4441
4490
|
}, PublicProps, {
|
|
4442
4491
|
type: string;
|
|
4443
|
-
disabled: boolean;
|
|
4444
|
-
label: string;
|
|
4445
|
-
id: string;
|
|
4446
|
-
errorText: string;
|
|
4447
|
-
hintText: string;
|
|
4448
|
-
isReadOnly: boolean;
|
|
4449
4492
|
placeholder: string;
|
|
4450
4493
|
modelValue: string | number;
|
|
4451
4494
|
value: string | number | null;
|
|
@@ -4464,30 +4507,36 @@ default: string;
|
|
|
4464
4507
|
};
|
|
4465
4508
|
disabled: {
|
|
4466
4509
|
type: PropType<boolean>;
|
|
4467
|
-
|
|
4510
|
+
};
|
|
4511
|
+
fieldset: {
|
|
4512
|
+
type: PropType<boolean>;
|
|
4468
4513
|
};
|
|
4469
4514
|
label: {
|
|
4470
4515
|
type: PropType<string>;
|
|
4471
|
-
default: undefined;
|
|
4472
4516
|
};
|
|
4473
4517
|
id: {
|
|
4474
4518
|
type: PropType<string>;
|
|
4475
|
-
|
|
4519
|
+
};
|
|
4520
|
+
isRequired: {
|
|
4521
|
+
type: PropType<boolean>;
|
|
4522
|
+
};
|
|
4523
|
+
isDisabled: {
|
|
4524
|
+
type: PropType<boolean>;
|
|
4476
4525
|
};
|
|
4477
4526
|
addBottomSpace: {
|
|
4478
4527
|
type: PropType<boolean>;
|
|
4479
4528
|
};
|
|
4480
4529
|
errorText: {
|
|
4481
4530
|
type: PropType<string>;
|
|
4482
|
-
default: undefined;
|
|
4483
4531
|
};
|
|
4484
4532
|
hintText: {
|
|
4485
4533
|
type: PropType<string>;
|
|
4486
|
-
|
|
4534
|
+
};
|
|
4535
|
+
errorId: {
|
|
4536
|
+
type: PropType<string>;
|
|
4487
4537
|
};
|
|
4488
4538
|
isReadOnly: {
|
|
4489
4539
|
type: PropType<boolean>;
|
|
4490
|
-
default: boolean;
|
|
4491
4540
|
};
|
|
4492
4541
|
showOptionalInLabel: {
|
|
4493
4542
|
type: PropType<boolean>;
|
|
@@ -4517,12 +4566,6 @@ onFocus?: ((evt: Event) => any) | undefined;
|
|
|
4517
4566
|
inputEl: Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
4518
4567
|
}, {}, {}, {}, {
|
|
4519
4568
|
type: string;
|
|
4520
|
-
disabled: boolean;
|
|
4521
|
-
label: string;
|
|
4522
|
-
id: string;
|
|
4523
|
-
errorText: string;
|
|
4524
|
-
hintText: string;
|
|
4525
|
-
isReadOnly: boolean;
|
|
4526
4569
|
placeholder: string;
|
|
4527
4570
|
modelValue: string | number;
|
|
4528
4571
|
value: string | number | null;
|
|
@@ -4538,30 +4581,36 @@ default: string;
|
|
|
4538
4581
|
};
|
|
4539
4582
|
disabled: {
|
|
4540
4583
|
type: PropType<boolean>;
|
|
4541
|
-
|
|
4584
|
+
};
|
|
4585
|
+
fieldset: {
|
|
4586
|
+
type: PropType<boolean>;
|
|
4542
4587
|
};
|
|
4543
4588
|
label: {
|
|
4544
4589
|
type: PropType<string>;
|
|
4545
|
-
default: undefined;
|
|
4546
4590
|
};
|
|
4547
4591
|
id: {
|
|
4548
4592
|
type: PropType<string>;
|
|
4549
|
-
|
|
4593
|
+
};
|
|
4594
|
+
isRequired: {
|
|
4595
|
+
type: PropType<boolean>;
|
|
4596
|
+
};
|
|
4597
|
+
isDisabled: {
|
|
4598
|
+
type: PropType<boolean>;
|
|
4550
4599
|
};
|
|
4551
4600
|
addBottomSpace: {
|
|
4552
4601
|
type: PropType<boolean>;
|
|
4553
4602
|
};
|
|
4554
4603
|
errorText: {
|
|
4555
4604
|
type: PropType<string>;
|
|
4556
|
-
default: undefined;
|
|
4557
4605
|
};
|
|
4558
4606
|
hintText: {
|
|
4559
4607
|
type: PropType<string>;
|
|
4560
|
-
|
|
4608
|
+
};
|
|
4609
|
+
errorId: {
|
|
4610
|
+
type: PropType<string>;
|
|
4561
4611
|
};
|
|
4562
4612
|
isReadOnly: {
|
|
4563
4613
|
type: PropType<boolean>;
|
|
4564
|
-
default: boolean;
|
|
4565
4614
|
};
|
|
4566
4615
|
showOptionalInLabel: {
|
|
4567
4616
|
type: PropType<boolean>;
|
|
@@ -4596,12 +4645,6 @@ focus: (evt: Event) => void;
|
|
|
4596
4645
|
blur: (evt: Event) => void;
|
|
4597
4646
|
}, string, {
|
|
4598
4647
|
type: string;
|
|
4599
|
-
disabled: boolean;
|
|
4600
|
-
label: string;
|
|
4601
|
-
id: string;
|
|
4602
|
-
errorText: string;
|
|
4603
|
-
hintText: string;
|
|
4604
|
-
isReadOnly: boolean;
|
|
4605
4648
|
placeholder: string;
|
|
4606
4649
|
modelValue: string | number;
|
|
4607
4650
|
value: string | number | null;
|