@operato/scene-sted 1.1.17 → 1.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [1.1.19](https://github.com/things-scene/operato-scene/compare/v1.1.18...v1.1.19) (2022-12-07)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * add handling scene-sted change event ([22881c0](https://github.com/things-scene/operato-scene/commit/22881c09ac95bca125915347153b8e3b142fa835))
12
+
13
+
14
+
15
+ ### [1.1.18](https://github.com/things-scene/operato-scene/compare/v1.1.17...v1.1.18) (2022-12-06)
16
+
17
+
18
+ ### :bug: Bug Fix
19
+
20
+ * add input-unit-number for sted ([ec49e25](https://github.com/things-scene/operato-scene/commit/ec49e25edc7cf063052f0d3aac16abd63cdae783))
21
+
22
+
23
+
6
24
  ### [1.1.17](https://github.com/things-scene/operato-scene/compare/v1.1.16...v1.1.17) (2022-12-05)
7
25
 
8
26
 
package/db.sqlite CHANGED
Binary file
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export { default as MassFraction } from './mass-fraction';
2
+ export { default as InputUnitNumber } from './input-unit-number';
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  export { default as MassFraction } from './mass-fraction';
2
+ export { default as InputUnitNumber } from './input-unit-number';
2
3
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,iBAAiB,CAAA","sourcesContent":["export { default as MassFraction } from './mass-fraction'\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,iBAAiB,CAAA;AACzD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,qBAAqB,CAAA","sourcesContent":["export { default as MassFraction } from './mass-fraction'\nexport { default as InputUnitNumber } from './input-unit-number'\n"]}
@@ -0,0 +1,35 @@
1
+ import '@operato/input/ox-input-unit-number.js';
2
+ import { HTMLOverlayElement, Properties } from '@hatiolab/things-scene';
3
+ export default class InputUnitNumber extends HTMLOverlayElement {
4
+ static get nature(): {
5
+ mutable: boolean;
6
+ resizable: boolean;
7
+ rotatable: boolean;
8
+ properties: ({
9
+ type: string;
10
+ label: string;
11
+ name: string;
12
+ property?: undefined;
13
+ } | {
14
+ type: string;
15
+ label: string;
16
+ name: string;
17
+ property: {
18
+ options: string[];
19
+ };
20
+ } | {
21
+ type: string;
22
+ label: string;
23
+ name: string;
24
+ property: {
25
+ options: () => any[];
26
+ };
27
+ })[];
28
+ 'value-property': string;
29
+ help: string;
30
+ };
31
+ get tagName(): string;
32
+ oncreate_element(fraction: HTMLElement): void;
33
+ setElementProperties(input: HTMLElement): void;
34
+ onchange(after: Properties, before: Properties): void;
35
+ }
@@ -0,0 +1,225 @@
1
+ /*
2
+ * Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+ const UNIT_SYSTEMS = {
5
+ kg: {
6
+ mg: 1000000,
7
+ g: 1000,
8
+ ton: 0.001
9
+ },
10
+ rad: {
11
+ degree: 180 / Math.PI
12
+ },
13
+ sec: {
14
+ msec: 1000,
15
+ min: 1 / 60,
16
+ hr: 1 / 3600,
17
+ day: 1 / (3600 * 24),
18
+ year: 1 / (3600 * 24 * 365)
19
+ },
20
+ m: {
21
+ mm: 1000,
22
+ cm: 100,
23
+ inch: 39.37008
24
+ },
25
+ 'g/mol': {
26
+ 'kg/kmol': 1,
27
+ 'g/kmol': 1000
28
+ },
29
+ m2: {
30
+ mm2: 1000000,
31
+ cm2: 1000
32
+ },
33
+ m3: {
34
+ cm3: 1000000,
35
+ L: 1000,
36
+ mL: 1000000
37
+ },
38
+ 'kg/m3': {
39
+ 'g/m3': 1000,
40
+ 'g/L': 1,
41
+ 'g/cm3': 0.001,
42
+ 'kg/L': 0.001,
43
+ 'g/mL': 0.001
44
+ },
45
+ 'm/sec': {
46
+ 'm/min': 60,
47
+ 'm/hr': 3600,
48
+ 'cm/sec': 100,
49
+ 'cm/min': 6000,
50
+ 'cm/hr': 360000
51
+ },
52
+ N: {
53
+ kN: 0.001,
54
+ kgf: 0.101971621
55
+ },
56
+ Pa: {
57
+ atm: 1 / 101325,
58
+ bar: 1 / 100000,
59
+ 'kgf/cm2': 1 / 9.80665 / 10000,
60
+ MPa: 1 / 1000000,
61
+ kPa: 1 / 1000,
62
+ psi: 1 / 6894.76,
63
+ mmH2O: 1 / 9.80665,
64
+ mmHg: 1 / 133.32
65
+ },
66
+ 'kg/sec': {
67
+ 'kg/min': 60,
68
+ 'kg/hr': 3600,
69
+ 'ton/hr': 3.6,
70
+ 'ton/year': (60 * 60 * 24 * 365) / 1000
71
+ },
72
+ 'kg/m2/sec': {
73
+ 'kg/m2/min': 60,
74
+ 'kg/m2/hr': 3600
75
+ },
76
+ 'mol/sec': {
77
+ 'kmol/sec': 1 / 1000
78
+ },
79
+ 'mol/m2/sec': {
80
+ 'kmol/m2/sec': 1 / 1000
81
+ },
82
+ 'Sm3/sec': {
83
+ 'Sm3/hr': 3600,
84
+ 'Sm3/min': 60,
85
+ 'SL/min': 60000,
86
+ 'SL/sec': 1000,
87
+ 'Scm3/min': 60000000,
88
+ 'Scm3/sec': 1000000
89
+ },
90
+ 'Nm3/sec': {
91
+ 'Am3/hr': 3600,
92
+ 'Am3/min': 60,
93
+ 'AL/min': 60000,
94
+ 'AL/sec': 1000,
95
+ 'Acm3/min': 60000000,
96
+ 'Acm3/sec': 1000000
97
+ },
98
+ J: {
99
+ kJ: 1 / 1000,
100
+ MJ: 1 / 1000000,
101
+ cal: 1 / 4.184,
102
+ kcal: 1 / 4.184 / 1000
103
+ },
104
+ W: {
105
+ kW: 1 / 1000,
106
+ MW: 1 / 1000000,
107
+ 'kcal/hr': 859.85 / 1000,
108
+ hp: 1 / 745.7
109
+ },
110
+ 'W/m2': {
111
+ 'kW/m2': 1 / 1000,
112
+ 'W/cm2': 1 / 10000,
113
+ 'kW/cm2': 1 / 10000000
114
+ },
115
+ 'J/kg': {
116
+ 'kJ/kg': 1 / 1000,
117
+ 'cal/g': 1 / 4.184 / 1000,
118
+ 'cal/kg': 1 / 4.184,
119
+ 'kcal/kg': 1 / 4.184 / 1000
120
+ },
121
+ 'J/kg/K': {
122
+ 'kJ/kg/K': 1 / 1000,
123
+ 'cal/kg/K': 1 / 4.184,
124
+ 'kcal/kg/K': 1 / 4.184 / 1000,
125
+ 'cal/g/K': 1 / 4.184 / 1000
126
+ },
127
+ 'W/m/K': {
128
+ 'kW/m/K': 1 / 1000,
129
+ 'W/cm/K': 1 / 100,
130
+ 'kW/cm/K': 1 / 100 / 1000
131
+ },
132
+ 'W/m2/K': {
133
+ 'kW/m2/K': 1 / 1000,
134
+ 'kcal/hr/m2/oC': 1 / 1.163
135
+ },
136
+ 'N sec/m2': {
137
+ 'Pa sec': 1,
138
+ 'mPa sec': 1000,
139
+ 'kg/m/sec': 1,
140
+ 'g/cm/sec': 10,
141
+ P: 10,
142
+ cP: 1000
143
+ },
144
+ 'm2 oC/W': {
145
+ 'm2 oC/kW': 1000
146
+ },
147
+ K: {
148
+ C: [(v) => v - 273.15, (v) => v + 273.15]
149
+ }
150
+ };
151
+ const NATURE = {
152
+ mutable: false,
153
+ resizable: true,
154
+ rotatable: true,
155
+ properties: [
156
+ {
157
+ type: 'string',
158
+ label: 'placeholder',
159
+ name: 'placeholder'
160
+ },
161
+ {
162
+ type: 'number',
163
+ label: 'value',
164
+ name: 'value'
165
+ },
166
+ {
167
+ type: 'select',
168
+ label: 'unit',
169
+ name: 'unit',
170
+ property: {
171
+ options: ['', ...Object.keys(UNIT_SYSTEMS)]
172
+ }
173
+ },
174
+ {
175
+ type: 'select',
176
+ label: 'user-unit',
177
+ name: 'userUnit',
178
+ property: {
179
+ options: function () {
180
+ const parent = this.parentElement;
181
+ const unit = parent.value['unit'];
182
+ return unit ? ['', unit, ...Object.keys(UNIT_SYSTEMS[unit])] : [''];
183
+ }
184
+ }
185
+ }
186
+ ],
187
+ 'value-property': 'value',
188
+ help: 'scene/component/graphql'
189
+ };
190
+ import '@operato/input/ox-input-unit-number.js';
191
+ import { Component, HTMLOverlayElement } from '@hatiolab/things-scene';
192
+ export default class InputUnitNumber extends HTMLOverlayElement {
193
+ static get nature() {
194
+ return NATURE;
195
+ }
196
+ get tagName() {
197
+ return 'ox-input-unit-number';
198
+ }
199
+ oncreate_element(fraction) {
200
+ fraction.onchange = e => {
201
+ this.value = e.target.value;
202
+ };
203
+ var { defaultValue } = this.state;
204
+ // fraction.style.setProperty('--button-background-color', '#fafbfc')
205
+ fraction.style.setProperty('--input-padding', '2px');
206
+ fraction.defaultValue = defaultValue;
207
+ this.reposition();
208
+ }
209
+ setElementProperties(input) {
210
+ var { placeholder, unit = 'kg', userUnit, value } = this.state;
211
+ input.style.setProperty('--input-padding', '0');
212
+ input.stdUnit = unit;
213
+ input.userUnit = userUnit || unit;
214
+ input.placeholder = placeholder || '';
215
+ input.value = value;
216
+ }
217
+ onchange(after, before) {
218
+ super.onchange(after, before);
219
+ if ('value' in after) {
220
+ this.data = after.value;
221
+ }
222
+ }
223
+ }
224
+ Component.register('input-unit-number', InputUnitNumber);
225
+ //# sourceMappingURL=input-unit-number.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"input-unit-number.js","sourceRoot":"","sources":["../src/input-unit-number.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\nconst UNIT_SYSTEMS: { [unit: string]: { [unit: string]: number | ((v: number) => number)[] } } = {\n kg: {\n mg: 1000000,\n g: 1000,\n ton: 0.001\n },\n rad: {\n degree: 180 / Math.PI\n },\n sec: {\n msec: 1000,\n min: 1 / 60,\n hr: 1 / 3600,\n day: 1 / (3600 * 24),\n year: 1 / (3600 * 24 * 365)\n },\n m: {\n mm: 1000,\n cm: 100,\n inch: 39.37008\n },\n 'g/mol': {\n 'kg/kmol': 1,\n 'g/kmol': 1000\n },\n m2: {\n mm2: 1000000,\n cm2: 1000\n },\n m3: {\n cm3: 1000000,\n L: 1000,\n mL: 1000000\n },\n 'kg/m3': {\n 'g/m3': 1000,\n 'g/L': 1,\n 'g/cm3': 0.001,\n 'kg/L': 0.001,\n 'g/mL': 0.001\n },\n 'm/sec': {\n 'm/min': 60,\n 'm/hr': 3600,\n 'cm/sec': 100,\n 'cm/min': 6000,\n 'cm/hr': 360000\n },\n N: {\n kN: 0.001,\n kgf: 0.101971621\n },\n Pa: {\n atm: 1 / 101325,\n bar: 1 / 100000,\n 'kgf/cm2': 1 / 9.80665 / 10000,\n MPa: 1 / 1000000,\n kPa: 1 / 1000,\n psi: 1 / 6894.76,\n mmH2O: 1 / 9.80665,\n mmHg: 1 / 133.32\n },\n 'kg/sec': {\n 'kg/min': 60,\n 'kg/hr': 3600,\n 'ton/hr': 3.6,\n 'ton/year': (60 * 60 * 24 * 365) / 1000\n },\n 'kg/m2/sec': {\n 'kg/m2/min': 60,\n 'kg/m2/hr': 3600\n },\n 'mol/sec': {\n 'kmol/sec': 1 / 1000\n },\n 'mol/m2/sec': {\n 'kmol/m2/sec': 1 / 1000\n },\n 'Sm3/sec': {\n 'Sm3/hr': 3600,\n 'Sm3/min': 60,\n 'SL/min': 60000,\n 'SL/sec': 1000,\n 'Scm3/min': 60000000,\n 'Scm3/sec': 1000000\n },\n 'Nm3/sec': {\n 'Am3/hr': 3600,\n 'Am3/min': 60,\n 'AL/min': 60000,\n 'AL/sec': 1000,\n 'Acm3/min': 60000000,\n 'Acm3/sec': 1000000\n },\n J: {\n kJ: 1 / 1000,\n MJ: 1 / 1000000,\n cal: 1 / 4.184,\n kcal: 1 / 4.184 / 1000\n },\n W: {\n kW: 1 / 1000,\n MW: 1 / 1000000,\n 'kcal/hr': 859.85 / 1000,\n hp: 1 / 745.7\n },\n 'W/m2': {\n 'kW/m2': 1 / 1000,\n 'W/cm2': 1 / 10000,\n 'kW/cm2': 1 / 10000000\n },\n 'J/kg': {\n 'kJ/kg': 1 / 1000,\n 'cal/g': 1 / 4.184 / 1000,\n 'cal/kg': 1 / 4.184,\n 'kcal/kg': 1 / 4.184 / 1000\n },\n 'J/kg/K': {\n 'kJ/kg/K': 1 / 1000,\n 'cal/kg/K': 1 / 4.184,\n 'kcal/kg/K': 1 / 4.184 / 1000,\n 'cal/g/K': 1 / 4.184 / 1000\n },\n 'W/m/K': {\n 'kW/m/K': 1 / 1000,\n 'W/cm/K': 1 / 100,\n 'kW/cm/K': 1 / 100 / 1000\n },\n 'W/m2/K': {\n 'kW/m2/K': 1 / 1000,\n 'kcal/hr/m2/oC': 1 / 1.163\n },\n 'N sec/m2': {\n 'Pa sec': 1,\n 'mPa sec': 1000,\n 'kg/m/sec': 1,\n 'g/cm/sec': 10,\n P: 10,\n cP: 1000\n },\n 'm2 oC/W': {\n 'm2 oC/kW': 1000\n },\n K: {\n C: [(v: number) => v - 273.15, (v: number) => v + 273.15]\n }\n}\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'string',\n label: 'placeholder',\n name: 'placeholder'\n },\n {\n type: 'number',\n label: 'value',\n name: 'value'\n },\n {\n type: 'select',\n label: 'unit',\n name: 'unit',\n property: {\n options: ['', ...Object.keys(UNIT_SYSTEMS)]\n }\n },\n {\n type: 'select',\n label: 'user-unit',\n name: 'userUnit',\n property: {\n options: function () {\n const parent: any = (this as any).parentElement\n const unit = parent.value['unit']\n\n return unit ? ['', unit, ...Object.keys(UNIT_SYSTEMS[unit])] : ['']\n }\n }\n }\n ],\n 'value-property': 'value',\n help: 'scene/component/graphql'\n}\n\nimport '@operato/input/ox-input-unit-number.js'\n\nimport { Component, HTMLOverlayElement, Properties, error } from '@hatiolab/things-scene'\n\nexport default class InputUnitNumber extends HTMLOverlayElement {\n static get nature() {\n return NATURE\n }\n\n get tagName() {\n return 'ox-input-unit-number'\n }\n\n oncreate_element(fraction: HTMLElement) {\n fraction.onchange = e => {\n this.value = (e.target as any).value\n }\n\n var { defaultValue } = this.state\n\n // fraction.style.setProperty('--button-background-color', '#fafbfc')\n fraction.style.setProperty('--input-padding', '2px')\n ;(fraction as any).defaultValue = defaultValue\n\n this.reposition()\n }\n\n setElementProperties(input: HTMLElement) {\n var { placeholder, unit = 'kg', userUnit, value } = this.state\n\n input.style.setProperty('--input-padding', '0')\n ;(input as any).stdUnit = unit\n ;(input as any).userUnit = userUnit || unit\n ;(input as any).placeholder = placeholder || ''\n ;(input as any).value = value\n }\n\n onchange(after: Properties, before: Properties) {\n super.onchange(after, before)\n\n if ('value' in after) {\n this.data = after.value\n }\n }\n}\n\nComponent.register('input-unit-number', InputUnitNumber)\n"]}
@@ -1,7 +1,7 @@
1
1
  import '@operato/input/ox-input-mass-fraction.js';
2
2
  import '@operato/property-editor/ox-property-editor-mass-fraction.js';
3
- import { HTMLOverlayContainer } from '@hatiolab/things-scene';
4
- export default class MassFraction extends HTMLOverlayContainer {
3
+ import { HTMLOverlayElement, Properties } from '@hatiolab/things-scene';
4
+ export default class MassFraction extends HTMLOverlayElement {
5
5
  static get nature(): {
6
6
  mutable: boolean;
7
7
  resizable: boolean;
@@ -11,11 +11,13 @@ export default class MassFraction extends HTMLOverlayContainer {
11
11
  label: string;
12
12
  name: string;
13
13
  }[];
14
+ 'value-property': string;
14
15
  help: string;
15
16
  };
16
17
  oncreate_element(fraction: HTMLElement): void;
17
18
  dispose(): void;
18
- setElementProperties(div: HTMLElement): void;
19
+ setElementProperties(input: HTMLElement): void;
19
20
  reposition(): void;
21
+ onchange(after: Properties, before: Properties): void;
20
22
  get tagName(): string;
21
23
  }
@@ -12,20 +12,24 @@ const NATURE = {
12
12
  name: 'defaultValue'
13
13
  }
14
14
  ],
15
+ 'value-property': 'value',
15
16
  help: 'scene/component/graphql'
16
17
  };
17
18
  import '@operato/input/ox-input-mass-fraction.js';
18
19
  import '@operato/property-editor/ox-property-editor-mass-fraction.js';
19
- import { Component, HTMLOverlayContainer } from '@hatiolab/things-scene';
20
+ import { Component, HTMLOverlayElement } from '@hatiolab/things-scene';
20
21
  import { OxPropertyEditor } from '@operato/property-editor';
21
22
  OxPropertyEditor.register({
22
23
  'mass-fraction': 'ox-property-editor-mass-fraction'
23
24
  });
24
- export default class MassFraction extends HTMLOverlayContainer {
25
+ export default class MassFraction extends HTMLOverlayElement {
25
26
  static get nature() {
26
27
  return NATURE;
27
28
  }
28
29
  oncreate_element(fraction) {
30
+ fraction.onchange = e => {
31
+ this.value = e.target.value;
32
+ };
29
33
  var { defaultValue } = this.state;
30
34
  // fraction.style.setProperty('--button-background-color', '#fafbfc')
31
35
  fraction.style.setProperty('--input-padding', '2px');
@@ -41,7 +45,11 @@ export default class MassFraction extends HTMLOverlayContainer {
41
45
  *
42
46
  * ThingsComponent state => HTML element properties
43
47
  */
44
- setElementProperties(div) { }
48
+ setElementProperties(input) {
49
+ var { defaultValue, value } = this.state;
50
+ input.defaultValue = defaultValue;
51
+ input.value = value;
52
+ }
45
53
  /*
46
54
  * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.
47
55
  * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.
@@ -50,6 +58,12 @@ export default class MassFraction extends HTMLOverlayContainer {
50
58
  super.reposition();
51
59
  // TODO how to resize..
52
60
  }
61
+ onchange(after, before) {
62
+ super.onchange(after, before);
63
+ if ('value' in after) {
64
+ this.data = after.value;
65
+ }
66
+ }
53
67
  get tagName() {
54
68
  return 'ox-input-mass-fraction';
55
69
  }
@@ -1 +1 @@
1
- {"version":3,"file":"mass-fraction.js","sourceRoot":"","sources":["../src/mass-fraction.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,eAAe;YACrB,KAAK,EAAE,eAAe;YACtB,IAAI,EAAE,cAAc;SACrB;KACF;IACD,IAAI,EAAE,yBAAyB;CAChC,CAAA;AAED,OAAO,0CAA0C,CAAA;AACjD,OAAO,8DAA8D,CAAA;AAErE,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAAS,MAAM,wBAAwB,CAAA;AAC/E,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAE3D,gBAAgB,CAAC,QAAQ,CAAC;IACxB,eAAe,EAAE,kCAAkC;CACpD,CAAC,CAAA;AAEF,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,oBAAoB;IAC5D,MAAM,KAAK,MAAM;QACf,OAAO,MAAM,CAAA;IACf,CAAC;IAED,gBAAgB,CAAC,QAAqB;QACpC,IAAI,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAEjC,qEAAqE;QACrE,QAAQ,CAAC,KAAK,CAAC,WAAW,CAAC,iBAAiB,EAAE,KAAK,CAAC,CACnD;QAAC,QAAgB,CAAC,YAAY,GAAG,YAAY,CAAA;QAE9C,IAAI,CAAC,UAAU,EAAE,CAAA;IACnB,CAAC;IAED,OAAO;QACL,KAAK,CAAC,OAAO,EAAE,CAAA;IACjB,CAAC;IAED;;;;;OAKG;IACH,oBAAoB,CAAC,GAAgB,IAAG,CAAC;IAEzC;;;OAGG;IACH,UAAU;QACR,KAAK,CAAC,UAAU,EAAE,CAAA;QAElB,uBAAuB;IACzB,CAAC;IAED,IAAI,OAAO;QACT,OAAO,wBAAwB,CAAA;IACjC,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,YAAY,CAAC,CAAA","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'mass-fraction',\n label: 'default-value',\n name: 'defaultValue'\n }\n ],\n help: 'scene/component/graphql'\n}\n\nimport '@operato/input/ox-input-mass-fraction.js'\nimport '@operato/property-editor/ox-property-editor-mass-fraction.js'\n\nimport { Component, HTMLOverlayContainer, error } from '@hatiolab/things-scene'\nimport { OxPropertyEditor } from '@operato/property-editor'\n\nOxPropertyEditor.register({\n 'mass-fraction': 'ox-property-editor-mass-fraction'\n})\n\nexport default class MassFraction extends HTMLOverlayContainer {\n static get nature() {\n return NATURE\n }\n\n oncreate_element(fraction: HTMLElement) {\n var { defaultValue } = this.state\n\n // fraction.style.setProperty('--button-background-color', '#fafbfc')\n fraction.style.setProperty('--input-padding', '2px')\n ;(fraction as any).defaultValue = defaultValue\n\n this.reposition()\n }\n\n dispose() {\n super.dispose()\n }\n\n /*\n * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,\n * 그에 따른 html element의 반영이 필요한 부분을 구현한다.\n *\n * ThingsComponent state => HTML element properties\n */\n setElementProperties(div: HTMLElement) {}\n\n /*\n * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.\n * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.\n */\n reposition() {\n super.reposition()\n\n // TODO how to resize..\n }\n\n get tagName() {\n return 'ox-input-mass-fraction'\n }\n}\n\nComponent.register('mass-fraction', MassFraction)\n"]}
1
+ {"version":3,"file":"mass-fraction.js","sourceRoot":"","sources":["../src/mass-fraction.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,eAAe;YACrB,KAAK,EAAE,eAAe;YACtB,IAAI,EAAE,cAAc;SACrB;KACF;IACD,gBAAgB,EAAE,OAAO;IACzB,IAAI,EAAE,yBAAyB;CAChC,CAAA;AAED,OAAO,0CAA0C,CAAA;AACjD,OAAO,8DAA8D,CAAA;AAErE,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAqB,MAAM,wBAAwB,CAAA;AACzF,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAA;AAE3D,gBAAgB,CAAC,QAAQ,CAAC;IACxB,eAAe,EAAE,kCAAkC;CACpD,CAAC,CAAA;AAEF,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,kBAAkB;IAC1D,MAAM,KAAK,MAAM;QACf,OAAO,MAAM,CAAA;IACf,CAAC;IAED,gBAAgB,CAAC,QAAqB;QACpC,QAAQ,CAAC,QAAQ,GAAG,CAAC,CAAC,EAAE;YACtB,IAAI,CAAC,KAAK,GAAI,CAAC,CAAC,MAAc,CAAC,KAAK,CAAA;QACtC,CAAC,CAAA;QAED,IAAI,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAEjC,qEAAqE;QACrE,QAAQ,CAAC,KAAK,CAAC,WAAW,CAAC,iBAAiB,EAAE,KAAK,CAAC,CACnD;QAAC,QAAgB,CAAC,YAAY,GAAG,YAAY,CAAA;QAE9C,IAAI,CAAC,UAAU,EAAE,CAAA;IACnB,CAAC;IAED,OAAO;QACL,KAAK,CAAC,OAAO,EAAE,CAAA;IACjB,CAAC;IAED;;;;;OAKG;IACH,oBAAoB,CAAC,KAAkB;QACrC,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC,KAAK,CAEvC;QAAC,KAAa,CAAC,YAAY,GAAG,YAAY,CAC1C;QAAC,KAAa,CAAC,KAAK,GAAG,KAAK,CAAA;IAC/B,CAAC;IAED;;;OAGG;IACH,UAAU;QACR,KAAK,CAAC,UAAU,EAAE,CAAA;QAElB,uBAAuB;IACzB,CAAC;IAED,QAAQ,CAAC,KAAiB,EAAE,MAAkB;QAC5C,KAAK,CAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;QAE7B,IAAI,OAAO,IAAI,KAAK,EAAE;YACpB,IAAI,CAAC,IAAI,GAAG,KAAK,CAAC,KAAK,CAAA;SACxB;IACH,CAAC;IAED,IAAI,OAAO;QACT,OAAO,wBAAwB,CAAA;IACjC,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,YAAY,CAAC,CAAA","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'mass-fraction',\n label: 'default-value',\n name: 'defaultValue'\n }\n ],\n 'value-property': 'value',\n help: 'scene/component/graphql'\n}\n\nimport '@operato/input/ox-input-mass-fraction.js'\nimport '@operato/property-editor/ox-property-editor-mass-fraction.js'\n\nimport { Component, HTMLOverlayElement, Properties, error } from '@hatiolab/things-scene'\nimport { OxPropertyEditor } from '@operato/property-editor'\n\nOxPropertyEditor.register({\n 'mass-fraction': 'ox-property-editor-mass-fraction'\n})\n\nexport default class MassFraction extends HTMLOverlayElement {\n static get nature() {\n return NATURE\n }\n\n oncreate_element(fraction: HTMLElement) {\n fraction.onchange = e => {\n this.value = (e.target as any).value\n }\n\n var { defaultValue } = this.state\n\n // fraction.style.setProperty('--button-background-color', '#fafbfc')\n fraction.style.setProperty('--input-padding', '2px')\n ;(fraction as any).defaultValue = defaultValue\n\n this.reposition()\n }\n\n dispose() {\n super.dispose()\n }\n\n /*\n * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,\n * 그에 따른 html element의 반영이 필요한 부분을 구현한다.\n *\n * ThingsComponent state => HTML element properties\n */\n setElementProperties(input: HTMLElement) {\n var { defaultValue, value } = this.state\n\n ;(input as any).defaultValue = defaultValue\n ;(input as any).value = value\n }\n\n /*\n * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.\n * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.\n */\n reposition() {\n super.reposition()\n\n // TODO how to resize..\n }\n\n onchange(after: Properties, before: Properties) {\n super.onchange(after, before)\n\n if ('value' in after) {\n this.data = after.value\n }\n }\n\n get tagName() {\n return 'ox-input-mass-fraction'\n }\n}\n\nComponent.register('mass-fraction', MassFraction)\n"]}
@@ -1,3 +1,4 @@
1
1
  import massFraction from './mass-fraction';
2
- export default [massFraction];
2
+ import inputUnitNumber from './input-unit-number';
3
+ export default [massFraction, inputUnitNumber];
3
4
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,iBAAiB,CAAA;AAE1C,eAAe,CAAC,YAAY,CAAC,CAAA","sourcesContent":["import massFraction from './mass-fraction'\n\nexport default [massFraction]\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,iBAAiB,CAAA;AAC1C,OAAO,eAAe,MAAM,qBAAqB,CAAA;AAEjD,eAAe,CAAC,YAAY,EAAE,eAAe,CAAC,CAAA","sourcesContent":["import massFraction from './mass-fraction'\nimport inputUnitNumber from './input-unit-number'\n\nexport default [massFraction, inputUnitNumber]\n"]}
@@ -0,0 +1,14 @@
1
+ declare const _default: {
2
+ type: string;
3
+ description: string;
4
+ group: string;
5
+ icon: string;
6
+ model: {
7
+ type: string;
8
+ left: number;
9
+ top: number;
10
+ width: number;
11
+ height: number;
12
+ };
13
+ };
14
+ export default _default;
@@ -0,0 +1,16 @@
1
+ const icon = new URL('../../icons/input-unit-number-template.png', import.meta.url).href;
2
+ export default {
3
+ type: 'input-unit-number',
4
+ description: 'input-unit-number',
5
+ group: 'sted',
6
+ /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */
7
+ icon,
8
+ model: {
9
+ type: 'input-unit-number',
10
+ left: 10,
11
+ top: 10,
12
+ width: 100,
13
+ height: 20
14
+ }
15
+ };
16
+ //# sourceMappingURL=input-unit-number.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"input-unit-number.js","sourceRoot":"","sources":["../../src/templates/input-unit-number.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,4CAA4C,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAExF,eAAe;IACb,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,mBAAmB;IAChC,KAAK,EAAE,MAAM;IACb,gGAAgG;IAChG,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,mBAAmB;QACzB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/input-unit-number-template.png', import.meta.url).href\n\nexport default {\n type: 'input-unit-number',\n description: 'input-unit-number',\n group: 'sted',\n /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */\n icon,\n model: {\n type: 'input-unit-number',\n left: 10,\n top: 10,\n width: 100,\n height: 20\n }\n}\n"]}
@@ -19,6 +19,11 @@
19
19
  "date": 1670173319509,
20
20
  "name": "logs/application-2022-12-05-02.log",
21
21
  "hash": "a72561953e7c407485e499ee6920cdd4e91bd5066bab9175237e3a0966a7a9e0"
22
+ },
23
+ {
24
+ "date": 1670312460891,
25
+ "name": "logs/application-2022-12-06-16.log",
26
+ "hash": "aa2ca0bc25999c4a8aeda9602bd9ac4723997daf4b3bacd68dd99b65d7e2b968"
22
27
  }
23
28
  ],
24
29
  "hashType": "sha256"
@@ -19,6 +19,11 @@
19
19
  "date": 1670173320630,
20
20
  "name": "logs/connections-2022-12-05-02.log",
21
21
  "hash": "9d96183941bedc65c9751484ec30c891c7a92961e1cf8ea122acf371a3613469"
22
+ },
23
+ {
24
+ "date": 1670312462135,
25
+ "name": "logs/connections-2022-12-06-16.log",
26
+ "hash": "7e1662dcdd39a3f5a9311b9d2f14877023defcedf3d771440b083fee82a62ac3"
22
27
  }
23
28
  ],
