@aures5g/vue-component-library 2.5.4 → 2.6.1
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/segmentedButton/SegmentedButtonCore.vue.d.ts +1 -1
- package/dist/src/components/textField/UITextField.vue.d.ts +14 -22
- package/dist/vue-component-library.css +1 -1
- package/dist/vue-component-library.js +2203 -2190
- package/dist/vue-component-library.umd.cjs +155 -155
- package/package.json +10 -8
- package/dist/src/components/textField/uiTextField.theme.d.ts +0 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aures5g/vue-component-library",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -39,16 +39,17 @@
|
|
|
39
39
|
"format:check": "prettier --check .",
|
|
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
|
-
"check-version": "./check-version.sh"
|
|
42
|
+
"check-version": "./check-version.sh",
|
|
43
|
+
"postinstall": "patch-package"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
46
|
"@aures5g/style-guide": "^3.0.1",
|
|
46
47
|
"@awesome.me/kit-bccbe657bb": "^1.0.180",
|
|
47
|
-
"@chromatic-com/storybook": "^4.
|
|
48
|
+
"@chromatic-com/storybook": "^4.1.1",
|
|
48
49
|
"@fortawesome/vue-fontawesome": "^3.0.8",
|
|
49
|
-
"@storybook/addon-docs": "^9.
|
|
50
|
-
"@storybook/addon-links": "^9.
|
|
51
|
-
"@storybook/vue3-vite": "^9.
|
|
50
|
+
"@storybook/addon-docs": "^9.1.2",
|
|
51
|
+
"@storybook/addon-links": "^9.1.2",
|
|
52
|
+
"@storybook/vue3-vite": "^9.1.2",
|
|
52
53
|
"@tailwindcss/vite": "^4.1.11",
|
|
53
54
|
"@tsconfig/node20": "^20.1.6",
|
|
54
55
|
"@types/jsdom": "^21.1.7",
|
|
@@ -63,13 +64,14 @@
|
|
|
63
64
|
"@vueuse/core": "^13.5.0",
|
|
64
65
|
"cross-env": "^7.0.3",
|
|
65
66
|
"eslint": "^9.30.1",
|
|
66
|
-
"eslint-plugin-storybook": "^9.
|
|
67
|
+
"eslint-plugin-storybook": "^9.1.2",
|
|
67
68
|
"eslint-plugin-vue": "^10.3.0",
|
|
68
69
|
"jsdom": "^26.1.0",
|
|
69
70
|
"npm-run-all2": "^8.0.4",
|
|
71
|
+
"patch-package": "^8.0.0",
|
|
70
72
|
"prettier": "^3.6.2",
|
|
71
73
|
"primevue": "^4.3.6",
|
|
72
|
-
"storybook": "^9.
|
|
74
|
+
"storybook": "^9.1.2",
|
|
73
75
|
"storybook-addon-vue-mdx": "^2.0.2",
|
|
74
76
|
"tailwindcss": "^4.1.11",
|
|
75
77
|
"typescript": "~5.8.3",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare const BASE = "relative rounded-[0.25rem] p-[0.25rem] w-fit h-[2.5rem] box-border bg-inherit flex items-center";
|
|
2
|
-
export declare const INPUT_STYLE = "bg-inherit text-[1rem] text-on-surface border-none peer focus:outline-hidden leading-[1.5rem] mr-[0.75rem] placeholder:invisible";
|
|
3
|
-
export declare const INPUT_DISABLED = "cursor-default bg-transparent";
|
|
4
|
-
export declare const LABEL = "absolute peer-placeholder-shown:text-[1rem] text-[0.75rem] peer-placeholder-shown:leading-[0.5rem] leading-[1rem] peer-placeholder-shown:top-[1rem] -top-[0.625rem] peer-focus:-top-[0.625rem] peer-focus:leading-[1rem] text-on-surface-variant peer-placeholder-shown:px-0 peer-focus:px-[0.25rem] px-[0.25rem] bg-inherit peer-focus:text-[0.75rem] peer-placeholder-shown:left-[1rem] left-[0.75rem] peer-focus:left-[0.75rem] transition-all";
|
|
5
|
-
export declare const LABEL_SEARCH_ICON = "peer-placeholder-shown:left-[3rem]";
|
|
6
|
-
export declare const INVALID_TEXT = "text-error!";
|
|
7
|
-
export declare const DISABLED_TEXT = "text-on-surface/38! cursor-default";
|
|
8
|
-
export declare const SUPPORTING_TEXT = "text-[0.75rem] text-on-surface-variant mt-[0.25rem] ml-[1rem]";
|
|
9
|
-
export declare const BUTTON_STYLE = "text-[1.32rem] px-[0.62rem]";
|
|
10
|
-
export declare const BASE_DEFAULT = "border border-on-surface-variant";
|
|
11
|
-
export declare const BASE_FOCUSED = "border-2 border-primary";
|
|
12
|
-
export declare const BASE_INVALID = "border-2 border-error";
|
|
13
|
-
export declare const BASE_DISABLED = "border border-on-surface/12";
|