@blinkk/root-cms 1.0.0-rc.2 → 1.0.0-rc.3

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/ui/signin.js CHANGED
@@ -1264,7 +1264,7 @@
1264
1264
  has: (target, prop) => !!getMethod(target, prop) || oldTraps.has(target, prop)
1265
1265
  }));
1266
1266
 
1267
- // ../../node_modules/.pnpm/@firebase+app@0.9.19/node_modules/@firebase/app/dist/esm/index.esm2017.js
1267
+ // ../../node_modules/.pnpm/@firebase+app@0.9.22/node_modules/@firebase/app/dist/esm/index.esm2017.js
1268
1268
  var PlatformLoggerServiceImpl = class {
1269
1269
  constructor(container) {
1270
1270
  this.container = container;
@@ -1288,7 +1288,7 @@
1288
1288
  return (component === null || component === void 0 ? void 0 : component.type) === "VERSION";
1289
1289
  }
1290
1290
  var name$o = "@firebase/app";
1291
- var version$1 = "0.9.19";
1291
+ var version$1 = "0.9.22";
1292
1292
  var logger = new Logger("@firebase/app");
1293
1293
  var name$n = "@firebase/app-compat";
1294
1294
  var name$m = "@firebase/analytics-compat";
@@ -1314,7 +1314,7 @@
1314
1314
  var name$2 = "@firebase/firestore";
1315
1315
  var name$1 = "@firebase/firestore-compat";
1316
1316
  var name = "firebase";
1317
- var version = "10.4.0";
1317
+ var version = "10.5.2";
1318
1318
  var DEFAULT_ENTRY_NAME2 = "[DEFAULT]";
1319
1319
  var PLATFORM_LOG_STRING = {
1320
1320
  [name$o]: "fire-core",
@@ -1789,12 +1789,12 @@
1789
1789
  }
1790
1790
  registerCoreComponents("");
1791
1791
 
1792
- // ../../node_modules/.pnpm/firebase@10.4.0/node_modules/firebase/app/dist/esm/index.esm.js
1792
+ // ../../node_modules/.pnpm/firebase@10.5.2/node_modules/firebase/app/dist/esm/index.esm.js
1793
1793
  var name2 = "firebase";
1794
- var version2 = "10.4.0";
1794
+ var version2 = "10.5.2";
1795
1795
  registerVersion(name2, version2, "app");
1796
1796
 
1797
- // ../../node_modules/.pnpm/tslib@2.4.1/node_modules/tslib/tslib.es6.js
1797
+ // ../../node_modules/.pnpm/tslib@2.6.2/node_modules/tslib/tslib.es6.mjs
1798
1798
  function __rest(s2, e2) {
1799
1799
  var t2 = {};
1800
1800
  for (var p2 in s2)
@@ -1808,21 +1808,7 @@
1808
1808
  return t2;
1809
1809
  }
1810
1810
 
1811
- // ../../node_modules/.pnpm/@firebase+auth@1.3.0_@firebase+app@0.9.19/node_modules/@firebase/auth/dist/esm2017/index-9a76d29a.js
1812
- function isEnterprise(grecaptcha) {
1813
- return grecaptcha !== void 0 && grecaptcha.enterprise !== void 0;
1814
- }
1815
- var RecaptchaConfig = class {
1816
- constructor(response) {
1817
- this.siteKey = "";
1818
- this.emailPasswordEnabled = false;
1819
- if (response.recaptchaKey === void 0) {
1820
- throw new Error("recaptchaKey undefined");
1821
- }
1822
- this.siteKey = response.recaptchaKey.split("/")[3];
1823
- this.emailPasswordEnabled = response.recaptchaEnforcementState.some((enforcementState) => enforcementState.provider === "EMAIL_PASSWORD_PROVIDER" && enforcementState.enforcementState !== "OFF");
1824
- }
1825
- };
1811
+ // ../../node_modules/.pnpm/@firebase+auth@1.3.2_@firebase+app@0.9.22/node_modules/@firebase/auth/dist/esm2017/index-94e5f531.js
1826
1812
  function _prodErrorMap() {
1827
1813
  return {
1828
1814
  [
@@ -1970,6 +1956,12 @@
1970
1956
  if (typeof self !== "undefined" && "fetch" in self) {
1971
1957
  return self.fetch;
1972
1958
  }
1959
+ if (typeof globalThis !== "undefined" && globalThis.fetch) {
1960
+ return globalThis.fetch;
1961
+ }
1962
+ if (typeof fetch !== "undefined") {
1963
+ return fetch;
1964
+ }
1973
1965
  debugFail("Could not find fetch implementation, make sure you call FetchProvider.initialize() with an appropriate polyfill");
1974
1966
  }
1975
1967
  static headers() {
@@ -1979,6 +1971,12 @@
1979
1971
  if (typeof self !== "undefined" && "Headers" in self) {
1980
1972
  return self.Headers;
1981
1973
  }
1974
+ if (typeof globalThis !== "undefined" && globalThis.Headers) {
1975
+ return globalThis.Headers;
1976
+ }
1977
+ if (typeof Headers !== "undefined") {
1978
+ return Headers;
1979
+ }
1982
1980
  debugFail("Could not find Headers implementation, make sure you call FetchProvider.initialize() with an appropriate polyfill");
1983
1981
  }
1984
1982
  static response() {
@@ -1988,6 +1986,12 @@
1988
1986
  if (typeof self !== "undefined" && "Response" in self) {
1989
1987
  return self.Response;
1990
1988
  }
1989
+ if (typeof globalThis !== "undefined" && globalThis.Response) {
1990
+ return globalThis.Response;
1991
+ }
1992
+ if (typeof Response !== "undefined") {
1993
+ return Response;
1994
+ }
1991
1995
  debugFail("Could not find Response implementation, make sure you call FetchProvider.initialize() with an appropriate polyfill");
1992
1996
  }
1993
1997
  };
@@ -2299,6 +2303,18 @@
2299
2303
  }
2300
2304
  return _emulatorUrl(auth2.config, base);
2301
2305
  }
