wave-ui 3.12.0 → 3.13.2
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/$waveui.d.ts +6 -0
- package/dist/wave-ui.cjs.js +1 -1
- package/dist/wave-ui.es.js +1123 -1098
- package/dist/wave-ui.umd.js +1 -1
- package/package.json +17 -17
- package/src/wave-ui/components/w-alert.vue +1 -1
- package/src/wave-ui/components/w-badge.vue +1 -1
- package/src/wave-ui/components/w-button/button.vue +7 -3
- package/src/wave-ui/components/w-icon.vue +0 -1
- package/src/wave-ui/components/w-input.vue +2 -1
- package/src/wave-ui/components/w-switch.vue +8 -1
- package/src/wave-ui/components/w-tag.vue +0 -1
- package/src/wave-ui/components/w-textarea.vue +2 -1
- package/src/wave-ui/core.js +1 -1
- package/src/wave-ui/utils/config.js +4 -0
- package/src/wave-ui/utils/dynamic-css.js +6 -3
package/dist/types/$waveui.d.ts
CHANGED
|
@@ -60,6 +60,12 @@ export interface $waveui {
|
|
|
60
60
|
* @property {boolean} colorShades - Default: true
|
|
61
61
|
*/
|
|
62
62
|
colorShades: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Generate CSS variables for color shades.
|
|
65
|
+
* NOTE: the `colorShades` must be enabled for this to work.
|
|
66
|
+
* @property {boolean} colorShadeCssVariables - Default: false
|
|
67
|
+
*/
|
|
68
|
+
colorShadeCssVariables: boolean;
|
|
63
69
|
/**
|
|
64
70
|
* Generate margin and padding utility classes for each breakpoint. E.g. `sm-ma2`
|
|
65
71
|
* @property {boolean} breakpointSpaces - Default: false
|