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