@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/module.js
CHANGED
|
@@ -216,6 +216,18 @@ const { styled: $9ade691eb9e41cfb$export$3817b7a54a07cec7 , css: $9ade691eb9e41c
|
|
|
216
216
|
96: "24rem"
|
|
217
217
|
}
|
|
218
218
|
},
|
|
219
|
+
media: {
|
|
220
|
+
xs: "(min-width: 320px)",
|
|
221
|
+
sm: "(min-width: 425px)",
|
|
222
|
+
md: "(min-width: 768px)",
|
|
223
|
+
lg: "(min-width: 1204px)",
|
|
224
|
+
xl: "(min-width: 1440px)",
|
|
225
|
+
"2xl": "(min-width: 1536px)",
|
|
226
|
+
motion: "(prefers-reduced-motion)",
|
|
227
|
+
hover: "(any-hover: hover)",
|
|
228
|
+
dark: "(prefers-color-scheme: dark)",
|
|
229
|
+
light: "(prefers-color-scheme: light)"
|
|
230
|
+
},
|
|
219
231
|
utils: {
|
|
220
232
|
p: (value)=>({
|
|
221
233
|
padding: value
|
|
@@ -1407,6 +1419,18 @@ const $4fdef5d0844b7575$export$5f1af8db9871e1d6 = (0, $9ade691eb9e41cfb$export$3
|
|
|
1407
1419
|
true: {
|
|
1408
1420
|
textDecoration: "underline"
|
|
1409
1421
|
}
|
|
1422
|
+
},
|
|
1423
|
+
italic: {
|
|
1424
|
+
true: {
|
|
1425
|
+
fontStyle: "italic"
|
|
1426
|
+
}
|
|
1427
|
+
},
|
|
1428
|
+
truncate: {
|
|
1429
|
+
true: {
|
|
1430
|
+
whiteSpace: "nowrap",
|
|
1431
|
+
overflow: "hidden",
|
|
1432
|
+
textOverflow: "ellipsis"
|
|
1433
|
+
}
|
|
1410
1434
|
}
|
|
1411
1435
|
}
|
|
1412
1436
|
});
|