@operato/scene-timer 0.0.11

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.
Files changed (51) hide show
  1. package/@types/global/index.d.ts +1 -0
  2. package/CHANGELOG.md +12 -0
  3. package/LICENSE +21 -0
  4. package/README.md +31 -0
  5. package/assets/duetimer.png +0 -0
  6. package/assets/timer.png +0 -0
  7. package/dist/duetimer.d.ts +35 -0
  8. package/dist/duetimer.js +113 -0
  9. package/dist/duetimer.js.map +1 -0
  10. package/dist/index.d.ts +4 -0
  11. package/dist/index.js +4 -0
  12. package/dist/index.js.map +1 -0
  13. package/dist/libs/format.d.ts +7 -0
  14. package/dist/libs/format.js +42 -0
  15. package/dist/libs/format.js.map +1 -0
  16. package/dist/templates/duetimer.d.ts +22 -0
  17. package/dist/templates/duetimer.js +24 -0
  18. package/dist/templates/duetimer.js.map +1 -0
  19. package/dist/templates/index.d.ts +18 -0
  20. package/dist/templates/index.js +4 -0
  21. package/dist/templates/index.js.map +1 -0
  22. package/dist/templates/timer.d.ts +18 -0
  23. package/dist/templates/timer.js +20 -0
  24. package/dist/templates/timer.js.map +1 -0
  25. package/dist/timer.d.ts +34 -0
  26. package/dist/timer.js +129 -0
  27. package/dist/timer.js.map +1 -0
  28. package/helps/scene/component/duetimer.ko.md +41 -0
  29. package/helps/scene/component/duetimer.md +40 -0
  30. package/helps/scene/component/duetimer.zh.md +39 -0
  31. package/helps/scene/component/timer.ko.md +64 -0
  32. package/helps/scene/component/timer.md +62 -0
  33. package/helps/scene/component/timer.zh.md +63 -0
  34. package/helps/scene/images/rect-button.png +0 -0
  35. package/helps/scene/images/timer-data-bind.png +0 -0
  36. package/helps/scene/images/timer-fill-color.png +0 -0
  37. package/package.json +62 -0
  38. package/src/duetimer.ts +138 -0
  39. package/src/index.ts +4 -0
  40. package/src/libs/format.ts +47 -0
  41. package/src/templates/duetimer.ts +24 -0
  42. package/src/templates/index.ts +4 -0
  43. package/src/templates/timer.ts +20 -0
  44. package/src/timer.ts +156 -0
  45. package/things-scene.config.js +5 -0
  46. package/translations/en.json +11 -0
  47. package/translations/ko.json +11 -0
  48. package/translations/ms.json +11 -0
  49. package/translations/zh.json +11 -0
  50. package/tsconfig.json +23 -0
  51. package/tsconfig.tsbuildinfo +1 -0
