arengibook 2.4.706 → 2.4.708
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 +9 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39987,8 +39987,14 @@ var MultiSelect = function MultiSelect(props) {
|
|
|
39987
39987
|
console.log(placeholder);
|
|
39988
39988
|
console.log("placeholder");
|
|
39989
39989
|
}
|
|
39990
|
-
if (labelElement && labelElement.textContent === 'empty') {
|
|
39991
|
-
|
|
39990
|
+
// if (labelElement && labelElement.textContent === 'empty') {
|
|
39991
|
+
// labelElement.textContent = multipleplaceholder;
|
|
39992
|
+
// } else if (labelElement && labelElement.textContent !== 'empty') {
|
|
39993
|
+
// labelElement.textContent = multipleplaceholder;
|
|
39994
|
+
// }
|
|
39995
|
+
|
|
39996
|
+
if (labelElement) {
|
|
39997
|
+
labelElement.textContent = multipleplaceholder;
|
|
39992
39998
|
}
|
|
39993
39999
|
});
|
|
39994
40000
|
observer.observe(document.body, {
|
|
@@ -39998,7 +40004,7 @@ var MultiSelect = function MultiSelect(props) {
|
|
|
39998
40004
|
return function () {
|
|
39999
40005
|
observer.disconnect();
|
|
40000
40006
|
};
|
|
40001
|
-
}, [multipleplaceholder]);
|
|
40007
|
+
}, [multipleplaceholder, placeholder]);
|
|
40002
40008
|
var optionTemplate = function optionTemplate(option) {
|
|
40003
40009
|
if (!option) return null;
|
|
40004
40010
|
if (isSelectMeta) {
|