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.
@@ -5353,8 +5353,8 @@ const Styles = {
5353
5353
  }
5354
5354
  };
5355
5355
 
5356
- function Dialog({ children }) {
5357
- return (a$1("div", null,
5356
+ function Dialog({ children, className }) {
5357
+ return (a$1("div", { className: className },
5358
5358
  a$1("div", { style: Styles.Darken }),
5359
5359
  a$1("div", { style: Styles.DialogOuter },
5360
5360
  a$1("div", { style: Styles.DialogInner }, children))));
@@ -5370,7 +5370,7 @@ function LoginDialog({ title, alerts, fields, onCancel, onSubmit, }) {
5370
5370
  const [params, setParams] = l({});
5371
5371
  const firstFieldRef = s();
5372
5372
  h(() => { var _a; return (_a = firstFieldRef.current) === null || _a === void 0 ? void 0 : _a.focus(); }, []);
5373
- return (a$1(Dialog, null,
5373
+ return (a$1(Dialog, { className: "dxc-login-dlg" },
5374
5374
  a$1(y, null,
5375
5375
  a$1("h3", { style: Styles.WindowHeader }, title),
5376
5376
  alerts.map((alert) => (a$1("p", { style: Styles.Alert[alert.type] }, resolveText(alert)))),
@@ -5825,7 +5825,7 @@ function dexieCloud(dexie) {
5825
5825
  currentUserEmitter.next(UNAUTHORIZED_USER);
5826
5826
  });
5827
5827
  dexie.cloud = {
5828
- version: '4.0.0-beta.19',
5828
+ version: '4.0.0-beta.20',
5829
5829
  options: Object.assign({}, DEFAULT_OPTIONS),
5830
5830
  schema: null,
5831
5831
  serverState: null,
@@ -6079,7 +6079,7 @@ function dexieCloud(dexie) {
6079
6079
  });
6080
6080
  }
6081
6081
  }
6082
- dexieCloud.version = '4.0.0-beta.19';
6082
+ dexieCloud.version = '4.0.0-beta.20';
6083
6083
  Dexie.Cloud = dexieCloud;
6084
6084
 
6085
6085
  // In case the SW lives for a while, let it reuse already opened connections: