arengibook 2.4.711 → 2.4.713
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 +0 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39977,19 +39977,8 @@ var MultiSelect = function MultiSelect(props) {
|
|
|
39977
39977
|
useEffect(function () {
|
|
39978
39978
|
var observer = new MutationObserver(function () {
|
|
39979
39979
|
var labelElement = document.querySelector('.p-multiselect-label');
|
|
39980
|
-
if (labelElement) {
|
|
39981
|
-
console.log('labelElement');
|
|
39982
|
-
console.log(labelElement);
|
|
39983
|
-
console.log(labelElement.textContent);
|
|
39984
|
-
console.log('multipleplaceholder');
|
|
39985
|
-
console.log(multipleplaceholder);
|
|
39986
|
-
}
|
|
39987
39980
|
if (labelElement && labelElement.textContent === 'empty') {
|
|
39988
39981
|
labelElement.textContent = multipleplaceholder;
|
|
39989
|
-
} else {
|
|
39990
|
-
if (labelElement.textContent === multipleplaceholder) {
|
|
39991
|
-
labelElement.textContent = multipleplaceholder;
|
|
39992
|
-
}
|
|
39993
39982
|
}
|
|
39994
39983
|
});
|
|
39995
39984
|
observer.observe(document.body, {
|