@nypl/design-system-react-components 1.0.3-beta → 1.0.3
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/CHANGELOG.md +1454 -0
- package/dist/components/Card/Card.d.ts +8 -6
- package/dist/components/Logo/Logo.d.ts +1 -1
- package/dist/components/Logo/LogoSvgs.d.ts +2 -0
- package/dist/components/Table/Table.d.ts +3 -2
- package/dist/design-system-react-components.cjs.development.js +771 -451
- package/dist/design-system-react-components.cjs.development.js.map +1 -1
- package/dist/design-system-react-components.cjs.production.min.js +1 -1
- package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
- package/dist/design-system-react-components.esm.js +771 -451
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/theme/components/customTable.d.ts +522 -34
- package/dist/theme/components/select.d.ts +0 -5
- package/dist/theme/components/structuredContent.d.ts +117 -17
- package/dist/theme/components/toggle.d.ts +1 -0
- package/package.json +3 -3
|
@@ -179,46 +179,146 @@ declare const StructuredContent: {
|
|
|
179
179
|
table: {
|
|
180
180
|
width: string;
|
|
181
181
|
th: {
|
|
182
|
-
border: string;
|
|
183
|
-
borderBottom: string;
|
|
184
182
|
color: string;
|
|
185
|
-
fontSize: string;
|
|
186
183
|
fontWeight: string;
|
|
187
|
-
letterSpacing: string;
|
|
188
|
-
paddingLeft: number;
|
|
189
|
-
paddingRight: string;
|
|
190
184
|
textTransform: string;
|
|
191
185
|
_first: {
|
|
192
|
-
paddingLeft:
|
|
186
|
+
paddingLeft: {
|
|
187
|
+
base: string;
|
|
188
|
+
md: string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
border: string;
|
|
192
|
+
borderBottom: string;
|
|
193
|
+
borderColor: {
|
|
194
|
+
base: string;
|
|
195
|
+
md: string;
|
|
196
|
+
};
|
|
197
|
+
display: {
|
|
198
|
+
base: string;
|
|
199
|
+
md: string;
|
|
200
|
+
};
|
|
201
|
+
fontSize: {
|
|
202
|
+
base: string;
|
|
203
|
+
lg: string;
|
|
204
|
+
};
|
|
205
|
+
gap: string;
|
|
206
|
+
letterSpacing: string;
|
|
207
|
+
lineHeight: number;
|
|
208
|
+
paddingBottom: {
|
|
209
|
+
base: string;
|
|
210
|
+
md: string;
|
|
211
|
+
};
|
|
212
|
+
paddingLeft: number;
|
|
213
|
+
paddingRight: {
|
|
214
|
+
base: string;
|
|
215
|
+
md: string;
|
|
216
|
+
};
|
|
217
|
+
paddingTop: {
|
|
218
|
+
base: string;
|
|
219
|
+
md: string;
|
|
193
220
|
};
|
|
194
221
|
_last: {
|
|
222
|
+
paddingRight: {
|
|
223
|
+
base: string;
|
|
224
|
+
md: string;
|
|
225
|
+
};
|
|
226
|
+
borderBottom: string;
|
|
227
|
+
borderColor: {
|
|
228
|
+
base: string;
|
|
229
|
+
md: string;
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
"> span": {
|
|
233
|
+
flexBasis: string;
|
|
234
|
+
paddingBottom: {
|
|
235
|
+
base: string;
|
|
236
|
+
md: string;
|
|
237
|
+
};
|
|
195
238
|
paddingRight: string;
|
|
239
|
+
paddingTop: {
|
|
240
|
+
base: string;
|
|
241
|
+
md: string;
|
|
242
|
+
};
|
|
243
|
+
_first: {
|
|
244
|
+
bg: string;
|
|
245
|
+
color: string;
|
|
246
|
+
fontWeight: string;
|
|
247
|
+
paddingLeft: string;
|
|
248
|
+
};
|
|
196
249
|
};
|
|
197
250
|
textAlign: string;
|
|
198
251
|
paddingInlineStart: string;
|
|
199
252
|
paddingInlineEnd: string;
|
|
200
|
-
paddingTop: string;
|
|
201
|
-
paddingBottom: string;
|
|
202
|
-
lineHeight: string;
|
|
203
253
|
};
|
|
204
254
|
td: {
|
|
255
|
+
_first: {
|
|
256
|
+
paddingLeft: {
|
|
257
|
+
base: string;
|
|
258
|
+
md: string;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
_last: {
|
|
262
|
+
borderBottom: {
|
|
263
|
+
base: number;
|
|
264
|
+
md: string;
|
|
265
|
+
};
|
|
266
|
+
borderColor: {
|
|
267
|
+
base: string;
|
|
268
|
+
md: string;
|
|
269
|
+
};
|
|
270
|
+
};
|
|
205
271
|
border: string;
|
|
206
272
|
borderBottom: string;
|
|
273
|
+
borderColor: {
|
|
274
|
+
base: string;
|
|
275
|
+
md: string;
|
|
276
|
+
};
|
|
277
|
+
display: {
|
|
278
|
+
base: string;
|
|
279
|
+
md: string;
|
|
280
|
+
};
|
|
281
|
+
fontSize: {
|
|
282
|
+
base: string;
|
|
283
|
+
lg: string;
|
|
284
|
+
};
|
|
285
|
+
gap: string;
|
|
207
286
|
letterSpacing: string;
|
|
287
|
+
lineHeight: number;
|
|
288
|
+
paddingBottom: {
|
|
289
|
+
base: string;
|
|
290
|
+
md: string;
|
|
291
|
+
};
|
|
208
292
|
paddingLeft: number;
|
|
209
|
-
paddingRight:
|
|
210
|
-
|
|
211
|
-
|
|
293
|
+
paddingRight: {
|
|
294
|
+
base: string;
|
|
295
|
+
md: string;
|
|
212
296
|
};
|
|
213
|
-
|
|
297
|
+
paddingTop: {
|
|
298
|
+
base: string;
|
|
299
|
+
md: string;
|
|
300
|
+
};
|
|
301
|
+
"> span": {
|
|
302
|
+
flexBasis: string;
|
|
303
|
+
paddingBottom: {
|
|
304
|
+
base: string;
|
|
305
|
+
md: string;
|
|
306
|
+
};
|
|
214
307
|
paddingRight: string;
|
|
308
|
+
paddingTop: {
|
|
309
|
+
base: string;
|
|
310
|
+
md: string;
|
|
311
|
+
};
|
|
312
|
+
_first: {
|
|
313
|
+
bg: string;
|
|
314
|
+
color: string;
|
|
315
|
+
fontWeight: string;
|
|
316
|
+
paddingLeft: string;
|
|
317
|
+
};
|
|
215
318
|
};
|
|
216
319
|
textAlign: string;
|
|
217
320
|
paddingInlineStart: string;
|
|
218
321
|
paddingInlineEnd: string;
|
|
219
|
-
paddingTop: string;
|
|
220
|
-
paddingBottom: string;
|
|
221
|
-
lineHeight: string;
|
|
222
322
|
};
|
|
223
323
|
};
|
|
224
324
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nypl/design-system-react-components",
|
|
3
|
-
"version": "1.0.3
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "NYPL Reservoir Design System React Components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"@emotion/react": ">=11.4.1",
|
|
62
62
|
"@emotion/styled": ">=11.3.0",
|
|
63
63
|
"framer-motion": "^4.1.17",
|
|
64
|
-
"he": "1.2.0",
|
|
65
64
|
"react-datepicker": "4.1.1",
|
|
66
65
|
"system-font-css": "2.0.2",
|
|
67
66
|
"typescript": "4.3.5"
|
|
@@ -73,7 +72,8 @@
|
|
|
73
72
|
"@emotion/styled": ">=11.3.0",
|
|
74
73
|
"framer-motion": "^4.1.17",
|
|
75
74
|
"react": ">=16.13.0",
|
|
76
|
-
"react-dom": ">=16.13.0"
|
|
75
|
+
"react-dom": ">=16.13.0",
|
|
76
|
+
"typescript": "*"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@babel/core": "7.14.6",
|