@parrot-co/parrot-ui 0.0.58 → 0.0.60
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/main.js +24 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +24 -0
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +970 -55
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/main.js
CHANGED
|
@@ -253,6 +253,18 @@ const { styled: $80923bc9c1ba824c$export$3817b7a54a07cec7 , css: $80923bc9c1ba82
|
|
|
253
253
|
96: "24rem"
|
|
254
254
|
}
|
|
255
255
|
},
|
|
256
|
+
media: {
|
|
257
|
+
xs: "(min-width: 320px)",
|
|
258
|
+
sm: "(min-width: 425px)",
|
|
259
|
+
md: "(min-width: 768px)",
|
|
260
|
+
lg: "(min-width: 1204px)",
|
|
261
|
+
xl: "(min-width: 1440px)",
|
|
262
|
+
"2xl": "(min-width: 1536px)",
|
|
263
|
+
motion: "(prefers-reduced-motion)",
|
|
264
|
+
hover: "(any-hover: hover)",
|
|
265
|
+
dark: "(prefers-color-scheme: dark)",
|
|
266
|
+
light: "(prefers-color-scheme: light)"
|
|
267
|
+
},
|
|
256
268
|
utils: {
|
|
257
269
|
p: (value)=>({
|
|
258
270
|
padding: value
|
|
@@ -1444,6 +1456,18 @@ const $6fb5722ea7b379d7$export$5f1af8db9871e1d6 = (0, $80923bc9c1ba824c$export$3
|
|
|
1444
1456
|
true: {
|
|
1445
1457
|
textDecoration: "underline"
|
|
1446
1458
|
}
|
|
1459
|
+
},
|
|
1460
|
+
italic: {
|
|
1461
|
+
true: {
|
|
1462
|
+
fontStyle: "italic"
|
|
1463
|
+
}
|
|
1464
|
+
},
|
|
1465
|
+
truncate: {
|
|
1466
|
+
true: {
|
|
1467
|
+
whiteSpace: "nowrap",
|
|
1468
|
+
overflow: "hidden",
|
|
1469
|
+
textOverflow: "ellipsis"
|
|
1470
|
+
}
|
|
1447
1471
|
}
|
|
1448
1472
|
}
|
|
1449
1473
|
});
|