@instantdb/components 0.22.90 → 0.22.91-experimental.add-push-pull-help.20346530138.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.
package/dist/index.js CHANGED
@@ -4685,7 +4685,7 @@ const At = cr({ props: null, history: { push: () => {
4685
4685
  // In uncontrolled mode, use the internal state
4686
4686
  explorerState: n ? e.explorerState ?? null : t,
4687
4687
  setExplorerState: e.setExplorerState || a,
4688
- useShadowDOM: e.useShadowDOM || !1
4688
+ useShadowDOM: e.useShadowDOM === void 0 ? !0 : e.useShadowDOM
4689
4689
  };
4690
4690
  }, Vi = (e) => {
4691
4691
  const [t, a] = C(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@instantdb/components",
3
3
  "private": false,
4
- "version": "0.22.90",
4
+ "version": "0.22.91-experimental.add-push-pull-help.20346530138.1",
5
5
  "type": "module",
6
6
  "description": "Instant's UI components",
7
7
  "homepage": "https://github.com/instantdb/instant/tree/main/client/packages/components",
@@ -93,11 +93,11 @@
93
93
  "swr": "^2.2.4",
94
94
  "tailwind-merge": "^2.2.1",
95
95
  "uuid": "^11.1.0",
96
- "@instantdb/admin": "0.22.90",
97
- "@instantdb/platform": "0.22.90",
98
- "@instantdb/core": "0.22.90",
99
- "@instantdb/react": "0.22.90",
100
- "@instantdb/version": "0.22.90"
96
+ "@instantdb/core": "0.22.91-experimental.add-push-pull-help.20346530138.1",
97
+ "@instantdb/platform": "0.22.91-experimental.add-push-pull-help.20346530138.1",
98
+ "@instantdb/react": "0.22.91-experimental.add-push-pull-help.20346530138.1",
99
+ "@instantdb/version": "0.22.91-experimental.add-push-pull-help.20346530138.1",
100
+ "@instantdb/admin": "0.22.91-experimental.add-push-pull-help.20346530138.1"
101
101
  },
102
102
  "scripts": {
103
103
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -91,7 +91,7 @@ const fillPropsWithDefaults = (
91
91
  // In uncontrolled mode, use the internal state
92
92
  explorerState: controlled ? (input.explorerState ?? null) : _explorerState,
93
93
  setExplorerState: input.setExplorerState || setExplorerState,
94
- useShadowDOM: input.useShadowDOM || false,
94
+ useShadowDOM: input.useShadowDOM === undefined ? true : input.useShadowDOM,
95
95
  };
96
96
  };
97
97