@operato/layout 1.5.7 → 1.5.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/CHANGELOG.md +18 -0
- package/dist/src/components/ox-split-pane.d.ts +13 -0
- package/dist/src/components/ox-split-pane.js +117 -0
- package/dist/src/components/ox-split-pane.js.map +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -3
- package/src/components/ox-split-pane.ts +113 -0
- package/src/index.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [1.5.9](https://github.com/hatiolab/operato/compare/v1.5.8...v1.5.9) (2023-10-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :bug: Bug Fix
|
|
10
|
+
|
|
11
|
+
* add ox-split-pane in @operato/layout ([15211f1](https://github.com/hatiolab/operato/commit/15211f17cf9125144be915affec6548f8e273461))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### [1.5.8](https://github.com/hatiolab/operato/compare/v1.5.7...v1.5.8) (2023-10-15)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### :bug: Bug Fix
|
|
19
|
+
|
|
20
|
+
* add ox-split-pane in @operato/layout ([fc543e6](https://github.com/hatiolab/operato/commit/fc543e6393f9285e9db410c7adc21490cf142e07))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
### [1.5.7](https://github.com/hatiolab/operato/compare/v1.5.6...v1.5.7) (2023-10-15)
|
|
7
25
|
|
|
8
26
|
**Note:** Version bump only for package @operato/layout
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { LitElement, PropertyValues } from 'lit';
|
|
2
|
+
export declare class OxSplitPane extends LitElement {
|
|
3
|
+
static styles: import("lit").CSSResult;
|
|
4
|
+
direction: string;
|
|
5
|
+
ratio: number;
|
|
6
|
+
resizable: boolean;
|
|
7
|
+
splitter: HTMLDivElement;
|
|
8
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
9
|
+
updated(changes: PropertyValues<this>): Promise<void>;
|
|
10
|
+
startDragging(e: MouseEvent): void;
|
|
11
|
+
drag: (e: MouseEvent) => void;
|
|
12
|
+
stopDragging: (e: MouseEvent) => void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { LitElement, html, css, nothing } from 'lit';
|
|
3
|
+
import { customElement, property, query } from 'lit/decorators.js';
|
|
4
|
+
let OxSplitPane = class OxSplitPane extends LitElement {
|
|
5
|
+
constructor() {
|
|
6
|
+
super(...arguments);
|
|
7
|
+
this.direction = 'row';
|
|
8
|
+
this.ratio = 0.5;
|
|
9
|
+
this.resizable = false;
|
|
10
|
+
this.drag = (e) => {
|
|
11
|
+
e.stopPropagation();
|
|
12
|
+
e.preventDefault();
|
|
13
|
+
const { width, height, left, top } = this.getBoundingClientRect();
|
|
14
|
+
const mouseX = e.clientX - left;
|
|
15
|
+
const mouseY = e.clientY - top;
|
|
16
|
+
if (this.direction == 'row') {
|
|
17
|
+
const totalWidth = this.offsetWidth;
|
|
18
|
+
this.ratio = mouseX / width;
|
|
19
|
+
}
|
|
20
|
+
else {
|
|
21
|
+
const totalHeight = this.offsetHeight;
|
|
22
|
+
this.ratio = mouseY / height;
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
this.stopDragging = (e) => {
|
|
26
|
+
e.stopPropagation();
|
|
27
|
+
e.preventDefault();
|
|
28
|
+
document.removeEventListener('mousemove', this.drag);
|
|
29
|
+
document.removeEventListener('mouseup', this.stopDragging);
|
|
30
|
+
document.body.style.cursor = 'auto';
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
render() {
|
|
34
|
+
return html `
|
|
35
|
+
<slot name="front"></slot>
|
|
36
|
+
${this.resizable
|
|
37
|
+
? html `<div id="splitter" @mousedown=${this.startDragging} direction=${this.direction}></div>`
|
|
38
|
+
: nothing}
|
|
39
|
+
<slot name="back"></slot>
|
|
40
|
+
`;
|
|
41
|
+
}
|
|
42
|
+
async updated(changes) {
|
|
43
|
+
if (changes.has('direction')) {
|
|
44
|
+
this.style.setProperty('--flex-direction', this.direction);
|
|
45
|
+
this.style.setProperty('--cursor-shape', this.direction == 'row' ? 'col-resize' : 'row-resize');
|
|
46
|
+
}
|
|
47
|
+
if (changes.has('ratio')) {
|
|
48
|
+
this.style.setProperty('--split-ratio', String(this.ratio));
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
startDragging(e) {
|
|
52
|
+
e.stopPropagation();
|
|
53
|
+
e.preventDefault();
|
|
54
|
+
document.addEventListener('mousemove', this.drag);
|
|
55
|
+
document.addEventListener('mouseup', this.stopDragging);
|
|
56
|
+
document.body.style.cursor = this.direction == 'row' ? 'col-resize' : 'row-resize';
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
OxSplitPane.styles = css `
|
|
60
|
+
:host {
|
|
61
|
+
display: flex;
|
|
62
|
+
flex-direction: var(--flex-direction, column);
|
|
63
|
+
|
|
64
|
+
width: 100%;
|
|
65
|
+
height: 100%;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
#splitter {
|
|
69
|
+
background-color: #ccc;
|
|
70
|
+
cursor: var(--cursor-shape, col-resize);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#splitter {
|
|
74
|
+
background-color: #ccc;
|
|
75
|
+
cursor: var(--cursor-shape, col-resize);
|
|
76
|
+
color: var(--primary-color, #ccc);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
:host([direction='row']) #splitter {
|
|
80
|
+
height: 100%;
|
|
81
|
+
width: 4px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
:host([direction='column']) #splitter {
|
|
85
|
+
width: 100%;
|
|
86
|
+
height: 4px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
::slotted(*) {
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
slot[name='front']::slotted(*) {
|
|
94
|
+
flex: var(--split-ratio, 0.5);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
slot[name='back']::slotted(*) {
|
|
98
|
+
flex: calc(1 - var(--split-ratio, 0.5));
|
|
99
|
+
}
|
|
100
|
+
`;
|
|
101
|
+
__decorate([
|
|
102
|
+
property({ type: String, attribute: true })
|
|
103
|
+
], OxSplitPane.prototype, "direction", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
property({ type: Number, attribute: true })
|
|
106
|
+
], OxSplitPane.prototype, "ratio", void 0);
|
|
107
|
+
__decorate([
|
|
108
|
+
property({ type: Boolean, attribute: true })
|
|
109
|
+
], OxSplitPane.prototype, "resizable", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
query('#splitter')
|
|
112
|
+
], OxSplitPane.prototype, "splitter", void 0);
|
|
113
|
+
OxSplitPane = __decorate([
|
|
114
|
+
customElement('ox-split-pane')
|
|
115
|
+
], OxSplitPane);
|
|
116
|
+
export { OxSplitPane };
|
|
117
|
+
//# sourceMappingURL=ox-split-pane.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ox-split-pane.js","sourceRoot":"","sources":["../../../src/components/ox-split-pane.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAkB,OAAO,EAAE,MAAM,KAAK,CAAA;AACpE,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAA;AAG3D,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,UAAU;IAApC;;QA4CwC,cAAS,GAAW,KAAK,CAAA;QACzB,UAAK,GAAW,GAAG,CAAA;QAClB,cAAS,GAAY,KAAK,CAAA;QAmCxE,SAAI,GAAG,CAAC,CAAa,EAAE,EAAE;YACvB,CAAC,CAAC,eAAe,EAAE,CAAA;YACnB,CAAC,CAAC,cAAc,EAAE,CAAA;YAElB,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,qBAAqB,EAAE,CAAA;YAEjE,MAAM,MAAM,GAAG,CAAC,CAAC,OAAO,GAAG,IAAI,CAAA;YAC/B,MAAM,MAAM,GAAG,CAAC,CAAC,OAAO,GAAG,GAAG,CAAA;YAE9B,IAAI,IAAI,CAAC,SAAS,IAAI,KAAK,EAAE;gBAC3B,MAAM,UAAU,GAAG,IAAI,CAAC,WAAW,CAAA;gBACnC,IAAI,CAAC,KAAK,GAAG,MAAM,GAAG,KAAK,CAAA;aAC5B;iBAAM;gBACL,MAAM,WAAW,GAAG,IAAI,CAAC,YAAY,CAAA;gBACrC,IAAI,CAAC,KAAK,GAAG,MAAM,GAAG,MAAM,CAAA;aAC7B;QACH,CAAC,CAAA;QAED,iBAAY,GAAG,CAAC,CAAa,EAAE,EAAE;YAC/B,CAAC,CAAC,eAAe,EAAE,CAAA;YACnB,CAAC,CAAC,cAAc,EAAE,CAAA;YAElB,QAAQ,CAAC,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,IAAI,CAAC,CAAA;YACpD,QAAQ,CAAC,mBAAmB,CAAC,SAAS,EAAE,IAAI,CAAC,YAAY,CAAC,CAAA;YAE1D,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAA;QACrC,CAAC,CAAA;IACH,CAAC;IA1DC,MAAM;QACJ,OAAO,IAAI,CAAA;;QAEP,IAAI,CAAC,SAAS;YACd,CAAC,CAAC,IAAI,CAAA,iCAAiC,IAAI,CAAC,aAAa,cAAc,IAAI,CAAC,SAAS,SAAS;YAC9F,CAAC,CAAC,OAAO;;KAEZ,CAAA;IACH,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,OAA6B;QACzC,IAAI,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,EAAE;YAC5B,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,kBAAkB,EAAE,IAAI,CAAC,SAAS,CAAC,CAAA;YAC1D,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,gBAAgB,EAAE,IAAI,CAAC,SAAS,IAAI,KAAK,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,YAAY,CAAC,CAAA;SAChG;QAED,IAAI,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE;YACxB,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,eAAe,EAAE,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;SAC5D;IACH,CAAC;IAED,aAAa,CAAC,CAAa;QACzB,CAAC,CAAC,eAAe,EAAE,CAAA;QACnB,CAAC,CAAC,cAAc,EAAE,CAAA;QAElB,QAAQ,CAAC,gBAAgB,CAAC,WAAW,EAAE,IAAI,CAAC,IAAI,CAAC,CAAA;QACjD,QAAQ,CAAC,gBAAgB,CAAC,SAAS,EAAE,IAAI,CAAC,YAAY,CAAC,CAAA;QAEvD,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,SAAS,IAAI,KAAK,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,YAAY,CAAA;IACpF,CAAC;;AA9EM,kBAAM,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyClB,AAzCY,CAyCZ;AAE4C;IAA5C,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;8CAA0B;AACzB;IAA5C,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;0CAAoB;AAClB;IAA7C,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;8CAA2B;AAEpD;IAAnB,KAAK,CAAC,WAAW,CAAC;6CAA0B;AAhDlC,WAAW;IADvB,aAAa,CAAC,eAAe,CAAC;GAClB,WAAW,CA4GvB","sourcesContent":["import { LitElement, html, css, PropertyValues, nothing } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\n\n@customElement('ox-split-pane')\nexport class OxSplitPane extends LitElement {\n static styles = css`\n :host {\n display: flex;\n flex-direction: var(--flex-direction, column);\n\n width: 100%;\n height: 100%;\n }\n\n #splitter {\n background-color: #ccc;\n cursor: var(--cursor-shape, col-resize);\n }\n\n #splitter {\n background-color: #ccc;\n cursor: var(--cursor-shape, col-resize);\n color: var(--primary-color, #ccc);\n }\n\n :host([direction='row']) #splitter {\n height: 100%;\n width: 4px;\n }\n\n :host([direction='column']) #splitter {\n width: 100%;\n height: 4px;\n }\n\n ::slotted(*) {\n overflow: hidden;\n }\n\n slot[name='front']::slotted(*) {\n flex: var(--split-ratio, 0.5);\n }\n\n slot[name='back']::slotted(*) {\n flex: calc(1 - var(--split-ratio, 0.5));\n }\n `\n\n @property({ type: String, attribute: true }) direction: string = 'row'\n @property({ type: Number, attribute: true }) ratio: number = 0.5\n @property({ type: Boolean, attribute: true }) resizable: boolean = false\n\n @query('#splitter') splitter!: HTMLDivElement\n\n render() {\n return html`\n <slot name=\"front\"></slot>\n ${this.resizable\n ? html`<div id=\"splitter\" @mousedown=${this.startDragging} direction=${this.direction}></div>`\n : nothing}\n <slot name=\"back\"></slot>\n `\n }\n\n async updated(changes: PropertyValues<this>) {\n if (changes.has('direction')) {\n this.style.setProperty('--flex-direction', this.direction)\n this.style.setProperty('--cursor-shape', this.direction == 'row' ? 'col-resize' : 'row-resize')\n }\n\n if (changes.has('ratio')) {\n this.style.setProperty('--split-ratio', String(this.ratio))\n }\n }\n\n startDragging(e: MouseEvent) {\n e.stopPropagation()\n e.preventDefault()\n\n document.addEventListener('mousemove', this.drag)\n document.addEventListener('mouseup', this.stopDragging)\n\n document.body.style.cursor = this.direction == 'row' ? 'col-resize' : 'row-resize'\n }\n\n drag = (e: MouseEvent) => {\n e.stopPropagation()\n e.preventDefault()\n\n const { width, height, left, top } = this.getBoundingClientRect()\n\n const mouseX = e.clientX - left\n const mouseY = e.clientY - top\n\n if (this.direction == 'row') {\n const totalWidth = this.offsetWidth\n this.ratio = mouseX / width\n } else {\n const totalHeight = this.offsetHeight\n this.ratio = mouseY / height\n }\n }\n\n stopDragging = (e: MouseEvent) => {\n e.stopPropagation()\n e.preventDefault()\n\n document.removeEventListener('mousemove', this.drag)\n document.removeEventListener('mouseup', this.stopDragging)\n\n document.body.style.cursor = 'auto'\n }\n}\n"]}
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.js
CHANGED
package/dist/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,CAAA;AAItB,cAAc,2BAA2B,CAAA;AACzC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA;AACvC,cAAc,2BAA2B,CAAA;AACzC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,iCAAiC,CAAA;AAE/C,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA","sourcesContent":["import './initializer'\n\nexport { PopupHandle, PopupOptions } from '@operato/popup'\n\nexport * from './layouts/ox-snack-bar.js'\nexport * from './layouts/ox-header-bar.js'\nexport * from './layouts/ox-nav-bar.js'\nexport * from './layouts/ox-aside-bar.js'\nexport * from './layouts/ox-footer-bar.js'\nexport * from './layouts/ox-page-header-bar.js'\nexport * from './layouts/ox-page-footer-bar.js'\n\nexport * from './actions/layout'\nexport * from './actions/snackbar'\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,eAAe,CAAA;AAItB,cAAc,2BAA2B,CAAA;AACzC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA;AACvC,cAAc,2BAA2B,CAAA;AACzC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,iCAAiC,CAAA;AAE/C,cAAc,kBAAkB,CAAA;AAChC,cAAc,oBAAoB,CAAA;AAElC,cAAc,4BAA4B,CAAA","sourcesContent":["import './initializer'\n\nexport { PopupHandle, PopupOptions } from '@operato/popup'\n\nexport * from './layouts/ox-snack-bar.js'\nexport * from './layouts/ox-header-bar.js'\nexport * from './layouts/ox-nav-bar.js'\nexport * from './layouts/ox-aside-bar.js'\nexport * from './layouts/ox-footer-bar.js'\nexport * from './layouts/ox-page-header-bar.js'\nexport * from './layouts/ox-page-footer-bar.js'\n\nexport * from './actions/layout'\nexport * from './actions/snackbar'\n\nexport * from './components/ox-split-pane'\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"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.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.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/index.d.ts","../../popup/dist/src/ox-popup.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../src/actions/layout.ts","../src/reducers/layout.ts","../src/actions/snackbar.ts","../src/reducers/snackbar.ts","../src/initializer.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../src/layouts/ox-snack-bar.ts","../src/components/ox-resize-splitter.ts","../../../node_modules/lit-html/directives/if-defined.d.ts","../../../node_modules/lit/directives/if-defined.d.ts","../src/layouts/ox-header-bar.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/index.d.ts","../src/layouts/ox-nav-bar.ts","../src/layouts/ox-aside-bar.ts","../src/layouts/ox-footer-bar.ts","../src/layouts/ox-page-header-bar.ts","../src/layouts/ox-page-footer-bar.ts","../src/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"17f2b4d00e42e0cc1dfc3be692a6da5a14a6cb73b87259e6d20ff02bcd6d573f","affectsGlobalScope":true},"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","25436b30271e935128764e9d28f39c2cd02f15e145988103eb6b8593c89880b0","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1","f3ae0703d7a5578aaa0f847acfeba268c93f26003eea6d7f202f5fc54b579720",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"4dca7804ad883893f583e2d0398422cf97b08d2016139f7dbf3e1bd5d351a468","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"b7c5c0d1413bdd3cf9102874530791e48d20d34c1a76b7ffcfaf04063cff14e0","a94bf5b7b5bf3ce3b3f656f4639fe43ab3c03ae3f08f8589f0dd2a222c71fd45","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41",{"version":"99439358c3411317c1a6516d34b2a505f35bd775abff9ccaeb7a0df65d661eb8","signature":"0c16400903650cc73c12a6a0f9243631f8645828a016a0e676cb784b675a452f"},{"version":"82722d14608addd711191e8ba04aae13f9c4dfcc802869691f1447f6f241459d","signature":"239c22b76316eac411d69412a5cc263a82bfd815c872100f50262d9440d6ef20"},{"version":"a76becaaada0ab284c738a1dcbcd37f9db9e8245336233b91bb82aa6dad24ca1","signature":"f4ad8c90859112adabad50932eb0b20aba4befec159b95cea96af6a154759383"},{"version":"0dbba367e039c2ed11185cad0b60a8df09a59eacc78977b76d7576e5a031d151","signature":"479bb2bee3d014b3327c71e804b028781cf1c90f50194852ffbf4724efcb8d1c"},{"version":"c4459e9cc3ac2f71d170af709e9e9e52895dee088354f35c6866fac296bdb7a3","signature":"60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7"},"2a8f0a19a927e83421597c056c90695557142f54ca96358f01eb1f2a5eb228be","d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","356cc1b058e05e07d2acd73bfa87f83a6f4a343450ee375dad232ff4a55d41d8","df286e6b181ed08766bc19cf1a2fddc50bc5d540f233bc1ce4430a3c1c8c8379","f436800c0af503703110c93144fcc7392524636fb4216296411243b29fe0162d","0d5002560b45ce4fd6c4124632f61789e584be0634602486a2ce59541311d153","bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","9f7d0ee33b9f8fa4dc2e9628e0cdf8683104d01de9d3d24f62cd5da014a5bec4","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92",{"version":"e651d3f3e70e6f1dac04953bb762faa1f531f81ddcc5051a4efd39d7a766de7d","signature":"67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762"},{"version":"7a1bc1c6d427a09c400e275c8a9b4e3e2bbe7fb173bc783dc3f06d3af484cba8","signature":"5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013"},"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7",{"version":"b803e880ad0c84b4c292ca521b1d598e527fc3bd44bfaaa0565641964b3a6097","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","33fd0884c97e9999b9dc573334d46af764e6e3d209b92e6283d854d792dc151f",{"version":"12255a2e1602a977eaabc487481960fe2a3e502bb9509d2ca667db105d65c8a7","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"44a86bf0e1dc96bc4c55551878a260fa1bc14f49d1a6a8118ade7adc9aa2e326","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"0938d18a4d9dd2c40aa5f324bc4d10a03fc84c5e32d9d6db16bcb4ae7a828135","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"d1d8e7d50e18c8f5d84a3c9c13579c0d0656814afd31049c7a746cdf7a20cdf1","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"ccee7526c104914637bdb62605527261a0d0fece3d9d6a3793666e2b96dce095","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"9190400fc65c981472fce5b1a66f1cc630110736653193b5feca0a6aa5fa46ab","signature":"429ef858aef648db4c9c52df9862fc207ae0a23438b26bcebb572c33525648c2"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","adda9e3915c6bf15e360356a41d950881a51dbe44f9a6088155836b040820663","b4855526ac5a822d6e0005e4b62ee49c599bf89897e4109135283d660e60291c","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","d70119390aece1794bf4988f10ea750d13455f5286977d35027d43dd2e9841cf",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","ad8848c289c0b633452e58179f46edccd14b5a0fe90ebce411f79ff040b803e0",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"91f8b5abcdff8f9ecb9656b9852878718416fb7700b2c4fad8331e5b97c080bb","59d8f064f86a4a2be03b33c0efcc9e7a268ad27b22f82dce16899f3364f70ba8","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"f49fb15c4aa06b65b0dce4db4584bfd8a9f74644baef1511b404dc95be34af00","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d3f4c342fb62f348f25f54b473b0ab7371828cbf637134194fa9cdf04856f87b",{"version":"c992af0bb279ea7d18c12df03c2001042cdd7bc165bb3d9a3561a3f3bcf4ef49","affectsGlobalScope":true}],"root":[[98,102],115,116,119,[128,133]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[213],[63,213],[103,213],[63,103,213],[63,103,111,213],[61,62,213],[70,79,80,81,213],[70,75,87,88,89,91,213],[70,92,213],[70,213],[70,80,82,84,85,213],[70,86,213],[80,213],[81,83,213],[79,84,213],[134,213],[170,213],[171,176,204,213],[172,183,184,191,201,212,213],[172,173,183,191,213],[174,213],[175,176,184,192,213],[176,201,209,213],[177,179,183,191,213],[178,213],[179,180,213],[183,213],[181,183,213],[170,183,213],[183,184,185,201,212,213],[183,184,185,198,201,204,213],[168,213,217],[179,183,186,191,201,212,213],[183,184,186,187,191,201,209,212,213],[186,188,201,209,212,213],[134,135,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219],[183,189,213],[190,212,213,217],[179,183,191,201,213],[192,213],[193,213],[170,194,213],[195,211,213,217],[196,213],[197,213],[183,198,199,213],[198,200,213,215],[171,183,201,202,203,204,213],[171,201,203,213],[201,202,213],[204,213],[205,213],[170,201,213],[183,207,208,213],[207,208,213],[176,191,201,209,213],[210,213],[191,211,213],[171,186,197,212,213],[176,213],[201,213,214],[190,213,215],[213,216],[171,176,183,185,194,201,212,213,215,217],[201,213,218],[64,213],[63,67,213],[67,213],[66,67,213],[65,66,213],[104,105,106,107,108,109,110,111,112,213],[90,213],[117,213],[63,67,68,69,213],[53,213],[145,149,212,213],[145,201,212,213],[140,213],[142,145,209,212,213],[191,209,213],[213,220],[140,213,220],[142,145,191,212,213],[137,138,141,144,171,183,201,212,213],[137,143,213],[141,145,171,204,212,213,220],[171,213,220],[161,171,213,220],[139,140,213,220],[145,213],[139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,213],[145,152,153,213],[143,145,153,154,213],[144,213],[137,140,145,213],[145,149,153,154,213],[149,213],[143,145,148,212,213],[137,142,143,145,149,152,213],[171,201,213],[140,145,161,171,213,217,220],[46,70,73,97,213],[46,53,213],[46,70,113,213],[46,97,98,100,102,115,119,128,129,130,131,132,213],[46,73,98,99,100,101,213],[46,70,95,98,102,113,114,116,118,127,213],[46,70,95,98,102,113,114,116,118,213],[46,70,75,93,100,102,113,114,213],[46,98,213],[46,100,213],[74,76,77,78,94,96,213],[70,95,213],[67,70,75,213],[67,70,74,75,213],[67,70,74,213],[67,70,77,213],[67,70,213],[67,70,93,213],[56,57,58,59,213],[52,55,60,71,72,213],[53,54,213],[47,48,49,50,51,213],[48,49,213],[47,48,50,213],[120,121,122,123,124,125,126,213],[70,97],[53],[67,70],[97,98,100,102,115,119,128,129,130,131,132],[73],[95,116],[75,93],[98],[100]],"referencedMap":[[61,1],[103,2],[104,3],[107,4],[105,4],[109,4],[112,5],[111,1],[110,4],[108,4],[106,3],[62,1],[63,6],[79,1],[81,1],[88,1],[82,7],[80,1],[92,8],[93,9],[75,10],[86,11],[87,12],[89,13],[84,14],[85,15],[83,1],[221,1],[134,16],[135,16],[170,17],[171,18],[172,19],[173,20],[174,21],[175,22],[176,23],[177,24],[178,25],[179,26],[180,26],[182,27],[181,28],[183,29],[184,30],[185,31],[169,32],[219,1],[186,33],[187,34],[188,35],[220,36],[189,37],[190,38],[191,39],[192,40],[193,41],[194,42],[195,43],[196,44],[197,45],[198,46],[199,46],[200,47],[201,48],[203,49],[202,50],[204,51],[205,52],[206,53],[207,54],[208,55],[209,56],[210,57],[211,58],[212,59],[213,60],[214,61],[215,62],[216,63],[217,64],[218,65],[65,66],[64,1],[136,1],[68,67],[66,68],[90,69],[117,68],[69,1],[67,70],[113,71],[91,72],[118,73],[70,74],[114,75],[54,75],[53,1],[46,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[152,76],[159,77],[151,76],[166,78],[143,79],[142,80],[165,81],[160,82],[163,83],[145,84],[144,85],[140,86],[139,87],[162,88],[141,89],[146,90],[147,1],[150,90],[137,1],[168,91],[167,90],[154,92],[155,93],[157,94],[153,95],[156,96],[161,81],[148,97],[149,98],[158,99],[138,100],[164,101],[98,102],[100,103],[116,104],[133,105],[102,106],[129,107],[130,108],[119,108],[128,107],[132,108],[131,108],[115,109],[99,110],[101,111],[97,112],[96,113],[95,114],[76,115],[77,116],[78,117],[74,118],[94,119],[56,1],[58,1],[59,1],[60,120],[57,1],[71,10],[73,121],[72,1],[55,122],[47,1],[52,123],[50,124],[49,125],[51,1],[48,1],[126,10],[124,1],[125,10],[120,10],[127,126],[121,10],[122,10],[123,10]],"exportedModulesMap":[[61,1],[103,2],[104,3],[107,4],[105,4],[109,4],[112,5],[111,1],[110,4],[108,4],[106,3],[62,1],[63,6],[79,1],[81,1],[88,1],[82,7],[80,1],[92,8],[93,9],[75,10],[86,11],[87,12],[89,13],[84,14],[85,15],[83,1],[221,1],[134,16],[135,16],[170,17],[171,18],[172,19],[173,20],[174,21],[175,22],[176,23],[177,24],[178,25],[179,26],[180,26],[182,27],[181,28],[183,29],[184,30],[185,31],[169,32],[219,1],[186,33],[187,34],[188,35],[220,36],[189,37],[190,38],[191,39],[192,40],[193,41],[194,42],[195,43],[196,44],[197,45],[198,46],[199,46],[200,47],[201,48],[203,49],[202,50],[204,51],[205,52],[206,53],[207,54],[208,55],[209,56],[210,57],[211,58],[212,59],[213,60],[214,61],[215,62],[216,63],[217,64],[218,65],[65,66],[64,1],[136,1],[68,67],[66,68],[90,69],[117,68],[69,1],[67,70],[113,71],[91,72],[118,73],[70,74],[114,75],[54,75],[53,1],[46,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[152,76],[159,77],[151,76],[166,78],[143,79],[142,80],[165,81],[160,82],[163,83],[145,84],[144,85],[140,86],[139,87],[162,88],[141,89],[146,90],[147,1],[150,90],[137,1],[168,91],[167,90],[154,92],[155,93],[157,94],[153,95],[156,96],[161,81],[148,97],[149,98],[158,99],[138,100],[164,101],[98,127],[100,128],[116,129],[133,130],[102,131],[129,132],[130,132],[119,132],[128,132],[132,132],[131,132],[115,133],[99,134],[101,135],[97,112],[96,113],[95,114],[76,115],[77,116],[78,117],[74,118],[94,119],[56,1],[58,1],[59,1],[60,120],[57,1],[71,10],[73,121],[72,1],[55,122],[47,1],[52,123],[50,124],[49,125],[51,1],[48,1],[126,10],[124,1],[125,10],[120,10],[127,126],[121,10],[122,10],[123,10]],"semanticDiagnosticsPerFile":[61,103,104,107,105,109,112,111,110,108,106,62,63,79,81,88,82,80,92,93,75,86,87,89,84,85,83,221,134,135,170,171,172,173,174,175,176,177,178,179,180,182,181,183,184,185,169,219,186,187,188,220,189,190,191,192,193,194,195,196,197,198,199,200,201,203,202,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,65,64,136,68,66,90,117,69,67,113,91,118,70,114,54,53,46,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,152,159,151,166,143,142,165,160,163,145,144,140,139,162,141,146,147,150,137,168,167,154,155,157,153,156,161,148,149,158,138,164,98,100,116,133,102,129,130,119,128,132,131,115,99,101,97,96,95,76,77,78,74,94,56,58,59,60,57,71,73,72,55,47,52,50,49,51,48,126,124,125,120,127,121,122,123]},"version":"5.2.2"}
|
|
1
|
+
{"program":{"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.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.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.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/index.d.ts","../../popup/dist/src/ox-popup.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../src/actions/layout.ts","../src/reducers/layout.ts","../src/actions/snackbar.ts","../src/reducers/snackbar.ts","../src/initializer.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../src/layouts/ox-snack-bar.ts","../src/components/ox-resize-splitter.ts","../../../node_modules/lit-html/directives/if-defined.d.ts","../../../node_modules/lit/directives/if-defined.d.ts","../src/layouts/ox-header-bar.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/index.d.ts","../src/layouts/ox-nav-bar.ts","../src/layouts/ox-aside-bar.ts","../src/layouts/ox-footer-bar.ts","../src/layouts/ox-page-header-bar.ts","../src/layouts/ox-page-footer-bar.ts","../src/components/ox-split-pane.ts","../src/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"2ac9cdcfb8f8875c18d14ec5796a8b029c426f73ad6dc3ffb580c228b58d1c44","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"0075fa5ceda385bcdf3488e37786b5a33be730e8bc4aa3cf1e78c63891752ce8","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"09226e53d1cfda217317074a97724da3e71e2c545e18774484b61562afc53cd2","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"8b41361862022eb72fcc8a7f34680ac842aca802cf4bc1f915e8c620c9ce4331","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"f35a831e4f0fe3b3697f4a0fe0e3caa7624c92b78afbecaf142c0f93abfaf379","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"17f2b4d00e42e0cc1dfc3be692a6da5a14a6cb73b87259e6d20ff02bcd6d573f","affectsGlobalScope":true},"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","25436b30271e935128764e9d28f39c2cd02f15e145988103eb6b8593c89880b0","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1","f3ae0703d7a5578aaa0f847acfeba268c93f26003eea6d7f202f5fc54b579720",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"4dca7804ad883893f583e2d0398422cf97b08d2016139f7dbf3e1bd5d351a468","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"b7c5c0d1413bdd3cf9102874530791e48d20d34c1a76b7ffcfaf04063cff14e0","a94bf5b7b5bf3ce3b3f656f4639fe43ab3c03ae3f08f8589f0dd2a222c71fd45","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41",{"version":"99439358c3411317c1a6516d34b2a505f35bd775abff9ccaeb7a0df65d661eb8","signature":"0c16400903650cc73c12a6a0f9243631f8645828a016a0e676cb784b675a452f"},{"version":"82722d14608addd711191e8ba04aae13f9c4dfcc802869691f1447f6f241459d","signature":"239c22b76316eac411d69412a5cc263a82bfd815c872100f50262d9440d6ef20"},{"version":"a76becaaada0ab284c738a1dcbcd37f9db9e8245336233b91bb82aa6dad24ca1","signature":"f4ad8c90859112adabad50932eb0b20aba4befec159b95cea96af6a154759383"},{"version":"0dbba367e039c2ed11185cad0b60a8df09a59eacc78977b76d7576e5a031d151","signature":"479bb2bee3d014b3327c71e804b028781cf1c90f50194852ffbf4724efcb8d1c"},{"version":"c4459e9cc3ac2f71d170af709e9e9e52895dee088354f35c6866fac296bdb7a3","signature":"60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7"},"2a8f0a19a927e83421597c056c90695557142f54ca96358f01eb1f2a5eb228be","d08415b3d6d7fd153ba6e7bf7707ffc57f3c6ad85730ea63544756610b4350c6","411f23da7a63c3d3fd4860c41a458e8df239776fd5d9cd36dd3ad6be92afccbd","6ada3e065916c0ef2dbc9bc0f9b5d59afb25d9176f81fa2c8993a536924140c6","356cc1b058e05e07d2acd73bfa87f83a6f4a343450ee375dad232ff4a55d41d8","df286e6b181ed08766bc19cf1a2fddc50bc5d540f233bc1ce4430a3c1c8c8379","f436800c0af503703110c93144fcc7392524636fb4216296411243b29fe0162d","0d5002560b45ce4fd6c4124632f61789e584be0634602486a2ce59541311d153","bbe13c947d7d6c3426e0e5815e2b3464fa03d34a4bf47298c43b9237cf59555b","9f7d0ee33b9f8fa4dc2e9628e0cdf8683104d01de9d3d24f62cd5da014a5bec4","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea","23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92",{"version":"e651d3f3e70e6f1dac04953bb762faa1f531f81ddcc5051a4efd39d7a766de7d","signature":"67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762"},{"version":"7a1bc1c6d427a09c400e275c8a9b4e3e2bbe7fb173bc783dc3f06d3af484cba8","signature":"5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013"},"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","2ae64cd7b6e760496069ee3b496c64700c956a0620740e1ef52b163824859db7",{"version":"b803e880ad0c84b4c292ca521b1d598e527fc3bd44bfaaa0565641964b3a6097","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},"cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","33fd0884c97e9999b9dc573334d46af764e6e3d209b92e6283d854d792dc151f",{"version":"12255a2e1602a977eaabc487481960fe2a3e502bb9509d2ca667db105d65c8a7","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"44a86bf0e1dc96bc4c55551878a260fa1bc14f49d1a6a8118ade7adc9aa2e326","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"0938d18a4d9dd2c40aa5f324bc4d10a03fc84c5e32d9d6db16bcb4ae7a828135","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"d1d8e7d50e18c8f5d84a3c9c13579c0d0656814afd31049c7a746cdf7a20cdf1","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"ccee7526c104914637bdb62605527261a0d0fece3d9d6a3793666e2b96dce095","signature":"9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5"},{"version":"d0087c7ca3dfbee2ae09fd4be862bd705f1ffc78993fd05ca1f7f3ee81811ab9","signature":"86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63"},{"version":"e7cd899cedd89509c2b752eafe0a81ba664b54c4ee1c2f25260a35cb14b27d8d","signature":"9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","adda9e3915c6bf15e360356a41d950881a51dbe44f9a6088155836b040820663","b4855526ac5a822d6e0005e4b62ee49c599bf89897e4109135283d660e60291c","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","d70119390aece1794bf4988f10ea750d13455f5286977d35027d43dd2e9841cf",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","ad8848c289c0b633452e58179f46edccd14b5a0fe90ebce411f79ff040b803e0",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"91f8b5abcdff8f9ecb9656b9852878718416fb7700b2c4fad8331e5b97c080bb","59d8f064f86a4a2be03b33c0efcc9e7a268ad27b22f82dce16899f3364f70ba8","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"f49fb15c4aa06b65b0dce4db4584bfd8a9f74644baef1511b404dc95be34af00","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d3f4c342fb62f348f25f54b473b0ab7371828cbf637134194fa9cdf04856f87b",{"version":"c992af0bb279ea7d18c12df03c2001042cdd7bc165bb3d9a3561a3f3bcf4ef49","affectsGlobalScope":true}],"root":[[98,102],115,116,119,[128,134]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[214],[63,214],[103,214],[63,103,214],[63,103,111,214],[61,62,214],[70,79,80,81,214],[70,75,87,88,89,91,214],[70,92,214],[70,214],[70,80,82,84,85,214],[70,86,214],[80,214],[81,83,214],[79,84,214],[135,214],[171,214],[172,177,205,214],[173,184,185,192,202,213,214],[173,174,184,192,214],[175,214],[176,177,185,193,214],[177,202,210,214],[178,180,184,192,214],[179,214],[180,181,214],[184,214],[182,184,214],[171,184,214],[184,185,186,202,213,214],[184,185,186,199,202,205,214],[169,214,218],[180,184,187,192,202,213,214],[184,185,187,188,192,202,210,213,214],[187,189,202,210,213,214],[135,136,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220],[184,190,214],[191,213,214,218],[180,184,192,202,214],[193,214],[194,214],[171,195,214],[196,212,214,218],[197,214],[198,214],[184,199,200,214],[199,201,214,216],[172,184,202,203,204,205,214],[172,202,204,214],[202,203,214],[205,214],[206,214],[171,202,214],[184,208,209,214],[208,209,214],[177,192,202,210,214],[211,214],[192,212,214],[172,187,198,213,214],[177,214],[202,214,215],[191,214,216],[214,217],[172,177,184,186,195,202,213,214,216,218],[202,214,219],[64,214],[63,67,214],[67,214],[66,67,214],[65,66,214],[104,105,106,107,108,109,110,111,112,214],[90,214],[117,214],[63,67,68,69,214],[53,214],[146,150,213,214],[146,202,213,214],[141,214],[143,146,210,213,214],[192,210,214],[214,221],[141,214,221],[143,146,192,213,214],[138,139,142,145,172,184,202,213,214],[138,144,214],[142,146,172,205,213,214,221],[172,214,221],[162,172,214,221],[140,141,214,221],[146,214],[140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167,168,214],[146,153,154,214],[144,146,154,155,214],[145,214],[138,141,146,214],[146,150,154,155,214],[150,214],[144,146,149,213,214],[138,143,144,146,150,153,214],[172,202,214],[141,146,162,172,214,218,221],[46,70,73,97,214],[46,53,214],[46,70,113,214],[46,97,98,100,102,115,119,128,129,130,131,132,133,214],[46,73,98,99,100,101,214],[46,70,95,98,102,113,114,116,118,127,214],[46,70,95,98,102,113,114,116,118,214],[46,70,75,93,100,102,113,114,214],[46,98,214],[46,100,214],[74,76,77,78,94,96,214],[70,95,214],[67,70,75,214],[67,70,74,75,214],[67,70,74,214],[67,70,77,214],[67,70,214],[67,70,93,214],[56,57,58,59,214],[52,55,60,71,72,214],[53,54,214],[47,48,49,50,51,214],[48,49,214],[47,48,50,214],[120,121,122,123,124,125,126,214],[70,97],[53],[67,70],[97,98,100,102,115,119,128,129,130,131,132,133],[73],[95,116],[75,93],[98],[100]],"referencedMap":[[61,1],[103,2],[104,3],[107,4],[105,4],[109,4],[112,5],[111,1],[110,4],[108,4],[106,3],[62,1],[63,6],[79,1],[81,1],[88,1],[82,7],[80,1],[92,8],[93,9],[75,10],[86,11],[87,12],[89,13],[84,14],[85,15],[83,1],[222,1],[135,16],[136,16],[171,17],[172,18],[173,19],[174,20],[175,21],[176,22],[177,23],[178,24],[179,25],[180,26],[181,26],[183,27],[182,28],[184,29],[185,30],[186,31],[170,32],[220,1],[187,33],[188,34],[189,35],[221,36],[190,37],[191,38],[192,39],[193,40],[194,41],[195,42],[196,43],[197,44],[198,45],[199,46],[200,46],[201,47],[202,48],[204,49],[203,50],[205,51],[206,52],[207,53],[208,54],[209,55],[210,56],[211,57],[212,58],[213,59],[214,60],[215,61],[216,62],[217,63],[218,64],[219,65],[65,66],[64,1],[137,1],[68,67],[66,68],[90,69],[117,68],[69,1],[67,70],[113,71],[91,72],[118,73],[70,74],[114,75],[54,75],[53,1],[46,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[153,76],[160,77],[152,76],[167,78],[144,79],[143,80],[166,81],[161,82],[164,83],[146,84],[145,85],[141,86],[140,87],[163,88],[142,89],[147,90],[148,1],[151,90],[138,1],[169,91],[168,90],[155,92],[156,93],[158,94],[154,95],[157,96],[162,81],[149,97],[150,98],[159,99],[139,100],[165,101],[98,102],[100,103],[116,104],[133,104],[134,105],[102,106],[129,107],[130,108],[119,108],[128,107],[132,108],[131,108],[115,109],[99,110],[101,111],[97,112],[96,113],[95,114],[76,115],[77,116],[78,117],[74,118],[94,119],[56,1],[58,1],[59,1],[60,120],[57,1],[71,10],[73,121],[72,1],[55,122],[47,1],[52,123],[50,124],[49,125],[51,1],[48,1],[126,10],[124,1],[125,10],[120,10],[127,126],[121,10],[122,10],[123,10]],"exportedModulesMap":[[61,1],[103,2],[104,3],[107,4],[105,4],[109,4],[112,5],[111,1],[110,4],[108,4],[106,3],[62,1],[63,6],[79,1],[81,1],[88,1],[82,7],[80,1],[92,8],[93,9],[75,10],[86,11],[87,12],[89,13],[84,14],[85,15],[83,1],[222,1],[135,16],[136,16],[171,17],[172,18],[173,19],[174,20],[175,21],[176,22],[177,23],[178,24],[179,25],[180,26],[181,26],[183,27],[182,28],[184,29],[185,30],[186,31],[170,32],[220,1],[187,33],[188,34],[189,35],[221,36],[190,37],[191,38],[192,39],[193,40],[194,41],[195,42],[196,43],[197,44],[198,45],[199,46],[200,46],[201,47],[202,48],[204,49],[203,50],[205,51],[206,52],[207,53],[208,54],[209,55],[210,56],[211,57],[212,58],[213,59],[214,60],[215,61],[216,62],[217,63],[218,64],[219,65],[65,66],[64,1],[137,1],[68,67],[66,68],[90,69],[117,68],[69,1],[67,70],[113,71],[91,72],[118,73],[70,74],[114,75],[54,75],[53,1],[46,1],[44,1],[45,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[19,1],[23,1],[20,1],[21,1],[22,1],[24,1],[25,1],[26,1],[5,1],[27,1],[28,1],[29,1],[30,1],[6,1],[34,1],[31,1],[32,1],[33,1],[35,1],[7,1],[36,1],[41,1],[42,1],[37,1],[38,1],[39,1],[40,1],[1,1],[43,1],[153,76],[160,77],[152,76],[167,78],[144,79],[143,80],[166,81],[161,82],[164,83],[146,84],[145,85],[141,86],[140,87],[163,88],[142,89],[147,90],[148,1],[151,90],[138,1],[169,91],[168,90],[155,92],[156,93],[158,94],[154,95],[157,96],[162,81],[149,97],[150,98],[159,99],[139,100],[165,101],[98,127],[100,128],[116,129],[133,129],[134,130],[102,131],[129,132],[130,132],[119,132],[128,132],[132,132],[131,132],[115,133],[99,134],[101,135],[97,112],[96,113],[95,114],[76,115],[77,116],[78,117],[74,118],[94,119],[56,1],[58,1],[59,1],[60,120],[57,1],[71,10],[73,121],[72,1],[55,122],[47,1],[52,123],[50,124],[49,125],[51,1],[48,1],[126,10],[124,1],[125,10],[120,10],[127,126],[121,10],[122,10],[123,10]],"semanticDiagnosticsPerFile":[61,103,104,107,105,109,112,111,110,108,106,62,63,79,81,88,82,80,92,93,75,86,87,89,84,85,83,222,135,136,171,172,173,174,175,176,177,178,179,180,181,183,182,184,185,186,170,220,187,188,189,221,190,191,192,193,194,195,196,197,198,199,200,201,202,204,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,65,64,137,68,66,90,117,69,67,113,91,118,70,114,54,53,46,44,45,8,10,9,2,11,12,13,14,15,16,17,18,3,4,19,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,153,160,152,167,144,143,166,161,164,146,145,141,140,163,142,147,148,151,138,169,168,155,156,158,154,157,162,149,150,159,139,165,98,100,116,133,134,102,129,130,119,128,132,131,115,99,101,97,96,95,76,77,78,74,94,56,58,59,60,57,71,73,72,55,47,52,50,49,51,48,126,124,125,120,127,121,122,123]},"version":"5.2.2"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/layout",
|
|
3
3
|
"description": "Webcomponent layout following open-wc recommendations",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "1.5.
|
|
5
|
+
"version": "1.5.9",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"./ox-header-bar.js": "./dist/src/layouts/ox-header-bar.js",
|
|
12
12
|
"./ox-nav-bar.js": "./dist/src/layouts/ox-nav-bar.js",
|
|
13
13
|
"./ox-aside-bar.js": "./dist/src/layouts/ox-aside-bar.js",
|
|
14
|
-
"./ox-footer-bar.js": "./dist/src/layouts/ox-footer-bar.js"
|
|
14
|
+
"./ox-footer-bar.js": "./dist/src/layouts/ox-footer-bar.js",
|
|
15
|
+
"./ox-split-pane.js": "./dist/src/components/ox-split-pane.js"
|
|
15
16
|
},
|
|
16
17
|
"typesVersions": {
|
|
17
18
|
"*": {
|
|
@@ -29,6 +30,9 @@
|
|
|
29
30
|
],
|
|
30
31
|
"ox-footer-bar.js": [
|
|
31
32
|
"dist/src/layouts/ox-footer-bar.d.ts"
|
|
33
|
+
],
|
|
34
|
+
"ox-split-pane.js": [
|
|
35
|
+
"dist/src/components/ox-split-pane.d.ts"
|
|
32
36
|
]
|
|
33
37
|
}
|
|
34
38
|
},
|
|
@@ -96,5 +100,5 @@
|
|
|
96
100
|
"prettier --write"
|
|
97
101
|
]
|
|
98
102
|
},
|
|
99
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "6c723b462bab123e54a03922482a0700a81c8a8b"
|
|
100
104
|
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { LitElement, html, css, PropertyValues, nothing } from 'lit'
|
|
2
|
+
import { customElement, property, query } from 'lit/decorators.js'
|
|
3
|
+
|
|
4
|
+
@customElement('ox-split-pane')
|
|
5
|
+
export class OxSplitPane extends LitElement {
|
|
6
|
+
static styles = css`
|
|
7
|
+
:host {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: var(--flex-direction, column);
|
|
10
|
+
|
|
11
|
+
width: 100%;
|
|
12
|
+
height: 100%;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#splitter {
|
|
16
|
+
background-color: #ccc;
|
|
17
|
+
cursor: var(--cursor-shape, col-resize);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
#splitter {
|
|
21
|
+
background-color: #ccc;
|
|
22
|
+
cursor: var(--cursor-shape, col-resize);
|
|
23
|
+
color: var(--primary-color, #ccc);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
:host([direction='row']) #splitter {
|
|
27
|
+
height: 100%;
|
|
28
|
+
width: 4px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
:host([direction='column']) #splitter {
|
|
32
|
+
width: 100%;
|
|
33
|
+
height: 4px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
::slotted(*) {
|
|
37
|
+
overflow: hidden;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
slot[name='front']::slotted(*) {
|
|
41
|
+
flex: var(--split-ratio, 0.5);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
slot[name='back']::slotted(*) {
|
|
45
|
+
flex: calc(1 - var(--split-ratio, 0.5));
|
|
46
|
+
}
|
|
47
|
+
`
|
|
48
|
+
|
|
49
|
+
@property({ type: String, attribute: true }) direction: string = 'row'
|
|
50
|
+
@property({ type: Number, attribute: true }) ratio: number = 0.5
|
|
51
|
+
@property({ type: Boolean, attribute: true }) resizable: boolean = false
|
|
52
|
+
|
|
53
|
+
@query('#splitter') splitter!: HTMLDivElement
|
|
54
|
+
|
|
55
|
+
render() {
|
|
56
|
+
return html`
|
|
57
|
+
<slot name="front"></slot>
|
|
58
|
+
${this.resizable
|
|
59
|
+
? html`<div id="splitter" @mousedown=${this.startDragging} direction=${this.direction}></div>`
|
|
60
|
+
: nothing}
|
|
61
|
+
<slot name="back"></slot>
|
|
62
|
+
`
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
async updated(changes: PropertyValues<this>) {
|
|
66
|
+
if (changes.has('direction')) {
|
|
67
|
+
this.style.setProperty('--flex-direction', this.direction)
|
|
68
|
+
this.style.setProperty('--cursor-shape', this.direction == 'row' ? 'col-resize' : 'row-resize')
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (changes.has('ratio')) {
|
|
72
|
+
this.style.setProperty('--split-ratio', String(this.ratio))
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
startDragging(e: MouseEvent) {
|
|
77
|
+
e.stopPropagation()
|
|
78
|
+
e.preventDefault()
|
|
79
|
+
|
|
80
|
+
document.addEventListener('mousemove', this.drag)
|
|
81
|
+
document.addEventListener('mouseup', this.stopDragging)
|
|
82
|
+
|
|
83
|
+
document.body.style.cursor = this.direction == 'row' ? 'col-resize' : 'row-resize'
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
drag = (e: MouseEvent) => {
|
|
87
|
+
e.stopPropagation()
|
|
88
|
+
e.preventDefault()
|
|
89
|
+
|
|
90
|
+
const { width, height, left, top } = this.getBoundingClientRect()
|
|
91
|
+
|
|
92
|
+
const mouseX = e.clientX - left
|
|
93
|
+
const mouseY = e.clientY - top
|
|
94
|
+
|
|
95
|
+
if (this.direction == 'row') {
|
|
96
|
+
const totalWidth = this.offsetWidth
|
|
97
|
+
this.ratio = mouseX / width
|
|
98
|
+
} else {
|
|
99
|
+
const totalHeight = this.offsetHeight
|
|
100
|
+
this.ratio = mouseY / height
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
stopDragging = (e: MouseEvent) => {
|
|
105
|
+
e.stopPropagation()
|
|
106
|
+
e.preventDefault()
|
|
107
|
+
|
|
108
|
+
document.removeEventListener('mousemove', this.drag)
|
|
109
|
+
document.removeEventListener('mouseup', this.stopDragging)
|
|
110
|
+
|
|
111
|
+
document.body.style.cursor = 'auto'
|
|
112
|
+
}
|
|
113
|
+
}
|