arengibook 2.4.656 → 2.4.657
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.js +7 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39624,8 +39624,13 @@ var MultiSelectMetaAsync = function MultiSelectMetaAsync(_ref) {
|
|
|
39624
39624
|
var selectedOptionsCount = selectedOptions ? selectedOptions.length : 0;
|
|
39625
39625
|
var selectedOptionsText = selectedOptionsCount > 0 ? "".concat(selectedOptionsCount, " option").concat(selectedOptionsCount > 1 ? 's' : '', " s\xE9lectionn\xE9e").concat(selectedOptionsCount > 1 ? 's' : '') : placeholder;
|
|
39626
39626
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
39627
|
-
ref: multiSelectRef,
|
|
39628
39627
|
className: "flex flex-col gap-1",
|
|
39628
|
+
style: {
|
|
39629
|
+
width: '100%'
|
|
39630
|
+
}
|
|
39631
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
|
39632
|
+
ref: multiSelectRef,
|
|
39633
|
+
className: "multiselect-container",
|
|
39629
39634
|
style: {
|
|
39630
39635
|
width: '100%',
|
|
39631
39636
|
position: 'relative',
|
|
@@ -39712,7 +39717,7 @@ var MultiSelectMetaAsync = function MultiSelectMetaAsync(_ref) {
|
|
|
39712
39717
|
color: 'red',
|
|
39713
39718
|
fontStyle: 'italic'
|
|
39714
39719
|
}
|
|
39715
|
-
}, errorMessage || 'Sélection invalide')));
|
|
39720
|
+
}, errorMessage || 'Sélection invalide'))));
|
|
39716
39721
|
};
|
|
39717
39722
|
|
|
39718
39723
|
var MultiSelect = function MultiSelect(props) {
|