@operato/property-panel 10.0.0-beta.7 → 10.1.0
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 +486 -0
- package/dist/src/graphql/data-subscription.js +5 -1
- package/dist/src/graphql/data-subscription.js.map +1 -1
- package/dist/src/index.d.ts +4 -0
- package/dist/src/index.js +6 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/ox-property-panel.d.ts +17 -0
- package/dist/src/ox-property-panel.js +105 -39
- package/dist/src/ox-property-panel.js.map +1 -1
- package/dist/src/property-panel/abstract-property.js +11 -2
- package/dist/src/property-panel/abstract-property.js.map +1 -1
- package/dist/src/property-panel/data-binding/data-binding-mapper.js +11 -3
- package/dist/src/property-panel/data-binding/data-binding-mapper.js.map +1 -1
- package/dist/src/property-panel/data-binding/data-binding-popup.d.ts +63 -0
- package/dist/src/property-panel/data-binding/data-binding-popup.js +1414 -0
- package/dist/src/property-panel/data-binding/data-binding-popup.js.map +1 -0
- package/dist/src/property-panel/data-binding/data-binding-value-map.d.ts +1 -1
- package/dist/src/property-panel/data-binding/data-binding-value-range.d.ts +1 -1
- package/dist/src/property-panel/data-binding/data-binding.d.ts +1 -0
- package/dist/src/property-panel/data-binding/data-binding.js +37 -5
- package/dist/src/property-panel/data-binding/data-binding.js.map +1 -1
- package/dist/src/property-panel/effects/effects.js +1 -1
- package/dist/src/property-panel/effects/effects.js.map +1 -1
- package/dist/src/property-panel/effects/property-event-tap.js +21 -1
- package/dist/src/property-panel/effects/property-event-tap.js.map +1 -1
- package/dist/src/property-panel/effects/property-event.d.ts +15 -7
- package/dist/src/property-panel/effects/property-event.js +17 -38
- package/dist/src/property-panel/effects/property-event.js.map +1 -1
- package/dist/src/property-panel/effects/property-shadow.js +14 -5
- package/dist/src/property-panel/effects/property-shadow.js.map +1 -1
- package/dist/src/property-panel/event-handlers/event-handlers-help.d.ts +23 -0
- package/dist/src/property-panel/event-handlers/event-handlers-help.js +356 -0
- package/dist/src/property-panel/event-handlers/event-handlers-help.js.map +1 -0
- package/dist/src/property-panel/event-handlers/event-handlers-mapper.d.ts +31 -0
- package/dist/src/property-panel/event-handlers/event-handlers-mapper.js +238 -0
- package/dist/src/property-panel/event-handlers/event-handlers-mapper.js.map +1 -0
- package/dist/src/property-panel/event-handlers/event-handlers-popup.d.ts +42 -0
- package/dist/src/property-panel/event-handlers/event-handlers-popup.js +375 -0
- package/dist/src/property-panel/event-handlers/event-handlers-popup.js.map +1 -0
- package/dist/src/property-panel/event-handlers/event-handlers.d.ts +54 -0
- package/dist/src/property-panel/event-handlers/event-handlers.js +410 -0
- package/dist/src/property-panel/event-handlers/event-handlers.js.map +1 -0
- package/dist/src/property-panel/inspector/inspector-controller.d.ts +66 -0
- package/dist/src/property-panel/inspector/inspector-controller.js +288 -0
- package/dist/src/property-panel/inspector/inspector-controller.js.map +1 -0
- package/dist/src/property-panel/inspector/inspector-group-view.d.ts +15 -0
- package/dist/src/property-panel/inspector/inspector-group-view.js +59 -0
- package/dist/src/property-panel/inspector/inspector-group-view.js.map +1 -0
- package/dist/src/property-panel/inspector/inspector-highlight.d.ts +7 -0
- package/dist/src/property-panel/inspector/inspector-highlight.js +25 -0
- package/dist/src/property-panel/inspector/inspector-highlight.js.map +1 -0
- package/dist/src/property-panel/inspector/inspector-model.d.ts +44 -0
- package/dist/src/property-panel/inspector/inspector-model.js +72 -0
- package/dist/src/property-panel/inspector/inspector-model.js.map +1 -0
- package/dist/src/property-panel/inspector/inspector-tree-view.d.ts +18 -0
- package/dist/src/property-panel/inspector/inspector-tree-view.js +61 -0
- package/dist/src/property-panel/inspector/inspector-tree-view.js.map +1 -0
- package/dist/src/property-panel/inspector/inspector.d.ts +17 -12
- package/dist/src/property-panel/inspector/inspector.js +281 -179
- package/dist/src/property-panel/inspector/inspector.js.map +1 -1
- package/dist/src/property-panel/shapes/ox-placeholder-convert-editor.d.ts +20 -0
- package/dist/src/property-panel/shapes/ox-placeholder-convert-editor.js +125 -0
- package/dist/src/property-panel/shapes/ox-placeholder-convert-editor.js.map +1 -0
- package/dist/src/property-panel/shapes/placeholder-convert.d.ts +34 -0
- package/dist/src/property-panel/shapes/placeholder-convert.js +117 -0
- package/dist/src/property-panel/shapes/placeholder-convert.js.map +1 -0
- package/dist/src/property-panel/shapes/shapes.js +28 -10
- package/dist/src/property-panel/shapes/shapes.js.map +1 -1
- package/dist/src/property-panel/specifics/specifics.d.ts +1 -0
- package/dist/src/property-panel/specifics/specifics.js +2 -1
- package/dist/src/property-panel/specifics/specifics.js.map +1 -1
- package/dist/src/property-panel/threed/property-material3d.js +8 -1
- package/dist/src/property-panel/threed/property-material3d.js.map +1 -1
- package/dist/src/property-panel/threed/property-scene3d.d.ts +34 -6
- package/dist/src/property-panel/threed/property-scene3d.js +332 -201
- package/dist/src/property-panel/threed/property-scene3d.js.map +1 -1
- package/dist/src/property-panel/threed/threed.js +8 -0
- package/dist/src/property-panel/threed/threed.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -7
- package/themes/grist-theme.css +1 -1
- package/translations/en.json +34 -1
- package/translations/ja.json +34 -1
- package/translations/ko.json +34 -1
- package/translations/ms.json +34 -1
- package/translations/zh.json +34 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,492 @@
|
|
|
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
|
+
## [10.1.0](https://github.com/hatiolab/operato/compare/v10.0.0...v10.1.0) (2026-07-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [10.0.0](https://github.com/hatiolab/operato/compare/v10.0.0-beta.68...v10.0.0) (2026-07-29)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### :bug: Bug Fix
|
|
18
|
+
|
|
19
|
+
* **property-panel:** 인스펙터 dim 토글을 'group' 타입에서는 숨김 ([18b0342](https://github.com/hatiolab/operato/commit/18b03425cdfbd157170b87b33718bf1f6620a8b2))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [10.0.0-beta.68](https://github.com/hatiolab/operato/compare/v10.0.0-beta.67...v10.0.0-beta.68) (2026-07-26)
|
|
24
|
+
|
|
25
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## [10.0.0-beta.67](https://github.com/hatiolab/operato/compare/v10.0.0-beta.66...v10.0.0-beta.67) (2026-07-24)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### :bug: Bug Fix
|
|
35
|
+
|
|
36
|
+
* **property-panel:** 인스펙터 탭을 벗어나도 dim(포커스 필터) 유지 ([11e3f27](https://github.com/hatiolab/operato/commit/11e3f27e667d9538d2ce8006e9a7127a432b6741))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## [10.0.0-beta.66](https://github.com/hatiolab/operato/compare/v10.0.0-beta.65...v10.0.0-beta.66) (2026-07-12)
|
|
41
|
+
|
|
42
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
## [10.0.0-beta.65](https://github.com/hatiolab/operato/compare/v10.0.0-beta.64...v10.0.0-beta.65) (2026-07-10)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### :bug: Bug Fix
|
|
52
|
+
|
|
53
|
+
* add hidden button on the component group view of inspector ([2af50f0](https://github.com/hatiolab/operato/commit/2af50f0992073c93accb77b1279998265cc2ca78))
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## [10.0.0-beta.64](https://github.com/hatiolab/operato/compare/v10.0.0-beta.63...v10.0.0-beta.64) (2026-07-08)
|
|
58
|
+
|
|
59
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
## [10.0.0-beta.63](https://github.com/hatiolab/operato/compare/v10.0.0-beta.62...v10.0.0-beta.63) (2026-07-07)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
### :rocket: New Features
|
|
69
|
+
|
|
70
|
+
* **property-panel:** tree range(volume) select + tighter node spacing ([8443533](https://github.com/hatiolab/operato/commit/8443533425cba514c3aabda971f3ec118ab0d9ac))
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
## [10.0.0-beta.62](https://github.com/hatiolab/operato/compare/v10.0.0-beta.61...v10.0.0-beta.62) (2026-07-04)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### :house: Code Refactoring
|
|
78
|
+
|
|
79
|
+
* **property-panel:** split scene inspector into model/controller/view (P0) ([35ce908](https://github.com/hatiolab/operato/commit/35ce908d46dde884d73af2aa0f7a0da2008f4526))
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
### :rocket: New Features
|
|
83
|
+
|
|
84
|
+
* **property-panel:** field-token search, highlight, per-group filter (P2) ([eea8bf1](https://github.com/hatiolab/operato/commit/eea8bf1744427e12072032fc2b285b9b7d4626af)), closes [#2](https://github.com/hatiolab/operato/issues/2)
|
|
85
|
+
* **property-panel:** group dim-out toggle drives scene focus filter (P2.5a) ([7d174ef](https://github.com/hatiolab/operato/commit/7d174efd22ac7af8d5369f57e0321dd9195eb037))
|
|
86
|
+
* **property-panel:** lock toggle, center-to zoom, reveal-scroll (P3) ([2bdcdf8](https://github.com/hatiolab/operato/commit/2bdcdf892991beceaa78accf22875df756b5ee13))
|
|
87
|
+
* **property-panel:** persist inspector view mode; drop per-group filter ([c20ffa6](https://github.com/hatiolab/operato/commit/c20ffa6fcc557bd6df17fd31c825f133d6e399a5))
|
|
88
|
+
* **property-panel:** type-group view + view toggle + group collapse (P1) ([0d561a7](https://github.com/hatiolab/operato/commit/0d561a75c66b6bdb0599badb3cd793f69ab0235d)), closes [#1](https://github.com/hatiolab/operato/issues/1)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### :bug: Bug Fix
|
|
92
|
+
|
|
93
|
+
* **property-panel:** stop shape/3d tab flicker on marquee/background click ([e79bbeb](https://github.com/hatiolab/operato/commit/e79bbeb351b59479b331ab09df322c2b041e0a81))
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
## [10.0.0-beta.61](https://github.com/hatiolab/operato/compare/v10.0.0-beta.60...v10.0.0-beta.61) (2026-06-25)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### :rocket: New Features
|
|
101
|
+
|
|
102
|
+
* **data-subscription:** query+record publish ts for data-lag monitoring ([d3e5bf9](https://github.com/hatiolab/operato/commit/d3e5bf9b1689f72049fc8333762cd5045f5d90ce))
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
## [10.0.0-beta.60](https://github.com/hatiolab/operato/compare/v10.0.0-beta.59...v10.0.0-beta.60) (2026-06-08)
|
|
107
|
+
|
|
108
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## [10.0.0-beta.59](https://github.com/hatiolab/operato/compare/v10.0.0-beta.58...v10.0.0-beta.59) (2026-06-03)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
### :bug: Bug Fix
|
|
118
|
+
|
|
119
|
+
* **property-panel/event-handlers:** popup 폭 / 높이 레이아웃 회귀 정리 ([799a2f2](https://github.com/hatiolab/operato/commit/799a2f2b5713fc6d56748f5ef8887e55c0eab8ab))
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### :rocket: New Features
|
|
123
|
+
|
|
124
|
+
* **property-panel/event-handlers:** help pane + UX 개선 + (none) 핸들러 제외 ([8c23f62](https://github.com/hatiolab/operato/commit/8c23f62008aea1dcbf4b305cce432eeda7807dd5))
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### :sparkles: Styling
|
|
128
|
+
|
|
129
|
+
* **property-panel/event-handlers:** popup + help pane 에 표준 ScrollbarStyles 적용 ([e11f4a6](https://github.com/hatiolab/operato/commit/e11f4a64a1a223498f02b9f02cdfedd441cef869))
|
|
130
|
+
* **property-panel/event-handlers:** popup 안 mapper 의 상단 모서리도 둥글림 ([717422c](https://github.com/hatiolab/operato/commit/717422cb96b698ae151293dcdf106c1b52a3f9e1))
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
## [10.0.0-beta.58](https://github.com/hatiolab/operato/compare/v10.0.0-beta.57...v10.0.0-beta.58) (2026-05-28)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### :rocket: New Features
|
|
138
|
+
|
|
139
|
+
* **property-panel:** event handlers panel — eventHandlers[] 편집기 + popup ([268ed3d](https://github.com/hatiolab/operato/commit/268ed3d2558e9b9eab1ad24810d20dda8cd17b04))
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
## [10.0.0-beta.57](https://github.com/hatiolab/operato/compare/v10.0.0-beta.56...v10.0.0-beta.57) (2026-05-27)
|
|
144
|
+
|
|
145
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
## [10.0.0-beta.56](https://github.com/hatiolab/operato/compare/v10.0.0-beta.55...v10.0.0-beta.56) (2026-05-27)
|
|
152
|
+
|
|
153
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
## [10.0.0-beta.55](https://github.com/hatiolab/operato/compare/v10.0.0-beta.54...v10.0.0-beta.55) (2026-05-27)
|
|
160
|
+
|
|
161
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
## [10.0.0-beta.54](https://github.com/hatiolab/operato/compare/v10.0.0-beta.53...v10.0.0-beta.54) (2026-05-27)
|
|
168
|
+
|
|
169
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
## [10.0.0-beta.53](https://github.com/hatiolab/operato/compare/v10.0.0-beta.52...v10.0.0-beta.53) (2026-05-24)
|
|
176
|
+
|
|
177
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
## [10.0.0-beta.52](https://github.com/hatiolab/operato/compare/v10.0.0-beta.51...v10.0.0-beta.52) (2026-05-22)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
### :sparkles: Styling
|
|
187
|
+
|
|
188
|
+
* **data-grist:** record-card 시각 정돈 + danger hover 가독성 ([60cf583](https://github.com/hatiolab/operato/commit/60cf583d3096286f074d1b412e3737bc9b283258))
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
## [10.0.0-beta.50](https://github.com/hatiolab/operato/compare/v10.0.0-beta.49...v10.0.0-beta.50) (2026-05-12)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### :bug: Bug Fix
|
|
196
|
+
|
|
197
|
+
* **property-panel:** shapes 가드 보강 — selected[0] non-Component 방어 ([77f54e4](https://github.com/hatiolab/operato/commit/77f54e4aaf4a45cf1c44ae39db30dc29f499c07a))
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
### :mega: Other
|
|
201
|
+
|
|
202
|
+
* **property-panel:** label.see-through 5 언어 다국어 추가 ([1c0106e](https://github.com/hatiolab/operato/commit/1c0106e451e3d4469e5a3705a4b07b382b8175c4))
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
## [10.0.0-beta.49](https://github.com/hatiolab/operato/compare/v10.0.0-beta.48...v10.0.0-beta.49) (2026-05-07)
|
|
207
|
+
|
|
208
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
## [10.0.0-beta.48](https://github.com/hatiolab/operato/compare/v10.0.0-beta.47...v10.0.0-beta.48) (2026-05-05)
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
### :rocket: New Features
|
|
218
|
+
|
|
219
|
+
* **property-panel:** generic-object 타입 변환 UI를 specifics 탭 전용 에디터로 이동 ([4b90f57](https://github.com/hatiolab/operato/commit/4b90f574c29f1677eb0dacc73b05e9fd10c9d2b2))
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
### :house: Code Refactoring
|
|
223
|
+
|
|
224
|
+
* **property-panel:** placeholder-convert 아키텍처 정리 ([ec7c805](https://github.com/hatiolab/operato/commit/ec7c80550148fe2a13704999aafb940b26558729))
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
## [10.0.0-beta.47](https://github.com/hatiolab/operato/compare/v10.0.0-beta.46...v10.0.0-beta.47) (2026-05-03)
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### :rocket: New Features
|
|
232
|
+
|
|
233
|
+
* **i18n:** popup-container + tooltip-3d component names + new property labels ([2e15e2b](https://github.com/hatiolab/operato/commit/2e15e2baad9d8f09a651f6f253015f8d7a8e5e32))
|
|
234
|
+
* **modeller:** popup-container palette + inline-popup tap actions ([737b081](https://github.com/hatiolab/operato/commit/737b0819c287d7703f404db266e79b12281070d3))
|
|
235
|
+
* **property-panel:** popup position option + inline-popup target list ([19778c5](https://github.com/hatiolab/operato/commit/19778c515ca38678bfd88b895639f1aa95032682))
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
## [10.0.0-beta.46](https://github.com/hatiolab/operato/compare/v10.0.0-beta.45...v10.0.0-beta.46) (2026-05-01)
|
|
240
|
+
|
|
241
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
## [10.0.0-beta.45](https://github.com/hatiolab/operato/compare/v10.0.0-beta.44...v10.0.0-beta.45) (2026-04-30)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
### :rocket: New Features
|
|
251
|
+
|
|
252
|
+
* **board,property-panel:** logistics group split + NaN-safe number inputs ([aa3aa37](https://github.com/hatiolab/operato/commit/aa3aa376802d2296ee9a8315b4490b8a2a34b223))
|
|
253
|
+
* **board,property-panel:** manufacturing group + dynamic nature refresh ([a82cab7](https://github.com/hatiolab/operato/commit/a82cab79dded6b5996c554dfbcaf6f578f303861))
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
## [10.0.0-beta.44](https://github.com/hatiolab/operato/compare/v10.0.0-beta.43...v10.0.0-beta.44) (2026-04-28)
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
### :house: Code Refactoring
|
|
261
|
+
|
|
262
|
+
* **shadow:** property panel 에디터를 신규 키 (offsetX/offsetY/blur) 로 현행화 ([aee4dbe](https://github.com/hatiolab/operato/commit/aee4dbef842606bc31b6ad3f2161ffa22c2d3221))
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
## [10.0.0-beta.43](https://github.com/hatiolab/operato/compare/v10.0.0-beta.42...v10.0.0-beta.43) (2026-04-24)
|
|
267
|
+
|
|
268
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
## [10.0.0-beta.42](https://github.com/hatiolab/operato/compare/v10.0.0-beta.41...v10.0.0-beta.42) (2026-04-18)
|
|
275
|
+
|
|
276
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
## [10.0.0-beta.41](https://github.com/hatiolab/operato/compare/v10.0.0-beta.40...v10.0.0-beta.41) (2026-04-18)
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
### :rocket: New Features
|
|
286
|
+
|
|
287
|
+
* **property-panel:** environment + light mood 2-tier 프리셋 구조로 재설계 ([226bbab](https://github.com/hatiolab/operato/commit/226bbabbe8f198936d88e7d7c01b6365f910a71d))
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
## [10.0.0-beta.40](https://github.com/hatiolab/operato/compare/v10.0.0-beta.39...v10.0.0-beta.40) (2026-04-18)
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
### :rocket: New Features
|
|
295
|
+
|
|
296
|
+
* **property-panel:** scene 3d에 camera 섹션 + renderer exposure 슬라이더 추가 ([cc3ff97](https://github.com/hatiolab/operato/commit/cc3ff9738ff0dfc22a6bd563ec29c24e302873df))
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
## [10.0.0-beta.39](https://github.com/hatiolab/operato/compare/v10.0.0-beta.38...v10.0.0-beta.39) (2026-04-18)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
### :rocket: New Features
|
|
304
|
+
|
|
305
|
+
* **property-panel:** hemisphere 색상 편집 + key light 방향/그림자 컨트롤 ([d0cc346](https://github.com/hatiolab/operato/commit/d0cc34651460e0b0d8aa290f0897c75aa7fb3fc7))
|
|
306
|
+
* **property-panel:** lighting preset UI 개선 — 값 범위 확장 + 버튼→select 전환 ([b866db9](https://github.com/hatiolab/operato/commit/b866db9a2871573095b415d0ead63401ae336c89)), closes [#ffaa55](https://github.com/hatiolab/operato/issues/ffaa55) [#88](https://github.com/hatiolab/operato/issues/88)
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
### :house: Code Refactoring
|
|
310
|
+
|
|
311
|
+
* **property-panel:** scene3d 탭에서 bookmarks 섹션 제거 ([50d12de](https://github.com/hatiolab/operato/commit/50d12de7bc20a192503907db05a8506951931206))
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
## [10.0.0-beta.38](https://github.com/hatiolab/operato/compare/v10.0.0-beta.37...v10.0.0-beta.38) (2026-04-17)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### :rocket: New Features
|
|
319
|
+
|
|
320
|
+
* **property-panel:** scene3d 탭에 placement 모드 선택 추가 ([5f55786](https://github.com/hatiolab/operato/commit/5f55786500fc07e478b6d94a3518fb21598d7c59))
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
## [10.0.0-beta.36](https://github.com/hatiolab/operato/compare/v10.0.0-beta.35...v10.0.0-beta.36) (2026-04-17)
|
|
325
|
+
|
|
326
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
## [10.0.0-beta.34](https://github.com/hatiolab/operato/compare/v10.0.0-beta.33...v10.0.0-beta.34) (2026-04-16)
|
|
333
|
+
|
|
334
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
## [10.0.0-beta.33](https://github.com/hatiolab/operato/compare/v10.0.0-beta.32...v10.0.0-beta.33) (2026-04-16)
|
|
341
|
+
|
|
342
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
## [10.0.0-beta.32](https://github.com/hatiolab/operato/compare/v10.0.0-beta.31...v10.0.0-beta.32) (2026-04-15)
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
### :bug: Bug Fix
|
|
352
|
+
|
|
353
|
+
* **property-panel:** data-binding-popup의 Flow 탭이 "No scene"으로 빠지는 문제 수정 ([ac0bc78](https://github.com/hatiolab/operato/commit/ac0bc78e27a105657809157d3964b52857484c38))
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
## [10.0.0-beta.31](https://github.com/hatiolab/operato/compare/v10.0.0-beta.30...v10.0.0-beta.31) (2026-04-15)
|
|
358
|
+
|
|
359
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
## [10.0.0-beta.30](https://github.com/hatiolab/operato/compare/v10.0.0-beta.29...v10.0.0-beta.30) (2026-04-14)
|
|
366
|
+
|
|
367
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
## [10.0.0-beta.29](https://github.com/hatiolab/operato/compare/v10.0.0-beta.28...v10.0.0-beta.29) (2026-04-13)
|
|
374
|
+
|
|
375
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
## [10.0.0-beta.26](https://github.com/hatiolab/operato/compare/v10.0.0-beta.25...v10.0.0-beta.26) (2026-04-09)
|
|
382
|
+
|
|
383
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
## [10.0.0-beta.25](https://github.com/hatiolab/operato/compare/v10.0.0-beta.24...v10.0.0-beta.25) (2026-04-08)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
### :bug: Bug Fix
|
|
393
|
+
|
|
394
|
+
* **property-panel:** group selection shows specific tab empty instead of full block ([cfe4a11](https://github.com/hatiolab/operato/commit/cfe4a11647928a301a3d19c80257887272ad619e))
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
## [10.0.0-beta.24](https://github.com/hatiolab/operato/compare/v10.0.0-beta.23...v10.0.0-beta.24) (2026-04-06)
|
|
399
|
+
|
|
400
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
## [10.0.0-beta.23](https://github.com/hatiolab/operato/compare/v10.0.0-beta.22...v10.0.0-beta.23) (2026-04-06)
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
### :bug: Bug Fix
|
|
410
|
+
|
|
411
|
+
* **property-panel:** 3D 모드 라벨 변경 — Enable 3D → Start in 3D ([044f29d](https://github.com/hatiolab/operato/commit/044f29de76e30e9457cd575bc5a8b567b4ba535a))
|
|
412
|
+
* **property-panel:** 3D 탭을 컴포넌트 전환 시에도 유지 ([002b30c](https://github.com/hatiolab/operato/commit/002b30c6768ff059707dc9c0236ea0852d66349f))
|
|
413
|
+
* **property-panel:** floor constraint label to keep above ground ([239d9c9](https://github.com/hatiolab/operato/commit/239d9c980a586bdc70bd0a2cee423074a30e2109))
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
### :rocket: New Features
|
|
417
|
+
|
|
418
|
+
* **property-panel:** 3D mode labels i18n + keep above ground label fix ([57bbefc](https://github.com/hatiolab/operato/commit/57bbefc6dfe0b08ed10b23abc76735594c967404))
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
## [10.0.0-beta.22](https://github.com/hatiolab/operato/compare/v10.0.0-beta.21...v10.0.0-beta.22) (2026-04-02)
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
### :rocket: New Features
|
|
426
|
+
|
|
427
|
+
* **property-panel:** 3D 컴포넌트 다국어 추가 (en/ko/ja/zh/ms) ([f1e68f2](https://github.com/hatiolab/operato/commit/f1e68f25d555528ca7aebf1e31a0b8f740a94552))
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
## [10.0.0-beta.21](https://github.com/hatiolab/operato/compare/v10.0.0-beta.20...v10.0.0-beta.21) (2026-04-02)
|
|
432
|
+
|
|
433
|
+
**Note:** Version bump only for package @operato/property-panel
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
## [10.0.0-beta.18](https://github.com/hatiolab/operato/compare/v10.0.0-beta.17...v10.0.0-beta.18) (2026-03-25)
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
### :rocket: New Features
|
|
443
|
+
|
|
444
|
+
* **property-panel:** cameraFloorConstraint UI 추가 ([8bb94e5](https://github.com/hatiolab/operato/commit/8bb94e59f8e356a9deb755a82e91939fcf2df7e6))
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
## [10.0.0-beta.15](https://github.com/hatiolab/operato/compare/v10.0.0-beta.14...v10.0.0-beta.15) (2026-03-22)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
### :house: Code Refactoring
|
|
452
|
+
|
|
453
|
+
* **property-panel:** 3D 설정에서 bookmark 섹션 제거 ([14bbf5c](https://github.com/hatiolab/operato/commit/14bbf5c063f5afd5f77f15fc573e78f4da440ef5))
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
### :rocket: New Features
|
|
457
|
+
|
|
458
|
+
* **board:** 데이터바인딩 팝업 에디터 + property 콤보박스 + D키 핫키 ([d467180](https://github.com/hatiolab/operato/commit/d467180e106b1d268099bf9895082e2c6cf8d07b))
|
|
459
|
+
* **property-panel:** 데이터바인딩 팝업 Flow 탭 + UI 개선 ([d52fadc](https://github.com/hatiolab/operato/commit/d52fadc24dd9ba4a658cbd5ac2edd8c53460f3fe))
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
### :bug: Bug Fix
|
|
463
|
+
|
|
464
|
+
* **board:** 데이터바인딩 팝업 모델 반영 + GLTF animations 트리 + 사이드바 저장 조건 완화 ([46fe68e](https://github.com/hatiolab/operato/commit/46fe68ea8c3af43c5c4275a42cd7bb5e761ec118))
|
|
465
|
+
* **property-panel:** 데이터바인딩 팝업 GLTF Mesh 필터링 + fillStyleTargets 저장 조건 ([09afea6](https://github.com/hatiolab/operato/commit/09afea65d1cdf86d04e2e1606ba6e1b2063a4739))
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
## [10.0.0-beta.12](https://github.com/hatiolab/operato/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2026-03-17)
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
### :rocket: New Features
|
|
473
|
+
|
|
474
|
+
* **property-panel:** 3D 탭에 Screen Fixed (HUD) 체크박스 추가 ([9f53d88](https://github.com/hatiolab/operato/commit/9f53d88e4690e9c07dba622e9d4d00d2dcc2afbb))
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
### :bug: Bug Fix
|
|
478
|
+
|
|
479
|
+
* **property-panel:** screenFixed 체크박스 형태 통일 ([f1da9ce](https://github.com/hatiolab/operato/commit/f1da9ce748949e670b0a02560e012974b74adc27))
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
## [10.0.0-beta.10](https://github.com/hatiolab/operato/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2026-03-14)
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
### :bug: Bug Fix
|
|
487
|
+
|
|
488
|
+
* **property-panel:** 다중 타입 선택 시 Component.Undefined 대신 적절한 레이블 표시 ([7bad969](https://github.com/hatiolab/operato/commit/7bad96938ee220b72fd5c68d84ec8d55d7d85cf9))
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
6
492
|
## [10.0.0-beta.7](https://github.com/hatiolab/operato/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2026-03-09)
|
|
7
493
|
|
|
8
494
|
|
|
@@ -8,13 +8,17 @@ export class DataSubscriptionProviderImpl {
|
|
|
8
8
|
data(tag: "${tag}") {
|
|
9
9
|
tag
|
|
10
10
|
data
|
|
11
|
+
ts
|
|
11
12
|
}
|
|
12
13
|
}
|
|
13
14
|
`
|
|
14
15
|
}, {
|
|
15
16
|
next: async ({ data }) => {
|
|
17
|
+
var _a, _b, _c;
|
|
16
18
|
if (data) {
|
|
17
|
-
|
|
19
|
+
const payload = data.data;
|
|
20
|
+
(_c = (_b = (_a = component.app) === null || _a === void 0 ? void 0 : _a.lagTracker) === null || _b === void 0 ? void 0 : _b.record) === null || _c === void 0 ? void 0 : _c.call(_b, payload.tag, payload.ts);
|
|
21
|
+
component.data = payload.data;
|
|
18
22
|
}
|
|
19
23
|
}
|
|
20
24
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-subscription.js","sourceRoot":"","sources":["../../../src/graphql/data-subscription.ts"],"names":[],"mappings":"AAEA,OAAO,GAAG,MAAM,aAAa,CAAA;AAC7B,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAE5C,MAAM,OAAO,4BAA4B;IACvC,KAAK,CAAC,SAAS,CAAC,GAAW,EAAE,SAAoB;QAC/C,OAAO,MAAM,SAAS,CACpB;YACE,KAAK,EAAE,GAAG,CAAA;;iCAEe,GAAG
|
|
1
|
+
{"version":3,"file":"data-subscription.js","sourceRoot":"","sources":["../../../src/graphql/data-subscription.ts"],"names":[],"mappings":"AAEA,OAAO,GAAG,MAAM,aAAa,CAAA;AAC7B,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAA;AAE5C,MAAM,OAAO,4BAA4B;IACvC,KAAK,CAAC,SAAS,CAAC,GAAW,EAAE,SAAoB;QAC/C,OAAO,MAAM,SAAS,CACpB;YACE,KAAK,EAAE,GAAG,CAAA;;iCAEe,GAAG;;;;;;iBAMnB;SACV,EACD;YACE,IAAI,EAAE,KAAK,EAAE,EAAE,IAAI,EAAiB,EAAE,EAAE;;gBACtC,IAAI,IAAI,EAAE,CAAC;oBACT,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CACxB;oBAAA,MAAA,MAAA,MAAC,SAAiB,CAAC,GAAG,0CAAE,UAAU,0CAAE,MAAM,mDAAG,OAAO,CAAC,GAAG,EAAE,OAAO,CAAC,EAAE,CAAC,CAAA;oBACtE,SAAS,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAA;gBAC/B,CAAC;YACH,CAAC;SACF,CACF,CAAA;IACH,CAAC;IAED,OAAO,KAAI,CAAC;CACb","sourcesContent":["import { Component, DataSubscriptionProvider } from '@hatiolab/things-scene'\n\nimport gql from 'graphql-tag'\nimport { subscribe } from '@operato/graphql'\n\nexport class DataSubscriptionProviderImpl implements DataSubscriptionProvider {\n async subscribe(tag: string, component: Component) {\n return await subscribe(\n {\n query: gql`\n subscription {\n data(tag: \"${tag}\") {\n tag\n data\n ts\n }\n }\n `\n },\n {\n next: async ({ data }: { data: any }) => {\n if (data) {\n const payload = data.data\n ;(component as any).app?.lagTracker?.record?.(payload.tag, payload.ts)\n component.data = payload.data\n }\n }\n }\n )\n }\n\n dispose() {}\n}\n"]}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export { OxPropertyPanel } from './ox-property-panel.js';
|
|
2
2
|
export * from './property-panel/data-binding/data-binding.js';
|
|
3
|
+
export * from './property-panel/event-handlers/event-handlers-mapper.js';
|
|
4
|
+
export * from './property-panel/event-handlers/event-handlers.js';
|
|
5
|
+
export * from './property-panel/event-handlers/event-handlers-popup.js';
|
|
6
|
+
export * from './property-panel/event-handlers/event-handlers-help.js';
|
|
3
7
|
export * from './property-panel/effects/effects.js';
|
|
4
8
|
export * from './property-panel/inspector/inspector.js';
|
|
5
9
|
export * from './property-panel/shapes/shapes.js';
|
package/dist/src/index.js
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
export { OxPropertyPanel } from './ox-property-panel.js';
|
|
2
2
|
export * from './property-panel/data-binding/data-binding.js';
|
|
3
|
+
// Event handlers — inline panel + popup (data-binding 패턴 동일). effects tab
|
|
4
|
+
// 의 PropertyEvent fieldset 에서 inline 으로 host. open_in_new 클릭 시 popup.
|
|
5
|
+
export * from './property-panel/event-handlers/event-handlers-mapper.js';
|
|
6
|
+
export * from './property-panel/event-handlers/event-handlers.js';
|
|
7
|
+
export * from './property-panel/event-handlers/event-handlers-popup.js';
|
|
8
|
+
export * from './property-panel/event-handlers/event-handlers-help.js';
|
|
3
9
|
export * from './property-panel/effects/effects.js';
|
|
4
10
|
export * from './property-panel/inspector/inspector.js';
|
|
5
11
|
export * from './property-panel/shapes/shapes.js';
|
package/dist/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAExD,cAAc,+CAA+C,CAAA;AAC7D,cAAc,qCAAqC,CAAA;AACnD,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,mCAAmC,CAAA","sourcesContent":["export { OxPropertyPanel } from './ox-property-panel.js'\n\nexport * from './property-panel/data-binding/data-binding.js'\nexport * from './property-panel/effects/effects.js'\nexport * from './property-panel/inspector/inspector.js'\nexport * from './property-panel/shapes/shapes.js'\nexport * from './property-panel/specifics/specifics.js'\nexport * from './property-panel/styles/styles.js'\nexport * from './property-panel/threed/threed.js'\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAExD,cAAc,+CAA+C,CAAA;AAC7D,0EAA0E;AAC1E,sEAAsE;AACtE,cAAc,0DAA0D,CAAA;AACxE,cAAc,mDAAmD,CAAA;AACjE,cAAc,yDAAyD,CAAA;AACvE,cAAc,wDAAwD,CAAA;AACtE,cAAc,qCAAqC,CAAA;AACnD,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,mCAAmC,CAAA","sourcesContent":["export { OxPropertyPanel } from './ox-property-panel.js'\n\nexport * from './property-panel/data-binding/data-binding.js'\n// Event handlers — inline panel + popup (data-binding 패턴 동일). effects tab\n// 의 PropertyEvent fieldset 에서 inline 으로 host. open_in_new 클릭 시 popup.\nexport * from './property-panel/event-handlers/event-handlers-mapper.js'\nexport * from './property-panel/event-handlers/event-handlers.js'\nexport * from './property-panel/event-handlers/event-handlers-popup.js'\nexport * from './property-panel/event-handlers/event-handlers-help.js'\nexport * from './property-panel/effects/effects.js'\nexport * from './property-panel/inspector/inspector.js'\nexport * from './property-panel/shapes/shapes.js'\nexport * from './property-panel/specifics/specifics.js'\nexport * from './property-panel/styles/styles.js'\nexport * from './property-panel/threed/threed.js'\n"]}
|
|
@@ -25,8 +25,18 @@ export declare class OxPropertyPanel extends OxPropertyPanel_base {
|
|
|
25
25
|
fonts: any[];
|
|
26
26
|
propertyEditor: any[];
|
|
27
27
|
propertyTarget: Component | null;
|
|
28
|
+
/** 렌더에 실제 반영되는(디바운스된) 선택 — 마퀴 드래그 중 번뜩임 방지용. */
|
|
29
|
+
private _settledSelected;
|
|
30
|
+
private _selectionDebounceTimer?;
|
|
28
31
|
firstUpdated(): void;
|
|
29
32
|
updated(change: PropertyValues<this>): void;
|
|
33
|
+
/**
|
|
34
|
+
* 선택 변경을 트레일링 디바운스해, 속성창(shape/3d 등)이 마퀴 드래그 중 매 mousemove 마다
|
|
35
|
+
* 재빌드되어 번뜩이는 것을 막는다. 드래그가 멈춘 뒤 최종 선택으로 한 번만 갱신한다.
|
|
36
|
+
* (드래그 중 render 는 재실행되나 _settledSelected 가 고정이라 동일 출력 → Lit no-op.)
|
|
37
|
+
*/
|
|
38
|
+
private _scheduleSelectedUpdate;
|
|
39
|
+
disconnectedCallback(): void;
|
|
30
40
|
static get scopedElements(): {
|
|
31
41
|
'property-shape': typeof PropertyShapes;
|
|
32
42
|
'property-style': typeof PropertyStyles;
|
|
@@ -37,8 +47,15 @@ export declare class OxPropertyPanel extends OxPropertyPanel_base {
|
|
|
37
47
|
'property-data-binding': typeof PropertyDataBinding;
|
|
38
48
|
'scene-inspector': typeof SceneInspector;
|
|
39
49
|
};
|
|
50
|
+
private hasGroup;
|
|
40
51
|
render(): import("lit-html").TemplateResult<1>;
|
|
41
52
|
private onPropertyChanged;
|
|
53
|
+
/**
|
|
54
|
+
* 새 properties 배열이 현재 specificProps 와 *구조상* 다른지 빠르게 검사.
|
|
55
|
+
* 단순히 length + 각 항목의 name 만 비교 — value 변경은 model 측에서 처리되므로
|
|
56
|
+
* specificProps 의 reference 를 바꿀 필요가 없다.
|
|
57
|
+
*/
|
|
58
|
+
private specificPropsChanged;
|
|
42
59
|
private onBoundsChanged;
|
|
43
60
|
private onChangedByScene;
|
|
44
61
|
private setPropertyTargetAsDefault;
|