smoothly 0.3.61 → 0.3.62
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/cjs/{Listenable-e157f34c.js → Listenable-dd19f28e.js} +12 -0
- package/dist/cjs/{index-5c256daf.js → index-679a68de.js} +1 -1
- package/dist/cjs/{index-48630c3c.js → index-8352a4e0.js} +0 -3
- package/dist/cjs/index.cjs.js +3 -3
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/smoothly-accordion_53.cjs.entry.js +3 -3
- package/dist/cjs/smoothly-country.cjs.entry.js +1 -1
- package/dist/cjs/smoothly-google-font.cjs.entry.js +1 -1
- package/dist/cjs/smoothly-radio-group.cjs.entry.js +1 -1
- package/dist/cjs/smoothly-reorder.cjs.entry.js +4 -4
- package/dist/cjs/smoothly-trigger-sink.cjs.entry.js +2 -2
- package/dist/cjs/smoothly-trigger-source.cjs.entry.js +2 -2
- package/dist/cjs/smoothly.cjs.js +1 -1
- package/dist/collection/model/Listenable.js +12 -0
- package/dist/custom-elements/index.js +12 -0
- package/dist/esm/{Listenable-afd6cd7e.js → Listenable-9c0fb198.js} +12 -0
- package/dist/esm/{index-e9e4cadb.js → index-7b57a52c.js} +1 -3
- package/dist/esm/{index-62de77e7.js → index-990cc22d.js} +1 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/loader.js +2 -2
- package/dist/esm/smoothly-accordion_53.entry.js +3 -3
- package/dist/esm/smoothly-country.entry.js +1 -1
- package/dist/esm/smoothly-google-font.entry.js +1 -1
- package/dist/esm/smoothly-radio-group.entry.js +1 -1
- package/dist/esm/smoothly-reorder.entry.js +2 -2
- package/dist/esm/smoothly-trigger-sink.entry.js +2 -2
- package/dist/esm/smoothly-trigger-source.entry.js +2 -2
- package/dist/esm/smoothly.js +2 -2
- package/dist/smoothly/index.esm.js +1 -1
- package/dist/smoothly/{p-b3d699d2.entry.js → p-0ed63b7b.entry.js} +1 -1
- package/dist/smoothly/{p-46dcb025.entry.js → p-389c9358.entry.js} +1 -1
- package/dist/smoothly/{p-fe4520be.entry.js → p-5fb08944.entry.js} +1 -1
- package/dist/smoothly/p-607abd83.entry.js +1 -0
- package/dist/smoothly/{p-73bcae40.js → p-675a8d09.js} +1 -1
- package/dist/smoothly/{p-6e017bc2.entry.js → p-8b76a2f7.entry.js} +1 -1
- package/dist/smoothly/{p-cab954af.entry.js → p-a19a824a.entry.js} +1 -1
- package/dist/smoothly/{p-e5d867e5.js → p-c88ae468.js} +2 -2
- package/dist/smoothly/{p-05154935.js → p-db43430d.js} +1 -1
- package/dist/smoothly/{p-ccd08c26.entry.js → p-e5e0e577.entry.js} +1 -1
- package/dist/smoothly/smoothly.esm.js +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/model/Listenable.d.ts +7 -0
- package/dist/types/model/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/smoothly/p-4f3b0e6d.entry.js +0 -1
|
@@ -795,6 +795,18 @@ class Listenable {
|
|
|
795
795
|
const index = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.indexOf(listener);
|
|
796
796
|
index != undefined && index >= 0 && ((_b = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _b === void 0 ? void 0 : _b.splice(index, 1));
|
|
797
797
|
}
|
|
798
|
+
batchListen(listeners, options) {
|
|
799
|
+
for (const key in listeners) {
|
|
800
|
+
const listener = listeners[key];
|
|
801
|
+
listener && this.listen(key, listener, options);
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
batchUnlisten(listeners) {
|
|
805
|
+
for (const key in listeners) {
|
|
806
|
+
const listener = listeners[key];
|
|
807
|
+
listener && this.unlisten(key, listener);
|
|
808
|
+
}
|
|
809
|
+
}
|
|
798
810
|
static load(backend) {
|
|
799
811
|
const result = backend.listenable;
|
|
800
812
|
return Object.defineProperties(result, getProperties(backend));
|
|
@@ -2060,8 +2060,6 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
2060
2060
|
const styles = /*@__PURE__*/ new Map();
|
|
2061
2061
|
const win = typeof window !== 'undefined' ? window : {};
|
|
2062
2062
|
const doc = win.document || { head: {} };
|
|
2063
|
-
const H = (win.HTMLElement || class {
|
|
2064
|
-
});
|
|
2065
2063
|
const plt = {
|
|
2066
2064
|
$flags$: 0,
|
|
2067
2065
|
$resourcesUrl$: '',
|
|
@@ -2124,7 +2122,6 @@ const flush = () => {
|
|
|
2124
2122
|
const nextTick = /*@__PURE__*/ (cb) => promiseResolve().then(cb);
|
|
2125
2123
|
const writeTask = /*@__PURE__*/ queueTask(queueDomWrites, true);
|
|
2126
2124
|
|
|
2127
|
-
exports.H = H;
|
|
2128
2125
|
exports.Host = Host;
|
|
2129
2126
|
exports.bootstrapLazy = bootstrapLazy;
|
|
2130
2127
|
exports.createEvent = createEvent;
|
package/dist/cjs/index.cjs.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
6
|
-
const Listenable = require('./Listenable-
|
|
5
|
+
const index = require('./index-679a68de.js');
|
|
6
|
+
const Listenable = require('./Listenable-dd19f28e.js');
|
|
7
7
|
const GoogleFont = require('./GoogleFont-6c4f0da1.js');
|
|
8
|
-
require('./index-
|
|
8
|
+
require('./index-8352a4e0.js');
|
|
9
9
|
|
|
10
10
|
class ClientIdentifier {
|
|
11
11
|
constructor() { }
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
6
|
-
const index$1 = require('./index-
|
|
7
|
-
const Listenable = require('./Listenable-
|
|
5
|
+
const index = require('./index-8352a4e0.js');
|
|
6
|
+
const index$1 = require('./index-679a68de.js');
|
|
7
|
+
const Listenable = require('./Listenable-dd19f28e.js');
|
|
8
8
|
require('./GoogleFont-6c4f0da1.js');
|
|
9
9
|
const getLanguage = require('./getLanguage-7991c46a.js');
|
|
10
10
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-8352a4e0.js');
|
|
6
6
|
|
|
7
7
|
const styleCss = "smoothly-radio-group{display:flex;position:relative;color:none !important;background:none !important;margin:0.5em 0}smoothly-radio-group[hidden]{display:none}smoothly-radio-group[orientation=vertical] *:not(:first-of-type)>input[type=radio]~label{border-top:none}smoothly-radio-group:not([orientation=vertical]) *:not(:first-of-type)>input[type=radio]~label{border-left:none}smoothly-radio-group[orientation=vertical]{flex-direction:column}smoothly-radio-group[orientation=vertical] :first-of-type>input[type=radio]~label{border-radius:4px 4px 0 0}smoothly-radio-group[orientation=vertical] :last-of-type>input[type=radio]~label{border-radius:0 0 4px 4px}smoothly-radio-group:not([orientation=vertical]){flex-direction:row}smoothly-radio-group:not([orientation=vertical]) :first-of-type>input[type=radio]~label{border-radius:4px 0 0 4px}smoothly-radio-group:not([orientation=vertical]) :last-of-type>input[type=radio]~label{border-radius:0 4px 4px 0}";
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-8352a4e0.js');
|
|
6
6
|
|
|
7
7
|
const styleCss = "smoothly-reorder>*{cursor:move;transition:transform 0.3s}smoothly-reorder>*.dragging{transition:none;box-shadow:0 0 10px rgba(var(--smoothly-dark-color));z-index:1;user-select:none}";
|
|
8
8
|
|
|
@@ -16,9 +16,9 @@ const SmoothlyReorder = class {
|
|
|
16
16
|
if (this.childrenCache)
|
|
17
17
|
result = this.childrenCache;
|
|
18
18
|
else {
|
|
19
|
-
for (let index
|
|
20
|
-
const element = this.element.children[index
|
|
21
|
-
if (element instanceof
|
|
19
|
+
for (let index = 0; index < this.element.children.length; index++) {
|
|
20
|
+
const element = this.element.children[index];
|
|
21
|
+
if (element instanceof HTMLElement) {
|
|
22
22
|
const bounds = element.getBoundingClientRect();
|
|
23
23
|
result.push({
|
|
24
24
|
top: bounds.top,
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
6
|
-
const Listenable = require('./Listenable-
|
|
5
|
+
const index = require('./index-8352a4e0.js');
|
|
6
|
+
const Listenable = require('./Listenable-dd19f28e.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}";
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
6
|
-
const Listenable = require('./Listenable-
|
|
5
|
+
const index = require('./index-8352a4e0.js');
|
|
6
|
+
const Listenable = require('./Listenable-dd19f28e.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}";
|
package/dist/cjs/smoothly.cjs.js
CHANGED
|
@@ -21,6 +21,18 @@ export class Listenable {
|
|
|
21
21
|
const index = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.indexOf(listener);
|
|
22
22
|
index != undefined && index >= 0 && ((_b = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _b === void 0 ? void 0 : _b.splice(index, 1));
|
|
23
23
|
}
|
|
24
|
+
batchListen(listeners, options) {
|
|
25
|
+
for (const key in listeners) {
|
|
26
|
+
const listener = listeners[key];
|
|
27
|
+
listener && this.listen(key, listener, options);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
batchUnlisten(listeners) {
|
|
31
|
+
for (const key in listeners) {
|
|
32
|
+
const listener = listeners[key];
|
|
33
|
+
listener && this.unlisten(key, listener);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
24
36
|
static load(backend) {
|
|
25
37
|
const result = backend.listenable;
|
|
26
38
|
return Object.defineProperties(result, getProperties(backend));
|
|
@@ -1320,6 +1320,18 @@ class Listenable {
|
|
|
1320
1320
|
const index = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.indexOf(listener);
|
|
1321
1321
|
index != undefined && index >= 0 && ((_b = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _b === void 0 ? void 0 : _b.splice(index, 1));
|
|
1322
1322
|
}
|
|
1323
|
+
batchListen(listeners, options) {
|
|
1324
|
+
for (const key in listeners) {
|
|
1325
|
+
const listener = listeners[key];
|
|
1326
|
+
listener && this.listen(key, listener, options);
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
batchUnlisten(listeners) {
|
|
1330
|
+
for (const key in listeners) {
|
|
1331
|
+
const listener = listeners[key];
|
|
1332
|
+
listener && this.unlisten(key, listener);
|
|
1333
|
+
}
|
|
1334
|
+
}
|
|
1323
1335
|
static load(backend) {
|
|
1324
1336
|
const result = backend.listenable;
|
|
1325
1337
|
return Object.defineProperties(result, getProperties(backend));
|
|
@@ -793,6 +793,18 @@ class Listenable {
|
|
|
793
793
|
const index = (_a = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _a === void 0 ? void 0 : _a.indexOf(listener);
|
|
794
794
|
index != undefined && index >= 0 && ((_b = __classPrivateFieldGet(this, _Listenable_listeners, "f")[property]) === null || _b === void 0 ? void 0 : _b.splice(index, 1));
|
|
795
795
|
}
|
|
796
|
+
batchListen(listeners, options) {
|
|
797
|
+
for (const key in listeners) {
|
|
798
|
+
const listener = listeners[key];
|
|
799
|
+
listener && this.listen(key, listener, options);
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
batchUnlisten(listeners) {
|
|
803
|
+
for (const key in listeners) {
|
|
804
|
+
const listener = listeners[key];
|
|
805
|
+
listener && this.unlisten(key, listener);
|
|
806
|
+
}
|
|
807
|
+
}
|
|
796
808
|
static load(backend) {
|
|
797
809
|
const result = backend.listenable;
|
|
798
810
|
return Object.defineProperties(result, getProperties(backend));
|
|
@@ -2038,8 +2038,6 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
2038
2038
|
const styles = /*@__PURE__*/ new Map();
|
|
2039
2039
|
const win = typeof window !== 'undefined' ? window : {};
|
|
2040
2040
|
const doc = win.document || { head: {} };
|
|
2041
|
-
const H = (win.HTMLElement || class {
|
|
2042
|
-
});
|
|
2043
2041
|
const plt = {
|
|
2044
2042
|
$flags$: 0,
|
|
2045
2043
|
$resourcesUrl$: '',
|
|
@@ -2102,4 +2100,4 @@ const flush = () => {
|
|
|
2102
2100
|
const nextTick = /*@__PURE__*/ (cb) => promiseResolve().then(cb);
|
|
2103
2101
|
const writeTask = /*@__PURE__*/ queueTask(queueDomWrites, true);
|
|
2104
2102
|
|
|
2105
|
-
export { Host as H, getElement as a, bootstrapLazy as b, createEvent as c,
|
|
2103
|
+
export { Host as H, getElement as a, bootstrapLazy as b, createEvent as c, forceUpdate as f, getRenderingRef as g, h, promiseResolve as p, registerInstance as r, setNonce as s };
|
package/dist/esm/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { A as App, C as Cosmetic, N as Notice, r as redirect } from './index-
|
|
2
|
-
import { I as Identifier, L as Listenable } from './Listenable-
|
|
3
|
-
export { a as Icon, L as Listenable, M as Message, T as Trigger } from './Listenable-
|
|
1
|
+
export { A as App, C as Cosmetic, N as Notice, r as redirect } from './index-990cc22d.js';
|
|
2
|
+
import { I as Identifier, L as Listenable } from './Listenable-9c0fb198.js';
|
|
3
|
+
export { a as Icon, L as Listenable, M as Message, T as Trigger } from './Listenable-9c0fb198.js';
|
|
4
4
|
export { G as GoogleFont } from './GoogleFont-8474516b.js';
|
|
5
|
-
import './index-
|
|
5
|
+
import './index-7b57a52c.js';
|
|
6
6
|
|
|
7
7
|
class ClientIdentifier {
|
|
8
8
|
constructor() { }
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-7b57a52c.js';
|
|
2
|
+
export { s as setNonce } from './index-7b57a52c.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
5
|
Stencil Client Patch Esm v2.22.3 | MIT Licensed | https://stenciljs.com
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { r as registerInstance, h, a as getElement, c as createEvent, H as Host } from './index-
|
|
2
|
-
import { r as redirect, A as App, N as Notice } from './index-
|
|
3
|
-
import { T as Trigger, M as Message, a as Icon } from './Listenable-
|
|
1
|
+
import { r as registerInstance, h, a as getElement, c as createEvent, H as Host } from './index-7b57a52c.js';
|
|
2
|
+
import { r as redirect, A as App, N as Notice } from './index-990cc22d.js';
|
|
3
|
+
import { T as Trigger, M as Message, a as Icon } from './Listenable-9c0fb198.js';
|
|
4
4
|
import './GoogleFont-8474516b.js';
|
|
5
5
|
import { D as Date$1, L as Language, g as getLanguage, a as DateTime, C as Currency, b as Locale, c as DateRange } from './getLanguage-225b37b0.js';
|
|
6
6
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h, H as Host, a as getElement } from './index-
|
|
1
|
+
import { r as registerInstance, h, H as Host, a as getElement } from './index-7b57a52c.js';
|
|
2
2
|
import { A as Alpha2, g as getLanguage } from './getLanguage-225b37b0.js';
|
|
3
3
|
|
|
4
4
|
function from$K(country) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h } from './index-
|
|
1
|
+
import { r as registerInstance, h } from './index-7b57a52c.js';
|
|
2
2
|
|
|
3
3
|
const styleCss = "smoothly-radio-group{display:flex;position:relative;color:none !important;background:none !important;margin:0.5em 0}smoothly-radio-group[hidden]{display:none}smoothly-radio-group[orientation=vertical] *:not(:first-of-type)>input[type=radio]~label{border-top:none}smoothly-radio-group:not([orientation=vertical]) *:not(:first-of-type)>input[type=radio]~label{border-left:none}smoothly-radio-group[orientation=vertical]{flex-direction:column}smoothly-radio-group[orientation=vertical] :first-of-type>input[type=radio]~label{border-radius:4px 4px 0 0}smoothly-radio-group[orientation=vertical] :last-of-type>input[type=radio]~label{border-radius:0 0 4px 4px}smoothly-radio-group:not([orientation=vertical]){flex-direction:row}smoothly-radio-group:not([orientation=vertical]) :first-of-type>input[type=radio]~label{border-radius:4px 0 0 4px}smoothly-radio-group:not([orientation=vertical]) :last-of-type>input[type=radio]~label{border-radius:0 4px 4px 0}";
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, c as createEvent,
|
|
1
|
+
import { r as registerInstance, c as createEvent, a as getElement } from './index-7b57a52c.js';
|
|
2
2
|
|
|
3
3
|
const styleCss = "smoothly-reorder>*{cursor:move;transition:transform 0.3s}smoothly-reorder>*.dragging{transition:none;box-shadow:0 0 10px rgba(var(--smoothly-dark-color));z-index:1;user-select:none}";
|
|
4
4
|
|
|
@@ -14,7 +14,7 @@ const SmoothlyReorder = class {
|
|
|
14
14
|
else {
|
|
15
15
|
for (let index = 0; index < this.element.children.length; index++) {
|
|
16
16
|
const element = this.element.children[index];
|
|
17
|
-
if (element instanceof
|
|
17
|
+
if (element instanceof HTMLElement) {
|
|
18
18
|
const bounds = element.getBoundingClientRect();
|
|
19
19
|
result.push({
|
|
20
20
|
top: bounds.top,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { r as registerInstance, h } from './index-
|
|
2
|
-
import { T as Trigger, M as Message } from './Listenable-
|
|
1
|
+
import { r as registerInstance, h } from './index-7b57a52c.js';
|
|
2
|
+
import { T as Trigger, M as Message } from './Listenable-9c0fb198.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
|
-
import { r as registerInstance, c as createEvent, h, a as getElement } from './index-
|
|
2
|
-
import { M as Message, T as Trigger } from './Listenable-
|
|
1
|
+
import { r as registerInstance, c as createEvent, h, a as getElement } from './index-7b57a52c.js';
|
|
2
|
+
import { M as Message, T as Trigger } from './Listenable-9c0fb198.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}";
|
package/dist/esm/smoothly.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-7b57a52c.js';
|
|
2
|
+
export { s as setNonce } from './index-7b57a52c.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
5
|
Stencil Client Patch Browser v2.22.3 | MIT Licensed | https://stenciljs.com
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export{A as App,C as Cosmetic,N as Notice,r as redirect}from"./p-
|
|
1
|
+
export{A as App,C as Cosmetic,N as Notice,r as redirect}from"./p-675a8d09.js";import{I as s,L as e}from"./p-db43430d.js";export{a as Icon,L as Listenable,M as Message,T as Trigger}from"./p-db43430d.js";export{G as GoogleFont}from"./p-bd478a53.js";import"./p-c88ae468.js";class t{constructor(){}static get value(){return t.valueCache=localStorage.getItem("clientIdentifier")||void 0,t.valueCache||(t.valueCache=s.generate(12),localStorage.setItem("clientIdentifier",t.valueCache)),t.valueCache}}class o{constructor(...s){this.listenable=new e,this.client=1==s.length?s[0]:void 0}}export{t as ClientIdentifier,o as StateBase}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as s,h as o}from"./p-
|
|
1
|
+
import{r as s,h as o}from"./p-c88ae468.js";import{G as t}from"./p-bd478a53.js";const r=class{constructor(o){s(this,o),this.value=void 0}render(){return t.is(this.value)?o("style",null,t.styleImportString(this.value)):""}};export{r as smoothly_google_font}
|