@dpa-id-components/dpa-shared-components 7.0.9 → 7.1.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/UseBreakpoints.stories.ts +22 -0
- package/dist/UseBreakpoints.vue +12 -0
- package/dist/bookmark-89d43835.mjs +18 -0
- package/dist/bookmark-fill-2b5e5104.mjs +18 -0
- package/dist/components/UiTextButton/UiTextButton.vue.d.ts +83 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/compositions/index.d.ts +2 -2
- package/dist/dpa-shared-components.mjs +3622 -3455
- package/dist/dpa-shared-components.umd.js +5 -5
- package/dist/graphic-855e5909.mjs +19 -0
- package/dist/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/tailwind.config.cjs +3 -7
- package/package.json +16 -14
package/dist/tailwind.config.cjs
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
const screens = require("./screens.json");
|
|
2
|
+
|
|
1
3
|
module.exports = {
|
|
2
4
|
theme: {
|
|
3
5
|
inset: {
|
|
@@ -5,13 +7,7 @@ module.exports = {
|
|
|
5
7
|
"1/2": "50%",
|
|
6
8
|
full: "100%",
|
|
7
9
|
},
|
|
8
|
-
screens
|
|
9
|
-
sm: "640px",
|
|
10
|
-
md: "768px",
|
|
11
|
-
lg: "1024px",
|
|
12
|
-
xl: "1280px",
|
|
13
|
-
xxl: "1600px",
|
|
14
|
-
},
|
|
10
|
+
screens,
|
|
15
11
|
fontSize: {
|
|
16
12
|
xs: "12px",
|
|
17
13
|
sm: "14px",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dpa-id-components/dpa-shared-components",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=16"
|
|
6
6
|
},
|
|
@@ -48,15 +48,15 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@babel/core": "^7.20.5",
|
|
50
50
|
"@babel/preset-env": "^7.20.2",
|
|
51
|
-
"@storybook/addon-actions": "^7.0
|
|
52
|
-
"@storybook/addon-essentials": "^7.0
|
|
53
|
-
"@storybook/addon-interactions": "^7.0
|
|
54
|
-
"@storybook/addon-links": "^7.0
|
|
55
|
-
"@storybook/addon-styling": "^1.
|
|
56
|
-
"@storybook/blocks": "^7.0
|
|
51
|
+
"@storybook/addon-actions": "^7.1.0",
|
|
52
|
+
"@storybook/addon-essentials": "^7.1.0",
|
|
53
|
+
"@storybook/addon-interactions": "^7.1.0",
|
|
54
|
+
"@storybook/addon-links": "^7.1.0",
|
|
55
|
+
"@storybook/addon-styling": "^1.3.4",
|
|
56
|
+
"@storybook/blocks": "^7.1.0",
|
|
57
57
|
"@storybook/testing-library": "^0.2.0",
|
|
58
|
-
"@storybook/vue3": "^7.0
|
|
59
|
-
"@storybook/vue3-vite": "^7.0
|
|
58
|
+
"@storybook/vue3": "^7.1.0",
|
|
59
|
+
"@storybook/vue3-vite": "^7.1.0",
|
|
60
60
|
"@tailwindcss/typography": "^0.5.8",
|
|
61
61
|
"@tailwindcss/ui": "^0.7.2",
|
|
62
62
|
"@types/color": "^3.0.3",
|
|
@@ -71,22 +71,23 @@
|
|
|
71
71
|
"babel-loader": "^9.0.0",
|
|
72
72
|
"color": "^4.2.3",
|
|
73
73
|
"eslint": "^8.29.0",
|
|
74
|
-
"eslint-plugin-
|
|
74
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
75
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
75
76
|
"eslint-plugin-tailwindcss": "^3.7.1",
|
|
76
77
|
"eslint-plugin-vue": "^9.8.0",
|
|
77
78
|
"jsdom": "^22.0.0",
|
|
78
79
|
"postcss": "^8.4.20",
|
|
79
|
-
"postcss-focus-visible": "^
|
|
80
|
-
"prettier": "^
|
|
80
|
+
"postcss-focus-visible": "^9.0.0",
|
|
81
|
+
"prettier": "^3.0.0",
|
|
81
82
|
"react": "^18.2.0",
|
|
82
83
|
"react-dom": "^18.2.0",
|
|
83
84
|
"rollup-plugin-copy": "^3.4.0",
|
|
84
85
|
"standard-version": "^9.5.0",
|
|
85
|
-
"storybook": "^7.0
|
|
86
|
+
"storybook": "^7.1.0",
|
|
86
87
|
"tailwindcss": "^3.3.2",
|
|
87
88
|
"typescript": "^5.0.0",
|
|
88
89
|
"vite": "^4.0.1",
|
|
89
|
-
"vite-plugin-dts": "^
|
|
90
|
+
"vite-plugin-dts": "^3.0.0",
|
|
90
91
|
"vite-svg-loader": "^4.0.0",
|
|
91
92
|
"vitest": "^0.33.0",
|
|
92
93
|
"vue-loader": "^17.0.0",
|
|
@@ -98,6 +99,7 @@
|
|
|
98
99
|
"@tailwindcss/line-clamp": "^0.4.0",
|
|
99
100
|
"@tailwindcss/typography": "^0.5.8",
|
|
100
101
|
"@vuepic/vue-datepicker": "^5.0.0",
|
|
102
|
+
"@vueuse/core": "^10.1.2",
|
|
101
103
|
"date-fns": "^2.29.3",
|
|
102
104
|
"uuid": "^9.0.0",
|
|
103
105
|
"vue": "^3.2.45"
|