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.mjs
CHANGED
|
@@ -3753,7 +3753,7 @@ const TagsComponent = ({
|
|
|
3753
3753
|
selectedTag === item?.name ? [styles.selectedTagButton, selectedTagButton] : [styles.unselectedTagButton, unselectedTagButton]
|
|
3754
3754
|
]
|
|
3755
3755
|
},
|
|
3756
|
-
/* @__PURE__ */ React.createElement(
|
|
3756
|
+
/* @__PURE__ */ React.createElement(View, null, /* @__PURE__ */ React.createElement(
|
|
3757
3757
|
CustomText$1,
|
|
3758
3758
|
{
|
|
3759
3759
|
textColor: selectedTag === item?.name ? Theme.CONTENT_INVERTED : Theme.CONTENT_SECONDRY,
|
|
@@ -3761,8 +3761,8 @@ const TagsComponent = ({
|
|
|
3761
3761
|
variant: FontStyle.L2_REGULAR
|
|
3762
3762
|
},
|
|
3763
3763
|
item?.name
|
|
3764
|
-
),
|
|
3765
|
-
selectedTag === item?.name && /* @__PURE__ */ React.createElement(Text, { style: styles.closeButton }, "\u2715")
|
|
3764
|
+
)),
|
|
3765
|
+
/* @__PURE__ */ React.createElement(View, { style: styles.circleViewAlignment }, selectedTag === item?.name && /* @__PURE__ */ React.createElement(Text, { style: styles.closeButton }, "\u2715"))
|
|
3766
3766
|
);
|
|
3767
3767
|
return /* @__PURE__ */ React.createElement(View, null, /* @__PURE__ */ React.createElement(
|
|
3768
3768
|
FlatList,
|
|
@@ -3802,8 +3802,12 @@ const createStyles = (theme) => {
|
|
|
3802
3802
|
},
|
|
3803
3803
|
closeButton: {
|
|
3804
3804
|
marginLeft: 10,
|
|
3805
|
-
fontSize:
|
|
3805
|
+
fontSize: 14,
|
|
3806
3806
|
color: theme.BORDER_SECONDRY
|
|
3807
|
+
},
|
|
3808
|
+
circleViewAlignment: {
|
|
3809
|
+
justifyContent: "center",
|
|
3810
|
+
alignItems: "center"
|
|
3807
3811
|
}
|
|
3808
3812
|
});
|
|
3809
3813
|
};
|