@ratiosolver/flick 0.2.7 → 0.2.9
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/app.d.ts +61 -0
- package/dist/app.js +61 -0
- package/dist/app.js.map +1 -0
- package/dist/component.d.ts +120 -0
- package/dist/component.js +161 -0
- package/dist/component.js.map +1 -0
- package/dist/components/app.d.ts +1 -1
- package/dist/components/app.js +2 -2
- package/dist/components/app.js.map +1 -1
- package/dist/components/brand.d.ts +15 -0
- package/dist/components/brand.js +39 -0
- package/dist/components/brand.js.map +1 -0
- package/dist/components/checkbox.d.ts +49 -0
- package/dist/components/checkbox.js +77 -0
- package/dist/components/checkbox.js.map +1 -0
- package/dist/components/sidebar.d.ts +5 -0
- package/dist/components/sidebar.js +36 -0
- package/dist/components/sidebar.js.map +1 -0
- package/dist/components/table.js +1 -1
- package/dist/components/table.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/blink.d.ts +14 -0
- package/dist/utils/blink.js +28 -0
- package/dist/utils/blink.js.map +1 -0
- package/dist/utils/connection.d.ts +102 -0
- package/dist/utils/connection.js +177 -0
- package/dist/utils/connection.js.map +1 -0
- package/dist/utils/selector.d.ts +59 -0
- package/dist/utils/selector.js +44 -0
- package/dist/utils/selector.js.map +1 -0
- package/dist/utils/settings.d.ts +61 -0
- package/dist/utils/settings.js +72 -0
- package/dist/utils/settings.js.map +1 -0
- package/dist/utils/user_components.d.ts +83 -0
- package/dist/utils/user_components.js +358 -0
- package/dist/utils/user_components.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Component } from "../component";
|
|
2
|
+
export class Sidebar extends Component {
|
|
3
|
+
constructor(group, top, bottom) {
|
|
4
|
+
super(document.createElement('div'));
|
|
5
|
+
this.node.classList.add('d-flex', 'flex-column', 'flex-shrink-0', 'p-3', 'bg-light');
|
|
6
|
+
this.node.style.width = '280px';
|
|
7
|
+
this.node.style.height = 'calc(100vh - 60px)';
|
|
8
|
+
const ul = document.createElement('ul');
|
|
9
|
+
ul.classList.add('nav', 'nav-pills', 'flex-column', 'mb-auto');
|
|
10
|
+
for (const [a, sel] of top) {
|
|
11
|
+
const li = document.createElement('li');
|
|
12
|
+
li.classList.add('nav-item');
|
|
13
|
+
a.classList.add('nav-link');
|
|
14
|
+
group.add_selector(sel);
|
|
15
|
+
li.appendChild(a);
|
|
16
|
+
ul.appendChild(li);
|
|
17
|
+
}
|
|
18
|
+
this.node.appendChild(ul);
|
|
19
|
+
if (bottom) {
|
|
20
|
+
const hr = document.createElement('hr');
|
|
21
|
+
this.node.appendChild(hr);
|
|
22
|
+
const footer_ul = document.createElement('ul');
|
|
23
|
+
footer_ul.classList.add('nav', 'nav-pills', 'flex-column', 'mb-0');
|
|
24
|
+
for (const [a, sel] of bottom) {
|
|
25
|
+
const li = document.createElement('li');
|
|
26
|
+
li.classList.add('nav-item');
|
|
27
|
+
a.classList.add('nav-link');
|
|
28
|
+
group.add_selector(sel);
|
|
29
|
+
li.appendChild(a);
|
|
30
|
+
footer_ul.appendChild(li);
|
|
31
|
+
}
|
|
32
|
+
this.node.appendChild(footer_ul);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=sidebar.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sidebar.js","sourceRoot":"","sources":["../../src/components/sidebar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAGzC,MAAM,OAAO,OAAQ,SAAQ,SAAyB;IAEpD,YAAY,KAAoB,EAAE,GAAqC,EAAE,MAAyC;QAChH,KAAK,CAAC,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC;QAErC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,QAAQ,EAAE,aAAa,EAAE,eAAe,EAAE,KAAK,EAAE,UAAU,CAAC,CAAC;QACrF,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,GAAG,OAAO,CAAC;QAChC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,oBAAoB,CAAC;QAE9C,MAAM,EAAE,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;QACxC,EAAE,CAAC,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,SAAS,CAAC,CAAC;QAE/D,KAAK,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC;YAC3B,MAAM,EAAE,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;YACxC,EAAE,CAAC,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;YAE7B,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;YAC5B,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC;YAExB,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;YAClB,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;QACrB,CAAC;QAED,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;QAE1B,IAAI,MAAM,EAAE,CAAC;YACX,MAAM,EAAE,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;YACxC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;YAE1B,MAAM,SAAS,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;YAC/C,SAAS,CAAC,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,CAAC,CAAC;YAEnE,KAAK,MAAM,CAAC,CAAC,EAAE,GAAG,CAAC,IAAI,MAAM,EAAE,CAAC;gBAC9B,MAAM,EAAE,GAAG,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;gBACxC,EAAE,CAAC,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;gBAE7B,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;gBAC5B,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC;gBAExB,EAAE,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;gBAClB,SAAS,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;YAC5B,CAAC;YAED,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;QACnC,CAAC;IACH,CAAC;CACF"}
|
package/dist/components/table.js
CHANGED
|
@@ -9,7 +9,7 @@ export function Row(cells, onClick, active = false) {
|
|
|
9
9
|
}, cells.map(cell => h('td', cell)));
|
|
10
10
|
}
|
|
11
11
|
export function Table(header, rows, caption) {
|
|
12
|
-
return h('table.caption-top.table-striped.table-hover', [
|
|
12
|
+
return h('table.table.caption-top.table-striped.table-hover', [
|
|
13
13
|
caption ? h('caption', caption) : null,
|
|
14
14
|
h('thead', header),
|
|
15
15
|
h('tbody', rows)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.js","sourceRoot":"","sources":["../../src/components/table.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAwB,MAAM,UAAU,CAAC;AAEnD,MAAM,UAAU,MAAM,CAAC,KAAsB;IAC3C,OAAO,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AAChF,CAAC;AAED,MAAM,UAAU,GAAG,CAAC,KAAsB,EAAE,OAAoB,EAAE,SAAkB,KAAK;IACvF,OAAO,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE;QAC/C,KAAK,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,EAAE;QAClD,EAAE,EAAE,EAAE,KAAK,EAAE,OAAO,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE;KACtC,EAAE,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AACvC,CAAC;AAED,MAAM,UAAU,KAAK,CAAC,MAAa,EAAE,IAAa,EAAE,OAAgB;IAClE,OAAO,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"table.js","sourceRoot":"","sources":["../../src/components/table.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAwB,MAAM,UAAU,CAAC;AAEnD,MAAM,UAAU,MAAM,CAAC,KAAsB;IAC3C,OAAO,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AAChF,CAAC;AAED,MAAM,UAAU,GAAG,CAAC,KAAsB,EAAE,OAAoB,EAAE,SAAkB,KAAK;IACvF,OAAO,CAAC,CAAC,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE;QAC/C,KAAK,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,EAAE;QAClD,EAAE,EAAE,EAAE,KAAK,EAAE,OAAO,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE;KACtC,EAAE,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC;AACvC,CAAC;AAED,MAAM,UAAU,KAAK,CAAC,MAAa,EAAE,IAAa,EAAE,OAAgB;IAClE,OAAO,CAAC,CAAC,mDAAmD,EAAE;QAC5D,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;QACtC,CAAC,CAAC,OAAO,EAAE,MAAM,CAAC;QAClB,CAAC,CAAC,OAAO,EAAE,IAAI,CAAC;KACjB,CAAC,CAAC;AACL,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/snabbdom/build/htmldomapi.d.ts","../node_modules/snabbdom/build/helpers/attachto.d.ts","../node_modules/snabbdom/build/modules/style.d.ts","../node_modules/snabbdom/build/modules/eventlisteners.d.ts","../node_modules/snabbdom/build/modules/attributes.d.ts","../node_modules/snabbdom/build/modules/class.d.ts","../node_modules/snabbdom/build/modules/props.d.ts","../node_modules/snabbdom/build/modules/dataset.d.ts","../node_modules/snabbdom/build/vnode.d.ts","../node_modules/snabbdom/build/hooks.d.ts","../node_modules/snabbdom/build/modules/module.d.ts","../node_modules/snabbdom/build/init.d.ts","../node_modules/snabbdom/build/thunk.d.ts","../node_modules/snabbdom/build/is.d.ts","../node_modules/snabbdom/build/tovnode.d.ts","../node_modules/snabbdom/build/h.d.ts","../node_modules/snabbdom/build/jsx.d.ts","../node_modules/snabbdom/build/index.d.ts","../node_modules/@types/bootstrap/js/dist/base-component.d.ts","../node_modules/@types/bootstrap/js/dist/alert.d.ts","../node_modules/@types/bootstrap/js/dist/button.d.ts","../node_modules/@types/bootstrap/js/dist/carousel.d.ts","../node_modules/@types/bootstrap/js/dist/collapse.d.ts","../node_modules/@popperjs/core/lib/enums.d.ts","../node_modules/@popperjs/core/lib/modifiers/popperOffsets.d.ts","../node_modules/@popperjs/core/lib/modifiers/flip.d.ts","../node_modules/@popperjs/core/lib/modifiers/hide.d.ts","../node_modules/@popperjs/core/lib/modifiers/offset.d.ts","../node_modules/@popperjs/core/lib/modifiers/eventListeners.d.ts","../node_modules/@popperjs/core/lib/modifiers/computeStyles.d.ts","../node_modules/@popperjs/core/lib/modifiers/arrow.d.ts","../node_modules/@popperjs/core/lib/modifiers/preventOverflow.d.ts","../node_modules/@popperjs/core/lib/modifiers/applyStyles.d.ts","../node_modules/@popperjs/core/lib/types.d.ts","../node_modules/@popperjs/core/lib/modifiers/index.d.ts","../node_modules/@popperjs/core/lib/utils/detectOverflow.d.ts","../node_modules/@popperjs/core/lib/createPopper.d.ts","../node_modules/@popperjs/core/lib/popper-lite.d.ts","../node_modules/@popperjs/core/lib/popper.d.ts","../node_modules/@popperjs/core/lib/index.d.ts","../node_modules/@popperjs/core/index.d.ts","../node_modules/@types/bootstrap/js/dist/tooltip.d.ts","../node_modules/@types/bootstrap/js/dist/dropdown.d.ts","../node_modules/@types/bootstrap/js/dist/modal.d.ts","../node_modules/@types/bootstrap/js/dist/offcanvas.d.ts","../node_modules/@types/bootstrap/js/dist/popover.d.ts","../node_modules/@types/bootstrap/js/dist/scrollspy.d.ts","../node_modules/@types/bootstrap/js/dist/tab.d.ts","../node_modules/@types/bootstrap/js/dist/toast.d.ts","../node_modules/@types/bootstrap/index.d.ts","../src/components/app.ts","../src/flick.ts","../src/components/button.ts","../src/components/list.ts","../src/components/offcanvas.ts","../src/components/table.ts","../src/components/toast.ts","../src/index.ts","../node_modules/@types/estree/index.d.ts"],"fileIdsList":[[119],[113,115],[103,113,114,116,117,118],[113],[103,113],[104,105,106,107,108,109,110,111,112],[104,108,109,112,113,116],[104,105,106,107,108,109,110,111,112,113,114,116,117],[103,104,105,106,107,108,109,110,111,112],[99,100,101,102,121,122,123,124,125,126,127,128],[98],[98,120,121],[98,121],[98,120],[88],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[80,88,90],[86,88,95],[90],[88,90],[89],[80,88],[81,82,83,84,85,86,87,89],[97,129],[97],[97,130],[130,131,132,133,134,135,136]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"095a402135de9fbfda29ba7c984bf54b9e65757396b4165706d898e9baa83ed5","impliedFormat":99},{"version":"0b6471168629b8a0cbac9f8f67bbbba83a1d64cf1424cd7d299439b3af88129a","impliedFormat":99},{"version":"3e0fa3b04086663fd406499ea37f0714b0d7cbc296eb81e244f2bf0ba4938bb2","impliedFormat":99},{"version":"3d11abe325e68a5b76d9f53ecc0b4ea29685ccbd8690b279f2177e0750d87f8c","impliedFormat":99},{"version":"f1952d24cb1344241341230924197977764249edcde80605e96454f073ebb35a","impliedFormat":99},{"version":"3b5b37b56d81802168c5b8df2f1d4a7ee018d67e7463f221d49b6ea20af00060","impliedFormat":99},{"version":"f3a6db8faeb959400a4d0e1100b9d5c54eb494800e6dc9a2452bb2e00a27397c","impliedFormat":99},{"version":"d278699a1c7e06a195ecc065c4965d1bbfb5bc2d67176e63bebf58b273158023","impliedFormat":99},{"version":"261ffd2f7502d9387324715c7dcb9f3a30c8d044b6dc3abc7ff80737c366476c","impliedFormat":99},{"version":"28729ff7b2ea98a9ba6ca4490c5540be744a4d73b4199ff6094cb65c9db33607","impliedFormat":99},{"version":"6ac889647435812fb7ced7035daf90c1f307710056e4b496a3fd5cb97c87daed","impliedFormat":99},{"version":"29f60d17027d6bc8891797f6ed95ac84ee42313e6b03ddb49beff6f22f49f8c6","impliedFormat":99},{"version":"f71579228be8825267577e970c8f0ee2869cebae0bb7603b00644fec924c6717","impliedFormat":99},{"version":"e50f096cb424b63343ad5814622623f15cf3830f41710376bebb3c7f71554713","impliedFormat":99},{"version":"69ebae4354b59ff1ba38419d6033e22d0db6ffe6c1d562e78914f88f06ec517f","impliedFormat":99},{"version":"45f0aee62dc187cbde99b10987e1f8649a30bba8bf9c95957e37d1551d0626da","impliedFormat":99},{"version":"919b048385b82efca27e5adec2f61f17a2b219582f2deb8a13b4648c7c8fafbf","impliedFormat":99},{"version":"47747eabb3c64620a12f707bf30c7f7a211e25754a2da1f98267068f49bd0947","impliedFormat":99},{"version":"ce056ab24e2cd659c329b3db32bc2b9c49cb46885c713fc51a3ccf0530c0b263","impliedFormat":1},{"version":"e6f937d272c711656955e21e30f96d7d346c9c95f6835af61bcfc1289c21e207","impliedFormat":1},{"version":"2aa12d94c33ab2a76445b8e86f30ac5ef3036f4f6a54a039a15a61996ef05652","impliedFormat":1},{"version":"0c4e1e59c66f5d36dee15b22180dfc14771a7340f5e89b81f7826846d429a732","impliedFormat":1},{"version":"fc6cc569887efa22df1fe491a6ddaf9a1f389e02ea3c6e32ec420795d5b56ac5","impliedFormat":1},{"version":"70a29119482d358ab4f28d28ee2dcd05d6cbf8e678068855d016e10a9256ec12","impliedFormat":1},{"version":"869ac759ae8f304536d609082732cb025a08dcc38237fe619caf3fcdd41dde6f","impliedFormat":1},{"version":"0ea900fe6565f9133e06bce92e3e9a4b5a69234e83d40b7df2e1752b8d2b5002","impliedFormat":1},{"version":"e5408f95ca9ac5997c0fea772d68b1bf390e16c2a8cad62858553409f2b12412","impliedFormat":1},{"version":"3c1332a48695617fc5c8a1aead8f09758c2e73018bd139882283fb5a5b8536a6","impliedFormat":1},{"version":"9260b03453970e98ce9b1ad851275acd9c7d213c26c7d86bae096e8e9db4e62b","impliedFormat":1},{"version":"083838d2f5fea0c28f02ce67087101f43bd6e8697c51fd48029261653095080c","impliedFormat":1},{"version":"969132719f0f5822e669f6da7bd58ea0eb47f7899c1db854f8f06379f753b365","impliedFormat":1},{"version":"94ca5d43ff6f9dc8b1812b0770b761392e6eac1948d99d2da443dc63c32b2ec1","impliedFormat":1},{"version":"2cbc88cf54c50e74ee5642c12217e6fd5415e1b35232d5666d53418bae210b3b","impliedFormat":1},{"version":"ccb226557417c606f8b1bba85d178f4bcea3f8ae67b0e86292709a634a1d389d","impliedFormat":1},{"version":"5ea98f44cc9de1fe05d037afe4813f3dcd3a8c5de43bdd7db24624a364fad8e6","impliedFormat":1},{"version":"5260a62a7d326565c7b42293ed427e4186b9d43d6f160f50e134a18385970d02","impliedFormat":1},{"version":"0b3fc2d2d41ad187962c43cb38117d0aee0d3d515c8a6750aaea467da76b42aa","impliedFormat":1},{"version":"ed219f328224100dad91505388453a8c24a97367d1bc13dcec82c72ab13012b7","impliedFormat":1},{"version":"6847b17c96eb44634daa112849db0c9ade344fe23e6ced190b7eeb862beca9f4","impliedFormat":1},{"version":"d479a5128f27f63b58d57a61e062bd68fa43b684271449a73a4d3e3666a599a7","impliedFormat":1},{"version":"6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0","impliedFormat":1},{"version":"5b6b7e4f40994d55bb979fd544329a3d83464cce9e324c59f55dddb3868a9514","impliedFormat":1},{"version":"78d217f663fab7783f37a3c1aa2038eea13b5aae6def5a5ebc19f122f154fac4","impliedFormat":1},{"version":"b9296e3c5de713bbfcf87201017c93dce7d1e2dae442656da79361d9314e1da6","impliedFormat":1},{"version":"c84b98e1720fd189cb4f5e3a9aaad4140de5094facf80094ea0abb37c5a5fea1","impliedFormat":1},{"version":"5f77d8d9556472561ff5cb276df359f3fff8e8471a773d353acda6f9aa3d3406","impliedFormat":1},{"version":"51b68f12056e75383fa59b8b2e3c4a338f311a89b01da4effe7ab72e581e8720","impliedFormat":1},{"version":"27de6f00dd8d82e82d04b862744cb95929065c5e5df9aaa658de582f1c5c76dc","impliedFormat":1},{"version":"2c228f052f7801628e65c40e5c4a6f4f702461fe477085e24f7db422776d9655","impliedFormat":1},{"version":"c27c10cacba7bf7d64d223aee16402ca8bc3273000e6b281dcf2e3877a235590","affectsGlobalScope":true,"impliedFormat":1},{"version":"6398fbe8a3b2d2ce2e4340f176605dc0757c40ed5d4e2bb4186f8b4cf275e3a8","signature":"22bc7c922dd01a1e382c4650b8e7b65da237daa3288d71a70a162a9fcec79f90"},{"version":"4b2056eed061f868ecbaa36c76af45852f93c261e25aa73fe3d875595d6e8999","signature":"639e6f352d16eee741c6aad462bbe5f57bbf8f5be7a499008c749798820d8528"},{"version":"6f47c65561cfc9a6de36b496357be59641193c7877bdc9d83cc066390b517f08","signature":"2d0a616fce82542d76f976cafa2a15653fb2b94cd8bbaf861b0ba101918ce0e1"},{"version":"f65a000b9423427abaee9dd3d42b8d147a60d09bf835130f5fa9add648189ada","signature":"89d2361ab4ac64c14ec5025e511fb85ff26d71dec6b8e405152328e983d7a28a"},{"version":"ac89782f5a9af10374e1ca6d0e849b12f7e177bb4e8ae852482e2149294f8b3a","signature":"ed7612236e968a5e95749675c92ef6dd938fdfb1692001b6fa541c2d0e3aa22a"},{"version":"f8a2fcd26df4b51789b08f631f5b7ca7d95302122deb52efe5f5f0e6f9bd6038","signature":"9c5cb8a64518bf09e757ebea513f1c693e28410ce808567bd4935cbc39bed174"},{"version":"fa5a76c3919ec2dddff4015245088bd977e0429744a25a664c219a48c85f8ebc","signature":"ee057cc801d02e8c9fbbc3ede10d3ae5a8ccc84fcb997df71eb4e45a2d36d79c"},{"version":"c4f8cc133472c31734b82aceddba8a05dbb0bdd4f1a11dc6d84257f5fb43f2fb","signature":"abc9b19a2e3af95ec22ef739a59c7337fee51b53faf07b2baf786980e927431c"},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1}],"root":[[130,137]],"options":{"declaration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","sourceMap":true,"strict":true,"target":2},"referencedMap":[[120,1],[116,2],[119,3],[112,4],[110,5],[109,5],[108,4],[105,5],[106,4],[114,6],[107,5],[104,4],[111,5],[117,7],[118,8],[113,9],[115,5],[129,10],[99,11],[100,11],[101,11],[102,11],[122,12],[123,11],[124,11],[125,13],[126,11],[127,11],[128,11],[121,14],[95,15],[81,15],[89,15],[97,16],[91,17],[96,18],[84,19],[85,19],[87,19],[83,20],[90,21],[86,19],[82,19],[92,15],[94,22],[88,23],[130,24],[132,25],[133,25],[134,24],[135,25],[136,24],[131,26],[137,27]],"version":"5.8.3"}
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/snabbdom/build/htmldomapi.d.ts","../node_modules/snabbdom/build/helpers/attachto.d.ts","../node_modules/snabbdom/build/modules/style.d.ts","../node_modules/snabbdom/build/modules/eventlisteners.d.ts","../node_modules/snabbdom/build/modules/attributes.d.ts","../node_modules/snabbdom/build/modules/class.d.ts","../node_modules/snabbdom/build/modules/props.d.ts","../node_modules/snabbdom/build/modules/dataset.d.ts","../node_modules/snabbdom/build/vnode.d.ts","../node_modules/snabbdom/build/hooks.d.ts","../node_modules/snabbdom/build/modules/module.d.ts","../node_modules/snabbdom/build/init.d.ts","../node_modules/snabbdom/build/thunk.d.ts","../node_modules/snabbdom/build/is.d.ts","../node_modules/snabbdom/build/tovnode.d.ts","../node_modules/snabbdom/build/h.d.ts","../node_modules/snabbdom/build/jsx.d.ts","../node_modules/snabbdom/build/index.d.ts","../node_modules/@types/bootstrap/js/dist/base-component.d.ts","../node_modules/@types/bootstrap/js/dist/alert.d.ts","../node_modules/@types/bootstrap/js/dist/button.d.ts","../node_modules/@types/bootstrap/js/dist/carousel.d.ts","../node_modules/@types/bootstrap/js/dist/collapse.d.ts","../node_modules/@popperjs/core/lib/enums.d.ts","../node_modules/@popperjs/core/lib/modifiers/popperOffsets.d.ts","../node_modules/@popperjs/core/lib/modifiers/flip.d.ts","../node_modules/@popperjs/core/lib/modifiers/hide.d.ts","../node_modules/@popperjs/core/lib/modifiers/offset.d.ts","../node_modules/@popperjs/core/lib/modifiers/eventListeners.d.ts","../node_modules/@popperjs/core/lib/modifiers/computeStyles.d.ts","../node_modules/@popperjs/core/lib/modifiers/arrow.d.ts","../node_modules/@popperjs/core/lib/modifiers/preventOverflow.d.ts","../node_modules/@popperjs/core/lib/modifiers/applyStyles.d.ts","../node_modules/@popperjs/core/lib/types.d.ts","../node_modules/@popperjs/core/lib/modifiers/index.d.ts","../node_modules/@popperjs/core/lib/utils/detectOverflow.d.ts","../node_modules/@popperjs/core/lib/createPopper.d.ts","../node_modules/@popperjs/core/lib/popper-lite.d.ts","../node_modules/@popperjs/core/lib/popper.d.ts","../node_modules/@popperjs/core/lib/index.d.ts","../node_modules/@popperjs/core/index.d.ts","../node_modules/@types/bootstrap/js/dist/tooltip.d.ts","../node_modules/@types/bootstrap/js/dist/dropdown.d.ts","../node_modules/@types/bootstrap/js/dist/modal.d.ts","../node_modules/@types/bootstrap/js/dist/offcanvas.d.ts","../node_modules/@types/bootstrap/js/dist/popover.d.ts","../node_modules/@types/bootstrap/js/dist/scrollspy.d.ts","../node_modules/@types/bootstrap/js/dist/tab.d.ts","../node_modules/@types/bootstrap/js/dist/toast.d.ts","../node_modules/@types/bootstrap/index.d.ts","../src/components/app.ts","../src/flick.ts","../src/components/button.ts","../src/components/list.ts","../src/components/offcanvas.ts","../src/components/table.ts","../src/components/toast.ts","../src/index.ts","../node_modules/@types/estree/index.d.ts"],"fileIdsList":[[119],[113,115],[103,113,114,116,117,118],[113],[103,113],[104,105,106,107,108,109,110,111,112],[104,108,109,112,113,116],[104,105,106,107,108,109,110,111,112,113,114,116,117],[103,104,105,106,107,108,109,110,111,112],[99,100,101,102,121,122,123,124,125,126,127,128],[98],[98,120,121],[98,121],[98,120],[88],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[80,88,90],[86,88,95],[90],[88,90],[89],[80,88],[81,82,83,84,85,86,87,89],[97,129],[97],[97,130],[130,131,132,133,134,135,136]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"095a402135de9fbfda29ba7c984bf54b9e65757396b4165706d898e9baa83ed5","impliedFormat":99},{"version":"0b6471168629b8a0cbac9f8f67bbbba83a1d64cf1424cd7d299439b3af88129a","impliedFormat":99},{"version":"3e0fa3b04086663fd406499ea37f0714b0d7cbc296eb81e244f2bf0ba4938bb2","impliedFormat":99},{"version":"3d11abe325e68a5b76d9f53ecc0b4ea29685ccbd8690b279f2177e0750d87f8c","impliedFormat":99},{"version":"f1952d24cb1344241341230924197977764249edcde80605e96454f073ebb35a","impliedFormat":99},{"version":"3b5b37b56d81802168c5b8df2f1d4a7ee018d67e7463f221d49b6ea20af00060","impliedFormat":99},{"version":"f3a6db8faeb959400a4d0e1100b9d5c54eb494800e6dc9a2452bb2e00a27397c","impliedFormat":99},{"version":"d278699a1c7e06a195ecc065c4965d1bbfb5bc2d67176e63bebf58b273158023","impliedFormat":99},{"version":"261ffd2f7502d9387324715c7dcb9f3a30c8d044b6dc3abc7ff80737c366476c","impliedFormat":99},{"version":"28729ff7b2ea98a9ba6ca4490c5540be744a4d73b4199ff6094cb65c9db33607","impliedFormat":99},{"version":"6ac889647435812fb7ced7035daf90c1f307710056e4b496a3fd5cb97c87daed","impliedFormat":99},{"version":"29f60d17027d6bc8891797f6ed95ac84ee42313e6b03ddb49beff6f22f49f8c6","impliedFormat":99},{"version":"f71579228be8825267577e970c8f0ee2869cebae0bb7603b00644fec924c6717","impliedFormat":99},{"version":"e50f096cb424b63343ad5814622623f15cf3830f41710376bebb3c7f71554713","impliedFormat":99},{"version":"69ebae4354b59ff1ba38419d6033e22d0db6ffe6c1d562e78914f88f06ec517f","impliedFormat":99},{"version":"45f0aee62dc187cbde99b10987e1f8649a30bba8bf9c95957e37d1551d0626da","impliedFormat":99},{"version":"919b048385b82efca27e5adec2f61f17a2b219582f2deb8a13b4648c7c8fafbf","impliedFormat":99},{"version":"47747eabb3c64620a12f707bf30c7f7a211e25754a2da1f98267068f49bd0947","impliedFormat":99},{"version":"ce056ab24e2cd659c329b3db32bc2b9c49cb46885c713fc51a3ccf0530c0b263","impliedFormat":1},{"version":"e6f937d272c711656955e21e30f96d7d346c9c95f6835af61bcfc1289c21e207","impliedFormat":1},{"version":"2aa12d94c33ab2a76445b8e86f30ac5ef3036f4f6a54a039a15a61996ef05652","impliedFormat":1},{"version":"0c4e1e59c66f5d36dee15b22180dfc14771a7340f5e89b81f7826846d429a732","impliedFormat":1},{"version":"fc6cc569887efa22df1fe491a6ddaf9a1f389e02ea3c6e32ec420795d5b56ac5","impliedFormat":1},{"version":"70a29119482d358ab4f28d28ee2dcd05d6cbf8e678068855d016e10a9256ec12","impliedFormat":1},{"version":"869ac759ae8f304536d609082732cb025a08dcc38237fe619caf3fcdd41dde6f","impliedFormat":1},{"version":"0ea900fe6565f9133e06bce92e3e9a4b5a69234e83d40b7df2e1752b8d2b5002","impliedFormat":1},{"version":"e5408f95ca9ac5997c0fea772d68b1bf390e16c2a8cad62858553409f2b12412","impliedFormat":1},{"version":"3c1332a48695617fc5c8a1aead8f09758c2e73018bd139882283fb5a5b8536a6","impliedFormat":1},{"version":"9260b03453970e98ce9b1ad851275acd9c7d213c26c7d86bae096e8e9db4e62b","impliedFormat":1},{"version":"083838d2f5fea0c28f02ce67087101f43bd6e8697c51fd48029261653095080c","impliedFormat":1},{"version":"969132719f0f5822e669f6da7bd58ea0eb47f7899c1db854f8f06379f753b365","impliedFormat":1},{"version":"94ca5d43ff6f9dc8b1812b0770b761392e6eac1948d99d2da443dc63c32b2ec1","impliedFormat":1},{"version":"2cbc88cf54c50e74ee5642c12217e6fd5415e1b35232d5666d53418bae210b3b","impliedFormat":1},{"version":"ccb226557417c606f8b1bba85d178f4bcea3f8ae67b0e86292709a634a1d389d","impliedFormat":1},{"version":"5ea98f44cc9de1fe05d037afe4813f3dcd3a8c5de43bdd7db24624a364fad8e6","impliedFormat":1},{"version":"5260a62a7d326565c7b42293ed427e4186b9d43d6f160f50e134a18385970d02","impliedFormat":1},{"version":"0b3fc2d2d41ad187962c43cb38117d0aee0d3d515c8a6750aaea467da76b42aa","impliedFormat":1},{"version":"ed219f328224100dad91505388453a8c24a97367d1bc13dcec82c72ab13012b7","impliedFormat":1},{"version":"6847b17c96eb44634daa112849db0c9ade344fe23e6ced190b7eeb862beca9f4","impliedFormat":1},{"version":"d479a5128f27f63b58d57a61e062bd68fa43b684271449a73a4d3e3666a599a7","impliedFormat":1},{"version":"6f308b141358ac799edc3e83e887441852205dc1348310d30b62c69438b93ca0","impliedFormat":1},{"version":"5b6b7e4f40994d55bb979fd544329a3d83464cce9e324c59f55dddb3868a9514","impliedFormat":1},{"version":"78d217f663fab7783f37a3c1aa2038eea13b5aae6def5a5ebc19f122f154fac4","impliedFormat":1},{"version":"b9296e3c5de713bbfcf87201017c93dce7d1e2dae442656da79361d9314e1da6","impliedFormat":1},{"version":"c84b98e1720fd189cb4f5e3a9aaad4140de5094facf80094ea0abb37c5a5fea1","impliedFormat":1},{"version":"5f77d8d9556472561ff5cb276df359f3fff8e8471a773d353acda6f9aa3d3406","impliedFormat":1},{"version":"51b68f12056e75383fa59b8b2e3c4a338f311a89b01da4effe7ab72e581e8720","impliedFormat":1},{"version":"27de6f00dd8d82e82d04b862744cb95929065c5e5df9aaa658de582f1c5c76dc","impliedFormat":1},{"version":"2c228f052f7801628e65c40e5c4a6f4f702461fe477085e24f7db422776d9655","impliedFormat":1},{"version":"c27c10cacba7bf7d64d223aee16402ca8bc3273000e6b281dcf2e3877a235590","affectsGlobalScope":true,"impliedFormat":1},{"version":"7cd7b1160cc48528f52d32a8a0794bfc04432dea2be83c1e891ed7fa26063ee7","signature":"86553239a6ff07b5835ba08e4799373f409319a3464089c586d2b4e8029aca3f"},{"version":"4b2056eed061f868ecbaa36c76af45852f93c261e25aa73fe3d875595d6e8999","signature":"639e6f352d16eee741c6aad462bbe5f57bbf8f5be7a499008c749798820d8528"},{"version":"6f47c65561cfc9a6de36b496357be59641193c7877bdc9d83cc066390b517f08","signature":"2d0a616fce82542d76f976cafa2a15653fb2b94cd8bbaf861b0ba101918ce0e1"},{"version":"f65a000b9423427abaee9dd3d42b8d147a60d09bf835130f5fa9add648189ada","signature":"89d2361ab4ac64c14ec5025e511fb85ff26d71dec6b8e405152328e983d7a28a"},{"version":"ac89782f5a9af10374e1ca6d0e849b12f7e177bb4e8ae852482e2149294f8b3a","signature":"ed7612236e968a5e95749675c92ef6dd938fdfb1692001b6fa541c2d0e3aa22a"},{"version":"0065e7ea08ba7d3fd7c406b110d6b11b8c1d0653660a204c2ef0d3dd4ef2e990","signature":"9c5cb8a64518bf09e757ebea513f1c693e28410ce808567bd4935cbc39bed174"},{"version":"fa5a76c3919ec2dddff4015245088bd977e0429744a25a664c219a48c85f8ebc","signature":"ee057cc801d02e8c9fbbc3ede10d3ae5a8ccc84fcb997df71eb4e45a2d36d79c"},{"version":"c4f8cc133472c31734b82aceddba8a05dbb0bdd4f1a11dc6d84257f5fb43f2fb","signature":"abc9b19a2e3af95ec22ef739a59c7337fee51b53faf07b2baf786980e927431c"},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1}],"root":[[130,137]],"options":{"declaration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","sourceMap":true,"strict":true,"target":2},"referencedMap":[[120,1],[116,2],[119,3],[112,4],[110,5],[109,5],[108,4],[105,5],[106,4],[114,6],[107,5],[104,4],[111,5],[117,7],[118,8],[113,9],[115,5],[129,10],[99,11],[100,11],[101,11],[102,11],[122,12],[123,11],[124,11],[125,13],[126,11],[127,11],[128,11],[121,14],[95,15],[81,15],[89,15],[97,16],[91,17],[96,18],[84,19],[85,19],[87,19],[83,20],[90,21],[86,19],[82,19],[92,15],[94,22],[88,23],[130,24],[132,25],[133,25],[134,24],[135,25],[136,24],[131,26],[137,27]],"version":"5.8.3"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Adds a custom CSS class to one or more HTML elements for a specified duration,
|
|
3
|
+
* creating a temporary visual effect.
|
|
4
|
+
*
|
|
5
|
+
* @param elements - A single HTML element or an array of elements to apply the effect to.
|
|
6
|
+
* @param options - Configuration options for the blinking effect:
|
|
7
|
+
* - className: The CSS class to apply (defaults to 'blink')
|
|
8
|
+
* - duration: The duration in milliseconds for the effect (defaults to 500ms)
|
|
9
|
+
* @returns A function that can be called to cancel the effect before the duration expires
|
|
10
|
+
*/
|
|
11
|
+
export declare function blink(elements: HTMLElement | HTMLElement[], options?: {
|
|
12
|
+
className?: string;
|
|
13
|
+
duration?: number;
|
|
14
|
+
}): () => void;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Adds a custom CSS class to one or more HTML elements for a specified duration,
|
|
3
|
+
* creating a temporary visual effect.
|
|
4
|
+
*
|
|
5
|
+
* @param elements - A single HTML element or an array of elements to apply the effect to.
|
|
6
|
+
* @param options - Configuration options for the blinking effect:
|
|
7
|
+
* - className: The CSS class to apply (defaults to 'blink')
|
|
8
|
+
* - duration: The duration in milliseconds for the effect (defaults to 500ms)
|
|
9
|
+
* @returns A function that can be called to cancel the effect before the duration expires
|
|
10
|
+
*/
|
|
11
|
+
export function blink(elements, options = {}) {
|
|
12
|
+
const className = options.className || 'blink';
|
|
13
|
+
const duration = options.duration || 500;
|
|
14
|
+
// Convert single element to array for consistent handling
|
|
15
|
+
const elementArray = Array.isArray(elements) ? elements : [elements];
|
|
16
|
+
// Add the class to all elements
|
|
17
|
+
elementArray.forEach(el => el.classList.add(className));
|
|
18
|
+
// Set a single timeout for all elements
|
|
19
|
+
const timeoutId = setTimeout(() => {
|
|
20
|
+
elementArray.forEach(el => el.classList.remove(className));
|
|
21
|
+
}, duration);
|
|
22
|
+
// Return a cancellation function
|
|
23
|
+
return () => {
|
|
24
|
+
clearTimeout(timeoutId);
|
|
25
|
+
elementArray.forEach(el => el.classList.remove(className));
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=blink.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"blink.js","sourceRoot":"","sources":["../../src/utils/blink.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,MAAM,UAAU,KAAK,CAAC,QAAqC,EAAE,UAAqD,EAAE;IAClH,MAAM,SAAS,GAAG,OAAO,CAAC,SAAS,IAAI,OAAO,CAAC;IAC/C,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,IAAI,GAAG,CAAC;IAEzC,0DAA0D;IAC1D,MAAM,YAAY,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC;IAErE,gCAAgC;IAChC,YAAY,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC;IAExD,wCAAwC;IACxC,MAAM,SAAS,GAAG,UAAU,CAAC,GAAG,EAAE;QAChC,YAAY,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,SAAS,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC;IAC7D,CAAC,EAAE,QAAQ,CAAC,CAAC;IAEb,iCAAiC;IACjC,OAAO,GAAG,EAAE;QACV,YAAY,CAAC,SAAS,CAAC,CAAC;QACxB,YAAY,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,SAAS,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC;IAC7D,CAAC,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Singleton class that manages the connection to the server.
|
|
3
|
+
*/
|
|
4
|
+
export declare class Connection {
|
|
5
|
+
private static instance;
|
|
6
|
+
private socket;
|
|
7
|
+
private connection_listeners;
|
|
8
|
+
private token;
|
|
9
|
+
private constructor();
|
|
10
|
+
static get_instance(): Connection;
|
|
11
|
+
/**
|
|
12
|
+
* Connects to the server.
|
|
13
|
+
*
|
|
14
|
+
* @param token Optional token to use for the connection.
|
|
15
|
+
* @param remember_token Whether to remember the token.
|
|
16
|
+
* @param timeout Timeout in milliseconds to wait before reconnecting.
|
|
17
|
+
*/
|
|
18
|
+
connect(token?: string | null, remember_token?: boolean, timeout?: number): void;
|
|
19
|
+
/**
|
|
20
|
+
* Logs in a user.
|
|
21
|
+
*
|
|
22
|
+
* @param username Username.
|
|
23
|
+
* @param password Password.
|
|
24
|
+
* @param remember_token Whether to remember the token.
|
|
25
|
+
* @returns Whether the login was successful.
|
|
26
|
+
*/
|
|
27
|
+
login(username: string, password: string, remember_token?: boolean): Promise<boolean>;
|
|
28
|
+
/**
|
|
29
|
+
* Creates a new user.
|
|
30
|
+
*
|
|
31
|
+
* @param username Username for the new user.
|
|
32
|
+
* @param password Password for the new user.
|
|
33
|
+
* @param personal_data Additional user data to store.
|
|
34
|
+
* @param remember_token Whether to remember the token.
|
|
35
|
+
* @param token Optional token to use for the request.
|
|
36
|
+
* @returns Whether the user creation was successful.
|
|
37
|
+
*/
|
|
38
|
+
create_user(username: string, password: string, personal_data?: Record<string, any>, remember_token?: boolean): Promise<boolean>;
|
|
39
|
+
/**
|
|
40
|
+
* Logs out the user.
|
|
41
|
+
*/
|
|
42
|
+
logout(): void;
|
|
43
|
+
/**
|
|
44
|
+
* Checks whether the WebSocket connection is currently open.
|
|
45
|
+
*
|
|
46
|
+
* @returns {boolean} `true` if the socket exists and its ready state is `WebSocket.OPEN`, otherwise `false`.
|
|
47
|
+
*/
|
|
48
|
+
is_connected(): boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Returns the current token.
|
|
51
|
+
*
|
|
52
|
+
* @returns {string | null} The current token, or `null` if not set.
|
|
53
|
+
*/
|
|
54
|
+
get_token(): string | null;
|
|
55
|
+
/**
|
|
56
|
+
* Adds a connection listener.
|
|
57
|
+
*
|
|
58
|
+
* @param listener Connection listener to add.
|
|
59
|
+
*/
|
|
60
|
+
add_connection_listener(listener: ConnectionListener): void;
|
|
61
|
+
/**
|
|
62
|
+
* Removes a connection listener.
|
|
63
|
+
*
|
|
64
|
+
* @param listener Connection listener to remove.
|
|
65
|
+
*/
|
|
66
|
+
remove_connection_listener(listener: ConnectionListener): void;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Interface that defines the methods that a connection listener must implement.
|
|
70
|
+
*/
|
|
71
|
+
export interface ConnectionListener {
|
|
72
|
+
/**
|
|
73
|
+
* Called when the connection to the server is established.
|
|
74
|
+
*/
|
|
75
|
+
connected(): void;
|
|
76
|
+
/**
|
|
77
|
+
* Called when the user is logged in.
|
|
78
|
+
*
|
|
79
|
+
* @param info Information about the logged-in user.
|
|
80
|
+
*/
|
|
81
|
+
logged_in(info: any): void;
|
|
82
|
+
/**
|
|
83
|
+
* Called when a message is received from the server.
|
|
84
|
+
*
|
|
85
|
+
* @param message Message received from the server.
|
|
86
|
+
*/
|
|
87
|
+
received_message(message: any): void;
|
|
88
|
+
/**
|
|
89
|
+
* Called when the user is logged out.
|
|
90
|
+
*/
|
|
91
|
+
logged_out(): void;
|
|
92
|
+
/**
|
|
93
|
+
* Called when the connection to the server is closed.
|
|
94
|
+
*/
|
|
95
|
+
disconnected(): void;
|
|
96
|
+
/**
|
|
97
|
+
* Called when an error occurs in the connection to the server.
|
|
98
|
+
*
|
|
99
|
+
* @param error Error that occurred.
|
|
100
|
+
*/
|
|
101
|
+
connection_error(error: any): void;
|
|
102
|
+
}
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { Settings } from "./settings";
|
|
11
|
+
/**
|
|
12
|
+
* Singleton class that manages the connection to the server.
|
|
13
|
+
*/
|
|
14
|
+
export class Connection {
|
|
15
|
+
constructor() {
|
|
16
|
+
this.socket = null;
|
|
17
|
+
this.connection_listeners = new Set();
|
|
18
|
+
this.token = null;
|
|
19
|
+
console.debug('localStorage available: ', typeof localStorage !== 'undefined');
|
|
20
|
+
console.debug('localStorage token: ', localStorage.getItem('token'));
|
|
21
|
+
}
|
|
22
|
+
static get_instance() {
|
|
23
|
+
if (!Connection.instance)
|
|
24
|
+
Connection.instance = new Connection();
|
|
25
|
+
return Connection.instance;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Connects to the server.
|
|
29
|
+
*
|
|
30
|
+
* @param token Optional token to use for the connection.
|
|
31
|
+
* @param remember_token Whether to remember the token.
|
|
32
|
+
* @param timeout Timeout in milliseconds to wait before reconnecting.
|
|
33
|
+
*/
|
|
34
|
+
connect(token = null, remember_token = false, timeout = 5000) {
|
|
35
|
+
if (this.socket)
|
|
36
|
+
this.socket.close();
|
|
37
|
+
console.info('Connecting to server: ', Settings.get_instance().get_ws_host());
|
|
38
|
+
this.socket = new WebSocket(Settings.get_instance().get_ws_host());
|
|
39
|
+
this.socket.onopen = () => {
|
|
40
|
+
console.info('Connected to server');
|
|
41
|
+
for (const listener of this.connection_listeners) {
|
|
42
|
+
listener.connected();
|
|
43
|
+
}
|
|
44
|
+
if (token)
|
|
45
|
+
this.socket.send(JSON.stringify({ msg_type: 'login', token }));
|
|
46
|
+
};
|
|
47
|
+
this.socket.onmessage = (event) => {
|
|
48
|
+
console.trace('Received message from server: ', event.data);
|
|
49
|
+
const message = JSON.parse(event.data);
|
|
50
|
+
if (message.msg_type === 'login') {
|
|
51
|
+
this.token = token;
|
|
52
|
+
if (remember_token)
|
|
53
|
+
localStorage.setItem('token', token);
|
|
54
|
+
for (const listener of this.connection_listeners) {
|
|
55
|
+
listener.logged_in(message.personal_data);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
else
|
|
59
|
+
for (const listener of this.connection_listeners) {
|
|
60
|
+
listener.received_message(message);
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
this.socket.onclose = () => {
|
|
64
|
+
console.info('Disconnected from server');
|
|
65
|
+
for (const listener of this.connection_listeners) {
|
|
66
|
+
listener.disconnected();
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
this.socket.onerror = (ev) => {
|
|
70
|
+
console.error('Connection error: ', ev);
|
|
71
|
+
for (const listener of this.connection_listeners) {
|
|
72
|
+
listener.connection_error(ev);
|
|
73
|
+
}
|
|
74
|
+
setTimeout(() => this.connect(token, remember_token, timeout), timeout);
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Logs in a user.
|
|
79
|
+
*
|
|
80
|
+
* @param username Username.
|
|
81
|
+
* @param password Password.
|
|
82
|
+
* @param remember_token Whether to remember the token.
|
|
83
|
+
* @returns Whether the login was successful.
|
|
84
|
+
*/
|
|
85
|
+
login(username_1, password_1) {
|
|
86
|
+
return __awaiter(this, arguments, void 0, function* (username, password, remember_token = false) {
|
|
87
|
+
console.debug('Logging in user: ', username);
|
|
88
|
+
const response = yield fetch(Settings.get_instance().get_host() + '/login', { method: 'POST', headers: { 'content-type': 'application/json' }, body: JSON.stringify({ username: username, password: password }) });
|
|
89
|
+
if (response.ok) { // Login successful
|
|
90
|
+
const data = yield response.json();
|
|
91
|
+
this.connect(data.token, remember_token);
|
|
92
|
+
return true;
|
|
93
|
+
}
|
|
94
|
+
else { // Login failed
|
|
95
|
+
console.error('Login failed: ', response.statusText);
|
|
96
|
+
for (const listener of this.connection_listeners)
|
|
97
|
+
listener.connection_error(new Event(response.statusText));
|
|
98
|
+
return false;
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Creates a new user.
|
|
104
|
+
*
|
|
105
|
+
* @param username Username for the new user.
|
|
106
|
+
* @param password Password for the new user.
|
|
107
|
+
* @param personal_data Additional user data to store.
|
|
108
|
+
* @param remember_token Whether to remember the token.
|
|
109
|
+
* @param token Optional token to use for the request.
|
|
110
|
+
* @returns Whether the user creation was successful.
|
|
111
|
+
*/
|
|
112
|
+
create_user(username_1, password_1) {
|
|
113
|
+
return __awaiter(this, arguments, void 0, function* (username, password, personal_data = {}, remember_token = true) {
|
|
114
|
+
console.debug('Creating new user: ', username);
|
|
115
|
+
const headers = { 'content-type': 'application/json' };
|
|
116
|
+
if (this.token)
|
|
117
|
+
headers['authorization'] = `Bearer ${this.token}`;
|
|
118
|
+
const body = { username, password };
|
|
119
|
+
if (Object.keys(personal_data).length > 0)
|
|
120
|
+
body.user_data = personal_data;
|
|
121
|
+
const response = yield fetch(Settings.get_instance().get_host() + '/users', {
|
|
122
|
+
method: 'POST',
|
|
123
|
+
headers: headers,
|
|
124
|
+
body: JSON.stringify(body)
|
|
125
|
+
});
|
|
126
|
+
if (response.ok) { // User creation successful
|
|
127
|
+
const data = yield response.json();
|
|
128
|
+
this.connect(data.token, remember_token);
|
|
129
|
+
return true;
|
|
130
|
+
}
|
|
131
|
+
else { // User creation failed
|
|
132
|
+
console.error('User creation failed: ', response.statusText);
|
|
133
|
+
for (const listener of this.connection_listeners)
|
|
134
|
+
listener.connection_error(new Event(response.statusText));
|
|
135
|
+
return false;
|
|
136
|
+
}
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Logs out the user.
|
|
141
|
+
*/
|
|
142
|
+
logout() {
|
|
143
|
+
console.debug('Logging out user');
|
|
144
|
+
this.socket.send(JSON.stringify({ msg_type: 'logout' }));
|
|
145
|
+
this.token = null;
|
|
146
|
+
localStorage.removeItem('token');
|
|
147
|
+
for (const listener of this.connection_listeners) {
|
|
148
|
+
listener.logged_out();
|
|
149
|
+
}
|
|
150
|
+
this.socket.close();
|
|
151
|
+
}
|
|
152
|
+
/**
|
|
153
|
+
* Checks whether the WebSocket connection is currently open.
|
|
154
|
+
*
|
|
155
|
+
* @returns {boolean} `true` if the socket exists and its ready state is `WebSocket.OPEN`, otherwise `false`.
|
|
156
|
+
*/
|
|
157
|
+
is_connected() { return this.socket !== null && this.socket.readyState === WebSocket.OPEN; }
|
|
158
|
+
/**
|
|
159
|
+
* Returns the current token.
|
|
160
|
+
*
|
|
161
|
+
* @returns {string | null} The current token, or `null` if not set.
|
|
162
|
+
*/
|
|
163
|
+
get_token() { return this.token; }
|
|
164
|
+
/**
|
|
165
|
+
* Adds a connection listener.
|
|
166
|
+
*
|
|
167
|
+
* @param listener Connection listener to add.
|
|
168
|
+
*/
|
|
169
|
+
add_connection_listener(listener) { this.connection_listeners.add(listener); }
|
|
170
|
+
/**
|
|
171
|
+
* Removes a connection listener.
|
|
172
|
+
*
|
|
173
|
+
* @param listener Connection listener to remove.
|
|
174
|
+
*/
|
|
175
|
+
remove_connection_listener(listener) { this.connection_listeners.delete(listener); }
|
|
176
|
+
}
|
|
177
|
+
//# sourceMappingURL=connection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"connection.js","sourceRoot":"","sources":["../../src/utils/connection.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Manages a group of `Selector` instances, ensuring that only one selector is active (selected) at a time.
|
|
3
|
+
*
|
|
4
|
+
* The `SelectorGroup` class allows you to add or remove selectors, and provides a method to set a specific selector as selected.
|
|
5
|
+
* When a selector is set as selected, all other selectors in the group are automatically unselected.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* const group = new SelectorGroup();
|
|
9
|
+
* group.add_selector(selector1);
|
|
10
|
+
* group.add_selector(selector2);
|
|
11
|
+
* group.set_selected(selector1); // selector1 is selected, selector2 is unselected
|
|
12
|
+
*/
|
|
13
|
+
export declare class SelectorGroup {
|
|
14
|
+
private selectors;
|
|
15
|
+
constructor();
|
|
16
|
+
/**
|
|
17
|
+
* Sets the given selector as the selected one, unselecting all other selectors.
|
|
18
|
+
*
|
|
19
|
+
* Iterates through all selectors managed by this instance. For each selector that is not the one provided,
|
|
20
|
+
* it calls `unselect()`. Finally, it calls `select()` on the provided selector to mark it as selected.
|
|
21
|
+
*
|
|
22
|
+
* @param s - The {@link Selector} instance to be set as selected.
|
|
23
|
+
*/
|
|
24
|
+
set_selected(s: Selector): void;
|
|
25
|
+
/**
|
|
26
|
+
* Adds a selector to the current set of selectors.
|
|
27
|
+
*
|
|
28
|
+
* @param s - The selector to add.
|
|
29
|
+
*/
|
|
30
|
+
add_selector(s: Selector): void;
|
|
31
|
+
/**
|
|
32
|
+
* Removes the specified selector from the collection of selectors.
|
|
33
|
+
*
|
|
34
|
+
* @param s - The selector to be removed.
|
|
35
|
+
*/
|
|
36
|
+
remove_selector(s: Selector): void;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Represents an interface for selectable objects.
|
|
40
|
+
*
|
|
41
|
+
* Implementing classes should provide logic for selecting and unselecting themselves.
|
|
42
|
+
*
|
|
43
|
+
* @remarks
|
|
44
|
+
* This interface can be used to standardize selection behavior across different components or entities.
|
|
45
|
+
*
|
|
46
|
+
* @interface Selector
|
|
47
|
+
*/
|
|
48
|
+
export interface Selector {
|
|
49
|
+
/**
|
|
50
|
+
* Selects the object, marking it as active or highlighted.
|
|
51
|
+
* Implementing classes should define what "selecting" means for them.
|
|
52
|
+
*/
|
|
53
|
+
select(): void;
|
|
54
|
+
/**
|
|
55
|
+
* Unselects the object, marking it as inactive or unhighlighted.
|
|
56
|
+
* Implementing classes should define what "unselecting" means for them.
|
|
57
|
+
*/
|
|
58
|
+
unselect(): void;
|
|
59
|
+
}
|