arengibook 1.1.4-main → 1.1.5-main
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 +13 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -38177,14 +38177,16 @@ var Dropdown = function Dropdown(props) {
|
|
|
38177
38177
|
}
|
|
38178
38178
|
}), isInvalidEffective && /*#__PURE__*/React__default.createElement("div", {
|
|
38179
38179
|
style: {
|
|
38180
|
-
|
|
38180
|
+
position: 'absolute',
|
|
38181
|
+
margin: '10px'
|
|
38181
38182
|
}
|
|
38182
38183
|
}, /*#__PURE__*/React__default.createElement("small", {
|
|
38183
38184
|
id: ariaDescribedBy,
|
|
38184
38185
|
style: {
|
|
38185
38186
|
color: 'red',
|
|
38186
38187
|
fontStyle: 'italic',
|
|
38187
|
-
display: 'block'
|
|
38188
|
+
display: 'block',
|
|
38189
|
+
width: '152px'
|
|
38188
38190
|
}
|
|
38189
38191
|
}, errorMessage || (showRequiredError ? 'Veuillez renseigner ce champ' : 'Sélection invalide')))));
|
|
38190
38192
|
};
|
|
@@ -42657,7 +42659,11 @@ var MultiSelect = function MultiSelect(props) {
|
|
|
42657
42659
|
label: "Tout effacer",
|
|
42658
42660
|
size: "small",
|
|
42659
42661
|
onClick: handleClearAll
|
|
42660
|
-
})), name && /*#__PURE__*/React__default.createElement("div",
|
|
42662
|
+
})), name && /*#__PURE__*/React__default.createElement("div", {
|
|
42663
|
+
style: {
|
|
42664
|
+
width: '0px'
|
|
42665
|
+
}
|
|
42666
|
+
}, (Array.isArray(selectedOptions) ? selectedOptions : []).filter(function (opt) {
|
|
42661
42667
|
return opt && (_typeof$f(opt) === 'object' || typeof opt === 'number' || typeof opt === 'string');
|
|
42662
42668
|
}).map(function (opt, index) {
|
|
42663
42669
|
var id = _typeof$f(opt) === 'object' && opt !== null ? opt[optionValue] : opt;
|
|
@@ -42691,13 +42697,15 @@ var MultiSelect = function MultiSelect(props) {
|
|
|
42691
42697
|
}
|
|
42692
42698
|
})), isInvalidEffective && /*#__PURE__*/React__default.createElement("div", {
|
|
42693
42699
|
style: {
|
|
42694
|
-
|
|
42700
|
+
position: 'absolute',
|
|
42701
|
+
margin: '10px'
|
|
42695
42702
|
}
|
|
42696
42703
|
}, /*#__PURE__*/React__default.createElement("small", {
|
|
42697
42704
|
style: {
|
|
42698
42705
|
color: 'red',
|
|
42699
42706
|
fontStyle: 'italic',
|
|
42700
|
-
display: 'block'
|
|
42707
|
+
display: 'block',
|
|
42708
|
+
width: '152px'
|
|
42701
42709
|
}
|
|
42702
42710
|
}, errorMessage || (showRequiredError ? 'Veuillez renseigner ce champ' : 'Sélection invalide')))));
|
|
42703
42711
|
};
|