@operato/scene-tab 8.0.0-beta.1 → 9.0.0-beta.0

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/src/tab.ts DELETED
@@ -1,300 +0,0 @@
1
- /*
2
- * Copyright © HatioLab Inc. All rights reserved.
3
- */
4
- import {
5
- Component,
6
- ComponentNature,
7
- Container,
8
- LinearHorizontalLayout,
9
- LinearVerticalLayout,
10
- Model,
11
- State,
12
- Style
13
- } from '@hatiolab/things-scene'
14
- import TabButton from './tab-button'
15
-
16
- const HANDLE_WIDTH = 25
17
- const HANDLE_HEIGHT = 25
18
-
19
- function rgba(r: number, g: number, b: number, a: number) {
20
- return `rgba(${r}, ${g}, ${b}, ${a})`
21
- }
22
-
23
- const NATURE: ComponentNature = {
24
- mutable: false,
25
- resizable: true,
26
- rotatable: true,
27
- properties: [
28
- {
29
- type: 'id-input',
30
- label: 'tab-reference',
31
- name: 'reference',
32
- property: {
33
- component: (c: Component) => {
34
- /* this means compare target component */
35
- const ret = ['tab-container', 'indoor-map'].includes(c.model.type as string)
36
- return ret
37
- }
38
- }
39
- },
40
- {
41
- type: 'number',
42
- label: 'tab-active-index',
43
- name: 'activeIndex',
44
- property: {
45
- min: 0,
46
- step: 1
47
- }
48
- },
49
- {
50
- type: 'color',
51
- label: 'active-fill-style',
52
- name: 'activeFillStyle',
53
- property: 'activeFillStyle'
54
- },
55
- {
56
- type: 'color',
57
- label: 'active-font-color',
58
- name: 'activeFontColor',
59
- property: 'activeFontColor'
60
- },
61
- {
62
- type: 'color',
63
- label: 'active-line-color',
64
- name: 'activeLineColor',
65
- property: 'activeLineColor'
66
- },
67
- {
68
- type: 'number',
69
- label: 'active-line-width',
70
- name: 'activeLineWidth',
71
- property: 'activeLineWidth'
72
- }
73
- ],
74
- 'value-property': 'activeIndex',
75
- help: 'scene/component/tab'
76
- }
77
-
78
- export default class Tab extends Container {
79
- get layout() {
80
- let { width, height } = this.state
81
-
82
- if (width >= height) {
83
- return LinearHorizontalLayout
84
- } else {
85
- return LinearVerticalLayout
86
- }
87
- }
88
-
89
- get nature() {
90
- return NATURE
91
- }
92
-
93
- get focusible() {
94
- return false
95
- }
96
-
97
- get reference() {
98
- var { reference } = this.state
99
- if (!reference) {
100
- return null
101
- }
102
-
103
- if (!this._reference) {
104
- this._reference = this.root.findById(reference)
105
- // this._reference?.on('change', this.onRefChanged, this)
106
- }
107
-
108
- return this._reference
109
- }
110
-
111
- get activeIndex() {
112
- return this.getState('activeIndex')
113
- }
114
-
115
- private _reference: any
116
-
117
- set reference(reference) {
118
- // this.reference?.off('change', this.onRefChanged, this)
119
-
120
- this._reference = null
121
- this.model.reference = reference
122
- }
123
-
124
- set activeIndex(index) {
125
- this.setState('activeIndex', index)
126
- if (this.reference) {
127
- this.reference.activeIndex = index
128
- }
129
- }
130
-
131
- ready() {
132
- super.ready()
133
-
134
- this.data = this.state?.activeIndex || 0
135
-
136
- this.setTabButtonsStyle(this.state)
137
- }
138
-
139
- render(context: CanvasRenderingContext2D) {
140
- super.render(context)
141
-
142
- if (this.reference) {
143
- if (this.size() !== this.reference.size()) {
144
- this.rebuildTabButtons()
145
- }
146
- } else {
147
- // TODO reference 가 잘못되거나 안되어있다는 경고 의미로 뭔가 그려라..
148
- var componentsLength = this.components.length
149
-
150
- for (var i = componentsLength - 1; i >= 0; i--) {
151
- var tabBtn = this.components[i]
152
- this.removeComponent(tabBtn)
153
- }
154
- }
155
- }
156
-
157
- contains(x: number, y: number) {
158
- if (!this.app.isEditMode) {
159
- return super.contains(x, y)
160
- }
161
-
162
- if (super.contains(x, y)) {
163
- return true
164
- }
165
-
166
- var { left, top, width } = this.bounds
167
-
168
- var right = left + width
169
-
170
- var h = HANDLE_HEIGHT
171
-
172
- return (
173
- x < Math.max(right + HANDLE_WIDTH, right) &&
174
- x > Math.min(right + HANDLE_WIDTH, right) &&
175
- y < Math.max(top + h, top) &&
176
- y > Math.min(top + h, top)
177
- )
178
- }
179
-
180
- // dispose() {
181
- // this.reference?.off('change', this.onRefChanged, this)
182
-
183
- // super.dispose()
184
- // }
185
-
186
- rebuildTabButtons() {
187
- var {
188
- width,
189
- height,
190
- fillStyle,
191
- activeFillStyle,
192
- activeLineColor,
193
- activeLineWidth,
194
- strokeStyle,
195
- fontColor,
196
- activeFontColor,
197
- fontFamily,
198
- fontSize,
199
- lineHeight,
200
- italic,
201
- bold,
202
- lineWidth = 0
203
- } = this.state
204
-
205
- var reference = this.reference
206
- let children = []
207
-
208
- let components = reference.components
209
-
210
- let componentsLength = this.components.length
211
-
212
- for (var i = componentsLength - 1; i >= 0; i--) {
213
- this.removeComponent(this.components[i])
214
- }
215
-
216
- for (let i = 0; i < components.length; i++) {
217
- const componentType = components[i].model.type
218
- if (componentType != 'tab-card' && componentType != 'floor') {
219
- continue
220
- }
221
-
222
- let tabCardText = components[i].text || ''
223
-
224
- children.push(
225
- Model.compile({
226
- type: 'tab-button',
227
- index: i,
228
- text: tabCardText || String(i + 1),
229
- fillStyle: fillStyle || 'transparent',
230
- activeFillStyle: activeFillStyle,
231
- activeLineColor: activeLineColor,
232
- activeLineWidth: activeLineWidth,
233
- activeFontColor: activeFontColor || fontColor,
234
- fontColor: fontColor,
235
- fontFamily: fontFamily,
236
- fontSize: fontSize,
237
- lineHeight: lineHeight,
238
- italic: italic,
239
- bold: bold,
240
- strokeStyle: strokeStyle,
241
- lineWidth: lineWidth,
242
- left: 0,
243
- top: 0,
244
- width: width,
245
- height: height
246
- })
247
- )
248
- }
249
-
250
- this.add(children)
251
-
252
- this.reflow()
253
-
254
- this.activeIndex = this.state.activeIndex || 0
255
- }
256
-
257
- setTabButtonsStyle(style: Style) {
258
- const toCopy = {} as any
259
-
260
- if ('fillStyle' in style) toCopy.fillStyle = style.fillStyle
261
- if ('fontColor' in style) toCopy.fontColor = style.fontColor
262
- if ('strokeStyle' in style) toCopy.strokeStyle = style.strokeStyle
263
- if ('lineWidth' in style) toCopy.lineWidth = style.lineWidth
264
-
265
- if ('activeFillStyle' in style) toCopy.activeFillStyle = style.activeFillStyle
266
- if ('activeFontColor' in style) toCopy.activeFontColor = style.activeFontColor
267
- if ('activeLineWidth' in style) toCopy.activeLineWidth = style.activeLineWidth
268
- if ('activeLineColor' in style) toCopy.activeLineColor = style.activeLineColor
269
-
270
- var children = this.components
271
-
272
- for (var i in children) {
273
- var tabBtn = children[i]
274
- ;(tabBtn as TabButton).setStylesFromParent(toCopy)
275
- }
276
- }
277
-
278
- // onRefChanged(after: any, before: any, hint: any) {
279
- // let sourceIndex = hint.deliverer.indexOf(hint.origin)
280
- // if (this.components[sourceIndex]) {
281
- // this.components[sourceIndex].set(after)
282
- // this.invalidate()
283
- // }
284
- // }
285
-
286
- onchange(after: State, before: State) {
287
- if ('reference' in after) {
288
- this.reference = after.reference
289
- this.invalidate()
290
- }
291
-
292
- if ('activeIndex' in after) {
293
- this.data = after.activeIndex
294
- }
295
-
296
- this.setTabButtonsStyle(after)
297
- }
298
- }
299
-
300
- Component.register('tab', Tab)
@@ -1,4 +0,0 @@
1
- import TabContainer from './tab-container'
2
- import Tab from './tab'
3
-
4
- export default [TabContainer, Tab]
@@ -1,17 +0,0 @@
1
- const icon = new URL('../../icons/tab-container.png', import.meta.url).href
2
-
3
- export default {
4
- type: 'tab-container',
5
- description: 'tab container(card layout)',
6
- group: 'container' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,
7
- icon,
8
- model: {
9
- type: 'tab-container',
10
- left: 100,
11
- top: 100,
12
- width: 200,
13
- height: 200,
14
- fontSize: 80,
15
- lineWidth: 1
16
- }
17
- }
@@ -1,20 +0,0 @@
1
- const icon = new URL('../../icons/tab.png', import.meta.url).href
2
-
3
- export default {
4
- type: 'tab',
5
- description: 'tab-container control tab',
6
- group: 'container' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,
7
- icon,
8
- model: {
9
- type: 'tab',
10
- left: 100,
11
- top: 100,
12
- width: 100,
13
- height: 400,
14
- lineWidth: 5,
15
- fillStyle: 'navy',
16
- activeFillStyle: 'red',
17
- strokeStyle: 'white',
18
- fontColor: 'white'
19
- }
20
- }
@@ -1,67 +0,0 @@
1
- <!doctype html>
2
- <!--
3
- @license
4
- Copyright © HatioLab Inc. All rights reserved.
5
- -->
6
- <html>
7
- <head>
8
- <meta charset="utf-8">
9
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
10
-
11
- <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
12
- <script src="../../web-component-tester/browser.js"></script>
13
-
14
- <!-- Step 1: import the element to test -->
15
- <link rel="import" href="../things-scene-tab.html">
16
- </head>
17
- <body>
18
-
19
- <!-- You can use the document as a place to set up your fixtures. -->
20
- <test-fixture id="things-scene-tab-fixture">
21
- <template>
22
- <things-scene-tab>
23
- <h2>things-scene-tab</h2>
24
- </things-scene-tab>
25
- </template>
26
- </test-fixture>
27
-
28
- <script>
29
- suite('<things-scene-tab>', function() {
30
-
31
- var myEl;
32
-
33
- setup(function() {
34
- myEl = fixture('things-scene-tab-fixture');
35
- });
36
-
37
- test('defines the "author" property', function() {
38
- assert.equal(myEl.author.name, 'Dimitri Glazkov');
39
- assert.equal(myEl.author.image, 'http://addyosmani.com/blog/wp-content/uploads/2013/04/unicorn.jpg');
40
- });
41
-
42
- test('says hello', function() {
43
- assert.equal(myEl.sayHello(), 'things-scene-tab says, Hello World!');
44
-
45
- var greetings = myEl.sayHello('greetings Earthlings');
46
- assert.equal(greetings, 'things-scene-tab says, greetings Earthlings');
47
- });
48
-
49
- test('fires lasers', function(done) {
50
- myEl.addEventListener('things-scene-tab-lasers', function(event) {
51
- assert.equal(event.detail.sound, 'Pew pew!');
52
- done();
53
- });
54
- myEl.fireLasers();
55
- });
56
-
57
- test('distributed children', function() {
58
- var els = myEl.getContentChildren();
59
- assert.equal(els.length, 1, 'one distributed node');
60
- assert.equal(els[0], myEl.querySelector('h2'), 'content distributed correctly');
61
- });
62
-
63
- });
64
- </script>
65
-
66
- </body>
67
- </html>
package/test/index.html DELETED
@@ -1,22 +0,0 @@
1
- <!doctype html>
2
- <!--
3
- @license
4
- Copyright © HatioLab Inc. All rights reserved.
5
- -->
6
- <html><head>
7
- <meta charset="utf-8">
8
- <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
9
-
10
- <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
11
- <script src="../../web-component-tester/browser.js"></script>
12
- </head>
13
- <body>
14
- <script>
15
- // Load and run all tests (.html, .js):
16
- WCT.loadSuites([
17
- 'basic-test.html',
18
- 'basic-test.html?dom=shadow'
19
- ]);
20
- </script>
21
-
22
- </body></html>
package/tsconfig.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2018",
4
- "module": "esnext",
5
- "moduleResolution": "node",
6
- "noEmitOnError": true,
7
- "lib": ["es2019", "dom"],
8
- "strict": true,
9
- "esModuleInterop": false,
10
- "allowJs": true,
11
- "allowSyntheticDefaultImports": true,
12
- "experimentalDecorators": true,
13
- "importHelpers": true,
14
- "outDir": "dist",
15
- "sourceMap": true,
16
- "inlineSources": true,
17
- "rootDir": "src",
18
- "declaration": true,
19
- "incremental": true,
20
- "skipLibCheck": true,
21
- "types": []
22
- },
23
- "include": ["**/*.ts", "*.d.ts"]
24
- }
@@ -1 +0,0 @@
1
- {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/tab-container.ts","./src/tab-card.ts","./src/tab-button.ts","./src/tab.ts","./src/index.ts","./src/templates/tab-container.ts","./src/templates/tab.ts","./src/templates/index.ts"],"fileIdsList":[[38,40,41,42,43],[38,39,43],[38,39,40],[38,39,41],[38,39,42],[38,45,46],[38]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"ef4e4dc2fd14de20903f5010671dab9cf547c831dce4802306676c80649b990b","impliedFormat":1},{"version":"43157af160186026ab64fb0b618b19e8fcfe5427e9f72b93b7e86266707e8a14","signature":"4272b1b18af2ee717d5ee74400c801837c5a9ac2509d792c177827fd6d7c563a"},{"version":"61b8b1a87df8810b18d96e5540ce18140708b6ff9bcd6e0a41da5b01834dd77f","signature":"903336d4b0a83371879de11f43ac82d819d200198638bc27d1c5324575863569"},{"version":"068cb3bf28e623cc10c030b3530b36fe8f62cfe835e537d819a2fce13ea82069","signature":"021a7c1be310ba85bf00556b0caf252ebd327042e3b469ac9c1c58f5a9ce6370"},{"version":"5c0b95b23a0fde245ff0b23bd9b7acfc36113e343cff0aead0364d50cf1698c2","signature":"b53d976bb1f6724b4c0cddbb416f52b79e20adc9c7efb5aac5f9da2861c46439"},{"version":"0f300668d702080921c78d3c4edd493925de582dce2a50c0993ac4b8c62bb7d4","signature":"88132cd35f670e57b6d85e802f4453aff313270908886369da0561fbc599c354"},{"version":"b668e19c84a1d923f78e4def083d7eb2cb0cc7b834d38e130be5a60f33d2a41f","signature":"ce7354820bf2fb9fad3221a704dbede20b61e9f30f384128b3be81f685c63a08"},{"version":"9958af937b59735fadadb4cac852bdde6aea78bfcf803deecc2f63a2f3127918","signature":"b21130ee402d2f055d24259958864b717e89897989b3663d6fe8fafbf692dd7f"},{"version":"66603f5a0bd2d7052120523791e8edb77078229aaf5314522886798ce92151bb","signature":"05890472fb38b7b901355c9294924f1da43644a9150fe916eab7b020d77aadb6"}],"root":[[40,47]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5},"referencedMap":[[44,1],[42,2],[41,3],[40,4],[43,5],[47,6],[45,7],[46,7]],"version":"5.7.2"}