@ecohouse/ui 0.1.40 → 0.1.41
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/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +26 -1
- package/dist/index.d.ts +26 -1
- package/dist/index.js +5 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Drawer/Drawer.tsx +1 -2
- package/src/components/Select/Select.tsx +2 -2
- package/src/index.ts +2 -0
package/dist/index.cjs
CHANGED
|
@@ -34587,7 +34587,7 @@ var DEFAULT_WIDTH2 = 652;
|
|
|
34587
34587
|
var DEFAULT_DURATION = 320;
|
|
34588
34588
|
var WEB_Z_INDEX2 = 500;
|
|
34589
34589
|
var CLOSE_ICON_SIZE = 24;
|
|
34590
|
-
react.forwardRef(function Drawer2({
|
|
34590
|
+
var Drawer = react.forwardRef(function Drawer2({
|
|
34591
34591
|
open,
|
|
34592
34592
|
onClose,
|
|
34593
34593
|
children,
|
|
@@ -34821,8 +34821,7 @@ react.forwardRef(function Drawer2({
|
|
|
34821
34821
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
34822
34822
|
reactNative.Animated.View,
|
|
34823
34823
|
{
|
|
34824
|
-
pointerEvents: "none"
|
|
34825
|
-
style: [styles29.backdrop, { opacity: animatedBackdrop }]
|
|
34824
|
+
style: [styles29.backdrop, { opacity: animatedBackdrop, pointerEvents: "none" }]
|
|
34826
34825
|
}
|
|
34827
34826
|
),
|
|
34828
34827
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -35702,7 +35701,7 @@ function MultiValueChips({ options, disabled, onRemove }) {
|
|
|
35702
35701
|
setEllipsisWidth((current) => current === next ? current : next);
|
|
35703
35702
|
};
|
|
35704
35703
|
return /* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: styles33.multiValueRoot, children: [
|
|
35705
|
-
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { pointerEvents: "none"
|
|
35704
|
+
/* @__PURE__ */ jsxRuntime.jsxs(reactNative.View, { style: [styles33.measureRow, { pointerEvents: "none" }], children: [
|
|
35706
35705
|
options.map((option) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
35707
35706
|
reactNative.View,
|
|
35708
35707
|
{
|
|
@@ -36102,7 +36101,7 @@ var Select = react.forwardRef(
|
|
|
36102
36101
|
}
|
|
36103
36102
|
],
|
|
36104
36103
|
children: [
|
|
36105
|
-
multiple ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { pointerEvents: "none"
|
|
36104
|
+
multiple ? /* @__PURE__ */ jsxRuntime.jsx(reactNative.View, { style: [styles33.itemCheckbox, { pointerEvents: "none" }], children: /* @__PURE__ */ jsxRuntime.jsx(Checkbox, { value: isSelected, variant: "light" }) }) : null,
|
|
36106
36105
|
/* @__PURE__ */ jsxRuntime.jsx(reactNative.Text, { style: styles33.itemLabel, numberOfLines: 1, children: option.label })
|
|
36107
36106
|
]
|
|
36108
36107
|
},
|
|
@@ -37807,6 +37806,7 @@ exports.CopyIcon = CopyIcon;
|
|
|
37807
37806
|
exports.Counter = Counter;
|
|
37808
37807
|
exports.DatePicker = DatePicker;
|
|
37809
37808
|
exports.DownloadIcon = DownloadIcon;
|
|
37809
|
+
exports.Drawer = Drawer;
|
|
37810
37810
|
exports.EditIcon = EditIcon;
|
|
37811
37811
|
exports.FacebookIcon = FacebookIcon;
|
|
37812
37812
|
exports.FavoritesButton = FavoritesButton;
|