24
29
  "hashType": "sha256"
@@ -0,0 +1,6 @@
1
+ 2022-12-06T16:41:01+09:00 info: File Storage is Ready.
2
+ 2022-12-06T16:41:02+09:00 error: oracledb module loading failed
3
+ 2022-12-06T16:41:03+09:00 info: Default DataSource established
4
+ 2022-12-06T16:41:03+09:00 info: Transaction DataSource established
5
+ 2022-12-06T16:41:03+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2022-12-06T16:41:03+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,35 @@
1
+ 2022-12-06T16:41:04+09:00 info: Initializing ConnectionManager...
2
+ 2022-12-06T16:41:04+09:00 info: Connector 'echo-back-server' started to ready
3
+ 2022-12-06T16:41:04+09:00 info: Connector 'echo-back' started to ready
4
+ 2022-12-06T16:41:04+09:00 info: Connector 'http-connector' started to ready
5
+ 2022-12-06T16:41:04+09:00 info: Connector 'graphql-connector' started to ready
6
+ 2022-12-06T16:41:04+09:00 info: Connector 'sqlite-connector' started to ready
7
+ 2022-12-06T16:41:04+09:00 info: Connector 'postgresql-connector' started to ready
8
+ 2022-12-06T16:41:04+09:00 info: Connector 'mqtt-connector' started to ready
9
+ 2022-12-06T16:41:04+09:00 info: Connector 'mssql-connector' started to ready
10
+ 2022-12-06T16:41:04+09:00 info: Connector 'oracle-connector' started to ready
11
+ 2022-12-06T16:41:04+09:00 info: Connector 'mysql-connector' started to ready
12
+ 2022-12-06T16:41:04+09:00 info: Connector 'socket-server' started to ready
13
+ 2022-12-06T16:41:04+09:00 info: echo-back-servers are ready
14
+ 2022-12-06T16:41:04+09:00 info: echo-back connections are ready
15
+ 2022-12-06T16:41:04+09:00 info: http-connector connections are ready
16
+ 2022-12-06T16:41:04+09:00 info: graphql-connector connections are ready
17
+ 2022-12-06T16:41:04+09:00 info: sqlite-connector connections are ready
18
+ 2022-12-06T16:41:04+09:00 info: postgresql-connector connections are ready
19
+ 2022-12-06T16:41:04+09:00 info: mqtt-connector connections are ready
20
+ 2022-12-06T16:41:04+09:00 info: mssql-connector connections are ready
21
+ 2022-12-06T16:41:04+09:00 info: oracle-connector connections are ready
22
+ 2022-12-06T16:41:04+09:00 info: mysql-connector connections are ready
23
+ 2022-12-06T16:41:04+09:00 info: socket servers are ready
24
+ 2022-12-06T16:41:04+09:00 info: All connector for 'echo-back-server' ready
25
+ 2022-12-06T16:41:04+09:00 info: All connector for 'echo-back' ready
26
+ 2022-12-06T16:41:04+09:00 info: All connector for 'http-connector' ready
27
+ 2022-12-06T16:41:04+09:00 info: All connector for 'graphql-connector' ready
28
+ 2022-12-06T16:41:04+09:00 info: All connector for 'sqlite-connector' ready
29
+ 2022-12-06T16:41:04+09:00 info: All connector for 'postgresql-connector' ready
30
+ 2022-12-06T16:41:04+09:00 info: All connector for 'mqtt-connector' ready
31
+ 2022-12-06T16:41:04+09:00 info: All connector for 'mssql-connector' ready
32
+ 2022-12-06T16:41:04+09:00 info: All connector for 'oracle-connector' ready
33
+ 2022-12-06T16:41:04+09:00 info: All connector for 'mysql-connector' ready
34
+ 2022-12-06T16:41:04+09:00 info: All connector for 'socket-server' ready
35
+ 2022-12-06T16:41:04+09:00 info: ConnectionManager initialization done:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@operato/scene-sted",
3
3
  "description": "scene module for smart thermal energy design platform",
