@ballistix.digital/react-components 0.4.81 → 0.4.82
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.esm.js +4 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -2680,7 +2680,7 @@ var SelectMenuForm = function (props) {
|
|
|
2680
2680
|
searchBox: styles$1.searchBox,
|
|
2681
2681
|
searchIcon: styles$1.searchIcon,
|
|
2682
2682
|
closeIcon: styles$1.closeIcon,
|
|
2683
|
-
} }), !isSolo && (jsxs("div", __assign({ className: styles$1.foot }, { children: [description && !(error && isTouched) && (jsx("p", __assign({ className: styles$1.description }, { children: description }))), error && isTouched && (jsx("p", __assign({ className: styles$1.error }, { children: JSON.stringify(error) })))] })))] }))] })));
|
|
2683
|
+
} }), !isSolo && (jsxs("div", __assign({ className: styles$1.foot }, { children: [description && !(error && isTouched) && (jsx("p", __assign({ className: styles$1.description }, { children: description }))), error && isTouched && (jsx("p", __assign({ className: styles$1.error }, { children: JSON.stringify(error).replaceAll('"', '') })))] })))] }))] })));
|
|
2684
2684
|
};
|
|
2685
2685
|
|
|
2686
2686
|
var base = {
|
|
@@ -2694,9 +2694,9 @@ var base = {
|
|
|
2694
2694
|
input: 'block w-full flex border',
|
|
2695
2695
|
menuButton: '',
|
|
2696
2696
|
menu: '!px-0 !py-0 !w-full rounded-md overflow-hidden border !mt-1 absolute bg-white',
|
|
2697
|
-
tagItem: '',
|
|
2698
|
-
tagItemText: '',
|
|
2699
|
-
tagItemIconContainer: '',
|
|
2697
|
+
tagItem: 'bg-gray-200 px-2 py-1 flex flex-row gap-x-1 items-center justify-between rounded-sm',
|
|
2698
|
+
tagItemText: 'text-xs',
|
|
2699
|
+
tagItemIconContainer: '!p-0 rounded-full hover:bg-gray-400 text-sm hover:text-white aspect-square w-4 flex items-center justify-center cursor-pointer',
|
|
2700
2700
|
tagItemIcon: '',
|
|
2701
2701
|
list: '!px-0 !w-full [&>*]:px-0 max-h-56 overflow-scroll !py-1',
|
|
2702
2702
|
listGroupLabel: '',
|
package/dist/index.js
CHANGED
|
@@ -2690,7 +2690,7 @@ var SelectMenuForm = function (props) {
|
|
|
2690
2690
|
searchBox: styles$1.searchBox,
|
|
2691
2691
|
searchIcon: styles$1.searchIcon,
|
|
2692
2692
|
closeIcon: styles$1.closeIcon,
|
|
2693
|
-
} }), !isSolo && (jsxRuntime.jsxs("div", __assign({ className: styles$1.foot }, { children: [description && !(error && isTouched) && (jsxRuntime.jsx("p", __assign({ className: styles$1.description }, { children: description }))), error && isTouched && (jsxRuntime.jsx("p", __assign({ className: styles$1.error }, { children: JSON.stringify(error) })))] })))] }))] })));
|
|
2693
|
+
} }), !isSolo && (jsxRuntime.jsxs("div", __assign({ className: styles$1.foot }, { children: [description && !(error && isTouched) && (jsxRuntime.jsx("p", __assign({ className: styles$1.description }, { children: description }))), error && isTouched && (jsxRuntime.jsx("p", __assign({ className: styles$1.error }, { children: JSON.stringify(error).replaceAll('"', '') })))] })))] }))] })));
|
|
2694
2694
|
};
|
|
2695
2695
|
|
|
2696
2696
|
var base = {
|
|
@@ -2704,9 +2704,9 @@ var base = {
|
|
|
2704
2704
|
input: 'block w-full flex border',
|
|
2705
2705
|
menuButton: '',
|
|
2706
2706
|
menu: '!px-0 !py-0 !w-full rounded-md overflow-hidden border !mt-1 absolute bg-white',
|
|
2707
|
-
tagItem: '',
|
|
2708
|
-
tagItemText: '',
|
|
2709
|
-
tagItemIconContainer: '',
|
|
2707
|
+
tagItem: 'bg-gray-200 px-2 py-1 flex flex-row gap-x-1 items-center justify-between rounded-sm',
|
|
2708
|
+
tagItemText: 'text-xs',
|
|
2709
|
+
tagItemIconContainer: '!p-0 rounded-full hover:bg-gray-400 text-sm hover:text-white aspect-square w-4 flex items-center justify-center cursor-pointer',
|
|
2710
2710
|
tagItemIcon: '',
|
|
2711
2711
|
list: '!px-0 !w-full [&>*]:px-0 max-h-56 overflow-scroll !py-1',
|
|
2712
2712
|
listGroupLabel: '',
|