@parrot-co/parrot-ui 0.0.61 → 0.0.63
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 +26 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +25 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +10 -9
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/main.js
CHANGED
|
@@ -44,6 +44,8 @@ $parcel$export(module.exports, "ColorTray", () => $41fe5e52028acbc1$export$dbada
|
|
|
44
44
|
$parcel$export(module.exports, "IconTray", () => $d9681b77772be59b$export$50e381fea3a45244);
|
|
45
45
|
$parcel$export(module.exports, "Sticker", () => $a15741e0d788b3da$export$ea98c603db73aee7);
|
|
46
46
|
$parcel$export(module.exports, "DropdownMenu", () => $39b5e387b93e95b5$export$e44a253a59704894);
|
|
47
|
+
$parcel$export(module.exports, "Tabs", () => $aaa41eb9d28679a0$export$be92b6f5f03c0fe9);
|
|
48
|
+
$parcel$export(module.exports, "TabItem", () => $aaa41eb9d28679a0$export$6d08773d2e66f8f2);
|
|
47
49
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
48
50
|
|
|
49
51
|
const $80923bc9c1ba824c$export$8f45430ccf837300 = {
|
|
@@ -1042,7 +1044,8 @@ const $02a166a5043d2558$export$5a7eb6284e7684f5 = (0, $80923bc9c1ba824c$export$d
|
|
|
1042
1044
|
outline: {},
|
|
1043
1045
|
lightOutline: {},
|
|
1044
1046
|
solidMono: {},
|
|
1045
|
-
plain: {}
|
|
1047
|
+
plain: {},
|
|
1048
|
+
pastel: {}
|
|
1046
1049
|
},
|
|
1047
1050
|
isInteractive: {}
|
|
1048
1051
|
},
|
|
@@ -1052,7 +1055,8 @@ const $02a166a5043d2558$export$5a7eb6284e7684f5 = (0, $80923bc9c1ba824c$export$d
|
|
|
1052
1055
|
...$02a166a5043d2558$export$aa42d30026ce41b9("outline"),
|
|
1053
1056
|
...$02a166a5043d2558$export$aa42d30026ce41b9("lightOutline"),
|
|
1054
1057
|
...$02a166a5043d2558$export$aa42d30026ce41b9("solidMono"),
|
|
1055
|
-
...$02a166a5043d2558$export$aa42d30026ce41b9("plain")
|
|
1058
|
+
...$02a166a5043d2558$export$aa42d30026ce41b9("plain"),
|
|
1059
|
+
...$02a166a5043d2558$export$aa42d30026ce41b9("pastel")
|
|
1056
1060
|
]
|
|
1057
1061
|
});
|
|
1058
1062
|
function $02a166a5043d2558$export$71074ab0ed740397(color) {
|
|
@@ -1073,6 +1077,24 @@ function $02a166a5043d2558$export$ccdcc3b9d72a654(color, variant) {
|
|
|
1073
1077
|
}
|
|
1074
1078
|
}
|
|
1075
1079
|
};
|
|
1080
|
+
if (variant === "pastel") return {
|
|
1081
|
+
color: color,
|
|
1082
|
+
variant: variant,
|
|
1083
|
+
css: {
|
|
1084
|
+
background: `$${color}6`,
|
|
1085
|
+
color: `$${color}12`,
|
|
1086
|
+
fill: `$${color}12`,
|
|
1087
|
+
border: "none",
|
|
1088
|
+
'&[data-interactive="true"]': {
|
|
1089
|
+
"&:hover": {
|
|
1090
|
+
background: `$${color}5`
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
"&:focus": {
|
|
1094
|
+
boxShadow: $02a166a5043d2558$export$71074ab0ed740397(color)
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
};
|
|
1076
1098
|
if (variant === "plain") return {
|
|
1077
1099
|
color: color,
|
|
1078
1100
|
variant: variant,
|
|
@@ -3341,6 +3363,7 @@ const $8fff24416ec1775a$export$f7513421c53ce141 = (0, $80923bc9c1ba824c$export$3
|
|
|
3341
3363
|
justifyContent: "center",
|
|
3342
3364
|
overflow: "hidden",
|
|
3343
3365
|
flexShrink: 0,
|
|
3366
|
+
transition: "all 250ms",
|
|
3344
3367
|
img: {
|
|
3345
3368
|
width: "100%",
|
|
3346
3369
|
objectFit: "cover",
|
|
@@ -4671,4 +4694,5 @@ function $39b5e387b93e95b5$export$e44a253a59704894(props) {
|
|
|
4671
4694
|
|
|
4672
4695
|
|
|
4673
4696
|
|
|
4697
|
+
|
|
4674
4698
|
//# sourceMappingURL=main.js.map
|