dhre-ui-kit 0.0.267 → 0.0.268
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/lib/index.js +8 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +8 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -3789,7 +3789,7 @@ const TagsComponent = ({
|
|
|
3789
3789
|
selectedTag === item?.name ? [styles.selectedTagButton, selectedTagButton] : [styles.unselectedTagButton, unselectedTagButton]
|
|
3790
3790
|
]
|
|
3791
3791
|
},
|
|
3792
|
-
/* @__PURE__ */ React__default["default"].createElement(
|
|
3792
|
+
/* @__PURE__ */ React__default["default"].createElement(reactNative.View, null, /* @__PURE__ */ React__default["default"].createElement(
|
|
3793
3793
|
CustomText$1,
|
|
3794
3794
|
{
|
|
3795
3795
|
textColor: selectedTag === item?.name ? Theme.CONTENT_INVERTED : Theme.CONTENT_SECONDRY,
|
|
@@ -3797,8 +3797,8 @@ const TagsComponent = ({
|
|
|
3797
3797
|
variant: FontStyle.L2_REGULAR
|
|
3798
3798
|
},
|
|
3799
3799
|
item?.name
|
|
3800
|
-
),
|
|
3801
|
-
selectedTag === item?.name && /* @__PURE__ */ React__default["default"].createElement(reactNative.Text, { style: styles.closeButton }, "\u2715")
|
|
3800
|
+
)),
|
|
3801
|
+
/* @__PURE__ */ React__default["default"].createElement(reactNative.View, { style: styles.circleViewAlignment }, selectedTag === item?.name && /* @__PURE__ */ React__default["default"].createElement(reactNative.Text, { style: styles.closeButton }, "\u2715"))
|
|
3802
3802
|
);
|
|
3803
3803
|
return /* @__PURE__ */ React__default["default"].createElement(reactNative.View, null, /* @__PURE__ */ React__default["default"].createElement(
|
|
3804
3804
|
reactNative.FlatList,
|
|
@@ -3838,8 +3838,12 @@ const createStyles = (theme) => {
|
|
|
3838
3838
|
},
|
|
3839
3839
|
closeButton: {
|
|
3840
3840
|
marginLeft: 10,
|
|
3841
|
-
fontSize:
|
|
3841
|
+
fontSize: 14,
|
|
3842
3842
|
color: theme.BORDER_SECONDRY
|
|
3843
|
+
},
|
|
3844
|
+
circleViewAlignment: {
|
|
3845
|
+
justifyContent: "center",
|
|
3846
|
+
alignItems: "center"
|
|
3843
3847
|
}
|
|
3844
3848
|
});
|
|
3845
3849
|
};
|