@utrecht/component-library-react 3.0.0 → 3.0.1-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/LICENSE.txt +287 -0
- package/dist/.jest-test-results.json +1 -1
- package/dist/LinkList.d.ts +19 -0
- package/dist/css-module/LinkList.d.ts +19 -0
- package/dist/css-module/css-module/LinkList.d.ts +6 -0
- package/dist/css-module/css-module/index.d.ts +2 -0
- package/dist/css-module/index.d.ts +2 -0
- package/dist/css-module/index.js +387 -340
- package/dist/css-module/index.js.map +1 -1
- package/dist/css-module/index.mjs +386 -341
- package/dist/css-module/index.mjs.map +1 -1
- package/dist/index.cjs.js +305 -261
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +304 -262
- package/dist/index.esm.js.map +1 -1
- package/package.json +33 -34
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.0.
|
|
2
|
+
"version": "3.0.1-alpha.1",
|
|
3
3
|
"author": "Community for NL Design System",
|
|
4
4
|
"description": "React component library bundle for the Municipality of Utrecht based on the NL Design System architecture",
|
|
5
5
|
"license": "EUPL-1.2",
|
|
@@ -16,18 +16,6 @@
|
|
|
16
16
|
"url": "git@github.com:nl-design-system/utrecht.git"
|
|
17
17
|
},
|
|
18
18
|
"sideEffects": false,
|
|
19
|
-
"scripts": {
|
|
20
|
-
"prebuild": "npm run clean",
|
|
21
|
-
"build": "npm-run-all build:**",
|
|
22
|
-
"build:rollup": "rollup --config rollup.config.mjs",
|
|
23
|
-
"build:rollup-components": "rollup --config rollup-components.config.mjs",
|
|
24
|
-
"build:test-results": "mkdir -p pages && NODE_OPTIONS=--experimental-vm-modules jest --json --outputFile=dist/.jest-test-results.json --silent",
|
|
25
|
-
"clean": "rimraf dist/ pages/",
|
|
26
|
-
"lint": "tsc --project ./tsconfig.json --noEmit && tsc --noEmit --project ./tsconfig.test.json",
|
|
27
|
-
"test": "mkdir -p pages && NODE_OPTIONS=--experimental-vm-modules jest --verbose",
|
|
28
|
-
"watch:build": "rollup -c --watch",
|
|
29
|
-
"watch:test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose --watch"
|
|
30
|
-
},
|
|
31
19
|
"main": "./dist/index.cjs.js",
|
|
32
20
|
"module": "./dist/index.esm.js",
|
|
33
21
|
"types": "./dist/index.d.ts",
|
|
@@ -39,29 +27,29 @@
|
|
|
39
27
|
"lodash.chunk": "4.2.0"
|
|
40
28
|
},
|
|
41
29
|
"devDependencies": {
|
|
42
|
-
"@babel/core": "7.
|
|
43
|
-
"@babel/plugin-transform-runtime": "7.
|
|
44
|
-
"@babel/preset-env": "7.
|
|
45
|
-
"@babel/preset-react": "7.
|
|
46
|
-
"@babel/preset-typescript": "7.
|
|
47
|
-
"@babel/runtime": "7.
|
|
30
|
+
"@babel/core": "7.23.6",
|
|
31
|
+
"@babel/plugin-transform-runtime": "7.23.6",
|
|
32
|
+
"@babel/preset-env": "7.23.6",
|
|
33
|
+
"@babel/preset-react": "7.23.3",
|
|
34
|
+
"@babel/preset-typescript": "7.23.3",
|
|
35
|
+
"@babel/runtime": "7.23.6",
|
|
48
36
|
"@rollup/plugin-babel": "6.0.4",
|
|
49
37
|
"@rollup/plugin-commonjs": "24.1.0",
|
|
50
|
-
"@rollup/plugin-json": "
|
|
38
|
+
"@rollup/plugin-json": "6.1.0",
|
|
51
39
|
"@rollup/plugin-node-resolve": "15.2.3",
|
|
52
40
|
"@testing-library/dom": "8.20.1",
|
|
53
41
|
"@testing-library/jest-dom": "5.17.0",
|
|
54
42
|
"@testing-library/react": "13.4.0",
|
|
55
|
-
"@testing-library/user-event": "14.
|
|
56
|
-
"@types/jest": "29.5.
|
|
43
|
+
"@testing-library/user-event": "14.5.1",
|
|
44
|
+
"@types/jest": "29.5.11",
|
|
57
45
|
"@types/lodash.chunk": "4.2.9",
|
|
58
|
-
"@types/react": "18.2.
|
|
46
|
+
"@types/react": "18.2.45",
|
|
59
47
|
"@types/testing-library__jest-dom": "5.14.9",
|
|
60
48
|
"date-fns": "2.30.0",
|
|
61
|
-
"gatsby": "5.12.
|
|
62
|
-
"jest": "29.
|
|
63
|
-
"jest-environment-jsdom": "29.
|
|
64
|
-
"next": "13.
|
|
49
|
+
"gatsby": "5.12.12",
|
|
50
|
+
"jest": "29.7.0",
|
|
51
|
+
"jest-environment-jsdom": "29.7.0",
|
|
52
|
+
"next": "13.5.6",
|
|
65
53
|
"npm-run-all": "4.1.5",
|
|
66
54
|
"react": "18.2.0",
|
|
67
55
|
"react-dom": "18.2.0",
|
|
@@ -74,13 +62,13 @@
|
|
|
74
62
|
"rollup-plugin-node-polyfills": "0.2.1",
|
|
75
63
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
76
64
|
"rollup-plugin-postcss": "4.0.2",
|
|
77
|
-
"rollup-plugin-typescript2": "0.
|
|
78
|
-
"sass": "1.
|
|
65
|
+
"rollup-plugin-typescript2": "0.36.0",
|
|
66
|
+
"sass": "1.69.5",
|
|
79
67
|
"tslib": "2.6.2",
|
|
80
68
|
"typescript": "4.9.5",
|
|
81
|
-
"vega": "5.
|
|
82
|
-
"vega-embed": "6.
|
|
83
|
-
"vega-lite": "5.
|
|
69
|
+
"vega": "5.26.1",
|
|
70
|
+
"vega-embed": "6.23.0",
|
|
71
|
+
"vega-lite": "5.16.3"
|
|
84
72
|
},
|
|
85
73
|
"peerDependencies": {
|
|
86
74
|
"date-fns": "^2.30.0",
|
|
@@ -100,5 +88,16 @@
|
|
|
100
88
|
"optional": true
|
|
101
89
|
}
|
|
102
90
|
},
|
|
103
|
-
"
|
|
104
|
-
|
|
91
|
+
"scripts": {
|
|
92
|
+
"prebuild": "npm run clean",
|
|
93
|
+
"build": "npm-run-all build:**",
|
|
94
|
+
"build:rollup": "rollup --config rollup.config.mjs",
|
|
95
|
+
"build:rollup-components": "rollup --config rollup-components.config.mjs",
|
|
96
|
+
"build:test-results": "mkdir -p pages && NODE_OPTIONS=--experimental-vm-modules jest --json --outputFile=dist/.jest-test-results.json --silent",
|
|
97
|
+
"clean": "rimraf dist/ pages/",
|
|
98
|
+
"lint": "tsc --project ./tsconfig.json --noEmit && tsc --noEmit --project ./tsconfig.test.json",
|
|
99
|
+
"test": "mkdir -p pages && NODE_OPTIONS=--experimental-vm-modules jest --verbose",
|
|
100
|
+
"watch:build": "rollup -c --watch",
|
|
101
|
+
"watch:test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose --watch"
|
|
102
|
+
}
|
|
103
|
+
}
|