@onehat/ui 0.3.339 → 0.3.341

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.3.339",
3
+ "version": "0.3.341",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -146,7 +146,7 @@ export default function withValue(WrappedComponent) {
146
146
  {...props}
147
147
  disableWithValue={false}
148
148
  value={convertedValue}
149
- setValue={setValue}
149
+ setValue={setValueRef.current}
150
150
  onChangeSelection={onChangeSelection}
151
151
  />;
152
152
  };
package/src/UiGlobals.js CHANGED
@@ -11,7 +11,7 @@ const Globals = {
11
11
  autoAdjustPageSizeToHeight: true,
12
12
  doubleClickingGridRowOpensEditorInViewMode: false,
13
13
  disableSavedColumnsConfig: false,
14
- autoSubmitDelay: 200,
14
+ autoSubmitDelay: 500,
15
15
  };
16
16
 
17
17
  export default Globals;