4
- "version": "1.1.17",
4
+ "version": "1.1.19",
5
5
  "things-scene": true,
6
6
  "browser": "src/index.js",
7
7
  "author": "heartyoh",
@@ -60,5 +60,5 @@
60
60
  "prettier --write"
61
61
  ]
62
62
  },
63
- "gitHead": "54f113794d8de0765f928f98971409c3e50d9eb6"
63
+ "gitHead": "81507d8fa91c774aa986651ea5ba00e1986bf635"
64
64
  }
package/src/index.ts CHANGED
@@ -1 +1,2 @@
1
1
  export { default as MassFraction } from './mass-fraction'
2
+ export { default as InputUnitNumber } from './input-unit-number'
@@ -0,0 +1,239 @@
1
+ /*
2
+ * Copyright © HatioLab Inc. All rights reserved.
3
+ */
4
+ const UNIT_SYSTEMS: { [unit: string]: { [unit: string]: number | ((v: number) => number)[] } } = {
5
+ kg: {
6
+ mg: 1000000,
7
+ g: 1000,
8
+ ton: 0.001
9
+ },
10
+ rad: {
11
+ degree: 180 / Math.PI
12
+ },
13
+ sec: {
14
+ msec: 1000,
15
+ min: 1 / 60,
16
+ hr: 1 / 3600,
17
+ day: 1 / (3600 * 24),
18
+ year: 1 / (3600 * 24 * 365)
19
+ },
20
+ m: {
21
+ mm: 1000,
22
+ cm: 100,
23
+ inch: 39.37008
24
+ },
25
+ 'g/mol': {
26
+ 'kg/kmol': 1,
27
+ 'g/kmol': 1000
28
+ },
29
+ m2: {
30
+ mm2: 1000000,
31
+ cm2: 1000
32
+ },
33
+ m3: {
34
+ cm3: 1000000,
35
+ L: 1000,
36
+ mL: 1000000
37
+ },
38
+ 'kg/m3': {
39
+ 'g/m3': 1000,
40
+ 'g/L': 1,
41
+ 'g/cm3': 0.001,
42
+ 'kg/L': 0.001,
43
+ 'g/mL': 0.001
44
+ },
45
+ 'm/sec': {
46
+ 'm/min': 60,
47
+ 'm/hr': 3600,
48
+ 'cm/sec': 100,
49
+ 'cm/min': 6000,
50
+ 'cm/hr': 360000
51
+ },
52
+ N: {
53
+ kN: 0.001,
54
+ kgf: 0.101971621
55
+ },
56
+ Pa: {
57
+ atm: 1 / 101325,
58
+ bar: 1 / 100000,
59
+ 'kgf/cm2': 1 / 9.80665 / 10000,
60
+ MPa: 1 / 1000000,
61
+ kPa: 1 / 1000,
62
+ psi: 1 / 6894.76,
63
+ mmH2O: 1 / 9.80665,
64
+ mmHg: 1 / 133.32
65
+ },
66
+ 'kg/sec': {
67
+ 'kg/min': 60,
68
+ 'kg/hr': 3600,
69
+ 'ton/hr': 3.6,
70
+ 'ton/year': (60 * 60 * 24 * 365) / 1000
71
+ },
72
+ 'kg/m2/sec': {
73
+ 'kg/m2/min': 60,
74
+ 'kg/m2/hr': 3600
75
+ },
76
+ 'mol/sec': {
77
+ 'kmol/sec': 1 / 1000
78
+ },
79
+ 'mol/m2/sec': {
80
+ 'kmol/m2/sec': 1 / 1000
81
+ },
82
+ 'Sm3/sec': {
83
+ 'Sm3/hr': 3600,
84
+ 'Sm3/min': 60,
85
+ 'SL/min': 60000,
86
+ 'SL/sec': 1000,
87
+ 'Scm3/min': 60000000,
88
+ 'Scm3/sec': 1000000
89
+ },
90
+ 'Nm3/sec': {
91
+ 'Am3/hr': 3600,
92
+ 'Am3/min': 60,
93
+ 'AL/min': 60000,
94
+ 'AL/sec': 1000,
95
+ 'Acm3/min': 60000000,
96
+ 'Acm3/sec': 1000000
97
+ },
98
+ J: {
99
+ kJ: 1 / 1000,
100
+ MJ: 1 / 1000000,
101
+ cal: 1 / 4.184,
102
+ kcal: 1 / 4.184 / 1000
103
+ },
104
+ W: {
105
+ kW: 1 / 1000,
106
+ MW: 1 / 1000000,
107
+ 'kcal/hr': 859.85 / 1000,
108
+ hp: 1 / 745.7
109
+ },
110
+ 'W/m2': {
111
+ 'kW/m2': 1 / 1000,
112
+ 'W/cm2': 1 / 10000,
113
+ 'kW/cm2': 1 / 10000000
114
+ },
115
+ 'J/kg': {
116
+ 'kJ/kg': 1 / 1000,
117
+ 'cal/g': 1 / 4.184 / 1000,
118
+ 'cal/kg': 1 / 4.184,
119
+ 'kcal/kg': 1 / 4.184 / 1000
120
+ },
121
+ 'J/kg/K': {
122
+ 'kJ/kg/K': 1 / 1000,
123
+ 'cal/kg/K': 1 / 4.184,
124
+ 'kcal/kg/K': 1 / 4.184 / 1000,
125
+ 'cal/g/K': 1 / 4.184 / 1000
126
+ },
127
+ 'W/m/K': {
128
+ 'kW/m/K': 1 / 1000,
129
+ 'W/cm/K': 1 / 100,
130
+ 'kW/cm/K': 1 / 100 / 1000
131
+ },
132
+ 'W/m2/K': {
133
+ 'kW/m2/K': 1 / 1000,
134
+ 'kcal/hr/m2/oC': 1 / 1.163
135
+ },
136
+ 'N sec/m2': {
137
+ 'Pa sec': 1,
138
+ 'mPa sec': 1000,
139
+ 'kg/m/sec': 1,
140
+ 'g/cm/sec': 10,
141
+ P: 10,
142
+ cP: 1000
143
+ },
144
+ 'm2 oC/W': {
145
+ 'm2 oC/kW': 1000
146
+ },
147
+ K: {
148
+ C: [(v: number) => v - 273.15, (v: number) => v + 273.15]
149
+ }
150
+ }
151
+
152
+ const NATURE = {
153
+ mutable: false,
154
+ resizable: true,
155
+ rotatable: true,
156
+ properties: [
157
+ {
158
+ type: 'string',
159
+ label: 'placeholder',
160
+ name: 'placeholder'
161
+ },
162
+ {
163
+ type: 'number',
164
+ label: 'value',
165
+ name: 'value'
166
+ },
167
+ {
168
+ type: 'select',
169
+ label: 'unit',
170
+ name: 'unit',
171
+ property: {
172
+ options: ['', ...Object.keys(UNIT_SYSTEMS)]
173
+ }
174
+ },
175
+ {
176
+ type: 'select',
177
+ label: 'user-unit',
178
+ name: 'userUnit',
179
+ property: {
180
+ options: function () {
181
+ const parent: any = (this as any).parentElement
182
+ const unit = parent.value['unit']
183
+
184
+ return unit ? ['', unit, ...Object.keys(UNIT_SYSTEMS[unit])] : ['']
185
+ }
186
+ }
187
+ }
188
+ ],
189
+ 'value-property': 'value',
190
+ help: 'scene/component/graphql'
191
+ }
192
+
193
+ import '@operato/input/ox-input-unit-number.js'
194
+
195
+ import { Component, HTMLOverlayElement, Properties, error } from '@hatiolab/things-scene'
196
+
197
+ export default class InputUnitNumber extends HTMLOverlayElement {
198
+ static get nature() {
199
+ return NATURE
200
+ }
201
+
202
+ get tagName() {
203
+ return 'ox-input-unit-number'
204
+ }
205
+
206
+ oncreate_element(fraction: HTMLElement) {
207
+ fraction.onchange = e => {
208
+ this.value = (e.target as any).value
209
+ }
210
+
211
+ var { defaultValue } = this.state
212
+
213
+ // fraction.style.setProperty('--button-background-color', '#fafbfc')
214
+ fraction.style.setProperty('--input-padding', '2px')
215
+ ;(fraction as any).defaultValue = defaultValue
216
+
217
+ this.reposition()
218
+ }
219
+
220
+ setElementProperties(input: HTMLElement) {
221
+ var { placeholder, unit = 'kg', userUnit, value } = this.state
222
+
223
+ input.style.setProperty('--input-padding', '0')
224
+ ;(input as any).stdUnit = unit
225
+ ;(input as any).userUnit = userUnit || unit
226
+ ;(input as any).placeholder = placeholder || ''
227
+ ;(input as any).value = value
228
+ }
229
+
230
+ onchange(after: Properties, before: Properties) {
231
+ super.onchange(after, before)
232
+
233
+ if ('value' in after) {
234
+ this.data = after.value
235
+ }
236
+ }
237
+ }
238
+
239
+ Component.register('input-unit-number', InputUnitNumber)
@@ -13,25 +13,30 @@ const NATURE = {
13
13
  name: 'defaultValue'
14
14
  }
