@pdg/react-form 1.1.13 → 1.1.14
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.esm.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4369,7 +4369,7 @@ PFormTextEditor.apiKey = '';var PFormAutocomplete = ToForwardRefExoticComponent(
|
|
|
4369
4369
|
/********************************************************************************************************************
|
|
4370
4370
|
* Render
|
|
4371
4371
|
* ******************************************************************************************************************/
|
|
4372
|
-
return (React.createElement(Autocomplete, { options: items || [], className: classNames(className, 'PFormValueItem', 'PFormAutocomplete'), sx: sx, multiple: multiple, fullWidth: !width && fullWidth, openOnFocus: openOnFocus, disableClearable: disableClearable, disablePortal: disablePortal, noOptionsText: noOptionsText,
|
|
4372
|
+
return (React.createElement(Autocomplete, { options: items || [], className: classNames(className, 'PFormValueItem', 'PFormAutocomplete'), sx: sx, multiple: multiple, fullWidth: !width && fullWidth, openOnFocus: openOnFocus, disableClearable: disableClearable, disablePortal: disablePortal, noOptionsText: noOptionsText, value: componentValue, style: style, isOptionEqualToValue: function (option, value) { return option.value === value.value; }, getOptionDisabled: handleGetOptionDisabled, disabled: disabled, readOnly: readOnly, loading: loading || isOnGetItemLoading, loadingText: loadingText, limitTags: limitTags, getLimitTagsText: getLimitTagsText, onChange: function (e, value, reason, details) { return handleChange(value, reason, details); }, renderOption: function (props, option) { return (React.createElement("li", __assign({}, props, { key: "".concat(option.value) }), onRenderItem ? onRenderItem(option) : option.label)); }, onInputChange: function (event, newInputValue, reason) {
|
|
4373
4373
|
if (reason === 'input') {
|
|
4374
4374
|
setInputValue(newInputValue);
|
|
4375
4375
|
}
|
|
@@ -4388,7 +4388,7 @@ PFormTextEditor.apiKey = '';var PFormAutocomplete = ToForwardRefExoticComponent(
|
|
|
4388
4388
|
: undefined, renderInput: function (params) {
|
|
4389
4389
|
var _a;
|
|
4390
4390
|
var slotProps = {
|
|
4391
|
-
input: __assign(__assign({}, params.InputProps), { style: {
|
|
4391
|
+
input: __assign(__assign({}, params.InputProps), { autoFocus: autoFocus, style: {
|
|
4392
4392
|
paddingTop: variant === 'outlined' && size === 'small' ? 7 : undefined,
|
|
4393
4393
|
paddingBottom: variant === 'outlined' && size === 'small' ? 5 : undefined,
|
|
4394
4394
|
marginTop: variant === 'outlined' && size === 'small' ? -1 : undefined,
|
package/dist/index.js
CHANGED
|
@@ -4369,7 +4369,7 @@ PFormTextEditor.apiKey = '';var PFormAutocomplete = ToForwardRefExoticComponent(
|
|
|
4369
4369
|
/********************************************************************************************************************
|
|
4370
4370
|
* Render
|
|
4371
4371
|
* ******************************************************************************************************************/
|
|
4372
|
-
return (React.createElement(material.Autocomplete, { options: items || [], className: classNames(className, 'PFormValueItem', 'PFormAutocomplete'), sx: sx, multiple: multiple, fullWidth: !width && fullWidth, openOnFocus: openOnFocus, disableClearable: disableClearable, disablePortal: disablePortal, noOptionsText: noOptionsText,
|
|
4372
|
+
return (React.createElement(material.Autocomplete, { options: items || [], className: classNames(className, 'PFormValueItem', 'PFormAutocomplete'), sx: sx, multiple: multiple, fullWidth: !width && fullWidth, openOnFocus: openOnFocus, disableClearable: disableClearable, disablePortal: disablePortal, noOptionsText: noOptionsText, value: componentValue, style: style, isOptionEqualToValue: function (option, value) { return option.value === value.value; }, getOptionDisabled: handleGetOptionDisabled, disabled: disabled, readOnly: readOnly, loading: loading || isOnGetItemLoading, loadingText: loadingText, limitTags: limitTags, getLimitTagsText: getLimitTagsText, onChange: function (e, value, reason, details) { return handleChange(value, reason, details); }, renderOption: function (props, option) { return (React.createElement("li", __assign({}, props, { key: "".concat(option.value) }), onRenderItem ? onRenderItem(option) : option.label)); }, onInputChange: function (event, newInputValue, reason) {
|
|
4373
4373
|
if (reason === 'input') {
|
|
4374
4374
|
setInputValue(newInputValue);
|
|
4375
4375
|
}
|
|
@@ -4388,7 +4388,7 @@ PFormTextEditor.apiKey = '';var PFormAutocomplete = ToForwardRefExoticComponent(
|
|
|
4388
4388
|
: undefined, renderInput: function (params) {
|
|
4389
4389
|
var _a;
|
|
4390
4390
|
var slotProps = {
|
|
4391
|
-
input: __assign(__assign({}, params.InputProps), { style: {
|
|
4391
|
+
input: __assign(__assign({}, params.InputProps), { autoFocus: autoFocus, style: {
|
|
4392
4392
|
paddingTop: variant === 'outlined' && size === 'small' ? 7 : undefined,
|
|
4393
4393
|
paddingBottom: variant === 'outlined' && size === 'small' ? 5 : undefined,
|
|
4394
4394
|
marginTop: variant === 'outlined' && size === 'small' ? -1 : undefined,
|