@operato/scene-switch 0.0.1 → 0.0.5
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 +47 -0
- package/db.sqlite +0 -0
- package/demo/index.html +1 -1
- package/dist/editors/index.d.ts +2 -0
- package/dist/editors/index.js +2 -0
- package/dist/editors/index.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/{src/index.js → index.js} +0 -0
- package/dist/index.js.map +1 -0
- package/dist/simple-switch-element.d.ts +8 -0
- package/dist/simple-switch-element.js +101 -0
- package/dist/simple-switch-element.js.map +1 -0
- package/dist/simple-switch.d.ts +22 -0
- package/dist/simple-switch.js +89 -0
- package/dist/simple-switch.js.map +1 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +29 -0
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +24 -0
- package/logs/application-2021-11-28-11.log +12 -0
- package/logs/application-2021-11-28-20.log +4 -0
- package/logs/application-2021-11-28-21.log +25 -0
- package/logs/connections-2021-11-28-11.log +2 -0
- package/logs/connections-2021-11-28-20.log +1 -0
- package/logs/connections-2021-11-28-21.log +129 -0
- package/package.json +16 -9
- package/src/simple-switch.ts +3 -3
- package/things-scene.config.js +1 -1
- package/tsconfig.json +1 -1
- package/tsconfig.tsbuildinfo +1 -0
- package/src/things-scene.d.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,53 @@
|
|
|
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
|
+
### [0.0.5](https://github.com/things-scene/operato-scene/compare/v0.0.4...v0.0.5) (2021-12-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :rocket: New Features
|
|
10
|
+
|
|
11
|
+
* added scene-half-roundrect and integration ([91092e6](https://github.com/things-scene/operato-scene/commit/91092e664dd0d962e981f4acae70252f4c2ac6da))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### :bug: Bug Fix
|
|
15
|
+
|
|
16
|
+
* add chartjs, integration module ([24cd106](https://github.com/things-scene/operato-scene/commit/24cd1065d13314e7ca3927a0306fed766531b851))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### [0.0.4](https://github.com/hatiolab/things-factory/compare/v0.0.3...v0.0.4) (2021-12-01)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### :rocket: New Features
|
|
24
|
+
|
|
25
|
+
* add @operato/scene-clone ([caecf49](https://github.com/hatiolab/things-factory/commit/caecf49a17e7da68dfaadcafd77f8e4c0a8554f0))
|
|
26
|
+
* add @operato/scene-i18n ([92d14ff](https://github.com/hatiolab/things-factory/commit/92d14ff4bcacfb920e39470cf7537ab7560844f1))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### :bug: Bug Fix
|
|
30
|
+
|
|
31
|
+
* apply things-scene.d.ts ([0712f76](https://github.com/hatiolab/things-factory/commit/0712f7695967ee0ffc75f79806deaa37b324523b))
|
|
32
|
+
* things-scene upgrade ([9e2c0b8](https://github.com/hatiolab/things-factory/commit/9e2c0b85b1aacb0a4ef656866259879a20cd5de4))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### [0.0.3](https://github.com/things-scene/operato-scene/compare/v0.0.2...v0.0.3) (2021-11-29)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### :bug: Bug Fix
|
|
40
|
+
|
|
41
|
+
* @operato/scene-switch package.json ([6eb9d59](https://github.com/things-scene/operato-scene/commit/6eb9d594e52e95cd1323613ea71fa3fcc4cfb981))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### [0.0.2](https://github.com/things-scene/operato-scene/compare/v0.0.1...v0.0.2) (2021-11-29)
|
|
46
|
+
|
|
47
|
+
**Note:** Version bump only for package @operato/scene-switch
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
6
53
|
### 0.0.1 (2021-11-29)
|
|
7
54
|
|
|
8
55
|
|
package/db.sqlite
ADDED
|
Binary file
|
package/demo/index.html
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
import { html, render } from 'lit'
|
|
30
30
|
import { ReferenceMap, create, error } from '@hatiolab/things-scene'
|
|
31
31
|
import '@operato/board'
|
|
32
|
-
import './dist/
|
|
32
|
+
import './dist/simple-switch.js'
|
|
33
33
|
|
|
34
34
|
const colors = ['red', 'blue', 'orange', 'yellow', 'magenta', 'violet', 'navy', 'green', 'cyan', 'lime']
|
|
35
35
|
const boards = colors.map((color, idx) => {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/editors/index.ts"],"names":[],"mappings":"AAAA,eAAe,EAAE,CAAC","sourcesContent":["export default [];\n"]}
|
package/dist/index.d.ts
ADDED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,iBAAiB,CAAA;AAC1C,eAAe,CAAC,YAAY,CAAC,CAAA","sourcesContent":["import SimpleSwitch from './simple-switch'\nexport default [SimpleSwitch]\n"]}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { LitElement, css, html } from 'lit';
|
|
3
|
+
import { customElement, property } from 'lit/decorators.js';
|
|
4
|
+
let SimpleSwitchElement = class SimpleSwitchElement extends LitElement {
|
|
5
|
+
constructor() {
|
|
6
|
+
super(...arguments);
|
|
7
|
+
this.round = false;
|
|
8
|
+
this.value = false;
|
|
9
|
+
}
|
|
10
|
+
render() {
|
|
11
|
+
return html `
|
|
12
|
+
<label>
|
|
13
|
+
<input type="checkbox" .checked=${this.value} />
|
|
14
|
+
<span ?round=${this.round}></span>
|
|
15
|
+
</label>
|
|
16
|
+
`;
|
|
17
|
+
}
|
|
18
|
+
firstUpdated() {
|
|
19
|
+
this.renderRoot.addEventListener('change', (e) => {
|
|
20
|
+
var _a;
|
|
21
|
+
this.value = (_a = e.target) === null || _a === void 0 ? void 0 : _a.checked;
|
|
22
|
+
this.dispatchEvent(new CustomEvent('value-change', {
|
|
23
|
+
detail: this.value
|
|
24
|
+
}));
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
SimpleSwitchElement.styles = css `
|
|
29
|
+
/* The switch - the box around the slider */
|
|
30
|
+
label {
|
|
31
|
+
position: relative;
|
|
32
|
+
display: inline-block;
|
|
33
|
+
width: 100%;
|
|
34
|
+
height: 100%;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* Hide default HTML checkbox */
|
|
38
|
+
label input {
|
|
39
|
+
opacity: 0;
|
|
40
|
+
width: 0;
|
|
41
|
+
height: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* The slider */
|
|
45
|
+
span {
|
|
46
|
+
position: absolute;
|
|
47
|
+
cursor: pointer;
|
|
48
|
+
width: var(--ox-simple-switch-fullwidth);
|
|
49
|
+
height: var(--ox-simple-switch-fullheight);
|
|
50
|
+
top: calc(0 - var(--ox-simple-switch-thumbnail-size));
|
|
51
|
+
left: 0;
|
|
52
|
+
background-color: var(--ox-simple-switch-off-color, #ccc);
|
|
53
|
+
-webkit-transition: 0.4s;
|
|
54
|
+
transition: 0.4s;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
span:before {
|
|
58
|
+
position: absolute;
|
|
59
|
+
content: '';
|
|
60
|
+
height: calc(var(--ox-simple-switch-thumbnail-size) - 8px);
|
|
61
|
+
width: calc(var(--ox-simple-switch-thumbnail-size) - 8px);
|
|
62
|
+
left: 4px;
|
|
63
|
+
top: 4px;
|
|
64
|
+
background-color: var(--ox-simple-switch-thumbnail-color, white);
|
|
65
|
+
-webkit-transition: 0.4s;
|
|
66
|
+
transition: 0.4s;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
input:checked + span {
|
|
70
|
+
background-color: var(--ox-simple-switch-on-color, #2196f3);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
input:checked + span:before {
|
|
74
|
+
-webkit-transform: translateX(calc(var(--ox-simple-switch-fullwidth) - var(--ox-simple-switch-thumbnail-size)))
|
|
75
|
+
translateY(calc(var(--ox-simple-switch-fullheight) - var(--ox-simple-switch-thumbnail-size)));
|
|
76
|
+
-ms-transform: translateX(calc(var(--ox-simple-switch-fullwidth) - var(--ox-simple-switch-thumbnail-size)))
|
|
77
|
+
translateY(calc(var(--ox-simple-switch-fullheight) - var(--ox-simple-switch-thumbnail-size)));
|
|
78
|
+
transform: translateX(calc(var(--ox-simple-switch-fullwidth) - var(--ox-simple-switch-thumbnail-size)))
|
|
79
|
+
translateY(calc(var(--ox-simple-switch-fullheight) - var(--ox-simple-switch-thumbnail-size)));
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/* Rounded sliders */
|
|
83
|
+
span[round] {
|
|
84
|
+
border-radius: calc(var(--ox-simple-switch-thumbnail-size) / 2);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
span[round]:before {
|
|
88
|
+
border-radius: calc((var(--ox-simple-switch-thumbnail-size) - 8px) / 2);
|
|
89
|
+
}
|
|
90
|
+
`;
|
|
91
|
+
__decorate([
|
|
92
|
+
property({ type: Boolean })
|
|
93
|
+
], SimpleSwitchElement.prototype, "round", void 0);
|
|
94
|
+
__decorate([
|
|
95
|
+
property({ type: Boolean })
|
|
96
|
+
], SimpleSwitchElement.prototype, "value", void 0);
|
|
97
|
+
SimpleSwitchElement = __decorate([
|
|
98
|
+
customElement('ox-simple-switch')
|
|
99
|
+
], SimpleSwitchElement);
|
|
100
|
+
export { SimpleSwitchElement };
|
|
101
|
+
//# sourceMappingURL=simple-switch-element.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simple-switch-element.js","sourceRoot":"","sources":["../src/simple-switch-element.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAG3D,IAAa,mBAAmB,GAAhC,MAAa,mBAAoB,SAAQ,UAAU;IAAnD;;QAiE+B,UAAK,GAAY,KAAK,CAAA;QACtB,UAAK,GAAY,KAAK,CAAA;IAqBrD,CAAC;IAnBC,MAAM;QACJ,OAAO,IAAI,CAAA;;0CAE2B,IAAI,CAAC,KAAK;uBAC7B,IAAI,CAAC,KAAK;;KAE5B,CAAA;IACH,CAAC;IAED,YAAY;QACV,IAAI,CAAC,UAAU,CAAC,gBAAgB,CAAC,QAAQ,EAAE,CAAC,CAAQ,EAAE,EAAE;;YACtD,IAAI,CAAC,KAAK,GAAG,MAAC,CAAC,CAAC,MAA2B,0CAAE,OAAO,CAAA;YACpD,IAAI,CAAC,aAAa,CAChB,IAAI,WAAW,CAAC,cAAc,EAAE;gBAC9B,MAAM,EAAE,IAAI,CAAC,KAAK;aACnB,CAAC,CACH,CAAA;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;CACF,CAAA;AAtFQ,0BAAM,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8DlB,CAAA;AAE4B;IAA5B,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;kDAAuB;AACtB;IAA5B,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;kDAAuB;AAlExC,mBAAmB;IAD/B,aAAa,CAAC,kBAAkB,CAAC;GACrB,mBAAmB,CAuF/B;SAvFY,mBAAmB","sourcesContent":["import { LitElement, css, html } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\n@customElement('ox-simple-switch')\nexport class SimpleSwitchElement extends LitElement {\n static styles = css`\n /* The switch - the box around the slider */\n label {\n position: relative;\n display: inline-block;\n width: 100%;\n height: 100%;\n }\n\n /* Hide default HTML checkbox */\n label input {\n opacity: 0;\n width: 0;\n height: 0;\n }\n\n /* The slider */\n span {\n position: absolute;\n cursor: pointer;\n width: var(--ox-simple-switch-fullwidth);\n height: var(--ox-simple-switch-fullheight);\n top: calc(0 - var(--ox-simple-switch-thumbnail-size));\n left: 0;\n background-color: var(--ox-simple-switch-off-color, #ccc);\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n span:before {\n position: absolute;\n content: '';\n height: calc(var(--ox-simple-switch-thumbnail-size) - 8px);\n width: calc(var(--ox-simple-switch-thumbnail-size) - 8px);\n left: 4px;\n top: 4px;\n background-color: var(--ox-simple-switch-thumbnail-color, white);\n -webkit-transition: 0.4s;\n transition: 0.4s;\n }\n\n input:checked + span {\n background-color: var(--ox-simple-switch-on-color, #2196f3);\n }\n\n input:checked + span:before {\n -webkit-transform: translateX(calc(var(--ox-simple-switch-fullwidth) - var(--ox-simple-switch-thumbnail-size)))\n translateY(calc(var(--ox-simple-switch-fullheight) - var(--ox-simple-switch-thumbnail-size)));\n -ms-transform: translateX(calc(var(--ox-simple-switch-fullwidth) - var(--ox-simple-switch-thumbnail-size)))\n translateY(calc(var(--ox-simple-switch-fullheight) - var(--ox-simple-switch-thumbnail-size)));\n transform: translateX(calc(var(--ox-simple-switch-fullwidth) - var(--ox-simple-switch-thumbnail-size)))\n translateY(calc(var(--ox-simple-switch-fullheight) - var(--ox-simple-switch-thumbnail-size)));\n }\n\n /* Rounded sliders */\n span[round] {\n border-radius: calc(var(--ox-simple-switch-thumbnail-size) / 2);\n }\n\n span[round]:before {\n border-radius: calc((var(--ox-simple-switch-thumbnail-size) - 8px) / 2);\n }\n `\n\n @property({ type: Boolean }) round: boolean = false\n @property({ type: Boolean }) value: boolean = false\n\n render() {\n return html`\n <label>\n <input type=\"checkbox\" .checked=${this.value} />\n <span ?round=${this.round}></span>\n </label>\n `\n }\n\n firstUpdated() {\n this.renderRoot.addEventListener('change', (e: Event) => {\n this.value = (e.target as HTMLInputElement)?.checked\n this.dispatchEvent(\n new CustomEvent('value-change', {\n detail: this.value\n })\n )\n })\n }\n}\n"]}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import './simple-switch-element';
|
|
2
|
+
import { HTMLOverlayElement } from '@hatiolab/things-scene';
|
|
3
|
+
import { SimpleSwitchElement } from './simple-switch-element';
|
|
4
|
+
export default class SimpleSwitch extends HTMLOverlayElement {
|
|
5
|
+
static get nature(): {
|
|
6
|
+
mutable: boolean;
|
|
7
|
+
resizable: boolean;
|
|
8
|
+
rotatable: boolean;
|
|
9
|
+
properties: {
|
|
10
|
+
type: string;
|
|
11
|
+
label: string;
|
|
12
|
+
name: string;
|
|
13
|
+
}[];
|
|
14
|
+
'value-property': string;
|
|
15
|
+
help: string;
|
|
16
|
+
};
|
|
17
|
+
oncreate_element(toggle: SimpleSwitchElement): void;
|
|
18
|
+
dispose(): void;
|
|
19
|
+
setElementProperties(toggle: SimpleSwitchElement): void;
|
|
20
|
+
reposition(): void;
|
|
21
|
+
get tagName(): string;
|
|
22
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright © HatioLab Inc. All rights reserved.
|
|
3
|
+
*/
|
|
4
|
+
import './simple-switch-element';
|
|
5
|
+
import { Component, HTMLOverlayElement } from '@hatiolab/things-scene';
|
|
6
|
+
const NATURE = {
|
|
7
|
+
mutable: false,
|
|
8
|
+
resizable: true,
|
|
9
|
+
rotatable: true,
|
|
10
|
+
properties: [
|
|
11
|
+
{
|
|
12
|
+
type: 'checkbox',
|
|
13
|
+
label: 'round',
|
|
14
|
+
name: 'round'
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
type: 'checkbox',
|
|
18
|
+
label: 'on/off',
|
|
19
|
+
name: 'data'
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
type: 'color',
|
|
23
|
+
label: 'on-color',
|
|
24
|
+
name: 'onColor'
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
type: 'color',
|
|
28
|
+
label: 'off-color',
|
|
29
|
+
name: 'offColor'
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
type: 'color',
|
|
33
|
+
label: 'thumbnail-color',
|
|
34
|
+
name: 'thumbnailColor'
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
'value-property': 'data',
|
|
38
|
+
help: 'scene/component/simple-switch'
|
|
39
|
+
};
|
|
40
|
+
export default class SimpleSwitch extends HTMLOverlayElement {
|
|
41
|
+
static get nature() {
|
|
42
|
+
return NATURE;
|
|
43
|
+
}
|
|
44
|
+
oncreate_element(toggle) {
|
|
45
|
+
toggle.addEventListener('value-change', (e) => {
|
|
46
|
+
var checked = e.detail;
|
|
47
|
+
this.setState({
|
|
48
|
+
data: checked
|
|
49
|
+
});
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
dispose() {
|
|
53
|
+
super.dispose();
|
|
54
|
+
}
|
|
55
|
+
/*
|
|
56
|
+
* 컴포넌트의 생성 또는 속성 변화 시에 호출되며,
|
|
57
|
+
* 그에 따른 html element의 반영이 필요한 부분을 구현한다.
|
|
58
|
+
*
|
|
59
|
+
* ThingsComponent state => HTML element properties
|
|
60
|
+
*/
|
|
61
|
+
setElementProperties(toggle) {
|
|
62
|
+
var { round, data, onColor, offColor, thumbnailColor } = this.state;
|
|
63
|
+
toggle.round = round;
|
|
64
|
+
toggle.value = 'true' == String(data);
|
|
65
|
+
onColor && toggle.style.setProperty('--ox-simple-switch-on-color', onColor);
|
|
66
|
+
offColor && toggle.style.setProperty('--ox-simple-switch-off-color', offColor);
|
|
67
|
+
thumbnailColor && toggle.style.setProperty('--ox-simple-switch-thumbnail-color', thumbnailColor);
|
|
68
|
+
}
|
|
69
|
+
/*
|
|
70
|
+
* 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.
|
|
71
|
+
* 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.
|
|
72
|
+
*/
|
|
73
|
+
reposition() {
|
|
74
|
+
super.reposition();
|
|
75
|
+
var element = this.element;
|
|
76
|
+
if (!element) {
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
var { height, width } = this.bounds;
|
|
80
|
+
element.style.setProperty('--ox-simple-switch-fullwidth', `${width}px`);
|
|
81
|
+
element.style.setProperty('--ox-simple-switch-fullheight', `${height}px`);
|
|
82
|
+
element.style.setProperty('--ox-simple-switch-thumbnail-size', `${Math.min(height, width)}px`);
|
|
83
|
+
}
|
|
84
|
+
get tagName() {
|
|
85
|
+
return 'ox-simple-switch';
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
Component.register('simple-switch', SimpleSwitch);
|
|
89
|
+
//# sourceMappingURL=simple-switch.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"simple-switch.js","sourceRoot":"","sources":["../src/simple-switch.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,yBAAyB,CAAA;AAEhC,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAA;AAItE,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,UAAU;YAChB,KAAK,EAAE,OAAO;YACd,IAAI,EAAE,OAAO;SACd;QACD;YACE,IAAI,EAAE,UAAU;YAChB,KAAK,EAAE,QAAQ;YACf,IAAI,EAAE,MAAM;SACb;QACD;YACE,IAAI,EAAE,OAAO;YACb,KAAK,EAAE,UAAU;YACjB,IAAI,EAAE,SAAS;SAChB;QACD;YACE,IAAI,EAAE,OAAO;YACb,KAAK,EAAE,WAAW;YAClB,IAAI,EAAE,UAAU;SACjB;QACD;YACE,IAAI,EAAE,OAAO;YACb,KAAK,EAAE,iBAAiB;YACxB,IAAI,EAAE,gBAAgB;SACvB;KACF;IACD,gBAAgB,EAAE,MAAM;IACxB,IAAI,EAAE,+BAA+B;CACtC,CAAA;AAED,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,kBAAkB;IAC1D,MAAM,KAAK,MAAM;QACf,OAAO,MAAM,CAAA;IACf,CAAC;IAED,gBAAgB,CAAC,MAA2B;QAC1C,MAAM,CAAC,gBAAgB,CAAC,cAAc,EAAE,CAAC,CAAQ,EAAE,EAAE;YACnD,IAAI,OAAO,GAAI,CAAiB,CAAC,MAAM,CAAA;YAEvC,IAAI,CAAC,QAAQ,CAAC;gBACZ,IAAI,EAAE,OAAO;aACd,CAAC,CAAA;QACJ,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,OAAO;QACL,KAAK,CAAC,OAAO,EAAE,CAAA;IACjB,CAAC;IAED;;;;;OAKG;IACH,oBAAoB,CAAC,MAA2B;QAC9C,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAEnE,MAAM,CAAC,KAAK,GAAG,KAAK,CAAA;QACpB,MAAM,CAAC,KAAK,GAAG,MAAM,IAAI,MAAM,CAAC,IAAI,CAAC,CAAA;QAErC,OAAO,IAAI,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,6BAA6B,EAAE,OAAO,CAAC,CAAA;QAC3E,QAAQ,IAAI,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,8BAA8B,EAAE,QAAQ,CAAC,CAAA;QAC9E,cAAc,IAAI,MAAM,CAAC,KAAK,CAAC,WAAW,CAAC,oCAAoC,EAAE,cAAc,CAAC,CAAA;IAClG,CAAC;IAED;;;OAGG;IACH,UAAU;QACR,KAAK,CAAC,UAAU,EAAE,CAAA;QAElB,IAAI,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE1B,IAAI,CAAC,OAAO,EAAE;YACZ,OAAM;SACP;QAED,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC,MAAM,CAAA;QAEnC,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,8BAA8B,EAAE,GAAG,KAAK,IAAI,CAAC,CAAA;QACvE,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,+BAA+B,EAAE,GAAG,MAAM,IAAI,CAAC,CAAA;QACzE,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,mCAAmC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,CAAA;IAChG,CAAC;IAED,IAAI,OAAO;QACT,OAAO,kBAAkB,CAAA;IAC3B,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,eAAe,EAAE,YAAY,CAAC,CAAA","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport './simple-switch-element'\n\nimport { Component, HTMLOverlayElement } from '@hatiolab/things-scene'\n\nimport { SimpleSwitchElement } from './simple-switch-element'\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'checkbox',\n label: 'round',\n name: 'round'\n },\n {\n type: 'checkbox',\n label: 'on/off',\n name: 'data'\n },\n {\n type: 'color',\n label: 'on-color',\n name: 'onColor'\n },\n {\n type: 'color',\n label: 'off-color',\n name: 'offColor'\n },\n {\n type: 'color',\n label: 'thumbnail-color',\n name: 'thumbnailColor'\n }\n ],\n 'value-property': 'data',\n help: 'scene/component/simple-switch'\n}\n\nexport default class SimpleSwitch extends HTMLOverlayElement {\n static get nature() {\n return NATURE\n }\n\n oncreate_element(toggle: SimpleSwitchElement) {\n toggle.addEventListener('value-change', (e: Event) => {\n var checked = (e as CustomEvent).detail\n\n this.setState({\n data: checked\n })\n })\n }\n\n dispose() {\n super.dispose()\n }\n\n /*\n * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,\n * 그에 따른 html element의 반영이 필요한 부분을 구현한다.\n *\n * ThingsComponent state => HTML element properties\n */\n setElementProperties(toggle: SimpleSwitchElement) {\n var { round, data, onColor, offColor, thumbnailColor } = this.state\n\n toggle.round = round\n toggle.value = 'true' == String(data)\n\n onColor && toggle.style.setProperty('--ox-simple-switch-on-color', onColor)\n offColor && toggle.style.setProperty('--ox-simple-switch-off-color', offColor)\n thumbnailColor && toggle.style.setProperty('--ox-simple-switch-thumbnail-color', thumbnailColor)\n }\n\n /*\n * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.\n * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.\n */\n reposition() {\n super.reposition()\n\n var element = this.element\n\n if (!element) {\n return\n }\n\n var { height, width } = this.bounds\n\n element.style.setProperty('--ox-simple-switch-fullwidth', `${width}px`)\n element.style.setProperty('--ox-simple-switch-fullheight', `${height}px`)\n element.style.setProperty('--ox-simple-switch-thumbnail-size', `${Math.min(height, width)}px`)\n }\n\n get tagName() {\n return 'ox-simple-switch'\n }\n}\n\nComponent.register('simple-switch', SimpleSwitch)\n"]}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"keep": {
|
|
3
|
+
"days": true,
|
|
4
|
+
"amount": 2
|
|
5
|
+
},
|
|
6
|
+
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
|
+
"files": [
|
|
8
|
+
{
|
|
9
|
+
"date": 1638063819800,
|
|
10
|
+
"name": "logs/application-2021-11-28-10.log",
|
|
11
|
+
"hash": "51d46638a1dced9dc3a800f41a4eabea"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"date": 1638064863976,
|
|
15
|
+
"name": "logs/application-2021-11-28-11.log",
|
|
16
|
+
"hash": "31c7d6dff7e02dd77185a49d7f504252"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"date": 1638098512309,
|
|
20
|
+
"name": "logs/application-2021-11-28-20.log",
|
|
21
|
+
"hash": "272c082f5d0d6efe744726a810c82d5c"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"date": 1638101606925,
|
|
25
|
+
"name": "logs/application-2021-11-28-21.log",
|
|
26
|
+
"hash": "57eab16d4f2559fb4c78b6268d5d9269"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"keep": {
|
|
3
|
+
"days": true,
|
|
4
|
+
"amount": 14
|
|
5
|
+
},
|
|
6
|
+
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
|
+
"files": [
|
|
8
|
+
{
|
|
9
|
+
"date": 1638064868219,
|
|
10
|
+
"name": "logs/connections-2021-11-28-11.log",
|
|
11
|
+
"hash": "e47b0982fee99c2c256a31ef21b7f8cb"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"date": 1638098515842,
|
|
15
|
+
"name": "logs/connections-2021-11-28-20.log",
|
|
16
|
+
"hash": "6730c35ac04ab2b9afccafcc39721636"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"date": 1638101610719,
|
|
20
|
+
"name": "logs/connections-2021-11-28-21.log",
|
|
21
|
+
"hash": "b682145c4fdc12ccf5a4b09a3ade0f06"
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
2021-11-28T02:01:07.339Z info: File Storage is Ready.
|
|
2
|
+
2021-11-28T02:01:15.044Z info: Database connection established
|
|
3
|
+
2021-11-28T02:01:16.790Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2021-11-28T02:01:16.793Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2021-11-28T02:03:22.028Z info: File Storage is Ready.
|
|
6
|
+
2021-11-28T02:10:54.887Z info: File Storage is Ready.
|
|
7
|
+
2021-11-28T02:11:02.793Z info: Database connection established
|
|
8
|
+
2021-11-28T02:12:30.155Z info: File Storage is Ready.
|
|
9
|
+
2021-11-28T02:12:46.815Z info: Database connection established
|
|
10
|
+
2021-11-28T02:12:51.379Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
11
|
+
2021-11-28T02:12:51.379Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
12
|
+
2021-11-28T02:22:32.031Z error: Connection "default" was not found.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2021-11-28T11:21:55.117Z info: File Storage is Ready.
|
|
2
|
+
2021-11-28T11:21:59.683Z info: Database connection established
|
|
3
|
+
2021-11-28T11:22:00.887Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2021-11-28T11:22:00.887Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
2021-11-28T12:13:29.937Z info: File Storage is Ready.
|
|
2
|
+
2021-11-28T12:13:34.122Z info: Database connection established
|
|
3
|
+
2021-11-28T12:13:35.378Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2021-11-28T12:13:35.380Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2021-11-28T12:15:28.426Z error: Connection "default" was not found.
|
|
6
|
+
2021-11-28T12:22:28.547Z info: File Storage is Ready.
|
|
7
|
+
2021-11-28T12:22:32.493Z info: Database connection established
|
|
8
|
+
2021-11-28T12:22:33.776Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
9
|
+
2021-11-28T12:22:33.777Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
10
|
+
2021-11-28T12:24:00.322Z info: File Storage is Ready.
|
|
11
|
+
2021-11-28T12:24:03.928Z info: Database connection established
|
|
12
|
+
2021-11-28T12:24:05.134Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
13
|
+
2021-11-28T12:24:05.134Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
14
|
+
2021-11-28T12:27:24.049Z info: File Storage is Ready.
|
|
15
|
+
2021-11-28T12:27:27.900Z info: Database connection established
|
|
16
|
+
2021-11-28T12:27:29.048Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
17
|
+
2021-11-28T12:27:29.048Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
18
|
+
2021-11-28T12:42:53.505Z info: File Storage is Ready.
|
|
19
|
+
2021-11-28T12:42:57.090Z info: Database connection established
|
|
20
|
+
2021-11-28T12:42:58.187Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
21
|
+
2021-11-28T12:42:58.190Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
22
|
+
2021-11-28T12:51:18.807Z info: File Storage is Ready.
|
|
23
|
+
2021-11-28T12:51:22.591Z info: Database connection established
|
|
24
|
+
2021-11-28T12:51:23.730Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
25
|
+
2021-11-28T12:51:23.732Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2021-11-28T11:22:00.889Z error: Connection "default" was not found.
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
2021-11-28T12:13:35.387Z error: Connection "default" was not found.
|
|
2
|
+
2021-11-28T12:24:05.263Z info: Initializing ConnectionManager...
|
|
3
|
+
2021-11-28T12:24:05.267Z info: Connector 'echo-back-server' started to ready
|
|
4
|
+
2021-11-28T12:24:05.267Z info: Connector 'echo-back' started to ready
|
|
5
|
+
2021-11-28T12:24:05.268Z info: Connector 'http-connector' started to ready
|
|
6
|
+
2021-11-28T12:24:05.269Z info: Connector 'graphql-connector' started to ready
|
|
7
|
+
2021-11-28T12:24:05.270Z info: Connector 'sqlite-connector' started to ready
|
|
8
|
+
2021-11-28T12:24:05.272Z info: Connector 'postgresql-connector' started to ready
|
|
9
|
+
2021-11-28T12:24:05.274Z info: Connector 'mqtt-connector' started to ready
|
|
10
|
+
2021-11-28T12:24:05.275Z info: Connector 'mssql-connector' started to ready
|
|
11
|
+
2021-11-28T12:24:05.277Z info: Connector 'oracle-connector' started to ready
|
|
12
|
+
2021-11-28T12:24:05.278Z info: Connector 'socket-server' started to ready
|
|
13
|
+
2021-11-28T12:24:05.278Z info: echo-back-servers are ready
|
|
14
|
+
2021-11-28T12:24:05.278Z info: echo-back connections are ready
|
|
15
|
+
2021-11-28T12:24:05.278Z info: http-connector connections are ready
|
|
16
|
+
2021-11-28T12:24:05.279Z info: graphql-connector connections are ready
|
|
17
|
+
2021-11-28T12:24:05.279Z info: sqlite-connector connections are ready
|
|
18
|
+
2021-11-28T12:24:05.279Z info: postgresql-connector connections are ready
|
|
19
|
+
2021-11-28T12:24:05.279Z info: mqtt-connector connections are ready
|
|
20
|
+
2021-11-28T12:24:05.279Z info: mssql-connector connections are ready
|
|
21
|
+
2021-11-28T12:24:05.279Z info: oracle-connector connections are ready
|
|
22
|
+
2021-11-28T12:24:05.279Z info: socket servers are ready
|
|
23
|
+
2021-11-28T12:24:05.279Z info: All connector for 'echo-back-server' ready
|
|
24
|
+
2021-11-28T12:24:05.280Z info: All connector for 'echo-back' ready
|
|
25
|
+
2021-11-28T12:24:05.280Z info: All connector for 'http-connector' ready
|
|
26
|
+
2021-11-28T12:24:05.280Z info: All connector for 'graphql-connector' ready
|
|
27
|
+
2021-11-28T12:24:05.280Z info: All connector for 'sqlite-connector' ready
|
|
28
|
+
2021-11-28T12:24:05.280Z info: All connector for 'postgresql-connector' ready
|
|
29
|
+
2021-11-28T12:24:05.280Z info: All connector for 'mqtt-connector' ready
|
|
30
|
+
2021-11-28T12:24:05.280Z info: All connector for 'mssql-connector' ready
|
|
31
|
+
2021-11-28T12:24:05.280Z info: All connector for 'oracle-connector' ready
|
|
32
|
+
2021-11-28T12:24:05.280Z info: All connector for 'socket-server' ready
|
|
33
|
+
2021-11-28T12:24:05.280Z info: ConnectionManager initialization done:
|
|
34
|
+
2021-11-28T12:27:29.145Z info: Initializing ConnectionManager...
|
|
35
|
+
2021-11-28T12:27:29.146Z info: Connector 'echo-back-server' started to ready
|
|
36
|
+
2021-11-28T12:27:29.146Z info: Connector 'echo-back' started to ready
|
|
37
|
+
2021-11-28T12:27:29.146Z info: Connector 'http-connector' started to ready
|
|
38
|
+
2021-11-28T12:27:29.146Z info: Connector 'graphql-connector' started to ready
|
|
39
|
+
2021-11-28T12:27:29.146Z info: Connector 'sqlite-connector' started to ready
|
|
40
|
+
2021-11-28T12:27:29.147Z info: Connector 'postgresql-connector' started to ready
|
|
41
|
+
2021-11-28T12:27:29.147Z info: Connector 'mqtt-connector' started to ready
|
|
42
|
+
2021-11-28T12:27:29.147Z info: Connector 'mssql-connector' started to ready
|
|
43
|
+
2021-11-28T12:27:29.148Z info: Connector 'oracle-connector' started to ready
|
|
44
|
+
2021-11-28T12:27:29.148Z info: Connector 'socket-server' started to ready
|
|
45
|
+
2021-11-28T12:27:29.148Z info: echo-back-servers are ready
|
|
46
|
+
2021-11-28T12:27:29.148Z info: echo-back connections are ready
|
|
47
|
+
2021-11-28T12:27:29.148Z info: http-connector connections are ready
|
|
48
|
+
2021-11-28T12:27:29.148Z info: graphql-connector connections are ready
|
|
49
|
+
2021-11-28T12:27:29.149Z info: sqlite-connector connections are ready
|
|
50
|
+
2021-11-28T12:27:29.149Z info: postgresql-connector connections are ready
|
|
51
|
+
2021-11-28T12:27:29.149Z info: mqtt-connector connections are ready
|
|
52
|
+
2021-11-28T12:27:29.149Z info: mssql-connector connections are ready
|
|
53
|
+
2021-11-28T12:27:29.150Z info: oracle-connector connections are ready
|
|
54
|
+
2021-11-28T12:27:29.151Z info: socket servers are ready
|
|
55
|
+
2021-11-28T12:27:29.151Z info: All connector for 'echo-back-server' ready
|
|
56
|
+
2021-11-28T12:27:29.151Z info: All connector for 'echo-back' ready
|
|
57
|
+
2021-11-28T12:27:29.151Z info: All connector for 'http-connector' ready
|
|
58
|
+
2021-11-28T12:27:29.151Z info: All connector for 'graphql-connector' ready
|
|
59
|
+
2021-11-28T12:27:29.151Z info: All connector for 'sqlite-connector' ready
|
|
60
|
+
2021-11-28T12:27:29.151Z info: All connector for 'postgresql-connector' ready
|
|
61
|
+
2021-11-28T12:27:29.152Z info: All connector for 'mqtt-connector' ready
|
|
62
|
+
2021-11-28T12:27:29.152Z info: All connector for 'mssql-connector' ready
|
|
63
|
+
2021-11-28T12:27:29.152Z info: All connector for 'oracle-connector' ready
|
|
64
|
+
2021-11-28T12:27:29.152Z info: All connector for 'socket-server' ready
|
|
65
|
+
2021-11-28T12:27:29.153Z info: ConnectionManager initialization done:
|
|
66
|
+
2021-11-28T12:42:58.315Z info: Initializing ConnectionManager...
|
|
67
|
+
2021-11-28T12:42:58.317Z info: Connector 'echo-back-server' started to ready
|
|
68
|
+
2021-11-28T12:42:58.318Z info: Connector 'echo-back' started to ready
|
|
69
|
+
2021-11-28T12:42:58.318Z info: Connector 'http-connector' started to ready
|
|
70
|
+
2021-11-28T12:42:58.318Z info: Connector 'graphql-connector' started to ready
|
|
71
|
+
2021-11-28T12:42:58.318Z info: Connector 'sqlite-connector' started to ready
|
|
72
|
+
2021-11-28T12:42:58.319Z info: Connector 'postgresql-connector' started to ready
|
|
73
|
+
2021-11-28T12:42:58.319Z info: Connector 'mqtt-connector' started to ready
|
|
74
|
+
2021-11-28T12:42:58.322Z info: Connector 'mssql-connector' started to ready
|
|
75
|
+
2021-11-28T12:42:58.322Z info: Connector 'oracle-connector' started to ready
|
|
76
|
+
2021-11-28T12:42:58.323Z info: Connector 'socket-server' started to ready
|
|
77
|
+
2021-11-28T12:42:58.323Z info: echo-back-servers are ready
|
|
78
|
+
2021-11-28T12:42:58.323Z info: echo-back connections are ready
|
|
79
|
+
2021-11-28T12:42:58.323Z info: http-connector connections are ready
|
|
80
|
+
2021-11-28T12:42:58.323Z info: graphql-connector connections are ready
|
|
81
|
+
2021-11-28T12:42:58.323Z info: sqlite-connector connections are ready
|
|
82
|
+
2021-11-28T12:42:58.323Z info: postgresql-connector connections are ready
|
|
83
|
+
2021-11-28T12:42:58.324Z info: mqtt-connector connections are ready
|
|
84
|
+
2021-11-28T12:42:58.324Z info: mssql-connector connections are ready
|
|
85
|
+
2021-11-28T12:42:58.324Z info: oracle-connector connections are ready
|
|
86
|
+
2021-11-28T12:42:58.324Z info: socket servers are ready
|
|
87
|
+
2021-11-28T12:42:58.324Z info: All connector for 'echo-back-server' ready
|
|
88
|
+
2021-11-28T12:42:58.324Z info: All connector for 'echo-back' ready
|
|
89
|
+
2021-11-28T12:42:58.324Z info: All connector for 'http-connector' ready
|
|
90
|
+
2021-11-28T12:42:58.325Z info: All connector for 'graphql-connector' ready
|
|
91
|
+
2021-11-28T12:42:58.325Z info: All connector for 'sqlite-connector' ready
|
|
92
|
+
2021-11-28T12:42:58.325Z info: All connector for 'postgresql-connector' ready
|
|
93
|
+
2021-11-28T12:42:58.325Z info: All connector for 'mqtt-connector' ready
|
|
94
|
+
2021-11-28T12:42:58.325Z info: All connector for 'mssql-connector' ready
|
|
95
|
+
2021-11-28T12:42:58.325Z info: All connector for 'oracle-connector' ready
|
|
96
|
+
2021-11-28T12:42:58.325Z info: All connector for 'socket-server' ready
|
|
97
|
+
2021-11-28T12:42:58.325Z info: ConnectionManager initialization done:
|
|
98
|
+
2021-11-28T12:51:23.897Z info: Initializing ConnectionManager...
|
|
99
|
+
2021-11-28T12:51:23.898Z info: Connector 'echo-back-server' started to ready
|
|
100
|
+
2021-11-28T12:51:23.899Z info: Connector 'echo-back' started to ready
|
|
101
|
+
2021-11-28T12:51:23.899Z info: Connector 'http-connector' started to ready
|
|
102
|
+
2021-11-28T12:51:23.899Z info: Connector 'graphql-connector' started to ready
|
|
103
|
+
2021-11-28T12:51:23.900Z info: Connector 'sqlite-connector' started to ready
|
|
104
|
+
2021-11-28T12:51:23.900Z info: Connector 'postgresql-connector' started to ready
|
|
105
|
+
2021-11-28T12:51:23.900Z info: Connector 'mqtt-connector' started to ready
|
|
106
|
+
2021-11-28T12:51:23.901Z info: Connector 'mssql-connector' started to ready
|
|
107
|
+
2021-11-28T12:51:23.901Z info: Connector 'oracle-connector' started to ready
|
|
108
|
+
2021-11-28T12:51:23.901Z info: Connector 'socket-server' started to ready
|
|
109
|
+
2021-11-28T12:51:23.902Z info: echo-back-servers are ready
|
|
110
|
+
2021-11-28T12:51:23.902Z info: echo-back connections are ready
|
|
111
|
+
2021-11-28T12:51:23.902Z info: http-connector connections are ready
|
|
112
|
+
2021-11-28T12:51:23.902Z info: graphql-connector connections are ready
|
|
113
|
+
2021-11-28T12:51:23.902Z info: sqlite-connector connections are ready
|
|
114
|
+
2021-11-28T12:51:23.902Z info: postgresql-connector connections are ready
|
|
115
|
+
2021-11-28T12:51:23.902Z info: mqtt-connector connections are ready
|
|
116
|
+
2021-11-28T12:51:23.902Z info: mssql-connector connections are ready
|
|
117
|
+
2021-11-28T12:51:23.902Z info: oracle-connector connections are ready
|
|
118
|
+
2021-11-28T12:51:23.904Z info: socket servers are ready
|
|
119
|
+
2021-11-28T12:51:23.904Z info: All connector for 'echo-back-server' ready
|
|
120
|
+
2021-11-28T12:51:23.904Z info: All connector for 'echo-back' ready
|
|
121
|
+
2021-11-28T12:51:23.904Z info: All connector for 'http-connector' ready
|
|
122
|
+
2021-11-28T12:51:23.904Z info: All connector for 'graphql-connector' ready
|
|
123
|
+
2021-11-28T12:51:23.904Z info: All connector for 'sqlite-connector' ready
|
|
124
|
+
2021-11-28T12:51:23.904Z info: All connector for 'postgresql-connector' ready
|
|
125
|
+
2021-11-28T12:51:23.904Z info: All connector for 'mqtt-connector' ready
|
|
126
|
+
2021-11-28T12:51:23.905Z info: All connector for 'mssql-connector' ready
|
|
127
|
+
2021-11-28T12:51:23.905Z info: All connector for 'oracle-connector' ready
|
|
128
|
+
2021-11-28T12:51:23.905Z info: All connector for 'socket-server' ready
|
|
129
|
+
2021-11-28T12:51:23.905Z info: ConnectionManager initialization done:
|
package/package.json
CHANGED
|
@@ -3,12 +3,18 @@
|
|
|
3
3
|
"description": "switch component for operato-scene",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "heartyoh",
|
|
6
|
-
"version": "0.0.
|
|
7
|
-
"main": "dist/
|
|
8
|
-
"module": "dist/
|
|
6
|
+
"version": "0.0.5",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"module": "dist/index.js",
|
|
9
9
|
"things-scene": true,
|
|
10
|
-
"
|
|
11
|
-
"
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public",
|
|
12
|
+
"@oprato:registry": "https://registry.npmjs.org"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/things-scene/operato-scene.git",
|
|
17
|
+
"directory": "packages/switch"
|
|
12
18
|
},
|
|
13
19
|
"scripts": {
|
|
14
20
|
"serve": "tsc && things-factory-dev",
|
|
@@ -24,10 +30,10 @@
|
|
|
24
30
|
},
|
|
25
31
|
"devDependencies": {
|
|
26
32
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
27
|
-
"@hatiolab/things-scene": "^2.7.
|
|
33
|
+
"@hatiolab/things-scene": "^2.7.16",
|
|
28
34
|
"@operato/board": "^0.2.27",
|
|
29
|
-
"@things-factory/builder": "^4.0.
|
|
30
|
-
"@things-factory/operato-board": "^4.0.
|
|
35
|
+
"@things-factory/builder": "^4.0.6",
|
|
36
|
+
"@things-factory/operato-board": "^4.0.6",
|
|
31
37
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
32
38
|
"@typescript-eslint/parser": "^4.33.0",
|
|
33
39
|
"@web/dev-server": "^0.1.28",
|
|
@@ -51,5 +57,6 @@
|
|
|
51
57
|
"eslint --fix",
|
|
52
58
|
"prettier --write"
|
|
53
59
|
]
|
|
54
|
-
}
|
|
60
|
+
},
|
|
61
|
+
"gitHead": "d3717e3284d88dc2831fbcf4ddbce827e2cc2940"
|
|
55
62
|
}
|
package/src/simple-switch.ts
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* Copyright © HatioLab Inc. All rights reserved.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
import './simple-switch-element'
|
|
5
|
+
import './simple-switch-element'
|
|
6
6
|
|
|
7
|
-
import { Component, HTMLOverlayElement } from '@hatiolab/things-scene'
|
|
7
|
+
import { Component, HTMLOverlayElement } from '@hatiolab/things-scene'
|
|
8
8
|
|
|
9
|
-
import { SimpleSwitchElement } from './simple-switch-element'
|
|
9
|
+
import { SimpleSwitchElement } from './simple-switch-element'
|
|
10
10
|
|
|
11
11
|
const NATURE = {
|
|
12
12
|
mutable: false,
|
package/things-scene.config.js
CHANGED
package/tsconfig.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../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/index.d.ts","../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../node_modules/lit/decorators.d.ts","./src/simple-switch-element.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/simple-switch.ts","./src/index.ts","./src/editors/index.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","0c8a56610b08f55e29ffb466cd27626ad6dbe822312a398026e82270c63088e3","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","7b33ee85f2e96a51c0e3bcee47b247a24515aff37a7d8b5dfe4e18b735d37440","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"70f04c91d3186b1b10157157887fab664968fc9b88377785a5ee42750c202c6d","06e20da1bc94df355f22ac7a9533c2488816ec4cb9134d9b160a263629a07072","c311ef8d8b159d0c268b415f78c1949498dc2d14455a9891c5b8ef84625b1e41","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","97c58f6db61d45712d91d2260994817ae2b568bbb37cc280013079b6b5d2232d","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","9bdb35d0b28dcd5d8f0879bd29f0cf07b7eb48aa63be4dd44057e32fcfeb1c83","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","84610cf09dee3cefc910555318f1ad7b45f1cba36905a86849324ca4fead2385","a25d1e52291791819032826af5c52987e16ffdb96e8bb69f7f1790f5ab080be6","d660961abada6b5030461f3322ef3a2e1d9fec74167574f8b590a7796cf90a72","707b4eae3d469b2f347d2083037151922f94c370a9456ebd5ac0a4fb7441c7e7","ef509d57201aa4e2e3e2b3d1fafd066a8ce68cd2caea737d539c3544f5a99a67","84c66a77a1302611ea5001dc88d10de1b5d87c6b2f30a48585495217421ce1ac","ff3e8e98af68bad4b762eb52406adee10b987fba9cc21902d798567f2703ece1","327f1c5fb945ddbb8419bd58c860693bf8a13b1ba772dec1233da9e2f78746df","1df94c208492df4a5835bc8c90b0dd67884f5f25809082423d6feacc806194da","3a41d404bb0d87e48cd44d81c0bca1ebb0822091066c89d6d5c3cbbf65ed0db4","d7076912d1c9786ca76231a2a77cef475b7fafbe4950a8ecc430af171422993c","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","5533392c50c51b1a5c32b89f13145db929c574ef1c5949cf67a074a05ea107d9","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a7971f9fb2a32ec7788ec6cda9d7a33c02023dfe9a62db2030ad1359649d8050","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[108],[43,108],[50,108],[43,50,108],[41,42,108],[65,108],[68,108],[69,74,108],[70,80,81,88,97,107,108],[70,71,80,88,108],[72,108],[73,74,81,89,108],[74,97,104,108],[75,77,80,88,108],[76,108],[77,78,108],[79,80,108],[80,108],[80,81,82,97,107,108],[80,81,82,97,108],[83,88,97,107,108],[80,81,83,84,88,97,104,107,108],[83,85,97,104,107,108],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114],[80,86,108],[87,107,108],[77,80,88,97,108],[89,108],[90,108],[68,91,108],[92,106,108,112],[93,108],[94,108],[80,95,108],[95,96,108,110],[80,97,98,99,108],[97,99,108],[97,98,108],[100,108],[101,108],[80,102,103,108],[102,103,108],[74,88,104,108],[105,108],[88,106,108],[69,83,94,107,108],[74,108],[97,108,109],[108,110],[108,111],[69,74,80,82,91,97,107,108,110,112],[97,108,113],[44,108],[43,47,108],[47,108],[45,46,108],[51,52,53,54,55,56,57,58,108],[43,47,48,108],[40,108],[40,62,108],[40,49,59,108],[40,60,61,108]],"referencedMap":[[61,1],[41,1],[50,2],[51,3],[54,4],[52,4],[56,4],[58,4],[57,4],[55,4],[53,3],[42,1],[43,5],[65,6],[66,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,12],[74,13],[75,14],[76,15],[77,16],[78,16],[79,17],[80,18],[81,19],[82,20],[67,1],[114,1],[83,21],[84,22],[85,23],[115,24],[86,25],[87,26],[88,27],[89,28],[90,29],[91,30],[92,31],[93,32],[94,33],[95,34],[96,35],[97,36],[99,37],[98,38],[100,39],[101,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[112,51],[113,52],[45,53],[44,1],[48,54],[46,55],[47,56],[59,57],[49,58],[40,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[38,1],[34,1],[35,1],[36,1],[37,1],[1,1],[39,1],[64,59],[63,60],[60,61],[62,62]],"exportedModulesMap":[[61,1],[41,1],[50,2],[51,3],[54,4],[52,4],[56,4],[58,4],[57,4],[55,4],[53,3],[42,1],[43,5],[65,6],[66,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,12],[74,13],[75,14],[76,15],[77,16],[78,16],[79,17],[80,18],[81,19],[82,20],[67,1],[114,1],[83,21],[84,22],[85,23],[115,24],[86,25],[87,26],[88,27],[89,28],[90,29],[91,30],[92,31],[93,32],[94,33],[95,34],[96,35],[97,36],[99,37],[98,38],[100,39],[101,40],[102,41],[103,42],[104,43],[105,44],[106,45],[107,46],[108,47],[109,48],[110,49],[111,50],[112,51],[113,52],[45,53],[44,1],[48,54],[46,55],[47,56],[59,57],[49,58],[40,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[38,1],[34,1],[35,1],[36,1],[37,1],[1,1],[39,1],[64,59],[63,60],[60,61],[62,62]],"semanticDiagnosticsPerFile":[61,41,50,51,54,52,56,58,57,55,53,42,43,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,67,114,83,84,85,115,86,87,88,89,90,91,92,93,94,95,96,97,99,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,45,44,48,46,47,59,49,40,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,64,63,60,62]},"version":"4.5.2"}
|
package/src/things-scene.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
declare module '@hatiolab/things-scene'
|