15
15
  ],
16
+ 'value-property': 'value',
16
17
  help: 'scene/component/graphql'
17
18
  }
18
19
 
19
20
  import '@operato/input/ox-input-mass-fraction.js'
20
21
  import '@operato/property-editor/ox-property-editor-mass-fraction.js'
21
22
 
22
- import { Component, HTMLOverlayContainer, error } from '@hatiolab/things-scene'
23
+ import { Component, HTMLOverlayElement, Properties, error } from '@hatiolab/things-scene'
23
24
  import { OxPropertyEditor } from '@operato/property-editor'
24
25
 
25
26
  OxPropertyEditor.register({
26
27
  'mass-fraction': 'ox-property-editor-mass-fraction'
27
28
  })
28
29
 
29
- export default class MassFraction extends HTMLOverlayContainer {
30
+ export default class MassFraction extends HTMLOverlayElement {
30
31
  static get nature() {
31
32
  return NATURE
32
33
  }
33
34
 
34
35
  oncreate_element(fraction: HTMLElement) {
36
+ fraction.onchange = e => {
37
+ this.value = (e.target as any).value
38
+ }
39
+
35
40
  var { defaultValue } = this.state
36
41
 
37
42
  // fraction.style.setProperty('--button-background-color', '#fafbfc')
@@ -51,7 +56,12 @@ export default class MassFraction extends HTMLOverlayContainer {
51
56
  *
52
57
  * ThingsComponent state => HTML element properties
53
58
  */
54
- setElementProperties(div: HTMLElement) {}
59
+ setElementProperties(input: HTMLElement) {
60
+ var { defaultValue, value } = this.state
61
+
62
+ ;(input as any).defaultValue = defaultValue
63
+ ;(input as any).value = value
64
+ }
55
65
 
56
66
  /*
57
67
  * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.
@@ -63,6 +73,14 @@ export default class MassFraction extends HTMLOverlayContainer {
63
73
  // TODO how to resize..
64
74
  }
65
75
 
76
+ onchange(after: Properties, before: Properties) {
77
+ super.onchange(after, before)
78
+
79
+ if ('value' in after) {
80
+ this.data = after.value
81
+ }
82
+ }
83
+
66
84
  get tagName() {
67
85
  return 'ox-input-mass-fraction'
68
86
  }
@@ -1,3 +1,4 @@
1
1
  import massFraction from './mass-fraction'
2
+ import inputUnitNumber from './input-unit-number'
2
3
 
3
- export default [massFraction]
4
+ export default [massFraction, inputUnitNumber]
@@ -0,0 +1,16 @@
1
+ const icon = new URL('../../icons/input-unit-number-template.png', import.meta.url).href
2
+
3
+ export default {
4
+ type: 'input-unit-number',
5
+ description: 'input-unit-number',
6
+ group: 'sted',
7
+ /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */
8
+ icon,
9
+ model: {
10
+ type: 'input-unit-number',
11
+ left: 10,
12
+ top: 10,
13
+ width: 100,
14
+ height: 20
15
+ }
16
+ }
@@ -1,3 +1,4 @@
1
1
  {
2
- "label.default-value": "default value"
2
+ "label.default-value": "default value",
3
+ "label.user-unit": "user unit"
3
4
  }
@@ -1,3 +1,4 @@
1
1
  {
2
- "label.default-value": "기본값"
2
+ "label.default-value": "기본값",
3
+ "label.user-unit": "사용 유닛"
3
4
  }
@@ -1,3 +1,4 @@
1
1
  {
2
- "label.default-value": "default value"
2
+ "label.default-value": "default value",
3
+ "label.user-unit": "user unit"
3
4
  }
@@ -1,3 +1,4 @@
1
1
  {
2
- "label.default-value": "default value"
2
+ "label.default-value": "default value",
3
+ "label.user-unit": "user unit"
3
4
  }
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@lit/reactive-element/css-tag.d.ts","../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/lit-html/directive.d.ts","../../node_modules/lit-html/lit-html.d.ts","../../node_modules/lit-element/lit-element.d.ts","../../node_modules/lit-html/is-server.d.ts","../../node_modules/lit/index.d.ts","../../node_modules/@operato/i18n/dist/src/ox-i18n.d.ts","../../node_modules/@operato/property-editor/dist/src/types.d.ts","../../node_modules/@operato/property-editor/dist/src/ox-property-editor.d.ts","../../node_modules/@operato/property-editor/dist/src/ox-property-editor-mass-fraction.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","../../node_modules/@operato/property-editor/dist/src/index.d.ts","./src/mass-fraction.ts","./src/index.ts","./src/editors/index.ts","./src/groups/sted.ts","./src/groups/index.ts","./src/templates/mass-fraction.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/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"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","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},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","62da965db3bd1b4ce135048ae8a317d7eb1949068824cb949dd4a91f7e3d6c2d","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","7e179e586b1a68348e7366c735b6efdd6e13e180071f4a14a5d439f9bc020cf3","43a01da5bcf0279000f91b0f73342885d9cb23c96e60e7e1699822714af92124","7b39394d42c881a93c9e663cfd90b4c78e03dc96131a0209457a850694de3492","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"434c3f188ffc1966b414213f143f626997d710d4e653167dba53d2e9ae1f8c39","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"cb53516b0d559a2aa524f5c3933f65a01af309955cc50d71b04f7c991262cab0","signature":"b7a350190b61af1e93fef5f8ac5c61ae2c72cbccc2ac3db27f38983eccdbc0a2"},{"version":"5f5b0422be57b34ade6e73002f576ab6f5ae3e2b4dcf5f2382ef32821f5a3b6b","signature":"5f990ab95bb488db763dd6cfe0a6b7270cbf2b8076dcc76742b768bfbe571de3"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"d9c09e0b3e077a21d300c36b4ed11994e7e3796b9ccffce15e4c4af99661e8b3","signature":"a05808d78c0354830aa2db55f2131f0903aaafc20a11abddaed5aeec346cc82b"},{"version":"735731a196e051bdd1607d791efde96139d6892571a8d1eb7dcc8bea16ccdd39","signature":"f1f4f25dcab6dfc37bfd690aab5680a01609b290502c8462ed4eaf79063dc131"},{"version":"7c52eda27866e3b20a68ffc2a7ec924ff2e2e0e996776773824e68cf1da2acf3","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"ee7ca84b906a24066e7b17b50240da856cf4a673a4cab1e972c4c78e2dcff389","signature":"e4ca4d8a87d3c81f481decf9000b72ba30371c8088de609814b2f0be74314bb2"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e9a8d4274033cb520ee12d6f68d161ba2b9128b87399645d3916b71187032836"],"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":[[70,126],[126],[44,45,126],[50,53,126],[55,56,126],[50,55,56,126],[53,54,55,126],[58,60,61,62,63,64,65,66,67,68,69,70,126],[58,59,61,62,63,64,65,66,67,68,69,70,126],[59,60,61,62,63,64,65,66,67,68,69,70,126],[58,59,60,62,63,64,65,66,67,68,69,70,126],[58,59,60,61,63,64,65,66,67,68,69,70,126],[58,59,60,61,62,64,65,66,67,68,69,70,126],[58,59,60,61,62,63,65,66,67,68,69,70,126],[58,59,60,61,62,63,64,66,67,68,69,70,126],[58,59,60,61,62,63,64,65,67,68,69,70,126],[58,59,60,61,62,63,64,65,66,68,69,70,126],[58,59,60,61,62,63,64,65,66,67,69,70,126],[58,59,60,61,62,63,64,65,66,67,68,70,126],[58,59,60,61,62,63,64,65,66,67,68,69,126],[80,126],[83,126],[84,89,117,126],[85,96,97,104,114,125,126],[85,86,96,104,126],[87,126],[88,89,97,105,126],[89,114,122,126],[90,92,96,104,126],[91,126],[92,93,126],[96,126],[94,96,126],[96,97,98,114,125,126],[96,97,98,111,114,117,126],[126,130],[99,104,114,125,126],[96,97,99,100,104,114,122,125,126],[99,101,114,122,125,126],[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132],[96,102,126],[103,125,126],[92,96,104,114,126],[105,126],[106,126],[83,107,126],[108,124,126,130],[109,126],[110,126],[96,111,112,126],[111,113,126,128],[84,96,114,115,116,117,126],[84,114,116,126],[114,115,126],[117,126],[118,126],[96,120,121,126],[120,121,126],[89,104,114,122,126],[123,126],[104,124,126],[84,99,110,125,126],[89,126],[114,126,127],[126,128],[126,129],[84,89,96,98,107,114,125,126,128,130],[114,126,131],[47,126],[46,50,126],[50,126],[48,49,126],[46,50,51,52,126],[43,76,126],[43,126],[43,73,126],[43,57,71,72,126],[43,78,126],[73],[57,71]],"referencedMap":[[71,1],[44,2],[45,2],[46,3],[54,4],[72,5],[57,6],[56,7],[55,2],[59,8],[60,9],[58,10],[61,11],[62,12],[63,13],[64,14],[65,15],[66,16],[67,17],[68,18],[69,19],[70,20],[80,21],[81,21],[83,22],[84,23],[85,24],[86,25],[87,26],[88,27],[89,28],[90,29],[91,30],[92,31],[93,31],[95,32],[94,33],[96,32],[97,34],[98,35],[82,36],[132,2],[99,37],[100,38],[101,39],[133,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[112,50],[113,51],[114,52],[116,53],[115,54],[117,55],[118,56],[119,2],[120,57],[121,58],[122,59],[123,60],[124,61],[125,62],[126,63],[127,64],[128,65],[129,66],[130,67],[131,68],[48,69],[47,2],[51,70],[49,71],[52,2],[50,72],[53,73],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[75,2],[77,74],[76,75],[74,76],[73,77],[79,78],[78,75]],"exportedModulesMap":[[71,1],[44,2],[45,2],[46,3],[54,4],[72,5],[57,6],[56,7],[55,2],[59,8],[60,9],[58,10],[61,11],[62,12],[63,13],[64,14],[65,15],[66,16],[67,17],[68,18],[69,19],[70,20],[80,21],[81,21],[83,22],[84,23],[85,24],[86,25],[87,26],[88,27],[89,28],[90,29],[91,30],[92,31],[93,31],[95,32],[94,33],[96,32],[97,34],[98,35],[82,36],[132,2],[99,37],[100,38],[101,39],[133,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[112,50],[113,51],[114,52],[116,53],[115,54],[117,55],[118,56],[119,2],[120,57],[121,58],[122,59],[123,60],[124,61],[125,62],[126,63],[127,64],[128,65],[129,66],[130,67],[131,68],[48,69],[47,2],[51,70],[49,71],[52,2],[50,72],[53,73],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[75,2],[74,79],[73,80]],"semanticDiagnosticsPerFile":[71,44,45,46,54,72,57,56,55,59,60,58,61,62,63,64,65,66,67,68,69,70,80,81,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,82,132,99,100,101,133,102,103,104,105,106,107,108,109,110,111,112,113,114,116,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,48,47,51,49,52,50,53,43,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,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,75,77,76,74,73,79,78]},"version":"4.9.3"}
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.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/@lit/reactive-element/css-tag.d.ts","../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../node_modules/@types/trusted-types/lib/index.d.ts","../../node_modules/@types/trusted-types/index.d.ts","../../node_modules/lit-html/directive.d.ts","../../node_modules/lit-html/lit-html.d.ts","../../node_modules/lit-element/lit-element.d.ts","../../node_modules/lit-html/is-server.d.ts","../../node_modules/lit/index.d.ts","../../node_modules/@operato/i18n/dist/src/ox-i18n.d.ts","../../node_modules/@operato/property-editor/dist/src/types.d.ts","../../node_modules/@operato/property-editor/dist/src/ox-property-editor.d.ts","../../node_modules/@operato/property-editor/dist/src/ox-property-editor-mass-fraction.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","../../node_modules/@operato/property-editor/dist/src/index.d.ts","./src/mass-fraction.ts","./src/input-unit-number.ts","./src/index.ts","./src/editors/index.ts","./src/groups/sted.ts","./src/groups/index.ts","./src/templates/mass-fraction.ts","./src/templates/input-unit-number.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/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"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","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},"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","13bb750b495c48fd60d7b5e09f65d4a7b010ab7e09a8943a6d54511e7d184f84","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","62da965db3bd1b4ce135048ae8a317d7eb1949068824cb949dd4a91f7e3d6c2d","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","7e179e586b1a68348e7366c735b6efdd6e13e180071f4a14a5d439f9bc020cf3","43a01da5bcf0279000f91b0f73342885d9cb23c96e60e7e1699822714af92124","7b39394d42c881a93c9e663cfd90b4c78e03dc96131a0209457a850694de3492","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"434c3f188ffc1966b414213f143f626997d710d4e653167dba53d2e9ae1f8c39","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"58ada9d12572ba1f6d9ca5c505cbb09cfb0e23223886fe1245badcc3e59067e1","signature":"df4b0a4bc3619103113988b2da891d8d5ac656fc2d654db6a0caa9c5bd70844f"},{"version":"1e8a61f22590a37d6215a36e747aa4f879c12d7cffd935d16acaf9797dc10306","signature":"2ec115d2462a78f2ab410c5496b951af659440a5147599ec243c9866173ec012"},{"version":"aa591584189c0b03e869d62649c1415e2f2e1bb131b868885e08bfbf192090a9","signature":"9154951e4c5e20236a5a63fcd22ea876005b884a8fe962a3909cb3faf5607a13"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"d9c09e0b3e077a21d300c36b4ed11994e7e3796b9ccffce15e4c4af99661e8b3","signature":"a05808d78c0354830aa2db55f2131f0903aaafc20a11abddaed5aeec346cc82b"},{"version":"735731a196e051bdd1607d791efde96139d6892571a8d1eb7dcc8bea16ccdd39","signature":"f1f4f25dcab6dfc37bfd690aab5680a01609b290502c8462ed4eaf79063dc131"},{"version":"7c52eda27866e3b20a68ffc2a7ec924ff2e2e0e996776773824e68cf1da2acf3","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"26c239e3b1e7533a701ad8db77987b74d96913f19c0c695e757827149cca09f5","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"bfda8bae6078daffbe9fe3924242e428b4249c98260470c6df6c7ce03f084e0e","signature":"e4ca4d8a87d3c81f481decf9000b72ba30371c8088de609814b2f0be74314bb2"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","afcc1c426b76db7ec80e563d4fb0ba9e6bcc6e63c2d7e9342e649dc56d26347f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","b01a80007e448d035a16c74b5c95a5405b2e81b12fabcf18b75aa9eb9ef28990","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","dbe5aa5a5dd8bd1c6a8d11b1310c3f0cdabaacc78a37b394a8c7b14faeb5fb84","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","213fc4f2b172d8beb74b77d7c1b41488d67348066d185e4263470cbb010cd6e8",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e9a8d4274033cb520ee12d6f68d161ba2b9128b87399645d3916b71187032836"],"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":[[70,128],[128],[44,45,128],[50,53,128],[55,56,128],[50,55,56,128],[53,54,55,128],[58,60,61,62,63,64,65,66,67,68,69,70,128],[58,59,61,62,63,64,65,66,67,68,69,70,128],[59,60,61,62,63,64,65,66,67,68,69,70,128],[58,59,60,62,63,64,65,66,67,68,69,70,128],[58,59,60,61,63,64,65,66,67,68,69,70,128],[58,59,60,61,62,64,65,66,67,68,69,70,128],[58,59,60,61,62,63,65,66,67,68,69,70,128],[58,59,60,61,62,63,64,66,67,68,69,70,128],[58,59,60,61,62,63,64,65,67,68,69,70,128],[58,59,60,61,62,63,64,65,66,68,69,70,128],[58,59,60,61,62,63,64,65,66,67,69,70,128],[58,59,60,61,62,63,64,65,66,67,68,70,128],[58,59,60,61,62,63,64,65,66,67,68,69,128],[82,128],[85,128],[86,91,119,128],[87,98,99,106,116,127,128],[87,88,98,106,128],[89,128],[90,91,99,107,128],[91,116,124,128],[92,94,98,106,128],[93,128],[94,95,128],[98,128],[96,98,128],[98,99,100,116,127,128],[98,99,100,113,116,119,128],[128,132],[101,106,116,127,128],[98,99,101,102,106,116,124,127,128],[101,103,116,124,127,128],[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134],[98,104,128],[105,127,128],[94,98,106,116,128],[107,128],[108,128],[85,109,128],[110,126,128,132],[111,128],[112,128],[98,113,114,128],[113,115,128,130],[86,98,116,117,118,119,128],[86,116,118,128],[116,117,128],[119,128],[120,128],[98,122,123,128],[122,123,128],[91,106,116,124,128],[125,128],[106,126,128],[86,101,112,127,128],[91,128],[116,128,129],[128,130],[128,131],[86,91,98,100,109,116,127,128,130,132],[116,128,133],[47,128],[46,50,128],[50,128],[48,49,128],[46,50,51,52,128],[43,77,128],[43,128],[43,73,74,128],[43,71,128],[43,57,71,72,128],[43,79,80,128],[73,74],[71],[57,71]],"referencedMap":[[71,1],[44,2],[45,2],[46,3],[54,4],[72,5],[57,6],[56,7],[55,2],[59,8],[60,9],[58,10],[61,11],[62,12],[63,13],[64,14],[65,15],[66,16],[67,17],[68,18],[69,19],[70,20],[82,21],[83,21],[85,22],[86,23],[87,24],[88,25],[89,26],[90,27],[91,28],[92,29],[93,30],[94,31],[95,31],[97,32],[96,33],[98,32],[99,34],[100,35],[84,36],[134,2],[101,37],[102,38],[103,39],[135,40],[104,41],[105,42],[106,43],[107,44],[108,45],[109,46],[110,47],[111,48],[112,49],[113,50],[114,50],[115,51],[116,52],[118,53],[117,54],[119,55],[120,56],[121,2],[122,57],[123,58],[124,59],[125,60],[126,61],[127,62],[128,63],[129,64],[130,65],[131,66],[132,67],[133,68],[48,69],[47,2],[51,70],[49,71],[52,2],[50,72],[53,73],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[76,2],[78,74],[77,75],[75,76],[74,77],[73,78],[81,79],[80,75],[79,75]],"exportedModulesMap":[[71,1],[44,2],[45,2],[46,3],[54,4],[72,5],[57,6],[56,7],[55,2],[59,8],[60,9],[58,10],[61,11],[62,12],[63,13],[64,14],[65,15],[66,16],[67,17],[68,18],[69,19],[70,20],[82,21],[83,21],[85,22],[86,23],[87,24],[88,25],[89,26],[90,27],[91,28],[92,29],[93,30],[94,31],[95,31],[97,32],[96,33],[98,32],[99,34],[100,35],[84,36],[134,2],[101,37],[102,38],[103,39],[135,40],[104,41],[105,42],[106,43],[107,44],[108,45],[109,46],[110,47],[111,48],[112,49],[113,50],[114,50],[115,51],[116,52],[118,53],[117,54],[119,55],[120,56],[121,2],[122,57],[123,58],[124,59],[125,60],[126,61],[127,62],[128,63],[129,64],[130,65],[131,66],[132,67],[133,68],[48,69],[47,2],[51,70],[49,71],[52,2],[50,72],[53,73],[43,2],[8,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[33,2],[30,2],[31,2],[32,2],[34,2],[7,2],[35,2],[40,2],[41,2],[36,2],[37,2],[38,2],[39,2],[1,2],[42,2],[76,2],[75,80],[74,81],[73,82]],"semanticDiagnosticsPerFile":[71,44,45,46,54,72,57,56,55,59,60,58,61,62,63,64,65,66,67,68,69,70,82,83,85,86,87,88,89,90,91,92,93,94,95,97,96,98,99,100,84,134,101,102,103,135,104,105,106,107,108,109,110,111,112,113,114,115,116,118,117,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,48,47,51,49,52,50,53,43,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,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,76,78,77,75,74,73,81,80,79]},"version":"4.9.3"}