vueless 0.0.11 → 0.0.12
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 +2 -1
- package/service.ui/index.js +1 -1
- package/ui.image-icon/index.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Vue Styleless Component Framework.",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"sb:build": "STORYBOOK_VUELESS_ENV=1 storybook build",
|
|
20
20
|
"sb:preview": "vite preview --host --outDir=storybook-static",
|
|
21
21
|
"vueless:update": "yarn add -D file:../vite-plugin-vueless file:../vueless-storybook",
|
|
22
|
+
"vueless:publish": "rm -rf dist && mkdir -p dist && cp -r src/* package.json LICENSE web-types.json README.md dist/ && npm publish ./dist",
|
|
22
23
|
"postinstall": "node .web-types-gen"
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
package/service.ui/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { defineConfig } from "cva";
|
|
|
3
3
|
import { twMerge } from "tailwind-merge";
|
|
4
4
|
import colors from "tailwindcss/colors";
|
|
5
5
|
import { brandColors, grayColors } from "../service.tailwind";
|
|
6
|
-
import vuelessConfig from "
|
|
6
|
+
import vuelessConfig from "../../../vueless.config.js";
|
|
7
7
|
|
|
8
8
|
/*
|
|
9
9
|
Export cva (class variance authority) methods extended with tailwind-merge.
|
package/ui.image-icon/index.vue
CHANGED
|
@@ -157,7 +157,7 @@ if (import.meta.env.PROD) {
|
|
|
157
157
|
);
|
|
158
158
|
} else {
|
|
159
159
|
generatedIcons = Object.entries(
|
|
160
|
-
import.meta.glob(
|
|
160
|
+
import.meta.glob(`../../../src/assets/images/.generated/**/*.svg`, {
|
|
161
161
|
eager: true,
|
|
162
162
|
query: "?component",
|
|
163
163
|
}),
|