@wra-gov/vue-components 0.27.2 → 0.28.3
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/index.d.ts +8 -0
- package/dist/vue-components.js +366 -350
- package/dist/vue-components.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -132,6 +132,10 @@ forceSelection: {
|
|
|
132
132
|
type: () => boolean;
|
|
133
133
|
default: boolean;
|
|
134
134
|
};
|
|
135
|
+
/** Label that shows when none of the options match */
|
|
136
|
+
notFoundContent: {
|
|
137
|
+
type: () => string;
|
|
138
|
+
};
|
|
135
139
|
}>, {}, {
|
|
136
140
|
userInput: AutocompleteOption;
|
|
137
141
|
hasFocus: boolean;
|
|
@@ -202,6 +206,10 @@ forceSelection: {
|
|
|
202
206
|
type: () => boolean;
|
|
203
207
|
default: boolean;
|
|
204
208
|
};
|
|
209
|
+
/** Label that shows when none of the options match */
|
|
210
|
+
notFoundContent: {
|
|
211
|
+
type: () => string;
|
|
212
|
+
};
|
|
205
213
|
}>> & Readonly<{
|
|
206
214
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
207
215
|
onValidOption?: (...args: any[]) => any;
|