@mmb-digital/design-system-web 0.1.347 → 0.1.348-alpha.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/README.md +8 -8
- package/dist/index.cjs +41 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2847 -0
- package/dist/index.d.ts +2240 -2077
- package/dist/index.js +41 -2
- package/dist/index.js.map +1 -1
- package/package.json +45 -37
- package/.eslintcache +0 -1
- package/rollup.config.js +0 -58
- package/tsconfig.app.json +0 -12
- package/tsconfig.base.json +0 -18
- package/tsconfig.node.json +0 -13
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmb-digital/design-system-web",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.348-alpha.1",
|
|
4
4
|
"description": "MMB design-system-web",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"main": "dist/index.cjs",
|
|
8
|
-
"module": "dist/index.js",
|
|
9
|
-
"types": "dist/index.d.
|
|
7
|
+
"main": "./dist/index.cjs",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.cts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
|
-
"types": "./dist/index.d.ts",
|
|
13
12
|
"import": "./dist/index.js",
|
|
14
13
|
"require": "./dist/index.cjs"
|
|
15
|
-
}
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
16
16
|
},
|
|
17
17
|
"repository": "https://bitbucket.lb.mbid.cz/scm/react/design-system-web.git",
|
|
18
18
|
"author": "Kasman, Samuel (MONETA,consultant) <samuel.kasman@moneta.cz>",
|
|
@@ -21,37 +21,40 @@
|
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
24
27
|
"engines": {
|
|
25
28
|
"node": ">=20"
|
|
26
29
|
},
|
|
27
30
|
"scripts": {
|
|
28
|
-
"build": "
|
|
29
|
-
"test": "
|
|
30
|
-
"t": "
|
|
31
|
-
"test:ci": "
|
|
31
|
+
"build": "tsdown",
|
|
32
|
+
"test": "pnpm p && pnpm tsc && pnpm l && pnpm sl && pnpm vi",
|
|
33
|
+
"t": "pnpm test",
|
|
34
|
+
"test:ci": "pnpm p && pnpm tsc && pnpm lint:ci && pnpm sl && pnpm vi",
|
|
32
35
|
"lint": "eslint . --cache",
|
|
33
|
-
"l": "
|
|
36
|
+
"l": "pnpm lint",
|
|
34
37
|
"lint:ci": "eslint .",
|
|
35
|
-
"lint:fix": "
|
|
36
|
-
"lf": "
|
|
38
|
+
"lint:fix": "pnpm eslint --fix",
|
|
39
|
+
"lf": "pnpm lint:fix",
|
|
37
40
|
"prettier": "prettier --check .",
|
|
38
|
-
"p": "
|
|
39
|
-
"prettier:fix": "
|
|
40
|
-
"pf": "
|
|
41
|
+
"p": "pnpm prettier",
|
|
42
|
+
"prettier:fix": "pnpm prettier --write",
|
|
43
|
+
"pf": "pnpm prettier:fix",
|
|
41
44
|
"tsc": "tsc -b",
|
|
42
45
|
"storybook": "storybook dev -p 6006 --no-open",
|
|
43
|
-
"sb": "
|
|
46
|
+
"sb": "pnpm storybook",
|
|
44
47
|
"build-storybook": "NODE_OPTIONS=--max_old_space_size=1024 storybook build",
|
|
45
48
|
"stylelint": "stylelint \"./src/**/*.ts\" \"./src/**/*.tsx\"",
|
|
46
|
-
"sl": "
|
|
47
|
-
"stylelint:fix": "
|
|
48
|
-
"slf": "
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
49
|
+
"sl": "pnpm stylelint",
|
|
50
|
+
"stylelint:fix": "pnpm stylelint --fix",
|
|
51
|
+
"slf": "pnpm stylelint:fix",
|
|
52
|
+
"vitest": "vitest run",
|
|
53
|
+
"vi": "pnpm vitest",
|
|
54
|
+
"vitest:watch": "vitest",
|
|
55
|
+
"viw": "pnpm vitest:watch",
|
|
56
|
+
"vitest:ui": "vitest --ui",
|
|
57
|
+
"vitest:coverage": "vitest run --coverage"
|
|
55
58
|
},
|
|
56
59
|
"devDependencies": {
|
|
57
60
|
"@babel/core": "^7.29.0",
|
|
@@ -62,13 +65,7 @@
|
|
|
62
65
|
"@emotion/react": "^11.14.0",
|
|
63
66
|
"@emotion/styled": "^11.14.1",
|
|
64
67
|
"@eslint/js": "^9.39.4",
|
|
65
|
-
"@
|
|
66
|
-
"@rollup/plugin-babel": "^7.0.0",
|
|
67
|
-
"@rollup/plugin-commonjs": "^29.0.2",
|
|
68
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
69
|
-
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
70
|
-
"@rollup/plugin-terser": "^1.0.0",
|
|
71
|
-
"@rollup/plugin-typescript": "^12.3.0",
|
|
68
|
+
"@rolldown/plugin-babel": "^0.2.3",
|
|
72
69
|
"@storybook/addon-docs": "^10.4.0",
|
|
73
70
|
"@storybook/addon-links": "^10.4.0",
|
|
74
71
|
"@storybook/addon-webpack5-compiler-babel": "^4.0.1",
|
|
@@ -79,11 +76,13 @@
|
|
|
79
76
|
"@testing-library/jest-dom": "^6.9.1",
|
|
80
77
|
"@testing-library/react": "^16.3.2",
|
|
81
78
|
"@testing-library/user-event": "^14.6.1",
|
|
82
|
-
"@types/
|
|
79
|
+
"@types/babel__core": "^7.20.5",
|
|
83
80
|
"@types/lodash-es": "^4.17.12",
|
|
84
81
|
"@types/node": "^20.19.41",
|
|
85
82
|
"@types/react": "^19.2.15",
|
|
86
83
|
"@types/react-dom": "^19.2.3",
|
|
84
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
85
|
+
"@vitest/ui": "^4.1.7",
|
|
87
86
|
"eslint": "^9.39.4",
|
|
88
87
|
"eslint-plugin-import-x": "^4.16.2",
|
|
89
88
|
"eslint-plugin-perfectionist": "^5.9.0",
|
|
@@ -92,8 +91,7 @@
|
|
|
92
91
|
"eslint-plugin-storybook": "^10.4.0",
|
|
93
92
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
94
93
|
"globals": "^17.6.0",
|
|
95
|
-
"
|
|
96
|
-
"jest-environment-jsdom": "^30.4.1",
|
|
94
|
+
"happy-dom": "^20.9.0",
|
|
97
95
|
"next-intl": "^4.12.0",
|
|
98
96
|
"postcss-styled-syntax": "^0.7.1",
|
|
99
97
|
"prettier": "^3.8.3",
|
|
@@ -108,21 +106,26 @@
|
|
|
108
106
|
"stylelint-config-recess-order": "^7.7.0",
|
|
109
107
|
"stylelint-config-standard": "^40.0.0",
|
|
110
108
|
"stylelint-order": "^8.1.1",
|
|
109
|
+
"tsdown": "^0.21.10",
|
|
111
110
|
"ts-node": "^10.9.2",
|
|
112
111
|
"typescript": "^6.0.3",
|
|
113
112
|
"typescript-eslint": "^8.59.4",
|
|
114
|
-
"
|
|
113
|
+
"vitest": "^4.1.7",
|
|
115
114
|
"zod": "^4.4.3"
|
|
116
115
|
},
|
|
117
116
|
"dependencies": {
|
|
117
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
118
118
|
"@floating-ui/react": "^0.27.19",
|
|
119
|
+
"@formatjs/intl": "^4.1.12",
|
|
119
120
|
"@google-recaptcha/core": "^1.1.3",
|
|
120
121
|
"@hookform/resolvers": "^5.4.0",
|
|
121
122
|
"afformative": "^0.7.0",
|
|
123
|
+
"csstype": "^3.2.3",
|
|
122
124
|
"date-fns": "^4.2.1",
|
|
123
125
|
"downshift": "^9.3.3",
|
|
124
126
|
"imask": "^7.6.1",
|
|
125
127
|
"immer": "^11.1.8",
|
|
128
|
+
"intl-messageformat": "^11.2.7",
|
|
126
129
|
"lodash-es": "^4.18.1",
|
|
127
130
|
"rc-slider": "^11.1.9",
|
|
128
131
|
"react-content-loader": "^7.1.2",
|
|
@@ -141,5 +144,10 @@
|
|
|
141
144
|
"react-hook-form": "^7.0.0",
|
|
142
145
|
"react-intl": "^10.0.0",
|
|
143
146
|
"zod": "^4.0.0"
|
|
147
|
+
},
|
|
148
|
+
"peerDependenciesMeta": {
|
|
149
|
+
"next-intl": {
|
|
150
|
+
"optional": true
|
|
151
|
+
}
|
|
144
152
|
}
|
|
145
153
|
}
|