@pantheon-systems/pds-toolkit-react 1.0.0-dev.13 → 1.0.0-dev.15
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/cjs/index.js +40 -40
- package/_dist/cjs/index.js.map +1 -1
- package/_dist/css/pds-components.css +16 -14
- package/_dist/css/pds-core.css +2 -2
- package/_dist/css/pds-layouts.css +1 -0
- package/_dist/esm/index.js +40 -40
- package/_dist/esm/index.js.map +1 -1
- package/package.json +17 -15
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantheon-systems/pds-toolkit-react",
|
|
3
3
|
"technology": "React",
|
|
4
|
-
"version": "1.0.0-dev.
|
|
4
|
+
"version": "1.0.0-dev.15",
|
|
5
5
|
"description": "PDS toolkit built using the React framework",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -19,9 +19,10 @@
|
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "rollup -c",
|
|
22
|
-
"postbuild": "npm run build:css && npm run build:css:components",
|
|
22
|
+
"postbuild": "npm run build:css && npm run build:css:components && npm run build:css:layouts",
|
|
23
23
|
"build:css": "postcss src/core.css -o _dist/css/pds-core.css",
|
|
24
24
|
"build:css:components": "postcss src/components/index.css -o _dist/css/pds-components.css",
|
|
25
|
+
"build:css:layouts": "postcss src/layouts/index.css -o _dist/css/pds-layouts.css",
|
|
25
26
|
"build:css:watch": "npm run build:css -- -w",
|
|
26
27
|
"prestorybook": "npm run build:css",
|
|
27
28
|
"storybook": "storybook dev -p 6006",
|
|
@@ -43,6 +44,7 @@
|
|
|
43
44
|
"predeploy:pantheon": "npm run build:css",
|
|
44
45
|
"deploy:pantheon": "storybook build",
|
|
45
46
|
"generate:component": "plop component",
|
|
47
|
+
"generate:layout": "plop layout",
|
|
46
48
|
"generate:foundation": "plop foundation",
|
|
47
49
|
"generate:pattern": "plop pattern",
|
|
48
50
|
"generate:utility": "plop utility",
|
|
@@ -55,23 +57,23 @@
|
|
|
55
57
|
"@csstools/postcss-design-tokens": "^2.0.4",
|
|
56
58
|
"@csstools/postcss-global-data": "^1.0.3",
|
|
57
59
|
"@floating-ui/react-dom": "~1.3.0",
|
|
58
|
-
"@pantheon-systems/pds-design-tokens": "^1.0.0-dev.
|
|
60
|
+
"@pantheon-systems/pds-design-tokens": "^1.0.0-dev.75",
|
|
59
61
|
"@playwright/test": "^1.36.2",
|
|
60
62
|
"@rollup/plugin-babel": "^6.0.3",
|
|
61
63
|
"@rollup/plugin-commonjs": "^24.1.0",
|
|
62
64
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
63
|
-
"@storybook/addon-a11y": "^7.
|
|
64
|
-
"@storybook/addon-essentials": "^7.
|
|
65
|
-
"@storybook/addon-interactions": "^7.
|
|
66
|
-
"@storybook/addon-links": "^7.
|
|
65
|
+
"@storybook/addon-a11y": "^7.4.0",
|
|
66
|
+
"@storybook/addon-essentials": "^7.4.0",
|
|
67
|
+
"@storybook/addon-interactions": "^7.4.0",
|
|
68
|
+
"@storybook/addon-links": "^7.4.0",
|
|
67
69
|
"@storybook/addon-postcss": "^2.0.0",
|
|
68
|
-
"@storybook/addon-styling": "^1.3.
|
|
69
|
-
"@storybook/blocks": "^7.
|
|
70
|
-
"@storybook/manager-api": "^7.
|
|
71
|
-
"@storybook/react": "^7.
|
|
72
|
-
"@storybook/react-webpack5": "^7.
|
|
70
|
+
"@storybook/addon-styling": "^1.3.7",
|
|
71
|
+
"@storybook/blocks": "^7.4.0",
|
|
72
|
+
"@storybook/manager-api": "^7.4.0",
|
|
73
|
+
"@storybook/react": "^7.4.0",
|
|
74
|
+
"@storybook/react-webpack5": "^7.4.0",
|
|
73
75
|
"@storybook/testing-library": "^0.2.0",
|
|
74
|
-
"@storybook/theming": "^7.
|
|
76
|
+
"@storybook/theming": "^7.4.0",
|
|
75
77
|
"axe-html-reporter": "^2.2.3",
|
|
76
78
|
"concurrently": "^8.0.1",
|
|
77
79
|
"cssnano": "^6.0.1",
|
|
@@ -96,11 +98,11 @@
|
|
|
96
98
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
97
99
|
"rollup-plugin-postcss": "^4.0.2",
|
|
98
100
|
"rollup-plugin-terser": "^7.0.2",
|
|
99
|
-
"storybook": "^7.
|
|
101
|
+
"storybook": "^7.4.0",
|
|
100
102
|
"storybook-dark-mode": "^3.0.1"
|
|
101
103
|
},
|
|
102
104
|
"peerDependencies": {
|
|
103
|
-
"react": "^17.0.
|
|
105
|
+
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
|
|
104
106
|
},
|
|
105
107
|
"dependencies": {
|
|
106
108
|
"@floating-ui/react": "^0.24.3",
|