@mmb-digital/design-system-web 0.1.349 → 0.1.351
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 +6 -7
- package/dist/index.cjs +41 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2909 -0
- package/dist/index.d.ts +2311 -2108
- package/dist/index.js +41 -2
- package/dist/index.js.map +1 -1
- package/package.json +55 -61
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.351",
|
|
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>",
|
|
@@ -28,111 +28,105 @@
|
|
|
28
28
|
"node": ">=20"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
|
-
"build": "
|
|
32
|
-
"test": "
|
|
33
|
-
"t": "
|
|
34
|
-
"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",
|
|
35
35
|
"lint": "eslint . --cache",
|
|
36
|
-
"l": "
|
|
36
|
+
"l": "pnpm lint",
|
|
37
37
|
"lint:ci": "eslint .",
|
|
38
|
-
"lint:fix": "
|
|
39
|
-
"lf": "
|
|
38
|
+
"lint:fix": "pnpm eslint --fix",
|
|
39
|
+
"lf": "pnpm lint:fix",
|
|
40
40
|
"prettier": "prettier --check .",
|
|
41
|
-
"p": "
|
|
42
|
-
"prettier:fix": "
|
|
43
|
-
"pf": "
|
|
41
|
+
"p": "pnpm prettier",
|
|
42
|
+
"prettier:fix": "pnpm prettier --write",
|
|
43
|
+
"pf": "pnpm prettier:fix",
|
|
44
44
|
"tsc": "tsc -b",
|
|
45
45
|
"storybook": "storybook dev -p 6006 --no-open",
|
|
46
|
-
"sb": "
|
|
46
|
+
"sb": "pnpm storybook",
|
|
47
47
|
"build-storybook": "NODE_OPTIONS=--max_old_space_size=1024 storybook build",
|
|
48
48
|
"stylelint": "stylelint \"./src/**/*.ts\" \"./src/**/*.tsx\"",
|
|
49
|
-
"sl": "
|
|
50
|
-
"stylelint:fix": "
|
|
51
|
-
"slf": "
|
|
49
|
+
"sl": "pnpm stylelint",
|
|
50
|
+
"stylelint:fix": "pnpm stylelint --fix",
|
|
51
|
+
"slf": "pnpm stylelint:fix",
|
|
52
52
|
"vitest": "vitest run",
|
|
53
|
-
"vi": "
|
|
53
|
+
"vi": "pnpm vitest",
|
|
54
54
|
"vitest:watch": "vitest",
|
|
55
|
-
"viw": "
|
|
55
|
+
"viw": "pnpm vitest:watch",
|
|
56
56
|
"vitest:ui": "vitest --ui",
|
|
57
|
-
"vitest:coverage": "vitest run --coverage"
|
|
58
|
-
"deduplicate": "yarn yarn-deduplicate yarn.lock",
|
|
59
|
-
"d": "yarn deduplicate"
|
|
57
|
+
"vitest:coverage": "vitest run --coverage"
|
|
60
58
|
},
|
|
61
59
|
"devDependencies": {
|
|
62
|
-
"@babel/core": "^7.29.
|
|
63
|
-
"@babel/preset-env": "^7.29.
|
|
64
|
-
"@babel/preset-react": "^7.
|
|
65
|
-
"@babel/preset-typescript": "^7.
|
|
60
|
+
"@babel/core": "^7.29.7",
|
|
61
|
+
"@babel/preset-env": "^7.29.7",
|
|
62
|
+
"@babel/preset-react": "^7.29.7",
|
|
63
|
+
"@babel/preset-typescript": "^7.29.7",
|
|
66
64
|
"@emotion/babel-plugin": "^11.13.5",
|
|
67
65
|
"@emotion/react": "^11.14.0",
|
|
68
66
|
"@emotion/styled": "^11.14.1",
|
|
69
67
|
"@eslint/js": "^9.39.4",
|
|
70
|
-
"@
|
|
71
|
-
"@
|
|
72
|
-
"@
|
|
73
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
74
|
-
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
75
|
-
"@rollup/plugin-terser": "^1.0.0",
|
|
76
|
-
"@rollup/plugin-typescript": "^12.3.0",
|
|
77
|
-
"@storybook/addon-docs": "^10.4.0",
|
|
78
|
-
"@storybook/addon-links": "^10.4.0",
|
|
68
|
+
"@rolldown/plugin-babel": "^0.2.3",
|
|
69
|
+
"@storybook/addon-docs": "^10.4.2",
|
|
70
|
+
"@storybook/addon-links": "^10.4.2",
|
|
79
71
|
"@storybook/addon-webpack5-compiler-babel": "^4.0.1",
|
|
80
|
-
"@storybook/react": "^10.4.
|
|
81
|
-
"@storybook/react-webpack5": "^10.4.
|
|
72
|
+
"@storybook/react": "^10.4.2",
|
|
73
|
+
"@storybook/react-webpack5": "^10.4.2",
|
|
82
74
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
83
75
|
"@testing-library/dom": "^10.4.1",
|
|
84
76
|
"@testing-library/jest-dom": "^6.9.1",
|
|
85
77
|
"@testing-library/react": "^16.3.2",
|
|
86
78
|
"@testing-library/user-event": "^14.6.1",
|
|
79
|
+
"@types/babel__core": "^7.20.5",
|
|
87
80
|
"@types/lodash-es": "^4.17.12",
|
|
88
|
-
"@types/node": "^20.19.
|
|
89
|
-
"@types/react": "^19.2.
|
|
81
|
+
"@types/node": "^20.19.42",
|
|
82
|
+
"@types/react": "^19.2.17",
|
|
90
83
|
"@types/react-dom": "^19.2.3",
|
|
91
|
-
"@vitest/coverage-v8": "^4.1.
|
|
92
|
-
"@vitest/ui": "^4.1.
|
|
84
|
+
"@vitest/coverage-v8": "^4.1.8",
|
|
85
|
+
"@vitest/ui": "^4.1.8",
|
|
93
86
|
"eslint": "^9.39.4",
|
|
94
87
|
"eslint-plugin-import-x": "^4.16.2",
|
|
95
88
|
"eslint-plugin-perfectionist": "^5.9.0",
|
|
96
89
|
"eslint-plugin-react": "^7.37.5",
|
|
97
90
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
98
|
-
"eslint-plugin-storybook": "^10.4.
|
|
91
|
+
"eslint-plugin-storybook": "^10.4.2",
|
|
99
92
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
100
93
|
"globals": "^17.6.0",
|
|
101
|
-
"happy-dom": "^20.
|
|
102
|
-
"next-intl": "^4.
|
|
94
|
+
"happy-dom": "^20.10.2",
|
|
95
|
+
"next-intl": "^4.13.0",
|
|
103
96
|
"postcss-styled-syntax": "^0.7.1",
|
|
104
97
|
"prettier": "^3.8.3",
|
|
105
|
-
"react": "^19.2.
|
|
106
|
-
"react-dom": "^19.2.
|
|
107
|
-
"react-hook-form": "^7.
|
|
108
|
-
"react-intl": "^10.1.
|
|
109
|
-
"rollup": "^4.
|
|
98
|
+
"react": "^19.2.7",
|
|
99
|
+
"react-dom": "^19.2.7",
|
|
100
|
+
"react-hook-form": "^7.78.0",
|
|
101
|
+
"react-intl": "^10.1.13",
|
|
102
|
+
"rollup": "^4.61.1",
|
|
110
103
|
"rollup-plugin-dts": "^6.4.1",
|
|
111
|
-
"storybook": "^10.4.
|
|
112
|
-
"stylelint": "^17.
|
|
104
|
+
"storybook": "^10.4.2",
|
|
105
|
+
"stylelint": "^17.13.0",
|
|
113
106
|
"stylelint-config-recess-order": "^7.7.0",
|
|
114
107
|
"stylelint-config-standard": "^40.0.0",
|
|
115
108
|
"stylelint-order": "^8.1.1",
|
|
116
109
|
"ts-node": "^10.9.2",
|
|
110
|
+
"tsdown": "^0.22.2",
|
|
117
111
|
"typescript": "^6.0.3",
|
|
118
|
-
"typescript-eslint": "^8.
|
|
119
|
-
"vitest": "^4.1.
|
|
120
|
-
"yarn-deduplicate": "^6.0.2",
|
|
112
|
+
"typescript-eslint": "^8.61.0",
|
|
113
|
+
"vitest": "^4.1.8",
|
|
121
114
|
"zod": "^4.4.3"
|
|
122
115
|
},
|
|
123
116
|
"dependencies": {
|
|
117
|
+
"@base-ui/react": "^1.6.0",
|
|
124
118
|
"@emotion/is-prop-valid": "^1.4.0",
|
|
125
119
|
"@floating-ui/react": "^0.27.19",
|
|
126
|
-
"@formatjs/intl": "^4.1.
|
|
120
|
+
"@formatjs/intl": "^4.1.13",
|
|
127
121
|
"@google-recaptcha/core": "^1.1.3",
|
|
128
122
|
"@hookform/resolvers": "^5.4.0",
|
|
129
123
|
"afformative": "^0.7.0",
|
|
130
124
|
"csstype": "^3.2.3",
|
|
131
|
-
"date-fns": "^4.
|
|
132
|
-
"downshift": "^9.3.
|
|
125
|
+
"date-fns": "^4.4.0",
|
|
126
|
+
"downshift": "^9.3.6",
|
|
133
127
|
"imask": "^7.6.1",
|
|
134
128
|
"immer": "^11.1.8",
|
|
135
|
-
"intl-messageformat": "^11.2.
|
|
129
|
+
"intl-messageformat": "^11.2.8",
|
|
136
130
|
"lodash-es": "^4.18.1",
|
|
137
131
|
"rc-slider": "^11.1.9",
|
|
138
132
|
"react-content-loader": "^7.1.2",
|