@moving-walls/design-system 1.0.24 → 2.0.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/components/ui/DateRangePicker.d.ts +6 -2
- package/dist/index.esm.js +102 -42
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +102 -42
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +144 -144
package/package.json
CHANGED
|
@@ -1,144 +1,144 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@moving-walls/design-system",
|
|
3
|
-
"version": "
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "A comprehensive React component library and design system with TypeScript support, providing modern UI components, design tokens, and a complete icon system.",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"module": "dist/index.esm.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git@gitlab.movingwalls.com:design-system/mw-design-system.git"
|
|
12
|
-
},
|
|
13
|
-
"homepage": "https://design.movingwalls.com/",
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://gitlab.movingwalls.com/design-system/mw-design-system/issues"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"README.md",
|
|
20
|
-
"LICENSE"
|
|
21
|
-
],
|
|
22
|
-
"exports": {
|
|
23
|
-
".": {
|
|
24
|
-
"types": "./dist/index.d.ts",
|
|
25
|
-
"import": "./dist/index.esm.js",
|
|
26
|
-
"require": "./dist/index.js"
|
|
27
|
-
},
|
|
28
|
-
"./dist/styles/*": "./dist/styles/*",
|
|
29
|
-
"./dist/tokens/*": "./dist/tokens/*",
|
|
30
|
-
"./dist/components/*": "./dist/components/*"
|
|
31
|
-
},
|
|
32
|
-
"scripts": {
|
|
33
|
-
"dev": "next dev --turbopack",
|
|
34
|
-
"build": "next build",
|
|
35
|
-
"build:package": "rollup -c",
|
|
36
|
-
"postbuild:package": "npm run clean:dist",
|
|
37
|
-
"clean:dist": "node -e \"const fs=require('fs');['dist/node_modules','dist/stories','dist/test','dist/src'].forEach(d=>{try{fs.rmSync(d,{recursive:true,force:true})}catch(e){}})\"",
|
|
38
|
-
"build:ci": "rollup -c rollup.config.ci.js",
|
|
39
|
-
"prepublishOnly": "npm run build:package",
|
|
40
|
-
"start": "next start",
|
|
41
|
-
"lint": "next lint",
|
|
42
|
-
"version": "npm run build:package && git add -A dist",
|
|
43
|
-
"postversion": "git push && git push --tags",
|
|
44
|
-
"storybook": "storybook dev -p 6006",
|
|
45
|
-
"build-storybook": "storybook build",
|
|
46
|
-
"test": "vitest run",
|
|
47
|
-
"test:watch": "vitest",
|
|
48
|
-
"test:coverage": "vitest run --coverage"
|
|
49
|
-
},
|
|
50
|
-
"keywords": [
|
|
51
|
-
"react",
|
|
52
|
-
"components",
|
|
53
|
-
"design-system",
|
|
54
|
-
"ui",
|
|
55
|
-
"typescript",
|
|
56
|
-
"tailwind",
|
|
57
|
-
"icons",
|
|
58
|
-
"design-tokens"
|
|
59
|
-
],
|
|
60
|
-
"author": {
|
|
61
|
-
"name": "MovingWalls",
|
|
62
|
-
"email": "engineering@movingwalls.com",
|
|
63
|
-
"url": "https://design.movingwalls.com/"
|
|
64
|
-
},
|
|
65
|
-
"license": "MIT",
|
|
66
|
-
"peerDependencies": {
|
|
67
|
-
"ag-grid-community": ">=35.0.0",
|
|
68
|
-
"ag-grid-react": ">=35.0.0",
|
|
69
|
-
"react": ">=16.8.0",
|
|
70
|
-
"react-dom": ">=16.8.0"
|
|
71
|
-
},
|
|
72
|
-
"peerDependenciesMeta": {
|
|
73
|
-
"ag-grid-community": {
|
|
74
|
-
"optional": true
|
|
75
|
-
},
|
|
76
|
-
"ag-grid-react": {
|
|
77
|
-
"optional": true
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
"dependencies": {
|
|
81
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
82
|
-
"clsx": "^2.1.1",
|
|
83
|
-
"lucide-react": "^0.462.0",
|
|
84
|
-
"tailwind-merge": "^3.3.1"
|
|
85
|
-
},
|
|
86
|
-
"devDependencies": {
|
|
87
|
-
"@babel/plugin-syntax-jsx": "^7.25.9",
|
|
88
|
-
"@babel/preset-env": "^7.26.0",
|
|
89
|
-
"@babel/preset-react": "^7.25.9",
|
|
90
|
-
"@babel/preset-typescript": "^7.26.0",
|
|
91
|
-
"@chromatic-com/storybook": "^4.1.3",
|
|
92
|
-
"@eslint/eslintrc": "^3.3.3",
|
|
93
|
-
"@mdx-js/loader": "^3.1.0",
|
|
94
|
-
"@mdx-js/react": "^3.1.0",
|
|
95
|
-
"@next/mdx": "^15.4.10",
|
|
96
|
-
"@rollup/plugin-babel": "^6.0.4",
|
|
97
|
-
"@rollup/plugin-commonjs": "^28.0.6",
|
|
98
|
-
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
99
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
100
|
-
"@rollup/plugin-typescript": "^12.1.4",
|
|
101
|
-
"@storybook/addon-a11y": "^10.1.11",
|
|
102
|
-
"@storybook/addon-docs": "^10.1.11",
|
|
103
|
-
"@storybook/addon-onboarding": "^10.1.11",
|
|
104
|
-
"@storybook/addon-vitest": "^10.1.11",
|
|
105
|
-
"@storybook/nextjs-vite": "^10.1.11",
|
|
106
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
107
|
-
"@testing-library/react": "^16.3.1",
|
|
108
|
-
"@types/node": "^20.17.9",
|
|
109
|
-
"@types/react": "^18.3.17",
|
|
110
|
-
"@types/react-dom": "^18.3.1",
|
|
111
|
-
"@types/react-syntax-highlighter": "^15.5.13",
|
|
112
|
-
"@vitejs/plugin-react": "^5.1.2",
|
|
113
|
-
"@vitest/browser-playwright": "^4.0.15",
|
|
114
|
-
"@vitest/coverage-v8": "^4.0.15",
|
|
115
|
-
"ag-grid-community": "^35.0.1",
|
|
116
|
-
"ag-grid-react": "^35.0.1",
|
|
117
|
-
"autoprefixer": "^10.4.21",
|
|
118
|
-
"copy-to-clipboard": "^3.3.3",
|
|
119
|
-
"eslint": "^8.57.1",
|
|
120
|
-
"eslint-config-next": "^15.4.10",
|
|
121
|
-
"eslint-plugin-storybook": "^10.1.11",
|
|
122
|
-
"framer-motion": "^11.12.0",
|
|
123
|
-
"jsdom": "^27.4.0",
|
|
124
|
-
"next": "^15.4.10",
|
|
125
|
-
"playwright": "^1.57.0",
|
|
126
|
-
"postcss": "^8.5.1",
|
|
127
|
-
"postcss-loader": "^8.2.0",
|
|
128
|
-
"puppeteer": "^24.17.0",
|
|
129
|
-
"react": "^18.3.1",
|
|
130
|
-
"react-dom": "^18.3.1",
|
|
131
|
-
"react-syntax-highlighter": "^15.5.0",
|
|
132
|
-
"rollup": "^4.50.1",
|
|
133
|
-
"rollup-plugin-postcss": "^4.0.2",
|
|
134
|
-
"semver": "^7.7.2",
|
|
135
|
-
"storybook": "^10.1.11",
|
|
136
|
-
"tailwindcss": "^3.4.17",
|
|
137
|
-
"typescript": "^5.7.2",
|
|
138
|
-
"vite": "^7.2.7",
|
|
139
|
-
"vitest": "^4.0.15"
|
|
140
|
-
},
|
|
141
|
-
"volta": {
|
|
142
|
-
"node": "21.7.3"
|
|
143
|
-
}
|
|
144
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@moving-walls/design-system",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A comprehensive React component library and design system with TypeScript support, providing modern UI components, design tokens, and a complete icon system.",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git@gitlab.movingwalls.com:design-system/mw-design-system.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://design.movingwalls.com/",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://gitlab.movingwalls.com/design-system/mw-design-system/issues"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE"
|
|
21
|
+
],
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"import": "./dist/index.esm.js",
|
|
26
|
+
"require": "./dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"./dist/styles/*": "./dist/styles/*",
|
|
29
|
+
"./dist/tokens/*": "./dist/tokens/*",
|
|
30
|
+
"./dist/components/*": "./dist/components/*"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"dev": "next dev --turbopack",
|
|
34
|
+
"build": "next build",
|
|
35
|
+
"build:package": "rollup -c",
|
|
36
|
+
"postbuild:package": "npm run clean:dist",
|
|
37
|
+
"clean:dist": "node -e \"const fs=require('fs');['dist/node_modules','dist/stories','dist/test','dist/src'].forEach(d=>{try{fs.rmSync(d,{recursive:true,force:true})}catch(e){}})\"",
|
|
38
|
+
"build:ci": "rollup -c rollup.config.ci.js",
|
|
39
|
+
"prepublishOnly": "npm run build:package",
|
|
40
|
+
"start": "next start",
|
|
41
|
+
"lint": "next lint",
|
|
42
|
+
"version": "npm run build:package && git add -A dist",
|
|
43
|
+
"postversion": "git push && git push --tags",
|
|
44
|
+
"storybook": "storybook dev -p 6006",
|
|
45
|
+
"build-storybook": "storybook build",
|
|
46
|
+
"test": "vitest run",
|
|
47
|
+
"test:watch": "vitest",
|
|
48
|
+
"test:coverage": "vitest run --coverage"
|
|
49
|
+
},
|
|
50
|
+
"keywords": [
|
|
51
|
+
"react",
|
|
52
|
+
"components",
|
|
53
|
+
"design-system",
|
|
54
|
+
"ui",
|
|
55
|
+
"typescript",
|
|
56
|
+
"tailwind",
|
|
57
|
+
"icons",
|
|
58
|
+
"design-tokens"
|
|
59
|
+
],
|
|
60
|
+
"author": {
|
|
61
|
+
"name": "MovingWalls",
|
|
62
|
+
"email": "engineering@movingwalls.com",
|
|
63
|
+
"url": "https://design.movingwalls.com/"
|
|
64
|
+
},
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"ag-grid-community": ">=35.0.0",
|
|
68
|
+
"ag-grid-react": ">=35.0.0",
|
|
69
|
+
"react": ">=16.8.0",
|
|
70
|
+
"react-dom": ">=16.8.0"
|
|
71
|
+
},
|
|
72
|
+
"peerDependenciesMeta": {
|
|
73
|
+
"ag-grid-community": {
|
|
74
|
+
"optional": true
|
|
75
|
+
},
|
|
76
|
+
"ag-grid-react": {
|
|
77
|
+
"optional": true
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"dependencies": {
|
|
81
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
82
|
+
"clsx": "^2.1.1",
|
|
83
|
+
"lucide-react": "^0.462.0",
|
|
84
|
+
"tailwind-merge": "^3.3.1"
|
|
85
|
+
},
|
|
86
|
+
"devDependencies": {
|
|
87
|
+
"@babel/plugin-syntax-jsx": "^7.25.9",
|
|
88
|
+
"@babel/preset-env": "^7.26.0",
|
|
89
|
+
"@babel/preset-react": "^7.25.9",
|
|
90
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
91
|
+
"@chromatic-com/storybook": "^4.1.3",
|
|
92
|
+
"@eslint/eslintrc": "^3.3.3",
|
|
93
|
+
"@mdx-js/loader": "^3.1.0",
|
|
94
|
+
"@mdx-js/react": "^3.1.0",
|
|
95
|
+
"@next/mdx": "^15.4.10",
|
|
96
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
97
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
98
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
99
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
100
|
+
"@rollup/plugin-typescript": "^12.1.4",
|
|
101
|
+
"@storybook/addon-a11y": "^10.1.11",
|
|
102
|
+
"@storybook/addon-docs": "^10.1.11",
|
|
103
|
+
"@storybook/addon-onboarding": "^10.1.11",
|
|
104
|
+
"@storybook/addon-vitest": "^10.1.11",
|
|
105
|
+
"@storybook/nextjs-vite": "^10.1.11",
|
|
106
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
107
|
+
"@testing-library/react": "^16.3.1",
|
|
108
|
+
"@types/node": "^20.17.9",
|
|
109
|
+
"@types/react": "^18.3.17",
|
|
110
|
+
"@types/react-dom": "^18.3.1",
|
|
111
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
112
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
113
|
+
"@vitest/browser-playwright": "^4.0.15",
|
|
114
|
+
"@vitest/coverage-v8": "^4.0.15",
|
|
115
|
+
"ag-grid-community": "^35.0.1",
|
|
116
|
+
"ag-grid-react": "^35.0.1",
|
|
117
|
+
"autoprefixer": "^10.4.21",
|
|
118
|
+
"copy-to-clipboard": "^3.3.3",
|
|
119
|
+
"eslint": "^8.57.1",
|
|
120
|
+
"eslint-config-next": "^15.4.10",
|
|
121
|
+
"eslint-plugin-storybook": "^10.1.11",
|
|
122
|
+
"framer-motion": "^11.12.0",
|
|
123
|
+
"jsdom": "^27.4.0",
|
|
124
|
+
"next": "^15.4.10",
|
|
125
|
+
"playwright": "^1.57.0",
|
|
126
|
+
"postcss": "^8.5.1",
|
|
127
|
+
"postcss-loader": "^8.2.0",
|
|
128
|
+
"puppeteer": "^24.17.0",
|
|
129
|
+
"react": "^18.3.1",
|
|
130
|
+
"react-dom": "^18.3.1",
|
|
131
|
+
"react-syntax-highlighter": "^15.5.0",
|
|
132
|
+
"rollup": "^4.50.1",
|
|
133
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
134
|
+
"semver": "^7.7.2",
|
|
135
|
+
"storybook": "^10.1.11",
|
|
136
|
+
"tailwindcss": "^3.4.17",
|
|
137
|
+
"typescript": "^5.7.2",
|
|
138
|
+
"vite": "^7.2.7",
|
|
139
|
+
"vitest": "^4.0.15"
|
|
140
|
+
},
|
|
141
|
+
"volta": {
|
|
142
|
+
"node": "21.7.3"
|
|
143
|
+
}
|
|
144
|
+
}
|