2306
+ function _parseEnforcementState(enforcementStateStr) {
2307
+ switch (enforcementStateStr) {
2308
+ case "ENFORCE":
2309
+ return "ENFORCE";
2310
+ case "AUDIT":
2311
+ return "AUDIT";
2312
+ case "OFF":
2313
+ return "OFF";
2314
+ default:
2315
+ return "ENFORCEMENT_STATE_UNSPECIFIED";
2316
+ }
2317
+ }
2302
2318
  var NetworkTimeout = class {
2303
2319
  constructor(auth2) {
2304
2320
  this.auth = auth2;
@@ -2331,6 +2347,46 @@
2331
2347
  error.customData._tokenResponse = response;
2332
2348
  return error;
2333
2349
  }
2350
+ function isEnterprise(grecaptcha) {
2351
+ return grecaptcha !== void 0 && grecaptcha.enterprise !== void 0;
2352
+ }
2353
+ var RecaptchaConfig = class {
2354
+ constructor(response) {
2355
+ this.siteKey = "";
2356
+ this.recaptchaEnforcementState = [];
2357
+ if (response.recaptchaKey === void 0) {
2358
+ throw new Error("recaptchaKey undefined");
2359
+ }
2360
+ this.siteKey = response.recaptchaKey.split("/")[3];
2361
+ this.recaptchaEnforcementState = response.recaptchaEnforcementState;
2362
+ }
2363
+ /**
2364
+ * Returns the reCAPTCHA Enterprise enforcement state for the given provider.
2365
+ *
2366
+ * @param providerStr - The provider whose enforcement state is to be returned.
2367
+ * @returns The reCAPTCHA Enterprise enforcement state for the given provider.
2368
+ */
2369
+ getProviderEnforcementState(providerStr) {
2370
+ if (!this.recaptchaEnforcementState || this.recaptchaEnforcementState.length === 0) {
2371
+ return null;
2372
+ }
2373
+ for (const recaptchaEnforcementState of this.recaptchaEnforcementState) {
2374
+ if (recaptchaEnforcementState.provider && recaptchaEnforcementState.provider === providerStr) {
2375
+ return _parseEnforcementState(recaptchaEnforcementState.enforcementState);
2376
+ }
2377
+ }
2378
+ return null;
2379
+ }
2380
+ /**
2381
+ * Returns true if the reCAPTCHA Enterprise enforcement state for the provider is set to ENFORCE or AUDIT.
2382
+ *
2383
+ * @param providerStr - The provider whose enablement state is to be returned.
2384
+ * @returns Whether or not reCAPTCHA Enterprise protection is enabled for the given provider.
2385
+ */
2386
+ isProviderEnabled(providerStr) {
2387
+ return this.getProviderEnforcementState(providerStr) === "ENFORCE" || this.getProviderEnforcementState(providerStr) === "AUDIT";
2388
+ }
2389
+ };
2334
2390
  async function getRecaptchaConfig(auth2, request) {
2335
2391
  return _performApiRequest(auth2, "GET", "/v2/recaptchaConfig", _addTidIfNecessary(auth2, request));
2336
2392
  }
@@ -3930,6 +3986,38 @@
3930
3986
  });
