arengibook 2.4.710 → 2.4.711

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -39986,8 +39986,10 @@ var MultiSelect = function MultiSelect(props) {
39986
39986
  }
39987
39987
  if (labelElement && labelElement.textContent === 'empty') {
39988
39988
  labelElement.textContent = multipleplaceholder;
39989
- } else if (labelElement && labelElement.textContent !== 'empty') {
39990
- labelElement.textContent = multipleplaceholder;
39989
+ } else {
39990
+ if (labelElement.textContent === multipleplaceholder) {
39991
+ labelElement.textContent = multipleplaceholder;
39992
+ }
39991
39993
  }
39992
39994
  });
39993
39995
  observer.observe(document.body, {
@@ -39997,7 +39999,7 @@ var MultiSelect = function MultiSelect(props) {
39997
39999
  return function () {
39998
40000
  observer.disconnect();
39999
40001
  };
40000
- }, []);
40002
+ }, [multipleplaceholder]);
40001
40003
  var optionTemplate = function optionTemplate(option) {
40002
40004
  if (!option) return null;
40003
40005
  if (isSelectMeta) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "arengibook",
3
3
  "private": false,
4
- "version": "2.4.710",
4
+ "version": "2.4.711",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
7
7
  "exports": {