@operato/scene-i18n 2.0.0-alpha.0 → 2.0.0-alpha.10
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +54 -0
- package/dist/label.d.ts +2 -2
- package/dist/label.js +2 -2
- package/dist/label.js.map +1 -1
- package/package.json +5 -5
- package/schema.graphql +3966 -0
- package/src/label.ts +2 -2
- package/translations/en.json +1 -0
- package/translations/ja.json +7 -0
- package/translations/ko.json +1 -0
- package/translations/ms.json +5 -4
- package/translations/zh.json +5 -4
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,60 @@
|
|
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
|
+
## [2.0.0-alpha.10](https://github.com/things-scene/operato-scene/compare/v2.0.0-alpha.9...v2.0.0-alpha.10) (2024-04-22)
|
7
|
+
|
8
|
+
|
9
|
+
### :bug: Bug Fix
|
10
|
+
|
11
|
+
* 다국어 컴포넌트 도형 속성 상속, 시나리오 옵셔널 추가 ([857c55b](https://github.com/things-scene/operato-scene/commit/857c55ba725e7973124c017a7b82342835721cec))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
## [2.0.0-alpha.9](https://github.com/things-scene/operato-scene/compare/v2.0.0-alpha.8...v2.0.0-alpha.9) (2024-04-11)
|
16
|
+
|
17
|
+
|
18
|
+
### :bug: Bug Fix
|
19
|
+
|
20
|
+
* things-factory@7.0.1 ([a9f4c18](https://github.com/things-scene/operato-scene/commit/a9f4c1873b80c540e4c2e16649e127ccffcf9a4c))
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
## [2.0.0-alpha.8](https://github.com/things-scene/operato-scene/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-03-29)
|
25
|
+
|
26
|
+
|
27
|
+
### :bug: Bug Fix
|
28
|
+
|
29
|
+
* upgrade lit ([87e6494](https://github.com/things-scene/operato-scene/commit/87e6494e02a74ec768d0695089aea36184afe572))
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
## [2.0.0-alpha.6](https://github.com/things-scene/operato-scene/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-03-24)
|
34
|
+
|
35
|
+
|
36
|
+
### :bug: Bug Fix
|
37
|
+
|
38
|
+
* translation ([266d423](https://github.com/things-scene/operato-scene/commit/266d423d9d6992464f45a437acc90ccf8ed33bf6))
|
39
|
+
|
40
|
+
|
41
|
+
|
42
|
+
## [2.0.0-alpha.5](https://github.com/things-scene/operato-scene/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2024-03-21)
|
43
|
+
|
44
|
+
|
45
|
+
### :bug: Bug Fix
|
46
|
+
|
47
|
+
* 컴포넌트 명 다국어 ([fbc26d9](https://github.com/things-scene/operato-scene/commit/fbc26d9fb24e858541598ba55e2b8d33f2df8d8a))
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
## [2.0.0-alpha.4](https://github.com/things-scene/operato-scene/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2024-03-21)
|
52
|
+
|
53
|
+
|
54
|
+
### :bug: Bug Fix
|
55
|
+
|
56
|
+
* 컴포넌트 명 다국어 ([64e1f08](https://github.com/things-scene/operato-scene/commit/64e1f08af32d2ac193c3d31b0025f8d06f569ca4))
|
57
|
+
|
58
|
+
|
59
|
+
|
6
60
|
## [2.0.0-alpha.0](https://github.com/things-scene/operato-scene/compare/v1.3.9...v2.0.0-alpha.0) (2024-01-14)
|
7
61
|
|
8
62
|
|
package/dist/label.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
declare const Label_base: typeof
|
1
|
+
import { ComponentNature, Shape } from '@hatiolab/things-scene';
|
2
|
+
declare const Label_base: typeof Shape;
|
3
3
|
export default class Label extends Label_base {
|
4
4
|
get nature(): ComponentNature;
|
5
5
|
is3dish(): boolean;
|
package/dist/label.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import i18next from 'i18next';
|
2
|
-
import { Component, RectPath } from '@hatiolab/things-scene';
|
2
|
+
import { Component, RectPath, Shape } from '@hatiolab/things-scene';
|
3
3
|
const NATURE = {
|
4
4
|
mutable: false,
|
5
5
|
resizable: true,
|
@@ -24,7 +24,7 @@ const NATURE = {
|
|
24
24
|
'value-property': 'key',
|
25
25
|
help: 'scene/component/label'
|
26
26
|
};
|
27
|
-
export default class Label extends RectPath(
|
27
|
+
export default class Label extends RectPath(Shape) {
|
28
28
|
get nature() {
|
29
29
|
return NATURE;
|
30
30
|
}
|
package/dist/label.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"label.js","sourceRoot":"","sources":["../src/label.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,SAAS,CAAA;AAE7B,OAAO,EAAE,SAAS,EAAmB,QAAQ,EAAE,MAAM,wBAAwB,CAAA;
|
1
|
+
{"version":3,"file":"label.js","sourceRoot":"","sources":["../src/label.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,SAAS,CAAA;AAE7B,OAAO,EAAE,SAAS,EAAmB,QAAQ,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAEpF,MAAM,MAAM,GAAoB;IAC9B,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,MAAM;YACZ,KAAK,EAAE,OAAO;YACd,IAAI,EAAE,OAAO;SACd;QACD;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,UAAU;YACjB,IAAI,EAAE,KAAK;SACZ;QACD;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,UAAU;YACjB,IAAI,EAAE,UAAU;SACjB;KACF;IACD,gBAAgB,EAAE,KAAK;IACvB,IAAI,EAAE,uBAAuB;CAC9B,CAAA;AAED,MAAM,CAAC,OAAO,OAAO,KAAM,SAAQ,QAAQ,CAAC,KAAK,CAAC;IAChD,IAAI,MAAM;QACR,OAAO,MAAM,CAAA;IACf,CAAC;IAED,OAAO;QACL,OAAO,IAAI,CAAA;IACb,CAAC;IAED,IAAI,IAAI;QACN,MAAM,EAAE,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,QAAQ,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAEhD,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAA;QACjC,OAAO,KAAK,CAAC,QAAQ,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,QAAQ,CAAA;IAC/F,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,KAAK,CAAC,CAAA","sourcesContent":["import i18next from 'i18next'\n\nimport { Component, ComponentNature, RectPath, Shape } from '@hatiolab/things-scene'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'i18n',\n label: 'terms',\n name: 'terms'\n },\n {\n type: 'string',\n label: 'i18n-key',\n name: 'key'\n },\n {\n type: 'string',\n label: 'fallback',\n name: 'fallback'\n }\n ],\n 'value-property': 'key',\n help: 'scene/component/label'\n}\n\nexport default class Label extends RectPath(Shape) {\n get nature() {\n return NATURE\n }\n\n is3dish() {\n return true\n }\n\n get text() {\n const { key, terms = {}, fallback } = this.state\n\n const language = i18next.language\n return terms[language] || terms[language.substr(0, 2)] || (key && i18next.t(key)) || fallback\n }\n}\n\nComponent.register('label', Label)\n"]}
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@operato/scene-i18n",
|
3
3
|
"description": "i18n component for things-scene",
|
4
4
|
"author": "heartyoh",
|
5
|
-
"version": "2.0.0-alpha.
|
5
|
+
"version": "2.0.0-alpha.10",
|
6
6
|
"main": "dist/index.js",
|
7
7
|
"module": "dist/index.js",
|
8
8
|
"license": "MIT",
|
@@ -30,12 +30,12 @@
|
|
30
30
|
"@hatiolab/things-scene": "^3.2.0",
|
31
31
|
"@operato/property-editor": "^2.0.0-alpha.0",
|
32
32
|
"i18next": "^21.5.4",
|
33
|
-
"lit": "^
|
33
|
+
"lit": "^3.1.2"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
36
|
"@hatiolab/prettier-config": "^1.0.0",
|
37
|
-
"@things-factory/builder": "^7.0.
|
38
|
-
"@things-factory/operato-board": "^7.0.
|
37
|
+
"@things-factory/builder": "^7.0.1-alpha.0",
|
38
|
+
"@things-factory/operato-board": "^7.0.1-alpha.0",
|
39
39
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
40
40
|
"@typescript-eslint/parser": "^4.33.0",
|
41
41
|
"@web/dev-server": "^0.1.28",
|
@@ -60,5 +60,5 @@
|
|
60
60
|
"prettier --write"
|
61
61
|
]
|
62
62
|
},
|
63
|
-
"gitHead": "
|
63
|
+
"gitHead": "084ebb126e71f315faeb667ef4d6b0c274afeab2"
|
64
64
|
}
|