@measured/puck 0.12.0-canary.2e931bc → 0.12.0-canary.932e412

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/index.js +8 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -33102,14 +33102,16 @@ var InputOrGroup = (_a) => {
33102
33102
  var _b = _a, { onChange } = _b, props = __objRest(_b, ["onChange"]);
33103
33103
  const { name, field, value, readOnly } = props;
33104
33104
  const [localValue, setLocalValue] = (0, import_react30.useState)(value);
33105
- const [localValueDb] = (0, import_use_debounce2.useDebounce)(localValue, 50, { leading: true });
33106
- (0, import_react30.useEffect)(() => {
33107
- if (value !== localValueDb) {
33108
- onChange(localValueDb);
33109
- }
33110
- }, [localValueDb]);
33105
+ const onChangeDb = (0, import_use_debounce2.useDebouncedCallback)(
33106
+ (val) => {
33107
+ onChange(val);
33108
+ },
33109
+ 50,
33110
+ { leading: true }
33111
+ );
33111
33112
  const onChangeLocal = (0, import_react30.useCallback)((val) => {
33112
33113
  setLocalValue(val);
33114
+ onChangeDb(val);
33113
33115
  }, []);
33114
33116
  (0, import_react30.useEffect)(() => {
33115
33117
  setLocalValue(value);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@measured/puck",
3
- "version": "0.12.0-canary.2e931bc",
3
+ "version": "0.12.0-canary.932e412",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",