@things-factory/scene-visualizer 6.0.0-alpha.8 → 6.0.0-zeta.1
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.
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import '@operato/i18n/ox-i18n.js'
|
|
2
|
+
|
|
1
3
|
import { css, html } from 'lit'
|
|
2
4
|
|
|
3
5
|
import { OxPropertyEditor } from '@operato/property-editor'
|
|
@@ -161,10 +163,10 @@ export default class LocationIncreasePatternEditor extends OxPropertyEditor {
|
|
|
161
163
|
// TODO: background image change to use the url-loader
|
|
162
164
|
return html`
|
|
163
165
|
<fieldset fullwidth>
|
|
164
|
-
<legend><i18n
|
|
166
|
+
<legend><ox-i18n msgid="label.location-increase-pattern">Increase Pattern</ox-i18n></legend>
|
|
165
167
|
|
|
166
168
|
<div class="property-grid">
|
|
167
|
-
<label> <i18n
|
|
169
|
+
<label> <ox-i18n msgid="label.start-section">Start Section</ox-i18n> </label>
|
|
168
170
|
<input
|
|
169
171
|
type="number"
|
|
170
172
|
data-start-section
|
|
@@ -172,7 +174,7 @@ export default class LocationIncreasePatternEditor extends OxPropertyEditor {
|
|
|
172
174
|
@change=${e => (this.startSection = e.target.valueAsNumber)}
|
|
173
175
|
/>
|
|
174
176
|
|
|
175
|
-
<label> <i18n
|
|
177
|
+
<label> <ox-i18n msgid="label.start-unit">Start Unit</ox-i18n> </label>
|
|
176
178
|
<input
|
|
177
179
|
type="number"
|
|
178
180
|
data-start-unit
|
|
@@ -183,7 +185,7 @@ export default class LocationIncreasePatternEditor extends OxPropertyEditor {
|
|
|
183
185
|
<div class="checkbox-row" fullwidth>
|
|
184
186
|
<input id="skip-numbering" type="checkbox" data-skip-numbering ?checked="${this.skipNumbering}" />
|
|
185
187
|
<label for="skip-numbering">
|
|
186
|
-
<i18n
|
|
188
|
+
<ox-i18n msgid="label.skip-numbering">Skip Numbering</ox-i18n>
|
|
187
189
|
</label>
|
|
188
190
|
</div>
|
|
189
191
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/scene-visualizer",
|
|
3
3
|
"description": "The visualizer component for things-scene.",
|
|
4
|
-
"version": "6.0.0-
|
|
4
|
+
"version": "6.0.0-zeta.1",
|
|
5
5
|
"things-scene": true,
|
|
6
6
|
"browser": "src/index.js",
|
|
7
7
|
"author": "heartyoh <heartyoh@hatiolab.com>",
|
|
8
|
-
"license": "MIT",
|
|
9
8
|
"publishConfig": {
|
|
10
9
|
"access": "public",
|
|
11
10
|
"@things-factory:registry": "https://registry.npmjs.org"
|
|
@@ -17,8 +16,8 @@
|
|
|
17
16
|
},
|
|
18
17
|
"dependencies": {
|
|
19
18
|
"@hatiolab/things-scene": "^3.0.23",
|
|
20
|
-
"lit": "^2.
|
|
19
|
+
"lit": "^2.4.0",
|
|
21
20
|
"three": "^0.122.0"
|
|
22
21
|
},
|
|
23
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "1115c43f6cd7d271c7cbbf5f6fb87658507c4296"
|
|
24
23
|
}
|
package/LICENSE.md
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) Hatiolab
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|