@aures5g/vue-component-library 2.6.2 → 2.6.4
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/src/components/checkbox/UICheckbox.vue.d.ts +7 -18
- package/dist/vue-component-library.css +1 -1
- package/dist/vue-component-library.js +2251 -2672
- package/dist/vue-component-library.umd.cjs +27 -167
- package/package.json +2 -2
- package/dist/src/components/checkbox/uiCheckbox.theme.d.ts +0 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aures5g/vue-component-library",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"storybook": "cross-env NODE_OPTIONS=--max-old-space-size=32768 storybook dev -p 6006",
|
|
41
41
|
"build-storybook": "cross-env NODE_OPTIONS=--max-old-space-size=32768 storybook build",
|
|
42
42
|
"check-version": "./check-version.sh",
|
|
43
|
-
"
|
|
43
|
+
"prepare": "patch-package"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@aures5g/style-guide": "^3.0.1",
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export declare const BASE = "relative hover:after:absolute hover:after:rounded-full hover:after:top-1/2 hover:after:left-1/2 hover:after:-translate-1/2 inline-flex items-center justify-center";
|
|
2
|
-
export declare const NONACTIVE_BASE_BG = "hover:after:bg-on-surface/8";
|
|
3
|
-
export declare const ACTIVE_BASE_BG = "hover:after:bg-primary/8";
|
|
4
|
-
export declare const BASE_DISABLED = "hover:after:transparent";
|
|
5
|
-
export declare const INPUT_STYLE = "size-[1.25rem] z-1 absolute top-1/2 left-1/2 -translate-1/2 appearance-none";
|
|
6
|
-
export declare const INPUT_ACTIVE = "cursor-pointer";
|
|
7
|
-
export declare const INPUT_SELECTED = "border-2 border-primary";
|
|
8
|
-
export declare const BOX_STYLE = "size-[1.25rem] flex justify-center items-center border-2 p-[0.19rem]";
|
|
9
|
-
export declare const BOX_SELECTED = "bg-primary text-on-primary";
|
|
10
|
-
export declare const BOX_ACTIVE = "border-on-surface-variant";
|
|
11
|
-
export declare const BOX_DISABLED = "border-on-surface/38";
|
|
12
|
-
export declare const BOX_DISABLED_SELECTED = "border-on-surface/0 bg-on-surface/38 text-on-primary";
|
|
13
|
-
export declare const ALIGN = "inline-flex items-center";
|
|
14
|
-
export declare const LABEL_LEFT = "order-first";
|