wave-ui 3.26.1 → 3.27.1
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/types/components/WForm.d.ts +2 -1
- package/dist/types/types/components/WFormElement.d.ts +6 -0
- package/dist/wave-ui.cjs.js +3 -3
- package/dist/wave-ui.esm.js +725 -684
- package/dist/wave-ui.umd.js +3 -3
- package/package.json +2 -2
- package/src/wave-ui/components/w-accordion/item.vue +8 -3
- package/src/wave-ui/components/w-checkbox.vue +8 -8
- package/src/wave-ui/components/w-checkboxes.vue +2 -2
- package/src/wave-ui/components/w-form-element.vue +10 -1
- package/src/wave-ui/components/w-form.vue +3 -2
- package/src/wave-ui/components/w-input.vue +13 -13
- package/src/wave-ui/components/w-list.vue +8 -1
- package/src/wave-ui/components/w-radio.vue +8 -8
- package/src/wave-ui/components/w-radios.vue +2 -2
- package/src/wave-ui/components/w-rating.vue +4 -4
- package/src/wave-ui/components/w-select.vue +12 -7
- package/src/wave-ui/components/w-slider.vue +14 -9
- package/src/wave-ui/components/w-switch.vue +6 -6
- package/src/wave-ui/components/w-tabs/index.vue +7 -4
- package/src/wave-ui/components/w-textarea.vue +10 -10
- package/src/wave-ui/components/w-tooltip.vue +7 -1
- package/src/wave-ui/mixins/form-elements.js +22 -2
|
@@ -24,7 +24,8 @@ export interface WaveFormProps {
|
|
|
24
24
|
*/
|
|
25
25
|
noKeyupValidation?: boolean;
|
|
26
26
|
/**
|
|
27
|
-
* Prevents
|
|
27
|
+
* Prevents validation on blur for all fields (blur validation is on by default).
|
|
28
|
+
* A field can override with its own `no-blur-validation` prop (`true` / `false` / unset to inherit).
|
|
28
29
|
* @property {boolean} noBlurValidation
|
|
29
30
|
* @see https://antoniandre.github.io/wave-ui/w-form
|
|
30
31
|
*/
|
|
@@ -31,6 +31,12 @@ export interface WaveFormElementProps {
|
|
|
31
31
|
* @see https://antoniandre.github.io/wave-ui/w-form-element
|
|
32
32
|
*/
|
|
33
33
|
validators?: Array<any>;
|
|
34
|
+
/**
|
|
35
|
+
* Per-element blur validation: `true` skips blur, `false` forces blur even when `w-form` sets `no-blur-validation`, unset inherits the form.
|
|
36
|
+
* @property {boolean} noBlurValidation
|
|
37
|
+
* @see https://antoniandre.github.io/wave-ui/w-form-element
|
|
38
|
+
*/
|
|
39
|
+
noBlurValidation?: boolean;
|
|
34
40
|
/**
|
|
35
41
|
* TODO: Add Description
|
|
36
42
|
* @property {any} isFocused - Default: false
|