@ballistix.digital/react-components 9.5.0 → 9.5.1
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.d.ts.map +1 -1
- package/dist/index.esm.js +14 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +14 -7
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2239,7 +2239,7 @@ const $0c7305af577f9538$var$base = {
|
|
|
2239
2239
|
tagItemIcon: '',
|
|
2240
2240
|
list: 'px-0! w-full! *:px-0 max-h-56 overflow-scroll py-1!',
|
|
2241
2241
|
listGroupLabel: '',
|
|
2242
|
-
listItem: 'w-full! list-none! hover:bg-primary-500 hover:text-white py-2! px-2!',
|
|
2242
|
+
listItem: 'w-full! list-none! hover:bg-primary-500 hover:text-white py-2! px-2! cursor-pointer',
|
|
2243
2243
|
listDisabledItem: '',
|
|
2244
2244
|
searchContainer: 'w-full! px-2! py-2! border-b',
|
|
2245
2245
|
searchBox: '',
|
|
@@ -2438,17 +2438,24 @@ const $cb1b9d36d0757897$var$SelectMenu = (props)=>{
|
|
|
2438
2438
|
formatOptionLabel: (data)=>{
|
|
2439
2439
|
if (searchInputOptionRenderer && data.value.startsWith($cb1b9d36d0757897$var$searchPrefix)) {
|
|
2440
2440
|
const tagItem = (0, $iA2ta$reactjsxruntime.jsx)("div", {
|
|
2441
|
-
className: styles.
|
|
2442
|
-
children: (0, $iA2ta$reactjsxruntime.jsx)("
|
|
2443
|
-
className: styles.
|
|
2444
|
-
children:
|
|
2441
|
+
className: styles.listItem,
|
|
2442
|
+
children: (0, $iA2ta$reactjsxruntime.jsx)("div", {
|
|
2443
|
+
className: styles.tagItem,
|
|
2444
|
+
children: (0, $iA2ta$reactjsxruntime.jsx)("p", {
|
|
2445
|
+
className: styles.tagItemText,
|
|
2446
|
+
children: data.label
|
|
2447
|
+
})
|
|
2445
2448
|
})
|
|
2446
2449
|
});
|
|
2447
|
-
return (0, $iA2ta$reactjsxruntime.jsx)(
|
|
2450
|
+
return (0, $iA2ta$reactjsxruntime.jsx)("div", {
|
|
2451
|
+
className: styles.listItem,
|
|
2448
2452
|
children: searchInputOptionRenderer(tagItem)
|
|
2449
2453
|
});
|
|
2450
2454
|
}
|
|
2451
|
-
return
|
|
2455
|
+
return (0, $iA2ta$reactjsxruntime.jsx)("div", {
|
|
2456
|
+
className: styles.listItem,
|
|
2457
|
+
children: data.label
|
|
2458
|
+
});
|
|
2452
2459
|
},
|
|
2453
2460
|
classNames: {
|
|
2454
2461
|
menuButton: ()=>(0, $622cd2936b18c771$export$4370d69198e9314a)(styles.input, `bx-select-menu-${name}`, state === null && '*:text-gray-300! ', state === null && !isValid && isTouched && '*:text-red-300!'),
|