@things-factory/apptool-ui 6.1.68 → 6.1.71
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/client/layout/page-mdibar.ts +142 -43
- package/dist-client/layout/page-mdibar.js +132 -38
- package/dist-client/layout/page-mdibar.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/translations/en.json +1 -0
- package/translations/ja.json +1 -0
- package/translations/ko.json +1 -0
- package/translations/ms.json +1 -0
- package/translations/zh.json +1 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import '@material/mwc-icon'
|
|
2
2
|
|
|
3
3
|
import { css, html, LitElement } from 'lit'
|
|
4
|
-
import { customElement, state } from 'lit/decorators.js'
|
|
4
|
+
import { customElement, query, state } from 'lit/decorators.js'
|
|
5
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
6
|
|
|
7
|
-
import {
|
|
7
|
+
import { store, route as ROUTE, PageView } from '@operato/shell'
|
|
8
|
+
import { i18next } from '@operato/i18n'
|
|
8
9
|
|
|
9
10
|
@customElement('page-mdibar')
|
|
10
11
|
class PageMDIBar extends connect(store)(LitElement) {
|
|
@@ -15,88 +16,164 @@ class PageMDIBar extends connect(store)(LitElement) {
|
|
|
15
16
|
background-color: var(--main-section-background-color);
|
|
16
17
|
color: var(--mdibar-color, rgba(0, 0, 0, 0.7));
|
|
17
18
|
font-size: var(--fontsize-small);
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
align-items: stretch;
|
|
18
21
|
}
|
|
19
22
|
|
|
20
23
|
div {
|
|
24
|
+
box-sizing: border-box;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
div[routes] {
|
|
28
|
+
flex: 1;
|
|
29
|
+
|
|
30
|
+
display: flex;
|
|
31
|
+
overflow: hidden;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
div[route] {
|
|
21
35
|
display: inline-block;
|
|
22
36
|
position: relative;
|
|
23
|
-
|
|
24
|
-
|
|
37
|
+
min-width: var(--mdibar-min-width, 100px);
|
|
38
|
+
max-width: var(--mdibar-max-width, 150px);
|
|
39
|
+
padding: var(--mdibar-padding, 3px 22px 1px 7px);
|
|
25
40
|
border-right: var(--border-dark-color);
|
|
41
|
+
border-top: var(--border-dark-color);
|
|
26
42
|
border-bottom: var(--border-dark-color);
|
|
27
43
|
white-space: nowrap;
|
|
28
44
|
overflow: hidden;
|
|
29
45
|
text-overflow: ellipsis;
|
|
46
|
+
cursor: pointer;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
div[arrows] {
|
|
50
|
+
display: flex;
|
|
51
|
+
border: var(--border-dark-color);
|
|
52
|
+
align-items: center;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
div[arrows] * {
|
|
56
|
+
opacity: 0.8;
|
|
57
|
+
font-size: var(--mdibar-icon-size, 24px);
|
|
58
|
+
flex: 1;
|
|
30
59
|
}
|
|
31
60
|
|
|
32
61
|
mwc-icon {
|
|
33
|
-
position: absolute;
|
|
34
|
-
right: 2px;
|
|
35
|
-
top: 3px;
|
|
36
|
-
margin-left: var(--margin-narrow);
|
|
37
62
|
font-size: var(--mdibar-icon-size, 18px);
|
|
38
63
|
opacity: 0.5;
|
|
39
64
|
}
|
|
65
|
+
|
|
40
66
|
mwc-icon:hover {
|
|
41
67
|
opacity: 0.8;
|
|
42
68
|
color: var(--mdibar-hover-color, #cc3300);
|
|
43
69
|
}
|
|
44
70
|
|
|
45
|
-
[
|
|
71
|
+
div[arrows] mwc-icon[disabled] {
|
|
72
|
+
opacity: 0.2;
|
|
73
|
+
color: unset;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
div[route] mwc-icon {
|
|
77
|
+
position: absolute;
|
|
78
|
+
right: 2px;
|
|
79
|
+
margin-left: var(--margin-narrow);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
div[route][active] {
|
|
46
83
|
background-color: var(--mdibar-background-color, #fff);
|
|
47
84
|
border-bottom: 1px solid var(--mdibar-background-color, #fff);
|
|
48
85
|
color: var(--primary-text-color);
|
|
49
86
|
font-weight: bold;
|
|
50
87
|
}
|
|
51
|
-
|
|
88
|
+
|
|
89
|
+
div[route][home] {
|
|
52
90
|
padding: var(--mdibar-padding-home, 3px 5px 0 23px);
|
|
91
|
+
overflow: visible;
|
|
92
|
+
min-width: unset;
|
|
93
|
+
max-width: unset;
|
|
53
94
|
}
|
|
54
|
-
|
|
95
|
+
|
|
96
|
+
div[route][home] mwc-icon {
|
|
55
97
|
left: 0;
|
|
56
98
|
}
|
|
99
|
+
|
|
100
|
+
div[route][rest] {
|
|
101
|
+
flex: 1;
|
|
102
|
+
min-width: unset;
|
|
103
|
+
max-width: unset;
|
|
104
|
+
border-right: unset;
|
|
105
|
+
}
|
|
57
106
|
`
|
|
58
107
|
]
|
|
59
108
|
|
|
60
|
-
@state()
|
|
61
|
-
@state() activePage
|
|
109
|
+
@state() routes: { page?: PageView; url: string }[] = [{ url: this.getHomeRoute() }]
|
|
110
|
+
@state() activePage?: PageView
|
|
62
111
|
@state() title: string = ''
|
|
63
112
|
|
|
113
|
+
@query('[routes]') scroller!: HTMLDivElement
|
|
114
|
+
|
|
64
115
|
render() {
|
|
65
|
-
const
|
|
116
|
+
const home = this.routes[0]
|
|
117
|
+
const routes = this.routes.slice(1)
|
|
66
118
|
|
|
67
119
|
return html`
|
|
68
|
-
<div home
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
120
|
+
<div home route ?active=${this.activePage === home.page} @click=${() => this.moveToHome()}>
|
|
121
|
+
<mwc-icon>home</mwc-icon>${i18next.t('label.home')}
|
|
122
|
+
</div>
|
|
123
|
+
|
|
124
|
+
<div routes @mousewheel=${this.onWheelEvent.bind(this)}>
|
|
125
|
+
${routes.map((route, idx) => {
|
|
126
|
+
const context = route.page?.context as any
|
|
127
|
+
const title = context?.title || context?.search?.placeholder || ''
|
|
128
|
+
|
|
129
|
+
return html`
|
|
130
|
+
<div @click=${() => this.moveTo(route)} ?active=${this.activePage === route.page} route>
|
|
131
|
+
${title}
|
|
132
|
+
<mwc-icon
|
|
133
|
+
@click=${(e: MouseEvent) => {
|
|
134
|
+
e.stopPropagation()
|
|
135
|
+
this.closePage(route, idx + 1)
|
|
136
|
+
}}
|
|
137
|
+
>close</mwc-icon
|
|
138
|
+
>
|
|
139
|
+
</div>
|
|
140
|
+
`
|
|
141
|
+
})}
|
|
142
|
+
<div rest route></div>
|
|
143
|
+
</div>
|
|
144
|
+
|
|
145
|
+
<div arrows>
|
|
146
|
+
<mwc-icon ?disabled=${!this.scroller || this.scroller.scrollLeft <= 0} @click=${() => this.onScrollByArrow(1)}
|
|
147
|
+
>arrow_left</mwc-icon
|
|
148
|
+
>
|
|
149
|
+
<mwc-icon
|
|
150
|
+
?disabled=${!this.scroller ||
|
|
151
|
+
this.scroller.scrollWidth <= this.scroller.offsetWidth + this.scroller.scrollLeft}
|
|
152
|
+
@click=${() => this.onScrollByArrow(-1)}
|
|
153
|
+
>arrow_right</mwc-icon
|
|
154
|
+
>
|
|
155
|
+
</div>
|
|
87
156
|
`
|
|
88
157
|
}
|
|
89
158
|
|
|
90
159
|
updated(changed) {
|
|
91
160
|
if (changed.has('activePage')) {
|
|
161
|
+
if (!this.activePage) {
|
|
162
|
+
return
|
|
163
|
+
}
|
|
164
|
+
|
|
92
165
|
const page = this.activePage
|
|
93
166
|
|
|
94
|
-
if (
|
|
95
|
-
this.
|
|
167
|
+
if (location.pathname == this.getHomeRoute()) {
|
|
168
|
+
this.routes[0].page = page
|
|
169
|
+
return
|
|
96
170
|
}
|
|
97
171
|
|
|
98
|
-
|
|
99
|
-
|
|
172
|
+
var route = this.routes.find(route => route.page === page)
|
|
173
|
+
if (!route) {
|
|
174
|
+
this.routes = [...this.routes, { page, url: location.href }]
|
|
175
|
+
} else {
|
|
176
|
+
route.url = location.href
|
|
100
177
|
}
|
|
101
178
|
}
|
|
102
179
|
}
|
|
@@ -109,24 +186,46 @@ class PageMDIBar extends connect(store)(LitElement) {
|
|
|
109
186
|
this.title = context.title || context.search?.placeholder
|
|
110
187
|
}
|
|
111
188
|
|
|
189
|
+
onScrollByArrow(delta: number) {
|
|
190
|
+
this.scroller.scrollLeft -= delta * 10
|
|
191
|
+
|
|
192
|
+
this.requestUpdate()
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
onWheelEvent(e: Event) {
|
|
196
|
+
const target = e.currentTarget as HTMLDivElement
|
|
197
|
+
|
|
198
|
+
var delta = Math.max(-1, Math.min(1, (e as WheelEvent).deltaY || -(e as WheelEvent).detail))
|
|
199
|
+
target.scrollLeft -= delta * 10
|
|
200
|
+
|
|
201
|
+
this.requestUpdate()
|
|
202
|
+
|
|
203
|
+
e.preventDefault()
|
|
204
|
+
}
|
|
205
|
+
|
|
112
206
|
getHomeRoute() {
|
|
113
207
|
var base = document.querySelector('base')
|
|
114
208
|
return base?.getAttribute('href') || '/'
|
|
115
209
|
}
|
|
116
210
|
|
|
117
|
-
moveTo(page:
|
|
118
|
-
|
|
211
|
+
moveTo(route: { page?: PageView; url: string }) {
|
|
212
|
+
ROUTE(route.url)
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
moveToHome() {
|
|
216
|
+
ROUTE(this.getHomeRoute())
|
|
119
217
|
}
|
|
120
218
|
|
|
121
|
-
closePage(page:
|
|
122
|
-
this.
|
|
219
|
+
closePage(route: { page?: PageView; url: string }, idx: number) {
|
|
220
|
+
this.routes = [...this.routes.slice(0, idx), ...this.routes.slice(idx + 1)]
|
|
221
|
+
const page = route.page!
|
|
123
222
|
|
|
124
223
|
page.parentNode?.removeChild(page)
|
|
125
224
|
page.pageDispose()
|
|
126
225
|
|
|
127
226
|
if (this.activePage === page) {
|
|
128
|
-
const next = this.
|
|
129
|
-
|
|
227
|
+
const next = this.routes.length > 0 ? Math.max(0, idx - 1) : -1
|
|
228
|
+
ROUTE(next != -1 ? this.routes[next].url : this.getHomeRoute())
|
|
130
229
|
}
|
|
131
230
|
}
|
|
132
231
|
}
|
|
@@ -1,47 +1,74 @@
|
|
|
1
1
|
import { __decorate, __metadata } from "tslib";
|
|
2
2
|
import '@material/mwc-icon';
|
|
3
3
|
import { css, html, LitElement } from 'lit';
|
|
4
|
-
import { customElement, state } from 'lit/decorators.js';
|
|
4
|
+
import { customElement, query, state } from 'lit/decorators.js';
|
|
5
5
|
import { connect } from 'pwa-helpers/connect-mixin.js';
|
|
6
|
-
import {
|
|
6
|
+
import { store, route as ROUTE, PageView } from '@operato/shell';
|
|
7
|
+
import { i18next } from '@operato/i18n';
|
|
7
8
|
let PageMDIBar = class PageMDIBar extends connect(store)(LitElement) {
|
|
8
9
|
constructor() {
|
|
9
10
|
super(...arguments);
|
|
10
|
-
this.
|
|
11
|
+
this.routes = [{ url: this.getHomeRoute() }];
|
|
11
12
|
this.title = '';
|
|
12
13
|
}
|
|
13
14
|
render() {
|
|
14
|
-
const
|
|
15
|
+
const home = this.routes[0];
|
|
16
|
+
const routes = this.routes.slice(1);
|
|
15
17
|
return html `
|
|
16
|
-
<div home
|
|
18
|
+
<div home route ?active=${this.activePage === home.page} @click=${() => this.moveToHome()}>
|
|
19
|
+
<mwc-icon>home</mwc-icon>${i18next.t('label.home')}
|
|
20
|
+
</div>
|
|
17
21
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
const
|
|
22
|
+
<div routes @mousewheel=${this.onWheelEvent.bind(this)}>
|
|
23
|
+
${routes.map((route, idx) => {
|
|
24
|
+
var _a, _b;
|
|
25
|
+
const context = (_a = route.page) === null || _a === void 0 ? void 0 : _a.context;
|
|
26
|
+
const title = (context === null || context === void 0 ? void 0 : context.title) || ((_b = context === null || context === void 0 ? void 0 : context.search) === null || _b === void 0 ? void 0 : _b.placeholder) || '';
|
|
22
27
|
return html `
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
28
|
+
<div @click=${() => this.moveTo(route)} ?active=${this.activePage === route.page} route>
|
|
29
|
+
${title}
|
|
30
|
+
<mwc-icon
|
|
31
|
+
@click=${(e) => {
|
|
27
32
|
e.stopPropagation();
|
|
28
|
-
this.closePage(
|
|
33
|
+
this.closePage(route, idx + 1);
|
|
29
34
|
}}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
35
|
+
>close</mwc-icon
|
|
36
|
+
>
|
|
37
|
+
</div>
|
|
38
|
+
`;
|
|
34
39
|
})}
|
|
40
|
+
<div rest route></div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<div arrows>
|
|
44
|
+
<mwc-icon ?disabled=${!this.scroller || this.scroller.scrollLeft <= 0} @click=${() => this.onScrollByArrow(1)}
|
|
45
|
+
>arrow_left</mwc-icon
|
|
46
|
+
>
|
|
47
|
+
<mwc-icon
|
|
48
|
+
?disabled=${!this.scroller ||
|
|
49
|
+
this.scroller.scrollWidth <= this.scroller.offsetWidth + this.scroller.scrollLeft}
|
|
50
|
+
@click=${() => this.onScrollByArrow(-1)}
|
|
51
|
+
>arrow_right</mwc-icon
|
|
52
|
+
>
|
|
53
|
+
</div>
|
|
35
54
|
`;
|
|
36
55
|
}
|
|
37
56
|
updated(changed) {
|
|
38
57
|
if (changed.has('activePage')) {
|
|
58
|
+
if (!this.activePage) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
39
61
|
const page = this.activePage;
|
|
40
|
-
if (
|
|
41
|
-
this.
|
|
62
|
+
if (location.pathname == this.getHomeRoute()) {
|
|
63
|
+
this.routes[0].page = page;
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
var route = this.routes.find(route => route.page === page);
|
|
67
|
+
if (!route) {
|
|
68
|
+
this.routes = [...this.routes, { page, url: location.href }];
|
|
42
69
|
}
|
|
43
|
-
|
|
44
|
-
|
|
70
|
+
else {
|
|
71
|
+
route.url = location.href;
|
|
45
72
|
}
|
|
46
73
|
}
|
|
47
74
|
}
|
|
@@ -52,21 +79,36 @@ let PageMDIBar = class PageMDIBar extends connect(store)(LitElement) {
|
|
|
52
79
|
/* refresh를 일으키기위한 property 변경을 위한 코드임. */
|
|
53
80
|
this.title = context.title || ((_a = context.search) === null || _a === void 0 ? void 0 : _a.placeholder);
|
|
54
81
|
}
|
|
82
|
+
onScrollByArrow(delta) {
|
|
83
|
+
this.scroller.scrollLeft -= delta * 10;
|
|
84
|
+
this.requestUpdate();
|
|
85
|
+
}
|
|
86
|
+
onWheelEvent(e) {
|
|
87
|
+
const target = e.currentTarget;
|
|
88
|
+
var delta = Math.max(-1, Math.min(1, e.deltaY || -e.detail));
|
|
89
|
+
target.scrollLeft -= delta * 10;
|
|
90
|
+
this.requestUpdate();
|
|
91
|
+
e.preventDefault();
|
|
92
|
+
}
|
|
55
93
|
getHomeRoute() {
|
|
56
94
|
var base = document.querySelector('base');
|
|
57
95
|
return (base === null || base === void 0 ? void 0 : base.getAttribute('href')) || '/';
|
|
58
96
|
}
|
|
59
|
-
moveTo(
|
|
60
|
-
|
|
97
|
+
moveTo(route) {
|
|
98
|
+
ROUTE(route.url);
|
|
61
99
|
}
|
|
62
|
-
|
|
100
|
+
moveToHome() {
|
|
101
|
+
ROUTE(this.getHomeRoute());
|
|
102
|
+
}
|
|
103
|
+
closePage(route, idx) {
|
|
63
104
|
var _a;
|
|
64
|
-
this.
|
|
105
|
+
this.routes = [...this.routes.slice(0, idx), ...this.routes.slice(idx + 1)];
|
|
106
|
+
const page = route.page;
|
|
65
107
|
(_a = page.parentNode) === null || _a === void 0 ? void 0 : _a.removeChild(page);
|
|
66
108
|
page.pageDispose();
|
|
67
109
|
if (this.activePage === page) {
|
|
68
|
-
const next = this.
|
|
69
|
-
|
|
110
|
+
const next = this.routes.length > 0 ? Math.max(0, idx - 1) : -1;
|
|
111
|
+
ROUTE(next != -1 ? this.routes[next].url : this.getHomeRoute());
|
|
70
112
|
}
|
|
71
113
|
}
|
|
72
114
|
};
|
|
@@ -77,51 +119,99 @@ PageMDIBar.styles = [
|
|
|
77
119
|
background-color: var(--main-section-background-color);
|
|
78
120
|
color: var(--mdibar-color, rgba(0, 0, 0, 0.7));
|
|
79
121
|
font-size: var(--fontsize-small);
|
|
122
|
+
overflow: hidden;
|
|
123
|
+
align-items: stretch;
|
|
80
124
|
}
|
|
81
125
|
|
|
82
126
|
div {
|
|
127
|
+
box-sizing: border-box;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
div[routes] {
|
|
131
|
+
flex: 1;
|
|
132
|
+
|
|
133
|
+
display: flex;
|
|
134
|
+
overflow: hidden;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
div[route] {
|
|
83
138
|
display: inline-block;
|
|
84
139
|
position: relative;
|
|
85
|
-
|
|
86
|
-
|
|
140
|
+
min-width: var(--mdibar-min-width, 100px);
|
|
141
|
+
max-width: var(--mdibar-max-width, 150px);
|
|
142
|
+
padding: var(--mdibar-padding, 3px 22px 1px 7px);
|
|
87
143
|
border-right: var(--border-dark-color);
|
|
144
|
+
border-top: var(--border-dark-color);
|
|
88
145
|
border-bottom: var(--border-dark-color);
|
|
89
146
|
white-space: nowrap;
|
|
90
147
|
overflow: hidden;
|
|
91
148
|
text-overflow: ellipsis;
|
|
149
|
+
cursor: pointer;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
div[arrows] {
|
|
153
|
+
display: flex;
|
|
154
|
+
border: var(--border-dark-color);
|
|
155
|
+
align-items: center;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
div[arrows] * {
|
|
159
|
+
opacity: 0.8;
|
|
160
|
+
font-size: var(--mdibar-icon-size, 24px);
|
|
161
|
+
flex: 1;
|
|
92
162
|
}
|
|
93
163
|
|
|
94
164
|
mwc-icon {
|
|
95
|
-
position: absolute;
|
|
96
|
-
right: 2px;
|
|
97
|
-
top: 3px;
|
|
98
|
-
margin-left: var(--margin-narrow);
|
|
99
165
|
font-size: var(--mdibar-icon-size, 18px);
|
|
100
166
|
opacity: 0.5;
|
|
101
167
|
}
|
|
168
|
+
|
|
102
169
|
mwc-icon:hover {
|
|
103
170
|
opacity: 0.8;
|
|
104
171
|
color: var(--mdibar-hover-color, #cc3300);
|
|
105
172
|
}
|
|
106
173
|
|
|
107
|
-
[
|
|
174
|
+
div[arrows] mwc-icon[disabled] {
|
|
175
|
+
opacity: 0.2;
|
|
176
|
+
color: unset;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
div[route] mwc-icon {
|
|
180
|
+
position: absolute;
|
|
181
|
+
right: 2px;
|
|
182
|
+
margin-left: var(--margin-narrow);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
div[route][active] {
|
|
108
186
|
background-color: var(--mdibar-background-color, #fff);
|
|
109
187
|
border-bottom: 1px solid var(--mdibar-background-color, #fff);
|
|
110
188
|
color: var(--primary-text-color);
|
|
111
189
|
font-weight: bold;
|
|
112
190
|
}
|
|
113
|
-
|
|
191
|
+
|
|
192
|
+
div[route][home] {
|
|
114
193
|
padding: var(--mdibar-padding-home, 3px 5px 0 23px);
|
|
194
|
+
overflow: visible;
|
|
195
|
+
min-width: unset;
|
|
196
|
+
max-width: unset;
|
|
115
197
|
}
|
|
116
|
-
|
|
198
|
+
|
|
199
|
+
div[route][home] mwc-icon {
|
|
117
200
|
left: 0;
|
|
118
201
|
}
|
|
202
|
+
|
|
203
|
+
div[route][rest] {
|
|
204
|
+
flex: 1;
|
|
205
|
+
min-width: unset;
|
|
206
|
+
max-width: unset;
|
|
207
|
+
border-right: unset;
|
|
208
|
+
}
|
|
119
209
|
`
|
|
120
210
|
];
|
|
121
211
|
__decorate([
|
|
122
212
|
state(),
|
|
123
213
|
__metadata("design:type", Array)
|
|
124
|
-
], PageMDIBar.prototype, "
|
|
214
|
+
], PageMDIBar.prototype, "routes", void 0);
|
|
125
215
|
__decorate([
|
|
126
216
|
state(),
|
|
127
217
|
__metadata("design:type", PageView)
|
|
@@ -130,6 +220,10 @@ __decorate([
|
|
|
130
220
|
state(),
|
|
131
221
|
__metadata("design:type", String)
|
|
132
222
|
], PageMDIBar.prototype, "title", void 0);
|
|
223
|
+
__decorate([
|
|
224
|
+
query('[routes]'),
|
|
225
|
+
__metadata("design:type", HTMLDivElement)
|
|
226
|
+
], PageMDIBar.prototype, "scroller", void 0);
|
|
133
227
|
PageMDIBar = __decorate([
|
|
134
228
|
customElement('page-mdibar')
|
|
135
229
|
], PageMDIBar);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"page-mdibar.js","sourceRoot":"","sources":["../../client/layout/page-mdibar.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/mwc-icon'\n\nimport { css, html, LitElement } from 'lit'\nimport { customElement, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport { navigate, store, PageView } from '@operato/shell'\n\n@customElement('page-mdibar')\nclass PageMDIBar extends connect(store)(LitElement) {\n static styles = [\n css`\n :host {\n display: flex;\n background-color: var(--main-section-background-color);\n color: var(--mdibar-color, rgba(0, 0, 0, 0.7));\n font-size: var(--fontsize-small);\n }\n\n div {\n display: inline-block;\n position: relative;\n max-width: var(--mdibar-max-width, 120px);\n padding: var(--mdibar-padding, 3px 22px 0 5px);\n border-right: var(--border-dark-color);\n border-bottom: var(--border-dark-color);\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n mwc-icon {\n position: absolute;\n right: 2px;\n top: 3px;\n margin-left: var(--margin-narrow);\n font-size: var(--mdibar-icon-size, 18px);\n opacity: 0.5;\n }\n mwc-icon:hover {\n opacity: 0.8;\n color: var(--mdibar-hover-color, #cc3300);\n }\n\n [active] {\n background-color: var(--mdibar-background-color, #fff);\n border-bottom: 1px solid var(--mdibar-background-color, #fff);\n color: var(--primary-text-color);\n font-weight: bold;\n }\n [home] {\n padding: var(--mdibar-padding-home, 3px 5px 0 23px);\n }\n [home] mwc-icon {\n left: 0;\n }\n `\n ]\n\n @state() pages: PageView[] = []\n @state() activePage!: PageView\n @state() title: string = ''\n\n render() {\n const pages = this.pages || []\n\n return html`\n <div home><mwc-icon>home</mwc-icon></div>\n\n ${pages.map((page, idx) => {\n const context = page.context as any\n const title = context?.title || context?.search?.placeholder || ''\n\n return html`\n <div @click=${() => this.moveTo(page)} ?active=${this.activePage === page}>\n ${title}\n <mwc-icon\n @click=${(e: MouseEvent) => {\n e.stopPropagation()\n this.closePage(page, idx)\n }}\n >close</mwc-icon\n >\n </div>\n `\n })}\n `\n }\n\n updated(changed) {\n if (changed.has('activePage')) {\n const page = this.activePage\n\n if (!this.pages) {\n this.pages = []\n }\n\n if (!this.pages.includes(page)) {\n this.pages = [...this.pages, page]\n }\n }\n }\n\n stateChanged(state) {\n const { context, activePage } = state.route || {}\n this.activePage = activePage\n\n /* refresh를 일으키기위한 property 변경을 위한 코드임. */\n this.title = context.title || context.search?.placeholder\n }\n\n getHomeRoute() {\n var base = document.querySelector('base')\n return base?.getAttribute('href') || '/'\n }\n\n moveTo(page: PageView) {\n navigate(page.getAttribute('data-page')!)\n }\n\n closePage(page: PageView, idx: number) {\n this.pages = [...this.pages.slice(0, idx), ...this.pages.slice(idx + 1)]\n\n page.parentNode?.removeChild(page)\n page.pageDispose()\n\n if (this.activePage === page) {\n const next = this.pages.length > 0 ? Math.max(0, idx - 1) : -1\n navigate(next != -1 ? this.pages[next].getAttribute('data-page')! : this.getHomeRoute())\n }\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"page-mdibar.js","sourceRoot":"","sources":["../../client/layout/page-mdibar.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/mwc-icon'\n\nimport { css, html, LitElement } from 'lit'\nimport { customElement, query, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport { store, route as ROUTE, PageView } from '@operato/shell'\nimport { i18next } from '@operato/i18n'\n\n@customElement('page-mdibar')\nclass PageMDIBar extends connect(store)(LitElement) {\n static styles = [\n css`\n :host {\n display: flex;\n background-color: var(--main-section-background-color);\n color: var(--mdibar-color, rgba(0, 0, 0, 0.7));\n font-size: var(--fontsize-small);\n overflow: hidden;\n align-items: stretch;\n }\n\n div {\n box-sizing: border-box;\n }\n\n div[routes] {\n flex: 1;\n\n display: flex;\n overflow: hidden;\n }\n\n div[route] {\n display: inline-block;\n position: relative;\n min-width: var(--mdibar-min-width, 100px);\n max-width: var(--mdibar-max-width, 150px);\n padding: var(--mdibar-padding, 3px 22px 1px 7px);\n border-right: var(--border-dark-color);\n border-top: var(--border-dark-color);\n border-bottom: var(--border-dark-color);\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n cursor: pointer;\n }\n\n div[arrows] {\n display: flex;\n border: var(--border-dark-color);\n align-items: center;\n }\n\n div[arrows] * {\n opacity: 0.8;\n font-size: var(--mdibar-icon-size, 24px);\n flex: 1;\n }\n\n mwc-icon {\n font-size: var(--mdibar-icon-size, 18px);\n opacity: 0.5;\n }\n\n mwc-icon:hover {\n opacity: 0.8;\n color: var(--mdibar-hover-color, #cc3300);\n }\n\n div[arrows] mwc-icon[disabled] {\n opacity: 0.2;\n color: unset;\n }\n\n div[route] mwc-icon {\n position: absolute;\n right: 2px;\n margin-left: var(--margin-narrow);\n }\n\n div[route][active] {\n background-color: var(--mdibar-background-color, #fff);\n border-bottom: 1px solid var(--mdibar-background-color, #fff);\n color: var(--primary-text-color);\n font-weight: bold;\n }\n\n div[route][home] {\n padding: var(--mdibar-padding-home, 3px 5px 0 23px);\n overflow: visible;\n min-width: unset;\n max-width: unset;\n }\n\n div[route][home] mwc-icon {\n left: 0;\n }\n\n div[route][rest] {\n flex: 1;\n min-width: unset;\n max-width: unset;\n border-right: unset;\n }\n `\n ]\n\n @state() routes: { page?: PageView; url: string }[] = [{ url: this.getHomeRoute() }]\n @state() activePage?: PageView\n @state() title: string = ''\n\n @query('[routes]') scroller!: HTMLDivElement\n\n render() {\n const home = this.routes[0]\n const routes = this.routes.slice(1)\n\n return html`\n <div home route ?active=${this.activePage === home.page} @click=${() => this.moveToHome()}>\n <mwc-icon>home</mwc-icon>${i18next.t('label.home')}\n </div>\n\n <div routes @mousewheel=${this.onWheelEvent.bind(this)}>\n ${routes.map((route, idx) => {\n const context = route.page?.context as any\n const title = context?.title || context?.search?.placeholder || ''\n\n return html`\n <div @click=${() => this.moveTo(route)} ?active=${this.activePage === route.page} route>\n ${title}\n <mwc-icon\n @click=${(e: MouseEvent) => {\n e.stopPropagation()\n this.closePage(route, idx + 1)\n }}\n >close</mwc-icon\n >\n </div>\n `\n })}\n <div rest route></div>\n </div>\n\n <div arrows>\n <mwc-icon ?disabled=${!this.scroller || this.scroller.scrollLeft <= 0} @click=${() => this.onScrollByArrow(1)}\n >arrow_left</mwc-icon\n >\n <mwc-icon\n ?disabled=${!this.scroller ||\n this.scroller.scrollWidth <= this.scroller.offsetWidth + this.scroller.scrollLeft}\n @click=${() => this.onScrollByArrow(-1)}\n >arrow_right</mwc-icon\n >\n </div>\n `\n }\n\n updated(changed) {\n if (changed.has('activePage')) {\n if (!this.activePage) {\n return\n }\n\n const page = this.activePage\n\n if (location.pathname == this.getHomeRoute()) {\n this.routes[0].page = page\n return\n }\n\n var route = this.routes.find(route => route.page === page)\n if (!route) {\n this.routes = [...this.routes, { page, url: location.href }]\n } else {\n route.url = location.href\n }\n }\n }\n\n stateChanged(state) {\n const { context, activePage } = state.route || {}\n this.activePage = activePage\n\n /* refresh를 일으키기위한 property 변경을 위한 코드임. */\n this.title = context.title || context.search?.placeholder\n }\n\n onScrollByArrow(delta: number) {\n this.scroller.scrollLeft -= delta * 10\n\n this.requestUpdate()\n }\n\n onWheelEvent(e: Event) {\n const target = e.currentTarget as HTMLDivElement\n\n var delta = Math.max(-1, Math.min(1, (e as WheelEvent).deltaY || -(e as WheelEvent).detail))\n target.scrollLeft -= delta * 10\n\n this.requestUpdate()\n\n e.preventDefault()\n }\n\n getHomeRoute() {\n var base = document.querySelector('base')\n return base?.getAttribute('href') || '/'\n }\n\n moveTo(route: { page?: PageView; url: string }) {\n ROUTE(route.url)\n }\n\n moveToHome() {\n ROUTE(this.getHomeRoute())\n }\n\n closePage(route: { page?: PageView; url: string }, idx: number) {\n this.routes = [...this.routes.slice(0, idx), ...this.routes.slice(idx + 1)]\n const page = route.page!\n\n page.parentNode?.removeChild(page)\n page.pageDispose()\n\n if (this.activePage === page) {\n const next = this.routes.length > 0 ? Math.max(0, idx - 1) : -1\n ROUTE(next != -1 ? this.routes[next].url : this.getHomeRoute())\n }\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/lerna/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../client/bootstrap.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","../../../node_modules/@material/mwc-icon/mwc-icon.d.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/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/@operato/shell/dist/src/types/domain.d.ts","../../../node_modules/@operato/shell/dist/src/types/user.d.ts","../../../node_modules/@operato/shell/dist/src/types/role.d.ts","../../../node_modules/@operato/shell/dist/src/types/privilege.d.ts","../../../node_modules/@operato/shell/dist/src/types/types.d.ts","../../../node_modules/@operato/shell/dist/src/types/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/@operato/shell/dist/src/store.d.ts","../../../node_modules/@operato/shell/dist/src/actions/app.d.ts","../../../node_modules/@operato/shell/dist/src/actions/route.d.ts","../../../node_modules/@operato/shell/dist/src/actions/busy.d.ts","../../../node_modules/@operato/shell/dist/src/actions/const.d.ts","../../../node_modules/@operato/shell/dist/src/actions/index.d.ts","../../../node_modules/@operato/shell/dist/src/app/pages/page-view.d.ts","../../../node_modules/@operato/shell/dist/src/object-store.d.ts","../../../node_modules/@operato/shell/dist/src/index.d.ts","../../../node_modules/@operato/layout/dist/src/initializer.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-list.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-menu.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@operato/popup/dist/src/ox-floating-overlay.d.ts","../../../node_modules/@operato/popup/dist/src/open-popup.d.ts","../../../node_modules/@operato/popup/dist/src/index.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","../../../node_modules/@operato/layout/dist/src/layouts/ox-snack-bar.d.ts","../../../node_modules/@operato/layout/dist/src/components/ox-resize-splitter.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-header-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-nav-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-aside-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-footer-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-page-header-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../../node_modules/@operato/layout/dist/src/actions/layout.d.ts","../../../node_modules/@operato/layout/dist/src/actions/snackbar.d.ts","../../../node_modules/@operato/layout/dist/src/index.d.ts","../client/layout/app-toolbar.ts","../../../node_modules/@material/linear-progress/types.d.ts","../../../node_modules/@material/mwc-linear-progress/mwc-linear-progress-base.d.ts","../../../node_modules/@material/mwc-linear-progress/mwc-linear-progress.d.ts","../client/layout/app-busybar.ts","../client/layout/page-mdibar.ts","../client/layout/page-toolbar.ts","../../../node_modules/@material/form-field/adapter.d.ts","../../../node_modules/@material/form-field/foundation.d.ts","../../../node_modules/@material/mwc-formfield/mwc-formfield-base.d.ts","../../../node_modules/@material/mwc-formfield/mwc-formfield.d.ts","../../../node_modules/@material/mwc-base/form-element.d.ts","../../../node_modules/@material/mwc-checkbox/mwc-checkbox-base.d.ts","../../../node_modules/@material/mwc-checkbox/mwc-checkbox.d.ts","../../../node_modules/@operato/i18n/dist/src/ox-i18n.d.ts","../../../node_modules/i18next/index.d.ts","../../../node_modules/@operato/i18n/dist/src/config.d.ts","../../../node_modules/@operato/i18n/dist/src/localize.d.ts","../../../node_modules/@operato/i18n/dist/src/ox-i18n-selector.d.ts","../../../node_modules/@operato/i18n/dist/src/index.d.ts","../client/mdibar-setting-let.ts","../../../node_modules/@operato/utils/dist/src/sleep.d.ts","../../../node_modules/@operato/utils/dist/src/async-lock.d.ts","../../../node_modules/@operato/utils/dist/src/file-drop-helper.d.ts","../../../node_modules/@operato/utils/dist/src/context-path.d.ts","../../../node_modules/@operato/utils/dist/src/os.d.ts","../../../node_modules/@operato/utils/dist/src/swipe-listener.d.ts","../../../node_modules/@operato/utils/dist/src/fullscreen.d.ts","../../../node_modules/@operato/utils/dist/src/parse-jwt.d.ts","../../../node_modules/@operato/utils/dist/src/password-pattern.d.ts","../../../node_modules/@operato/utils/dist/src/closest-element.d.ts","../../../node_modules/@operato/utils/dist/src/detect-overflow.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/snapshot-taker.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/timecapsule.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/index.d.ts","../../../node_modules/@operato/utils/dist/src/clipboard.d.ts","../../../node_modules/@operato/utils/dist/src/format.d.ts","../../../node_modules/@operato/utils/dist/src/adjust-list-param.d.ts","../../../node_modules/@operato/utils/dist/src/is-unvalued.d.ts","../../../node_modules/@operato/utils/dist/src/stringify-bignum.d.ts","../../../node_modules/@operato/utils/dist/src/encode-form-params.d.ts","../../../node_modules/@operato/utils/dist/src/index.d.ts","../client/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.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/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"83523572e63401d7ba2de068d4abd082eb393faf1a664961a654181b408bc924","signature":"aac4ddff3d5c1247433870879e9838b1e23b81a9b62c75f59c3e1b64802f2b16"},"52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","3cbcdf2a84c93c6b62d8d4584f613c8af7c6330ac2ba1ff781d10a3e0935beb9","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"3c150a2e1758724811db3bdc5c773421819343b1627714e09f29b1f40a5dfb26","affectsGlobalScope":true},"c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"d45c02bf8b85203f35de2971eafb8f8092090d150c7805a189b3e197f53b12b6","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","ea410c8280b0ec480acb195c7dd36c1f054403f5fccee0beca85717777cf8562","628bceb593b3a5b3d73ff44a808a347ec07d6ee397104a1d88b0f9a20d8b4599","57e25505a5de058216a8f4416ca850788bfc3a412c8e90109b2ef91f75fdd615","2ba453918c1fcf1cbb2836f731534f356d5fe65ed9628811f686e8de3920ed0e","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","cc689acd4eff461c808e01225be6a16d1787e44d451310be5dd556dd7ab08457","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","6bf72b2541469cac7a7882468d25a04fdff489625452ff7d3e670c764e5a9ba1","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","f3ae0703d7a5578aaa0f847acfeba268c93f26003eea6d7f202f5fc54b579720","4dca7804ad883893f583e2d0398422cf97b08d2016139f7dbf3e1bd5d351a468","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","e1ebb68b40baf294f83dadfc98d1bb4d462f85bf3445e3116f4e85507634fdae","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","73b33f358af52e1fa1942be3b8262e3c97ef189370feea3f43acfd883c1f8639","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762","628e5558b3df3fff39a900912739dffd7da24afb87821adffdc2df20cf834c52","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","28842cb528e292a8ed099a692b51995990894c5311c8fd9eda6d4e50732552d1","f4ad8c90859112adabad50932eb0b20aba4befec159b95cea96af6a154759383","429ef858aef648db4c9c52df9862fc207ae0a23438b26bcebb572c33525648c2",{"version":"11161b4f286a736e7fc83816e3600570156f0805fbc9d422f62dae7c3f5d9648","signature":"ecbe83774c5afb06c8ff1e0c863bd4c8e21eb63ffb3e4a9febb6dd146085ba66"},"75b569a919311369d3bfbff7bcaec663454b2124c270312ec4020906020cf6f6","e1169c37e35096ddc72e09ce6b1dba0fdfa99562e24f9415fe7b31664379392f",{"version":"30477925776c3f5e2234372601144fa3df541c755aa573249759158f0497952b","affectsGlobalScope":true},{"version":"6357f2234eb83d59acd4492b8a5a631f5363ca1a623e76a7997d13578d615418","signature":"f33ed1c4b6170db46f7d11b24b24c348e0806a1a2ba94b02e249480a5cd09ba5"},{"version":"ebbedd0f61a063a556b663f52b2bc8fe2ca039a8176df6310833c9e583701175","signature":"ecbe83774c5afb06c8ff1e0c863bd4c8e21eb63ffb3e4a9febb6dd146085ba66"},{"version":"995f61b0247fc15f75e5934aa2e3386c8e1d379868a22b80dc26c158d0be9c2b","signature":"ecbe83774c5afb06c8ff1e0c863bd4c8e21eb63ffb3e4a9febb6dd146085ba66"},"e59d273f3ce9e33fcae9ae358471210bf065b56d7f5eac8b05a82a97fc99dd36","f65ee1c1db33053d998edb8192a3f8a79e630170a7d6d3f99ca0988a9d8ce6c9","1f6050ac852a6550d50d7801eb7168aed5c18593bc0fa6803a23dc26350b781a",{"version":"f678e8443ae79cfbce41a2f488cdf721317b3bf22b8a1662cf5c541d89e2691f","affectsGlobalScope":true},{"version":"301b1a33102a2bf93e997834ff2f76a6766014572bfc3210310549225fbb023b","affectsGlobalScope":true},"d0d1ef12b94947508f7cde0ca5a9020f8e3571b7ae4641cbf983f823650ca794",{"version":"b7740771bfb0c90b24f104f3868fee827696d7cee49af22d36d6acef7be8b068","affectsGlobalScope":true},"29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","c1a660a90d6565c602fa458f53849140c9008b7000ce8823443a2b1ae9ca46a3","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6",{"version":"9ea36f66607e706d9a29786a823c0ca51e2741bc4b70a0ee9d4c2d1742efad1c","signature":"95d99d6fc2deb1bcf72aa7219d94a0c9fc2df09759aeaad9fb71ce430e857f13"},"05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","7bc8c357aad90fb446b9baa522b1bed5901d1a1cbc59a7a658d64546c97999b4","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","fc5a5d8060efb1270b9d98ce50e6eb8900cc5229603d7afb73c7f4b4272e0d9c","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","7b61337d7e26f5f9329b74dffb93941388d97b78282f611363d8dafa37d0a2a0","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","572e62cf5f264524b956685124bdbfd9651c8f628129b627080657281090ea43","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","28b3ab6f54b290c19897dff3d4346b7f1caf6e7d2057119ec6332dc1ddf25e85","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","f39f94e8457643c4a7361d5a7330c705ae5921067b639228af3e961b9b71ae6f","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","9238230f389fb9c868643333566c6bf4a1725006958768af29f8c840593d8bca",{"version":"541dc283a52b5d742a01928c5d31fcd954b73b5b7194c4b28ae863a35bd2c24a","signature":"50c537c692e4601ffc749020690517e9b5c38dad0d559ad525300152b519423c"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"8d74c73e21579ffe9f77ce969bc0317470c63797bd4719c8895a60ce6ae6a263","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","765f9f91293be0c057d5bf2b59494e1eac70efae55ff1c27c6e47c359bc889d2","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true},"b9f36877501f2ce0e276e993c93cd2cf325e78d0409ec4612b1eb9d6a537e60b","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","c58642af30c06a8e250d248a747ceb045af9a92d8cab22478d80c3bef276bfd5","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ffc62d73b4fa10ca8c59f8802df88efefe447025730a24ee977b60adedc5bf37","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ebf3434b09c527078aa74139ff367fffa64fea32a01d6c06fb0a69b0ecadf43e","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","6d969939c4a63f70f2aa49e88da6f64b655c8e6799612807bef41ccff6ea0da9",{"version":"b2fdcc3836d425833af10e536ae5491c34e218bc71870f12a401720f874b6ce4","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4,"useDefineForClassFields":false},"fileIdsList":[[209],[209,219],[48,209],[57,209],[48,57,209],[48,57,65,209],[46,47,209],[96,209],[94,127,209],[55,94,95,96,209],[95,97,209],[55,56,102,103,104,106,209],[55,107,209],[55,102,104,131,209],[55,132,209],[52,97,127,128,209],[55,129,209],[55,209],[55,121,209],[55,122,209],[55,95,97,99,100,209],[55,101,209],[95,209],[96,98,209],[94,99,209],[135,209],[134,136,137,138,209],[55,135,209],[52,55,209],[55,93,209],[68,209],[86,93,109,111,112,113,114,115,116,117,118,209],[85,209],[91,110,209],[56,108,209],[87,88,89,90,92,209],[55,91,209],[52,55,56,209],[52,55,56,87,209],[52,55,87,209],[52,55,89,209],[78,79,80,81,209],[75,77,82,83,84,209],[68,76,209],[70,71,72,73,74,209],[71,72,209],[70,71,73,209],[141,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,209],[152,153,209],[153,209],[152,209],[209,221,224],[163,209],[166,209],[167,172,200,209],[168,179,180,187,197,208,209],[168,169,179,187,209],[170,209],[171,172,180,188,209],[172,197,205,209],[173,175,179,187,209],[174,209],[175,176,209],[179,209],[177,179,209],[179,180,181,197,208,209],[179,180,181,194,197,200,209],[209,213],[175,179,182,187,197,208,209],[179,180,182,183,187,197,205,208,209],[182,184,197,205,208,209],[163,164,165,166,167,168,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],[179,185,209],[186,208,209],[175,179,187,197,209],[188,209],[189,209],[166,190,209],[191,207,209,213],[192,209],[193,209],[179,194,195,209],[194,196,209,211],[167,179,197,198,199,200,209],[167,197,199,209],[197,198,209],[200,209],[201,209],[197,209],[179,203,204,209],[203,204,209],[172,187,197,205,209],[206,209],[187,207,209],[167,182,193,208,209],[172,209],[197,209,210],[209,211],[209,212],[167,172,179,181,190,197,208,209,211,213],[197,209,214],[49,209],[166,209,216,217,223],[209,221],[209,218,222],[48,52,209],[52,209],[51,52,209],[50,51,209],[58,59,60,61,62,63,64,65,66,209],[105,209],[48,52,53,54,209],[209,220],[44,209],[44,52,85,119,120,124,125,126,140,161,209],[44,55,67,69,85,123,209],[44,55,56,67,69,85,119,209],[44,55,56,67,69,85,209],[44,55,67,85,119,130,133,134,139,209],[120,124,125,126,140],[123],[56],[52,55,130,133,134]],"referencedMap":[[217,1],[220,2],[46,1],[57,3],[58,4],[61,5],[59,5],[63,5],[66,6],[65,1],[64,5],[62,5],[60,4],[47,1],[48,7],[94,1],[96,1],[127,8],[128,9],[121,1],[103,1],[97,10],[131,11],[95,1],[107,12],[108,13],[132,14],[133,15],[129,16],[130,17],[56,18],[122,19],[123,20],[101,21],[102,22],[104,23],[99,24],[100,25],[98,1],[136,26],[139,27],[137,28],[138,29],[134,29],[117,30],[118,31],[110,29],[119,32],[86,33],[113,34],[114,34],[111,34],[112,34],[116,34],[115,34],[109,35],[93,36],[92,37],[91,38],[88,39],[89,40],[90,41],[87,29],[78,1],[80,1],[81,1],[82,42],[79,1],[83,18],[85,43],[84,1],[77,44],[70,1],[75,45],[73,46],[72,47],[74,1],[71,1],[157,1],[142,1],[155,1],[150,1],[144,1],[151,1],[160,1],[143,1],[156,1],[147,1],[161,48],[158,1],[145,1],[148,1],[149,1],[141,1],[159,1],[146,1],[154,49],[152,50],[153,51],[219,1],[225,52],[163,53],[164,53],[166,54],[167,55],[168,56],[169,57],[170,58],[171,59],[172,60],[173,61],[174,62],[175,63],[176,63],[178,64],[177,65],[179,64],[180,66],[181,67],[165,68],[215,1],[182,69],[183,70],[184,71],[216,72],[185,73],[186,74],[187,75],[188,76],[189,77],[190,78],[191,79],[192,80],[193,81],[194,82],[195,82],[196,83],[197,84],[199,85],[198,86],[200,87],[201,88],[202,89],[203,90],[204,91],[205,92],[206,93],[207,94],[208,95],[209,96],[210,97],[211,98],[212,99],[213,100],[214,101],[50,102],[49,1],[218,1],[224,103],[135,1],[222,104],[223,105],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,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],[53,106],[51,107],[105,108],[54,1],[52,109],[67,110],[106,111],[55,112],[221,113],[69,31],[76,31],[68,1],[44,1],[45,114],[162,115],[124,116],[120,117],[125,118],[126,117],[140,119]],"exportedModulesMap":[[217,1],[220,2],[46,1],[57,3],[58,4],[61,5],[59,5],[63,5],[66,6],[65,1],[64,5],[62,5],[60,4],[47,1],[48,7],[94,1],[96,1],[127,8],[128,9],[121,1],[103,1],[97,10],[131,11],[95,1],[107,12],[108,13],[132,14],[133,15],[129,16],[130,17],[56,18],[122,19],[123,20],[101,21],[102,22],[104,23],[99,24],[100,25],[98,1],[136,26],[139,27],[137,28],[138,29],[134,29],[117,30],[118,31],[110,29],[119,32],[86,33],[113,34],[114,34],[111,34],[112,34],[116,34],[115,34],[109,35],[93,36],[92,37],[91,38],[88,39],[89,40],[90,41],[87,29],[78,1],[80,1],[81,1],[82,42],[79,1],[83,18],[85,43],[84,1],[77,44],[70,1],[75,45],[73,46],[72,47],[74,1],[71,1],[157,1],[142,1],[155,1],[150,1],[144,1],[151,1],[160,1],[143,1],[156,1],[147,1],[161,48],[158,1],[145,1],[148,1],[149,1],[141,1],[159,1],[146,1],[154,49],[152,50],[153,51],[219,1],[225,52],[163,53],[164,53],[166,54],[167,55],[168,56],[169,57],[170,58],[171,59],[172,60],[173,61],[174,62],[175,63],[176,63],[178,64],[177,65],[179,64],[180,66],[181,67],[165,68],[215,1],[182,69],[183,70],[184,71],[216,72],[185,73],[186,74],[187,75],[188,76],[189,77],[190,78],[191,79],[192,80],[193,81],[194,82],[195,82],[196,83],[197,84],[199,85],[198,86],[200,87],[201,88],[202,89],[203,90],[204,91],[205,92],[206,93],[207,94],[208,95],[209,96],[210,97],[211,98],[212,99],[213,100],[214,101],[50,102],[49,1],[218,1],[224,103],[135,1],[222,104],[223,105],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,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],[53,106],[51,107],[105,108],[54,1],[52,109],[67,110],[106,111],[55,112],[221,113],[69,31],[76,31],[68,1],[44,1],[162,120],[124,121],[120,122],[125,122],[126,122],[140,123]],"semanticDiagnosticsPerFile":[217,220,46,57,58,61,59,63,66,65,64,62,60,47,48,94,96,127,128,121,103,97,131,95,107,108,132,133,129,130,56,122,123,101,102,104,99,100,98,136,139,137,138,134,117,118,110,119,86,113,114,111,112,116,115,109,93,92,91,88,89,90,87,78,80,81,82,79,83,85,84,77,70,75,73,72,74,71,157,142,155,150,144,151,160,143,156,147,161,158,145,148,149,141,159,146,154,152,153,219,225,163,164,166,167,168,169,170,171,172,173,174,175,176,178,177,179,180,181,165,215,182,183,184,216,185,186,187,188,189,190,191,192,193,194,195,196,197,199,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,50,49,218,224,135,222,223,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,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,53,51,105,54,52,67,106,55,221,69,76,68,44,45,162,124,120,125,126,140]},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/lerna/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/lerna/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/tslib/tslib.d.ts","../client/bootstrap.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","../../../node_modules/@material/mwc-icon/mwc-icon.d.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/redux/index.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/@operato/shell/dist/src/types/domain.d.ts","../../../node_modules/@operato/shell/dist/src/types/user.d.ts","../../../node_modules/@operato/shell/dist/src/types/role.d.ts","../../../node_modules/@operato/shell/dist/src/types/privilege.d.ts","../../../node_modules/@operato/shell/dist/src/types/types.d.ts","../../../node_modules/@operato/shell/dist/src/types/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/@operato/shell/dist/src/store.d.ts","../../../node_modules/@operato/shell/dist/src/actions/app.d.ts","../../../node_modules/@operato/shell/dist/src/actions/route.d.ts","../../../node_modules/@operato/shell/dist/src/actions/busy.d.ts","../../../node_modules/@operato/shell/dist/src/actions/const.d.ts","../../../node_modules/@operato/shell/dist/src/actions/index.d.ts","../../../node_modules/@operato/shell/dist/src/app/pages/page-view.d.ts","../../../node_modules/@operato/shell/dist/src/object-store.d.ts","../../../node_modules/@operato/shell/dist/src/index.d.ts","../../../node_modules/@operato/layout/dist/src/initializer.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-list.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-menu.d.ts","../../../node_modules/@operato/popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@operato/popup/dist/src/ox-floating-overlay.d.ts","../../../node_modules/@operato/popup/dist/src/open-popup.d.ts","../../../node_modules/@operato/popup/dist/src/index.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","../../../node_modules/@operato/layout/dist/src/layouts/ox-snack-bar.d.ts","../../../node_modules/@operato/layout/dist/src/components/ox-resize-splitter.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-header-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-nav-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-aside-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-footer-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-page-header-bar.d.ts","../../../node_modules/@operato/layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../../node_modules/@operato/layout/dist/src/actions/layout.d.ts","../../../node_modules/@operato/layout/dist/src/actions/snackbar.d.ts","../../../node_modules/@operato/layout/dist/src/index.d.ts","../client/layout/app-toolbar.ts","../../../node_modules/@material/linear-progress/types.d.ts","../../../node_modules/@material/mwc-linear-progress/mwc-linear-progress-base.d.ts","../../../node_modules/@material/mwc-linear-progress/mwc-linear-progress.d.ts","../client/layout/app-busybar.ts","../../../node_modules/i18next/index.d.ts","../../../node_modules/@operato/i18n/dist/src/config.d.ts","../../../node_modules/@operato/i18n/dist/src/localize.d.ts","../../../node_modules/@operato/i18n/dist/src/ox-i18n.d.ts","../../../node_modules/@operato/i18n/dist/src/ox-i18n-selector.d.ts","../../../node_modules/@operato/i18n/dist/src/index.d.ts","../client/layout/page-mdibar.ts","../client/layout/page-toolbar.ts","../../../node_modules/@material/form-field/adapter.d.ts","../../../node_modules/@material/form-field/foundation.d.ts","../../../node_modules/@material/mwc-formfield/mwc-formfield-base.d.ts","../../../node_modules/@material/mwc-formfield/mwc-formfield.d.ts","../../../node_modules/@material/mwc-base/form-element.d.ts","../../../node_modules/@material/mwc-checkbox/mwc-checkbox-base.d.ts","../../../node_modules/@material/mwc-checkbox/mwc-checkbox.d.ts","../client/mdibar-setting-let.ts","../../../node_modules/@operato/utils/dist/src/sleep.d.ts","../../../node_modules/@operato/utils/dist/src/async-lock.d.ts","../../../node_modules/@operato/utils/dist/src/file-drop-helper.d.ts","../../../node_modules/@operato/utils/dist/src/context-path.d.ts","../../../node_modules/@operato/utils/dist/src/os.d.ts","../../../node_modules/@operato/utils/dist/src/swipe-listener.d.ts","../../../node_modules/@operato/utils/dist/src/fullscreen.d.ts","../../../node_modules/@operato/utils/dist/src/parse-jwt.d.ts","../../../node_modules/@operato/utils/dist/src/password-pattern.d.ts","../../../node_modules/@operato/utils/dist/src/closest-element.d.ts","../../../node_modules/@operato/utils/dist/src/detect-overflow.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/snapshot-taker.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/timecapsule.d.ts","../../../node_modules/@operato/utils/dist/src/timecapsule/index.d.ts","../../../node_modules/@operato/utils/dist/src/clipboard.d.ts","../../../node_modules/@operato/utils/dist/src/format.d.ts","../../../node_modules/@operato/utils/dist/src/adjust-list-param.d.ts","../../../node_modules/@operato/utils/dist/src/is-unvalued.d.ts","../../../node_modules/@operato/utils/dist/src/stringify-bignum.d.ts","../../../node_modules/@operato/utils/dist/src/encode-form-params.d.ts","../../../node_modules/@operato/utils/dist/src/index.d.ts","../client/index.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.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/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900",{"version":"83523572e63401d7ba2de068d4abd082eb393faf1a664961a654181b408bc924","signature":"aac4ddff3d5c1247433870879e9838b1e23b81a9b62c75f59c3e1b64802f2b16"},"52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","3cbcdf2a84c93c6b62d8d4584f613c8af7c6330ac2ba1ff781d10a3e0935beb9","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"3c150a2e1758724811db3bdc5c773421819343b1627714e09f29b1f40a5dfb26","affectsGlobalScope":true},"c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"d45c02bf8b85203f35de2971eafb8f8092090d150c7805a189b3e197f53b12b6","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","ea410c8280b0ec480acb195c7dd36c1f054403f5fccee0beca85717777cf8562","628bceb593b3a5b3d73ff44a808a347ec07d6ee397104a1d88b0f9a20d8b4599","57e25505a5de058216a8f4416ca850788bfc3a412c8e90109b2ef91f75fdd615","2ba453918c1fcf1cbb2836f731534f356d5fe65ed9628811f686e8de3920ed0e","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","cc689acd4eff461c808e01225be6a16d1787e44d451310be5dd556dd7ab08457","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666","701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","6bf72b2541469cac7a7882468d25a04fdff489625452ff7d3e670c764e5a9ba1","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","981fc22acc36b6a33c9f5b3d468e975b104cf3409b881ca6cffe84c5f9fda7c1","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","f3ae0703d7a5578aaa0f847acfeba268c93f26003eea6d7f202f5fc54b579720","4dca7804ad883893f583e2d0398422cf97b08d2016139f7dbf3e1bd5d351a468","79be55362c82b8aa2f5dc063b51dbbc8f38f009d81c494aac4f671ff23fefb86","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","e1ebb68b40baf294f83dadfc98d1bb4d462f85bf3445e3116f4e85507634fdae","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","73b33f358af52e1fa1942be3b8262e3c97ef189370feea3f43acfd883c1f8639","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762","628e5558b3df3fff39a900912739dffd7da24afb87821adffdc2df20cf834c52","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","28842cb528e292a8ed099a692b51995990894c5311c8fd9eda6d4e50732552d1","f4ad8c90859112adabad50932eb0b20aba4befec159b95cea96af6a154759383","429ef858aef648db4c9c52df9862fc207ae0a23438b26bcebb572c33525648c2",{"version":"11161b4f286a736e7fc83816e3600570156f0805fbc9d422f62dae7c3f5d9648","signature":"ecbe83774c5afb06c8ff1e0c863bd4c8e21eb63ffb3e4a9febb6dd146085ba66"},"75b569a919311369d3bfbff7bcaec663454b2124c270312ec4020906020cf6f6","e1169c37e35096ddc72e09ce6b1dba0fdfa99562e24f9415fe7b31664379392f",{"version":"30477925776c3f5e2234372601144fa3df541c755aa573249759158f0497952b","affectsGlobalScope":true},{"version":"6357f2234eb83d59acd4492b8a5a631f5363ca1a623e76a7997d13578d615418","signature":"f33ed1c4b6170db46f7d11b24b24c348e0806a1a2ba94b02e249480a5cd09ba5"},"c1a660a90d6565c602fa458f53849140c9008b7000ce8823443a2b1ae9ca46a3","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","a616e1b4eed03c1feb2a6fba721e5cbcb9c23cbe29c1858949a361f80719c0e8","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6",{"version":"d9c03197b0496ab91c0d60d898744ea76c27a76e20b98b9c8f7984190d29c459","signature":"ecbe83774c5afb06c8ff1e0c863bd4c8e21eb63ffb3e4a9febb6dd146085ba66"},{"version":"995f61b0247fc15f75e5934aa2e3386c8e1d379868a22b80dc26c158d0be9c2b","signature":"ecbe83774c5afb06c8ff1e0c863bd4c8e21eb63ffb3e4a9febb6dd146085ba66"},"e59d273f3ce9e33fcae9ae358471210bf065b56d7f5eac8b05a82a97fc99dd36","f65ee1c1db33053d998edb8192a3f8a79e630170a7d6d3f99ca0988a9d8ce6c9","1f6050ac852a6550d50d7801eb7168aed5c18593bc0fa6803a23dc26350b781a",{"version":"f678e8443ae79cfbce41a2f488cdf721317b3bf22b8a1662cf5c541d89e2691f","affectsGlobalScope":true},{"version":"301b1a33102a2bf93e997834ff2f76a6766014572bfc3210310549225fbb023b","affectsGlobalScope":true},"d0d1ef12b94947508f7cde0ca5a9020f8e3571b7ae4641cbf983f823650ca794",{"version":"b7740771bfb0c90b24f104f3868fee827696d7cee49af22d36d6acef7be8b068","affectsGlobalScope":true},{"version":"9ea36f66607e706d9a29786a823c0ca51e2741bc4b70a0ee9d4c2d1742efad1c","signature":"95d99d6fc2deb1bcf72aa7219d94a0c9fc2df09759aeaad9fb71ce430e857f13"},"05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","7bc8c357aad90fb446b9baa522b1bed5901d1a1cbc59a7a658d64546c97999b4","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","fc5a5d8060efb1270b9d98ce50e6eb8900cc5229603d7afb73c7f4b4272e0d9c","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","7b61337d7e26f5f9329b74dffb93941388d97b78282f611363d8dafa37d0a2a0","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","572e62cf5f264524b956685124bdbfd9651c8f628129b627080657281090ea43","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","28b3ab6f54b290c19897dff3d4346b7f1caf6e7d2057119ec6332dc1ddf25e85","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","f39f94e8457643c4a7361d5a7330c705ae5921067b639228af3e961b9b71ae6f","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","9238230f389fb9c868643333566c6bf4a1725006958768af29f8c840593d8bca",{"version":"541dc283a52b5d742a01928c5d31fcd954b73b5b7194c4b28ae863a35bd2c24a","signature":"50c537c692e4601ffc749020690517e9b5c38dad0d559ad525300152b519423c"},"587f13f1e8157bd8cec0adda0de4ef558bb8573daa9d518d1e2af38e87ecc91f","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"bce910d9164785c9f0d4dcea4be359f5f92130c7c7833dea6138ab1db310a1f9","affectsGlobalScope":true},"7a435e0c814f58f23e9a0979045ec0ef5909aac95a70986e8bcce30c27dff228",{"version":"c81c51f43e343b6d89114b17341fb9d381c4ccbb25e0ee77532376052c801ba7","affectsGlobalScope":true},"db71be322f07f769200108aa19b79a75dd19a187c9dca2a30c4537b233aa2863","57135ce61976a8b1dadd01bb412406d1805b90db6e8ecb726d0d78e0b5f76050",{"version":"49479e21a040c0177d1b1bc05a124c0383df7a08a0726ad4d9457619642e875a","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","f302f3a47d7758f67f2afc753b9375d6504dde05d2e6ecdb1df50abbb131fc89","3690133deae19c8127c5505fcb67b04bdc9eb053796008538a9b9abbb70d85aa","5b1c0a23f464f894e7c2b2b6c56df7b9afa60ed48c5345f8618d389a636b2108","be2b092f2765222757c6441b86c53a5ea8dfed47bbc43eab4c5fe37942c866b3","8e6b05abc98adba15e1ac78e137c64576c74002e301d682e66feb77a23907ab8","1ca735bb3d407b2af4fbee7665f3a0a83be52168c728cc209755060ba7ed67bd",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"8d74c73e21579ffe9f77ce969bc0317470c63797bd4719c8895a60ce6ae6a263","affectsGlobalScope":true},"7a2ba0c9af860ac3e77b35ed01fd96d15986f17aa22fe40f188ae556fb1070df","765f9f91293be0c057d5bf2b59494e1eac70efae55ff1c27c6e47c359bc889d2","55709608060f77965c270ac10ac646286589f1bd1cb174fff1778a2dd9a7ef31","3122a3f1136508a27a229e0e4e2848299028300ffa11d0cdfe99df90c492fe20","42b40e40f2a358cda332456214fad311e1806a6abf3cebaaac72496e07556642","354612fe1d49ecc9551ea3a27d94eef2887b64ef4a71f72ca444efe0f2f0ba80",{"version":"ac0c77cd7db52b3c278bdd1452ce754014835493d05b84535f46854fdc2063b2","affectsGlobalScope":true},"b9f36877501f2ce0e276e993c93cd2cf325e78d0409ec4612b1eb9d6a537e60b","5e2b91328a540a0933ab5c2203f4358918e6f0fe7505d22840a891a6117735f1","3abc3512fa04aa0230f59ea1019311fd8667bd935d28306311dccc8b17e79d5d",{"version":"14a50dafe3f45713f7f27cb6320dff07c6ac31678f07959c2134260061bf91ff","affectsGlobalScope":true},{"version":"19da7150ca062323b1db6311a6ef058c9b0a39cc64d836b5e9b75d301869653b","affectsGlobalScope":true},"1349077576abb41f0e9c78ec30762ff75b710208aff77f5fdcc6a8c8ce6289dd","e2ce82603102b5c0563f59fb40314cc1ff95a4d521a66ad14146e130ea80d89c","a3e0395220255a350aa9c6d56f882bfcb5b85c19fddf5419ec822cf22246a26d","c27b01e8ddff5cd280711af5e13aecd9a3228d1c256ea797dd64f8fdec5f7df5","898840e876dfd21843db9f2aa6ae38ba2eab550eb780ff62b894b9fbfebfae6b","c58642af30c06a8e250d248a747ceb045af9a92d8cab22478d80c3bef276bfd5","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","785e5be57d4f20f290a20e7b0c6263f6c57fd6e51283050756cef07d6d651c68","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","164deb2409ac5f4da3cd139dbcee7f7d66753d90363a4d7e2db8d8874f272270",{"version":"ffc62d73b4fa10ca8c59f8802df88efefe447025730a24ee977b60adedc5bf37","affectsGlobalScope":true},{"version":"ab294c4b7279318ee2a8fdf681305457ecc05970c94108d304933f18823eeac1","affectsGlobalScope":true},"ad08154d9602429522cac965a715fde27d421d69b24756c5d291877dda75353e","5bc85813bfcb6907cc3a960fec8734a29d7884e0e372515147720c5991b8bc22","812b25f798033c202baedf386a1ccc41f9191b122f089bffd10fdccce99fba11","993325544790073f77e945bee046d53988c0bc3ac5695c9cf8098166feb82661",{"version":"4d06f3abc2a6aae86f1be39e397372f74fb6e7964f594d645926b4a3419cc15d","affectsGlobalScope":true},{"version":"0e08c360c9b5961ecb0537b703e253842b3ded53151ee07024148219b61a8baf","affectsGlobalScope":true},"2ce2210032ccaff7710e2abf6a722e62c54960458e73e356b6a365c93ab6ca66","92db194ef7d208d5e4b6242a3434573fd142a621ff996d84cc9dbba3553277d0","16a3080e885ed52d4017c902227a8d0d8daf723d062bec9e45627c6fdcd6699b",{"version":"0bd9543cd8fc0959c76fb8f4f5a26626c2ed62ef4be98fd857bce268066db0a2","affectsGlobalScope":true},"1ca6858a0cbcd74d7db72d7b14c5360a928d1d16748a55ecfa6bfaff8b83071b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ebf3434b09c527078aa74139ff367fffa64fea32a01d6c06fb0a69b0ecadf43e","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","6d969939c4a63f70f2aa49e88da6f64b655c8e6799612807bef41ccff6ea0da9",{"version":"b2fdcc3836d425833af10e536ae5491c34e218bc71870f12a401720f874b6ce4","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4,"useDefineForClassFields":false},"fileIdsList":[[209],[209,219],[48,209],[57,209],[48,57,209],[48,57,65,209],[46,47,209],[96,209],[94,133,209],[55,94,95,96,209],[95,97,209],[55,56,102,103,104,106,209],[55,107,209],[55,102,104,137,209],[55,138,209],[52,97,133,134,209],[55,135,209],[55,209],[55,121,209],[55,122,209],[55,95,97,99,100,209],[55,101,209],[95,209],[96,98,209],[94,99,209],[125,209],[126,127,128,129,209],[55,125,209],[52,55,209],[55,93,209],[68,209],[86,93,109,111,112,113,114,115,116,117,118,209],[85,209],[91,110,209],[56,108,209],[87,88,89,90,92,209],[55,91,209],[52,55,56,209],[52,55,56,87,209],[52,55,87,209],[52,55,89,209],[78,79,80,81,209],[75,77,82,83,84,209],[68,76,209],[70,71,72,73,74,209],[71,72,209],[70,71,73,209],[141,142,143,144,145,146,147,148,149,150,151,154,155,156,157,158,159,160,209],[152,153,209],[153,209],[152,209],[209,221,224],[163,209],[166,209],[167,172,200,209],[168,179,180,187,197,208,209],[168,169,179,187,209],[170,209],[171,172,180,188,209],[172,197,205,209],[173,175,179,187,209],[174,209],[175,176,209],[179,209],[177,179,209],[179,180,181,197,208,209],[179,180,181,194,197,200,209],[209,213],[175,179,182,187,197,208,209],[179,180,182,183,187,197,205,208,209],[182,184,197,205,208,209],[163,164,165,166,167,168,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],[179,185,209],[186,208,209],[175,179,187,197,209],[188,209],[189,209],[166,190,209],[191,207,209,213],[192,209],[193,209],[179,194,195,209],[194,196,209,211],[167,179,197,198,199,200,209],[167,197,199,209],[197,198,209],[200,209],[201,209],[197,209],[179,203,204,209],[203,204,209],[172,187,197,205,209],[206,209],[187,207,209],[167,182,193,208,209],[172,209],[197,209,210],[209,211],[209,212],[167,172,179,181,190,197,208,209,211,213],[197,209,214],[49,209],[166,209,216,217,223],[209,221],[209,218,222],[48,52,209],[52,209],[51,52,209],[50,51,209],[58,59,60,61,62,63,64,65,66,209],[105,209],[48,52,53,54,209],[209,220],[44,209],[44,52,85,119,120,124,131,132,140,161,209],[44,55,67,69,85,123,209],[44,55,56,67,69,85,119,209],[44,55,56,67,69,85,130,209],[44,55,67,85,119,128,130,136,139,209],[120,124,131,132,140],[123],[56],[52,55,128,136,139]],"referencedMap":[[217,1],[220,2],[46,1],[57,3],[58,4],[61,5],[59,5],[63,5],[66,6],[65,1],[64,5],[62,5],[60,4],[47,1],[48,7],[94,1],[96,1],[133,8],[134,9],[121,1],[103,1],[97,10],[137,11],[95,1],[107,12],[108,13],[138,14],[139,15],[135,16],[136,17],[56,18],[122,19],[123,20],[101,21],[102,22],[104,23],[99,24],[100,25],[98,1],[126,26],[130,27],[127,28],[129,29],[128,29],[117,30],[118,31],[110,29],[119,32],[86,33],[113,34],[114,34],[111,34],[112,34],[116,34],[115,34],[109,35],[93,36],[92,37],[91,38],[88,39],[89,40],[90,41],[87,29],[78,1],[80,1],[81,1],[82,42],[79,1],[83,18],[85,43],[84,1],[77,44],[70,1],[75,45],[73,46],[72,47],[74,1],[71,1],[157,1],[142,1],[155,1],[150,1],[144,1],[151,1],[160,1],[143,1],[156,1],[147,1],[161,48],[158,1],[145,1],[148,1],[149,1],[141,1],[159,1],[146,1],[154,49],[152,50],[153,51],[219,1],[225,52],[163,53],[164,53],[166,54],[167,55],[168,56],[169,57],[170,58],[171,59],[172,60],[173,61],[174,62],[175,63],[176,63],[178,64],[177,65],[179,64],[180,66],[181,67],[165,68],[215,1],[182,69],[183,70],[184,71],[216,72],[185,73],[186,74],[187,75],[188,76],[189,77],[190,78],[191,79],[192,80],[193,81],[194,82],[195,82],[196,83],[197,84],[199,85],[198,86],[200,87],[201,88],[202,89],[203,90],[204,91],[205,92],[206,93],[207,94],[208,95],[209,96],[210,97],[211,98],[212,99],[213,100],[214,101],[50,102],[49,1],[218,1],[224,103],[125,1],[222,104],[223,105],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,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],[53,106],[51,107],[105,108],[54,1],[52,109],[67,110],[106,111],[55,112],[221,113],[69,31],[76,31],[68,1],[44,1],[45,114],[162,115],[124,116],[120,117],[131,118],[132,117],[140,119]],"exportedModulesMap":[[217,1],[220,2],[46,1],[57,3],[58,4],[61,5],[59,5],[63,5],[66,6],[65,1],[64,5],[62,5],[60,4],[47,1],[48,7],[94,1],[96,1],[133,8],[134,9],[121,1],[103,1],[97,10],[137,11],[95,1],[107,12],[108,13],[138,14],[139,15],[135,16],[136,17],[56,18],[122,19],[123,20],[101,21],[102,22],[104,23],[99,24],[100,25],[98,1],[126,26],[130,27],[127,28],[129,29],[128,29],[117,30],[118,31],[110,29],[119,32],[86,33],[113,34],[114,34],[111,34],[112,34],[116,34],[115,34],[109,35],[93,36],[92,37],[91,38],[88,39],[89,40],[90,41],[87,29],[78,1],[80,1],[81,1],[82,42],[79,1],[83,18],[85,43],[84,1],[77,44],[70,1],[75,45],[73,46],[72,47],[74,1],[71,1],[157,1],[142,1],[155,1],[150,1],[144,1],[151,1],[160,1],[143,1],[156,1],[147,1],[161,48],[158,1],[145,1],[148,1],[149,1],[141,1],[159,1],[146,1],[154,49],[152,50],[153,51],[219,1],[225,52],[163,53],[164,53],[166,54],[167,55],[168,56],[169,57],[170,58],[171,59],[172,60],[173,61],[174,62],[175,63],[176,63],[178,64],[177,65],[179,64],[180,66],[181,67],[165,68],[215,1],[182,69],[183,70],[184,71],[216,72],[185,73],[186,74],[187,75],[188,76],[189,77],[190,78],[191,79],[192,80],[193,81],[194,82],[195,82],[196,83],[197,84],[199,85],[198,86],[200,87],[201,88],[202,89],[203,90],[204,91],[205,92],[206,93],[207,94],[208,95],[209,96],[210,97],[211,98],[212,99],[213,100],[214,101],[50,102],[49,1],[218,1],[224,103],[125,1],[222,104],[223,105],[8,1],[9,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[4,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],[53,106],[51,107],[105,108],[54,1],[52,109],[67,110],[106,111],[55,112],[221,113],[69,31],[76,31],[68,1],[44,1],[162,120],[124,121],[120,122],[131,122],[132,122],[140,123]],"semanticDiagnosticsPerFile":[217,220,46,57,58,61,59,63,66,65,64,62,60,47,48,94,96,133,134,121,103,97,137,95,107,108,138,139,135,136,56,122,123,101,102,104,99,100,98,126,130,127,129,128,117,118,110,119,86,113,114,111,112,116,115,109,93,92,91,88,89,90,87,78,80,81,82,79,83,85,84,77,70,75,73,72,74,71,157,142,155,150,144,151,160,143,156,147,161,158,145,148,149,141,159,146,154,152,153,219,225,163,164,166,167,168,169,170,171,172,173,174,175,176,178,177,179,180,181,165,215,182,183,184,216,185,186,187,188,189,190,191,192,193,194,195,196,197,199,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,50,49,218,224,125,222,223,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,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,53,51,105,54,52,67,106,55,221,69,76,68,44,45,162,124,120,131,132,140]},"version":"4.9.5"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/apptool-ui",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.71",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"@things-factory/apptool-base": "^6.1.68",
|
|
33
33
|
"@things-factory/setting-base": "^6.1.66"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "468074de192c57950fc398df7c0eab3deeb2b7c6"
|
|
36
36
|
}
|
package/translations/en.json
CHANGED
package/translations/ja.json
CHANGED
package/translations/ko.json
CHANGED
package/translations/ms.json
CHANGED
package/translations/zh.json
CHANGED