wave-ui 3.13.2 → 3.13.4
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/types/components/WInput.d.ts +0 -5
- package/dist/types/components/WTextarea.d.ts +1 -1
- package/dist/wave-ui.cjs.js +1 -1
- package/dist/wave-ui.es.js +826 -802
- package/dist/wave-ui.umd.js +1 -1
- package/package.json +1 -1
- package/src/wave-ui/components/w-autocomplete.vue +21 -4
- package/src/wave-ui/components/w-button/button.vue +12 -12
- package/src/wave-ui/components/w-button/index.vue +2 -2
- package/src/wave-ui/components/w-input.vue +11 -15
- package/src/wave-ui/components/w-switch.vue +12 -8
- package/src/wave-ui/components/w-textarea.vue +12 -8
- package/src/wave-ui/core.js +1 -4
|
@@ -234,11 +234,6 @@ export interface WaveInputComputeds extends ComputedOptions {
|
|
|
234
234
|
* @see https://antoniandre.github.io/wave-ui/w-input
|
|
235
235
|
*/
|
|
236
236
|
attrs: ComputedGetter<any>;
|
|
237
|
-
/**
|
|
238
|
-
* TODO: Add Description
|
|
239
|
-
* @see https://antoniandre.github.io/wave-ui/w-input
|
|
240
|
-
*/
|
|
241
|
-
listeners: ComputedGetter<any>;
|
|
242
237
|
/**
|
|
243
238
|
* TODO: Add Description
|
|
244
239
|
* @see https://antoniandre.github.io/wave-ui/w-input
|
|
@@ -172,7 +172,7 @@ export interface WaveTextareaComputeds extends ComputedOptions {
|
|
|
172
172
|
* TODO: Add Description
|
|
173
173
|
* @see https://antoniandre.github.io/wave-ui/w-textarea
|
|
174
174
|
*/
|
|
175
|
-
|
|
175
|
+
attrs: ComputedGetter<any>;
|
|
176
176
|
/**
|
|
177
177
|
* TODO: Add Description
|
|
178
178
|
* @see https://antoniandre.github.io/wave-ui/w-textarea
|