@mmb-digital/design-system-web 0.1.348-alpha.0 → 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 -2075
- package/dist/index.js +41 -2
- package/dist/index.js.map +1 -1
- package/package.json +14 -18
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmb-digital/design-system-web",
|
|
3
|
-
"version": "0.1.348-alpha.
|
|
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>",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"node": ">=20"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
|
-
"build": "
|
|
31
|
+
"build": "tsdown",
|
|
32
32
|
"test": "pnpm p && pnpm tsc && pnpm l && pnpm sl && pnpm vi",
|
|
33
33
|
"t": "pnpm test",
|
|
34
34
|
"test:ci": "pnpm p && pnpm tsc && pnpm lint:ci && pnpm sl && pnpm vi",
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"stylelint": "stylelint \"./src/**/*.ts\" \"./src/**/*.tsx\"",
|
|
49
49
|
"sl": "pnpm stylelint",
|
|
50
50
|
"stylelint:fix": "pnpm stylelint --fix",
|
|
51
|
-
"slf": "pnpm stylelint
|
|
51
|
+
"slf": "pnpm stylelint:fix",
|
|
52
52
|
"vitest": "vitest run",
|
|
53
|
+
"vi": "pnpm vitest",
|
|
53
54
|
"vitest:watch": "vitest",
|
|
55
|
+
"viw": "pnpm vitest:watch",
|
|
54
56
|
"vitest:ui": "vitest --ui",
|
|
55
|
-
"vitest:coverage": "vitest run --coverage"
|
|
56
|
-
"vi": "yarn vitest",
|
|
57
|
-
"viw": "yarn vitest:watch"
|
|
57
|
+
"vitest:coverage": "vitest run --coverage"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@babel/core": "^7.29.0",
|
|
@@ -65,13 +65,7 @@
|
|
|
65
65
|
"@emotion/react": "^11.14.0",
|
|
66
66
|
"@emotion/styled": "^11.14.1",
|
|
67
67
|
"@eslint/js": "^9.39.4",
|
|
68
|
-
"@
|
|
69
|
-
"@rollup/plugin-babel": "^7.0.0",
|
|
70
|
-
"@rollup/plugin-commonjs": "^29.0.2",
|
|
71
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
72
|
-
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
73
|
-
"@rollup/plugin-terser": "^1.0.0",
|
|
74
|
-
"@rollup/plugin-typescript": "^12.3.0",
|
|
68
|
+
"@rolldown/plugin-babel": "^0.2.3",
|
|
75
69
|
"@storybook/addon-docs": "^10.4.0",
|
|
76
70
|
"@storybook/addon-links": "^10.4.0",
|
|
77
71
|
"@storybook/addon-webpack5-compiler-babel": "^4.0.1",
|
|
@@ -82,6 +76,7 @@
|
|
|
82
76
|
"@testing-library/jest-dom": "^6.9.1",
|
|
83
77
|
"@testing-library/react": "^16.3.2",
|
|
84
78
|
"@testing-library/user-event": "^14.6.1",
|
|
79
|
+
"@types/babel__core": "^7.20.5",
|
|
85
80
|
"@types/lodash-es": "^4.17.12",
|
|
86
81
|
"@types/node": "^20.19.41",
|
|
87
82
|
"@types/react": "^19.2.15",
|
|
@@ -111,6 +106,7 @@
|
|
|
111
106
|
"stylelint-config-recess-order": "^7.7.0",
|
|
112
107
|
"stylelint-config-standard": "^40.0.0",
|
|
113
108
|
"stylelint-order": "^8.1.1",
|
|
109
|
+
"tsdown": "^0.21.10",
|
|
114
110
|
"ts-node": "^10.9.2",
|
|
115
111
|
"typescript": "^6.0.3",
|
|
116
112
|
"typescript-eslint": "^8.59.4",
|