package/src/timer.ts ADDED
@@ -0,0 +1,156 @@
1
+ /*
2
+ * Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+
5
+ import { Component, Properties, RectPath, Shape, error } from '@hatiolab/things-scene'
6
+
7
+ import format from './libs/format'
8
+
9
+ const NATURE = {
10
+ mutable: false,
11
+ resizable: true,
12
+ rotatable: true,
13
+ properties: [
14
+ {
15
+ type: 'number',
16
+ label: 'days',
17
+ name: 'days',
18
+ placeholder: 'days'
19
+ },
20
+ {
21
+ type: 'number',
22
+ label: 'hours',
23
+ name: 'hours',
24
+ placeholder: 'hours'
25
+ },
26
+ {
27
+ type: 'number',
28
+ label: 'minutes',
29
+ name: 'minutes',
30
+ placeholder: 'minutes'
31
+ },
32
+ {
33
+ type: 'number',
34
+ label: 'seconds',
35
+ name: 'seconds',
36
+ placeholder: 'seconds'
37
+ },
38
+ {
39
+ type: 'string',
40
+ label: 'format-run',
41
+ name: 'format-run',
42
+ placeholder: 'hh:mm:ss'
43
+ },
44
+ {
45
+ type: 'string',
46
+ label: 'format-stop',
47
+ name: 'format-stop',
48
+ placeholder: '--:--:--'
49
+ },
50
+ {
51
+ type: 'color',
52
+ label: 'background-color',
53
+ name: 'backgroundColor',
54
+ property: 'backgroundColor'
55
+ }
56
+ ],
57
+ 'value-property': 'timeout',
58
+ help: 'scene/component/timer'
59
+ }
60
+
61
+ export default class Timer extends RectPath(Shape) {
62
+ private _due?: number
63
+
64
+ static get nature() {
65
+ return NATURE
66
+ }
67
+
68
+ ready() {
69
+ if (!this.app.isViewMode) {
70
+ return
71
+ }
72
+
73
+ var { days = 0, hours = 0, minutes = 0, seconds = 0 } = this.state
74
+
75
+ this.timeout = days * 86400 + hours * 3600 + minutes * 60 + seconds
76
+ }
77
+
78
+ onchange(after: Properties) {
79
+ if ('timeout' in after) {
80
+ this._due = Date.now() + this.timeout * 1000
81
+ this.counting()
82
+ }
83
+ }
84
+
85
+ counting() {
86
+ requestAnimationFrame(() => {
87
+ const countdown = this.countdown
88
+
89
+ if (countdown > 0) {
90
+ this.set('data', format(countdown, this.getState('format-run')))
91
+
92
+ setTimeout(() => {
93
+ this.counting()
94
+ }, 1000)
95
+ } else {
96
+ this.set('data', this.getState('format-stop'))
97
+ }
98
+ })
99
+ }
100
+
101
+ render(context: CanvasRenderingContext2D) {
102
+ var { top, left, height, width, backgroundColor = 'transparent' } = this.model
103
+
104
+ // background의 색상
105
+ context.beginPath()
106
+ context.rect(left, top, width, height)
107
+
108
+ context.fillStyle = backgroundColor
109
+ context.fill()
110
+
111
+ // value의 색상
112
+ context.beginPath()
113
+
114
+ var progress = (this.countdown / this.timeout) * 100
115
+
116
+ if (!isNaN(progress)) {
117
+ progress = width - (width * progress) / 100
118
+ progress = Math.max(Math.min(progress, width), 0)
119
+
120
+ context.rect(left, top, progress, height)
121
+ this.drawFill(context)
122
+
123
+ context.beginPath()
124
+ }
125
+
126
+ // stroke
127
+ context.rect(left, top, width, height)
128
+ }
129
+
130
+ postrender(context: CanvasRenderingContext2D) {
131
+ this.drawStroke(context)
132
+ this.drawText(context)
133
+ }
134
+
135
+ get timeout() {
136
+ return Number(this.getState('timeout') || 0)
137
+ }
138
+
139
+ set timeout(timeout) {
140
+ this.setState('timeout', Number(timeout) || 0)
141
+ }
142
+
143
+ get countdown() {
144
+ const timeout = this.timeout
145
+ if (!timeout || timeout < 0) {
146
+ return 0
147
+ }
148
+
149
+ const due = this._due || 0
150
+ const now = Date.now()
151
+
152
+ return Math.max(Math.round((due - now) / 1000), 0)
153
+ }
154
+ }
155
+
156
+ Component.register('timer', Timer)
@@ -0,0 +1,5 @@
1
+ import templates from './templates'
2
+
3
+ export default {
4
+ templates
5
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "keyword": "keyword",
3
+ "label.background-color": "background color",
4
+ "label.days": "days",
5
+ "label.due": "due",
6
+ "label.hours": "hours",
7
+ "label.minutes": "minutes",
8
+ "label.seconds": "seconds",
9
+ "label.format-run": "time format",
10
+ "label.format-stop": "stopped"
11
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "keyword": "키워드",
3
+ "label.background-color": "배경 색상",
4
+ "label.days": "일수",
5
+ "label.due": "종료시간",
6
+ "label.hours": "시간",
7
+ "label.minutes": "분",
8
+ "label.seconds": "초",
9
+ "label.format-run": "포맷",
10
+ "label.format-stop": "멈춤"
11
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "keyword": "[ms] keyword",
3
+ "label.background-color": "warna latar belakang",
4
+ "label.days": "[ms] days",
5
+ "label.due": "[ms] due",
6
+ "label.hours": "[ms] hours",
7
+ "label.minutes": "[ms] minutes",
8
+ "label.seconds": "[ms] seconds",
9
+ "label.format-run": "[ms] time format",
10
+ "label.format-stop": "[ms] stopped"
11
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "keyword": "关键词",
3
+ "label.background-color": "背景颜色",
4
+ "label.days": "天",
5
+ "label.due": "截止时间",
6
+ "label.hours": "小时",
7
+ "label.minutes": "分钟",
8
+ "label.seconds": "秒钟",
9
+ "label.format-run": "时间格式",
10
+ "label.format-stop": "停止格式"
11
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2018",
4
+ "module": "esnext",
5
+ "moduleResolution": "node",
6
+ "noEmitOnError": true,
7
+ "lib": ["es2017", "dom"],
8
+ "strict": true,
9
+ "esModuleInterop": false,
10
+ "allowSyntheticDefaultImports": true,
11
+ "experimentalDecorators": true,
12
+ "importHelpers": true,
13
+ "outDir": "dist",
14
+ "sourceMap": true,
15
+ "inlineSources": true,
16
+ "rootDir": "src",
17
+ "declaration": true,
18
+ "incremental": true,
19
+ "typeRoots": ["./node_modules", "@types"],
20
+ "types": ["node"]
21
+ },
22
+ "include": ["**/*.ts", "*.d.ts"]
23
+ }
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.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.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","./@types/global/index.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/libs/format.ts","./src/duetimer.ts","./src/timer.ts","./src/index.ts","./src/templates/duetimer.ts","./src/templates/timer.ts","./src/templates/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/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/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/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"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","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":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"c4f5f288a2b8dcfb6183e29612ec26b7a049314a6a10b7e6e700a8307077455a","12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","63442cdfb7730e572342d7e279d40752917dc952af0ae185a49d099a9d68496e","85b47ab2c2fc5e81ec764eabf50bd1380ae63741ae2c0bfd20a234d02c1f246d","53fc0898a0587595cb548ce2ddef21c80bef0d13490f2d65a2a07beeb8c33048","96ae6c624f9bd40f13929a04bd5c382827a7727bdc294e9998a83c25b4c716e6","2dd2b057147abca28a846a64b71c8caf21e1505807ef225e4cb73596304d5702","a2f38ccacd10db714b7a6ad585ad0fc6145a3536228abf5afb04966d3e7bb4e6","9fd532b7a89113a2539b3247bb4a1d16ffdfa268f02c9f076b6a244483f1b883","be439043610c2ff0c51e0e3dfc51dfc718df9c7b323032a0e040d413da6add4b","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","5533392c50c51b1a5c32b89f13145db929c574ef1c5949cf67a074a05ea107d9","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a7971f9fb2a32ec7788ec6cda9d7a33c02023dfe9a62db2030ad1359649d8050","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[93],[50,93],[53,93],[54,59,93],[55,65,66,73,82,92,93],[55,56,65,73,93],[57,93],[58,59,66,74,93],[59,82,89,93],[60,62,65,73,93],[61,93],[62,63,93],[64,65,93],[65,93],[65,66,67,82,92,93],[65,66,67,82,93],[68,73,82,92,93],[65,66,68,69,73,82,89,92,93],[68,70,82,89,92,93],[50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[65,71,93],[72,92,93],[62,65,73,82,93],[74,93],[75,93],[53,76,93],[77,91,93,97],[78,93],[79,93],[65,80,93],[80,81,93,95],[65,82,83,84,93],[82,84,93],[82,83,93],[85,93],[86,93],[65,87,88,93],[87,88,93],[59,73,89,93],[90,93],[73,91,93],[54,68,79,92,93],[59,93],[82,93,94],[93,95],[93,96],[54,59,65,67,76,82,92,93,95,97],[82,93,98],[41,42,43,93],[41,44,45,93],[41,93],[40,41,93],[41,47,48,93]],"referencedMap":[[42,1],[50,2],[51,2],[53,3],[54,4],[55,5],[56,6],[57,7],[58,8],[59,9],[60,10],[61,11],[62,12],[63,12],[64,13],[65,14],[66,15],[67,16],[52,1],[99,1],[68,17],[69,18],[70,19],[100,20],[71,21],[72,22],[73,23],[74,24],[75,25],[76,26],[77,27],[78,28],[79,29],[80,30],[81,31],[82,32],[84,33],[83,34],[85,35],[86,36],[87,37],[88,38],[89,39],[90,40],[91,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[41,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[38,1],[34,1],[35,1],[36,1],[37,1],[1,1],[39,1],[40,1],[44,49],[46,50],[43,51],[47,52],[49,53],[48,52],[45,49]],"exportedModulesMap":[[42,1],[50,2],[51,2],[53,3],[54,4],[55,5],[56,6],[57,7],[58,8],[59,9],[60,10],[61,11],[62,12],[63,12],[64,13],[65,14],[66,15],[67,16],[52,1],[99,1],[68,17],[69,18],[70,19],[100,20],[71,21],[72,22],[73,23],[74,24],[75,25],[76,26],[77,27],[78,28],[79,29],[80,30],[81,31],[82,32],[84,33],[83,34],[85,35],[86,36],[87,37],[88,38],[89,39],[90,40],[91,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[41,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[38,1],[34,1],[35,1],[36,1],[37,1],[1,1],[39,1],[40,1],[44,49],[46,50],[43,51],[47,52],[49,53],[48,52],[45,49]],"semanticDiagnosticsPerFile":[42,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,52,99,68,69,70,100,71,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,41,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,40,44,46,43,47,49,48,45]},"version":"4.5.2"}