@abgov/jsonforms-components 2.50.0 → 2.50.1

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/index.esm.js +3 -3
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -7123,7 +7123,7 @@ const GoAInputText = props => {
7123
7123
  setIsVisited
7124
7124
  } = props;
7125
7125
  const [localValue, setLocalValue] = useState(data != null ? data : '');
7126
- const debouncedValue = useDebounce(localValue, 800);
7126
+ const debouncedValue = useDebounce(localValue, 300);
7127
7127
  useEffect(() => {
7128
7128
  setLocalValue(data != null ? data : '');
7129
7129
  }, [data]);
@@ -7493,7 +7493,7 @@ const GoANumberInput = props => {
7493
7493
  } = props;
7494
7494
  const InputValue = data && data !== undefined ? data : '';
7495
7495
  const [localValue, setLocalValue] = useState(InputValue);
7496
- const debouncedValue = useDebounce(localValue, 800);
7496
+ const debouncedValue = useDebounce(localValue, 300);
7497
7497
  useEffect(() => {
7498
7498
  const newValue = data !== undefined ? data : '';
7499
7499
  setLocalValue(newValue);
@@ -7570,7 +7570,7 @@ const GoabInputInteger = props => {
7570
7570
  } = props;
7571
7571
  const InputValue = data && data !== undefined ? data : '';
7572
7572
  const [localValue, setLocalValue] = useState(InputValue);
7573
- const debouncedValue = useDebounce(localValue, 800);
7573
+ const debouncedValue = useDebounce(localValue, 300);
7574
7574
  useEffect(() => {
7575
7575
  const newValue = data !== undefined ? data : '';
7576
7576
  setLocalValue(newValue);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/jsonforms-components",
3
- "version": "2.50.0",
3
+ "version": "2.50.1",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Government of Alberta - React renderers for JSON Forms based on the design system.",
6
6
  "repository": "https://github.com/GovAlta/adsp-monorepo",