@pdg/react-form 1.0.80 → 1.0.81
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.
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { FormTagCommands, FormTagValue } from './FormTag.types';
|
|
3
3
|
import './FormTag.scss';
|
|
4
|
-
|
|
4
|
+
import { FormTextFieldProps } from '../FormTextField';
|
|
5
|
+
declare const FormTag: React.ForwardRefExoticComponent<Omit<FormTextFieldProps<FormTagValue, false, FormTagValue>, "type"> & {
|
|
5
6
|
formValueSeparator?: string | undefined;
|
|
6
7
|
formValueSort?: boolean | undefined;
|
|
7
8
|
} & React.RefAttributes<FormTagCommands>>;
|
package/dist/index.esm.js
CHANGED
|
@@ -2629,8 +2629,8 @@ FormText.displayName = 'FormText';
|
|
|
2629
2629
|
FormText.defaultProps = FormTextDefaultProps;var css_248z$j = ".FormTag.FormTextField {\n min-width: 200px;\n}";
|
|
2630
2630
|
styleInject(css_248z$j);var FormTag = React__default.forwardRef(function (_a, ref) {
|
|
2631
2631
|
// FormState -------------------------------------------------------------------------------------------------------
|
|
2632
|
-
var className = _a.className, name = _a.name, initValue = _a.value, exceptValue = _a.exceptValue, required = _a.required, readOnly = _a.readOnly, maxLength = _a.maxLength,
|
|
2633
|
-
var _b = useFormState(), formFullWidth = _b.fullWidth, onAddValueItem = _b.onAddValueItem, onValueChange = _b.onValueChange, onValueChangeByUser = _b.onValueChangeByUser, onRequestSearchSubmit = _b.onRequestSearchSubmit, otherFormState = __rest$4(_b, ["fullWidth", "onAddValueItem", "onValueChange", "onValueChangeByUser", "onRequestSearchSubmit"]);
|
|
2632
|
+
var className = _a.className, name = _a.name, initValue = _a.value, exceptValue = _a.exceptValue, required = _a.required, readOnly = _a.readOnly, maxLength = _a.maxLength, initDisabled = _a.disabled, initFullWidth = _a.fullWidth, initError = _a.error, helperText = _a.helperText, formValueSeparator = _a.formValueSeparator, formValueSort = _a.formValueSort, onValidate = _a.onValidate, onKeyDown = _a.onKeyDown, onChange = _a.onChange, onValue = _a.onValue, onBlur = _a.onBlur, props = __rest$4(_a, ["className", "name", "value", "exceptValue", "required", "readOnly", "maxLength", "disabled", "fullWidth", "error", "helperText", "formValueSeparator", "formValueSort", "onValidate", "onKeyDown", "onChange", "onValue", "onBlur"]);
|
|
2633
|
+
var _b = useFormState(), formFullWidth = _b.fullWidth, formDisabled = _b.disabled, onAddValueItem = _b.onAddValueItem, onValueChange = _b.onValueChange, onValueChangeByUser = _b.onValueChangeByUser, onRequestSearchSubmit = _b.onRequestSearchSubmit, otherFormState = __rest$4(_b, ["fullWidth", "disabled", "onAddValueItem", "onValueChange", "onValueChangeByUser", "onRequestSearchSubmit"]);
|
|
2634
2634
|
// State - FormState -----------------------------------------------------------------------------------------------
|
|
2635
2635
|
var fullWidth = useAutoUpdateState$1(initFullWidth == null ? formFullWidth : initFullWidth)[0];
|
|
2636
2636
|
// Function - getFinalValue ----------------------------------------------------------------------------------------
|
|
@@ -2662,6 +2662,7 @@ styleInject(css_248z$j);var FormTag = React__default.forwardRef(function (_a, re
|
|
|
2662
2662
|
var _e = useState(''), inputValue = _e[0], setInputValue = _e[1];
|
|
2663
2663
|
var _f = useAutoUpdateState$1(initError), error = _f[0], setError = _f[1];
|
|
2664
2664
|
var _g = useState(), errorHelperText = _g[0], setErrorHelperText = _g[1];
|
|
2665
|
+
var disabled = useAutoUpdateState$1(initDisabled == null ? formDisabled : initDisabled)[0];
|
|
2665
2666
|
// Effect ----------------------------------------------------------------------------------------------------------
|
|
2666
2667
|
useEffect(function () {
|
|
2667
2668
|
if (!isSame$2(value, initValue)) {
|