@operato/scene-sted 1.1.18 → 1.1.21

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.21](https://github.com/things-scene/operato-scene/compare/v1.1.20...v1.1.21) (2022-12-16)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * input-unit-number ([a6d91f2](https://github.com/things-scene/operato-scene/commit/a6d91f2f674b9a7dba4e216419a47be1b3f8550d))
12
+
13
+
14
+
15
+ ### [1.1.19](https://github.com/things-scene/operato-scene/compare/v1.1.18...v1.1.19) (2022-12-07)
16
+
17
+
18
+ ### :bug: Bug Fix
19
+
20
+ * add handling scene-sted change event ([22881c0](https://github.com/things-scene/operato-scene/commit/22881c09ac95bca125915347153b8e3b142fa835))
21
+
22
+
23
+
6
24
  ### [1.1.18](https://github.com/things-scene/operato-scene/compare/v1.1.17...v1.1.18) (2022-12-06)
7
25
 
8
26
 
package/db.sqlite CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  import '@operato/input/ox-input-unit-number.js';
2
- import { HTMLOverlayElement } from '@hatiolab/things-scene';
2
+ import { HTMLOverlayElement, Properties } from '@hatiolab/things-scene';
3
3
  export default class InputUnitNumber extends HTMLOverlayElement {
4
4
  static get nature(): {
5
5
  mutable: boolean;
@@ -29,5 +29,7 @@ export default class InputUnitNumber extends HTMLOverlayElement {
29
29
  help: string;
30
30
  };
31
31
  get tagName(): string;
32
+ oncreate_element(fraction: HTMLElement): void;
32
33
  setElementProperties(input: HTMLElement): void;
34
+ onchange(after: Properties, before: Properties): void;
33
35
  }
@@ -144,6 +144,8 @@ const UNIT_SYSTEMS = {
144
144
  'm2 oC/W': {
145
145
  'm2 oC/kW': 1000
146
146
  },
147
+ '%': {},
148
+ ppm: {},
147
149
  K: {
148
150
  C: [(v) => v - 273.15, (v) => v + 273.15]
149
151
  }
@@ -179,7 +181,7 @@ const NATURE = {
179
181
  options: function () {
180
182
  const parent = this.parentElement;
181
183
  const unit = parent.value['unit'];
182
- return unit ? ['', unit, ...Object.keys(UNIT_SYSTEMS[unit])] : [''];
184
+ return unit ? ['', unit, ...((UNIT_SYSTEMS[unit] && Object.keys(UNIT_SYSTEMS[unit])) || [])] : [''];
183
185
  }
184
186
  }
185
187
  }
@@ -196,14 +198,30 @@ export default class InputUnitNumber extends HTMLOverlayElement {
196
198
  get tagName() {
197
199
  return 'ox-input-unit-number';
198
200
  }
201
+ oncreate_element(fraction) {
202
+ fraction.onchange = e => {
203
+ this.value = e.target.value;
204
+ };
205
+ var { defaultValue } = this.state;
206
+ // fraction.style.setProperty('--button-background-color', '#fafbfc')
207
+ fraction.style.setProperty('--input-padding', '2px');
208
+ fraction.defaultValue = defaultValue;
209
+ this.reposition();
210
+ }
199
211
  setElementProperties(input) {
200
212
  var { placeholder, unit = 'kg', userUnit, value } = this.state;
201
213
  input.style.setProperty('--input-padding', '0');
202
214
  input.stdUnit = unit;
203
- input.userUnit = userUnit || unit;
215
+ input.userUnit = userUnit && UNIT_SYSTEMS[unit][userUnit] ? userUnit : unit;
204
216
  input.placeholder = placeholder || '';
205
217
  input.value = value;
206
218
  }
219
+ onchange(after, before) {
220
+ super.onchange(after, before);
221
+ if ('value' in after) {
222
+ this.data = after.value;
223
+ }
224
+ }
207
225
  }
208
226
  Component.register('input-unit-number', InputUnitNumber);
209
227
  //# sourceMappingURL=input-unit-number.js.map
@@ -1 +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, 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 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\nComponent.register('input-unit-number', InputUnitNumber)\n"]}
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 '%': {},\n ppm: {},\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, ...((UNIT_SYSTEMS[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_SYSTEMS[unit][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"]}
@@ -6,24 +6,9 @@
6
6
  "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
7
  "files": [
8
8
  {
9
- "date": 1670168760005,
10
- "name": "logs/application-2022-12-05-00.log",
11
- "hash": "312f8f541375dfca03a2128197ae692f2d535beaee1340872f2ef1aa42d2e11f"
12
- },
13
- {
14
- "date": 1670171980707,
15
- "name": "logs/application-2022-12-05-01.log",
16
- "hash": "e5b7ad8a9350d3684d22dd09825144eae6ed4800ccd7e84d6be8acfec247cf62"
17
- },
18
- {
19
- "date": 1670173319509,
20
- "name": "logs/application-2022-12-05-02.log",
21
- "hash": "a72561953e7c407485e499ee6920cdd4e91bd5066bab9175237e3a0966a7a9e0"
22
- },
23
- {
24
- "date": 1670312460891,
25
- "name": "logs/application-2022-12-06-16.log",
26
- "hash": "aa2ca0bc25999c4a8aeda9602bd9ac4723997daf4b3bacd68dd99b65d7e2b968"
9
+ "date": 1671156871977,
10
+ "name": "logs/application-2022-12-16-11.log",
11
+ "hash": "c1a0770a83e658e01ae882e26702b2b678d8695476c203b607452f05a52ddc47"
27
12
  }
28
13
  ],
29
14
  "hashType": "sha256"
@@ -24,6 +24,11 @@
24
24
  "date": 1670312462135,
25
25
  "name": "logs/connections-2022-12-06-16.log",
26
26
  "hash": "7e1662dcdd39a3f5a9311b9d2f14877023defcedf3d771440b083fee82a62ac3"
27
+ },
28
+ {
29
+ "date": 1671156873674,
30
+ "name": "logs/connections-2022-12-16-11.log",
31
+ "hash": "86ae9282ab547e18f63ea566d5d3d55133603b2449c4c27d48ff5c1af4e6ee8b"
27
32
  }
28
33
  ],
29
34
  "hashType": "sha256"
@@ -0,0 +1,18 @@
1
+ 2022-12-16T11:14:32+09:00 info: File Storage is Ready.
2
+ 2022-12-16T11:14:34+09:00 error: oracledb module loading failed
3
+ 2022-12-16T11:14:34+09:00 info: Default DataSource established
4
+ 2022-12-16T11:14:35+09:00 info: Transaction DataSource established
5
+ 2022-12-16T11:14:35+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2022-12-16T11:14:35+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2022-12-16T11:33:51+09:00 info: File Storage is Ready.
8
+ 2022-12-16T11:33:52+09:00 error: oracledb module loading failed
9
+ 2022-12-16T11:33:53+09:00 info: Default DataSource established
10
+ 2022-12-16T11:33:53+09:00 info: Transaction DataSource established
11
+ 2022-12-16T11:33:54+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2022-12-16T11:33:54+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
13
+ 2022-12-16T11:42:41+09:00 info: File Storage is Ready.
14
+ 2022-12-16T11:42:42+09:00 error: oracledb module loading failed
15
+ 2022-12-16T11:42:43+09:00 info: Default DataSource established
16
+ 2022-12-16T11:42:43+09:00 info: Transaction DataSource established
17
+ 2022-12-16T11:42:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
+ 2022-12-16T11:42:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,105 @@
1
+ 2022-12-16T11:14:35+09:00 info: Initializing ConnectionManager...
2
+ 2022-12-16T11:14:35+09:00 info: Connector 'echo-back-server' started to ready
3
+ 2022-12-16T11:14:35+09:00 info: Connector 'echo-back' started to ready
4
+ 2022-12-16T11:14:35+09:00 info: Connector 'http-connector' started to ready
5
+ 2022-12-16T11:14:35+09:00 info: Connector 'graphql-connector' started to ready
6
+ 2022-12-16T11:14:35+09:00 info: Connector 'sqlite-connector' started to ready
7
+ 2022-12-16T11:14:35+09:00 info: Connector 'postgresql-connector' started to ready
8
+ 2022-12-16T11:14:35+09:00 info: Connector 'mqtt-connector' started to ready
9
+ 2022-12-16T11:14:35+09:00 info: Connector 'mssql-connector' started to ready
10
+ 2022-12-16T11:14:35+09:00 info: Connector 'oracle-connector' started to ready
11
+ 2022-12-16T11:14:35+09:00 info: Connector 'mysql-connector' started to ready
12
+ 2022-12-16T11:14:35+09:00 info: Connector 'socket-server' started to ready
13
+ 2022-12-16T11:14:35+09:00 info: echo-back-servers are ready
14
+ 2022-12-16T11:14:35+09:00 info: echo-back connections are ready
15
+ 2022-12-16T11:14:35+09:00 info: http-connector connections are ready
16
+ 2022-12-16T11:14:35+09:00 info: graphql-connector connections are ready
17
+ 2022-12-16T11:14:35+09:00 info: sqlite-connector connections are ready
18
+ 2022-12-16T11:14:35+09:00 info: postgresql-connector connections are ready
19
+ 2022-12-16T11:14:35+09:00 info: mqtt-connector connections are ready
20
+ 2022-12-16T11:14:35+09:00 info: mssql-connector connections are ready
21
+ 2022-12-16T11:14:35+09:00 info: oracle-connector connections are ready
22
+ 2022-12-16T11:14:35+09:00 info: mysql-connector connections are ready
23
+ 2022-12-16T11:14:35+09:00 info: socket servers are ready
24
+ 2022-12-16T11:14:35+09:00 info: All connector for 'echo-back-server' ready
25
+ 2022-12-16T11:14:35+09:00 info: All connector for 'echo-back' ready
26
+ 2022-12-16T11:14:35+09:00 info: All connector for 'http-connector' ready
27
+ 2022-12-16T11:14:35+09:00 info: All connector for 'graphql-connector' ready
28
+ 2022-12-16T11:14:35+09:00 info: All connector for 'sqlite-connector' ready
29
+ 2022-12-16T11:14:35+09:00 info: All connector for 'postgresql-connector' ready
30
+ 2022-12-16T11:14:35+09:00 info: All connector for 'mqtt-connector' ready
31
+ 2022-12-16T11:14:35+09:00 info: All connector for 'mssql-connector' ready
32
+ 2022-12-16T11:14:35+09:00 info: All connector for 'oracle-connector' ready
33
+ 2022-12-16T11:14:35+09:00 info: All connector for 'mysql-connector' ready
34
+ 2022-12-16T11:14:35+09:00 info: All connector for 'socket-server' ready
35
+ 2022-12-16T11:14:35+09:00 info: ConnectionManager initialization done:
36
+ 2022-12-16T11:33:54+09:00 info: Initializing ConnectionManager...
37
+ 2022-12-16T11:33:54+09:00 info: Connector 'echo-back-server' started to ready
38
+ 2022-12-16T11:33:54+09:00 info: Connector 'echo-back' started to ready
39
+ 2022-12-16T11:33:54+09:00 info: Connector 'http-connector' started to ready
40
+ 2022-12-16T11:33:54+09:00 info: Connector 'graphql-connector' started to ready
41
+ 2022-12-16T11:33:54+09:00 info: Connector 'sqlite-connector' started to ready
42
+ 2022-12-16T11:33:54+09:00 info: Connector 'postgresql-connector' started to ready
43
+ 2022-12-16T11:33:54+09:00 info: Connector 'mqtt-connector' started to ready
44
+ 2022-12-16T11:33:54+09:00 info: Connector 'mssql-connector' started to ready
45
+ 2022-12-16T11:33:54+09:00 info: Connector 'oracle-connector' started to ready
46
+ 2022-12-16T11:33:54+09:00 info: Connector 'mysql-connector' started to ready
47
+ 2022-12-16T11:33:54+09:00 info: Connector 'socket-server' started to ready
48
+ 2022-12-16T11:33:54+09:00 info: echo-back-servers are ready
49
+ 2022-12-16T11:33:54+09:00 info: echo-back connections are ready
50
+ 2022-12-16T11:33:54+09:00 info: http-connector connections are ready
51
+ 2022-12-16T11:33:54+09:00 info: graphql-connector connections are ready
52
+ 2022-12-16T11:33:54+09:00 info: sqlite-connector connections are ready
53
+ 2022-12-16T11:33:54+09:00 info: postgresql-connector connections are ready
54
+ 2022-12-16T11:33:54+09:00 info: mqtt-connector connections are ready
55
+ 2022-12-16T11:33:54+09:00 info: mssql-connector connections are ready
56
+ 2022-12-16T11:33:54+09:00 info: oracle-connector connections are ready
57
+ 2022-12-16T11:33:54+09:00 info: mysql-connector connections are ready
58
+ 2022-12-16T11:33:54+09:00 info: socket servers are ready
59
+ 2022-12-16T11:33:54+09:00 info: All connector for 'echo-back-server' ready
60
+ 2022-12-16T11:33:54+09:00 info: All connector for 'echo-back' ready
61
+ 2022-12-16T11:33:54+09:00 info: All connector for 'http-connector' ready
62
+ 2022-12-16T11:33:54+09:00 info: All connector for 'graphql-connector' ready
63
+ 2022-12-16T11:33:54+09:00 info: All connector for 'sqlite-connector' ready
64
+ 2022-12-16T11:33:54+09:00 info: All connector for 'postgresql-connector' ready
65
+ 2022-12-16T11:33:54+09:00 info: All connector for 'mqtt-connector' ready
66
+ 2022-12-16T11:33:54+09:00 info: All connector for 'mssql-connector' ready
67
+ 2022-12-16T11:33:54+09:00 info: All connector for 'oracle-connector' ready
68
+ 2022-12-16T11:33:54+09:00 info: All connector for 'mysql-connector' ready
69
+ 2022-12-16T11:33:54+09:00 info: All connector for 'socket-server' ready
70
+ 2022-12-16T11:33:54+09:00 info: ConnectionManager initialization done:
71
+ 2022-12-16T11:42:43+09:00 info: Initializing ConnectionManager...
72
+ 2022-12-16T11:42:43+09:00 info: Connector 'echo-back-server' started to ready
73
+ 2022-12-16T11:42:43+09:00 info: Connector 'echo-back' started to ready
74
+ 2022-12-16T11:42:43+09:00 info: Connector 'http-connector' started to ready
75
+ 2022-12-16T11:42:43+09:00 info: Connector 'graphql-connector' started to ready
76
+ 2022-12-16T11:42:43+09:00 info: Connector 'sqlite-connector' started to ready
77
+ 2022-12-16T11:42:43+09:00 info: Connector 'postgresql-connector' started to ready
78
+ 2022-12-16T11:42:43+09:00 info: Connector 'mqtt-connector' started to ready
79
+ 2022-12-16T11:42:43+09:00 info: Connector 'mssql-connector' started to ready
80
+ 2022-12-16T11:42:43+09:00 info: Connector 'oracle-connector' started to ready
81
+ 2022-12-16T11:42:43+09:00 info: Connector 'mysql-connector' started to ready
82
+ 2022-12-16T11:42:43+09:00 info: Connector 'socket-server' started to ready
83
+ 2022-12-16T11:42:43+09:00 info: echo-back-servers are ready
84
+ 2022-12-16T11:42:43+09:00 info: echo-back connections are ready
85
+ 2022-12-16T11:42:43+09:00 info: http-connector connections are ready
86
+ 2022-12-16T11:42:43+09:00 info: graphql-connector connections are ready
87
+ 2022-12-16T11:42:43+09:00 info: sqlite-connector connections are ready
88
+ 2022-12-16T11:42:43+09:00 info: postgresql-connector connections are ready
89
+ 2022-12-16T11:42:43+09:00 info: mqtt-connector connections are ready
90
+ 2022-12-16T11:42:43+09:00 info: mssql-connector connections are ready
91
+ 2022-12-16T11:42:43+09:00 info: oracle-connector connections are ready
92
+ 2022-12-16T11:42:43+09:00 info: mysql-connector connections are ready
93
+ 2022-12-16T11:42:43+09:00 info: socket servers are ready
94
+ 2022-12-16T11:42:43+09:00 info: All connector for 'echo-back-server' ready
95
+ 2022-12-16T11:42:43+09:00 info: All connector for 'echo-back' ready
96
+ 2022-12-16T11:42:43+09:00 info: All connector for 'http-connector' ready
97
+ 2022-12-16T11:42:43+09:00 info: All connector for 'graphql-connector' ready
98
+ 2022-12-16T11:42:43+09:00 info: All connector for 'sqlite-connector' ready
99
+ 2022-12-16T11:42:43+09:00 info: All connector for 'postgresql-connector' ready
100
+ 2022-12-16T11:42:43+09:00 info: All connector for 'mqtt-connector' ready
101
+ 2022-12-16T11:42:43+09:00 info: All connector for 'mssql-connector' ready
102
+ 2022-12-16T11:42:43+09:00 info: All connector for 'oracle-connector' ready
103
+ 2022-12-16T11:42:43+09:00 info: All connector for 'mysql-connector' ready
104
+ 2022-12-16T11:42:43+09:00 info: All connector for 'socket-server' ready
105
+ 2022-12-16T11:42:43+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.18",
4
+ "version": "1.1.21",
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": "72eebdb4beb253dc234551754d9b19d7f4d31ec9"
63
+ "gitHead": "16672dd71feffaa03ea79cd7d89d3bf390dfceca"
64
64
  }
@@ -144,6 +144,8 @@ const UNIT_SYSTEMS: { [unit: string]: { [unit: string]: number | ((v: number) =>
144
144
  'm2 oC/W': {
145
145
  'm2 oC/kW': 1000
146
146
  },
147
+ '%': {},
148
+ ppm: {},
147
149
  K: {
148
150
  C: [(v: number) => v - 273.15, (v: number) => v + 273.15]
149
151
  }
@@ -181,7 +183,7 @@ const NATURE = {
181
183
  const parent: any = (this as any).parentElement
182
184
  const unit = parent.value['unit']
183
185
 
184
- return unit ? ['', unit, ...Object.keys(UNIT_SYSTEMS[unit])] : ['']
186
+ return unit ? ['', unit, ...((UNIT_SYSTEMS[unit] && Object.keys(UNIT_SYSTEMS[unit])) || [])] : ['']
185
187
  }
186
188
  }
187
189
  }
@@ -192,7 +194,7 @@ const NATURE = {
192
194
 
193
195
  import '@operato/input/ox-input-unit-number.js'
194
196
 
195
- import { Component, HTMLOverlayElement, error } from '@hatiolab/things-scene'
197
+ import { Component, HTMLOverlayElement, Properties, error } from '@hatiolab/things-scene'
196
198
 
197
199
  export default class InputUnitNumber extends HTMLOverlayElement {
198
200
  static get nature() {
@@ -203,15 +205,37 @@ export default class InputUnitNumber extends HTMLOverlayElement {
203
205
  return 'ox-input-unit-number'
204
206
  }
205
207
 
208
+ oncreate_element(fraction: HTMLElement) {
209
+ fraction.onchange = e => {
210
+ this.value = (e.target as any).value
211
+ }
212
+
213
+ var { defaultValue } = this.state
214
+
215
+ // fraction.style.setProperty('--button-background-color', '#fafbfc')
216
+ fraction.style.setProperty('--input-padding', '2px')
217
+ ;(fraction as any).defaultValue = defaultValue
218
+
219
+ this.reposition()
220
+ }
221
+
206
222
  setElementProperties(input: HTMLElement) {
207
223
  var { placeholder, unit = 'kg', userUnit, value } = this.state
208
224
 
209
225
  input.style.setProperty('--input-padding', '0')
210
226
  ;(input as any).stdUnit = unit
211
- ;(input as any).userUnit = userUnit || unit
227
+ ;(input as any).userUnit = userUnit && UNIT_SYSTEMS[unit][userUnit] ? userUnit : unit
212
228
  ;(input as any).placeholder = placeholder || ''
213
229
  ;(input as any).value = value
214
230
  }
231
+
232
+ onchange(after: Properties, before: Properties) {
233
+ super.onchange(after, before)
234
+
235
+ if ('value' in after) {
236
+ this.data = after.value
237
+ }
238
+ }
215
239
  }
216
240
 
217
241
  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 +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/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":"cb53516b0d559a2aa524f5c3933f65a01af309955cc50d71b04f7c991262cab0","signature":"b7a350190b61af1e93fef5f8ac5c61ae2c72cbccc2ac3db27f38983eccdbc0a2"},{"version":"6514821d4903cc4d3b98658a20e2b5e096e9ce64355235b59de8bb78eaae1568","signature":"00755b1c874ed8af2a5b77df2c34ef701522004e11c1ee4de1fb4f123f6a674e"},{"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"}
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","3cbcdf2a84c93c6b62d8d4584f613c8af7c6330ac2ba1ff781d10a3e0935beb9","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},"54dd3fa42e6fc93005dec5a526fd63a94947deb2030e8f67b976d389d2c2c2f3","4b19ef22586a488de7412e25b5490ace2562e86cfdb3e1c9a22cad11ecb9fd5e",{"version":"58ada9d12572ba1f6d9ca5c505cbb09cfb0e23223886fe1245badcc3e59067e1","signature":"df4b0a4bc3619103113988b2da891d8d5ac656fc2d654db6a0caa9c5bd70844f"},{"version":"8295ada5e241b8d491c89bec344d0e0df19c75445b74fc2d27a41a55269600f6","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","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","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},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"f7db71191aa7aac5d6bc927ed6e7075c2763d22c7238227ec0c63c8cf5cb6a8b","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"8dbe725f8d237e70310977afcfa011629804d101ebaa0266cafda6b61ad72236"],"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],[94,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.4"}
@@ -1,12 +0,0 @@
1
- 2022-12-05T00:46:00+09:00 info: File Storage is Ready.
2
- 2022-12-05T00:46:01+09:00 error: oracledb module loading failed
3
- 2022-12-05T00:46:10+09:00 info: File Storage is Ready.
4
- 2022-12-05T00:46:11+09:00 error: oracledb module loading failed
5
- 2022-12-05T00:46:11+09:00 info: Default DataSource established
6
- 2022-12-05T00:46:11+09:00 info: Transaction DataSource established
7
- 2022-12-05T00:46:38+09:00 info: File Storage is Ready.
8
- 2022-12-05T00:46:39+09:00 error: oracledb module loading failed
9
- 2022-12-05T00:46:40+09:00 info: Default DataSource established
10
- 2022-12-05T00:46:40+09:00 info: Transaction DataSource established
11
- 2022-12-05T00:46:40+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
- 2022-12-05T00:46:40+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,18 +0,0 @@
1
- 2022-12-05T01:39:41+09:00 info: File Storage is Ready.
2
- 2022-12-05T01:39:42+09:00 error: oracledb module loading failed
3
- 2022-12-05T01:39:42+09:00 info: Default DataSource established
4
- 2022-12-05T01:39:43+09:00 info: Transaction DataSource established
5
- 2022-12-05T01:39:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
- 2022-12-05T01:39:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
- 2022-12-05T01:49:34+09:00 info: File Storage is Ready.
8
- 2022-12-05T01:49:34+09:00 error: oracledb module loading failed
9
- 2022-12-05T01:49:35+09:00 info: Default DataSource established
10
- 2022-12-05T01:49:35+09:00 info: Transaction DataSource established
11
- 2022-12-05T01:49:36+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
- 2022-12-05T01:49:36+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
13
- 2022-12-05T01:50:37+09:00 info: File Storage is Ready.
14
- 2022-12-05T01:50:38+09:00 error: oracledb module loading failed
15
- 2022-12-05T01:50:39+09:00 info: Default DataSource established
16
- 2022-12-05T01:50:39+09:00 info: Transaction DataSource established
17
- 2022-12-05T01:50:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
- 2022-12-05T01:50:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -1,29 +0,0 @@
1
- 2022-12-05T02:02:00+09:00 info: File Storage is Ready.
2
- 2022-12-05T02:02:00+09:00 error: oracledb module loading failed
3
- 2022-12-05T02:02:01+09:00 info: Default DataSource established
4
- 2022-12-05T02:02:01+09:00 info: Transaction DataSource established
5
- 2022-12-05T02:02:02+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
- 2022-12-05T02:02:02+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
- 2022-12-05T02:05:18+09:00 info: File Storage is Ready.
8
- 2022-12-05T02:05:19+09:00 error: oracledb module loading failed
9
- 2022-12-05T02:05:19+09:00 info: Default DataSource established
10
- 2022-12-05T02:05:20+09:00 info: Transaction DataSource established
11
- 2022-12-05T02:05:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
- 2022-12-05T02:05:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
13
- 2022-12-05T02:21:30+09:00 info: File Storage is Ready.
14
- 2022-12-05T02:21:30+09:00 error: oracledb module loading failed
15
- 2022-12-05T02:21:31+09:00 info: Default DataSource established
16
- 2022-12-05T02:21:31+09:00 info: Transaction DataSource established
17
- 2022-12-05T02:21:32+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
- 2022-12-05T02:21:32+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
19
- 2022-12-05T02:38:17+09:00 info: File Storage is Ready.
20
- 2022-12-05T02:38:19+09:00 error: oracledb module loading failed
21
- 2022-12-05T02:38:19+09:00 info: Default DataSource established
22
- 2022-12-05T02:38:19+09:00 info: Transaction DataSource established
23
- 2022-12-05T02:38:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
24
- 2022-12-05T02:38:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
25
- 2022-12-05T02:39:11+09:00 error: thumbnail not found
26
- 2022-12-05T02:39:11+09:00 error: thumbnail not found
27
- 2022-12-05T02:39:11+09:00 error: thumbnail not found
28
- 2022-12-05T02:39:11+09:00 error: thumbnail not found
29
- 2022-12-05T02:39:11+09:00 error: thumbnail not found
@@ -1,6 +0,0 @@
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