@parrot-co/parrot-ui 0.0.65 → 0.0.67
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 +19 -2
- package/dist/main.js.map +1 -1
- package/dist/module.js +16 -3
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +3236 -16
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/main.js
CHANGED
|
@@ -45,6 +45,10 @@ $parcel$export(module.exports, "IconTray", () => $d9681b77772be59b$export$50e381
|
|
|
45
45
|
$parcel$export(module.exports, "Sticker", () => $a15741e0d788b3da$export$ea98c603db73aee7);
|
|
46
46
|
$parcel$export(module.exports, "DropdownMenu", () => $39b5e387b93e95b5$export$e44a253a59704894);
|
|
47
47
|
$parcel$export(module.exports, "Tabs", () => $33f331db51cbeb3d$export$1aaa3deaa90ea306);
|
|
48
|
+
$parcel$export(module.exports, "Table", () => $3dd82f03c348455b$export$54ec01a60f47d33d);
|
|
49
|
+
$parcel$export(module.exports, "parrot", () => $80923bc9c1ba824c$export$3817b7a54a07cec7);
|
|
50
|
+
$parcel$export(module.exports, "ParrotTheme", () => $80923bc9c1ba824c$export$bca14c5b3b88a9c9);
|
|
51
|
+
$parcel$export(module.exports, "ParrotThemeConfig", () => $80923bc9c1ba824c$export$e506a1d27d1eaa20);
|
|
48
52
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
49
53
|
|
|
50
54
|
const $80923bc9c1ba824c$export$8f45430ccf837300 = {
|
|
@@ -107,7 +111,8 @@ const $80923bc9c1ba824c$export$8f45430ccf837300 = {
|
|
|
107
111
|
whiteA: $E4F9t$radixuicolors.whiteA,
|
|
108
112
|
blackA: $E4F9t$radixuicolors.blackA
|
|
109
113
|
};
|
|
110
|
-
const { styled: $80923bc9c1ba824c$export$3817b7a54a07cec7 , css: $80923bc9c1ba824c$export$dbf350e5966cf602 , keyframes: $80923bc9c1ba824c$export$d25ddfdf17c3ad3e , config: $80923bc9c1ba824c$export$e506a1d27d1eaa20 } = (0, $E4F9t$stitchesreact.createStitches)({
|
|
114
|
+
const { styled: $80923bc9c1ba824c$export$3817b7a54a07cec7 , css: $80923bc9c1ba824c$export$dbf350e5966cf602 , keyframes: $80923bc9c1ba824c$export$d25ddfdf17c3ad3e , config: $80923bc9c1ba824c$export$e506a1d27d1eaa20 , theme: $80923bc9c1ba824c$export$bca14c5b3b88a9c9 } = (0, $E4F9t$stitchesreact.createStitches)({
|
|
115
|
+
prefix: "parrot-ui",
|
|
111
116
|
theme: {
|
|
112
117
|
colors: {
|
|
113
118
|
...(0, $E4F9t$radixuicolors.gray),
|
|
@@ -3829,7 +3834,7 @@ const $2b13091263e81761$export$fb63e7a0be1d57e0 = (0, $80923bc9c1ba824c$export$3
|
|
|
3829
3834
|
|
|
3830
3835
|
|
|
3831
3836
|
|
|
3832
|
-
const $aaa41eb9d28679a0$var$Tabs = /*#__PURE__*/ $E4F9t$react.forwardRef((props, ref)=>{
|
|
3837
|
+
const $aaa41eb9d28679a0$var$Tabs = /*#__PURE__*/ $E4F9t$react.forwardRef(({ css: css , ...props }, ref)=>{
|
|
3833
3838
|
const state = (0, $E4F9t$reactstately.useTabListState)(props);
|
|
3834
3839
|
const tabRef = $E4F9t$react.useRef(null);
|
|
3835
3840
|
const [indicatorStyles, setIndicatorStyles] = $E4F9t$react.useState({
|
|
@@ -3851,6 +3856,7 @@ const $aaa41eb9d28679a0$var$Tabs = /*#__PURE__*/ $E4F9t$react.forwardRef((props,
|
|
|
3851
3856
|
position: "relative",
|
|
3852
3857
|
ref: ref,
|
|
3853
3858
|
className: "tabs",
|
|
3859
|
+
css: css,
|
|
3854
3860
|
children: [
|
|
3855
3861
|
/*#__PURE__*/ (0, $E4F9t$reactjsxruntime.jsxs)((0, $2b13091263e81761$export$3f801fc7e5c696a8), {
|
|
3856
3862
|
...tabListProps,
|
|
@@ -4702,4 +4708,15 @@ function $39b5e387b93e95b5$export$e44a253a59704894(props) {
|
|
|
4702
4708
|
|
|
4703
4709
|
|
|
4704
4710
|
|
|
4711
|
+
const $3dd82f03c348455b$export$54ec01a60f47d33d = /*#__PURE__*/ $E4F9t$react.forwardRef((props, ref)=>{
|
|
4712
|
+
return /*#__PURE__*/ (0, $E4F9t$reactjsxruntime.jsx)("div", {});
|
|
4713
|
+
});
|
|
4714
|
+
$3dd82f03c348455b$export$54ec01a60f47d33d.displayName = "Table";
|
|
4715
|
+
|
|
4716
|
+
|
|
4717
|
+
|
|
4718
|
+
|
|
4719
|
+
|
|
4720
|
+
|
|
4721
|
+
|
|
4705
4722
|
//# sourceMappingURL=main.js.map
|