@redsift/design-system 8.0.0-alpha.7 → 8.0.0

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.
Files changed (4) hide show
  1. package/index.d.ts +18 -10
  2. package/index.js +400 -283
  3. package/index.js.map +1 -1
  4. package/package.json +14 -12
package/package.json CHANGED
@@ -26,11 +26,14 @@
26
26
  "lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
27
27
  "prepare": "install-peers || exit 0",
28
28
  "prepublishOnly": "yarn build",
29
- "test": "NODE_ENV=test jest --verbose",
29
+ "test:unit": "NODE_ENV=test jest --verbose",
30
+ "test:storybook": "test-storybook -c ../../.storybook --url http://localhost:9000/ --coverage",
31
+ "test": "yarn test:unit && yarn test:storybook",
32
+ "coverage-report": "cp coverage/storybook/coverage-storybook.json coverage/coverage-storybook.json && nyc report --reporter=html -t coverage --report-dir coverage",
30
33
  "version": "version-changelog ../../CHANGELOG.md && changelog-verify ../../CHANGELOG.md && git add ../../CHANGELOG.md"
31
34
  },
32
35
  "types": "index.d.ts",
33
- "version": "8.0.0-alpha.7",
36
+ "version": "8.0.0",
34
37
  "dependencies": {
35
38
  "@react-types/button": "^3.7.0",
36
39
  "@react-types/shared": "^3.16.0",
@@ -49,17 +52,16 @@
49
52
  "@babel/preset-env": "^7.17.10",
50
53
  "@babel/preset-react": "^7.17.12",
51
54
  "@babel/preset-typescript": "^7.16.7",
55
+ "@react-aria/i18n": "^3.7.2",
56
+ "@react-aria/ssr": "^3.6.0",
52
57
  "@rollup/plugin-babel": "^6.0.2",
53
58
  "@rollup/plugin-commonjs": "^24.0.0",
54
59
  "@rollup/plugin-json": "^6.0.0",
55
60
  "@rollup/plugin-node-resolve": "^13.3.0",
56
- "@storybook/addon-a11y": "^6.5.6",
57
- "@storybook/addon-essentials": "^6.5.3",
58
- "@storybook/addon-interactions": "^6.5.3",
59
- "@storybook/addon-links": "^6.5.3",
60
- "@storybook/addon-storyshots": "^6.5.8",
61
- "@storybook/react": "^6.5.14",
61
+ "@storybook/jest": "^0.1.0",
62
+ "@storybook/react": "^7.0.20",
62
63
  "@svgr/rollup": "^6.2.1",
64
+ "@testing-library/dom": "^8.5.0",
63
65
  "@testing-library/jest-dom": "^5.16.4",
64
66
  "@testing-library/react": "^13.4.0",
65
67
  "@testing-library/user-event": "14.2.1",
@@ -74,10 +76,11 @@
74
76
  "changelog-verify": "^1.1.2",
75
77
  "identity-obj-proxy": "^3.0.0",
76
78
  "install-peers-cli": "^2.2.0",
79
+ "istanbul-merge": "^2.0.0",
77
80
  "jest": "^28.1.0",
78
81
  "jest-environment-jsdom": "^29.3.0",
79
- "react": "18.1.0",
80
- "react-dom": "18.1.0",
82
+ "react": "18.2.0",
83
+ "react-dom": "18.2.0",
81
84
  "rollup": "^2.72.1",
82
85
  "rollup-plugin-analyzer": "^4.0.0",
83
86
  "rollup-plugin-auto-external": "^2.0.0",
@@ -88,7 +91,6 @@
88
91
  "rollup-plugin-svg": "^2.0.0",
89
92
  "rollup-plugin-ts-paths-resolve": "^1.7.1",
90
93
  "rollup-plugin-typescript-paths": "^1.3.1",
91
- "storybook-addon-styled-component-theme": "^2.0.0",
92
94
  "style-dictionary": "^3.7.0",
93
95
  "ts-jest": "^28.0.3",
94
96
  "version-changelog": "^3.1.1"
@@ -99,5 +101,5 @@
99
101
  "react-dom": "17 || 18",
100
102
  "styled-components": "^5.3.5"
101
103
  },
102
- "gitHead": "11e39878a6a9e911ccc0b6f203618e151b094079"
104
+ "gitHead": "d5b44ad25f944f5869829750628000b346718034"
103
105
  }