vueless 0.0.366 → 0.0.367

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.
@@ -115,13 +115,13 @@ export default function useUI(defaultConfig = {}, propsConfigGetter = null, topL
115
115
  });
116
116
 
117
117
  if (keysToExtend.includes(key)) {
118
- const { general, extend } = keysToExtendConfig[key];
118
+ const { base, extend } = keysToExtendConfig[key];
119
119
  const keyAttrs = keysAttrs[`${key}Attrs`];
120
120
 
121
121
  keysAttrs[`${key}Attrs`] = computed(() => ({
122
122
  ...keyAttrs.value,
123
123
  class: cx([
124
- ...(Array.isArray(general) ? toValue(general) : [toValue(general)]),
124
+ ...(Array.isArray(base) ? toValue(base) : [toValue(base)]),
125
125
  keyAttrs.value.class,
126
126
  ...(Array.isArray(extend) ? toValue(extend) : [toValue(extend)]),
127
127
  ]),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.366",
3
+ "version": "0.0.367",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.366",
4
+ "version": "0.0.367",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",