@fmsim/board 1.0.83 → 1.0.87
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/custom-elements.json +369 -325
- package/demo/index-player.html +1 -5
- package/demo/index-viewer.html +1 -5
- package/demo/index.html +1 -5
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -2,91 +2,6 @@
|
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"readme": "",
|
|
4
4
|
"modules": [
|
|
5
|
-
{
|
|
6
|
-
"kind": "javascript-module",
|
|
7
|
-
"path": "stories/restful-attachment-selector.stories.ts",
|
|
8
|
-
"declarations": [
|
|
9
|
-
{
|
|
10
|
-
"kind": "variable",
|
|
11
|
-
"name": "meta",
|
|
12
|
-
"default": "{ title: 'Components/RestfulAttachmentSelector', component: 'restful-attachment-selector', argTypes: { category: { control: 'select', options: ['', 'audio', 'video', 'image', 'text', 'application'], description: '첨부파일 카테고리' }, creatable: { control: 'boolean', description: '파일 업로드 가능 여부' }, userName: { control: 'text', description: '사용자 이름' } }, parameters: { layout: 'centered' } } satisfies Meta"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"kind": "variable",
|
|
16
|
-
"name": "Default",
|
|
17
|
-
"type": {
|
|
18
|
-
"text": "Story"
|
|
19
|
-
},
|
|
20
|
-
"default": "{ render: args => html` <restful-attachment-selector .category=${args.category} .creatable=${args.creatable} .userName=${args.userName} style=\"width: 800px; height: 600px;\" ></restful-attachment-selector> `, args: { category: '', creatable: true, userName: 'testUser' } }"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"kind": "variable",
|
|
24
|
-
"name": "WithCategory",
|
|
25
|
-
"type": {
|
|
26
|
-
"text": "Story"
|
|
27
|
-
},
|
|
28
|
-
"default": "{ ...Default, args: { ...Default.args, category: 'document' } }"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"kind": "variable",
|
|
32
|
-
"name": "ReadOnly",
|
|
33
|
-
"type": {
|
|
34
|
-
"text": "Story"
|
|
35
|
-
},
|
|
36
|
-
"default": "{ ...Default, args: { ...Default.args, creatable: false } }"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"kind": "variable",
|
|
40
|
-
"name": "WithTestData",
|
|
41
|
-
"type": {
|
|
42
|
-
"text": "Story"
|
|
43
|
-
},
|
|
44
|
-
"default": "{ ...Default, args: { ...Default.args, category: 'document' }, play: async ({ canvasElement }) => { const selector = canvasElement.querySelector('restful-attachment-selector') as RestfulAttachmentSelector if (selector) { // 테스트 데이터 주입 selector.attachments = [ { id: 'test-1', name: 'test1.txt', description: 'Test file 1', mimetype: 'text/plain', encoding: '7bit', category: 'document', path: 'test1.txt', bulk: '27', createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), creatorId: 'testUser', updaterId: 'testUser', fullpath: 'http://localhost:16060/mcs/lv/images/test1.txt', download: 'http://localhost:16060/mcs/lv/downloadFile/test1.txt' }, { id: 'test-2', name: 'test2.jpg', description: 'Test image', mimetype: 'image/jpeg', encoding: '7bit', category: 'image', path: 'test2.jpg', bulk: '1024', createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), creatorId: 'testUser', updaterId: 'testUser', fullpath: 'http://localhost:16060/mcs/lv/images/test2.jpg', download: 'http://localhost:16060/mcs/lv/downloadFile/test2.jpg' } ] } } }"
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
"exports": [
|
|
48
|
-
{
|
|
49
|
-
"kind": "js",
|
|
50
|
-
"name": "default",
|
|
51
|
-
"declaration": {
|
|
52
|
-
"name": "meta",
|
|
53
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"kind": "js",
|
|
58
|
-
"name": "Default",
|
|
59
|
-
"declaration": {
|
|
60
|
-
"name": "Default",
|
|
61
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"kind": "js",
|
|
66
|
-
"name": "WithCategory",
|
|
67
|
-
"declaration": {
|
|
68
|
-
"name": "WithCategory",
|
|
69
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"kind": "js",
|
|
74
|
-
"name": "ReadOnly",
|
|
75
|
-
"declaration": {
|
|
76
|
-
"name": "ReadOnly",
|
|
77
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"kind": "js",
|
|
82
|
-
"name": "WithTestData",
|
|
83
|
-
"declaration": {
|
|
84
|
-
"name": "WithTestData",
|
|
85
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
]
|
|
89
|
-
},
|
|
90
5
|
{
|
|
91
6
|
"kind": "javascript-module",
|
|
92
7
|
"path": "src/index.ts",
|
|
@@ -97,7 +12,7 @@
|
|
|
97
12
|
"name": "*",
|
|
98
13
|
"declaration": {
|
|
99
14
|
"name": "*",
|
|
100
|
-
"
|
|
15
|
+
"module": "src/types.js"
|
|
101
16
|
}
|
|
102
17
|
},
|
|
103
18
|
{
|
|
@@ -121,7 +36,7 @@
|
|
|
121
36
|
"name": "*",
|
|
122
37
|
"declaration": {
|
|
123
38
|
"name": "*",
|
|
124
|
-
"
|
|
39
|
+
"module": "src/ox-board-viewer.js"
|
|
125
40
|
}
|
|
126
41
|
},
|
|
127
42
|
{
|
|
@@ -129,7 +44,7 @@
|
|
|
129
44
|
"name": "*",
|
|
130
45
|
"declaration": {
|
|
131
46
|
"name": "*",
|
|
132
|
-
"
|
|
47
|
+
"module": "src/ox-board-modeller.js"
|
|
133
48
|
}
|
|
134
49
|
},
|
|
135
50
|
{
|
|
@@ -137,7 +52,7 @@
|
|
|
137
52
|
"name": "*",
|
|
138
53
|
"declaration": {
|
|
139
54
|
"name": "*",
|
|
140
|
-
"
|
|
55
|
+
"module": "src/ox-board-list.js"
|
|
141
56
|
}
|
|
142
57
|
},
|
|
143
58
|
{
|
|
@@ -145,7 +60,7 @@
|
|
|
145
60
|
"name": "*",
|
|
146
61
|
"declaration": {
|
|
147
62
|
"name": "*",
|
|
148
|
-
"
|
|
63
|
+
"module": "src/component/index.js"
|
|
149
64
|
}
|
|
150
65
|
}
|
|
151
66
|
]
|
|
@@ -282,6 +197,14 @@
|
|
|
282
197
|
},
|
|
283
198
|
"tagName": "ox-board-component-info",
|
|
284
199
|
"customElement": true
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"kind": "variable",
|
|
203
|
+
"name": "x"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"kind": "variable",
|
|
207
|
+
"name": "y"
|
|
285
208
|
}
|
|
286
209
|
],
|
|
287
210
|
"exports": [
|
|
@@ -1787,10 +1710,100 @@
|
|
|
1787
1710
|
"declarations": [],
|
|
1788
1711
|
"exports": []
|
|
1789
1712
|
},
|
|
1713
|
+
{
|
|
1714
|
+
"kind": "javascript-module",
|
|
1715
|
+
"path": "stories/restful-attachment-selector.stories.ts",
|
|
1716
|
+
"declarations": [
|
|
1717
|
+
{
|
|
1718
|
+
"kind": "variable",
|
|
1719
|
+
"name": "meta",
|
|
1720
|
+
"default": "{ title: 'Components/RestfulAttachmentSelector', component: 'restful-attachment-selector', argTypes: { category: { control: 'select', options: ['', 'audio', 'video', 'image', 'text', 'application'], description: '첨부파일 카테고리' }, creatable: { control: 'boolean', description: '파일 업로드 가능 여부' }, userName: { control: 'text', description: '사용자 이름' } }, parameters: { layout: 'centered' } } satisfies Meta"
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"kind": "variable",
|
|
1724
|
+
"name": "Default",
|
|
1725
|
+
"type": {
|
|
1726
|
+
"text": "Story"
|
|
1727
|
+
},
|
|
1728
|
+
"default": "{ render: args => html` <restful-attachment-selector .category=${args.category} .creatable=${args.creatable} .userName=${args.userName} style=\"width: 800px; height: 600px;\" ></restful-attachment-selector> `, args: { category: '', creatable: true, userName: 'testUser' } }"
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"kind": "variable",
|
|
1732
|
+
"name": "WithCategory",
|
|
1733
|
+
"type": {
|
|
1734
|
+
"text": "Story"
|
|
1735
|
+
},
|
|
1736
|
+
"default": "{ ...Default, args: { ...Default.args, category: 'document' } }"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"kind": "variable",
|
|
1740
|
+
"name": "ReadOnly",
|
|
1741
|
+
"type": {
|
|
1742
|
+
"text": "Story"
|
|
1743
|
+
},
|
|
1744
|
+
"default": "{ ...Default, args: { ...Default.args, creatable: false } }"
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
"kind": "variable",
|
|
1748
|
+
"name": "WithTestData",
|
|
1749
|
+
"type": {
|
|
1750
|
+
"text": "Story"
|
|
1751
|
+
},
|
|
1752
|
+
"default": "{ ...Default, args: { ...Default.args, category: 'document' }, play: async ({ canvasElement }) => { const selector = canvasElement.querySelector('restful-attachment-selector') as RestfulAttachmentSelector if (selector) { // 테스트 데이터 주입 selector.attachments = [ { id: 'test-1', name: 'test1.txt', description: 'Test file 1', mimetype: 'text/plain', encoding: '7bit', category: 'document', path: 'test1.txt', bulk: '27', createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), creatorId: 'testUser', updaterId: 'testUser', fullpath: 'http://localhost:16060/mcs/lv/images/test1.txt', download: 'http://localhost:16060/mcs/lv/downloadFile/test1.txt' }, { id: 'test-2', name: 'test2.jpg', description: 'Test image', mimetype: 'image/jpeg', encoding: '7bit', category: 'image', path: 'test2.jpg', bulk: '1024', createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), creatorId: 'testUser', updaterId: 'testUser', fullpath: 'http://localhost:16060/mcs/lv/images/test2.jpg', download: 'http://localhost:16060/mcs/lv/downloadFile/test2.jpg' } ] } } }"
|
|
1753
|
+
}
|
|
1754
|
+
],
|
|
1755
|
+
"exports": [
|
|
1756
|
+
{
|
|
1757
|
+
"kind": "js",
|
|
1758
|
+
"name": "default",
|
|
1759
|
+
"declaration": {
|
|
1760
|
+
"name": "meta",
|
|
1761
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1762
|
+
}
|
|
1763
|
+
},
|
|
1764
|
+
{
|
|
1765
|
+
"kind": "js",
|
|
1766
|
+
"name": "Default",
|
|
1767
|
+
"declaration": {
|
|
1768
|
+
"name": "Default",
|
|
1769
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1770
|
+
}
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"kind": "js",
|
|
1774
|
+
"name": "WithCategory",
|
|
1775
|
+
"declaration": {
|
|
1776
|
+
"name": "WithCategory",
|
|
1777
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1778
|
+
}
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"kind": "js",
|
|
1782
|
+
"name": "ReadOnly",
|
|
1783
|
+
"declaration": {
|
|
1784
|
+
"name": "ReadOnly",
|
|
1785
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1786
|
+
}
|
|
1787
|
+
},
|
|
1788
|
+
{
|
|
1789
|
+
"kind": "js",
|
|
1790
|
+
"name": "WithTestData",
|
|
1791
|
+
"declaration": {
|
|
1792
|
+
"name": "WithTestData",
|
|
1793
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1794
|
+
}
|
|
1795
|
+
}
|
|
1796
|
+
]
|
|
1797
|
+
},
|
|
1790
1798
|
{
|
|
1791
1799
|
"kind": "javascript-module",
|
|
1792
1800
|
"path": "src/component/etc.ts",
|
|
1793
1801
|
"declarations": [
|
|
1802
|
+
{
|
|
1803
|
+
"kind": "variable",
|
|
1804
|
+
"name": "icon",
|
|
1805
|
+
"default": "` <svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 30 30\" style=\"enable-background:new 0 0 30 30;\" xml:space=\"preserve\"> <style type=\"text/css\"> .st0{fill:{{strokeColor}};} </style> <g> <circle class=\"st0\" cx=\"7.1\" cy=\"15\" r=\"2\"/> <circle class=\"st0\" cx=\"15\" cy=\"15\" r=\"2\"/> <circle class=\"st0\" cx=\"22.9\" cy=\"15\" r=\"2\"/> </g> </svg> `"
|
|
1806
|
+
},
|
|
1794
1807
|
{
|
|
1795
1808
|
"kind": "variable",
|
|
1796
1809
|
"name": "etc",
|
|
@@ -1821,7 +1834,7 @@
|
|
|
1821
1834
|
"name": "*",
|
|
1822
1835
|
"declaration": {
|
|
1823
1836
|
"name": "*",
|
|
1824
|
-
"
|
|
1837
|
+
"module": "src/component/restful-attachment-selector.js"
|
|
1825
1838
|
}
|
|
1826
1839
|
},
|
|
1827
1840
|
{
|
|
@@ -1829,7 +1842,7 @@
|
|
|
1829
1842
|
"name": "*",
|
|
1830
1843
|
"declaration": {
|
|
1831
1844
|
"name": "*",
|
|
1832
|
-
"
|
|
1845
|
+
"module": "src/component/restful-input-fill-style.js"
|
|
1833
1846
|
}
|
|
1834
1847
|
},
|
|
1835
1848
|
{
|
|
@@ -1837,7 +1850,7 @@
|
|
|
1837
1850
|
"name": "*",
|
|
1838
1851
|
"declaration": {
|
|
1839
1852
|
"name": "*",
|
|
1840
|
-
"
|
|
1853
|
+
"module": "src/component/etc.js"
|
|
1841
1854
|
}
|
|
1842
1855
|
}
|
|
1843
1856
|
]
|
|
@@ -2332,6 +2345,24 @@
|
|
|
2332
2345
|
},
|
|
2333
2346
|
"tagName": "restful-attachment-selector",
|
|
2334
2347
|
"customElement": true
|
|
2348
|
+
},
|
|
2349
|
+
{
|
|
2350
|
+
"kind": "variable",
|
|
2351
|
+
"name": "filters",
|
|
2352
|
+
"default": "[]"
|
|
2353
|
+
},
|
|
2354
|
+
{
|
|
2355
|
+
"kind": "variable",
|
|
2356
|
+
"name": "sortings",
|
|
2357
|
+
"default": "[]"
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
"kind": "variable",
|
|
2361
|
+
"name": "pagination",
|
|
2362
|
+
"type": {
|
|
2363
|
+
"text": "object"
|
|
2364
|
+
},
|
|
2365
|
+
"default": "{ limit, page }"
|
|
2335
2366
|
}
|
|
2336
2367
|
],
|
|
2337
2368
|
"exports": [
|
|
@@ -4224,6 +4255,19 @@
|
|
|
4224
4255
|
},
|
|
4225
4256
|
"tagName": "ox-editor-board-selector",
|
|
4226
4257
|
"customElement": true
|
|
4258
|
+
},
|
|
4259
|
+
{
|
|
4260
|
+
"kind": "variable",
|
|
4261
|
+
"name": "filters",
|
|
4262
|
+
"type": {
|
|
4263
|
+
"text": "array"
|
|
4264
|
+
},
|
|
4265
|
+
"default": "[]"
|
|
4266
|
+
},
|
|
4267
|
+
{
|
|
4268
|
+
"kind": "variable",
|
|
4269
|
+
"name": "sortings",
|
|
4270
|
+
"default": "[]"
|
|
4227
4271
|
}
|
|
4228
4272
|
],
|
|
4229
4273
|
"exports": [
|
|
@@ -6893,483 +6937,483 @@
|
|
|
6893
6937
|
},
|
|
6894
6938
|
{
|
|
6895
6939
|
"kind": "javascript-module",
|
|
6896
|
-
"path": "src/modeller/property-sidebar/
|
|
6940
|
+
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|
|
6941
|
+
"declarations": [
|
|
6942
|
+
{
|
|
6943
|
+
"kind": "variable",
|
|
6944
|
+
"name": "BoxPaddingEditorStyles",
|
|
6945
|
+
"default": "css` .box-padding { width: 100%; } .box-padding td { background: var(--url-icon-properties-padding) 50% 0 no-repeat; } .box-padding tr:nth-child(1), .box-padding tr:nth-child(3) { height: 20px; } .box-padding tr td:nth-child(1), .box-padding tr td:nth-child(3) { width: 18px; } .box-padding .slide1 { background-position: 0 0; } .box-padding .slide2 { background-position: 50% -40px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide3 { background-position: 100% -440px; } .box-padding .slide4 { background-position: 0 -360px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide5 { background: none; text-align: center; } .box-padding .slide6 { background-position: 100% -160px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide7 { background-position: 0 100%; } .box-padding .slide8 { background-position: 50% -320px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide9 { background-position: 0 0px; } .box-padding input { background-color: transparent; width: 35px; margin: 0px; padding: 0px; clear: both; float: initial; border: 1px solid #fff; border-width: 0 0 1px 0; text-align: right; font-size: 14px; } .slide5 input:nth-child(1), .slide5 input:nth-child(4) { display: block; margin: auto; } .slide5 input:nth-child(2) { float: left; } .slide5 input:nth-child(3) { float: right; margin-top: -25px; } .slide5 input:nth-child(4) { margin-top: -5px; } `"
|
|
6946
|
+
}
|
|
6947
|
+
],
|
|
6948
|
+
"exports": [
|
|
6949
|
+
{
|
|
6950
|
+
"kind": "js",
|
|
6951
|
+
"name": "BoxPaddingEditorStyles",
|
|
6952
|
+
"declaration": {
|
|
6953
|
+
"name": "BoxPaddingEditorStyles",
|
|
6954
|
+
"module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
|
|
6955
|
+
}
|
|
6956
|
+
}
|
|
6957
|
+
]
|
|
6958
|
+
},
|
|
6959
|
+
{
|
|
6960
|
+
"kind": "javascript-module",
|
|
6961
|
+
"path": "src/modeller/property-sidebar/shapes/shapes.ts",
|
|
6897
6962
|
"declarations": [
|
|
6898
6963
|
{
|
|
6899
6964
|
"kind": "class",
|
|
6900
6965
|
"description": "",
|
|
6901
|
-
"name": "
|
|
6966
|
+
"name": "PropertyShapes",
|
|
6902
6967
|
"members": [
|
|
6903
6968
|
{
|
|
6904
6969
|
"kind": "field",
|
|
6905
|
-
"name": "
|
|
6906
|
-
"type": {
|
|
6907
|
-
"text": "Scene | undefined"
|
|
6908
|
-
},
|
|
6909
|
-
"attribute": "scene"
|
|
6910
|
-
},
|
|
6911
|
-
{
|
|
6912
|
-
"kind": "field",
|
|
6913
|
-
"name": "searchText",
|
|
6970
|
+
"name": "value",
|
|
6914
6971
|
"type": {
|
|
6915
|
-
"text": "
|
|
6972
|
+
"text": "Properties | undefined"
|
|
6916
6973
|
},
|
|
6917
|
-
"
|
|
6918
|
-
"default": "''"
|
|
6974
|
+
"attribute": "value"
|
|
6919
6975
|
},
|
|
6920
6976
|
{
|
|
6921
6977
|
"kind": "field",
|
|
6922
|
-
"name": "
|
|
6978
|
+
"name": "bounds",
|
|
6923
6979
|
"type": {
|
|
6924
|
-
"text": "
|
|
6980
|
+
"text": "BOUNDS | null"
|
|
6925
6981
|
},
|
|
6926
|
-
"
|
|
6982
|
+
"default": "null",
|
|
6983
|
+
"attribute": "bounds"
|
|
6927
6984
|
},
|
|
6928
6985
|
{
|
|
6929
6986
|
"kind": "field",
|
|
6930
|
-
"name": "
|
|
6987
|
+
"name": "selected",
|
|
6931
6988
|
"type": {
|
|
6932
|
-
"text": "
|
|
6989
|
+
"text": "Component[]"
|
|
6933
6990
|
},
|
|
6934
|
-
"
|
|
6935
|
-
"
|
|
6936
|
-
},
|
|
6937
|
-
{
|
|
6938
|
-
"kind": "field",
|
|
6939
|
-
"name": "count",
|
|
6940
|
-
"type": {
|
|
6941
|
-
"text": "number"
|
|
6942
|
-
},
|
|
6943
|
-
"privacy": "private",
|
|
6944
|
-
"default": "-1"
|
|
6991
|
+
"default": "[]",
|
|
6992
|
+
"attribute": "selected"
|
|
6945
6993
|
},
|
|
6946
6994
|
{
|
|
6947
6995
|
"kind": "method",
|
|
6948
|
-
"name": "
|
|
6996
|
+
"name": "_onValueChange",
|
|
6949
6997
|
"parameters": [
|
|
6950
6998
|
{
|
|
6951
|
-
"name": "
|
|
6952
|
-
"optional": true,
|
|
6999
|
+
"name": "e",
|
|
6953
7000
|
"type": {
|
|
6954
|
-
"text": "
|
|
7001
|
+
"text": "Event"
|
|
6955
7002
|
}
|
|
6956
7003
|
}
|
|
6957
|
-
]
|
|
6958
|
-
|
|
6959
|
-
|
|
6960
|
-
|
|
6961
|
-
|
|
7004
|
+
],
|
|
7005
|
+
"inheritedFrom": {
|
|
7006
|
+
"name": "AbstractProperty",
|
|
7007
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7008
|
+
}
|
|
6962
7009
|
},
|
|
6963
7010
|
{
|
|
6964
7011
|
"kind": "method",
|
|
6965
|
-
"name": "
|
|
7012
|
+
"name": "_hasTextProperty",
|
|
6966
7013
|
"parameters": [
|
|
6967
7014
|
{
|
|
6968
|
-
"name": "
|
|
7015
|
+
"name": "selected",
|
|
6969
7016
|
"type": {
|
|
6970
|
-
"text": "
|
|
7017
|
+
"text": "Component[]"
|
|
6971
7018
|
}
|
|
6972
7019
|
}
|
|
6973
7020
|
]
|
|
6974
7021
|
},
|
|
6975
7022
|
{
|
|
6976
7023
|
"kind": "method",
|
|
6977
|
-
"name": "
|
|
7024
|
+
"name": "_hasProperties",
|
|
6978
7025
|
"parameters": [
|
|
6979
7026
|
{
|
|
6980
|
-
"name": "
|
|
7027
|
+
"name": "selected",
|
|
6981
7028
|
"type": {
|
|
6982
|
-
"text": "
|
|
7029
|
+
"text": "Component[]"
|
|
6983
7030
|
}
|
|
6984
7031
|
}
|
|
6985
7032
|
]
|
|
6986
7033
|
},
|
|
6987
|
-
{
|
|
6988
|
-
"kind": "field",
|
|
6989
|
-
"name": "extendedMap",
|
|
6990
|
-
"readonly": true
|
|
6991
|
-
},
|
|
6992
7034
|
{
|
|
6993
7035
|
"kind": "method",
|
|
6994
|
-
"name": "
|
|
7036
|
+
"name": "_isIdentifiable",
|
|
6995
7037
|
"parameters": [
|
|
6996
7038
|
{
|
|
6997
|
-
"name": "
|
|
7039
|
+
"name": "selected",
|
|
6998
7040
|
"type": {
|
|
6999
|
-
"text": "Component"
|
|
7041
|
+
"text": "Component[]"
|
|
7000
7042
|
}
|
|
7001
7043
|
}
|
|
7002
7044
|
]
|
|
7003
7045
|
},
|
|
7004
7046
|
{
|
|
7005
7047
|
"kind": "method",
|
|
7006
|
-
"name": "
|
|
7048
|
+
"name": "_isClassIdentifiable",
|
|
7007
7049
|
"parameters": [
|
|
7008
7050
|
{
|
|
7009
|
-
"name": "
|
|
7051
|
+
"name": "selected",
|
|
7010
7052
|
"type": {
|
|
7011
|
-
"text": "Component"
|
|
7053
|
+
"text": "Component[]"
|
|
7012
7054
|
}
|
|
7013
7055
|
}
|
|
7014
7056
|
]
|
|
7015
7057
|
},
|
|
7016
7058
|
{
|
|
7017
7059
|
"kind": "method",
|
|
7018
|
-
"name": "
|
|
7060
|
+
"name": "_isLine",
|
|
7019
7061
|
"parameters": [
|
|
7020
7062
|
{
|
|
7021
|
-
"name": "
|
|
7063
|
+
"name": "selected",
|
|
7022
7064
|
"type": {
|
|
7023
|
-
"text": "Component"
|
|
7065
|
+
"text": "Component[]"
|
|
7024
7066
|
}
|
|
7025
7067
|
}
|
|
7026
7068
|
]
|
|
7027
7069
|
},
|
|
7028
7070
|
{
|
|
7029
7071
|
"kind": "method",
|
|
7030
|
-
"name": "
|
|
7072
|
+
"name": "_is3dish",
|
|
7031
7073
|
"parameters": [
|
|
7032
7074
|
{
|
|
7033
|
-
"name": "
|
|
7075
|
+
"name": "selected",
|
|
7034
7076
|
"type": {
|
|
7035
|
-
"text": "Component"
|
|
7077
|
+
"text": "Component[]"
|
|
7036
7078
|
}
|
|
7037
7079
|
}
|
|
7038
7080
|
]
|
|
7039
7081
|
},
|
|
7040
7082
|
{
|
|
7041
7083
|
"kind": "method",
|
|
7042
|
-
"name": "
|
|
7084
|
+
"name": "_getValueFromEventTarget",
|
|
7043
7085
|
"parameters": [
|
|
7044
7086
|
{
|
|
7045
|
-
"name": "
|
|
7046
|
-
"type": {
|
|
7047
|
-
"text": "Component"
|
|
7048
|
-
}
|
|
7049
|
-
},
|
|
7050
|
-
{
|
|
7051
|
-
"name": "append",
|
|
7052
|
-
"default": "false",
|
|
7087
|
+
"name": "element",
|
|
7053
7088
|
"type": {
|
|
7054
|
-
"text": "
|
|
7089
|
+
"text": "HTMLElement"
|
|
7055
7090
|
}
|
|
7056
7091
|
}
|
|
7057
|
-
]
|
|
7092
|
+
],
|
|
7093
|
+
"inheritedFrom": {
|
|
7094
|
+
"name": "AbstractProperty",
|
|
7095
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7096
|
+
}
|
|
7058
7097
|
},
|
|
7059
7098
|
{
|
|
7060
7099
|
"kind": "method",
|
|
7061
|
-
"name": "
|
|
7062
|
-
"return": {
|
|
7063
|
-
"type": {
|
|
7064
|
-
"text": "boolean"
|
|
7065
|
-
}
|
|
7066
|
-
},
|
|
7100
|
+
"name": "_onAfterValueChange",
|
|
7067
7101
|
"parameters": [
|
|
7068
7102
|
{
|
|
7069
|
-
"name": "
|
|
7103
|
+
"name": "key",
|
|
7070
7104
|
"type": {
|
|
7071
|
-
"text": "
|
|
7105
|
+
"text": "string"
|
|
7072
7106
|
}
|
|
7073
7107
|
},
|
|
7074
7108
|
{
|
|
7075
|
-
"name": "
|
|
7076
|
-
"default": "false",
|
|
7109
|
+
"name": "value",
|
|
7077
7110
|
"type": {
|
|
7078
|
-
"text": "
|
|
7111
|
+
"text": "any"
|
|
7079
7112
|
}
|
|
7080
7113
|
}
|
|
7081
|
-
]
|
|
7114
|
+
],
|
|
7115
|
+
"inheritedFrom": {
|
|
7116
|
+
"name": "AbstractProperty",
|
|
7117
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7118
|
+
}
|
|
7119
|
+
}
|
|
7120
|
+
],
|
|
7121
|
+
"events": [
|
|
7122
|
+
{
|
|
7123
|
+
"name": "bounds-change",
|
|
7124
|
+
"type": {
|
|
7125
|
+
"text": "CustomEvent"
|
|
7126
|
+
}
|
|
7082
7127
|
},
|
|
7083
7128
|
{
|
|
7084
|
-
"
|
|
7085
|
-
"
|
|
7086
|
-
|
|
7087
|
-
"type": {
|
|
7088
|
-
"text": "TemplateResult"
|
|
7089
|
-
}
|
|
7129
|
+
"name": "property-change",
|
|
7130
|
+
"type": {
|
|
7131
|
+
"text": "CustomEvent"
|
|
7090
7132
|
},
|
|
7091
|
-
"
|
|
7092
|
-
|
|
7093
|
-
|
|
7094
|
-
|
|
7095
|
-
"text": "Component"
|
|
7096
|
-
}
|
|
7097
|
-
},
|
|
7098
|
-
{
|
|
7099
|
-
"name": "depth",
|
|
7100
|
-
"type": {
|
|
7101
|
-
"text": "number"
|
|
7102
|
-
}
|
|
7103
|
-
}
|
|
7104
|
-
]
|
|
7133
|
+
"inheritedFrom": {
|
|
7134
|
+
"name": "AbstractProperty",
|
|
7135
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7136
|
+
}
|
|
7105
7137
|
}
|
|
7106
7138
|
],
|
|
7107
7139
|
"attributes": [
|
|
7108
7140
|
{
|
|
7109
|
-
"name": "
|
|
7141
|
+
"name": "value",
|
|
7110
7142
|
"type": {
|
|
7111
|
-
"text": "
|
|
7143
|
+
"text": "Properties | undefined"
|
|
7112
7144
|
},
|
|
7113
|
-
"fieldName": "
|
|
7145
|
+
"fieldName": "value"
|
|
7146
|
+
},
|
|
7147
|
+
{
|
|
7148
|
+
"name": "bounds",
|
|
7149
|
+
"type": {
|
|
7150
|
+
"text": "BOUNDS | null"
|
|
7151
|
+
},
|
|
7152
|
+
"default": "null",
|
|
7153
|
+
"fieldName": "bounds"
|
|
7154
|
+
},
|
|
7155
|
+
{
|
|
7156
|
+
"name": "selected",
|
|
7157
|
+
"type": {
|
|
7158
|
+
"text": "Component[]"
|
|
7159
|
+
},
|
|
7160
|
+
"default": "[]",
|
|
7161
|
+
"fieldName": "selected"
|
|
7114
7162
|
}
|
|
7115
7163
|
],
|
|
7116
7164
|
"superclass": {
|
|
7117
|
-
"name": "
|
|
7118
|
-
"
|
|
7119
|
-
},
|
|
7120
|
-
"customElement": true
|
|
7121
|
-
}
|
|
7122
|
-
],
|
|
7123
|
-
"exports": [
|
|
7124
|
-
{
|
|
7125
|
-
"kind": "js",
|
|
7126
|
-
"name": "SceneInspector",
|
|
7127
|
-
"declaration": {
|
|
7128
|
-
"name": "SceneInspector",
|
|
7129
|
-
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
7165
|
+
"name": "AbstractProperty",
|
|
7166
|
+
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
7130
7167
|
}
|
|
7131
7168
|
}
|
|
7132
|
-
]
|
|
7133
|
-
},
|
|
7134
|
-
{
|
|
7135
|
-
"kind": "javascript-module",
|
|
7136
|
-
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|
|
7137
|
-
"declarations": [
|
|
7138
|
-
{
|
|
7139
|
-
"kind": "variable",
|
|
7140
|
-
"name": "BoxPaddingEditorStyles",
|
|
7141
|
-
"default": "css` .box-padding { width: 100%; } .box-padding td { background: var(--url-icon-properties-padding) 50% 0 no-repeat; } .box-padding tr:nth-child(1), .box-padding tr:nth-child(3) { height: 20px; } .box-padding tr td:nth-child(1), .box-padding tr td:nth-child(3) { width: 18px; } .box-padding .slide1 { background-position: 0 0; } .box-padding .slide2 { background-position: 50% -40px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide3 { background-position: 100% -440px; } .box-padding .slide4 { background-position: 0 -360px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide5 { background: none; text-align: center; } .box-padding .slide6 { background-position: 100% -160px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide7 { background-position: 0 100%; } .box-padding .slide8 { background-position: 50% -320px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide9 { background-position: 0 0px; } .box-padding input { background-color: transparent; width: 35px; margin: 0px; padding: 0px; clear: both; float: initial; border: 1px solid #fff; border-width: 0 0 1px 0; text-align: right; font-size: 14px; } .slide5 input:nth-child(1), .slide5 input:nth-child(4) { display: block; margin: auto; } .slide5 input:nth-child(2) { float: left; } .slide5 input:nth-child(3) { float: right; margin-top: -25px; } .slide5 input:nth-child(4) { margin-top: -5px; } `"
|
|
7142
|
-
}
|
|
7143
7169
|
],
|
|
7144
7170
|
"exports": [
|
|
7145
7171
|
{
|
|
7146
7172
|
"kind": "js",
|
|
7147
|
-
"name": "
|
|
7173
|
+
"name": "PropertyShapes",
|
|
7148
7174
|
"declaration": {
|
|
7149
|
-
"name": "
|
|
7150
|
-
"module": "src/modeller/property-sidebar/shapes/
|
|
7175
|
+
"name": "PropertyShapes",
|
|
7176
|
+
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
7151
7177
|
}
|
|
7152
7178
|
}
|
|
7153
7179
|
]
|
|
7154
7180
|
},
|
|
7155
7181
|
{
|
|
7156
7182
|
"kind": "javascript-module",
|
|
7157
|
-
"path": "src/modeller/property-sidebar/
|
|
7183
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
7158
7184
|
"declarations": [
|
|
7159
7185
|
{
|
|
7160
7186
|
"kind": "class",
|
|
7161
7187
|
"description": "",
|
|
7162
|
-
"name": "
|
|
7188
|
+
"name": "SceneInspector",
|
|
7163
7189
|
"members": [
|
|
7164
7190
|
{
|
|
7165
7191
|
"kind": "field",
|
|
7166
|
-
"name": "
|
|
7192
|
+
"name": "scene",
|
|
7167
7193
|
"type": {
|
|
7168
|
-
"text": "
|
|
7194
|
+
"text": "Scene | undefined"
|
|
7169
7195
|
},
|
|
7170
|
-
"attribute": "
|
|
7196
|
+
"attribute": "scene"
|
|
7171
7197
|
},
|
|
7172
7198
|
{
|
|
7173
7199
|
"kind": "field",
|
|
7174
|
-
"name": "
|
|
7200
|
+
"name": "searchText",
|
|
7175
7201
|
"type": {
|
|
7176
|
-
"text": "
|
|
7202
|
+
"text": "string"
|
|
7177
7203
|
},
|
|
7178
|
-
"
|
|
7179
|
-
"
|
|
7204
|
+
"privacy": "private",
|
|
7205
|
+
"default": "''"
|
|
7180
7206
|
},
|
|
7181
7207
|
{
|
|
7182
7208
|
"kind": "field",
|
|
7183
|
-
"name": "
|
|
7209
|
+
"name": "_extendedMap",
|
|
7184
7210
|
"type": {
|
|
7185
|
-
"text": "
|
|
7211
|
+
"text": "any"
|
|
7186
7212
|
},
|
|
7187
|
-
"
|
|
7188
|
-
|
|
7213
|
+
"privacy": "private"
|
|
7214
|
+
},
|
|
7215
|
+
{
|
|
7216
|
+
"kind": "field",
|
|
7217
|
+
"name": "show",
|
|
7218
|
+
"type": {
|
|
7219
|
+
"text": "boolean"
|
|
7220
|
+
},
|
|
7221
|
+
"privacy": "private",
|
|
7222
|
+
"default": "false"
|
|
7223
|
+
},
|
|
7224
|
+
{
|
|
7225
|
+
"kind": "field",
|
|
7226
|
+
"name": "count",
|
|
7227
|
+
"type": {
|
|
7228
|
+
"text": "number"
|
|
7229
|
+
},
|
|
7230
|
+
"privacy": "private",
|
|
7231
|
+
"default": "-1"
|
|
7189
7232
|
},
|
|
7190
7233
|
{
|
|
7191
7234
|
"kind": "method",
|
|
7192
|
-
"name": "
|
|
7235
|
+
"name": "disconnectScene",
|
|
7193
7236
|
"parameters": [
|
|
7194
7237
|
{
|
|
7195
|
-
"name": "
|
|
7238
|
+
"name": "scene",
|
|
7239
|
+
"optional": true,
|
|
7196
7240
|
"type": {
|
|
7197
|
-
"text": "
|
|
7241
|
+
"text": "Scene"
|
|
7198
7242
|
}
|
|
7199
7243
|
}
|
|
7200
|
-
]
|
|
7201
|
-
"inheritedFrom": {
|
|
7202
|
-
"name": "AbstractProperty",
|
|
7203
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7204
|
-
}
|
|
7244
|
+
]
|
|
7205
7245
|
},
|
|
7206
7246
|
{
|
|
7207
7247
|
"kind": "method",
|
|
7208
|
-
"name": "
|
|
7248
|
+
"name": "refresh"
|
|
7249
|
+
},
|
|
7250
|
+
{
|
|
7251
|
+
"kind": "method",
|
|
7252
|
+
"name": "_onclick",
|
|
7209
7253
|
"parameters": [
|
|
7210
7254
|
{
|
|
7211
|
-
"name": "
|
|
7255
|
+
"name": "e",
|
|
7212
7256
|
"type": {
|
|
7213
|
-
"text": "
|
|
7257
|
+
"text": "MouseEvent"
|
|
7214
7258
|
}
|
|
7215
7259
|
}
|
|
7216
7260
|
]
|
|
7217
7261
|
},
|
|
7218
7262
|
{
|
|
7219
7263
|
"kind": "method",
|
|
7220
|
-
"name": "
|
|
7264
|
+
"name": "_ondblclick",
|
|
7221
7265
|
"parameters": [
|
|
7222
7266
|
{
|
|
7223
|
-
"name": "
|
|
7267
|
+
"name": "e",
|
|
7224
7268
|
"type": {
|
|
7225
|
-
"text": "
|
|
7269
|
+
"text": "MouseEvent"
|
|
7226
7270
|
}
|
|
7227
7271
|
}
|
|
7228
7272
|
]
|
|
7229
7273
|
},
|
|
7274
|
+
{
|
|
7275
|
+
"kind": "field",
|
|
7276
|
+
"name": "extendedMap",
|
|
7277
|
+
"readonly": true
|
|
7278
|
+
},
|
|
7230
7279
|
{
|
|
7231
7280
|
"kind": "method",
|
|
7232
|
-
"name": "
|
|
7281
|
+
"name": "getNodeHandleClass",
|
|
7233
7282
|
"parameters": [
|
|
7234
7283
|
{
|
|
7235
|
-
"name": "
|
|
7284
|
+
"name": "component",
|
|
7236
7285
|
"type": {
|
|
7237
|
-
"text": "Component
|
|
7286
|
+
"text": "Component"
|
|
7238
7287
|
}
|
|
7239
7288
|
}
|
|
7240
7289
|
]
|
|
7241
7290
|
},
|
|
7242
7291
|
{
|
|
7243
7292
|
"kind": "method",
|
|
7244
|
-
"name": "
|
|
7293
|
+
"name": "isExtended",
|
|
7245
7294
|
"parameters": [
|
|
7246
7295
|
{
|
|
7247
|
-
"name": "
|
|
7296
|
+
"name": "component",
|
|
7248
7297
|
"type": {
|
|
7249
|
-
"text": "Component
|
|
7298
|
+
"text": "Component"
|
|
7250
7299
|
}
|
|
7251
7300
|
}
|
|
7252
7301
|
]
|
|
7253
7302
|
},
|
|
7254
7303
|
{
|
|
7255
7304
|
"kind": "method",
|
|
7256
|
-
"name": "
|
|
7305
|
+
"name": "toggleExtended",
|
|
7257
7306
|
"parameters": [
|
|
7258
7307
|
{
|
|
7259
|
-
"name": "
|
|
7308
|
+
"name": "component",
|
|
7260
7309
|
"type": {
|
|
7261
|
-
"text": "Component
|
|
7310
|
+
"text": "Component"
|
|
7262
7311
|
}
|
|
7263
7312
|
}
|
|
7264
7313
|
]
|
|
7265
7314
|
},
|
|
7266
7315
|
{
|
|
7267
7316
|
"kind": "method",
|
|
7268
|
-
"name": "
|
|
7317
|
+
"name": "toggleHidden",
|
|
7269
7318
|
"parameters": [
|
|
7270
7319
|
{
|
|
7271
|
-
"name": "
|
|
7320
|
+
"name": "component",
|
|
7272
7321
|
"type": {
|
|
7273
|
-
"text": "Component
|
|
7322
|
+
"text": "Component"
|
|
7274
7323
|
}
|
|
7275
7324
|
}
|
|
7276
7325
|
]
|
|
7277
7326
|
},
|
|
7278
7327
|
{
|
|
7279
7328
|
"kind": "method",
|
|
7280
|
-
"name": "
|
|
7329
|
+
"name": "selectComponent",
|
|
7281
7330
|
"parameters": [
|
|
7282
7331
|
{
|
|
7283
|
-
"name": "
|
|
7332
|
+
"name": "component",
|
|
7284
7333
|
"type": {
|
|
7285
|
-
"text": "
|
|
7334
|
+
"text": "Component"
|
|
7335
|
+
}
|
|
7336
|
+
},
|
|
7337
|
+
{
|
|
7338
|
+
"name": "append",
|
|
7339
|
+
"default": "false",
|
|
7340
|
+
"type": {
|
|
7341
|
+
"text": "boolean"
|
|
7286
7342
|
}
|
|
7287
7343
|
}
|
|
7288
|
-
]
|
|
7289
|
-
"inheritedFrom": {
|
|
7290
|
-
"name": "AbstractProperty",
|
|
7291
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7292
|
-
}
|
|
7344
|
+
]
|
|
7293
7345
|
},
|
|
7294
7346
|
{
|
|
7295
7347
|
"kind": "method",
|
|
7296
|
-
"name": "
|
|
7348
|
+
"name": "shouldBeShown",
|
|
7349
|
+
"return": {
|
|
7350
|
+
"type": {
|
|
7351
|
+
"text": "boolean"
|
|
7352
|
+
}
|
|
7353
|
+
},
|
|
7297
7354
|
"parameters": [
|
|
7298
7355
|
{
|
|
7299
|
-
"name": "
|
|
7356
|
+
"name": "component",
|
|
7300
7357
|
"type": {
|
|
7301
|
-
"text": "
|
|
7358
|
+
"text": "Component"
|
|
7302
7359
|
}
|
|
7303
7360
|
},
|
|
7304
7361
|
{
|
|
7305
|
-
"name": "
|
|
7362
|
+
"name": "counting",
|
|
7363
|
+
"default": "false",
|
|
7306
7364
|
"type": {
|
|
7307
|
-
"text": "
|
|
7365
|
+
"text": "boolean"
|
|
7308
7366
|
}
|
|
7309
7367
|
}
|
|
7310
|
-
]
|
|
7311
|
-
"inheritedFrom": {
|
|
7312
|
-
"name": "AbstractProperty",
|
|
7313
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7314
|
-
}
|
|
7315
|
-
}
|
|
7316
|
-
],
|
|
7317
|
-
"events": [
|
|
7318
|
-
{
|
|
7319
|
-
"name": "bounds-change",
|
|
7320
|
-
"type": {
|
|
7321
|
-
"text": "CustomEvent"
|
|
7322
|
-
}
|
|
7368
|
+
]
|
|
7323
7369
|
},
|
|
7324
7370
|
{
|
|
7325
|
-
"
|
|
7326
|
-
"
|
|
7327
|
-
|
|
7371
|
+
"kind": "method",
|
|
7372
|
+
"name": "renderComponent",
|
|
7373
|
+
"return": {
|
|
7374
|
+
"type": {
|
|
7375
|
+
"text": "TemplateResult"
|
|
7376
|
+
}
|
|
7328
7377
|
},
|
|
7329
|
-
"
|
|
7330
|
-
|
|
7331
|
-
|
|
7332
|
-
|
|
7378
|
+
"parameters": [
|
|
7379
|
+
{
|
|
7380
|
+
"name": "component",
|
|
7381
|
+
"type": {
|
|
7382
|
+
"text": "Component"
|
|
7383
|
+
}
|
|
7384
|
+
},
|
|
7385
|
+
{
|
|
7386
|
+
"name": "depth",
|
|
7387
|
+
"type": {
|
|
7388
|
+
"text": "number"
|
|
7389
|
+
}
|
|
7390
|
+
}
|
|
7391
|
+
]
|
|
7333
7392
|
}
|
|
7334
7393
|
],
|
|
7335
7394
|
"attributes": [
|
|
7336
7395
|
{
|
|
7337
|
-
"name": "
|
|
7338
|
-
"type": {
|
|
7339
|
-
"text": "Properties | undefined"
|
|
7340
|
-
},
|
|
7341
|
-
"fieldName": "value"
|
|
7342
|
-
},
|
|
7343
|
-
{
|
|
7344
|
-
"name": "bounds",
|
|
7345
|
-
"type": {
|
|
7346
|
-
"text": "BOUNDS | null"
|
|
7347
|
-
},
|
|
7348
|
-
"default": "null",
|
|
7349
|
-
"fieldName": "bounds"
|
|
7350
|
-
},
|
|
7351
|
-
{
|
|
7352
|
-
"name": "selected",
|
|
7396
|
+
"name": "scene",
|
|
7353
7397
|
"type": {
|
|
7354
|
-
"text": "
|
|
7398
|
+
"text": "Scene | undefined"
|
|
7355
7399
|
},
|
|
7356
|
-
"
|
|
7357
|
-
"fieldName": "selected"
|
|
7400
|
+
"fieldName": "scene"
|
|
7358
7401
|
}
|
|
7359
7402
|
],
|
|
7360
7403
|
"superclass": {
|
|
7361
|
-
"name": "
|
|
7362
|
-
"
|
|
7363
|
-
}
|
|
7404
|
+
"name": "LitElement",
|
|
7405
|
+
"package": "lit"
|
|
7406
|
+
},
|
|
7407
|
+
"customElement": true
|
|
7364
7408
|
}
|
|
7365
7409
|
],
|
|
7366
7410
|
"exports": [
|
|
7367
7411
|
{
|
|
7368
7412
|
"kind": "js",
|
|
7369
|
-
"name": "
|
|
7413
|
+
"name": "SceneInspector",
|
|
7370
7414
|
"declaration": {
|
|
7371
|
-
"name": "
|
|
7372
|
-
"module": "src/modeller/property-sidebar/
|
|
7415
|
+
"name": "SceneInspector",
|
|
7416
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
7373
7417
|
}
|
|
7374
7418
|
}
|
|
7375
7419
|
]
|