3931
3987
  return newRequest;
3932
3988
  }
3989
+ async function handleRecaptchaFlow(authInstance, request, actionName, actionMethod) {
3990
+ var _a;
3991
+ if ((_a = authInstance._getRecaptchaConfig()) === null || _a === void 0 ? void 0 : _a.isProviderEnabled(
3992
+ "EMAIL_PASSWORD_PROVIDER"
3993
+ /* RecaptchaProvider.EMAIL_PASSWORD_PROVIDER */
3994
+ )) {
3995
+ const requestWithRecaptcha = await injectRecaptchaFields(
3996
+ authInstance,
3997
+ request,
3998
+ actionName,
3999
+ actionName === "getOobCode"
4000
+ /* RecaptchaActionName.GET_OOB_CODE */
4001
+ );
4002
+ return actionMethod(authInstance, requestWithRecaptcha);
4003
+ } else {
4004
+ return actionMethod(authInstance, request).catch(async (error) => {
4005
+ if (error.code === `auth/${"missing-recaptcha-token"}`) {
4006
+ console.log(`${actionName} is protected by reCAPTCHA Enterprise for this project. Automatically triggering the reCAPTCHA flow and restarting the flow.`);
4007
+ const requestWithRecaptcha = await injectRecaptchaFields(
4008
+ authInstance,
4009
+ request,
4010
+ actionName,
4011
+ actionName === "getOobCode"
4012
+ /* RecaptchaActionName.GET_OOB_CODE */
4013
+ );
4014
+ return actionMethod(authInstance, requestWithRecaptcha);
4015
+ } else {
4016
+ return Promise.reject(error);
4017
+ }
4018
+ });
4019
+ }
4020
+ }
3933
4021
  function initializeAuth(app2, deps) {
3934
4022
  const provider = _getProvider(app2, "auth");
3935
4023
  if (provider.isInitialized()) {
@@ -4135,7 +4223,6 @@
4135
4223
  }
4136
4224
  /** @internal */
4137
4225
  async _getIdTokenResponse(auth2) {
4138
- var _a;
4139
4226
  switch (this.signInMethod) {
4140
4227
  case "password":
4141
4228
  const request = {
@@ -4145,30 +4232,7 @@
4145
4232
  clientType: "CLIENT_TYPE_WEB"
4146
4233
  /* RecaptchaClientType.WEB */
4147
4234
  };
4148
- if ((_a = auth2._getRecaptchaConfig()) === null || _a === void 0 ? void 0 : _a.emailPasswordEnabled) {
4149
- const requestWithRecaptcha = await injectRecaptchaFields(
4150
- auth2,
4151
- request,
4152
- "signInWithPassword"
4153
- /* RecaptchaActionName.SIGN_IN_WITH_PASSWORD */
4154
- );
4155
- return signInWithPassword(auth2, requestWithRecaptcha);
4156
- } else {
4157
- return signInWithPassword(auth2, request).catch(async (error) => {
4158
- if (error.code === `auth/${"missing-recaptcha-token"}`) {
4159
- console.log("Sign-in with email address and password is protected by reCAPTCHA for this project. Automatically triggering the reCAPTCHA flow and restarting the sign-in flow.");
4160
- const requestWithRecaptcha = await injectRecaptchaFields(
4161
- auth2,
4162
- request,
4163
- "signInWithPassword"
4164
- /* RecaptchaActionName.SIGN_IN_WITH_PASSWORD */
4165
- );
4166
- return signInWithPassword(auth2, requestWithRecaptcha);
4167
- } else {
4168
- return Promise.reject(error);
4169
- }
4170
- });
4171
- }
4235
+ return handleRecaptchaFlow(auth2, request, "signInWithPassword", signInWithPassword);
4172
4236
  case "emailLink":
4173
4237
  return signInWithEmailLink$1(auth2, {
4174
4238
  email: this._email,
@@ -6997,7 +7061,7 @@
6997
7061
  return typeof input === "undefined" || (input === null || input === void 0 ? void 0 : input.length) === 0;
6998
7062
  }
6999
7063
  var name3 = "@firebase/auth";
7000
- var version3 = "1.3.0";
7064
+ var version3 = "1.3.2";
7001
7065
  var AuthInterop = class {
7002
7066
  constructor(auth2) {
7003
7067
  this.auth = auth2;
@@ -8002,7 +8066,7 @@ firebase/app/dist/esm/index.esm.js:
8002
8066
  * limitations under the License.
8003
8067
  *)
8004
8068
 
8005
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8069
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8006
8070
  (**
8007
8071
  * @license
8008
8072
  * Copyright 2021 Google LLC
@@ -8020,7 +8084,7 @@ firebase/app/dist/esm/index.esm.js:
8020
8084
  * limitations under the License.
8021
8085
  *)
8022
8086
 
8023
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8087
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8024
8088
  (**
8025
8089
  * @license
8026
8090
  * Copyright 2020 Google LLC
@@ -8038,7 +8102,7 @@ firebase/app/dist/esm/index.esm.js:
8038
8102
  * limitations under the License.
8039
8103
  *)
8040
8104
 
8041
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8105
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8042
8106
  (**
8043
8107
  * @license
8044
8108
  * Copyright 2020 Google LLC
@@ -8056,7 +8120,7 @@ firebase/app/dist/esm/index.esm.js:
8056
8120
  * limitations under the License.
8057
8121
  *)
8058
8122
 
8059
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8123
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8060
8124
  (**
8061
8125
  * @license
8062
8126
  * Copyright 2020 Google LLC
@@ -8074,7 +8138,7 @@ firebase/app/dist/esm/index.esm.js:
8074
8138
  * limitations under the License.
8075
8139
  *)
8076
8140
 
8077
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8141
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8078
8142
  (**
8079
8143
  * @license
8080
8144
  * Copyright 2020 Google LLC
@@ -8092,7 +8156,7 @@ firebase/app/dist/esm/index.esm.js:
8092
8156
  * limitations under the License.
8093
8157
  *)
8094
8158
 
8095
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8159
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8096
8160
  (**
8097
8161
  * @license
8098
8162
  * Copyright 2020 Google LLC
@@ -8110,7 +8174,7 @@ firebase/app/dist/esm/index.esm.js:
8110
8174
  * limitations under the License.
8111
8175
  *)
8112
8176
 
8113
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8177
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8114
8178
  (**
8115
8179
  * @license
8116
8180
  * Copyright 2020 Google LLC
@@ -8144,7 +8208,7 @@ firebase/app/dist/esm/index.esm.js:
8144
8208
  * limitations under the License.
8145
8209
  *)
8146
8210
 
8147
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8211
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8148
8212
  (**
8149
8213
  * @license
8150
8214
  * Copyright 2020 Google LLC
@@ -8194,7 +8258,7 @@ firebase/app/dist/esm/index.esm.js:
8194
8258
  * limitations under the License.
8195
8259
  *)
8196
8260
 
8197
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8261
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8198
8262
  (**
8199
8263
  * @license
8200
8264
  * Copyright 2020 Google LLC
@@ -8212,7 +8276,7 @@ firebase/app/dist/esm/index.esm.js:
8212
8276
  * limitations under the License.
8213
8277
  *)
8214
8278
 
8215
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8279
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8216
8280
  (**
8217
8281
  * @license
8218
8282
  * Copyright 2020 Google LLC
@@ -8230,7 +8294,7 @@ firebase/app/dist/esm/index.esm.js:
8230
8294
  * limitations under the License.
8231
8295
  *)
8232
8296
 
8233
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8297
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8234
8298
  (**
8235
8299
  * @license
8236
8300
  * Copyright 2020 Google LLC
@@ -8248,7 +8312,7 @@ firebase/app/dist/esm/index.esm.js:
8248
8312
  * limitations under the License.
8249
8313
  *)
8250
8314
 
8251
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8315
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8252
8316
  (**
8253
8317
  * @license
8254
8318
  * Copyright 2020 Google LLC
@@ -8282,7 +8346,7 @@ firebase/app/dist/esm/index.esm.js:
8282
8346
  * limitations under the License.
8283
8347
  *)
8284
8348
 
8285
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8349
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8286
8350
  (**
8287
8351
  * @license
8288
8352
  * Copyright 2020 Google LLC
@@ -8300,7 +8364,7 @@ firebase/app/dist/esm/index.esm.js:
8300
8364
  * limitations under the License.
8301
8365
  *)
8302
8366
 
8303
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8367
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8304
8368
  (**
8305
8369
  * @license
8306
8370
  * Copyright 2020 Google LLC
@@ -8318,7 +8382,7 @@ firebase/app/dist/esm/index.esm.js:
8318
8382
  * limitations under the License.
8319
8383
  *)
8320
8384
 
8321
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8385
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8322
8386
  (**
8323
8387
  * @license
8324
8388
  * Copyright 2020 Google LLC
@@ -8336,7 +8400,7 @@ firebase/app/dist/esm/index.esm.js:
8336
8400
  * limitations under the License.
8337
8401
  *)
8338
8402
 
8339
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8403
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8340
8404
  (**
8341
8405
  * @license
8342
8406
  * Copyright 2020 Google LLC
@@ -8354,7 +8418,7 @@ firebase/app/dist/esm/index.esm.js:
8354
8418
  * limitations under the License.
8355
8419
  *)
8356
8420
 
8357
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8421
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8358
8422
  (**
8359
8423
  * @license
8360
8424
  * Copyright 2020 Google LLC
@@ -8372,7 +8436,7 @@ firebase/app/dist/esm/index.esm.js:
8372
8436
  * limitations under the License.
8373
8437
  *)
8374
8438
 
8375
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8439
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8376
8440
  (**
8377
8441
  * @license
8378
8442
  * Copyright 2019 Google LLC
@@ -8390,7 +8454,7 @@ firebase/app/dist/esm/index.esm.js:
8390
8454
  * limitations under the License.
8391
8455
  *)
8392
8456
 
8393
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8457
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8394
8458
  (**
8395
8459
  * @license
8396
8460
  * Copyright 2019 Google LLC
@@ -8424,7 +8488,7 @@ firebase/app/dist/esm/index.esm.js:
8424
8488
  * limitations under the License.
8425
8489
  *)
8426
8490
 
8427
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8491
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8428
8492
  (**
8429
8493
  * @license
8430
8494
  * Copyright 2020 Google LLC
@@ -8442,7 +8506,7 @@ firebase/app/dist/esm/index.esm.js:
8442
8506
  * limitations under the License.
8443
8507
  *)
8444
8508
 
8445
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8509
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8446
8510
  (**
8447
8511
  * @license
8448
8512
  * Copyright 2020 Google LLC
@@ -8460,7 +8524,7 @@ firebase/app/dist/esm/index.esm.js:
8460
8524
  * limitations under the License.
8461
8525
  *)
8462
8526
 
8463
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8527
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8464
8528
  (**
8465
8529
  * @license
8466
8530
  * Copyright 2020 Google LLC
@@ -8478,7 +8542,7 @@ firebase/app/dist/esm/index.esm.js:
8478
8542
  * limitations under the License.
8479
8543
  *)
8480
8544
 
8481
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8545
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8482
8546
  (**
8483
8547
  * @license
8484
8548
  * Copyright 2020 Google LLC
@@ -8496,7 +8560,7 @@ firebase/app/dist/esm/index.esm.js:
8496
8560
  * limitations under the License.
8497
8561
  *)
8498
8562
 
8499
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8563
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8500
8564
  (**
8501
8565
  * @license
8502
8566
  * Copyright 2020 Google LLC
@@ -8514,7 +8578,7 @@ firebase/app/dist/esm/index.esm.js:
8514
8578
  * limitations under the License.
8515
8579
  *)
8516
8580
 
8517
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8581
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8518
8582
  (**
8519
8583
  * @license
8520
8584
  * Copyright 2020 Google LLC
@@ -8532,7 +8596,7 @@ firebase/app/dist/esm/index.esm.js:
8532
8596
  * limitations under the License.
8533
8597
  *)
8534
8598
 
8535
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8599
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8536
8600
  (**
8537
8601
  * @license
8538
8602
  * Copyright 2020 Google LLC
@@ -8550,7 +8614,7 @@ firebase/app/dist/esm/index.esm.js:
8550
8614
  * limitations under the License.
8551
8615
  *)
8552
8616
 
8553
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8617
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8554
8618
  (**
8555
8619
  * @license
8556
8620
  * Copyright 2020 Google LLC
@@ -8568,7 +8632,7 @@ firebase/app/dist/esm/index.esm.js:
8568
8632
  * limitations under the License.
8569
8633
  *)
8570
8634
 
8571
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8635
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8572
8636
  (**
8573
8637
  * @license
8574
8638
  * Copyright 2020 Google LLC
@@ -8586,7 +8650,7 @@ firebase/app/dist/esm/index.esm.js:
8586
8650
  * limitations under the License.
8587
8651
  *)
8588
8652
 
8589
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8653
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8590
8654
  (**
8591
8655
  * @license
8592
8656
  * Copyright 2020 Google LLC
@@ -8604,7 +8668,7 @@ firebase/app/dist/esm/index.esm.js:
8604
8668
  * limitations under the License.
8605
8669
  *)
8606
8670
 
8607
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8671
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8608
8672
  (**
8609
8673
  * @license
8610
8674
  * Copyright 2019 Google LLC
@@ -8622,7 +8686,7 @@ firebase/app/dist/esm/index.esm.js:
8622
8686
  * limitations under the License.
8623
8687
  *)
8624
8688
 
8625
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8689
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8626
8690
  (**
8627
8691
  * @license
8628
8692
  * Copyright 2020 Google LLC
@@ -8640,7 +8704,7 @@ firebase/app/dist/esm/index.esm.js:
8640
8704
  * limitations under the License.
8641
8705
  *)
8642
8706
 
8643
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8707
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8644
8708
  (**
8645
8709
  * @license
8646
8710
  * Copyright 2020 Google LLC
@@ -8658,7 +8722,7 @@ firebase/app/dist/esm/index.esm.js:
8658
8722
  * limitations under the License.
8659
8723
  *)
8660
8724
 
8661
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8725
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8662
8726
  (**
8663
8727
  * @license
8664
8728
  * Copyright 2020 Google LLC
@@ -8676,7 +8740,7 @@ firebase/app/dist/esm/index.esm.js:
8676
8740
  * limitations under the License.
8677
8741
  *)
8678
8742
 
8679
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8743
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8680
8744
  (**
8681
8745
  * @license
8682
8746
  * Copyright 2020 Google LLC
@@ -8694,7 +8758,7 @@ firebase/app/dist/esm/index.esm.js:
8694
8758
  * limitations under the License.
8695
8759
  *)
8696
8760
 
8697
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8761
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8698
8762
  (**
8699
8763
  * @license
8700
8764
  * Copyright 2019 Google LLC
@@ -8744,7 +8808,7 @@ firebase/app/dist/esm/index.esm.js:
8744
8808
  * limitations under the License.
8745
8809
  *)
8746
8810
 
8747
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8811
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8748
8812
  (**
8749
8813
  * @license
8750
8814
  * Copyright 2020 Google LLC
@@ -8762,7 +8826,7 @@ firebase/app/dist/esm/index.esm.js:
8762
8826
  * limitations under the License.
8763
8827
  *)
8764
8828
 
8765
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8829
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8766
8830
  (**
8767
8831
  * @license
8768
8832
  * Copyright 2020 Google LLC
@@ -8780,7 +8844,7 @@ firebase/app/dist/esm/index.esm.js:
8780
8844
  * limitations under the License.
8781
8845
  *)
8782
8846
 
8783
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8847
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8784
8848
  (**
8785
8849
  * @license
8786
8850
  * Copyright 2020 Google LLC
@@ -8798,7 +8862,7 @@ firebase/app/dist/esm/index.esm.js:
8798
8862
  * limitations under the License.
8799
8863
  *)
8800
8864
 
8801
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8865
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8802
8866
  (**
8803
8867
  * @license
8804
8868
  * Copyright 2020 Google LLC
@@ -8848,7 +8912,7 @@ firebase/app/dist/esm/index.esm.js:
8848
8912
  * limitations under the License.
8849
8913
  *)
8850
8914
 
8851
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8915
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8852
8916
  (**
8853
8917
  * @license
8854
8918
  * Copyright 2020 Google LLC
@@ -8866,7 +8930,7 @@ firebase/app/dist/esm/index.esm.js:
8866
8930
  * limitations under the License.
8867
8931
  *)
8868
8932
 
8869
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8933
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8870
8934
  (**
8871
8935
  * @license
8872
8936
  * Copyright 2020 Google LLC
@@ -8884,7 +8948,7 @@ firebase/app/dist/esm/index.esm.js:
8884
8948
  * limitations under the License.
8885
8949
  *)
8886
8950
 
8887
- @firebase/auth/dist/esm2017/index-9a76d29a.js:
8951
+ @firebase/auth/dist/esm2017/index-94e5f531.js:
8888
8952
  (**
8889
8953
  * @license
8890
8954
  * Copyright 2020 Google LLC
package/dist/ui/ui.css CHANGED
@@ -548,6 +548,10 @@
548
548
  top: calc(50% - 10px);
549
549
  right: 12px;
550
550
  }
551
+ .CollectionPage__main {
552
+ max-height: calc(100% - 48px);
553
+ overflow: auto;
554
+ }
551
555
  .CollectionPage__main__unselected {
552
556
  padding: 12px;
553
557
  display: flex;
@@ -561,11 +565,6 @@
561
565
  font-size: 14px;
562
566
  font-weight: 500;
563
567
  }
564
- .CollectionPage__collection {
565
- height: 100%;
566
- max-height: calc(100% - 48px);
567
- overflow: auto;
568
- }
569
568
  .CollectionPage__collection__header {
570
569
  padding: 12px;
571
570
  display: none;