dexie-cloud-addon 4.0.0-beta.19 → 4.0.0-beta.20

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.
@@ -8,7 +8,7 @@
8
8
  *
9
9
  * ==========================================================================
10
10
  *
11
- * Version 4.0.0-beta.19, Fri May 20 2022
11
+ * Version 4.0.0-beta.20, Tue May 24 2022
12
12
  *
13
13
  * https://dexie.org
14
14
  *
@@ -5371,8 +5371,8 @@ const Styles = {
5371
5371
  }
5372
5372
  };
5373
5373
 
5374
- function Dialog({ children }) {
5375
- return (a$1("div", null,
5374
+ function Dialog({ children, className }) {
5375
+ return (a$1("div", { className: className },
5376
5376
  a$1("div", { style: Styles.Darken }),
5377
5377
  a$1("div", { style: Styles.DialogOuter },
5378
5378
  a$1("div", { style: Styles.DialogInner }, children))));
@@ -5388,7 +5388,7 @@ function LoginDialog({ title, alerts, fields, onCancel, onSubmit, }) {
5388
5388
  const [params, setParams] = l({});
5389
5389
  const firstFieldRef = s();
5390
5390
  h(() => { var _a; return (_a = firstFieldRef.current) === null || _a === void 0 ? void 0 : _a.focus(); }, []);
5391
- return (a$1(Dialog, null,
5391
+ return (a$1(Dialog, { className: "dxc-login-dlg" },
5392
5392
  a$1(y, null,
5393
5393
  a$1("h3", { style: Styles.WindowHeader }, title),
5394
5394
  alerts.map((alert) => (a$1("p", { style: Styles.Alert[alert.type] }, resolveText(alert)))),
@@ -5850,7 +5850,7 @@ function dexieCloud(dexie) {
5850
5850
  currentUserEmitter.next(UNAUTHORIZED_USER);
5851
5851
  });
5852
5852
  dexie.cloud = {
5853
- version: '4.0.0-beta.19',
5853
+ version: '4.0.0-beta.20',
5854
5854
  options: Object.assign({}, DEFAULT_OPTIONS),
5855
5855
  schema: null,
5856
5856
  serverState: null,
@@ -6104,7 +6104,7 @@ function dexieCloud(dexie) {
6104
6104
  });
6105
6105
  }
6106
6106
  }
6107
- dexieCloud.version = '4.0.0-beta.19';
6107
+ dexieCloud.version = '4.0.0-beta.20';
6108
6108
  Dexie.Cloud = dexieCloud;
6109
6109
 
6110
6110
  export { dexieCloud as default, dexieCloud, getTiedObjectId, getTiedRealmId };