smoothly 0.3.32 → 1.0.0-alpha.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.
@@ -699,5 +699,60 @@ class Trigger {
699
699
  }
700
700
  }
701
701
 
702
+ var __classPrivateFieldGet = (undefined && undefined.__classPrivateFieldGet) || function (receiver, state, kind, f) {
703
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
704
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
705
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
706
+ };
707
+ var _Listenable_listeners;
708
+ class Listenable {
709
+ constructor() {
710
+ _Listenable_listeners.set(this, {});
711
+ }
712
+ listen(property, listener) {
713
+ var _a, _b;
714
+ (_b = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.push(listener)) !== null && _b !== void 0 ? _b : (__classPrivateFieldGet(this, _Listenable_listeners, "f")[property] = [listener]);
715
+ listener(this[property]);
716
+ }
717
+ unlisten(property, listener) {
718
+ var _a, _b;
719
+ const index = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.indexOf(listener);
720
+ index != undefined && index >= 0 && ((_b = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _b === void 0 ? void 0 : _b.splice(index, 1));
721
+ }
722
+ static load(backend, listenable) {
723
+ const result = listenable !== null && listenable !== void 0 ? listenable : new Listenable();
724
+ return Object.defineProperties(result, getProperties(backend));
725
+ function getProperties(backend) {
726
+ return Object.fromEntries(Object.entries(Object.assign(Object.assign({}, Object.getOwnPropertyDescriptors(backend)), Object.getOwnPropertyDescriptors(Object.getPrototypeOf(backend)))).map(([name, descriptor]) => [
727
+ name,
728
+ typeof descriptor.value == "function"
729
+ ? {
730
+ get() {
731
+ return backend[name].bind(backend);
732
+ },
733
+ }
734
+ : descriptor.writable || descriptor.set
735
+ ? {
736
+ get() {
737
+ return backend[name];
738
+ },
739
+ set(value) {
740
+ var _a;
741
+ backend[name] = value;
742
+ (_a = __classPrivateFieldGet(result, _Listenable_listeners, "f")[name]) === null || _a === void 0 ? void 0 : _a.forEach(listener => listener(value));
743
+ },
744
+ }
745
+ : {
746
+ get() {
747
+ return backend[name].bind(backend);
748
+ },
749
+ },
750
+ ]));
751
+ }
752
+ }
753
+ }
754
+ _Listenable_listeners = new WeakMap();
755
+
756
+ exports.Listenable = Listenable;
702
757
  exports.Message = Message;
703
758
  exports.Trigger = Trigger;
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-879bbabb.js');
6
- const Trigger = require('./Trigger-3443997e.js');
6
+ const Listenable = require('./Listenable-c8d2f8ef.js');
7
7
  const GoogleFont = require('./GoogleFont-6c4f0da1.js');
8
8
  require('./index-de46f836.js');
9
9
 
@@ -12,7 +12,7 @@ class ClientIdentifier {
12
12
  static get value() {
13
13
  ClientIdentifier.valueCache = localStorage.getItem("clientIdentifier") || undefined;
14
14
  if (!ClientIdentifier.valueCache) {
15
- ClientIdentifier.valueCache = Trigger.Identifier.generate(12);
15
+ ClientIdentifier.valueCache = Listenable.Identifier.generate(12);
16
16
  localStorage.setItem("clientIdentifier", ClientIdentifier.valueCache);
17
17
  }
18
18
  return ClientIdentifier.valueCache;
@@ -28,8 +28,9 @@ Object.defineProperty(exports, 'Cosmetic', {
28
28
  });
29
29
  exports.Notice = index.Notice;
30
30
  exports.redirect = index.redirect;
31
- exports.Message = Trigger.Message;
32
- exports.Trigger = Trigger.Trigger;
31
+ exports.Listenable = Listenable.Listenable;
32
+ exports.Message = Listenable.Message;
33
+ exports.Trigger = Listenable.Trigger;
33
34
  Object.defineProperty(exports, 'GoogleFont', {
34
35
  enumerable: true,
35
36
  get: function () {
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-de46f836.js');
6
6
  const index$1 = require('./index-879bbabb.js');
7
- const Trigger = require('./Trigger-3443997e.js');
7
+ const Listenable = require('./Listenable-c8d2f8ef.js');
8
8
  require('./GoogleFont-6c4f0da1.js');
9
9
  const getLanguage = require('./getLanguage-430ecf04.js');
10
10
 
@@ -439,7 +439,7 @@ const SmoothlyDialog = class {
439
439
  this.header = undefined;
440
440
  }
441
441
  TriggerListener(event) {
442
- if (Trigger.Trigger.is(event.detail) && event.detail.name == "close")
442
+ if (Listenable.Trigger.is(event.detail) && event.detail.name == "close")
443
443
  this.open = false;
444
444
  }
445
445
  hostData() {
@@ -20835,9 +20835,9 @@ const SmoothlyFrame = class {
20835
20835
  componentDidLoad() {
20836
20836
  var _a;
20837
20837
  if (this.contentWindow)
20838
- Trigger.Message.listen((_a = this.origin) !== null && _a !== void 0 ? _a : this.defaultOrigin, (destination, content) => {
20838
+ Listenable.Message.listen((_a = this.origin) !== null && _a !== void 0 ? _a : this.defaultOrigin, (destination, content) => {
20839
20839
  if (destination == this.name)
20840
- if (Trigger.Trigger.is(content))
20840
+ if (Listenable.Trigger.is(content))
20841
20841
  this.trigger.emit(content);
20842
20842
  else
20843
20843
  this.message.emit({ destination, content });
@@ -20846,9 +20846,9 @@ const SmoothlyFrame = class {
20846
20846
  async send(message, content) {
20847
20847
  var _a, _b;
20848
20848
  if (typeof message == "string")
20849
- Trigger.Message.send(((_a = this.origin) !== null && _a !== void 0 ? _a : this.defaultOrigin) + "#" + message, content, this.contentWindow);
20850
- else if (Trigger.Message.is(message) && this.contentWindow)
20851
- Trigger.Message.send({ destination: ((_b = this.origin) !== null && _b !== void 0 ? _b : this.defaultOrigin) + "#" + message.destination, content: message.destination }, this.contentWindow);
20849
+ Listenable.Message.send(((_a = this.origin) !== null && _a !== void 0 ? _a : this.defaultOrigin) + "#" + message, content, this.contentWindow);
20850
+ else if (Listenable.Message.is(message) && this.contentWindow)
20851
+ Listenable.Message.send({ destination: ((_b = this.origin) !== null && _b !== void 0 ? _b : this.defaultOrigin) + "#" + message.destination, content: message.destination }, this.contentWindow);
20852
20852
  }
20853
20853
  render() {
20854
20854
  return index.h("iframe", { src: this.url + "#" + window.location.origin, height: "100%", width: "100%" });
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-de46f836.js');
6
- const Trigger = require('./Trigger-3443997e.js');
6
+ const Listenable = require('./Listenable-c8d2f8ef.js');
7
7
  require('./GoogleFont-6c4f0da1.js');
8
8
 
9
9
  const styleCss = ".sc-smoothly-trigger-sink-h{display:block}[hidden].sc-smoothly-trigger-sink-h{display:none}";
@@ -21,8 +21,8 @@ const SmoothlyTriggerSink = class {
21
21
  return this.filtersValue;
22
22
  }
23
23
  TriggerListener(event) {
24
- if (Trigger.Trigger.is(event.detail) && this.filters.some(f => f == event.detail.name)) {
25
- Trigger.Message.send(this.destination, event.detail, this.context || window);
24
+ if (Listenable.Trigger.is(event.detail) && this.filters.some(f => f == event.detail.name)) {
25
+ Listenable.Message.send(this.destination, event.detail, this.context || window);
26
26
  event.preventDefault();
27
27
  event.stopPropagation();
28
28
  }
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const index = require('./index-de46f836.js');
6
- const Trigger = require('./Trigger-3443997e.js');
6
+ const Listenable = require('./Listenable-c8d2f8ef.js');
7
7
  require('./GoogleFont-6c4f0da1.js');
8
8
 
9
9
  const styleCss = ".sc-smoothly-trigger-source-h{display:block}[hidden].sc-smoothly-trigger-source-h{display:none}";
@@ -16,8 +16,8 @@ const SmoothlyTriggerSource = class {
16
16
  this.listen = undefined;
17
17
  }
18
18
  componentDidLoad() {
19
- Trigger.Message.listen(this.listen, (destination, content) => {
20
- if (Trigger.Trigger.is(content))
19
+ Listenable.Message.listen(this.listen, (destination, content) => {
20
+ if (Listenable.Trigger.is(content))
21
21
  this.trigger.emit(content);
22
22
  else
23
23
  this.message.emit({ destination, content });
@@ -1,3 +1,3 @@
1
1
  export { App, redirect } from "./components/App";
2
- export { ClientIdentifier, GoogleFont, Message, Notice, Trigger, } from "./model";
2
+ export { ClientIdentifier, GoogleFont, Message, Notice, Trigger, Listenable, } from "./model";
3
3
  export { Cosmetic } from "./utilities";
@@ -1224,6 +1224,60 @@ class Trigger {
1224
1224
  }
1225
1225
  }
1226
1226
 
1227
+ var __classPrivateFieldGet = (undefined && undefined.__classPrivateFieldGet) || function (receiver, state, kind, f) {
1228
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
1229
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
1230
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
1231
+ };
1232
+ var _Listenable_listeners;
1233
+ class Listenable {
1234
+ constructor() {
1235
+ _Listenable_listeners.set(this, {});
1236
+ }
1237
+ listen(property, listener) {
1238
+ var _a, _b;
1239
+ (_b = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.push(listener)) !== null && _b !== void 0 ? _b : (__classPrivateFieldGet(this, _Listenable_listeners, "f")[property] = [listener]);
1240
+ listener(this[property]);
1241
+ }
1242
+ unlisten(property, listener) {
1243
+ var _a, _b;
1244
+ const index = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.indexOf(listener);
1245
+ index != undefined && index >= 0 && ((_b = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _b === void 0 ? void 0 : _b.splice(index, 1));
1246
+ }
1247
+ static load(backend, listenable) {
1248
+ const result = listenable !== null && listenable !== void 0 ? listenable : new Listenable();
1249
+ return Object.defineProperties(result, getProperties(backend));
1250
+ function getProperties(backend) {
1251
+ return Object.fromEntries(Object.entries(Object.assign(Object.assign({}, Object.getOwnPropertyDescriptors(backend)), Object.getOwnPropertyDescriptors(Object.getPrototypeOf(backend)))).map(([name, descriptor]) => [
1252
+ name,
1253
+ typeof descriptor.value == "function"
1254
+ ? {
1255
+ get() {
1256
+ return backend[name].bind(backend);
1257
+ },
1258
+ }
1259
+ : descriptor.writable || descriptor.set
1260
+ ? {
1261
+ get() {
1262
+ return backend[name];
1263
+ },
1264
+ set(value) {
1265
+ var _a;
1266
+ backend[name] = value;
1267
+ (_a = __classPrivateFieldGet(result, _Listenable_listeners, "f")[name]) === null || _a === void 0 ? void 0 : _a.forEach(listener => listener(value));
1268
+ },
1269
+ }
1270
+ : {
1271
+ get() {
1272
+ return backend[name].bind(backend);
1273
+ },
1274
+ },
1275
+ ]));
1276
+ }
1277
+ }
1278
+ }
1279
+ _Listenable_listeners = new WeakMap();
1280
+
1227
1281
  var Hex;
1228
1282
  (function (Hex) {
1229
1283
  function is(value) {
@@ -48963,4 +49017,4 @@ const defineCustomElements = (opts) => {
48963
49017
  }
48964
49018
  };
48965
49019
 
48966
- export { App, ClientIdentifier, Cosmetic, GoogleFont, Message, Notice, SmoothlyAccordion, SmoothlyAccordionItem, SmoothlyApp, SmoothlyAppDemo, SmoothlyBacktotop, SmoothlyButton, SmoothlyCalendar, SmoothlyCheckbox, SmoothlyCountry, SmoothlyDialog, SmoothlyDialogDemo, SmoothlyDisplay, SmoothlyDisplayAmount, SmoothlyDisplayDateTime, SmoothlyDisplayDemo, SmoothlyFrame, SmoothlyGoogleFont, SmoothlyIcon, SmoothlyIconDemo, SmoothlyInput, SmoothlyInputDate, SmoothlyInputDateRange, SmoothlyInputDemo, SmoothlyInputMonth, SmoothlyItem, SmoothlyMenuOptions, SmoothlyNotification, SmoothlyNotifier, SmoothlyOption, SmoothlyPicker, SmoothlyPopup, SmoothlyQuiet, SmoothlyRadio, SmoothlyRadioButton, SmoothlyRadioButtonItem, SmoothlyRadioGroup, SmoothlyReorder, SmoothlyRoom, SmoothlySelect, SmoothlySelectDemo, SmoothlySelector, SmoothlySkeleton, SmoothlySpinner, SmoothlySubmit, SmoothlySvg, SmoothlyTab, SmoothlyTabSwitch, SmoothlyTable, SmoothlyTableCell, SmoothlyTableDemo, SmoothlyTableExpandableCell, SmoothlyTableExpandableRow, SmoothlyTableHeader, SmoothlyTableRow, SmoothlyTrigger, SmoothlyTriggerSink, SmoothlyTriggerSource, SmoothlyTuple, SmoothlyUrlencoded, Trigger, defineCustomElements, redirect };
49020
+ export { App, ClientIdentifier, Cosmetic, GoogleFont, Listenable, Message, Notice, SmoothlyAccordion, SmoothlyAccordionItem, SmoothlyApp, SmoothlyAppDemo, SmoothlyBacktotop, SmoothlyButton, SmoothlyCalendar, SmoothlyCheckbox, SmoothlyCountry, SmoothlyDialog, SmoothlyDialogDemo, SmoothlyDisplay, SmoothlyDisplayAmount, SmoothlyDisplayDateTime, SmoothlyDisplayDemo, SmoothlyFrame, SmoothlyGoogleFont, SmoothlyIcon, SmoothlyIconDemo, SmoothlyInput, SmoothlyInputDate, SmoothlyInputDateRange, SmoothlyInputDemo, SmoothlyInputMonth, SmoothlyItem, SmoothlyMenuOptions, SmoothlyNotification, SmoothlyNotifier, SmoothlyOption, SmoothlyPicker, SmoothlyPopup, SmoothlyQuiet, SmoothlyRadio, SmoothlyRadioButton, SmoothlyRadioButtonItem, SmoothlyRadioGroup, SmoothlyReorder, SmoothlyRoom, SmoothlySelect, SmoothlySelectDemo, SmoothlySelector, SmoothlySkeleton, SmoothlySpinner, SmoothlySubmit, SmoothlySvg, SmoothlyTab, SmoothlyTabSwitch, SmoothlyTable, SmoothlyTableCell, SmoothlyTableDemo, SmoothlyTableExpandableCell, SmoothlyTableExpandableRow, SmoothlyTableHeader, SmoothlyTableRow, SmoothlyTrigger, SmoothlyTriggerSink, SmoothlyTriggerSource, SmoothlyTuple, SmoothlyUrlencoded, Trigger, defineCustomElements, redirect };
@@ -697,4 +697,58 @@ class Trigger {
697
697
  }
698
698
  }
699
699
 
700
- export { Identifier as I, Message as M, Trigger as T };
700
+ var __classPrivateFieldGet = (undefined && undefined.__classPrivateFieldGet) || function (receiver, state, kind, f) {
701
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
702
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
703
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
704
+ };
705
+ var _Listenable_listeners;
706
+ class Listenable {
707
+ constructor() {
708
+ _Listenable_listeners.set(this, {});
709
+ }
710
+ listen(property, listener) {
711
+ var _a, _b;
712
+ (_b = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.push(listener)) !== null && _b !== void 0 ? _b : (__classPrivateFieldGet(this, _Listenable_listeners, "f")[property] = [listener]);
713
+ listener(this[property]);
714
+ }
715
+ unlisten(property, listener) {
716
+ var _a, _b;
717
+ const index = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.indexOf(listener);
718
+ index != undefined && index >= 0 && ((_b = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _b === void 0 ? void 0 : _b.splice(index, 1));
719
+ }
720
+ static load(backend, listenable) {
721
+ const result = listenable !== null && listenable !== void 0 ? listenable : new Listenable();
722
+ return Object.defineProperties(result, getProperties(backend));
723
+ function getProperties(backend) {
724
+ return Object.fromEntries(Object.entries(Object.assign(Object.assign({}, Object.getOwnPropertyDescriptors(backend)), Object.getOwnPropertyDescriptors(Object.getPrototypeOf(backend)))).map(([name, descriptor]) => [
725
+ name,
726
+ typeof descriptor.value == "function"
727
+ ? {
728
+ get() {
729
+ return backend[name].bind(backend);
730
+ },
731
+ }
732
+ : descriptor.writable || descriptor.set
733
+ ? {
734
+ get() {
735
+ return backend[name];
736
+ },
737
+ set(value) {
738
+ var _a;
739
+ backend[name] = value;
740
+ (_a = __classPrivateFieldGet(result, _Listenable_listeners, "f")[name]) === null || _a === void 0 ? void 0 : _a.forEach(listener => listener(value));
741
+ },
742
+ }
743
+ : {
744
+ get() {
745
+ return backend[name].bind(backend);
746
+ },
747
+ },
748
+ ]));
749
+ }
750
+ }
751
+ }
752
+ _Listenable_listeners = new WeakMap();
753
+
754
+ export { Identifier as I, Listenable as L, Message as M, Trigger as T };
package/dist/esm/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export { A as App, C as Cosmetic, N as Notice, r as redirect } from './index-d7a4e405.js';
2
- import { I as Identifier } from './Trigger-327e506e.js';
3
- export { M as Message, T as Trigger } from './Trigger-327e506e.js';
2
+ import { I as Identifier } from './Listenable-55a1f6af.js';
3
+ export { L as Listenable, M as Message, T as Trigger } from './Listenable-55a1f6af.js';
4
4
  export { G as GoogleFont } from './GoogleFont-8474516b.js';
5
5
  import './index-d3421c35.js';
6
6
 
@@ -1,6 +1,6 @@
1
1
  import { r as registerInstance, h, a as getElement, c as createEvent, H as Host } from './index-d3421c35.js';
2
2
  import { r as redirect, A as App, N as Notice } from './index-d7a4e405.js';
3
- import { T as Trigger, M as Message } from './Trigger-327e506e.js';
3
+ import { T as Trigger, M as Message } from './Listenable-55a1f6af.js';
4
4
  import './GoogleFont-8474516b.js';
5
5
  import { D as Date$1, L as Language, g as getLanguage, a as DateTime, b as Locale, c as Language$1, C as Currency, d as DateRange } from './getLanguage-cccb8418.js';
6
6
 
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, h } from './index-d3421c35.js';
2
- import { T as Trigger, M as Message } from './Trigger-327e506e.js';
2
+ import { T as Trigger, M as Message } from './Listenable-55a1f6af.js';
3
3
  import './GoogleFont-8474516b.js';
4
4
 
5
5
  const styleCss = ".sc-smoothly-trigger-sink-h{display:block}[hidden].sc-smoothly-trigger-sink-h{display:none}";
@@ -1,5 +1,5 @@
1
1
  import { r as registerInstance, c as createEvent, h, a as getElement } from './index-d3421c35.js';
2
- import { M as Message, T as Trigger } from './Trigger-327e506e.js';
2
+ import { M as Message, T as Trigger } from './Listenable-55a1f6af.js';
3
3
  import './GoogleFont-8474516b.js';
4
4
 
5
5
  const styleCss = ".sc-smoothly-trigger-source-h{display:block}[hidden].sc-smoothly-trigger-source-h{display:none}";
@@ -1 +1 @@
1
- export{A as App,C as Cosmetic,N as Notice,r as redirect}from"./p-94e08cee.js";import{I as e}from"./p-b1c579b3.js";export{M as Message,T as Trigger}from"./p-b1c579b3.js";export{G as GoogleFont}from"./p-bd478a53.js";import"./p-4a0b35b7.js";class o{constructor(){}static get value(){return o.valueCache=localStorage.getItem("clientIdentifier")||void 0,o.valueCache||(o.valueCache=e.generate(12),localStorage.setItem("clientIdentifier",o.valueCache)),o.valueCache}}export{o as ClientIdentifier}
1
+ export{A as App,C as Cosmetic,N as Notice,r as redirect}from"./p-94e08cee.js";import{I as e}from"./p-156763cd.js";export{L as Listenable,M as Message,T as Trigger}from"./p-156763cd.js";export{G as GoogleFont}from"./p-bd478a53.js";import"./p-4a0b35b7.js";class t{constructor(){}static get value(){return t.valueCache=localStorage.getItem("clientIdentifier")||void 0,t.valueCache||(t.valueCache=e.generate(12),localStorage.setItem("clientIdentifier",t.valueCache)),t.valueCache}}export{t as ClientIdentifier}
@@ -0,0 +1 @@
1
+ class t{constructor(){this.encoding="utf-8"}encode(t){return Uint8Array.from(unescape(encodeURIComponent(t)).split(""),(t=>t.charCodeAt(0)))}}const n={standard:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",url:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"};function e(e,r="standard",i=""){"string"==typeof e&&(e=(new t).encode(e));const s=n[r],a=[];for(let t=0;t<e.length;t+=3){const n=e[t],r=t+1<e.length?e[t+1]:0,i=t+2<e.length?e[t+2]:0;a.push(s[n>>>2]),a.push(s[(3&n)<<4|r>>>4]),a.push(s[(15&r)<<2|i>>>6]),a.push(s[63&i])}const o=Math.ceil(e.length/3*4);return a.join("").substr(0,o)+i.repeat(a.length-o)}function r(t,e="standard"){for(;t.endsWith("=")&&t.length>0;)t=t.substr(0,t.length-1);const r=n[e],i=t.split("").map((t=>r.indexOf(t))),s=new Uint8Array(Math.floor(i.length/4*3));for(let t=0;t<s.length;t+=3){const n=i.shift()||0,e=i.shift()||0,r=i.shift()||0,a=i.shift()||0;s[t]=n<<2|e>>>4,s[t+1]=(15&e)<<4|r>>>2,s[t+2]=(3&r)<<6|a}return s}const i="undefined"!=typeof window?window.crypto||window.msCrypto:self.crypto||self.msCrypto;var s,a,o,c,u,f,S,y,p,l,h,w,A,b,d,g;!function(t){t.create=function(t,n,...e){const[r,...i]=(s=e,Array.isArray(s)&&s.length>0&&"string"==typeof s[0]?e.map((t=>Object.fromEntries(t.split(",").map((t=>t.split(":",2).map((t=>t.trim()))))))):e);var s;const a=Object.assign({},...Object.entries(r).map((([t,n])=>[t,[n,...i.map((n=>n[t])).filter((t=>t))]])).map((([n,e])=>({get[n](){return Object.assign(t(e),{name:n})}}))));return{current:a[n],...a}}}(s||(s={})),function(t){t.is=function(t){return"object"==typeof t&&(null==t.key||"string"==typeof t.key)&&"string"==typeof t.value&&"string"==typeof t.salt},t.stringify=function(t){return t.key=t.key&&4!=t.key.length?t.key.slice(-2):t.key,[t.key,t.salt,t.value].join(".")},t.parse=function(n){const e=n.split("."),r={key:e[0],salt:e[1],value:e[2]};return t.is(r)?r:void 0}}(a||(a={})),function(t){function n(t){return e(t,"url")}function s(t){t.length%2==1&&(t+="0");const e=new Uint8Array(t.length/2);for(let n=0;n<e.length;n++)e[n]=16*Number.parseInt(t[2*n],16)+Number.parseInt(t[2*n+1],16);return n(e)}function a(t,n){const e=r(t,"url");let i=[];for(const t of e)i.push(Math.floor(t/16).toString(16),(t%16).toString(16));return n&&(i=i.slice(0,n)),i.join("")}t.is=function(t,n){return"string"==typeof t&&(null==n||t.length==n)&&Array.from(t).every((t=>t>="0"&&t<="9"||t>="A"&&t<="Z"||t>="a"&&t<="z"||"-"==t||"_"==t))},t.fromUint24=function(t){return s(t.toString(16).padStart(6,"0"))},t.toUint24=function(t){return Number.parseInt(a(t,6),16)},t.fromUint48=function(t){return s(t.toString(16).padStart(12,"0"))},t.toUint48=function(t){return Number.parseInt(a(t,12),16)},t.fromBinary=n,t.toBinary=function(t){return r(t,"url")},t.generate=function(t){return n(i.getRandomValues(new Uint8Array(t/4*3)))},t.fromHexadecimal=s,t.toHexadecimal=a,t.length=[4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128],(t.Length||(t.Length={})).is=function(t){return"number"==typeof t&&t>=4&&t<=128&&(252&t)==t}}(o||(o={})),function(t){t.is=function(t){return"string"==typeof t||"object"==typeof t&&"string"==typeof t.hash&&"string"==typeof t.salt},t.hash=async function(t,n,r){return r||(r=e(i.getRandomValues(new Uint8Array(64)))),{hash:await t.sign(r+n),salt:r}},t.verify=async function(n,e,r){return(await t.hash(n,r,e.salt)).hash==e.hash},(t.Hashed||(t.Hashed={})).is=function(t){return"object"==typeof t&&"string"==typeof t.hash&&"string"==typeof t.salt}}(c||(c={})),function(t){t.generate=function(t){return i.getRandomValues(t)}}(u||(u={})),(f||(f={})).is=function(t){return"HMAC"==t||"RSA"==t||"ECDSA"==t||"RSA-PSS"==t};class v{async sign(n){return"string"==typeof n?e(await this.signBinary((new t).encode(n)),"url"):this.signBinary(n)}verify(n,e){return"string"==typeof e&&(e=r(e,"url")),this.verifyBinary("string"==typeof n?(new t).encode(n):n,e)}}class H extends v{constructor(t,n,e){super(),this.hash=t,n&&("string"==typeof n&&(n=r(n)),this.publicKey=i.subtle.importKey("spki",n,{name:"ECDSA",namedCurve:"P-512"==t.replace("SHA","P")?"P-521":t.replace("SHA","P")},!1,["verify"])),e&&("string"==typeof e&&(e=r(e)),this.privateKey=i.subtle.importKey("pkcs8",e,{name:"ECDSA",namedCurve:"P-512"==t.replace("SHA","P")?"P-521":t.replace("SHA","P")},!0,["sign","verify"]))}async signBinary(t){return new Uint8Array(await i.subtle.sign({name:"ECDSA",hash:{name:this.hash}},await this.privateKey,t))}async verifyBinary(t,n){return i.subtle.verify({name:"ECDSA",hash:{name:this.hash}},await this.publicKey,n,t)}}!function(t){t.is=function(t){return"SHA-1"==t||"SHA-256"==t||"SHA-384"==t||"SHA-512"==t}}(S||(S={}));class m extends v{async verifyBinary(t,n){return e(await this.signBinary(t),"url")==e(n,"url")}}class P extends m{constructor(t,n){super(),this.hash=t,"string"==typeof n&&(n=r(n,"url")),this.key=i.subtle.importKey("raw",n,{name:"HMAC",hash:{name:t}},!1,["sign","verify"])}async signBinary(t){return new Uint8Array(await i.subtle.sign("HMAC",await this.key,t))}}class E extends m{signBinary(t){return Promise.resolve(new Uint8Array(0))}}class k extends v{constructor(t,n,e){super(),this.variant=t,this.publicKey=n,this.privateKey=e}get parameters(){return j(this.variant)}async signBinary(t){return this.privateKey?new Uint8Array(await i.subtle.sign(this.parameters,await this.privateKey,t)):new Uint8Array(0)}async verifyBinary(t,n){return!!this.publicKey&&i.subtle.verify(this.parameters,await this.publicKey,n,t)}async export(t,n="base64"){const r=await("private"==t?this.privateKey:this.publicKey);let s;if(r)switch(n){case"jwk":s=await i.subtle.exportKey("jwk",r);break;case"buffer":s=await i.subtle.exportKey("private"==t?"pkcs8":"spki",r);break;case"base64":{const n=await this.export(t,"buffer");s=n&&e(new Uint8Array(n),"standard","=")}break;case"pem":{const n=await this.export(t,"base64");s=n&&[`-----BEGIN ${t.toUpperCase()} KEY-----`,...R(n,64),`-----END ${t.toUpperCase()} KEY-----`].join("\n")}}return s}static import(t,n,e,r){return new k(t,k.importHelper(t,n,"public",e),k.importHelper(t,n,"private",r))}static importHelper(t,n,e,s){return"string"==typeof s&&(s=r(s)),s&&i.subtle.importKey("private"==e?"pkcs8":"spki",s,{name:j(t).name,hash:{name:n}},!0,["private"==e?"sign":"verify"])}static generate(t,n,e){const r=i.subtle.generateKey({name:j(t).name,modulusLength:e,publicExponent:new Uint8Array([1,0,1]),hash:n},!0,["sign","verify"]);return new k(t,r.then((t=>t.publicKey)),r.then((t=>t.privateKey)))}}function*R(t,n){let e=0;for(;e<t.length;)yield t.slice(e,e+=n)}function j(t){return"PSS"==t?{name:"RSA-PSS",saltLength:128}:{name:"RSASSA-PKCS1-v1_5"}}!function(t){!function(t){t.is=f.is}(t.Algorithm||(t.Algorithm={})),(t.Hash||(t.Hash={})).is=S.is,t.generate=function(t,n,e){let r;switch(t){case"RSA":r=k.generate("SSA",n,e);break;case"RSA-PSS":r=k.generate("PSS",n,e)}return r},t.create=function(t,n,...e){let r;if(null!=n)switch(t){case"HMAC":r=new P(n,e[0]);break;case"RSA":r=k.import("SSA",n,e[0],e[1]);break;case"RSA-PSS":r=k.import("PSS",n,e[0],e[1]);break;case"ECDSA":r=new H(n,e[0],e[1])}else"None"==t&&(r=new E);return r}}(y||(y={})),Uint8Array.__proto__.from||(Uint8Array.__proto__.from=function(t,n,e){const r=Uint8Array.__proto__;if("function"!=typeof this)throw new TypeError("# is not a constructor");if(this.__proto__!==r)throw new TypeError("this is not a typed array.");if("function"!=typeof(n=n||(t=>t)))throw new TypeError("specified argument is not a function");if(!(t=Object(t)).length)return new this(0);let i=[];for(const t of i)i.push(t);i=i.map(n,e);const s=new this(i.length);for(let t=0;t<s.length;t++)s[t]=i[t];return s}),function(t){t.is=function(t){return"object"==typeof t&&Object.entries(t).every((t=>"function"==typeof t))}}(p||(p={})),function(t){t.is=function(t){return Array.isArray(t)&&t.every((t=>"string"==typeof t))}}(l||(l={})),function(t){t.is=function(t){return"object"==typeof t&&Object.entries(t).every((t=>"string"==typeof t[1]))}}(h||(h={})),function(t){t.is=function(t){return l.is(t)||p.is(t)||h.is(t)},(t.Converter||(t.Converter={})).is=p.is,(t.Crypto||(t.Crypto={})).is=l.is,(t.Renamer||(t.Renamer={})).is=h.is}(w||(w={})),function(t){t.is=function(t){return"object"==typeof t&&"function"==typeof t.apply&&"function"==typeof t.reverse},t.create=function(t){return{apply:t.apply?t.apply:t=>t,reverse:t.reverse?t.reverse:t=>t}}}(A||(A={})),function(t){t.is=function(t){return"RS256"==t||"RS384"==t||"RS512"==t||"ES256"==t||"ES384"==t||"ES512"==t||"PS256"==t||"PS384"==t||"PS512"==t}}(b||(b={})),function(t){t.is=function(t){return"HS256"==t||"HS384"==t||"HS512"==t}}(d||(d={})),function(t){t.is=function(t){return"none"==t||d.is(t)||b.is(t)},function(t){t.is=d.is}(t.Symmetric||(t.Symmetric={})),(t.Asymmetric||(t.Asymmetric={})).is=b.is}(g||(g={}));var C;class U{constructor(t,n){this.name=t,this.signer=n}sign(t){return n=this,e=void 0,i=function*(){return this.signer.sign(t)},new((r=void 0)||(r=Promise))((function(t,s){function a(t){try{c(i.next(t))}catch(t){s(t)}}function o(t){try{c(i.throw(t))}catch(t){s(t)}}function c(n){var e;n.done?t(n.value):(e=n.value,e instanceof r?e:new r((function(t){t(e)}))).then(a,o)}c((i=i.apply(n,e||[])).next())}));var n,e,r,i}verify(t,n){return this.signer.verify(t,n)}static create(t,...n){let e;switch(t){case"ES256":e=y.create("ECDSA","SHA-256",n[0],n[1]);break;case"ES384":e=y.create("ECDSA","SHA-384",n[0],n[1]);break;case"ES512":e=y.create("ECDSA","SHA-512",n[0],n[1]);break;case"PS256":e=y.create("RSA-PSS","SHA-256",n[0],n[1]);break;case"PS384":e=y.create("RSA-PSS","SHA-384",n[0],n[1]);break;case"PS512":e=y.create("RSA-PSS","SHA-512",n[0],n[1]);break;case"HS256":e=y.create("HMAC","SHA-256",n[0]);break;case"HS384":e=y.create("HMAC","SHA-384",n[0]);break;case"HS512":e=y.create("HMAC","SHA-512",n[0]);break;case"RS256":e=y.create("RSA","SHA-256",n[0],n[1]);break;case"RS384":e=y.create("RSA","SHA-384",n[0],n[1]);break;case"RS512":e=y.create("RSA","SHA-512",n[0],n[1]);break;case"none":e=y.create("None")}return e&&new U(t,e)}static none(){return U.create("none")}static HS256(t){return U.create("HS256",t)}static HS384(t){return U.create("HS384",t)}static HS512(t){return U.create("HS512",t)}static RS256(t,n){return U.create("RS256",t,n)}static RS384(t,n){return U.create("RS384",t,n)}static RS512(t,n){return U.create("RS512",t,n)}static ES256(t,n){return U.create("ES256",t,n)}static ES384(t,n){return U.create("ES384",t,n)}static ES512(t,n){return U.create("ES512",t,n)}static PS256(t,n){return U.create("PS256",t,n)}static PS384(t,n){return U.create("PS384",t,n)}static PS512(t,n){return U.create("PS512",t,n)}}!function(t){var n;(n=t.Name||(t.Name={})).is=g.is,function(t){t.is=g.Symmetric.is}(n.Symmetric||(n.Symmetric={})),function(t){t.is=g.Asymmetric.is}(n.Asymmetric||(n.Asymmetric={}))}(U||(U={})),function(t){t.is=function(t){return"string"==typeof t&&/^[A-Za-z0-9-_=]+\.[A-Za-z0-9-_=]+\.?[A-Za-z0-9-_.+/=]*$/.test(t)}}(C||(C={}));class O{static is(t){return"object"==typeof t&&"string"==typeof t.destination&&null!=t.content}static send(t,n,e){if(O.is(t)&&null==e){(e=n)||(e=window);const r=t.destination.split("#",2);e.postMessage(t={destination:r[1],content:t.content},r[0])}else"string"!=typeof e&&(e||(e=window),"string"==typeof t&&O.send({destination:t,content:n},e))}static listen(t,n,e){const r=t.split("#",2);let i="";2==r.length&&(t=r[0],i=r[1]),(e||window).addEventListener("message",(e=>{const r=e.data;!O.is(r)||"*"!=t&&e.origin!=t||""!=i&&r.destination!=i||n(r.destination,r.content)}))}}class M{static is(t){return"object"==typeof t&&"string"==typeof t.name}}var D,x=function(t,n,e,r){if("a"===e&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof n?t!==n||!r:!n.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===e?r:"a"===e?r.call(t):r?r.value:n.get(t)};class B{constructor(){D.set(this,{})}listen(t,n){var e,r;null!==(r=null===(e=x(this,D,"f")[t])||void 0===e?void 0:e.push(n))&&void 0!==r||(x(this,D,"f")[t]=[n]),n(this[t])}unlisten(t,n){var e,r;const i=null===(e=x(this,D,"f")[t])||void 0===e?void 0:e.indexOf(n);null!=i&&i>=0&&(null===(r=x(this,D,"f")[t])||void 0===r||r.splice(i,1))}static load(t,n){const e=null!=n?n:new B;return Object.defineProperties(e,function(t){return Object.fromEntries(Object.entries(Object.assign(Object.assign({},Object.getOwnPropertyDescriptors(t)),Object.getOwnPropertyDescriptors(Object.getPrototypeOf(t)))).map((([n,r])=>[n,"function"==typeof r.value?{get:()=>t[n].bind(t)}:r.writable||r.set?{get:()=>t[n],set(r){var i;t[n]=r,null===(i=x(e,D,"f")[n])||void 0===i||i.forEach((t=>t(r)))}}:{get:()=>t[n].bind(t)}])))}(t))}}D=new WeakMap;export{o as I,B as L,O as M,M as T}