pesona-ui 1.0.31 → 1.0.32
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.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -8221,7 +8221,7 @@ const Select = React.forwardRef((props, ref) => {
|
|
|
8221
8221
|
setIsOpen(false);
|
|
8222
8222
|
};
|
|
8223
8223
|
return (React.createElement(React.Fragment, null,
|
|
8224
|
-
React.createElement("select", { ref: selectRef, name: name, value: value, onChange: onChange, onBlur: onBlur, required: required, disabled: disabled, style: { position: 'absolute', left: '-9999px' }, tabIndex: -1
|
|
8224
|
+
React.createElement("select", { ref: selectRef, name: name, value: value, onChange: onChange, onBlur: onBlur, required: required, disabled: disabled, style: { position: 'absolute', left: '-9999px' }, tabIndex: -1 },
|
|
8225
8225
|
React.createElement("option", { value: "" }, "Select an option"),
|
|
8226
8226
|
options.map((opt) => (React.createElement("option", { key: opt.value, value: opt.value }, opt.label)))),
|
|
8227
8227
|
label && !floatingLabel && (React.createElement("label", { htmlFor: name },
|
|
@@ -8662,7 +8662,7 @@ const SelectWithSearch = React.forwardRef((props, ref) => {
|
|
|
8662
8662
|
setIsOpen(false);
|
|
8663
8663
|
};
|
|
8664
8664
|
return (React.createElement(React.Fragment, null,
|
|
8665
|
-
React.createElement("select", { ref: selectRef, name: name, value: value, onChange: onChange, style: { position: 'absolute', left: '-9999px' }, tabIndex: -1
|
|
8665
|
+
React.createElement("select", { ref: selectRef, name: name, value: value, onChange: onChange, style: { position: 'absolute', left: '-9999px' }, tabIndex: -1 },
|
|
8666
8666
|
React.createElement("option", { value: "" }, "Select an option"),
|
|
8667
8667
|
options.map((opt) => (React.createElement("option", { key: opt.value, value: opt.value }, opt.label)))),
|
|
8668
8668
|
label && !floatingLabel && (React.createElement("label", { htmlFor: name },
|
package/dist/index.esm.js
CHANGED
|
@@ -8219,7 +8219,7 @@ const Select = forwardRef((props, ref) => {
|
|
|
8219
8219
|
setIsOpen(false);
|
|
8220
8220
|
};
|
|
8221
8221
|
return (React.createElement(React.Fragment, null,
|
|
8222
|
-
React.createElement("select", { ref: selectRef, name: name, value: value, onChange: onChange, onBlur: onBlur, required: required, disabled: disabled, style: { position: 'absolute', left: '-9999px' }, tabIndex: -1
|
|
8222
|
+
React.createElement("select", { ref: selectRef, name: name, value: value, onChange: onChange, onBlur: onBlur, required: required, disabled: disabled, style: { position: 'absolute', left: '-9999px' }, tabIndex: -1 },
|
|
8223
8223
|
React.createElement("option", { value: "" }, "Select an option"),
|
|
8224
8224
|
options.map((opt) => (React.createElement("option", { key: opt.value, value: opt.value }, opt.label)))),
|
|
8225
8225
|
label && !floatingLabel && (React.createElement("label", { htmlFor: name },
|
|
@@ -8660,7 +8660,7 @@ const SelectWithSearch = forwardRef((props, ref) => {
|
|
|
8660
8660
|
setIsOpen(false);
|
|
8661
8661
|
};
|
|
8662
8662
|
return (React.createElement(React.Fragment, null,
|
|
8663
|
-
React.createElement("select", { ref: selectRef, name: name, value: value, onChange: onChange, style: { position: 'absolute', left: '-9999px' }, tabIndex: -1
|
|
8663
|
+
React.createElement("select", { ref: selectRef, name: name, value: value, onChange: onChange, style: { position: 'absolute', left: '-9999px' }, tabIndex: -1 },
|
|
8664
8664
|
React.createElement("option", { value: "" }, "Select an option"),
|
|
8665
8665
|
options.map((opt) => (React.createElement("option", { key: opt.value, value: opt.value }, opt.label)))),
|
|
8666
8666
|
label && !floatingLabel && (React.createElement("label", { htmlFor: name },
|