vueless 0.0.81 → 0.0.83

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.81",
3
+ "version": "0.0.83",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless Component Framework.",
6
6
  "homepage": "https://vueless.com",
@@ -159,7 +159,7 @@ const dynamicComponent = computed(() => {
159
159
  const FILL_SUFFIX = "-fill";
160
160
 
161
161
  const defaultLibrary = defaultConfig.defaultVariants.library;
162
- const userLibrary = defaultConfig.defaultVariants.library;
162
+ const userLibrary = config.value.defaultVariants.library;
163
163
 
164
164
  const library = props.internal && defaultLibrary === userLibrary ? "vueless" : userLibrary;
165
165
  const style = config.value.defaultVariants.style;
@@ -205,8 +205,8 @@ const dynamicComponent = computed(() => {
205
205
  const fillType = isFill ? "solid" : "outline";
206
206
 
207
207
  return import.meta.env.PROD
208
- ? await getIcon([library, style, fillType, name])
209
- : import(/* @vite-ignore */ `/node_modules/${library}/${style}/${fillType}/${name}.svg?component`);
208
+ ? await getIcon([library, fillType, name])
209
+ : import(/* @vite-ignore */ `/node_modules/${library}/24/${fillType}/${name}.svg?component`);
210
210
  },
211
211
  };
212
212
  /* eslint-enable vue/max-len, prettier/prettier */
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.81",
4
+ "version": "0.0.83",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",