@operato/input 0.3.2 → 0.3.9
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 +58 -0
- package/demo/index-select.html +17 -17
- package/demo/index.html +83 -29
- package/dist/src/ox-buttons-radio.d.ts +0 -1
- package/dist/src/ox-buttons-radio.js +0 -3
- package/dist/src/ox-buttons-radio.js.map +1 -1
- package/dist/src/ox-checkbox.d.ts +1 -0
- package/dist/src/ox-checkbox.js +4 -0
- package/dist/src/ox-checkbox.js.map +1 -1
- package/dist/src/ox-form-field.d.ts +1 -1
- package/dist/src/ox-form-field.js +10 -2
- package/dist/src/ox-form-field.js.map +1 -1
- package/dist/src/ox-input-3dish.d.ts +0 -1
- package/dist/src/ox-input-3dish.js +0 -3
- package/dist/src/ox-input-3dish.js.map +1 -1
- package/dist/src/ox-input-id.d.ts +11 -0
- package/dist/src/ox-input-id.js +68 -0
- package/dist/src/ox-input-id.js.map +1 -0
- package/dist/src/ox-input-stack.d.ts +0 -1
- package/dist/src/ox-input-stack.js +0 -3
- package/dist/src/ox-input-stack.js.map +1 -1
- package/dist/src/ox-select.d.ts +0 -1
- package/dist/src/ox-select.js +5 -6
- package/dist/src/ox-select.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/src/ox-buttons-radio.ts +0 -4
- package/src/ox-checkbox.ts +1 -0
- package/src/ox-form-field.ts +14 -2
- package/src/ox-input-3dish.ts +0 -4
- package/src/ox-input-id.ts +68 -0
- package/src/ox-input-ranges.ts.ing +1 -1
- package/src/ox-input-stack.ts +0 -4
- package/src/ox-select.ts +6 -7
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,64 @@
|
|
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.3.9](https://github.com/hatiolab/operato/compare/v0.3.8...v0.3.9) (2022-01-15)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @operato/input
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
### [0.3.8](https://github.com/hatiolab/operato/compare/v0.3.7...v0.3.8) (2022-01-14)
|
15
|
+
|
16
|
+
|
17
|
+
### :bug: Bug Fix
|
18
|
+
|
19
|
+
* ox-popup-list ([1e5af96](https://github.com/hatiolab/operato/commit/1e5af96cbd959ffbe7e4b8bf041971bb4e88dd0a))
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
### [0.3.7](https://github.com/hatiolab/operato/compare/v0.3.6...v0.3.7) (2022-01-09)
|
24
|
+
|
25
|
+
**Note:** Version bump only for package @operato/input
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
### [0.3.6](https://github.com/hatiolab/operato/compare/v0.3.5...v0.3.6) (2022-01-09)
|
32
|
+
|
33
|
+
**Note:** Version bump only for package @operato/input
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
### [0.3.5](https://github.com/hatiolab/operato/compare/v0.3.4...v0.3.5) (2022-01-09)
|
40
|
+
|
41
|
+
|
42
|
+
### :rocket: New Features
|
43
|
+
|
44
|
+
* data-grist filter-form support queryFilters property ([e477ede](https://github.com/hatiolab/operato/commit/e477ede184dac7bc6c40d4aab73c2f8156edaef6))
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
### [0.3.4](https://github.com/hatiolab/operato/compare/v0.3.3...v0.3.4) (2022-01-03)
|
49
|
+
|
50
|
+
**Note:** Version bump only for package @operato/input
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
### [0.3.3](https://github.com/hatiolab/operato/compare/v0.3.2...v0.3.3) (2022-01-03)
|
57
|
+
|
58
|
+
**Note:** Version bump only for package @operato/input
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
|
6
64
|
### [0.3.2](https://github.com/hatiolab/operato/compare/v0.3.1...v0.3.2) (2022-01-03)
|
7
65
|
|
8
66
|
**Note:** Version bump only for package @operato/input
|
package/demo/index-select.html
CHANGED
@@ -58,38 +58,38 @@
|
|
58
58
|
render(
|
59
59
|
html`
|
60
60
|
<ox-select name="single" @change=${onchanged} placeholder="single select">
|
61
|
-
<ox-popup-list>
|
62
|
-
<div option value="A"
|
63
|
-
<div option value="B"
|
64
|
-
<div option value="C"
|
65
|
-
<div option value="TOO LONG VALUE"
|
61
|
+
<ox-popup-list align-left nowrap>
|
62
|
+
<div option value="A">A</div>
|
63
|
+
<div option value="B">B</div>
|
64
|
+
<div option value="C">C</div>
|
65
|
+
<div option value="TOO LONG VALUE">TOO LONG VALUE</div>
|
66
66
|
</ox-popup-list>
|
67
67
|
</ox-select>
|
68
68
|
|
69
69
|
<ox-select name="multiple" @change=${onchanged} placeholder="multiple select">
|
70
70
|
<ox-popup-list multiple>
|
71
|
-
<div option value="A"
|
72
|
-
<div option value="B"
|
73
|
-
<div option value="C"
|
71
|
+
<div option value="A">A</div>
|
72
|
+
<div option value="B">B</div>
|
73
|
+
<div option value="C">C</div>
|
74
74
|
<div option value="TOO LONG VALUE" />TOO LONG VALUE</div>
|
75
75
|
</ox-popup-list>
|
76
76
|
</ox-select>
|
77
77
|
|
78
78
|
<ox-select name="multiple with checkbox" @change=${onchanged} placeholder="multiple with checkbox">
|
79
|
-
<ox-popup-list attr-selected="checked" multiple>
|
79
|
+
<ox-popup-list attr-selected="checked" multiple with-search>
|
80
80
|
<ox-checkbox option @change=${e => {
|
81
81
|
const options = e.target.parentElement.querySelectorAll('[option]')
|
82
82
|
console.log(options)
|
83
83
|
options.forEach(option => (option.checked = e.target.checked))
|
84
84
|
}}>set all</ox-checkbox>
|
85
|
-
<ox-checkbox option value="A"
|
86
|
-
<ox-checkbox option value="B"
|
87
|
-
<ox-checkbox option value="C"
|
88
|
-
<ox-checkbox option value="D"
|
89
|
-
<ox-checkbox option value="E"
|
90
|
-
<ox-checkbox option value="F"
|
91
|
-
<ox-checkbox option value="G"
|
92
|
-
<ox-checkbox option value="TOO LONG VALUE"
|
85
|
+
<ox-checkbox option value="A">A</ox-checkbox>
|
86
|
+
<ox-checkbox option value="B">B</ox-checkbox>
|
87
|
+
<ox-checkbox option value="C"checked >C</ox-checkbox>
|
88
|
+
<ox-checkbox option value="D">D</ox-checkbox>
|
89
|
+
<ox-checkbox option value="E">E</ox-checkbox>
|
90
|
+
<ox-checkbox option value="F">F</ox-checkbox>
|
91
|
+
<ox-checkbox option value="G">G</ox-checkbox>
|
92
|
+
<ox-checkbox option value="TOO LONG VALUE">TOO LONG VALUE</ox-checkbox>
|
93
93
|
</ox-popup-list>
|
94
94
|
</ox-select>
|
95
95
|
|
package/demo/index.html
CHANGED
@@ -7,56 +7,110 @@
|
|
7
7
|
background: #fafafa;
|
8
8
|
}
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
--ox-checkbox-border-radius: var(--border-radius, 4px);
|
15
|
-
--ox-checkbox-size: 15px;
|
16
|
-
--ox-checkbox-background-color: var(--theme-white-color, #fff);
|
17
|
-
--ox-checkbox-label-color: var(--primary-text-color, #3a5877);
|
18
|
-
--ox-checkbox-label-margin: 0 0 0 7px;
|
19
|
-
|
20
|
-
/* checkbox checked */
|
21
|
-
--ox-checkbox-checked-background-color: var(--ox-checkbox-background-color);
|
22
|
-
--ox-checkbox-checked-color: var(--primary-color, #38a25b);
|
23
|
-
--ox-checkbox-checked-border: 1px solid var(--ox-checkbox-checked-color);
|
24
|
-
--ox-checkbox-checked-font-weight: bold;
|
25
|
-
|
26
|
-
/* checkbox unchecked */
|
27
|
-
--ox-checkbox-unchecked-background-color: var(--ox-checkbox-background-color);
|
28
|
-
--ox-checkbox-unchecked-border: var(--ox-checkbox-border);
|
29
|
-
--ox-checkbox-unchecked-color: var(--ox-checkbox-fill-color);
|
10
|
+
ox-select {
|
11
|
+
display: inline-block;
|
12
|
+
width: 100px;
|
13
|
+
}
|
30
14
|
|
31
|
-
|
32
|
-
|
15
|
+
ox-popup-list {
|
16
|
+
max-height: 200px;
|
17
|
+
overflow: auto;
|
18
|
+
}
|
33
19
|
|
34
|
-
|
20
|
+
::-webkit-scrollbar {
|
21
|
+
width: 5px;
|
22
|
+
height: 5px;
|
23
|
+
}
|
24
|
+
::-webkit-scrollbar-track {
|
25
|
+
background-color: transparent;
|
26
|
+
}
|
27
|
+
::-webkit-scrollbar-thumb {
|
28
|
+
background-color: var(--scrollbar-thumb-color, rgba(0, 0, 0, 0.2));
|
29
|
+
}
|
30
|
+
::-webkit-scrollbar-thumb:hover {
|
31
|
+
background-color: var(--scrollbar-thumb-hover-color, #aa866a);
|
35
32
|
}
|
36
33
|
</style>
|
34
|
+
|
35
|
+
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet" />
|
36
|
+
<link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet" />
|
37
37
|
</head>
|
38
38
|
<body>
|
39
39
|
<form id="demo"></form>
|
40
40
|
|
41
41
|
<script type="module">
|
42
42
|
import { html, render } from 'lit'
|
43
|
-
import '../dist/src/ox-
|
43
|
+
import '../dist/src/ox-select.js'
|
44
|
+
import '../dist/src/ox-checkbox.js'
|
45
|
+
|
44
46
|
const form = document.querySelector('#demo')
|
45
47
|
|
46
|
-
function
|
48
|
+
function onchanged(e) {
|
47
49
|
const target = e.target
|
48
|
-
console.log(target.name,
|
50
|
+
console.log(target, target.name, e.detail)
|
49
51
|
|
50
52
|
const formData = new FormData(form)
|
51
|
-
console.log('<---- entries begins ----')
|
52
53
|
for (var pair of formData.entries()) {
|
53
54
|
console.log(pair[0] + ', ' + pair[1])
|
54
55
|
}
|
55
|
-
console.log('---- entries ends ------>')
|
56
56
|
}
|
57
57
|
|
58
58
|
render(
|
59
|
-
html`
|
59
|
+
html`
|
60
|
+
<ox-select name="single" @change=${onchanged} placeholder="single select">
|
61
|
+
<ox-popup-list align-left nowrap>
|
62
|
+
<div option value="A">A</div>
|
63
|
+
<div option value="B">B</div>
|
64
|
+
<div option value="C">C</div>
|
65
|
+
<div option value="TOO LONG VALUE">TOO LONG VALUE</div>
|
66
|
+
</ox-popup-list>
|
67
|
+
</ox-select>
|
68
|
+
|
69
|
+
<ox-select name="multiple" @change=${onchanged} placeholder="multiple select">
|
70
|
+
<ox-popup-list multiple>
|
71
|
+
<div option value="A">A</div>
|
72
|
+
<div option value="B">B</div>
|
73
|
+
<div option value="C">C</div>
|
74
|
+
<div option value="TOO LONG VALUE" />TOO LONG VALUE</div>
|
75
|
+
</ox-popup-list>
|
76
|
+
</ox-select>
|
77
|
+
|
78
|
+
<ox-select name="multiple with checkbox" @change=${onchanged} placeholder="multiple with checkbox">
|
79
|
+
<ox-popup-list attr-selected="checked" multiple with-search>
|
80
|
+
<ox-checkbox option @change=${e => {
|
81
|
+
const options = e.target.parentElement.querySelectorAll('[option]')
|
82
|
+
console.log(options)
|
83
|
+
options.forEach(option => (option.checked = e.target.checked))
|
84
|
+
}}>set all</ox-checkbox>
|
85
|
+
<ox-checkbox option value="A">A</ox-checkbox>
|
86
|
+
<ox-checkbox option value="B">B</ox-checkbox>
|
87
|
+
<ox-checkbox option value="C"checked >C</ox-checkbox>
|
88
|
+
<ox-checkbox option value="D">D</ox-checkbox>
|
89
|
+
<ox-checkbox option value="E">E</ox-checkbox>
|
90
|
+
<ox-checkbox option value="F">F</ox-checkbox>
|
91
|
+
<ox-checkbox option value="G">G</ox-checkbox>
|
92
|
+
<ox-checkbox option value="TOO LONG VALUE">TOO LONG VALUE</ox-checkbox>
|
93
|
+
</ox-popup-list>
|
94
|
+
</ox-select>
|
95
|
+
|
96
|
+
<ox-select name="multiple with input" @change=${onchanged} placeholder="multiple with checkbox">
|
97
|
+
<ox-popup-list attr-selected="checked" multiple>
|
98
|
+
<input type="checkbox" option @change=${e => {
|
99
|
+
const options = e.target.parentElement.querySelectorAll('[option]')
|
100
|
+
console.log(options)
|
101
|
+
options.forEach(option => (option.checked = e.target.checked))
|
102
|
+
}}>set all
|
103
|
+
<input type="checkbox" option value="A" />A
|
104
|
+
<input type="checkbox" option value="B" />B
|
105
|
+
<input type="checkbox" option value="C" />C
|
106
|
+
<input type="checkbox" option value="D" />D
|
107
|
+
<input type="checkbox" option value="E" />E
|
108
|
+
<input type="checkbox" option value="F" />F
|
109
|
+
<input type="checkbox" option value="G" />G
|
110
|
+
<input type="checkbox" option value="TOO LONG VALUE" />TOO LONG VALUE
|
111
|
+
</ox-popup-list>
|
112
|
+
</ox-select>
|
113
|
+
`,
|
60
114
|
form
|
61
115
|
)
|
62
116
|
</script>
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-buttons-radio.js","sourceRoot":"","sources":["../../src/ox-buttons-radio.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,OAAO,EAAE,GAAG,EAAE,IAAI,EAAkB,MAAM,KAAK,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAA;AAElE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAE7C;;;;;;;;;;EAUE;AAEF,IAAa,oBAAoB,GAAjC,MAAa,oBAAqB,SAAQ,WAAW;IAArD;;QASE;;WAEG;QACyB,UAAK,GAAkB,IAAI,CAAA;QAG9C,kBAAa,GAAqB,IAAI,gBAAgB,CAAC,SAAS,CAAC,EAAE;YAC1E,IAAI,CAAC,UAAU,EAAE,CAAA;QACnB,CAAC,CAAC,CAAA;
|
1
|
+
{"version":3,"file":"ox-buttons-radio.js","sourceRoot":"","sources":["../../src/ox-buttons-radio.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { css, html, PropertyValues } from 'lit'\nimport { customElement, property, state } from 'lit/decorators.js'\n\nimport { OxFormField } from './ox-form-field'\n\n/**\n여러 버튼 중에서 하나만 눌리거나, 모두 눌리지 않은 상태만을 갖는 라디오 형태의 버튼이다.\n\nExample:\n\n <ox-buttons-radio @change=${e => this._onChange(e)} value=${value}>\n <div value=\"top\"></div>\n <div value=\"middle\"></div>\n <div value=\"bottom\"></div>\n </ox-buttons-radio>\n*/\n@customElement('ox-buttons-radio')\nexport class PropertyButtonsRadio extends OxFormField {\n static styles = [\n css`\n :host {\n display: inline-block;\n }\n `\n ]\n\n /**\n * `value`는 버튼의 눌린 상태를 값으로 갖는 속성이다.\n */\n @property({ type: Object }) value: Object | null = null\n @property({ type: Boolean }) mandatory!: boolean\n\n @state() _slotObserver: MutationObserver = new MutationObserver(mutations => {\n this._onChanged()\n })\n\n render() {\n return html` <slot @click=${(e: Event) => this._onTapButton(e)}></slot> `\n }\n\n connectedCallback() {\n super.connectedCallback()\n\n this._slotObserver?.observe(this, { childList: true })\n }\n\n disconnectedCallback() {\n super.disconnectedCallback()\n\n this._slotObserver?.disconnect()\n }\n\n updated(changes: PropertyValues<this>) {\n changes.has('value') && this._onChanged()\n }\n\n get buttons() {\n return Array.from(this.querySelectorAll('*'))\n }\n\n _onChanged() {\n this.buttons.forEach(button => {\n if (this.value === button.getAttribute('data-value')) {\n button.setAttribute('active', '')\n } else {\n button.removeAttribute('active')\n }\n })\n }\n\n _onTapButton(e: Event) {\n var target = e.target as HTMLElement\n target = target.closest('[data-value]') as HTMLElement\n\n if (!target || target === this) {\n return\n }\n\n var old = this.value\n\n if (!this.mandatory) {\n if (!target.getAttribute('active')) {\n this.value = target.getAttribute('data-value')\n target.setAttribute('active', '')\n } else {\n this.value = null\n target.removeAttribute('active')\n }\n } else {\n this.value = target.getAttribute('data-value')\n target.setAttribute('active', '')\n }\n\n if (old !== this.value) {\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n composed: true,\n detail: this.value\n })\n )\n }\n }\n}\n"]}
|
package/dist/src/ox-checkbox.js
CHANGED
@@ -10,6 +10,7 @@ let OxCheckbox = class OxCheckbox extends OxFormField {
|
|
10
10
|
super(...arguments);
|
11
11
|
this.checked = false;
|
12
12
|
this.disabled = false;
|
13
|
+
this.indeterminate = false;
|
13
14
|
this._hasInner = !!this.innerHTML.trim().length;
|
14
15
|
}
|
15
16
|
render() {
|
@@ -133,6 +134,9 @@ __decorate([
|
|
133
134
|
__decorate([
|
134
135
|
property({ type: Boolean })
|
135
136
|
], OxCheckbox.prototype, "disabled", void 0);
|
137
|
+
__decorate([
|
138
|
+
property({ type: Boolean, attribute: 'indeterminate' })
|
139
|
+
], OxCheckbox.prototype, "indeterminate", void 0);
|
136
140
|
__decorate([
|
137
141
|
state()
|
138
142
|
], OxCheckbox.prototype, "_hasInner", void 0);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-checkbox.js","sourceRoot":"","sources":["../../src/ox-checkbox.ts"],"names":[],"mappings":"AAAA;;EAEE;;AAEF,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAC/B,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAA;AAElE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAG7C,IAAa,UAAU,GAAvB,MAAa,UAAW,SAAQ,WAAW;IAA3C;;QA+DoE,YAAO,GAAY,KAAK,CAAA;QAC7D,aAAQ,GAAY,KAAK,CAAA;
|
1
|
+
{"version":3,"file":"ox-checkbox.js","sourceRoot":"","sources":["../../src/ox-checkbox.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n This component is inspired by https://github.com/Polydile/dile-components, thanks Dile.\n*/\n\nimport { css, html } from 'lit'\nimport { customElement, property, state } from 'lit/decorators.js'\n\nimport { OxFormField } from './ox-form-field'\n\n@customElement('ox-checkbox')\nexport class OxCheckbox extends OxFormField {\n static styles = [\n css`\n :host {\n display: block;\n }\n\n div {\n display: flex;\n align-items: center;\n cursor: pointer;\n }\n\n [disabled] {\n opacity: var(--ox-checkbox-disabled-opacity, 0.5);\n cursor: auto;\n }\n\n [checkbox] {\n display: flex;\n border-radius: var(--ox-checkbox-border-radius, 4px);\n border: var(--ox-checkbox-border, 1px solid rgba(0, 0, 0, 0.3));\n background-color: var(--ox-checkbox-background-color, #fff);\n width: var(--ox-checkbox-size, 15px);\n height: var(--ox-checkbox-size, 15px);\n align-items: center;\n justify-content: center;\n }\n\n a {\n background-color: var(--ox-checkbox-unchecked-background-color, #fff);\n border: var(--ox-checkbox-unchecked-border, 1px solid rgba(0, 0, 0, 0.3));\n }\n\n :host([checked]) a {\n background-color: var(--ox-checkbox-checked-background-color, #fff);\n border: var(--ox-checkbox-checked-border, 1px solid #38a25b);\n }\n\n path {\n fill: var(--ox-checkbox-fill-color, rgba(0, 0, 0, 0.1));\n }\n\n :host([checked]) path {\n fill: var(--ox-checkbox-checked-color, #38a25b);\n }\n\n svg {\n width: var(--ox-checkbox-size, 15px);\n height: var(--ox-checkbox-size, 15px);\n }\n\n [label] {\n margin: var(--ox-checkbox-label-margin, 0 0 0 7px);\n color: var(--ox-checkbox-label-color, #3a5877);\n }\n\n :host([checked]) [label] {\n font-weight: var(--ox-checkbox-checked-font-weight, bold);\n }\n `\n ]\n\n @property({ type: Boolean, attribute: 'checked', reflect: true }) checked: boolean = false\n @property({ type: Boolean }) disabled: boolean = false\n @property({ type: Boolean, attribute: 'indeterminate' }) indeterminate: boolean = false\n\n @state() _hasInner: boolean = !!this.innerHTML.trim().length\n\n render() {\n return html`\n <div @click=${this.onClick} ?disabled=${this.disabled}>\n <a href=\"#\" @click=${(e: Event) => e.preventDefault()} checkbox>\n ${this.checked ? this.checkedIcon : this.uncheckedIcon}\n </a>\n ${this._hasInner\n ? html` <span label>\n <slot></slot>\n </span>`\n : ''}\n </div>\n `\n }\n\n connectedCallback() {\n super.connectedCallback()\n\n this.setAttribute('tabindex', '0')\n this.addEventListener('keydown', this.onKeyDown.bind(this))\n }\n\n onClick() {\n if (this.disabled) {\n return\n }\n\n this.checked = !this.checked\n\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n composed: true,\n detail: this.checked\n })\n )\n }\n\n get checkedIcon() {\n return html`\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\" />\n </svg>\n `\n }\n\n get uncheckedIcon() {\n return html`\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z\" />\n </svg>\n `\n }\n\n onKeyDown(e: KeyboardEvent) {\n e.preventDefault()\n\n if (e.key === ' ' || e.key == 'Spacebar') {\n this.onClick()\n }\n }\n\n protected appendFormData({ formData }: FormDataEvent): void {\n this.name && formData.append(this.name, this.checked ? 'true' : 'false')\n }\n}\n"]}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { __decorate } from "tslib";
|
2
|
-
import { LitElement } from 'lit
|
2
|
+
import { LitElement } from 'lit';
|
3
3
|
import { property } from 'lit/decorators.js';
|
4
4
|
export class OxFormField extends LitElement {
|
5
5
|
constructor() {
|
@@ -26,7 +26,15 @@ export class OxFormField extends LitElement {
|
|
26
26
|
}
|
27
27
|
}
|
28
28
|
appendFormData({ formData }) {
|
29
|
-
|
29
|
+
if (!this.name)
|
30
|
+
return;
|
31
|
+
var values = this.value;
|
32
|
+
if (!(values instanceof Array)) {
|
33
|
+
values = [this.value];
|
34
|
+
}
|
35
|
+
values.forEach((value) => {
|
36
|
+
formData.append(this.name, typeof value === 'string' ? value : value === undefined || value === null ? '' : JSON.stringify(value));
|
37
|
+
});
|
30
38
|
}
|
31
39
|
}
|
32
40
|
__decorate([
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-form-field.js","sourceRoot":"","sources":["../../src/ox-form-field.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,
|
1
|
+
{"version":3,"file":"ox-form-field.js","sourceRoot":"","sources":["../../src/ox-form-field.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,KAAK,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAE5C,MAAM,OAAgB,WAAY,SAAQ,UAAU;IAApD;;QAIU,UAAK,GAA2B,IAAI,CAAA;QACpC,0BAAqB,GAAyB,IAAI,CAAA;IAuC5D,CAAC;IArCU,iBAAiB;QACxB,KAAK,CAAC,iBAAiB,EAAE,CAAA;QAEzB,IAAI,IAAI,CAAC,IAAI,EAAE;YACb,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;YACjC,IAAI,IAAI,CAAC,KAAK,EAAE;gBACd,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAkB,CAAA;gBAC5E,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,UAAU,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAA;aACpE;SACF;IACH,CAAC;IAEQ,oBAAoB;QAC3B,KAAK,CAAC,oBAAoB,EAAE,CAAA;QAE5B,IAAI,IAAI,CAAC,KAAK,EAAE;YACd,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,UAAU,EAAE,IAAI,CAAC,qBAAsB,CAAC,CAAA;YACvE,IAAI,CAAC,KAAK,GAAG,IAAI,CAAA;YACjB,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAA;SAClC;IACH,CAAC;IAES,cAAc,CAAC,EAAE,QAAQ,EAAiB;QAClD,IAAI,CAAC,IAAI,CAAC,IAAI;YAAE,OAAM;QAEtB,IAAI,MAAM,GAAG,IAAI,CAAC,KAAK,CAAA;QACvB,IAAI,CAAC,CAAC,MAAM,YAAY,KAAK,CAAC,EAAE;YAC9B,MAAM,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;SACtB;QAED,MAAM,CAAC,OAAO,CAAC,CAAC,KAAU,EAAE,EAAE;YAC5B,QAAQ,CAAC,MAAM,CACb,IAAI,CAAC,IAAK,EACV,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,KAAK,SAAS,IAAI,KAAK,KAAK,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CACvG,CAAA;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;CACF;AA3C8C;IAA5C,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC;yCAAc;AAC9C;IAAX,QAAQ,EAAE;0CAAY","sourcesContent":["import { LitElement } from 'lit'\nimport { property } from 'lit/decorators.js'\n\nexport abstract class OxFormField extends LitElement {\n @property({ type: String, attribute: true }) name?: string\n @property() value?: any\n\n private _form: HTMLFormElement | null = null\n private _formdataEventHandler: EventListener | null = null\n\n override connectedCallback(): void {\n super.connectedCallback()\n\n if (this.name) {\n this._form = this.closest('form')\n if (this._form) {\n this._formdataEventHandler = this.appendFormData.bind(this) as EventListener\n this._form.addEventListener('formdata', this._formdataEventHandler)\n }\n }\n }\n\n override disconnectedCallback(): void {\n super.disconnectedCallback()\n\n if (this._form) {\n this._form.removeEventListener('formdata', this._formdataEventHandler!)\n this._form = null\n this._formdataEventHandler = null\n }\n }\n\n protected appendFormData({ formData }: FormDataEvent): void {\n if (!this.name) return\n\n var values = this.value\n if (!(values instanceof Array)) {\n values = [this.value]\n }\n\n values.forEach((value: any) => {\n formData.append(\n this.name!,\n typeof value === 'string' ? value : value === undefined || value === null ? '' : JSON.stringify(value)\n )\n })\n }\n}\n"]}
|
@@ -120,9 +120,6 @@ let OxInput3Dish = class OxInput3Dish extends OxFormField {
|
|
120
120
|
<ox-input-angle id="rz" .value=${this.rotate?.z}></ox-input-angle>
|
121
121
|
`;
|
122
122
|
}
|
123
|
-
appendFormData({ formData }) {
|
124
|
-
this.name && formData.append(this.name, JSON.stringify(this.value));
|
125
|
-
}
|
126
123
|
};
|
127
124
|
OxInput3Dish.styles = [
|
128
125
|
css `
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-input-3dish.js","sourceRoot":"","sources":["../../src/ox-input-3dish.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"ox-input-3dish.js","sourceRoot":"","sources":["../../src/ox-input-3dish.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { css, html } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { OxFormField } from './ox-form-field'\nimport { OxInputAngle } from './ox-input-angle'\n\n@customElement('ox-input-3dish')\nexport class OxInput3Dish extends OxFormField {\n static styles = [\n css`\n :host {\n display: grid;\n grid-template-columns: repeat(4, minmax(50px, 1fr));\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n }\n\n :host > * {\n grid-column: span 1;\n }\n\n label {\n text-align: right;\n }\n\n span {\n text-align: center;\n }\n `\n ]\n\n @property({ type: Object }) dimension?: { width?: number; height?: number; depth?: number }\n // translate는 고유한 html element의 attribute이므로, property는 translatex로 한다.\n @property({ type: Object }) translatex?: { x?: number; y?: number; z?: number }\n @property({ type: Object }) rotate?: { x?: number; y?: number; z?: number }\n @property({ type: Object }) scale?: { x?: number; y?: number; z?: number }\n\n firstUpdated() {\n this.renderRoot.addEventListener('change', this._onChange.bind(this))\n }\n\n _onChange(e: Event) {\n e.stopPropagation()\n e.preventDefault()\n\n var element = e.target as HTMLElement\n var id = element.id\n var prop = id.substr(1)\n var value = Number((element as HTMLInputElement).value)\n\n switch (element.tagName) {\n case 'PROPERTY-ANGLE':\n value = Number((element as OxInputAngle).value || 0)\n break\n }\n\n switch (id) {\n case 'tx':\n case 'ty':\n case 'tz':\n this.translatex = {\n ...this.translatex,\n [prop]: value\n }\n\n this.dispatchEvent(\n new CustomEvent('translate-changed', {\n bubbles: true,\n composed: true,\n detail: {\n value: this.translatex\n }\n })\n )\n break\n\n case 'rx':\n case 'ry':\n case 'rz':\n this.rotate = {\n ...this.rotate,\n [prop]: value\n }\n\n this.dispatchEvent(\n new CustomEvent('rotate-changed', {\n bubbles: true,\n composed: true,\n detail: {\n value: this.rotate\n }\n })\n )\n break\n\n case 'sx':\n case 'sy':\n case 'sz':\n this.scale = {\n ...this.scale,\n [prop]: value\n }\n\n this.dispatchEvent(\n new CustomEvent('scale-changed', {\n bubbles: true,\n composed: true,\n detail: {\n value: this.scale\n }\n })\n )\n break\n\n default:\n // dimension\n this.dimension = {\n ...this.dimension,\n [prop]: value\n }\n\n this.dispatchEvent(\n new CustomEvent('dimension-changed', {\n bubbles: true,\n composed: true,\n detail: {\n value: this.dimension\n }\n })\n )\n }\n\n this.value = {\n translate: this.translatex,\n rotate: this.rotate,\n scale: this.scale,\n dimension: this.dimension\n }\n\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n composed: true,\n detail: this.value\n })\n )\n }\n\n render() {\n return html`\n <span></span> <span><i18n-msg msgid=\"label.x-axes\">x-axes</i18n-msg></span>\n <span><i18n-msg msgid=\"label.y-axes\">y-axes</i18n-msg></span>\n <span><i18n-msg msgid=\"label.z-axes\">z-axes</i18n-msg></span>\n\n <label><i18n-msg msgid=\"label.dimension\">dimension</i18n-msg></label>\n <input type=\"number\" id=\"dwidth\" .value=${this.dimension?.width} />\n <input type=\"number\" id=\"dheight\" .value=${this.dimension?.height} />\n <input type=\"number\" id=\"ddepth\" .value=${this.dimension?.depth} />\n\n <label><i18n-msg msgid=\"label.translate\">translate</i18n-msg></label>\n <input type=\"number\" id=\"tx\" .value=${this.translatex?.x} />\n <input type=\"number\" id=\"ty\" .value=${this.translatex?.y} />\n <input type=\"number\" id=\"tz\" .value=${this.translatex?.z} />\n\n <label><i18n-msg msgid=\"label.scale\">scale</i18n-msg></label>\n <input type=\"number\" id=\"sx\" .value=${this.scale?.x} />\n <input type=\"number\" id=\"sy\" .value=${this.scale?.y} />\n <input type=\"number\" id=\"sz\" .value=${this.scale?.z} />\n\n <label><i18n-msg msgid=\"label.rotate\">rotate</i18n-msg></label>\n <ox-input-angle id=\"rx\" .value=${this.rotate?.x}></ox-input-angle>\n <ox-input-angle id=\"ry\" .value=${this.rotate?.y}></ox-input-angle>\n <ox-input-angle id=\"rz\" .value=${this.rotate?.z}></ox-input-angle>\n `\n }\n}\n"]}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { OxFormField } from './ox-form-field';
|
2
|
+
export declare class OxInputId extends OxFormField {
|
3
|
+
static styles: import("lit").CSSResult;
|
4
|
+
property: {
|
5
|
+
component?: string;
|
6
|
+
} | null | undefined;
|
7
|
+
_ids: Array<string>;
|
8
|
+
render(): import("lit-html").TemplateResult<1>;
|
9
|
+
_onInputFocused(e: FocusEvent): void;
|
10
|
+
_onInputChanged(e: InputEvent): void;
|
11
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
import { __decorate } from "tslib";
|
2
|
+
import { css, html } from 'lit';
|
3
|
+
import { customElement, property, state } from 'lit/decorators';
|
4
|
+
import { OxFormField } from './ox-form-field';
|
5
|
+
let OxInputId = class OxInputId extends OxFormField {
|
6
|
+
constructor() {
|
7
|
+
super(...arguments);
|
8
|
+
this._ids = [];
|
9
|
+
}
|
10
|
+
render() {
|
11
|
+
const ids = this._ids || [];
|
12
|
+
return html `
|
13
|
+
<input
|
14
|
+
id="text"
|
15
|
+
type="text"
|
16
|
+
.value=${this.value || ''}
|
17
|
+
@focusin=${(e) => this._onInputFocused(e)}
|
18
|
+
@change=${(e) => this._onInputChanged(e)}
|
19
|
+
.placeholder=${this.getAttribute('placeholder') || ''}
|
20
|
+
list="ids"
|
21
|
+
/>
|
22
|
+
|
23
|
+
<datalist id="ids">${ids.map(id => html ` <option value=${id}></option> `)}</datalist>
|
24
|
+
`;
|
25
|
+
}
|
26
|
+
_onInputFocused(e) {
|
27
|
+
var { component } = this.property || {};
|
28
|
+
document.dispatchEvent(new CustomEvent('get-all-scene-component-ids', {
|
29
|
+
detail: {
|
30
|
+
component,
|
31
|
+
callback: (ids) => {
|
32
|
+
this._ids = ids;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}));
|
36
|
+
}
|
37
|
+
_onInputChanged(e) {
|
38
|
+
e.stopPropagation();
|
39
|
+
this.value = e.target.value;
|
40
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }));
|
41
|
+
}
|
42
|
+
};
|
43
|
+
OxInputId.styles = css `
|
44
|
+
:host {
|
45
|
+
position: relative;
|
46
|
+
display: inline-flex;
|
47
|
+
align-items: center;
|
48
|
+
justify-content: flex-end;
|
49
|
+
}
|
50
|
+
|
51
|
+
input {
|
52
|
+
width: 100%;
|
53
|
+
height: 100%;
|
54
|
+
box-sizing: border-box;
|
55
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
56
|
+
}
|
57
|
+
`;
|
58
|
+
__decorate([
|
59
|
+
property({ type: Object })
|
60
|
+
], OxInputId.prototype, "property", void 0);
|
61
|
+
__decorate([
|
62
|
+
state()
|
63
|
+
], OxInputId.prototype, "_ids", void 0);
|
64
|
+
OxInputId = __decorate([
|
65
|
+
customElement('ox-input-id')
|
66
|
+
], OxInputId);
|
67
|
+
export { OxInputId };
|
68
|
+
//# sourceMappingURL=ox-input-id.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ox-input-id.js","sourceRoot":"","sources":["../../src/ox-input-id.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAC/B,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAA;AAE/D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAG7C,IAAa,SAAS,GAAtB,MAAa,SAAU,SAAQ,WAAW;IAA1C;;QAmBW,SAAI,GAAkB,EAAE,CAAA;IA0CnC,CAAC;IAxCC,MAAM;QACJ,MAAM,GAAG,GAAG,IAAI,CAAC,IAAI,IAAI,EAAE,CAAA;QAE3B,OAAO,IAAI,CAAA;;;;iBAIE,IAAI,CAAC,KAAK,IAAI,EAAE;mBACd,CAAC,CAAa,EAAE,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC;kBAC3C,CAAC,CAAa,EAAE,EAAE,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC;uBACrC,IAAI,CAAC,YAAY,CAAC,aAAa,CAAC,IAAI,EAAE;;;;2BAIlC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAA,kBAAkB,EAAE,aAAa,CAAC;KAC1E,CAAA;IACH,CAAC;IAED,eAAe,CAAC,CAAa;QAC3B,IAAI,EAAE,SAAS,EAAE,GAAG,IAAI,CAAC,QAAQ,IAAI,EAAE,CAAA;QAEvC,QAAQ,CAAC,aAAa,CACpB,IAAI,WAAW,CAAC,6BAA6B,EAAE;YAC7C,MAAM,EAAE;gBACN,SAAS;gBACT,QAAQ,EAAE,CAAC,GAAa,EAAE,EAAE;oBAC1B,IAAI,CAAC,IAAI,GAAG,GAAG,CAAA;gBACjB,CAAC;aACF;SACF,CAAC,CACH,CAAA;IACH,CAAC;IAED,eAAe,CAAC,CAAa;QAC3B,CAAC,CAAC,eAAe,EAAE,CAAA;QAEnB,IAAI,CAAC,KAAK,GAAI,CAAC,CAAC,MAA2B,CAAC,KAAK,CAAA;QAEjD,IAAI,CAAC,aAAa,CAAC,IAAI,WAAW,CAAC,QAAQ,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC,CAAA;IAClF,CAAC;CACF,CAAA;AA5DQ,gBAAM,GAAG,GAAG,CAAA;;;;;;;;;;;;;;GAclB,CAAA;AAE2B;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;2CAAoD;AAEtE;IAAR,KAAK,EAAE;uCAAyB;AAnBtB,SAAS;IADrB,aAAa,CAAC,aAAa,CAAC;GAChB,SAAS,CA6DrB;SA7DY,SAAS","sourcesContent":["import { css, html } from 'lit'\nimport { customElement, property, state } from 'lit/decorators'\n\nimport { OxFormField } from './ox-form-field'\n\n@customElement('ox-input-id')\nexport class OxInputId extends OxFormField {\n static styles = css`\n :host {\n position: relative;\n display: inline-flex;\n align-items: center;\n justify-content: flex-end;\n }\n\n input {\n width: 100%;\n height: 100%;\n box-sizing: border-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n }\n `\n\n @property({ type: Object }) property: { component?: string } | null | undefined\n\n @state() _ids: Array<string> = []\n\n render() {\n const ids = this._ids || []\n\n return html`\n <input\n id=\"text\"\n type=\"text\"\n .value=${this.value || ''}\n @focusin=${(e: FocusEvent) => this._onInputFocused(e)}\n @change=${(e: InputEvent) => this._onInputChanged(e)}\n .placeholder=${this.getAttribute('placeholder') || ''}\n list=\"ids\"\n />\n\n <datalist id=\"ids\">${ids.map(id => html` <option value=${id}></option> `)}</datalist>\n `\n }\n\n _onInputFocused(e: FocusEvent) {\n var { component } = this.property || {}\n\n document.dispatchEvent(\n new CustomEvent('get-all-scene-component-ids', {\n detail: {\n component,\n callback: (ids: string[]) => {\n this._ids = ids\n }\n }\n })\n )\n }\n\n _onInputChanged(e: InputEvent) {\n e.stopPropagation()\n\n this.value = (e.target as HTMLInputElement).value\n\n this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))\n }\n}\n"]}
|
@@ -71,9 +71,6 @@ let OxInputStack = class OxInputStack extends OxFormField {
|
|
71
71
|
this.requestUpdate();
|
72
72
|
this._notifyChange();
|
73
73
|
}
|
74
|
-
appendFormData({ formData }) {
|
75
|
-
this.name && formData.append(this.name, JSON.stringify(this.value));
|
76
|
-
}
|
77
74
|
};
|
78
75
|
OxInputStack.styles = [
|
79
76
|
css `
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-input-stack.js","sourceRoot":"","sources":["../../src/ox-input-stack.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAC/B,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAE3D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAG7C,IAAqB,YAAY,GAAjC,MAAqB,YAAa,SAAQ,WAAW;IAArD;;QAkCE;;WAEG;QACwB,UAAK,GAAyC,EAAE,CAAA;
|
1
|
+
{"version":3,"file":"ox-input-stack.js","sourceRoot":"","sources":["../../src/ox-input-stack.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { css, html } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { OxFormField } from './ox-form-field'\n\n@customElement('ox-input-stack')\nexport default class OxInputStack extends OxFormField {\n static styles = [\n css`\n :host {\n display: block;\n }\n\n #add-floor {\n width: 100%;\n height: 20px;\n background-color: blue;\n color: white;\n }\n\n div {\n background-color: blue;\n width: calc(100% - 40px);\n width: -webkit-calc(100% - 40px);\n min-height: 20px;\n }\n\n div[active] {\n background-color: red;\n }\n\n div button {\n position: absolute;\n right: 10px;\n width: 30px;\n min-height: 20px;\n }\n `\n ]\n\n /**\n * `stack`은 stack에 의해 만들어진 층의 배열을 유지한다.\n */\n @property({ type: Array }) stack: { name: string; active?: boolean }[] = []\n\n /**\n * `activeIndex`은 현재 active된 층의 인덱스를 유지한다.\n */\n // @property({ type: Number }) activeIndex: number = 0\n\n render() {\n const stack = [...this.stack].reverse()\n const length = stack.length\n\n return html`\n <button id=\"add-floor\" @click=${(e: Event) => this._onClickAddFloor(e)}>+</button>\n\n ${stack.map(\n (item, index) => html`\n <div floor ?active=${item.active} @click=${(e: Event) => this._onClickToActive(e)} idx=${length - index - 1}>\n ${item.name} <button @click=${(e: Event) => this._onClickRemoveFloor(e)}>-</button>\n </div>\n `\n )}\n `\n }\n\n _notifyChange() {\n this.value = this.stack\n\n this.dispatchEvent(\n new CustomEvent('change', {\n detail: this.value,\n bubbles: true,\n composed: true\n })\n )\n }\n\n _onClickAddFloor(e: Event) {\n this.stack.push({ name: String(this.stack.length + 1) })\n this.requestUpdate()\n\n this._notifyChange()\n }\n\n _onClickToActive(e: Event) {\n const floor = (e.target as HTMLElement).closest('[floor]')\n\n if (!floor) {\n return\n }\n\n e.stopPropagation()\n\n const activeIndex = Number(floor.getAttribute('idx'))\n this.stack = this.stack.map((floor, index) => {\n return activeIndex === index\n ? {\n name: floor.name,\n active: true\n }\n : { name: floor.name }\n })\n\n this._notifyChange()\n }\n\n _onClickRemoveFloor(e: Event) {\n const floor = (e.target as HTMLElement).closest('[floor]')\n\n if (!floor) {\n return\n }\n\n e.stopPropagation()\n\n const idx = Number(floor.getAttribute('idx'))\n\n this.stack.splice(idx, 1)\n\n this.requestUpdate()\n\n this._notifyChange()\n }\n}\n"]}
|
package/dist/src/ox-select.d.ts
CHANGED
package/dist/src/ox-select.js
CHANGED
@@ -46,15 +46,14 @@ let Select = class Select extends OxFormField {
|
|
46
46
|
const popupList = this.querySelector('ox-popup-list');
|
47
47
|
if (popupList) {
|
48
48
|
popupList.style.width = `${this.offsetWidth}px`;
|
49
|
-
popupList.
|
49
|
+
const align = popupList.hasAttribute('align-left') ? 'left' : 'right';
|
50
|
+
const props = {
|
50
51
|
top: this.offsetHeight,
|
51
|
-
|
52
|
-
}
|
52
|
+
[align]: 0
|
53
|
+
};
|
54
|
+
popupList.open(props);
|
53
55
|
}
|
54
56
|
}
|
55
|
-
appendFormData({ formData }) {
|
56
|
-
this.name && formData.append(this.name, JSON.stringify(this.value));
|
57
|
-
}
|
58
57
|
};
|
59
58
|
Select.styles = [
|
60
59
|
css `
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-select.js","sourceRoot":"","sources":["../../src/ox-select.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,OAAO,oBAAoB,CAAA;AAC3B,OAAO,iCAAiC,CAAA;AAExC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAC/B,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAI3D,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAGhD,IAAa,MAAM,GAAnB,MAAa,MAAO,SAAQ,WAAW;IAAvC;;QAsC8B,SAAI,GAAW,EAAE,CAAA;QACjB,gBAAW,GAAW,EAAE,CAAA;
|
1
|
+
{"version":3,"file":"ox-select.js","sourceRoot":"","sources":["../../src/ox-select.ts"],"names":[],"mappings":"AAAA;;GAEG;;AAEH,OAAO,oBAAoB,CAAA;AAC3B,OAAO,iCAAiC,CAAA;AAExC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,KAAK,CAAA;AAC/B,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAI3D,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAA;AAGhD,IAAa,MAAM,GAAnB,MAAa,MAAO,SAAQ,WAAW;IAAvC;;QAsC8B,SAAI,GAAW,EAAE,CAAA;QACjB,gBAAW,GAAW,EAAE,CAAA;IAwDtD,CAAC;IAtDC,MAAM;QACJ,MAAM,KAAK,GAAG,CAAC,IAAI,CAAC,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,WAAW,IAAI,EAAE,CAAA;QAE1G,OAAO,IAAI,CAAA;oBACK,IAAI,CAAC,MAAM;gBACf,KAAK;;;;;KAKhB,CAAA;IACH,CAAC;IAED,iBAAiB;QACf,KAAK,CAAC,iBAAiB,EAAE,CAAA;QAEzB,IAAI,CAAC,YAAY,CAAC,UAAU,EAAE,GAAG,CAAC,CAAA;QAElC,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,CAAC,CAAQ,EAAE,EAAE;YAC3C,IAAI,CAAC,KAAK,GAAI,CAAiB,CAAC,MAAM,CAAA;YAEtC,IAAI,CAAC,aAAa,CAChB,IAAI,WAAW,CAAC,QAAQ,EAAE;gBACxB,OAAO,EAAE,IAAI;gBACb,QAAQ,EAAE,IAAI;gBACd,MAAM,EAAE,IAAI,CAAC,KAAK;aACnB,CAAC,CACH,CAAA;QACH,CAAC,CAAC,CAAA;QAEF,IAAI,CAAC,gBAAgB,CAAC,SAAS,EAAE,CAAC,CAAgB,EAAE,EAAE;YACpD,CAAC,CAAC,cAAc,EAAE,CAAA;YAElB,IAAI,CAAC,CAAC,GAAG,KAAK,GAAG,IAAI,CAAC,CAAC,GAAG,IAAI,UAAU,IAAI,CAAC,CAAC,GAAG,IAAI,WAAW,EAAE;gBAChE,IAAI,CAAC,MAAM,EAAE,CAAA;aACd;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,MAAM;QACJ,MAAM,SAAS,GAAG,IAAI,CAAC,aAAa,CAAC,eAAe,CAAgB,CAAA;QAEpE,IAAI,SAAS,EAAE;YACb,SAAS,CAAC,KAAK,CAAC,KAAK,GAAG,GAAG,IAAI,CAAC,WAAW,IAAI,CAAA;YAC/C,MAAM,KAAK,GAAG,SAAS,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAAA;YAErE,MAAM,KAAK,GAAG;gBACZ,GAAG,EAAE,IAAI,CAAC,YAAY;gBACtB,CAAC,KAAK,CAAC,EAAE,CAAC;aACX,CAAA;YAED,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;SACtB;IACH,CAAC;CACF,CAAA;AA9FQ,aAAM,GAAG;IACd,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAiCF;CACF,CAAA;AAE2B;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;oCAAkB;AACjB;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;2CAAyB;AAvCzC,MAAM;IADlB,aAAa,CAAC,WAAW,CAAC;GACd,MAAM,CA+FlB;SA/FY,MAAM","sourcesContent":["/**\n * @license Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport '@material/mwc-icon'\nimport '@operato/popup/ox-popup-list.js'\n\nimport { css, html } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { OxPopupList } from '@operato/popup'\n\nimport { OxFormField } from './ox-form-field.js'\n\n@customElement('ox-select')\nexport class Select extends OxFormField {\n static styles = [\n css`\n :host {\n display: block;\n position: relative;\n }\n\n div {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n }\n\n span {\n flex: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n mwc-icon {\n display: block;\n width: 24px;\n text-align: right;\n font-size: 18px;\n color: var(--theme-primary-text-color, #3c3938);\n opacity: 0.7;\n }\n\n ::slotted(ox-popup-list) {\n width: 100%;\n }\n `\n ]\n\n @property({ type: String }) name: string = ''\n @property({ type: String }) placeholder: string = ''\n\n render() {\n const label = (this.value instanceof Array ? this.value.join(', ') : this.value) || this.placeholder || ''\n\n return html`\n <div @click=${this.expand}>\n <span>${label}</span>\n <mwc-icon>expand_more</mwc-icon>\n </div>\n\n <slot></slot>\n `\n }\n\n connectedCallback() {\n super.connectedCallback()\n\n this.setAttribute('tabindex', '0')\n\n this.addEventListener('select', (e: Event) => {\n this.value = (e as CustomEvent).detail\n\n this.dispatchEvent(\n new CustomEvent('change', {\n bubbles: true,\n composed: true,\n detail: this.value\n })\n )\n })\n\n this.addEventListener('keydown', (e: KeyboardEvent) => {\n e.preventDefault()\n\n if (e.key === ' ' || e.key == 'Spacebar' || e.key == 'ArrowDown') {\n this.expand()\n }\n })\n }\n\n expand() {\n const popupList = this.querySelector('ox-popup-list') as OxPopupList\n\n if (popupList) {\n popupList.style.width = `${this.offsetWidth}px`\n const align = popupList.hasAttribute('align-left') ? 'left' : 'right'\n\n const props = {\n top: this.offsetHeight,\n [align]: 0\n }\n\n popupList.open(props)\n }\n }\n}\n"]}
|
@@ -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.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@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/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-element/decorators.d.ts","../../../node_modules/lit-element/index.d.ts","../../../node_modules/lit/decorators.d.ts","../src/ox-form-field.ts","../../../node_modules/lit/index.d.ts","../src/ox-input-angle.ts","../src/ox-input-3dish.ts","../src/ox-input-stack.ts","../../popup/dist/src/ox-popup.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../popup/dist/src/index.d.ts","../../../node_modules/@zxing/library/esm/core/luminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitarray.d.ts","../../../node_modules/@zxing/library/esm/customtypings.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitmatrix.d.ts","../../../node_modules/@zxing/library/esm/core/binarizer.d.ts","../../../node_modules/@zxing/library/esm/core/binarybitmap.d.ts","../../../node_modules/@zxing/library/esm/core/decodehinttype.d.ts","../../../node_modules/@zxing/library/esm/core/resultpoint.d.ts","../../../node_modules/@zxing/library/esm/core/barcodeformat.d.ts","../../../node_modules/@zxing/library/esm/core/resultmetadatatype.d.ts","../../../node_modules/@zxing/library/esm/core/result.d.ts","../../../node_modules/@zxing/library/esm/core/reader.d.ts","../../../node_modules/ts-custom-error/dist/custom-error.d.ts","../../../node_modules/@zxing/library/esm/core/exception.d.ts","../../../node_modules/@zxing/library/esm/browser/decodecontinuouslycallback.d.ts","../../../node_modules/@zxing/library/esm/browser/htmlvisualmediaelement.d.ts","../../../node_modules/@zxing/library/esm/browser/videoinputdevice.d.ts","../../../node_modules/@zxing/library/esm/browser/browsercodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserazteccodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserbarcodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserdatamatrixcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/multiformatreader.d.ts","../../../node_modules/@zxing/library/esm/browser/browsermultiformatreader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserpdf417reader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserqrcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/encodehinttype.d.ts","../../../node_modules/@zxing/library/esm/browser/browserqrcodesvgwriter.d.ts","../../../node_modules/@zxing/library/esm/browser/htmlcanvaselementluminancesource.d.ts","../../../node_modules/@zxing/library/esm/browser.d.ts","../../../node_modules/@zxing/library/esm/core/argumentexception.d.ts","../../../node_modules/@zxing/library/esm/core/arithmeticexception.d.ts","../../../node_modules/@zxing/library/esm/core/checksumexception.d.ts","../../../node_modules/@zxing/library/esm/core/formatexception.d.ts","../../../node_modules/@zxing/library/esm/core/illegalargumentexception.d.ts","../../../node_modules/@zxing/library/esm/core/illegalstateexception.d.ts","../../../node_modules/@zxing/library/esm/core/notfoundexception.d.ts","../../../node_modules/@zxing/library/esm/core/readerexception.d.ts","../../../node_modules/@zxing/library/esm/core/reedsolomonexception.d.ts","../../../node_modules/@zxing/library/esm/core/unsupportedoperationexception.d.ts","../../../node_modules/@zxing/library/esm/core/writerexception.d.ts","../../../node_modules/@zxing/library/esm/core/invertedluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/writer.d.ts","../../../node_modules/@zxing/library/esm/core/multiformatwriter.d.ts","../../../node_modules/@zxing/library/esm/core/planaryuvluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/resultpointcallback.d.ts","../../../node_modules/@zxing/library/esm/core/rgbluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/util/system.d.ts","../../../node_modules/@zxing/library/esm/core/common/characterseteci.d.ts","../../../node_modules/@zxing/library/esm/core/util/stringbuilder.d.ts","../../../node_modules/@zxing/library/esm/core/util/stringencoding.d.ts","../../../node_modules/@zxing/library/esm/core/util/charset.d.ts","../../../node_modules/@zxing/library/esm/core/util/arrays.d.ts","../../../node_modules/@zxing/library/esm/core/util/standardcharsets.d.ts","../../../node_modules/@zxing/library/esm/core/util/integer.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitsource.d.ts","../../../node_modules/@zxing/library/esm/core/common/decoderresult.d.ts","../../../node_modules/@zxing/library/esm/core/common/perspectivetransform.d.ts","../../../node_modules/@zxing/library/esm/core/common/gridsampler.d.ts","../../../node_modules/@zxing/library/esm/core/common/defaultgridsampler.d.ts","../../../node_modules/@zxing/library/esm/core/common/detectorresult.d.ts","../../../node_modules/@zxing/library/esm/core/common/globalhistogrambinarizer.d.ts","../../../node_modules/@zxing/library/esm/core/common/gridsamplerinstance.d.ts","../../../node_modules/@zxing/library/esm/core/common/hybridbinarizer.d.ts","../../../node_modules/@zxing/library/esm/core/common/stringutils.d.ts","../../../node_modules/@zxing/library/esm/core/common/detector/mathutils.d.ts","../../../node_modules/@zxing/library/esm/core/common/detector/whiterectangledetector.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/abstractgenericgf.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/genericgfpoly.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/genericgf.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/reedsolomondecoder.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/reedsolomonencoder.d.ts","../../../node_modules/@zxing/library/esm/core/datamatrix/datamatrixreader.d.ts","../../../node_modules/@zxing/library/esm/core/datamatrix/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/multi/multiplebarcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/pdf417reader.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/pdf417resultmetadata.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/decoder/ec/errorcorrection.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/decoder.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/qrcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/qrcodewriter.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/errorcorrectionlevel.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/formatinformation.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/ecb.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/ecblocks.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/version.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/mode.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/datamask.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/bytematrix.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/qrcode.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/encoder.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/matrixutil.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/maskutil.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecreader.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecwriter.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecdetectorresult.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/azteccode.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/encoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/highlevelencoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/decoder/decoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/detector/detector.d.ts","../../../node_modules/@zxing/library/esm/core/oned/onedreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/abstractupceanreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/upceanreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/ean13reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/code128reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/itfreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/code39reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/abstractrssreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/rss14reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/datacharacter.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/finderpattern.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/expandedpair.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/rssexpandedreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/decodedobject.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/decodedinformation.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/generalappiddecoder.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/abstractexpandeddecoder.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/abstractexpandeddecodercomplement.d.ts","../../../node_modules/@zxing/library/esm/core/oned/multiformatonedreader.d.ts","../../../node_modules/@zxing/library/esm/index.d.ts","../src/ox-input-barcode.ts","../src/ox-buttons-radio.ts","../src/ox-checkbox.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../src/ox-select.ts","../../../node_modules/@types/codemirror/index.d.ts","../../../node_modules/@types/codemirror/addon/display/fullscreen.d.ts","../../../node_modules/@types/codemirror/addon/display/autorefresh.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/index.d.ts","../src/ox-input-code.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/index.d.ts","../src/ox-input-file.ts","../src/index.ts","../src/ox-input-container.ts","../src/ox-input-data.ts","../stories/index.stories.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/get-diffable-html.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff-plugin.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/index.d.ts","../../../node_modules/chai-a11y-axe/chai-a11y-axe-plugin.d.ts","../../../node_modules/chai-a11y-axe/src/accessible.d.ts","../../../node_modules/chai-a11y-axe/index.d.ts","../../../node_modules/@types/chai-dom/index.d.ts","../../../node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinon-chai/index.d.ts","../../../node_modules/@open-wc/testing/register-chai-plugins.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/elementupdated.d.ts","../../../node_modules/lit-html/static.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/renderable.d.ts","../../../node_modules/@open-wc/dedupe-mixin/index.d.ts","../../../node_modules/@open-wc/scoped-elements/types/src/types.d.ts","../../../node_modules/@open-wc/scoped-elements/types/src/scopedelementsmixin.d.ts","../../../node_modules/@open-wc/scoped-elements/types/index.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/fixture-no-side-effect.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/fixture.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/fixturewrapper.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/helpers.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/scopedelementswrapper.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/litfixture.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/stringfixture.d.ts","../../../node_modules/@open-wc/testing-helpers/types/index.d.ts","../../../node_modules/@open-wc/testing/index.d.ts","../test/property-angle.test.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","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","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},"b5c159239c33d1bcb3d7ca8d24cf9ba1b1579aab80e70fbb0029e374880f2470","12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","0c8a56610b08f55e29ffb466cd27626ad6dbe822312a398026e82270c63088e3","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","7b33ee85f2e96a51c0e3bcee47b247a24515aff37a7d8b5dfe4e18b735d37440","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"70f04c91d3186b1b10157157887fab664968fc9b88377785a5ee42750c202c6d","06e20da1bc94df355f22ac7a9533c2488816ec4cb9134d9b160a263629a07072","c311ef8d8b159d0c268b415f78c1949498dc2d14455a9891c5b8ef84625b1e41","97c58f6db61d45712d91d2260994817ae2b568bbb37cc280013079b6b5d2232d","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","9bdb35d0b28dcd5d8f0879bd29f0cf07b7eb48aa63be4dd44057e32fcfeb1c83","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","84610cf09dee3cefc910555318f1ad7b45f1cba36905a86849324ca4fead2385","a25d1e52291791819032826af5c52987e16ffdb96e8bb69f7f1790f5ab080be6","d660961abada6b5030461f3322ef3a2e1d9fec74167574f8b590a7796cf90a72","707b4eae3d469b2f347d2083037151922f94c370a9456ebd5ac0a4fb7441c7e7","ef509d57201aa4e2e3e2b3d1fafd066a8ce68cd2caea737d539c3544f5a99a67","73b7d7df7c0dbc9a4c07c8c0f9bf6b436a0c728884e3425b120a65dd7459584e","3e96c96efad5d403b16c4b3d9cf99b3e86267a046abef94fe37cfa97ec013f23","84c66a77a1302611ea5001dc88d10de1b5d87c6b2f30a48585495217421ce1ac","4cd0a6ac9b2a2545865d216caa1a54dd5e5b434125d4579f4b8455a4af236269","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","ed3eaec34d14d1a2885ed3b0f38846472bff1ff1b3a48ed986f4526f8e694d8c","fc2d9f026a936806f48589a2e816a90e4c3bb39c505c8191084d69d9df343c8f","d3970d3f5fdc6d538c6c9e939074bf9b278361f8b9ae0515ae5c742674050878","1d722bc8901d9cd7e0ee2edf5526bf2bb1dc4e24608b3f3b33d00fec42fbf1b8","0d9e52280b929cfa5c83241de4d5a7f0379cc3b12f51814b82985e231957427a","b2fcd8c77e6123c2d1737dc077f33c5460db3aad4ffed97d9b72d0368089a8d4","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","77b0b20b0aeafc78f8af2d66bf16a53b91312d6426f5413a574b978cc6edff34","30b7784f26c990da2ab8e2b35c198b84dd1bcfc4ce1936d95baf8be825e44fc8","2aad701dc29df474848186eae9f7f6d68682cd30ccb14b50866e1cdc2deffded","6631d429758aec5beb47de0895a09b57b9a2bb0d3520d3f7e5674c33b886cb32","4b7b8571dbc6ac884882c910549ef6b507c9bf9e721ec4ae5bccb4cb565e7597","de2a52682e3a9ee3c61159a4a6fd74c9e0259692598f33d1d2174f5d8fb18276","ca968be2bebaec29feba08452a2293d0ad2f11b5e70833d99fc6a078844271ea","4363cfdc5eba70c1b06e88653e0a03705558f7f3880083aa639438ef01f367f1","c0b4317958ae42a4e276041687ab95a72668d790b8410939d9924d49776fea40","7664fc0355afe380fdb3c184848e79ef10958c6916305a50bceb06366f9e9019","22fa4f9d3a770310dfcc6c60310288326dfa31b39e32744d660e50a08ef7583f","7a2835f1d73db78aa311398798efbcf07b7029ac18252dfa321d50168f211452","8ded0efd0f64067da4812f14e9d7bb1ed44871c3b87d87564416d93073825f0d","79ba5dfa0abac7e3e7210eb2358f9e6117a46da02446cead1510f32c26eae02e","df5585be736dfb6b7a4f5ef08c5dd8c037858319da3313ed39609b7079980caa","83fd78d3184d150c32740a409c3b4acb1290199490a86f661b43b14ae9314b68","6bd387b615555ec847bcce6eade4de0c271b7b22b17d7e29b837011d4429e164","2effb5dfe6a54053aeb4c21bae08f457c9454b3473a1b65dd7c7a9ec064a1aa2","905d6e6887edf527d56dcda85ae92d065611fccf5c582f2d019123ddc0f2077f","75aa62429356fb3a8ff4c9ff0e9665c67b512351956857a3e1ade1d497e9c149","5ded77dd88437e5e3cb2e6e8c0bd636896e79ecbb4a9876678e3d0ab5e2ea54d","72a8e2f7864e44b864f9b991fcad0a4bc5fabb1aeaad3dc7ee520ccee4f2336e","a193a2944058607c6c094df6487399e4386059280940839af6cf62a634202810","cf3e138268e5bfaed81bf100500da5f257d6883a9e8a0febe431dcc9c128766e","1fe02733949b609bbf88523da8d24a5432b510b2ad0b47ae0c921d680f9f3785","74a0aecf46aa5c2aae9d42cfc0efda7f1e93677474e12471a5864230c6b187a1","96ef505aceedbf3ecfcf69829b4f57f27e3ce72ad6ebcaa05a1da88986b818b8","eec7434894f908a61867fa29b5fe563c14c313cbc35e517ada79f38b44234e37","52a9d9ae376b117459346f324e3c8ec04a0b1e702a000a2c80e9dbd9b43181a2","17b29959c0ac60d28af819d0d3d7106c9dfe5acefe5c820ea7145e5d27455702","49d95d1f1707e80483ae4a3313103a1d76a4d105f3b0e3cf410c474b7c5cc358","f369c01bc64fc7d8ce1751065c384df2f81a89deb224c24eabb4e8465ee6181d","c6bbc353e7bca0574458f0dcadfe84e56e48ec1d38475b4254c1d4619bfd47c1","4c90f3b801c6aec975c0497b9e9ff8ff1ad903fb74e6e8aaadb240dd85612bb8","d11f0b5dae80f2e5e02f34c4aa58650492ccb45651b6f83f10eaf10dfe565a65","49bc024e5a1fea90b26a1f41fd75982d9f68f40444b568a91ad1202691cd882d","4b2ea4e544b830a25240b3982d735fbd6f4da8ea7af4caee3906809cb0c892fb","e5029039ae5dd970ab70bd67cc03085f17420e89e365c684921e45cc2b7f9c0a","099d5cbe09f4ecd7529764502da2a91e819d48e1b8f53e3b9954dbf9fdcd2d67","521e4e920ab7109fea500cc2f9dd48457a30b46f574b35c52bc6bd2533cd902f","f24dc27c51a5dfcd6383f001099843ce5234dac65a8de5477b5bd43c68d789e7","d1b2ba9156610a5413143169dcdb67530665b4c97da01e849c4e39560a028d11","67d0899181e8542bb2408b0a4d4be47628290ba39e3510b00569891c6bef8105","1a51bc00ba287a98d010ba68dacf22e81e801c27d5f605dc53562d9db76e16db","5b71a4c0fa3233daf8025104788f9f6046859ddb0fb96beb59fc0ff9fb42c113","0438101968a30ea0799bf28609d56a45446268eb08a2606c737104b9a2e479c5","dfae624810dcaa58acf29dea53d0c4b0626e50822668b0f25b92769d0d4a0c11","159d5123c12f8ea94d929fca14851cd1cf625e2c5778119df4d167265b11addb","8cd5018ac1e7d47f19f3b56af074d2aadb80a3cc0cfd42f40419405c3131f405","a7e4a92ed0a90cbdc3f944fac43a367abc2713abaeca4a1b0ac84e35bedd702d","072caf3382317f29871e8c1f22e6620252ead6c3245e118c0953dabc5a3e79f0","0e6d04a687ffc80745939bef70f2964dd4699895aeae3cb8076a2ff18cde1c67","043d1f68840d7ad109fcea422c34e0096da930d820a2987a67bc8dec11387463","265b6fbbe296b6ace3e92eaee48813c809890f90eef7c389e44997e652c8a94f","09a6cf0a1646f4fe8956b5a9ed2334d5bce973d2f074abb61a39e09cd620399d","c3394d3bc25404895e11fba6517b477f992321aeadd20338cd541721af8e1684","329c0ab9af33a87e502c718b5301cb114a5547a1fc5d55597128adb9aec1e25e","69db0dfb6ec9dcba5a31b99bfc5da74b6d86fca50013cc15bb072c4c97acc4d6","188c2128b909024fd07ff82a308638b13eb02056454d6aec0094656f5b60b0ab","59e626908ec84b90ab62d7704f406739956afa6a124f37776a7fbf3d523d31af","3bf62235efe93ed4f9b18799351c890d7eee5d7ac118b33d5ec717070437fb86","aa02ea4ce88d834274306d2e8d72b6f2457777255c1de2a021a922540f3c201b","a2c581e82777c45b07521fb39e06e50681da78b927df93495313657b0a2abd49","a2ff4870a55c9dfa028c2f5e774f647594bd0a1036388c39562bd3a81eb08631","5f14ef223c9097662dd86d19dc13aa1772524f2689596df3d324b9a08099ad0c","303680856c75fdbc2d4616f29d6e5adfa9837c091119f85482cf0123d4688bd4","8ac1fb455c5f42a895c9d1b6a7ad53d6e72e8bd024a2376c7743914e6c3db1c5","e7fbfe161d7591aff2fac724dc3729d6f2c10a2368a1accc79619f56273c6d45","945c700e5c5283839f32fb02129ffa233843afdc7a31335225a622edaa4dcd29","374251a9579548076b559ae27d07e08c1fa150d7934fe9629cc649fee99751ef","a8b40e76e9b2870e9693abc3a52135e80c5c95b9bad4bb5c7e756cb68be0dee6","ef63d901eaee2e8c25fd006bd0ad13ff7821de4bc07de674ae5eee8748001451","247d025ea65b8d07f3f595af46f3e6d3c84bfe6c80f80ee77df1f22d814c132d","3fcb9d41be6137cf2c3684aef7d6ea8d934132644bf8044d0ebc24c680939e19","bd4db5efc9930a4eb2e9e6af8f55cba031045b7b6adc5818f279d38ef56d682c","e2b6c1237496328b2d3ebea48fbaa9c82c51bfdce47afc4f6003422f14cfafad","d454863b6e7022253e0d60c1051defee04d65d9de7f5c5a11e2b84e33909fe4b","bc71c29d055581143051f3a90604c52c368ee2ee97e3e66a168a24c753ed5a60","363a8db8015eaf382dd76f42989a3d6165edfc0e1fca60d77db0ac2b79241426","1202fbf37dbdfaf0faf85a0fafd4db2e0ff07b42a70806d0368ce8a36a8afec2","d1a49dba3e7721d1ce3de321c5dc40b5ba3b2d6316f7fc40d2f95df452334d96","2c143e4b22580d2879718195322d52c02461dc99f43846a99892692e4f81f078","096a1da32dbc90e00d67f1d1f0ae52db2e327102be4b60ee0faa8dccba81e684","7549a814a3e01a21cd235f43029ed0f4e3a2d5085224316376bb91a1779de313","57d40f1e6a5f377677409cd1875551883b7de268be69f942622244163ea89d01","2e761e410969234950ab430f9ca58b6ed417f1014c55fc73f638523fa5eec1d6","94c9d56b441f206fa84f13e8022bd0abae326f6d8db96b08e2c1aafe3f90544e","0b5fa0c440935532611416f9a923f9278601d600e10cc3feaa55da332f50f6ac","8a0b458916a1fe3aeb3cb7d118bf191ff1e9aec2d26177660e64241d677db1e0","bf12ca57a5d03135c31d3f88c269740c7d2658664f15d6495c219b1bb23a99da","9c40be3c5a7920b744d14112ff3168ab5e5609699b8c1d91ecb709ac168324a5","cb28f2fc4172aa0541ba7bf189603f96897a951a46c4be3d91acf9de9a1710e8","6994c5b35689135e820f563d5763e3336930ffa439d895a3ec27025702ccedfd","91dc8b7c4593713c8aeff12732e13f9d1eb94f5caee9a1496660f831f465835d","1bb2c6539020bcac5f3e2983a84a6e0076d68df0167d99a29bae9fc11e3ea691","e4b0ad22784b73f2e6bcf955628e6dbb114bae5b003d40b1ee19356e18daad7a","df45b75ada5c8beceb3e913364c7a3729011dc172b68adf5189d4fae5625ad7d","97b2a12f44fb5a8efd00ab46d37d6637167746c7c0d88c5b5728a34aa3b663a5","2c52dbe7f60e8b2887d17877c1b04677f1d945b18b4fb3e7befbd1489de51e83","f3bd3b4bd312efbff3978a3fd9952e2eadeacc7d01cbd1bc01e72786e502aa16","95b063b28e6ed861e34899447c68932aa51b840edaf7cda213ac61920766271c","4710c48d307d5ccdbea5c12e20c0ba27870411d86ad563918d4c0aeb0fce3b57","c5880f64e301e74076d017ee185c9a528e5a68ed93f305fbf6d7618b7d21c29f","b97b7560517f2f4a070415909c98ddcb1e1d8f3346db990d496856fcdfcde648","15e2f96f7a8e64937eb0624b04513a9fed7f7c71aa7875208ee9e31958588624","6f5867d484ac5f717347328137c1a35563380e2c1d8e1d38beb8767c90bb5705","218e1b7c38cd5b9af46b904a728f0cc15828d9290d9adc6a5fc220f6069df988","88b74310f700fd92c9d3f11626878f3664449dd7dc007115a41cf746a9757e1c","3407d5883afea5c8fac9c3a74fedec806913b960644117e9710a239d85185fe1","7a028e36ec10c5bb3ee2e21fc938f1a44aa1b7af9981eff947da64f421b99445","6c056acd7733f0c09d1c3109ea627677dbf0eb260ef79f2797d588d85a8af1aa","ebe4587bd35138be18fec2050ffe7eed63d642fa0b674bb07e92f919fabcdea8","5d1d8f471bfda5e91090380b191a1e4d44911cf0bb51f69ce61632ec1a6a7399","0b35ba65af6e6196d22ee4a184f42512b7af1b4489b4fc5dbe9dd6d36b8097d8","232aa18921769b316d6a022c776669ea28a0250a98223841e521d9c3d9920a22","394bc17919e4dbb56443f11a7cbf610b7b07384423f9725c14d990920367b06b","17830ef73e50e330c120038947bc61ef1725178b58b9564dd9dcac5b51a6ac0c","b054669f7056c4fdb7cdf764b1977917f40f820d7f33bbc1f6b616e46b531ad6","1409e4c2241622af1a067634caff699d7d03adb5e8fd401c3f11d07214c49ec2","eae212ef0acce305594fb9cba149892dd9945cb58c0f72d0051557804b8a1af5","ccc9538f2696fa6720ccb26c05b9545e1a6236139670a9c919047aa6459456ef","e3d762cc49c25e02cd10873d944e12339185883485eca1b40e9cc0d0e063be63","437597745a84ace9638ed90cbff9abf5229131dc1d69ebfc6b19e0009577eb22","b4a7210846055640fdccdf888dc7ba266cc82549fc95ab05cdfff7cc9dd65bf1","6ed4718659f02e112093d49a24daa5641b64cb23cad309914050f3670dc99ae8","8f5ad7f79aa73a4f8adb63eb73bd828dc2fdce70a7738f3b54f14000e7cd1735",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"229f234d9a33088402b303529b3d2517aec5a9e4e666c9b7302e30134a02f23c","4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","1fd68353565ef4a5cc3241c0ef3a1ec4b33b17d60c76a78e0e7c05a73754e261","5765852c2905e4328a2ad6dd4f478d5554d3e760c510c3a600a6284d7e4df62c","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","69398d1e569b8c8542902444a8c9bed2fc446b846caea7dbc8e57b6df36c9c62","8798e0394f5fa8da8fdf6f5fb4a13ce8888a6871bedfb206fa5d6828699ddb7a","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","6d1f118cfbf15c813f578cf6b87da76d075698bf7db964cb7c3d75f0309652f7","9d2f44c8c1a0773291ecd9b7242e02ae104a9c4c603a32f5e766aac7464fa0c5","83f21193493204ccae662bf861156497a97032186e2c8b8eaeea14314fadfb9c","29c061e6b4a17961727b526a303fc227c16b43213cbe59c1af576084b99e71be","66b7aa4316b2d1335ec70b9ad03cd32061a5acb768eb9ec951f95ab87174a01f","e06e78b53bb3ee3b50937d8d80062a63edcd8a28e9228232806c5afcac6875a6","0946b931e443fe1d97ec8d4e4b3d04e0011f04d4f0d9ba19355c8572b056e5b9",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},"8a659f7d82d932649a78f89643c5b436953424a219d705d49b8b3d9ccd6e35ff",{"version":"75cd6dce1c5f87511772c891de86d0c9e6829e6273dea9f92a5bec9d0479d1e7","affectsGlobalScope":true},{"version":"cd711db43a952f15464b571ac11b7a440332cd52342bc92c4bf908c70688f57f","affectsGlobalScope":true},"9d8709c916778cb34830708ed47b78e9a46d1fb2eb73a682b14eee990bed4aa6",{"version":"5d90911f942229eb9049feab241739a5ced76f137948f8f42a615e5f01d4e7ea","affectsGlobalScope":true},"999a90d30a3183dcee987d0a5a7c586aba5bacbf6ce087ba8635124082ccfeea","8a5878edd52f4a720560b4c6e6247e9ddc3df6118ad9cf2f9927903b03d5f440",{"version":"d95d76d79a0351572ec5b1a6cc1e5c4bce1be82eedeed7278d6f31ea1059fa69","affectsGlobalScope":true},"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"65b91a3725399231d3469529b5e27b85bf2aa98013e607f308e5fe260b47eeff","a11181f6d68200e83ccb1fb48b262a7132a3257e0a230f41c9dc4c351964297a","fb2e6b33c4f8332c524dcf99f37fe5bfadccf9bc2f09fcd32eb802b4048bd6e4","d58f29ef032a92da0196fc9304889d8993e2503fb2713b8c1f97808a87d45f8b","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"aa087ee31af7d286efa149c9660a8fa1d0908cb72c980f129a30a6bd1063c696","affectsGlobalScope":true},"c7b2b6f36bb88832616cf257bc19b42096cfa94d76114b3fa9e57563fffddb49","fdf0aa1a72ff0188a9013926201a391116ef6701cd439b89850786abdf755fb8","5f3d348a3a6978dc5ff85ea97be65e41a21884d078bfdec5a588940639fd7fc5","abf9ea97b78a7b239186cf5b7ed59c4a593abac3c408c8c95fc5e604cfdfdb43","ae91c9161caf0af81c89e780a045fc5ea8382407e516342e409c5db9161d3b32","2c387828a523cc77a4300f5deb063651c9346c5a36ccfbfc127c38df8ab45b0c","e6a731551b57eb0f9fe5dde97ce2cf02f57d99cf7d7e06b916111c7a07c30abc","4a662115c4c7186cc027ef4a8163e48c7f1c57f05247f08d5acb2344fae2ca53","d598157512ae6e0d3aa6bb0dd261ae34845831dccf7bc7739695ee2589eb76f5","c523db72c97b64fb4afe53e79cd7a2b062bacc36b1d0b29c9686f71c05d4409c","d2173e08898108c0aaa6dbfed27725b4a71f5817153800c86f03fa06456a2fc7","f8ae73984bf315d8246e3a10756398c435d57ef21a44f1b76b2a40c095045c99","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","fce6a1a1553ff7d54ffb8bb3ae488c9cb5f2f4f4e52212c1abe40f544819ef35","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"f548e3501187467575e639cabc2e845f2e217a50d5f6869e32cace49874a4255","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"267af67ea520cabd16402522756b19ac63d9e2c1c86e7c4d1ddeb991c32e12c9",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":99,"useDefineForClassFields":false},"fileIdsList":[[289],[44,289],[50,289],[44,50,289],[42,43,289],[63,289],[234,289],[44,232,233,289],[44,232,289],[216,217,289],[218,289],[217,219,289],[229,230,237,238,239,241,242,289],[231,235,289],[236,289],[232,289],[231,236,240,289],[231,289],[216,228,243,289],[220,223,224,227,289],[216,289],[199,200,289],[199,201,289],[246,289],[249,289],[250,255,289],[251,261,262,269,278,288,289],[251,252,261,269,289],[253,289],[254,255,262,270,289],[255,278,285,289],[256,258,261,269,289],[257,289],[258,259,289],[260,261,289],[261,289],[261,262,263,278,288,289],[261,262,263,278,289],[264,269,278,288,289],[261,262,264,265,269,278,285,288,289],[264,266,278,285,288,289],[246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295],[261,267,289],[268,288,289],[258,261,269,278,289],[270,289],[271,289],[249,272,289],[273,287,289,293],[274,289],[275,289],[261,276,289],[276,277,289,291],[261,278,279,280,289],[278,280,289],[278,279,289],[281,289],[282,289],[261,283,284,289],[283,284,289],[255,269,278,285,289],[286,289],[269,287,289],[250,264,275,288,289],[255,289],[278,289,290],[289,291],[289,292],[250,255,261,263,272,278,288,289,291,293],[278,289,294],[216,226,289],[225,289],[45,289],[86,87,88,89,90,91,92,94,95,96,98,99,289],[89,289],[78,89,289],[77,78,82,83,86,87,88,289],[77,78,82,89,93,289],[97,289],[82,85,289],[72,289],[85,289],[75,79,131,289],[77,78,82,83,289],[74,75,80,97,113,289],[127,168,289],[75,79,168,289],[74,75,289],[73,74,169,289],[73,289],[72,73,75,289],[73,75,76,289],[73,74,289],[75,128,129,289],[75,79,289],[72,73,75,76,289],[75,128,289],[129,289],[72,75,76,132,289],[138,139,289],[138,289],[140,289],[74,78,119,122,289],[127,289],[84,289],[77,78,82,289],[75,80,97,113,289],[73,74,78,82,174,289],[73,78,82,174,289],[73,80,176,289],[73,77,78,82,83,289],[174,289],[73,189,289],[73,190,289],[187,289],[73,120,188,289],[183,184,289],[73,78,82,181,183,184,185,289],[79,289],[73,78,82,181,289],[73,78,82,175,289],[74,127,147,289],[74,289],[77,78,82,83,145,289],[75,289],[78,127,153,157,289],[75,78,127,289],[155,289],[153,289],[157,289],[75,153,156,289],[73,97,153,157,158,162,289],[161,289],[73,153,157,161,289],[153,157,158,161,289],[77,78,82,83,150,289],[79,80,81,289],[72,112,289],[119,289],[74,119,289],[75,80,97,289],[72,73,75,76,77,78,79,80,81,82,83,85,93,97,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,135,136,137,139,140,141,142,143,144,146,147,148,149,151,152,153,154,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,177,178,179,180,182,186,190,191,192,289],[222,289],[221,289],[50,51,52,53,54,55,56,57,58,289],[44,48,49,59,289],[44,48,289],[48,289],[46,47,289],[51,52,53,54,55,56,57,58,289],[44,48,49,289],[41,62,64,65,66,194,195,196,198,207,211,289],[41,61,62,63,289],[41,60,61,289],[41,61,62,63,64,289],[41,61,62,63,71,193,289],[40,41,61,62,63,199,200,201,206,289],[41,61,63,71,197,289],[41,61,62,63,207,289],[41,61,62,63,197,206,210,289],[41,61,62,63,71,197,289],[41,63,289],[41,63,64,244,289],[67,68,69,70,289],[48,63,67,289],[48,63,69,289],[48,63,289],[202,203,204,205,289],[208,209,289]],"referencedMap":[[42,1],[50,2],[51,3],[54,4],[52,4],[56,4],[58,4],[57,4],[55,4],[53,3],[43,1],[44,5],[197,6],[232,1],[235,7],[234,8],[233,9],[218,10],[219,11],[217,1],[220,12],[243,13],[229,1],[236,14],[237,15],[238,1],[239,16],[241,17],[231,6],[240,18],[242,15],[244,19],[228,20],[225,1],[224,21],[216,1],[201,22],[200,23],[199,1],[297,1],[246,24],[247,24],[249,25],[250,26],[251,27],[252,28],[253,29],[254,30],[255,31],[256,32],[257,33],[258,34],[259,34],[260,35],[261,36],[262,37],[263,38],[248,1],[295,1],[264,39],[265,40],[266,41],[296,42],[267,43],[268,44],[269,45],[270,46],[271,47],[272,48],[273,49],[274,50],[275,51],[276,52],[277,53],[278,54],[280,55],[279,56],[281,57],[282,58],[283,59],[284,60],[285,61],[286,62],[287,63],[288,64],[289,65],[290,66],[291,67],[292,68],[293,69],[294,70],[227,71],[226,72],[46,73],[45,1],[100,74],[90,75],[91,76],[89,77],[92,75],[94,78],[95,75],[96,75],[98,79],[86,80],[99,81],[87,1],[88,1],[101,82],[102,82],[168,83],[166,84],[167,85],[172,86],[173,87],[169,88],[170,89],[171,90],[80,1],[76,91],[77,92],[103,82],[73,1],[75,93],[126,1],[119,1],[127,1],[130,94],[136,1],[137,95],[131,95],[132,96],[129,97],[133,98],[134,99],[128,1],[138,1],[140,100],[139,101],[141,102],[142,102],[135,103],[143,84],[144,104],[78,1],[97,1],[85,105],[104,82],[105,82],[106,82],[112,81],[72,1],[145,106],[93,84],[114,107],[107,82],[175,108],[178,109],[180,109],[177,110],[179,109],[192,109],[174,111],[181,112],[183,1],[190,113],[191,114],[188,115],[187,1],[189,116],[185,117],[186,118],[184,119],[182,120],[176,121],[148,122],[149,123],[146,124],[147,1],[115,81],[160,125],[159,126],[150,127],[155,1],[156,128],[153,1],[154,129],[158,130],[157,131],[161,1],[163,132],[165,133],[164,134],[162,135],[151,136],[152,107],[83,106],[108,82],[109,82],[82,137],[81,1],[79,123],[116,119],[117,138],[110,82],[123,123],[122,139],[125,1],[124,139],[120,140],[121,139],[118,1],[113,141],[111,82],[74,1],[193,142],[221,21],[223,143],[222,144],[59,145],[60,146],[49,147],[47,148],[48,149],[230,148],[61,150],[63,151],[84,1],[41,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[38,1],[34,1],[35,1],[36,1],[37,1],[1,1],[39,1],[40,1],[212,152],[195,153],[196,153],[62,154],[65,155],[64,153],[194,156],[207,157],[213,158],[214,159],[211,160],[66,153],[198,161],[215,162],[245,163],[71,164],[68,165],[69,165],[70,166],[67,167],[202,6],[206,168],[203,6],[204,6],[205,6],[209,1],[210,169],[208,1]],"exportedModulesMap":[[42,1],[50,2],[51,3],[54,4],[52,4],[56,4],[58,4],[57,4],[55,4],[53,3],[43,1],[44,5],[197,6],[232,1],[235,7],[234,8],[233,9],[218,10],[219,11],[217,1],[220,12],[243,13],[229,1],[236,14],[237,15],[238,1],[239,16],[241,17],[231,6],[240,18],[242,15],[244,19],[228,20],[225,1],[224,21],[216,1],[201,22],[200,23],[199,1],[297,1],[246,24],[247,24],[249,25],[250,26],[251,27],[252,28],[253,29],[254,30],[255,31],[256,32],[257,33],[258,34],[259,34],[260,35],[261,36],[262,37],[263,38],[248,1],[295,1],[264,39],[265,40],[266,41],[296,42],[267,43],[268,44],[269,45],[270,46],[271,47],[272,48],[273,49],[274,50],[275,51],[276,52],[277,53],[278,54],[280,55],[279,56],[281,57],[282,58],[283,59],[284,60],[285,61],[286,62],[287,63],[288,64],[289,65],[290,66],[291,67],[292,68],[293,69],[294,70],[227,71],[226,72],[46,73],[45,1],[100,74],[90,75],[91,76],[89,77],[92,75],[94,78],[95,75],[96,75],[98,79],[86,80],[99,81],[87,1],[88,1],[101,82],[102,82],[168,83],[166,84],[167,85],[172,86],[173,87],[169,88],[170,89],[171,90],[80,1],[76,91],[77,92],[103,82],[73,1],[75,93],[126,1],[119,1],[127,1],[130,94],[136,1],[137,95],[131,95],[132,96],[129,97],[133,98],[134,99],[128,1],[138,1],[140,100],[139,101],[141,102],[142,102],[135,103],[143,84],[144,104],[78,1],[97,1],[85,105],[104,82],[105,82],[106,82],[112,81],[72,1],[145,106],[93,84],[114,107],[107,82],[175,108],[178,109],[180,109],[177,110],[179,109],[192,109],[174,111],[181,112],[183,1],[190,113],[191,114],[188,115],[187,1],[189,116],[185,117],[186,118],[184,119],[182,120],[176,121],[148,122],[149,123],[146,124],[147,1],[115,81],[160,125],[159,126],[150,127],[155,1],[156,128],[153,1],[154,129],[158,130],[157,131],[161,1],[163,132],[165,133],[164,134],[162,135],[151,136],[152,107],[83,106],[108,82],[109,82],[82,137],[81,1],[79,123],[116,119],[117,138],[110,82],[123,123],[122,139],[125,1],[124,139],[120,140],[121,139],[118,1],[113,141],[111,82],[74,1],[193,142],[221,21],[223,143],[222,144],[59,145],[60,146],[49,147],[47,148],[48,149],[230,148],[61,150],[63,151],[84,1],[41,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[38,1],[34,1],[35,1],[36,1],[37,1],[1,1],[39,1],[40,1],[212,152],[195,153],[196,153],[62,154],[65,155],[64,153],[194,156],[207,157],[213,158],[214,159],[211,160],[66,153],[198,161],[215,162],[245,163],[71,164],[68,165],[69,165],[70,166],[67,167],[202,6],[206,168],[203,6],[204,6],[205,6],[209,1],[210,169],[208,1]],"semanticDiagnosticsPerFile":[42,50,51,54,52,56,58,57,55,53,43,44,197,232,235,234,233,218,219,217,220,243,229,236,237,238,239,241,231,240,242,244,228,225,224,216,201,200,199,297,246,247,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,248,295,264,265,266,296,267,268,269,270,271,272,273,274,275,276,277,278,280,279,281,282,283,284,285,286,287,288,289,290,291,292,293,294,227,226,46,45,100,90,91,89,92,94,95,96,98,86,99,87,88,101,102,168,166,167,172,173,169,170,171,80,76,77,103,73,75,126,119,127,130,136,137,131,132,129,133,134,128,138,140,139,141,142,135,143,144,78,97,85,104,105,106,112,72,145,93,114,107,175,178,180,177,179,192,174,181,183,190,191,188,187,189,185,186,184,182,176,148,149,146,147,115,160,159,150,155,156,153,154,158,157,161,163,165,164,162,151,152,83,108,109,82,81,79,116,117,110,123,122,125,124,120,121,118,113,111,74,193,221,223,222,59,60,49,47,48,230,61,63,84,41,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,40,212,195,196,62,65,64,194,207,213,214,211,66,198,215,245,71,68,69,70,67,202,206,203,204,205,209,210,208]},"version":"4.5.4"}
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@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/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../src/ox-form-field.ts","../src/ox-input-angle.ts","../src/ox-input-3dish.ts","../src/ox-input-stack.ts","../../popup/dist/src/ox-popup.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../popup/dist/src/index.d.ts","../../../node_modules/@zxing/library/esm/core/luminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitarray.d.ts","../../../node_modules/@zxing/library/esm/customtypings.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitmatrix.d.ts","../../../node_modules/@zxing/library/esm/core/binarizer.d.ts","../../../node_modules/@zxing/library/esm/core/binarybitmap.d.ts","../../../node_modules/@zxing/library/esm/core/decodehinttype.d.ts","../../../node_modules/@zxing/library/esm/core/resultpoint.d.ts","../../../node_modules/@zxing/library/esm/core/barcodeformat.d.ts","../../../node_modules/@zxing/library/esm/core/resultmetadatatype.d.ts","../../../node_modules/@zxing/library/esm/core/result.d.ts","../../../node_modules/@zxing/library/esm/core/reader.d.ts","../../../node_modules/ts-custom-error/dist/custom-error.d.ts","../../../node_modules/@zxing/library/esm/core/exception.d.ts","../../../node_modules/@zxing/library/esm/browser/decodecontinuouslycallback.d.ts","../../../node_modules/@zxing/library/esm/browser/htmlvisualmediaelement.d.ts","../../../node_modules/@zxing/library/esm/browser/videoinputdevice.d.ts","../../../node_modules/@zxing/library/esm/browser/browsercodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserazteccodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserbarcodereader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserdatamatrixcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/multiformatreader.d.ts","../../../node_modules/@zxing/library/esm/browser/browsermultiformatreader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserpdf417reader.d.ts","../../../node_modules/@zxing/library/esm/browser/browserqrcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/encodehinttype.d.ts","../../../node_modules/@zxing/library/esm/browser/browserqrcodesvgwriter.d.ts","../../../node_modules/@zxing/library/esm/browser/htmlcanvaselementluminancesource.d.ts","../../../node_modules/@zxing/library/esm/browser.d.ts","../../../node_modules/@zxing/library/esm/core/argumentexception.d.ts","../../../node_modules/@zxing/library/esm/core/arithmeticexception.d.ts","../../../node_modules/@zxing/library/esm/core/checksumexception.d.ts","../../../node_modules/@zxing/library/esm/core/formatexception.d.ts","../../../node_modules/@zxing/library/esm/core/illegalargumentexception.d.ts","../../../node_modules/@zxing/library/esm/core/illegalstateexception.d.ts","../../../node_modules/@zxing/library/esm/core/notfoundexception.d.ts","../../../node_modules/@zxing/library/esm/core/readerexception.d.ts","../../../node_modules/@zxing/library/esm/core/reedsolomonexception.d.ts","../../../node_modules/@zxing/library/esm/core/unsupportedoperationexception.d.ts","../../../node_modules/@zxing/library/esm/core/writerexception.d.ts","../../../node_modules/@zxing/library/esm/core/invertedluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/writer.d.ts","../../../node_modules/@zxing/library/esm/core/multiformatwriter.d.ts","../../../node_modules/@zxing/library/esm/core/planaryuvluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/resultpointcallback.d.ts","../../../node_modules/@zxing/library/esm/core/rgbluminancesource.d.ts","../../../node_modules/@zxing/library/esm/core/util/system.d.ts","../../../node_modules/@zxing/library/esm/core/common/characterseteci.d.ts","../../../node_modules/@zxing/library/esm/core/util/stringbuilder.d.ts","../../../node_modules/@zxing/library/esm/core/util/stringencoding.d.ts","../../../node_modules/@zxing/library/esm/core/util/charset.d.ts","../../../node_modules/@zxing/library/esm/core/util/arrays.d.ts","../../../node_modules/@zxing/library/esm/core/util/standardcharsets.d.ts","../../../node_modules/@zxing/library/esm/core/util/integer.d.ts","../../../node_modules/@zxing/library/esm/core/common/bitsource.d.ts","../../../node_modules/@zxing/library/esm/core/common/decoderresult.d.ts","../../../node_modules/@zxing/library/esm/core/common/perspectivetransform.d.ts","../../../node_modules/@zxing/library/esm/core/common/gridsampler.d.ts","../../../node_modules/@zxing/library/esm/core/common/defaultgridsampler.d.ts","../../../node_modules/@zxing/library/esm/core/common/detectorresult.d.ts","../../../node_modules/@zxing/library/esm/core/common/globalhistogrambinarizer.d.ts","../../../node_modules/@zxing/library/esm/core/common/gridsamplerinstance.d.ts","../../../node_modules/@zxing/library/esm/core/common/hybridbinarizer.d.ts","../../../node_modules/@zxing/library/esm/core/common/stringutils.d.ts","../../../node_modules/@zxing/library/esm/core/common/detector/mathutils.d.ts","../../../node_modules/@zxing/library/esm/core/common/detector/whiterectangledetector.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/abstractgenericgf.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/genericgfpoly.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/genericgf.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/reedsolomondecoder.d.ts","../../../node_modules/@zxing/library/esm/core/common/reedsolomon/reedsolomonencoder.d.ts","../../../node_modules/@zxing/library/esm/core/datamatrix/datamatrixreader.d.ts","../../../node_modules/@zxing/library/esm/core/datamatrix/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/multi/multiplebarcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/pdf417reader.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/pdf417resultmetadata.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/pdf417/decoder/ec/errorcorrection.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/decoder.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/qrcodereader.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/qrcodewriter.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/errorcorrectionlevel.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/formatinformation.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/ecb.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/ecblocks.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/version.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/mode.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/decodedbitstreamparser.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/decoder/datamask.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/bytematrix.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/qrcode.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/encoder.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/matrixutil.d.ts","../../../node_modules/@zxing/library/esm/core/qrcode/encoder/maskutil.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecreader.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecwriter.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/aztecdetectorresult.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/azteccode.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/encoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/encoder/highlevelencoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/decoder/decoder.d.ts","../../../node_modules/@zxing/library/esm/core/aztec/detector/detector.d.ts","../../../node_modules/@zxing/library/esm/core/oned/onedreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/abstractupceanreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/upceanreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/ean13reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/code128reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/itfreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/code39reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/abstractrssreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/rss14reader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/datacharacter.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/finderpattern.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/expandedpair.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/rssexpandedreader.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/decodedobject.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/decodedinformation.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/generalappiddecoder.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/abstractexpandeddecoder.d.ts","../../../node_modules/@zxing/library/esm/core/oned/rss/expanded/decoders/abstractexpandeddecodercomplement.d.ts","../../../node_modules/@zxing/library/esm/core/oned/multiformatonedreader.d.ts","../../../node_modules/@zxing/library/esm/index.d.ts","../src/ox-input-barcode.ts","../src/ox-buttons-radio.ts","../src/ox-checkbox.ts","../src/ox-select.ts","../../../node_modules/@types/codemirror/index.d.ts","../../../node_modules/@types/codemirror/addon/display/fullscreen.d.ts","../../../node_modules/@types/codemirror/addon/display/autorefresh.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/index.d.ts","../src/ox-input-code.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/index.d.ts","../src/ox-input-file.ts","../src/index.ts","../src/ox-input-container.ts","../src/ox-input-data.ts","../src/ox-input-id.ts","../stories/index.stories.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/get-diffable-html.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff-plugin.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/index.d.ts","../../../node_modules/chai-a11y-axe/chai-a11y-axe-plugin.d.ts","../../../node_modules/chai-a11y-axe/src/accessible.d.ts","../../../node_modules/chai-a11y-axe/index.d.ts","../../../node_modules/@types/chai-dom/index.d.ts","../../../node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinon-chai/index.d.ts","../../../node_modules/@open-wc/testing/register-chai-plugins.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/elementupdated.d.ts","../../../node_modules/lit-html/static.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/renderable.d.ts","../../../node_modules/@open-wc/dedupe-mixin/index.d.ts","../../../node_modules/@open-wc/scoped-elements/types/src/types.d.ts","../../../node_modules/@open-wc/scoped-elements/types/src/scopedelementsmixin.d.ts","../../../node_modules/@open-wc/scoped-elements/types/index.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/fixture-no-side-effect.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/fixture.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/fixturewrapper.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/helpers.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/scopedelementswrapper.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/litfixture.d.ts","../../../node_modules/@open-wc/testing-helpers/types/src/stringfixture.d.ts","../../../node_modules/@open-wc/testing-helpers/types/index.d.ts","../../../node_modules/@open-wc/testing/index.d.ts","../test/property-angle.test.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","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","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},"b5c159239c33d1bcb3d7ca8d24cf9ba1b1579aab80e70fbb0029e374880f2470","12f4cfe2fe60b810c3174537bc2ddb20c1067b7768643d12cb1266fd183afb75","0c8a56610b08f55e29ffb466cd27626ad6dbe822312a398026e82270c63088e3","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","e1f27da204b53766ffc78128f48b89d0aa1fae7ae035649108c69e6362024d6e","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"bb4248c7f953233ac52332088fac897d62b82be07244e551d87c5049600b6cf7","affectsGlobalScope":true},"70f04c91d3186b1b10157157887fab664968fc9b88377785a5ee42750c202c6d","06e20da1bc94df355f22ac7a9533c2488816ec4cb9134d9b160a263629a07072","c311ef8d8b159d0c268b415f78c1949498dc2d14455a9891c5b8ef84625b1e41","f07a77a7fb1d49aa2b61cb68bf712a083487acd7130d20223a83de03af0c257d","97c58f6db61d45712d91d2260994817ae2b568bbb37cc280013079b6b5d2232d","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","9bdb35d0b28dcd5d8f0879bd29f0cf07b7eb48aa63be4dd44057e32fcfeb1c83","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","84610cf09dee3cefc910555318f1ad7b45f1cba36905a86849324ca4fead2385","a25d1e52291791819032826af5c52987e16ffdb96e8bb69f7f1790f5ab080be6","d660961abada6b5030461f3322ef3a2e1d9fec74167574f8b590a7796cf90a72","707b4eae3d469b2f347d2083037151922f94c370a9456ebd5ac0a4fb7441c7e7","aba5c106ed4eb1bfa975407dd5e2628a23bea66fa4f732967fe8a094f7e26c42","110cd552cc0542db72b32f931045b15197fd9c48d720de1c3fe40f682189b6fe","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","4b5bc27818154a8a76974f7302c9a513c6bbb7bf1434058bdfe0de2289db9a6d","ed3eaec34d14d1a2885ed3b0f38846472bff1ff1b3a48ed986f4526f8e694d8c","1b11b56fee3f3edd83819cb01e42296050de80f64d0093c2af5a89ee3c2bfaf0","3f32e3ee286349780b86ec6b256aa893338963f96a499e49eb0e4e0a6dc156f1","1d722bc8901d9cd7e0ee2edf5526bf2bb1dc4e24608b3f3b33d00fec42fbf1b8",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"6f8a00eb51e3ae4f1796640e48bcaf0b5cf4fab2dc53da66f51b5ad361220587","b2fcd8c77e6123c2d1737dc077f33c5460db3aad4ffed97d9b72d0368089a8d4","10cbee260a09cb62cc5516ea65aa7504f21ec98048a324e789d04d40d9057513","77b0b20b0aeafc78f8af2d66bf16a53b91312d6426f5413a574b978cc6edff34","30b7784f26c990da2ab8e2b35c198b84dd1bcfc4ce1936d95baf8be825e44fc8","2aad701dc29df474848186eae9f7f6d68682cd30ccb14b50866e1cdc2deffded","6631d429758aec5beb47de0895a09b57b9a2bb0d3520d3f7e5674c33b886cb32","4b7b8571dbc6ac884882c910549ef6b507c9bf9e721ec4ae5bccb4cb565e7597","de2a52682e3a9ee3c61159a4a6fd74c9e0259692598f33d1d2174f5d8fb18276","ca968be2bebaec29feba08452a2293d0ad2f11b5e70833d99fc6a078844271ea","4363cfdc5eba70c1b06e88653e0a03705558f7f3880083aa639438ef01f367f1","c0b4317958ae42a4e276041687ab95a72668d790b8410939d9924d49776fea40","7664fc0355afe380fdb3c184848e79ef10958c6916305a50bceb06366f9e9019","22fa4f9d3a770310dfcc6c60310288326dfa31b39e32744d660e50a08ef7583f","7a2835f1d73db78aa311398798efbcf07b7029ac18252dfa321d50168f211452","8ded0efd0f64067da4812f14e9d7bb1ed44871c3b87d87564416d93073825f0d","79ba5dfa0abac7e3e7210eb2358f9e6117a46da02446cead1510f32c26eae02e","df5585be736dfb6b7a4f5ef08c5dd8c037858319da3313ed39609b7079980caa","83fd78d3184d150c32740a409c3b4acb1290199490a86f661b43b14ae9314b68","6bd387b615555ec847bcce6eade4de0c271b7b22b17d7e29b837011d4429e164","2effb5dfe6a54053aeb4c21bae08f457c9454b3473a1b65dd7c7a9ec064a1aa2","905d6e6887edf527d56dcda85ae92d065611fccf5c582f2d019123ddc0f2077f","75aa62429356fb3a8ff4c9ff0e9665c67b512351956857a3e1ade1d497e9c149","5ded77dd88437e5e3cb2e6e8c0bd636896e79ecbb4a9876678e3d0ab5e2ea54d","72a8e2f7864e44b864f9b991fcad0a4bc5fabb1aeaad3dc7ee520ccee4f2336e","a193a2944058607c6c094df6487399e4386059280940839af6cf62a634202810","cf3e138268e5bfaed81bf100500da5f257d6883a9e8a0febe431dcc9c128766e","1fe02733949b609bbf88523da8d24a5432b510b2ad0b47ae0c921d680f9f3785","74a0aecf46aa5c2aae9d42cfc0efda7f1e93677474e12471a5864230c6b187a1","96ef505aceedbf3ecfcf69829b4f57f27e3ce72ad6ebcaa05a1da88986b818b8","eec7434894f908a61867fa29b5fe563c14c313cbc35e517ada79f38b44234e37","52a9d9ae376b117459346f324e3c8ec04a0b1e702a000a2c80e9dbd9b43181a2","17b29959c0ac60d28af819d0d3d7106c9dfe5acefe5c820ea7145e5d27455702","49d95d1f1707e80483ae4a3313103a1d76a4d105f3b0e3cf410c474b7c5cc358","f369c01bc64fc7d8ce1751065c384df2f81a89deb224c24eabb4e8465ee6181d","c6bbc353e7bca0574458f0dcadfe84e56e48ec1d38475b4254c1d4619bfd47c1","4c90f3b801c6aec975c0497b9e9ff8ff1ad903fb74e6e8aaadb240dd85612bb8","d11f0b5dae80f2e5e02f34c4aa58650492ccb45651b6f83f10eaf10dfe565a65","49bc024e5a1fea90b26a1f41fd75982d9f68f40444b568a91ad1202691cd882d","4b2ea4e544b830a25240b3982d735fbd6f4da8ea7af4caee3906809cb0c892fb","e5029039ae5dd970ab70bd67cc03085f17420e89e365c684921e45cc2b7f9c0a","099d5cbe09f4ecd7529764502da2a91e819d48e1b8f53e3b9954dbf9fdcd2d67","521e4e920ab7109fea500cc2f9dd48457a30b46f574b35c52bc6bd2533cd902f","f24dc27c51a5dfcd6383f001099843ce5234dac65a8de5477b5bd43c68d789e7","d1b2ba9156610a5413143169dcdb67530665b4c97da01e849c4e39560a028d11","67d0899181e8542bb2408b0a4d4be47628290ba39e3510b00569891c6bef8105","1a51bc00ba287a98d010ba68dacf22e81e801c27d5f605dc53562d9db76e16db","5b71a4c0fa3233daf8025104788f9f6046859ddb0fb96beb59fc0ff9fb42c113","0438101968a30ea0799bf28609d56a45446268eb08a2606c737104b9a2e479c5","dfae624810dcaa58acf29dea53d0c4b0626e50822668b0f25b92769d0d4a0c11","159d5123c12f8ea94d929fca14851cd1cf625e2c5778119df4d167265b11addb","8cd5018ac1e7d47f19f3b56af074d2aadb80a3cc0cfd42f40419405c3131f405","a7e4a92ed0a90cbdc3f944fac43a367abc2713abaeca4a1b0ac84e35bedd702d","072caf3382317f29871e8c1f22e6620252ead6c3245e118c0953dabc5a3e79f0","0e6d04a687ffc80745939bef70f2964dd4699895aeae3cb8076a2ff18cde1c67","043d1f68840d7ad109fcea422c34e0096da930d820a2987a67bc8dec11387463","265b6fbbe296b6ace3e92eaee48813c809890f90eef7c389e44997e652c8a94f","09a6cf0a1646f4fe8956b5a9ed2334d5bce973d2f074abb61a39e09cd620399d","c3394d3bc25404895e11fba6517b477f992321aeadd20338cd541721af8e1684","329c0ab9af33a87e502c718b5301cb114a5547a1fc5d55597128adb9aec1e25e","69db0dfb6ec9dcba5a31b99bfc5da74b6d86fca50013cc15bb072c4c97acc4d6","188c2128b909024fd07ff82a308638b13eb02056454d6aec0094656f5b60b0ab","59e626908ec84b90ab62d7704f406739956afa6a124f37776a7fbf3d523d31af","3bf62235efe93ed4f9b18799351c890d7eee5d7ac118b33d5ec717070437fb86","aa02ea4ce88d834274306d2e8d72b6f2457777255c1de2a021a922540f3c201b","a2c581e82777c45b07521fb39e06e50681da78b927df93495313657b0a2abd49","a2ff4870a55c9dfa028c2f5e774f647594bd0a1036388c39562bd3a81eb08631","5f14ef223c9097662dd86d19dc13aa1772524f2689596df3d324b9a08099ad0c","303680856c75fdbc2d4616f29d6e5adfa9837c091119f85482cf0123d4688bd4","8ac1fb455c5f42a895c9d1b6a7ad53d6e72e8bd024a2376c7743914e6c3db1c5","e7fbfe161d7591aff2fac724dc3729d6f2c10a2368a1accc79619f56273c6d45","945c700e5c5283839f32fb02129ffa233843afdc7a31335225a622edaa4dcd29","374251a9579548076b559ae27d07e08c1fa150d7934fe9629cc649fee99751ef","a8b40e76e9b2870e9693abc3a52135e80c5c95b9bad4bb5c7e756cb68be0dee6","ef63d901eaee2e8c25fd006bd0ad13ff7821de4bc07de674ae5eee8748001451","247d025ea65b8d07f3f595af46f3e6d3c84bfe6c80f80ee77df1f22d814c132d","3fcb9d41be6137cf2c3684aef7d6ea8d934132644bf8044d0ebc24c680939e19","bd4db5efc9930a4eb2e9e6af8f55cba031045b7b6adc5818f279d38ef56d682c","e2b6c1237496328b2d3ebea48fbaa9c82c51bfdce47afc4f6003422f14cfafad","d454863b6e7022253e0d60c1051defee04d65d9de7f5c5a11e2b84e33909fe4b","bc71c29d055581143051f3a90604c52c368ee2ee97e3e66a168a24c753ed5a60","363a8db8015eaf382dd76f42989a3d6165edfc0e1fca60d77db0ac2b79241426","1202fbf37dbdfaf0faf85a0fafd4db2e0ff07b42a70806d0368ce8a36a8afec2","d1a49dba3e7721d1ce3de321c5dc40b5ba3b2d6316f7fc40d2f95df452334d96","2c143e4b22580d2879718195322d52c02461dc99f43846a99892692e4f81f078","096a1da32dbc90e00d67f1d1f0ae52db2e327102be4b60ee0faa8dccba81e684","7549a814a3e01a21cd235f43029ed0f4e3a2d5085224316376bb91a1779de313","57d40f1e6a5f377677409cd1875551883b7de268be69f942622244163ea89d01","2e761e410969234950ab430f9ca58b6ed417f1014c55fc73f638523fa5eec1d6","94c9d56b441f206fa84f13e8022bd0abae326f6d8db96b08e2c1aafe3f90544e","0b5fa0c440935532611416f9a923f9278601d600e10cc3feaa55da332f50f6ac","8a0b458916a1fe3aeb3cb7d118bf191ff1e9aec2d26177660e64241d677db1e0","bf12ca57a5d03135c31d3f88c269740c7d2658664f15d6495c219b1bb23a99da","9c40be3c5a7920b744d14112ff3168ab5e5609699b8c1d91ecb709ac168324a5","cb28f2fc4172aa0541ba7bf189603f96897a951a46c4be3d91acf9de9a1710e8","6994c5b35689135e820f563d5763e3336930ffa439d895a3ec27025702ccedfd","91dc8b7c4593713c8aeff12732e13f9d1eb94f5caee9a1496660f831f465835d","1bb2c6539020bcac5f3e2983a84a6e0076d68df0167d99a29bae9fc11e3ea691","e4b0ad22784b73f2e6bcf955628e6dbb114bae5b003d40b1ee19356e18daad7a","df45b75ada5c8beceb3e913364c7a3729011dc172b68adf5189d4fae5625ad7d","97b2a12f44fb5a8efd00ab46d37d6637167746c7c0d88c5b5728a34aa3b663a5","2c52dbe7f60e8b2887d17877c1b04677f1d945b18b4fb3e7befbd1489de51e83","f3bd3b4bd312efbff3978a3fd9952e2eadeacc7d01cbd1bc01e72786e502aa16","95b063b28e6ed861e34899447c68932aa51b840edaf7cda213ac61920766271c","4710c48d307d5ccdbea5c12e20c0ba27870411d86ad563918d4c0aeb0fce3b57","c5880f64e301e74076d017ee185c9a528e5a68ed93f305fbf6d7618b7d21c29f","b97b7560517f2f4a070415909c98ddcb1e1d8f3346db990d496856fcdfcde648","15e2f96f7a8e64937eb0624b04513a9fed7f7c71aa7875208ee9e31958588624","6f5867d484ac5f717347328137c1a35563380e2c1d8e1d38beb8767c90bb5705","218e1b7c38cd5b9af46b904a728f0cc15828d9290d9adc6a5fc220f6069df988","88b74310f700fd92c9d3f11626878f3664449dd7dc007115a41cf746a9757e1c","3407d5883afea5c8fac9c3a74fedec806913b960644117e9710a239d85185fe1","7a028e36ec10c5bb3ee2e21fc938f1a44aa1b7af9981eff947da64f421b99445","6c056acd7733f0c09d1c3109ea627677dbf0eb260ef79f2797d588d85a8af1aa","ebe4587bd35138be18fec2050ffe7eed63d642fa0b674bb07e92f919fabcdea8","5d1d8f471bfda5e91090380b191a1e4d44911cf0bb51f69ce61632ec1a6a7399","0b35ba65af6e6196d22ee4a184f42512b7af1b4489b4fc5dbe9dd6d36b8097d8","232aa18921769b316d6a022c776669ea28a0250a98223841e521d9c3d9920a22","394bc17919e4dbb56443f11a7cbf610b7b07384423f9725c14d990920367b06b","17830ef73e50e330c120038947bc61ef1725178b58b9564dd9dcac5b51a6ac0c","b054669f7056c4fdb7cdf764b1977917f40f820d7f33bbc1f6b616e46b531ad6","1409e4c2241622af1a067634caff699d7d03adb5e8fd401c3f11d07214c49ec2","eae212ef0acce305594fb9cba149892dd9945cb58c0f72d0051557804b8a1af5","ccc9538f2696fa6720ccb26c05b9545e1a6236139670a9c919047aa6459456ef","e3d762cc49c25e02cd10873d944e12339185883485eca1b40e9cc0d0e063be63","437597745a84ace9638ed90cbff9abf5229131dc1d69ebfc6b19e0009577eb22","b4a7210846055640fdccdf888dc7ba266cc82549fc95ab05cdfff7cc9dd65bf1","b56f1ca0eefb2bec05660ac3d9c61f853ddd749720a6360400c95ac8c8705979","c832fc88620a405cea01b93fd8a68625d80596ea34454e2fc5b6f6271c09f05a","2a404d8d2f06b572ee0d103996bbe621be1419dfe6a2f3c2ce49a0c2e3804bb7","4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","1fd68353565ef4a5cc3241c0ef3a1ec4b33b17d60c76a78e0e7c05a73754e261","5765852c2905e4328a2ad6dd4f478d5554d3e760c510c3a600a6284d7e4df62c","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","febb5691a598727bcb191c778d7ae161f0a94c83b234667afb74a5dfc86c2a8b","8798e0394f5fa8da8fdf6f5fb4a13ce8888a6871bedfb206fa5d6828699ddb7a","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","6d1f118cfbf15c813f578cf6b87da76d075698bf7db964cb7c3d75f0309652f7","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","c4580611138dae755b6893fc64b32c78bdcdb07702472c4e86547c91dd827ded","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","7179b6924a816d72bf206803d8cdc27ccc14f02f2d4f4145d5183eb083f5bf17","3b49bcc63732e807dade9b034cd15382b0a357ceb1c2c3b8bfd26d4bfb3a3b65","83f21193493204ccae662bf861156497a97032186e2c8b8eaeea14314fadfb9c","29c061e6b4a17961727b526a303fc227c16b43213cbe59c1af576084b99e71be","66b7aa4316b2d1335ec70b9ad03cd32061a5acb768eb9ec951f95ab87174a01f","e06e78b53bb3ee3b50937d8d80062a63edcd8a28e9228232806c5afcac6875a6","97666f02db33e95fce021d301bcd8070588142e33c366781148befcaef5a3a2b","0946b931e443fe1d97ec8d4e4b3d04e0011f04d4f0d9ba19355c8572b056e5b9",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},"8a659f7d82d932649a78f89643c5b436953424a219d705d49b8b3d9ccd6e35ff",{"version":"75cd6dce1c5f87511772c891de86d0c9e6829e6273dea9f92a5bec9d0479d1e7","affectsGlobalScope":true},{"version":"cd711db43a952f15464b571ac11b7a440332cd52342bc92c4bf908c70688f57f","affectsGlobalScope":true},"9d8709c916778cb34830708ed47b78e9a46d1fb2eb73a682b14eee990bed4aa6",{"version":"5d90911f942229eb9049feab241739a5ced76f137948f8f42a615e5f01d4e7ea","affectsGlobalScope":true},"999a90d30a3183dcee987d0a5a7c586aba5bacbf6ce087ba8635124082ccfeea","8a5878edd52f4a720560b4c6e6247e9ddc3df6118ad9cf2f9927903b03d5f440",{"version":"d95d76d79a0351572ec5b1a6cc1e5c4bce1be82eedeed7278d6f31ea1059fa69","affectsGlobalScope":true},"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"65b91a3725399231d3469529b5e27b85bf2aa98013e607f308e5fe260b47eeff","a11181f6d68200e83ccb1fb48b262a7132a3257e0a230f41c9dc4c351964297a","fb2e6b33c4f8332c524dcf99f37fe5bfadccf9bc2f09fcd32eb802b4048bd6e4","d58f29ef032a92da0196fc9304889d8993e2503fb2713b8c1f97808a87d45f8b","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"aa087ee31af7d286efa149c9660a8fa1d0908cb72c980f129a30a6bd1063c696","affectsGlobalScope":true},"c7b2b6f36bb88832616cf257bc19b42096cfa94d76114b3fa9e57563fffddb49","fdf0aa1a72ff0188a9013926201a391116ef6701cd439b89850786abdf755fb8","5f3d348a3a6978dc5ff85ea97be65e41a21884d078bfdec5a588940639fd7fc5","abf9ea97b78a7b239186cf5b7ed59c4a593abac3c408c8c95fc5e604cfdfdb43","ae91c9161caf0af81c89e780a045fc5ea8382407e516342e409c5db9161d3b32","2c387828a523cc77a4300f5deb063651c9346c5a36ccfbfc127c38df8ab45b0c","e6a731551b57eb0f9fe5dde97ce2cf02f57d99cf7d7e06b916111c7a07c30abc","4a662115c4c7186cc027ef4a8163e48c7f1c57f05247f08d5acb2344fae2ca53","d598157512ae6e0d3aa6bb0dd261ae34845831dccf7bc7739695ee2589eb76f5","c523db72c97b64fb4afe53e79cd7a2b062bacc36b1d0b29c9686f71c05d4409c","d2173e08898108c0aaa6dbfed27725b4a71f5817153800c86f03fa06456a2fc7","f8ae73984bf315d8246e3a10756398c435d57ef21a44f1b76b2a40c095045c99","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","fce6a1a1553ff7d54ffb8bb3ae488c9cb5f2f4f4e52212c1abe40f544819ef35","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"267af67ea520cabd16402522756b19ac63d9e2c1c86e7c4d1ddeb991c32e12c9",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":99,"useDefineForClassFields":false},"fileIdsList":[[294],[44,294],[51,294],[44,51,294],[44,51,59,294],[42,43,294],[50,294],[239,294],[44,237,238,294],[44,237,294],[221,222,294],[223,294],[222,224,294],[234,235,242,243,244,246,247,294],[236,240,294],[241,294],[237,294],[236,241,245,294],[236,294],[221,233,248,294],[225,228,229,232,294],[221,294],[198,199,294],[198,200,294],[251,294],[254,294],[255,260,294],[256,266,267,274,283,293,294],[256,257,266,274,294],[258,294],[259,260,267,275,294],[260,283,290,294],[261,263,266,274,294],[262,294],[263,264,294],[265,266,294],[266,294],[266,267,268,283,293,294],[266,267,268,283,294],[269,274,283,293,294],[266,267,269,270,274,283,290,293,294],[269,271,283,290,293,294],[251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300],[266,272,294],[273,293,294],[263,266,274,283,294],[275,294],[276,294],[254,277,294],[278,292,294,298],[279,294],[280,294],[266,281,294],[281,282,294,296],[266,283,284,285,294],[283,285,294],[283,284,294],[286,294],[287,294],[266,288,289,294],[288,289,294],[260,274,283,290,294],[291,294],[274,292,294],[255,269,280,293,294],[260,294],[283,294,295],[294,296],[294,297],[255,260,266,268,277,283,293,294,296,298],[283,294,299],[221,231,294],[230,294],[45,294],[86,87,88,89,90,91,92,94,95,96,98,99,294],[89,294],[78,89,294],[77,78,82,83,86,87,88,294],[77,78,82,89,93,294],[97,294],[82,85,294],[72,294],[85,294],[75,79,131,294],[77,78,82,83,294],[74,75,80,97,113,294],[127,168,294],[75,79,168,294],[74,75,294],[73,74,169,294],[73,294],[72,73,75,294],[73,75,76,294],[73,74,294],[75,128,129,294],[75,79,294],[72,73,75,76,294],[75,128,294],[129,294],[72,75,76,132,294],[138,139,294],[138,294],[140,294],[74,78,119,122,294],[127,294],[84,294],[77,78,82,294],[75,80,97,113,294],[73,74,78,82,174,294],[73,78,82,174,294],[73,80,176,294],[73,77,78,82,83,294],[174,294],[73,189,294],[73,190,294],[187,294],[73,120,188,294],[183,184,294],[73,78,82,181,183,184,185,294],[79,294],[73,78,82,181,294],[73,78,82,175,294],[74,127,147,294],[74,294],[77,78,82,83,145,294],[75,294],[78,127,153,157,294],[75,78,127,294],[155,294],[153,294],[157,294],[75,153,156,294],[73,97,153,157,158,162,294],[161,294],[73,153,157,161,294],[153,157,158,161,294],[77,78,82,83,150,294],[79,80,81,294],[72,112,294],[119,294],[74,119,294],[75,80,97,294],[72,73,75,76,77,78,79,80,81,82,83,85,93,97,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,135,136,137,139,140,141,142,143,144,146,147,148,149,151,152,153,154,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,177,178,179,180,182,186,190,191,192,294],[227,294],[226,294],[44,48,294],[48,294],[46,47,294],[52,53,54,55,56,57,58,59,60,294],[44,48,49,294],[41,62,63,64,65,194,195,196,197,207,215,294],[41,50,61,62,294],[41,50,61,294],[41,50,61,62,63,294],[41,50,61,62,71,193,294],[40,41,50,61,62,198,199,200,206,294],[41,50,61,67,71,294],[41,50,61,62,207,294],[41,50,61,62,67,206,214,294],[41,50,61,62,67,71,294],[41,50,294],[41,50,63,249,294],[66,68,69,70,294],[48,50,66,67,294],[48,50,66,294],[48,50,69,294],[48,50,294],[201,202,203,204,205,294],[208,209,210,211,212,213,294]],"referencedMap":[[42,1],[51,2],[52,3],[55,4],[53,4],[57,4],[60,5],[59,1],[58,4],[56,4],[54,3],[43,1],[44,6],[67,7],[237,1],[240,8],[239,9],[238,10],[223,11],[224,12],[222,1],[225,13],[248,14],[234,1],[241,15],[242,16],[243,1],[244,17],[246,18],[236,7],[245,19],[247,16],[249,20],[233,21],[230,1],[229,22],[221,1],[200,23],[199,24],[198,1],[302,1],[251,25],[252,25],[254,26],[255,27],[256,28],[257,29],[258,30],[259,31],[260,32],[261,33],[262,34],[263,35],[264,35],[265,36],[266,37],[267,38],[268,39],[253,1],[300,1],[269,40],[270,41],[271,42],[301,43],[272,44],[273,45],[274,46],[275,47],[276,48],[277,49],[278,50],[279,51],[280,52],[281,53],[282,54],[283,55],[285,56],[284,57],[286,58],[287,59],[288,60],[289,61],[290,62],[291,63],[292,64],[293,65],[294,66],[295,67],[296,68],[297,69],[298,70],[299,71],[232,72],[231,73],[46,74],[45,1],[100,75],[90,76],[91,77],[89,78],[92,76],[94,79],[95,76],[96,76],[98,80],[86,81],[99,82],[87,1],[88,1],[101,83],[102,83],[168,84],[166,85],[167,86],[172,87],[173,88],[169,89],[170,90],[171,91],[80,1],[76,92],[77,93],[103,83],[73,1],[75,94],[126,1],[119,1],[127,1],[130,95],[136,1],[137,96],[131,96],[132,97],[129,98],[133,99],[134,100],[128,1],[138,1],[140,101],[139,102],[141,103],[142,103],[135,104],[143,85],[144,105],[78,1],[97,1],[85,106],[104,83],[105,83],[106,83],[112,82],[72,1],[145,107],[93,85],[114,108],[107,83],[175,109],[178,110],[180,110],[177,111],[179,110],[192,110],[174,112],[181,113],[183,1],[190,114],[191,115],[188,116],[187,1],[189,117],[185,118],[186,119],[184,120],[182,121],[176,122],[148,123],[149,124],[146,125],[147,1],[115,82],[160,126],[159,127],[150,128],[155,1],[156,129],[153,1],[154,130],[158,131],[157,132],[161,1],[163,133],[165,134],[164,135],[162,136],[151,137],[152,108],[83,107],[108,83],[109,83],[82,138],[81,1],[79,124],[116,120],[117,139],[110,83],[123,124],[122,140],[125,1],[124,140],[120,141],[121,140],[118,1],[113,142],[111,83],[74,1],[193,143],[226,22],[228,144],[227,145],[49,146],[47,147],[48,148],[235,147],[61,149],[50,150],[84,1],[41,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[38,1],[34,1],[35,1],[36,1],[37,1],[1,1],[39,1],[40,1],[216,151],[195,152],[196,152],[62,153],[64,154],[63,152],[194,155],[207,156],[217,157],[218,158],[215,159],[219,152],[65,152],[197,160],[220,161],[250,162],[71,163],[68,164],[69,165],[70,166],[66,167],[205,1],[201,7],[206,168],[202,7],[203,7],[204,7],[210,1],[209,1],[213,1],[214,169],[211,1],[208,1],[212,1]],"exportedModulesMap":[[42,1],[51,2],[52,3],[55,4],[53,4],[57,4],[60,5],[59,1],[58,4],[56,4],[54,3],[43,1],[44,6],[67,7],[237,1],[240,8],[239,9],[238,10],[223,11],[224,12],[222,1],[225,13],[248,14],[234,1],[241,15],[242,16],[243,1],[244,17],[246,18],[236,7],[245,19],[247,16],[249,20],[233,21],[230,1],[229,22],[221,1],[200,23],[199,24],[198,1],[302,1],[251,25],[252,25],[254,26],[255,27],[256,28],[257,29],[258,30],[259,31],[260,32],[261,33],[262,34],[263,35],[264,35],[265,36],[266,37],[267,38],[268,39],[253,1],[300,1],[269,40],[270,41],[271,42],[301,43],[272,44],[273,45],[274,46],[275,47],[276,48],[277,49],[278,50],[279,51],[280,52],[281,53],[282,54],[283,55],[285,56],[284,57],[286,58],[287,59],[288,60],[289,61],[290,62],[291,63],[292,64],[293,65],[294,66],[295,67],[296,68],[297,69],[298,70],[299,71],[232,72],[231,73],[46,74],[45,1],[100,75],[90,76],[91,77],[89,78],[92,76],[94,79],[95,76],[96,76],[98,80],[86,81],[99,82],[87,1],[88,1],[101,83],[102,83],[168,84],[166,85],[167,86],[172,87],[173,88],[169,89],[170,90],[171,91],[80,1],[76,92],[77,93],[103,83],[73,1],[75,94],[126,1],[119,1],[127,1],[130,95],[136,1],[137,96],[131,96],[132,97],[129,98],[133,99],[134,100],[128,1],[138,1],[140,101],[139,102],[141,103],[142,103],[135,104],[143,85],[144,105],[78,1],[97,1],[85,106],[104,83],[105,83],[106,83],[112,82],[72,1],[145,107],[93,85],[114,108],[107,83],[175,109],[178,110],[180,110],[177,111],[179,110],[192,110],[174,112],[181,113],[183,1],[190,114],[191,115],[188,116],[187,1],[189,117],[185,118],[186,119],[184,120],[182,121],[176,122],[148,123],[149,124],[146,125],[147,1],[115,82],[160,126],[159,127],[150,128],[155,1],[156,129],[153,1],[154,130],[158,131],[157,132],[161,1],[163,133],[165,134],[164,135],[162,136],[151,137],[152,108],[83,107],[108,83],[109,83],[82,138],[81,1],[79,124],[116,120],[117,139],[110,83],[123,124],[122,140],[125,1],[124,140],[120,141],[121,140],[118,1],[113,142],[111,83],[74,1],[193,143],[226,22],[228,144],[227,145],[49,146],[47,147],[48,148],[235,147],[61,149],[50,150],[84,1],[41,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[30,1],[31,1],[32,1],[33,1],[7,1],[38,1],[34,1],[35,1],[36,1],[37,1],[1,1],[39,1],[40,1],[216,151],[195,152],[196,152],[62,153],[64,154],[63,152],[194,155],[207,156],[217,157],[218,158],[215,159],[219,152],[65,152],[197,160],[220,161],[250,162],[71,163],[68,164],[69,165],[70,166],[66,167],[205,1],[201,7],[206,168],[202,7],[203,7],[204,7],[210,1],[209,1],[213,1],[214,169],[211,1],[208,1],[212,1]],"semanticDiagnosticsPerFile":[42,51,52,55,53,57,60,59,58,56,54,43,44,67,237,240,239,238,223,224,222,225,248,234,241,242,243,244,246,236,245,247,249,233,230,229,221,200,199,198,302,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,253,300,269,270,271,301,272,273,274,275,276,277,278,279,280,281,282,283,285,284,286,287,288,289,290,291,292,293,294,295,296,297,298,299,232,231,46,45,100,90,91,89,92,94,95,96,98,86,99,87,88,101,102,168,166,167,172,173,169,170,171,80,76,77,103,73,75,126,119,127,130,136,137,131,132,129,133,134,128,138,140,139,141,142,135,143,144,78,97,85,104,105,106,112,72,145,93,114,107,175,178,180,177,179,192,174,181,183,190,191,188,187,189,185,186,184,182,176,148,149,146,147,115,160,159,150,155,156,153,154,158,157,161,163,165,164,162,151,152,83,108,109,82,81,79,116,117,110,123,122,125,124,120,121,118,113,111,74,193,226,228,227,49,47,48,235,61,50,84,41,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,40,216,195,196,62,64,63,194,207,217,218,215,219,65,197,220,250,71,68,69,70,66,205,201,206,202,203,204,210,209,213,214,211,208,212]},"version":"4.5.4"}
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"description": "Webcomponent property-editor following open-wc recommendations",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": "heartyoh@hatiolab.com",
|
6
|
-
"version": "0.3.
|
6
|
+
"version": "0.3.9",
|
7
7
|
"main": "dist/src/index.js",
|
8
8
|
"module": "dist/src/index.js",
|
9
9
|
"publishConfig": {
|
@@ -43,9 +43,9 @@
|
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
45
|
"@material/mwc-icon": "^0.25.3",
|
46
|
-
"@operato/popup": "^0.3.
|
47
|
-
"@operato/styles": "^0.3.
|
48
|
-
"@operato/utils": "^0.3.
|
46
|
+
"@operato/popup": "^0.3.9",
|
47
|
+
"@operato/styles": "^0.3.9",
|
48
|
+
"@operato/utils": "^0.3.9",
|
49
49
|
"@zxing/library": "^0.18.6",
|
50
50
|
"codemirror": "^5.64.0",
|
51
51
|
"lit": "^2.0.2"
|
@@ -83,5 +83,5 @@
|
|
83
83
|
"prettier --write"
|
84
84
|
]
|
85
85
|
},
|
86
|
-
"gitHead": "
|
86
|
+
"gitHead": "d63971adcea045ccd788ff4ae5b9e2ca561bb754"
|
87
87
|
}
|
package/src/ox-buttons-radio.ts
CHANGED
package/src/ox-checkbox.ts
CHANGED
@@ -73,6 +73,7 @@ export class OxCheckbox extends OxFormField {
|
|
73
73
|
|
74
74
|
@property({ type: Boolean, attribute: 'checked', reflect: true }) checked: boolean = false
|
75
75
|
@property({ type: Boolean }) disabled: boolean = false
|
76
|
+
@property({ type: Boolean, attribute: 'indeterminate' }) indeterminate: boolean = false
|
76
77
|
|
77
78
|
@state() _hasInner: boolean = !!this.innerHTML.trim().length
|
78
79
|
|
package/src/ox-form-field.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { LitElement } from 'lit
|
1
|
+
import { LitElement } from 'lit'
|
2
2
|
import { property } from 'lit/decorators.js'
|
3
3
|
|
4
4
|
export abstract class OxFormField extends LitElement {
|
@@ -31,6 +31,18 @@ export abstract class OxFormField extends LitElement {
|
|
31
31
|
}
|
32
32
|
|
33
33
|
protected appendFormData({ formData }: FormDataEvent): void {
|
34
|
-
|
34
|
+
if (!this.name) return
|
35
|
+
|
36
|
+
var values = this.value
|
37
|
+
if (!(values instanceof Array)) {
|
38
|
+
values = [this.value]
|
39
|
+
}
|
40
|
+
|
41
|
+
values.forEach((value: any) => {
|
42
|
+
formData.append(
|
43
|
+
this.name!,
|
44
|
+
typeof value === 'string' ? value : value === undefined || value === null ? '' : JSON.stringify(value)
|
45
|
+
)
|
46
|
+
})
|
35
47
|
}
|
36
48
|
}
|
package/src/ox-input-3dish.ts
CHANGED
@@ -177,8 +177,4 @@ export class OxInput3Dish extends OxFormField {
|
|
177
177
|
<ox-input-angle id="rz" .value=${this.rotate?.z}></ox-input-angle>
|
178
178
|
`
|
179
179
|
}
|
180
|
-
|
181
|
-
protected appendFormData({ formData }: FormDataEvent): void {
|
182
|
-
this.name && formData.append(this.name, JSON.stringify(this.value))
|
183
|
-
}
|
184
180
|
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
import { css, html } from 'lit'
|
2
|
+
import { customElement, property, state } from 'lit/decorators'
|
3
|
+
|
4
|
+
import { OxFormField } from './ox-form-field'
|
5
|
+
|
6
|
+
@customElement('ox-input-id')
|
7
|
+
export class OxInputId extends OxFormField {
|
8
|
+
static styles = css`
|
9
|
+
:host {
|
10
|
+
position: relative;
|
11
|
+
display: inline-flex;
|
12
|
+
align-items: center;
|
13
|
+
justify-content: flex-end;
|
14
|
+
}
|
15
|
+
|
16
|
+
input {
|
17
|
+
width: 100%;
|
18
|
+
height: 100%;
|
19
|
+
box-sizing: border-box;
|
20
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
21
|
+
}
|
22
|
+
`
|
23
|
+
|
24
|
+
@property({ type: Object }) property: { component?: string } | null | undefined
|
25
|
+
|
26
|
+
@state() _ids: Array<string> = []
|
27
|
+
|
28
|
+
render() {
|
29
|
+
const ids = this._ids || []
|
30
|
+
|
31
|
+
return html`
|
32
|
+
<input
|
33
|
+
id="text"
|
34
|
+
type="text"
|
35
|
+
.value=${this.value || ''}
|
36
|
+
@focusin=${(e: FocusEvent) => this._onInputFocused(e)}
|
37
|
+
@change=${(e: InputEvent) => this._onInputChanged(e)}
|
38
|
+
.placeholder=${this.getAttribute('placeholder') || ''}
|
39
|
+
list="ids"
|
40
|
+
/>
|
41
|
+
|
42
|
+
<datalist id="ids">${ids.map(id => html` <option value=${id}></option> `)}</datalist>
|
43
|
+
`
|
44
|
+
}
|
45
|
+
|
46
|
+
_onInputFocused(e: FocusEvent) {
|
47
|
+
var { component } = this.property || {}
|
48
|
+
|
49
|
+
document.dispatchEvent(
|
50
|
+
new CustomEvent('get-all-scene-component-ids', {
|
51
|
+
detail: {
|
52
|
+
component,
|
53
|
+
callback: (ids: string[]) => {
|
54
|
+
this._ids = ids
|
55
|
+
}
|
56
|
+
}
|
57
|
+
})
|
58
|
+
)
|
59
|
+
}
|
60
|
+
|
61
|
+
_onInputChanged(e: InputEvent) {
|
62
|
+
e.stopPropagation()
|
63
|
+
|
64
|
+
this.value = (e.target as HTMLInputElement).value
|
65
|
+
|
66
|
+
this.dispatchEvent(new CustomEvent('change', { bubbles: true, composed: true }))
|
67
|
+
}
|
68
|
+
}
|
package/src/ox-input-stack.ts
CHANGED
package/src/ox-select.ts
CHANGED
@@ -98,15 +98,14 @@ export class Select extends OxFormField {
|
|
98
98
|
|
99
99
|
if (popupList) {
|
100
100
|
popupList.style.width = `${this.offsetWidth}px`
|
101
|
+
const align = popupList.hasAttribute('align-left') ? 'left' : 'right'
|
101
102
|
|
102
|
-
|
103
|
+
const props = {
|
103
104
|
top: this.offsetHeight,
|
104
|
-
|
105
|
-
}
|
106
|
-
}
|
107
|
-
}
|
105
|
+
[align]: 0
|
106
|
+
}
|
108
107
|
|
109
|
-
|
110
|
-
|
108
|
+
popupList.open(props)
|
109
|
+
}
|
111
110
|
}
|
112
111
|
}
|