@nypl/design-system-react-components 3.1.3 → 3.1.5-container-queries-rc
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/design-system-react-components.cjs +56 -58
- package/dist/design-system-react-components.js +14095 -14049
- package/dist/src/components/Button/Button.d.ts +1 -1
- package/dist/src/components/Icons/IconSvgs.d.ts +74 -223
- package/dist/src/components/List/List.d.ts +2 -0
- package/dist/src/components/Logo/LogoSvgs.d.ts +54 -163
- package/dist/src/components/Modal/Modal.d.ts +1 -1
- package/dist/src/components/MultiSelect/MultiSelect.d.ts +12 -10
- package/dist/src/components/MultiSelect/MultiSelectItemsCountButton.d.ts +2 -2
- package/dist/src/components/SearchBar/SearchBar.d.ts +2 -1
- package/dist/src/components/StructuredContent/StructuredContent.d.ts +1 -1
- package/dist/src/components/TextInput/TextInput.d.ts +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/theme/components/card.d.ts +63 -39
- package/dist/src/theme/components/checkbox.d.ts +2 -0
- package/dist/src/theme/components/featuredContent.d.ts +63 -32
- package/dist/src/theme/components/heading.d.ts +2 -2
- package/dist/src/theme/components/list.d.ts +3 -3
- package/dist/src/theme/components/multiSelectItemsCountButton.d.ts +3 -0
- package/dist/src/theme/components/searchBar.d.ts +18 -18
- package/dist/src/theme/components/structuredContent.d.ts +5 -5
- package/dist/styles.css +1 -1
- package/package.json +21 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nypl/design-system-react-components",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.5-container-queries-rc",
|
|
4
4
|
"description": "NYPL Reservoir Design System React Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -58,14 +58,11 @@
|
|
|
58
58
|
"@charlietango/use-native-lazy-loading": "1.10.0",
|
|
59
59
|
"@emotion/react": "11.11.1",
|
|
60
60
|
"@emotion/styled": "11.11.0",
|
|
61
|
-
"downshift": "6.1.7",
|
|
62
61
|
"framer-motion": "10.16.4",
|
|
63
62
|
"react-datepicker": "4.14.1",
|
|
64
63
|
"react-intersection-observer": "9.2.2",
|
|
65
64
|
"system-font-css": "2.0.2",
|
|
66
|
-
"
|
|
67
|
-
"typescript": "4.9.5",
|
|
68
|
-
"vite-plugin-svgr": "2.4.0"
|
|
65
|
+
"typescript": "4.9.5"
|
|
69
66
|
},
|
|
70
67
|
"peerDependencies": {
|
|
71
68
|
"@chakra-ui/react": ">=2.8.2",
|
|
@@ -75,23 +72,24 @@
|
|
|
75
72
|
"framer-motion": ">=10.16.4",
|
|
76
73
|
"react": ">=17",
|
|
77
74
|
"react-dom": ">=17",
|
|
78
|
-
"typescript": "4.9.5"
|
|
75
|
+
"typescript": ">=4.9.5"
|
|
79
76
|
},
|
|
80
77
|
"devDependencies": {
|
|
81
78
|
"@babel/core": "7.14.6",
|
|
82
79
|
"@jest/core": "27.3.1",
|
|
83
80
|
"@rollup/plugin-commonjs": "24.0.1",
|
|
84
81
|
"@rollup/plugin-typescript": "11.0.0",
|
|
85
|
-
"@storybook/addon-a11y": "
|
|
86
|
-
"@storybook/addon-
|
|
87
|
-
"@storybook/addon-
|
|
88
|
-
"@storybook/addon-
|
|
89
|
-
"@storybook/addon-
|
|
90
|
-
"@storybook/
|
|
82
|
+
"@storybook/addon-a11y": "8.0.8",
|
|
83
|
+
"@storybook/addon-designs": "8.0.0",
|
|
84
|
+
"@storybook/addon-essentials": "8.0.8",
|
|
85
|
+
"@storybook/addon-interactions": "8.0.8",
|
|
86
|
+
"@storybook/addon-jest": "8.0.8",
|
|
87
|
+
"@storybook/addon-links": "8.0.8",
|
|
88
|
+
"@storybook/blocks": "8.0.8",
|
|
89
|
+
"@storybook/react": "8.0.8",
|
|
90
|
+
"@storybook/react-vite": "8.0.8",
|
|
91
|
+
"@storybook/test": "8.0.8",
|
|
91
92
|
"@storybook/jest": "0.2.3",
|
|
92
|
-
"@storybook/react": "7.5.1",
|
|
93
|
-
"@storybook/react-vite": "7.5.1",
|
|
94
|
-
"@storybook/test": "7.6.12",
|
|
95
93
|
"@svgr/webpack": "5.5.0",
|
|
96
94
|
"@testing-library/dom": "9.2.0",
|
|
97
95
|
"@testing-library/jest-dom": "5.14.1",
|
|
@@ -105,7 +103,7 @@
|
|
|
105
103
|
"@types/testing-library__jest-dom": "5.14.1",
|
|
106
104
|
"@typescript-eslint/eslint-plugin": "5.57.0",
|
|
107
105
|
"@typescript-eslint/parser": "5.57.0",
|
|
108
|
-
"@vitejs/plugin-react": "
|
|
106
|
+
"@vitejs/plugin-react": "4.2.1",
|
|
109
107
|
"css-loader": "5.2.7",
|
|
110
108
|
"eslint": "7.31.0",
|
|
111
109
|
"eslint-config-prettier": "8.8.0",
|
|
@@ -117,6 +115,7 @@
|
|
|
117
115
|
"jest": "29.4.3",
|
|
118
116
|
"jest-axe": "5.0.1",
|
|
119
117
|
"jest-environment-jsdom": "29.5.0",
|
|
118
|
+
"jest-transformer-svg": "2.0.2",
|
|
120
119
|
"lint-staged": "10.5.4",
|
|
121
120
|
"normalize.css": "8.0.1",
|
|
122
121
|
"prettier": "2.4.1",
|
|
@@ -126,15 +125,16 @@
|
|
|
126
125
|
"react-docgen-typescript-loader": "3.7.2",
|
|
127
126
|
"react-dom": "18.2.0",
|
|
128
127
|
"react-test-renderer": "18.2.0",
|
|
129
|
-
"remark-gfm": "
|
|
128
|
+
"remark-gfm": "4.0.0",
|
|
130
129
|
"sass": "1.60.0",
|
|
131
130
|
"sass-loader": "10.0.0",
|
|
132
|
-
"storybook": "
|
|
133
|
-
"storybook-addon-designs": "7.0.0-beta.2",
|
|
131
|
+
"storybook": "8.0.8",
|
|
134
132
|
"style-loader": "2.0.0",
|
|
135
133
|
"ts-jest": "29.0.5",
|
|
136
134
|
"tslib": "2.3.0",
|
|
137
|
-
"
|
|
138
|
-
"vite
|
|
135
|
+
"typescript": "4.9.5",
|
|
136
|
+
"vite": "5.2.8",
|
|
137
|
+
"vite-plugin-dts": "2.1.0",
|
|
138
|
+
"vite-plugin-svgr": "4.2.0"
|
|
139
139
|
}
|
|
140
140
|
}
|