@fmsim/board 1.0.71 → 1.0.73
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 +849 -843
- package/dist/src/component/etc.js +1 -2
- package/dist/src/component/etc.js.map +1 -1
- package/dist/src/modeller/property-sidebar/effects/effects.js +1 -1
- package/dist/src/modeller/property-sidebar/effects/effects.js.map +1 -1
- package/dist/src/modeller/property-sidebar/effects/property-event-tap.js +1 -1
- package/dist/src/modeller/property-sidebar/effects/property-event-tap.js.map +1 -1
- package/dist/src/ox-board-modeller.js +1 -1
- package/dist/src/ox-board-modeller.js.map +1 -1
- package/dist/src/ox-board-viewer.d.ts +3 -3
- package/dist/src/ox-board-viewer.js +37 -18
- package/dist/src/ox-board-viewer.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
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",
|
|
@@ -1088,9 +1003,10 @@
|
|
|
1088
1003
|
"kind": "field",
|
|
1089
1004
|
"name": "popup",
|
|
1090
1005
|
"type": {
|
|
1091
|
-
"text": "BoardComponentInfo |
|
|
1006
|
+
"text": "BoardComponentInfo | null"
|
|
1092
1007
|
},
|
|
1093
|
-
"privacy": "private"
|
|
1008
|
+
"privacy": "private",
|
|
1009
|
+
"default": "null"
|
|
1094
1010
|
},
|
|
1095
1011
|
{
|
|
1096
1012
|
"kind": "field",
|
|
@@ -1200,6 +1116,11 @@
|
|
|
1200
1116
|
}
|
|
1201
1117
|
]
|
|
1202
1118
|
},
|
|
1119
|
+
{
|
|
1120
|
+
"kind": "field",
|
|
1121
|
+
"name": "resizeHandler",
|
|
1122
|
+
"privacy": "private"
|
|
1123
|
+
},
|
|
1203
1124
|
{
|
|
1204
1125
|
"kind": "method",
|
|
1205
1126
|
"name": "bindSceneEvents"
|
|
@@ -1383,20 +1304,20 @@
|
|
|
1383
1304
|
},
|
|
1384
1305
|
{
|
|
1385
1306
|
"kind": "method",
|
|
1386
|
-
"name": "
|
|
1307
|
+
"name": "onOpenPopup",
|
|
1387
1308
|
"parameters": [
|
|
1388
1309
|
{
|
|
1389
|
-
"name": "
|
|
1310
|
+
"name": "popup",
|
|
1390
1311
|
"type": {
|
|
1391
|
-
"text": "
|
|
1312
|
+
"text": "string"
|
|
1392
1313
|
}
|
|
1393
|
-
}
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"name": "value",
|
|
1317
|
+
"type": {
|
|
1318
|
+
"text": "any"
|
|
1319
|
+
}
|
|
1320
|
+
},
|
|
1400
1321
|
{
|
|
1401
1322
|
"name": "component",
|
|
1402
1323
|
"type": {
|
|
@@ -1783,138 +1704,131 @@
|
|
|
1783
1704
|
},
|
|
1784
1705
|
{
|
|
1785
1706
|
"kind": "javascript-module",
|
|
1786
|
-
"path": "
|
|
1707
|
+
"path": "stories/restful-attachment-selector.stories.ts",
|
|
1787
1708
|
"declarations": [
|
|
1788
1709
|
{
|
|
1789
|
-
"kind": "
|
|
1790
|
-
"
|
|
1791
|
-
"
|
|
1792
|
-
|
|
1793
|
-
{
|
|
1794
|
-
"kind": "field",
|
|
1795
|
-
"name": "id",
|
|
1796
|
-
"type": {
|
|
1797
|
-
"text": "string"
|
|
1798
|
-
},
|
|
1799
|
-
"privacy": "private",
|
|
1800
|
-
"default": "id"
|
|
1801
|
-
},
|
|
1802
|
-
{
|
|
1803
|
-
"kind": "method",
|
|
1804
|
-
"name": "load",
|
|
1805
|
-
"privacy": "public",
|
|
1806
|
-
"return": {
|
|
1807
|
-
"type": {
|
|
1808
|
-
"text": "Promise<any>"
|
|
1809
|
-
}
|
|
1810
|
-
},
|
|
1811
|
-
"parameters": [
|
|
1812
|
-
{
|
|
1813
|
-
"name": "key",
|
|
1814
|
-
"type": {
|
|
1815
|
-
"text": "Component"
|
|
1816
|
-
}
|
|
1817
|
-
}
|
|
1818
|
-
]
|
|
1819
|
-
},
|
|
1820
|
-
{
|
|
1821
|
-
"kind": "method",
|
|
1822
|
-
"name": "save",
|
|
1823
|
-
"privacy": "public",
|
|
1824
|
-
"return": {
|
|
1825
|
-
"type": {
|
|
1826
|
-
"text": "Promise<void>"
|
|
1827
|
-
}
|
|
1828
|
-
},
|
|
1829
|
-
"parameters": [
|
|
1830
|
-
{
|
|
1831
|
-
"name": "key",
|
|
1832
|
-
"type": {
|
|
1833
|
-
"text": "Component"
|
|
1834
|
-
}
|
|
1835
|
-
},
|
|
1836
|
-
{
|
|
1837
|
-
"name": "value",
|
|
1838
|
-
"type": {
|
|
1839
|
-
"text": "any"
|
|
1840
|
-
}
|
|
1841
|
-
}
|
|
1842
|
-
]
|
|
1843
|
-
},
|
|
1844
|
-
{
|
|
1845
|
-
"kind": "method",
|
|
1846
|
-
"name": "clear",
|
|
1847
|
-
"privacy": "public",
|
|
1848
|
-
"return": {
|
|
1849
|
-
"type": {
|
|
1850
|
-
"text": "Promise<void>"
|
|
1851
|
-
}
|
|
1852
|
-
},
|
|
1853
|
-
"parameters": [
|
|
1854
|
-
{
|
|
1855
|
-
"name": "key",
|
|
1856
|
-
"type": {
|
|
1857
|
-
"text": "Component"
|
|
1858
|
-
}
|
|
1859
|
-
}
|
|
1860
|
-
]
|
|
1861
|
-
}
|
|
1862
|
-
]
|
|
1863
|
-
}
|
|
1864
|
-
],
|
|
1865
|
-
"exports": [
|
|
1710
|
+
"kind": "variable",
|
|
1711
|
+
"name": "meta",
|
|
1712
|
+
"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"
|
|
1713
|
+
},
|
|
1866
1714
|
{
|
|
1867
|
-
"kind": "
|
|
1868
|
-
"name": "
|
|
1869
|
-
"
|
|
1870
|
-
"
|
|
1871
|
-
|
|
1872
|
-
}
|
|
1873
|
-
}
|
|
1874
|
-
]
|
|
1875
|
-
},
|
|
1876
|
-
{
|
|
1877
|
-
"kind": "javascript-module",
|
|
1878
|
-
"path": "src/component/etc.ts",
|
|
1879
|
-
"declarations": [
|
|
1715
|
+
"kind": "variable",
|
|
1716
|
+
"name": "Default",
|
|
1717
|
+
"type": {
|
|
1718
|
+
"text": "Story"
|
|
1719
|
+
},
|
|
1720
|
+
"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' } }"
|
|
1721
|
+
},
|
|
1880
1722
|
{
|
|
1881
1723
|
"kind": "variable",
|
|
1882
|
-
"name": "
|
|
1724
|
+
"name": "WithCategory",
|
|
1883
1725
|
"type": {
|
|
1884
|
-
"text": "
|
|
1726
|
+
"text": "Story"
|
|
1727
|
+
},
|
|
1728
|
+
"default": "{ ...Default, args: { ...Default.args, category: 'document' } }"
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"kind": "variable",
|
|
1732
|
+
"name": "ReadOnly",
|
|
1733
|
+
"type": {
|
|
1734
|
+
"text": "Story"
|
|
1735
|
+
},
|
|
1736
|
+
"default": "{ ...Default, args: { ...Default.args, creatable: false } }"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"kind": "variable",
|
|
1740
|
+
"name": "WithTestData",
|
|
1741
|
+
"type": {
|
|
1742
|
+
"text": "Story"
|
|
1885
1743
|
},
|
|
1886
|
-
"default": "{
|
|
1744
|
+
"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' } ] } } }"
|
|
1887
1745
|
}
|
|
1888
1746
|
],
|
|
1889
1747
|
"exports": [
|
|
1890
1748
|
{
|
|
1891
1749
|
"kind": "js",
|
|
1892
|
-
"name": "
|
|
1750
|
+
"name": "default",
|
|
1893
1751
|
"declaration": {
|
|
1894
|
-
"name": "
|
|
1895
|
-
"module": "
|
|
1752
|
+
"name": "meta",
|
|
1753
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1896
1754
|
}
|
|
1897
|
-
}
|
|
1898
|
-
]
|
|
1899
|
-
},
|
|
1900
|
-
{
|
|
1901
|
-
"kind": "javascript-module",
|
|
1902
|
-
"path": "src/component/index.ts",
|
|
1903
|
-
"declarations": [],
|
|
1904
|
-
"exports": [
|
|
1755
|
+
},
|
|
1905
1756
|
{
|
|
1906
1757
|
"kind": "js",
|
|
1907
|
-
"name": "
|
|
1758
|
+
"name": "Default",
|
|
1908
1759
|
"declaration": {
|
|
1909
|
-
"name": "
|
|
1910
|
-
"
|
|
1760
|
+
"name": "Default",
|
|
1761
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1911
1762
|
}
|
|
1912
1763
|
},
|
|
1913
1764
|
{
|
|
1914
1765
|
"kind": "js",
|
|
1915
|
-
"name": "
|
|
1766
|
+
"name": "WithCategory",
|
|
1916
1767
|
"declaration": {
|
|
1917
|
-
"name": "
|
|
1768
|
+
"name": "WithCategory",
|
|
1769
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1770
|
+
}
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"kind": "js",
|
|
1774
|
+
"name": "ReadOnly",
|
|
1775
|
+
"declaration": {
|
|
1776
|
+
"name": "ReadOnly",
|
|
1777
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1778
|
+
}
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"kind": "js",
|
|
1782
|
+
"name": "WithTestData",
|
|
1783
|
+
"declaration": {
|
|
1784
|
+
"name": "WithTestData",
|
|
1785
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1786
|
+
}
|
|
1787
|
+
}
|
|
1788
|
+
]
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"kind": "javascript-module",
|
|
1792
|
+
"path": "src/component/etc.ts",
|
|
1793
|
+
"declarations": [
|
|
1794
|
+
{
|
|
1795
|
+
"kind": "variable",
|
|
1796
|
+
"name": "etc",
|
|
1797
|
+
"type": {
|
|
1798
|
+
"text": "ComponentGroup"
|
|
1799
|
+
},
|
|
1800
|
+
"default": "{ name: 'etc', description: 'a group of components that have not yet been defined.', icon, templates: [ { type: 'rect', description: 'rectangle shape', icon: rect, group: 'shape', model: { type: 'rect', left: 100, top: 100, width: 100, height: 100, fillStyle: '#fff', strokeStyle: '#000', alpha: 1, hidden: false, lineWidth: 1, lineDash: 'solid', lineCap: 'butt' } }, { type: 'ellipse', description: 'ellipse shape', icon: ellipse, group: 'shape', model: { type: 'ellipse', rx: 50, ry: 50, cx: 150, cy: 150, fillStyle: '#fff', strokeStyle: '#000', alpha: 1, hidden: false, lineWidth: 1, lineDash: 'solid', lineCap: 'butt' } }, { type: 'triangle', description: 'triangle shape', icon: triangle, group: 'shape', model: { type: 'triangle', x1: 150, y1: 100, x2: 100, y2: 200, x3: 200, y3: 200, fillStyle: '#fff', strokeStyle: '#000', alpha: 1, hidden: false, lineWidth: 1, lineDash: 'solid', lineCap: 'butt' } }, { type: 'line', description: 'simple line', icon: lineIcon, group: 'line', model: { type: 'line', x1: 100, y1: 100, x2: 200, y2: 200, fillStyle: '#fff', strokeStyle: '#000', alpha: 1, hidden: false, lineWidth: 3, lineDash: 'solid', lineCap: 'butt' } }, { type: 'dash', description: 'dash line', icon: dash, group: 'line', model: { type: 'line', x1: 100, y1: 100, x2: 200, y2: 200, fillStyle: '#fff', strokeStyle: '#000', alpha: 1, hidden: false, lineWidth: 3, lineDash: 'round-dot', lineCap: 'butt' } }, { type: 'container', description: 'container shape', icon: container, group: 'container', model: { type: 'container', left: 100, top: 100, width: 400, height: 300, fillStyle: '#fff', strokeStyle: '#999', alpha: 1, hidden: false, lineWidth: 1, lineDash: 'solid', lineCap: 'butt' } }, { type: 'popup', description: 'popup window', icon: popup, group: 'container', model: { type: 'popup', left: 100, top: 100, width: 100, height: 100, fillStyle: '#fff', strokeStyle: 'DarkGoldenRod' } } ] }"
|
|
1801
|
+
}
|
|
1802
|
+
],
|
|
1803
|
+
"exports": [
|
|
1804
|
+
{
|
|
1805
|
+
"kind": "js",
|
|
1806
|
+
"name": "etc",
|
|
1807
|
+
"declaration": {
|
|
1808
|
+
"name": "etc",
|
|
1809
|
+
"module": "src/component/etc.ts"
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1812
|
+
]
|
|
1813
|
+
},
|
|
1814
|
+
{
|
|
1815
|
+
"kind": "javascript-module",
|
|
1816
|
+
"path": "src/component/index.ts",
|
|
1817
|
+
"declarations": [],
|
|
1818
|
+
"exports": [
|
|
1819
|
+
{
|
|
1820
|
+
"kind": "js",
|
|
1821
|
+
"name": "*",
|
|
1822
|
+
"declaration": {
|
|
1823
|
+
"name": "*",
|
|
1824
|
+
"package": "./restful-attachment-selector.js"
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
{
|
|
1828
|
+
"kind": "js",
|
|
1829
|
+
"name": "*",
|
|
1830
|
+
"declaration": {
|
|
1831
|
+
"name": "*",
|
|
1918
1832
|
"package": "./restful-input-fill-style.js"
|
|
1919
1833
|
}
|
|
1920
1834
|
},
|
|
@@ -2975,6 +2889,98 @@
|
|
|
2975
2889
|
}
|
|
2976
2890
|
]
|
|
2977
2891
|
},
|
|
2892
|
+
{
|
|
2893
|
+
"kind": "javascript-module",
|
|
2894
|
+
"path": "src/data-storage/data-storage.ts",
|
|
2895
|
+
"declarations": [
|
|
2896
|
+
{
|
|
2897
|
+
"kind": "class",
|
|
2898
|
+
"description": "",
|
|
2899
|
+
"name": "DataStorage",
|
|
2900
|
+
"members": [
|
|
2901
|
+
{
|
|
2902
|
+
"kind": "field",
|
|
2903
|
+
"name": "id",
|
|
2904
|
+
"type": {
|
|
2905
|
+
"text": "string"
|
|
2906
|
+
},
|
|
2907
|
+
"privacy": "private",
|
|
2908
|
+
"default": "id"
|
|
2909
|
+
},
|
|
2910
|
+
{
|
|
2911
|
+
"kind": "method",
|
|
2912
|
+
"name": "load",
|
|
2913
|
+
"privacy": "public",
|
|
2914
|
+
"return": {
|
|
2915
|
+
"type": {
|
|
2916
|
+
"text": "Promise<any>"
|
|
2917
|
+
}
|
|
2918
|
+
},
|
|
2919
|
+
"parameters": [
|
|
2920
|
+
{
|
|
2921
|
+
"name": "key",
|
|
2922
|
+
"type": {
|
|
2923
|
+
"text": "Component"
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2926
|
+
]
|
|
2927
|
+
},
|
|
2928
|
+
{
|
|
2929
|
+
"kind": "method",
|
|
2930
|
+
"name": "save",
|
|
2931
|
+
"privacy": "public",
|
|
2932
|
+
"return": {
|
|
2933
|
+
"type": {
|
|
2934
|
+
"text": "Promise<void>"
|
|
2935
|
+
}
|
|
2936
|
+
},
|
|
2937
|
+
"parameters": [
|
|
2938
|
+
{
|
|
2939
|
+
"name": "key",
|
|
2940
|
+
"type": {
|
|
2941
|
+
"text": "Component"
|
|
2942
|
+
}
|
|
2943
|
+
},
|
|
2944
|
+
{
|
|
2945
|
+
"name": "value",
|
|
2946
|
+
"type": {
|
|
2947
|
+
"text": "any"
|
|
2948
|
+
}
|
|
2949
|
+
}
|
|
2950
|
+
]
|
|
2951
|
+
},
|
|
2952
|
+
{
|
|
2953
|
+
"kind": "method",
|
|
2954
|
+
"name": "clear",
|
|
2955
|
+
"privacy": "public",
|
|
2956
|
+
"return": {
|
|
2957
|
+
"type": {
|
|
2958
|
+
"text": "Promise<void>"
|
|
2959
|
+
}
|
|
2960
|
+
},
|
|
2961
|
+
"parameters": [
|
|
2962
|
+
{
|
|
2963
|
+
"name": "key",
|
|
2964
|
+
"type": {
|
|
2965
|
+
"text": "Component"
|
|
2966
|
+
}
|
|
2967
|
+
}
|
|
2968
|
+
]
|
|
2969
|
+
}
|
|
2970
|
+
]
|
|
2971
|
+
}
|
|
2972
|
+
],
|
|
2973
|
+
"exports": [
|
|
2974
|
+
{
|
|
2975
|
+
"kind": "js",
|
|
2976
|
+
"name": "DataStorage",
|
|
2977
|
+
"declaration": {
|
|
2978
|
+
"name": "DataStorage",
|
|
2979
|
+
"module": "src/data-storage/data-storage.ts"
|
|
2980
|
+
}
|
|
2981
|
+
}
|
|
2982
|
+
]
|
|
2983
|
+
},
|
|
2978
2984
|
{
|
|
2979
2985
|
"kind": "javascript-module",
|
|
2980
2986
|
"path": "src/layers/mcs-mouse-event-handler.ts",
|
|
@@ -4685,138 +4691,345 @@
|
|
|
4685
4691
|
},
|
|
4686
4692
|
{
|
|
4687
4693
|
"kind": "javascript-module",
|
|
4688
|
-
"path": "src/modeller/
|
|
4694
|
+
"path": "src/modeller/scene-viewer/confidential-overlay.ts",
|
|
4689
4695
|
"declarations": [
|
|
4690
4696
|
{
|
|
4691
4697
|
"kind": "class",
|
|
4692
4698
|
"description": "",
|
|
4693
|
-
"name": "
|
|
4699
|
+
"name": "ConfidentialOverlay",
|
|
4694
4700
|
"members": [
|
|
4695
4701
|
{
|
|
4696
4702
|
"kind": "method",
|
|
4697
|
-
"name": "
|
|
4698
|
-
"parameters": [
|
|
4699
|
-
{
|
|
4700
|
-
"name": "e",
|
|
4701
|
-
"type": {
|
|
4702
|
-
"text": "Event"
|
|
4703
|
-
}
|
|
4704
|
-
}
|
|
4705
|
-
]
|
|
4706
|
-
},
|
|
4707
|
-
{
|
|
4708
|
-
"kind": "method",
|
|
4709
|
-
"name": "_getValueFromEventTarget",
|
|
4710
|
-
"parameters": [
|
|
4711
|
-
{
|
|
4712
|
-
"name": "element",
|
|
4713
|
-
"type": {
|
|
4714
|
-
"text": "HTMLElement"
|
|
4715
|
-
}
|
|
4716
|
-
}
|
|
4717
|
-
]
|
|
4718
|
-
},
|
|
4719
|
-
{
|
|
4720
|
-
"kind": "method",
|
|
4721
|
-
"name": "_onAfterValueChange",
|
|
4703
|
+
"name": "_draw",
|
|
4722
4704
|
"parameters": [
|
|
4723
4705
|
{
|
|
4724
|
-
"name": "
|
|
4725
|
-
"type": {
|
|
4726
|
-
"text": "string"
|
|
4727
|
-
}
|
|
4728
|
-
},
|
|
4729
|
-
{
|
|
4730
|
-
"name": "value",
|
|
4706
|
+
"name": "context",
|
|
4731
4707
|
"type": {
|
|
4732
|
-
"text": "
|
|
4708
|
+
"text": "CanvasRenderingContext2D"
|
|
4733
4709
|
}
|
|
4734
4710
|
}
|
|
4735
4711
|
]
|
|
4736
4712
|
}
|
|
4737
4713
|
],
|
|
4738
|
-
"events": [
|
|
4739
|
-
{
|
|
4740
|
-
"name": "property-change",
|
|
4741
|
-
"type": {
|
|
4742
|
-
"text": "CustomEvent"
|
|
4743
|
-
}
|
|
4744
|
-
}
|
|
4745
|
-
],
|
|
4746
4714
|
"superclass": {
|
|
4747
|
-
"name": "
|
|
4748
|
-
"package": "
|
|
4749
|
-
},
|
|
4750
|
-
"customElement": true
|
|
4751
|
-
}
|
|
4752
|
-
],
|
|
4753
|
-
"exports": [
|
|
4754
|
-
{
|
|
4755
|
-
"kind": "js",
|
|
4756
|
-
"name": "AbstractProperty",
|
|
4757
|
-
"declaration": {
|
|
4758
|
-
"name": "AbstractProperty",
|
|
4759
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
4715
|
+
"name": "SceneLayer",
|
|
4716
|
+
"package": "@hatiolab/things-scene"
|
|
4760
4717
|
}
|
|
4761
4718
|
}
|
|
4762
|
-
]
|
|
4763
|
-
},
|
|
4764
|
-
{
|
|
4765
|
-
"kind": "javascript-module",
|
|
4766
|
-
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
4767
|
-
"declarations": [
|
|
4768
|
-
{
|
|
4769
|
-
"kind": "variable",
|
|
4770
|
-
"name": "PropertySharedStyle",
|
|
4771
|
-
"default": "css` fieldset { border: none; margin: 4px; padding: 9px 4px 9px 4px; border-bottom: var(--property-sidebar-fieldset-border); color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-label); } fieldset legend { padding: 5px 0 0 5px; color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-legend); text-transform: capitalize; } select, input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } /* property grid */ .property-grid { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .property-grid > * { width: 100%; box-sizing: border-box; } .property-grid > label { grid-column: span 3; text-align: right; text-transform: capitalize; line-height: 2; } .property-grid > input, .property-grid > table, .property-grid > select, .property-grid > ox-input-angle, .property-grid > ox-buttons-radio, .property-grid > ox-input-color, [custom-editor] { grid-column: span 7; align-self: stretch; } .property-grid > .checkbox-row { grid-column: span 10; } .property-grid > .property-full-label { grid-column: span 3; text-align: right; text-transform: capitalize; } .property-grid > .property-half-label { grid-column: span 1; } .property-grid > .property-full-input { grid-column: span 7; } .property-grid > .property-half-input { grid-column: span 4; } /* checkbox-row */ .checkbox-row { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .checkbox-row > input { grid-column: 4 / 5; } .checkbox-row > label { grid-column: span 6; text-align: left; } /* image resources */ .icon-only-label { grid-column: span 1; background: var(--url-icon-properties-label) no-repeat; float: left; margin: 0; align-self: stretch; } .icon-only-label.color { background-position: 100% -500px; } .icon-only-label.font-size { background-position: 100% -594px; } .icon-only-label.leading { background-position: 100% -696px; } .icon-only-label.hscale { background-position: 100% -296px; } .icon-only-label.vscale { background-position: 100% -396px; } .icon-only-label.linewidth { background-position: 100% -894px; } .icon-only-label.lineHeight { background-position: 100% -995px; } .icon-only-label.letterSpacing { background-position: 100% -1594px; } `"
|
|
4772
|
-
}
|
|
4773
4719
|
],
|
|
4774
4720
|
"exports": [
|
|
4775
4721
|
{
|
|
4776
4722
|
"kind": "js",
|
|
4777
|
-
"name": "
|
|
4723
|
+
"name": "default",
|
|
4778
4724
|
"declaration": {
|
|
4779
|
-
"name": "
|
|
4780
|
-
"module": "src/modeller/
|
|
4725
|
+
"name": "ConfidentialOverlay",
|
|
4726
|
+
"module": "src/modeller/scene-viewer/confidential-overlay.ts"
|
|
4781
4727
|
}
|
|
4782
4728
|
}
|
|
4783
4729
|
]
|
|
4784
4730
|
},
|
|
4785
4731
|
{
|
|
4786
4732
|
"kind": "javascript-module",
|
|
4787
|
-
"path": "src/modeller/
|
|
4733
|
+
"path": "src/modeller/scene-viewer/ox-scene-handler.ts",
|
|
4788
4734
|
"declarations": [
|
|
4789
4735
|
{
|
|
4790
4736
|
"kind": "class",
|
|
4791
4737
|
"description": "",
|
|
4792
|
-
"name": "
|
|
4738
|
+
"name": "OxSceneHandler",
|
|
4793
4739
|
"members": [
|
|
4794
4740
|
{
|
|
4795
4741
|
"kind": "field",
|
|
4796
|
-
"name": "
|
|
4797
|
-
"type": {
|
|
4798
|
-
"text": "Scene | null"
|
|
4799
|
-
},
|
|
4800
|
-
"default": "null",
|
|
4801
|
-
"attribute": "scene"
|
|
4802
|
-
},
|
|
4803
|
-
{
|
|
4804
|
-
"kind": "field",
|
|
4805
|
-
"name": "bounds",
|
|
4742
|
+
"name": "type",
|
|
4806
4743
|
"type": {
|
|
4807
|
-
"text": "
|
|
4744
|
+
"text": "string"
|
|
4808
4745
|
},
|
|
4809
|
-
"
|
|
4810
|
-
"attribute": "bounds"
|
|
4746
|
+
"attribute": "type"
|
|
4811
4747
|
},
|
|
4812
4748
|
{
|
|
4813
4749
|
"kind": "field",
|
|
4814
4750
|
"name": "model",
|
|
4815
4751
|
"type": {
|
|
4816
|
-
"text": "
|
|
4752
|
+
"text": "{\n type: Object\n notify: true\n }"
|
|
4817
4753
|
},
|
|
4818
|
-
"default": "{}",
|
|
4819
4754
|
"attribute": "model"
|
|
4755
|
+
}
|
|
4756
|
+
],
|
|
4757
|
+
"attributes": [
|
|
4758
|
+
{
|
|
4759
|
+
"name": "type",
|
|
4760
|
+
"type": {
|
|
4761
|
+
"text": "string"
|
|
4762
|
+
},
|
|
4763
|
+
"fieldName": "type"
|
|
4764
|
+
},
|
|
4765
|
+
{
|
|
4766
|
+
"name": "model",
|
|
4767
|
+
"type": {
|
|
4768
|
+
"text": "{\n type: Object\n notify: true\n }"
|
|
4769
|
+
},
|
|
4770
|
+
"fieldName": "model"
|
|
4771
|
+
}
|
|
4772
|
+
],
|
|
4773
|
+
"superclass": {
|
|
4774
|
+
"name": "LitElement",
|
|
4775
|
+
"package": "lit"
|
|
4776
|
+
},
|
|
4777
|
+
"tagName": "ox-scene-handler",
|
|
4778
|
+
"customElement": true
|
|
4779
|
+
}
|
|
4780
|
+
],
|
|
4781
|
+
"exports": [
|
|
4782
|
+
{
|
|
4783
|
+
"kind": "js",
|
|
4784
|
+
"name": "default",
|
|
4785
|
+
"declaration": {
|
|
4786
|
+
"name": "OxSceneHandler",
|
|
4787
|
+
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
4788
|
+
}
|
|
4789
|
+
},
|
|
4790
|
+
{
|
|
4791
|
+
"kind": "custom-element-definition",
|
|
4792
|
+
"name": "ox-scene-handler",
|
|
4793
|
+
"declaration": {
|
|
4794
|
+
"name": "OxSceneHandler",
|
|
4795
|
+
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
4796
|
+
}
|
|
4797
|
+
}
|
|
4798
|
+
]
|
|
4799
|
+
},
|
|
4800
|
+
{
|
|
4801
|
+
"kind": "javascript-module",
|
|
4802
|
+
"path": "src/modeller/scene-viewer/ox-scene-layer.ts",
|
|
4803
|
+
"declarations": [
|
|
4804
|
+
{
|
|
4805
|
+
"kind": "class",
|
|
4806
|
+
"description": "",
|
|
4807
|
+
"name": "OxSceneLayer",
|
|
4808
|
+
"members": [
|
|
4809
|
+
{
|
|
4810
|
+
"kind": "field",
|
|
4811
|
+
"name": "type",
|
|
4812
|
+
"type": {
|
|
4813
|
+
"text": "String | undefined"
|
|
4814
|
+
},
|
|
4815
|
+
"attribute": "type"
|
|
4816
|
+
},
|
|
4817
|
+
{
|
|
4818
|
+
"kind": "field",
|
|
4819
|
+
"name": "text",
|
|
4820
|
+
"type": {
|
|
4821
|
+
"text": "String | undefined"
|
|
4822
|
+
},
|
|
4823
|
+
"attribute": "text"
|
|
4824
|
+
},
|
|
4825
|
+
{
|
|
4826
|
+
"kind": "method",
|
|
4827
|
+
"name": "getModel"
|
|
4828
|
+
}
|
|
4829
|
+
],
|
|
4830
|
+
"attributes": [
|
|
4831
|
+
{
|
|
4832
|
+
"name": "type",
|
|
4833
|
+
"type": {
|
|
4834
|
+
"text": "String | undefined"
|
|
4835
|
+
},
|
|
4836
|
+
"fieldName": "type"
|
|
4837
|
+
},
|
|
4838
|
+
{
|
|
4839
|
+
"name": "text",
|
|
4840
|
+
"type": {
|
|
4841
|
+
"text": "String | undefined"
|
|
4842
|
+
},
|
|
4843
|
+
"fieldName": "text"
|
|
4844
|
+
}
|
|
4845
|
+
],
|
|
4846
|
+
"superclass": {
|
|
4847
|
+
"name": "LitElement",
|
|
4848
|
+
"package": "lit"
|
|
4849
|
+
},
|
|
4850
|
+
"tagName": "ox-scene-layer",
|
|
4851
|
+
"customElement": true
|
|
4852
|
+
}
|
|
4853
|
+
],
|
|
4854
|
+
"exports": [
|
|
4855
|
+
{
|
|
4856
|
+
"kind": "js",
|
|
4857
|
+
"name": "default",
|
|
4858
|
+
"declaration": {
|
|
4859
|
+
"name": "OxSceneLayer",
|
|
4860
|
+
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
4861
|
+
}
|
|
4862
|
+
},
|
|
4863
|
+
{
|
|
4864
|
+
"kind": "custom-element-definition",
|
|
4865
|
+
"name": "ox-scene-layer",
|
|
4866
|
+
"declaration": {
|
|
4867
|
+
"name": "OxSceneLayer",
|
|
4868
|
+
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
4869
|
+
}
|
|
4870
|
+
}
|
|
4871
|
+
]
|
|
4872
|
+
},
|
|
4873
|
+
{
|
|
4874
|
+
"kind": "javascript-module",
|
|
4875
|
+
"path": "src/modeller/scene-viewer/ox-scene-property.ts",
|
|
4876
|
+
"declarations": [
|
|
4877
|
+
{
|
|
4878
|
+
"kind": "class",
|
|
4879
|
+
"description": "",
|
|
4880
|
+
"name": "OxSceneProperty",
|
|
4881
|
+
"members": [
|
|
4882
|
+
{
|
|
4883
|
+
"kind": "field",
|
|
4884
|
+
"name": "name",
|
|
4885
|
+
"type": {
|
|
4886
|
+
"text": "string"
|
|
4887
|
+
},
|
|
4888
|
+
"attribute": "name"
|
|
4889
|
+
},
|
|
4890
|
+
{
|
|
4891
|
+
"kind": "field",
|
|
4892
|
+
"name": "value",
|
|
4893
|
+
"type": {
|
|
4894
|
+
"text": "string"
|
|
4895
|
+
},
|
|
4896
|
+
"attribute": "value"
|
|
4897
|
+
},
|
|
4898
|
+
{
|
|
4899
|
+
"kind": "field",
|
|
4900
|
+
"name": "type",
|
|
4901
|
+
"type": {
|
|
4902
|
+
"text": "string"
|
|
4903
|
+
},
|
|
4904
|
+
"attribute": "type"
|
|
4905
|
+
}
|
|
4906
|
+
],
|
|
4907
|
+
"attributes": [
|
|
4908
|
+
{
|
|
4909
|
+
"name": "name",
|
|
4910
|
+
"type": {
|
|
4911
|
+
"text": "string"
|
|
4912
|
+
},
|
|
4913
|
+
"fieldName": "name"
|
|
4914
|
+
},
|
|
4915
|
+
{
|
|
4916
|
+
"name": "value",
|
|
4917
|
+
"type": {
|
|
4918
|
+
"text": "string"
|
|
4919
|
+
},
|
|
4920
|
+
"fieldName": "value"
|
|
4921
|
+
},
|
|
4922
|
+
{
|
|
4923
|
+
"name": "type",
|
|
4924
|
+
"type": {
|
|
4925
|
+
"text": "string"
|
|
4926
|
+
},
|
|
4927
|
+
"fieldName": "type"
|
|
4928
|
+
}
|
|
4929
|
+
],
|
|
4930
|
+
"superclass": {
|
|
4931
|
+
"name": "LitElement",
|
|
4932
|
+
"package": "lit"
|
|
4933
|
+
},
|
|
4934
|
+
"tagName": "ox-scene-property",
|
|
4935
|
+
"customElement": true
|
|
4936
|
+
}
|
|
4937
|
+
],
|
|
4938
|
+
"exports": [
|
|
4939
|
+
{
|
|
4940
|
+
"kind": "js",
|
|
4941
|
+
"name": "default",
|
|
4942
|
+
"declaration": {
|
|
4943
|
+
"name": "OxSceneProperty",
|
|
4944
|
+
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
4945
|
+
}
|
|
4946
|
+
},
|
|
4947
|
+
{
|
|
4948
|
+
"kind": "custom-element-definition",
|
|
4949
|
+
"name": "ox-scene-property",
|
|
4950
|
+
"declaration": {
|
|
4951
|
+
"name": "OxSceneProperty",
|
|
4952
|
+
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
4953
|
+
}
|
|
4954
|
+
}
|
|
4955
|
+
]
|
|
4956
|
+
},
|
|
4957
|
+
{
|
|
4958
|
+
"kind": "javascript-module",
|
|
4959
|
+
"path": "src/modeller/scene-viewer/ox-scene-viewer.ts",
|
|
4960
|
+
"declarations": [
|
|
4961
|
+
{
|
|
4962
|
+
"kind": "class",
|
|
4963
|
+
"description": "",
|
|
4964
|
+
"name": "OxSceneViewer",
|
|
4965
|
+
"members": [
|
|
4966
|
+
{
|
|
4967
|
+
"kind": "field",
|
|
4968
|
+
"name": "scene",
|
|
4969
|
+
"type": {
|
|
4970
|
+
"text": "Scene | null"
|
|
4971
|
+
},
|
|
4972
|
+
"default": "null",
|
|
4973
|
+
"attribute": "scene"
|
|
4974
|
+
},
|
|
4975
|
+
{
|
|
4976
|
+
"kind": "field",
|
|
4977
|
+
"name": "model",
|
|
4978
|
+
"type": {
|
|
4979
|
+
"text": "Model | undefined"
|
|
4980
|
+
},
|
|
4981
|
+
"attribute": "model"
|
|
4982
|
+
},
|
|
4983
|
+
{
|
|
4984
|
+
"kind": "field",
|
|
4985
|
+
"name": "mode",
|
|
4986
|
+
"type": {
|
|
4987
|
+
"text": "SCENE_MODE"
|
|
4988
|
+
},
|
|
4989
|
+
"attribute": "mode"
|
|
4990
|
+
},
|
|
4991
|
+
{
|
|
4992
|
+
"kind": "field",
|
|
4993
|
+
"name": "screenSize",
|
|
4994
|
+
"type": {
|
|
4995
|
+
"text": "number"
|
|
4996
|
+
},
|
|
4997
|
+
"default": "13.3",
|
|
4998
|
+
"attribute": "screenSize"
|
|
4999
|
+
},
|
|
5000
|
+
{
|
|
5001
|
+
"kind": "field",
|
|
5002
|
+
"name": "variables",
|
|
5003
|
+
"type": {
|
|
5004
|
+
"text": "Properties"
|
|
5005
|
+
},
|
|
5006
|
+
"default": "{}",
|
|
5007
|
+
"attribute": "variables"
|
|
5008
|
+
},
|
|
5009
|
+
{
|
|
5010
|
+
"kind": "field",
|
|
5011
|
+
"name": "data",
|
|
5012
|
+
"type": {
|
|
5013
|
+
"text": "any"
|
|
5014
|
+
},
|
|
5015
|
+
"attribute": "data"
|
|
5016
|
+
},
|
|
5017
|
+
{
|
|
5018
|
+
"kind": "field",
|
|
5019
|
+
"name": "themes",
|
|
5020
|
+
"type": {
|
|
5021
|
+
"text": "any | undefined"
|
|
5022
|
+
},
|
|
5023
|
+
"attribute": "themes"
|
|
5024
|
+
},
|
|
5025
|
+
{
|
|
5026
|
+
"kind": "field",
|
|
5027
|
+
"name": "fit",
|
|
5028
|
+
"type": {
|
|
5029
|
+
"text": "FITMODE"
|
|
5030
|
+
},
|
|
5031
|
+
"default": "'none'",
|
|
5032
|
+
"attribute": "fit"
|
|
4820
5033
|
},
|
|
4821
5034
|
{
|
|
4822
5035
|
"kind": "field",
|
|
@@ -4829,109 +5042,177 @@
|
|
|
4829
5042
|
},
|
|
4830
5043
|
{
|
|
4831
5044
|
"kind": "field",
|
|
4832
|
-
"name": "
|
|
5045
|
+
"name": "disposeWhenDetached",
|
|
4833
5046
|
"type": {
|
|
4834
|
-
"text": "
|
|
5047
|
+
"text": "boolean"
|
|
4835
5048
|
},
|
|
4836
|
-
"
|
|
5049
|
+
"default": "false",
|
|
5050
|
+
"attribute": "disposeWhenDetached"
|
|
4837
5051
|
},
|
|
4838
5052
|
{
|
|
4839
5053
|
"kind": "field",
|
|
4840
|
-
"name": "
|
|
5054
|
+
"name": "baseUrl",
|
|
4841
5055
|
"type": {
|
|
4842
|
-
"text": "string
|
|
5056
|
+
"text": "string"
|
|
4843
5057
|
},
|
|
4844
|
-
"default": "'
|
|
4845
|
-
"attribute": "
|
|
5058
|
+
"default": "''",
|
|
5059
|
+
"attribute": "baseUrl"
|
|
4846
5060
|
},
|
|
4847
5061
|
{
|
|
4848
5062
|
"kind": "field",
|
|
4849
|
-
"name": "
|
|
5063
|
+
"name": "provider",
|
|
4850
5064
|
"type": {
|
|
4851
|
-
"text": "
|
|
5065
|
+
"text": "any"
|
|
4852
5066
|
},
|
|
4853
|
-
"
|
|
4854
|
-
"attribute": "collapsed"
|
|
5067
|
+
"attribute": "provider"
|
|
4855
5068
|
},
|
|
4856
5069
|
{
|
|
4857
5070
|
"kind": "field",
|
|
4858
|
-
"name": "
|
|
5071
|
+
"name": "name",
|
|
4859
5072
|
"type": {
|
|
4860
|
-
"text": "
|
|
5073
|
+
"text": "string"
|
|
4861
5074
|
},
|
|
4862
|
-
"default": "
|
|
4863
|
-
"attribute": "
|
|
5075
|
+
"default": "'noname'",
|
|
5076
|
+
"attribute": "name"
|
|
4864
5077
|
},
|
|
4865
5078
|
{
|
|
4866
5079
|
"kind": "field",
|
|
4867
|
-
"name": "
|
|
5080
|
+
"name": "enableInspector",
|
|
4868
5081
|
"type": {
|
|
4869
|
-
"text": "
|
|
5082
|
+
"text": "boolean"
|
|
4870
5083
|
},
|
|
4871
|
-
"default": "
|
|
4872
|
-
"attribute": "
|
|
5084
|
+
"default": "true",
|
|
5085
|
+
"attribute": "enableInspector"
|
|
4873
5086
|
},
|
|
4874
5087
|
{
|
|
4875
5088
|
"kind": "field",
|
|
4876
|
-
"name": "
|
|
5089
|
+
"name": "showInspector",
|
|
4877
5090
|
"type": {
|
|
4878
|
-
"text": "
|
|
5091
|
+
"text": "boolean"
|
|
4879
5092
|
},
|
|
4880
|
-
"default": "
|
|
5093
|
+
"default": "false",
|
|
5094
|
+
"attribute": "showInspector"
|
|
4881
5095
|
},
|
|
4882
5096
|
{
|
|
4883
5097
|
"kind": "field",
|
|
4884
|
-
"name": "
|
|
4885
|
-
"
|
|
4886
|
-
|
|
5098
|
+
"name": "lastOffsetWidth",
|
|
5099
|
+
"type": {
|
|
5100
|
+
"text": "number | undefined"
|
|
5101
|
+
},
|
|
5102
|
+
"privacy": "private"
|
|
4887
5103
|
},
|
|
4888
5104
|
{
|
|
4889
5105
|
"kind": "method",
|
|
4890
|
-
"name": "
|
|
5106
|
+
"name": "_setScene",
|
|
4891
5107
|
"parameters": [
|
|
4892
5108
|
{
|
|
4893
|
-
"name": "
|
|
5109
|
+
"name": "scene",
|
|
4894
5110
|
"type": {
|
|
4895
|
-
"text": "
|
|
5111
|
+
"text": "Scene | null"
|
|
4896
5112
|
}
|
|
4897
5113
|
}
|
|
4898
5114
|
]
|
|
4899
5115
|
},
|
|
4900
5116
|
{
|
|
4901
5117
|
"kind": "method",
|
|
4902
|
-
"name": "
|
|
5118
|
+
"name": "_setMode",
|
|
4903
5119
|
"parameters": [
|
|
4904
5120
|
{
|
|
4905
|
-
"name": "
|
|
5121
|
+
"name": "mode",
|
|
4906
5122
|
"type": {
|
|
4907
|
-
"text": "
|
|
5123
|
+
"text": "SCENE_MODE"
|
|
4908
5124
|
}
|
|
4909
5125
|
}
|
|
4910
5126
|
]
|
|
4911
5127
|
},
|
|
4912
5128
|
{
|
|
4913
5129
|
"kind": "method",
|
|
4914
|
-
"name": "
|
|
5130
|
+
"name": "_setVariables",
|
|
5131
|
+
"parameters": [
|
|
5132
|
+
{
|
|
5133
|
+
"name": "variables",
|
|
5134
|
+
"type": {
|
|
5135
|
+
"text": "Properties"
|
|
5136
|
+
}
|
|
5137
|
+
}
|
|
5138
|
+
]
|
|
4915
5139
|
},
|
|
4916
5140
|
{
|
|
4917
5141
|
"kind": "method",
|
|
4918
|
-
"name": "
|
|
5142
|
+
"name": "_setSelected",
|
|
5143
|
+
"parameters": [
|
|
5144
|
+
{
|
|
5145
|
+
"name": "selected",
|
|
5146
|
+
"type": {
|
|
5147
|
+
"text": "Component[]"
|
|
5148
|
+
}
|
|
5149
|
+
}
|
|
5150
|
+
]
|
|
5151
|
+
},
|
|
5152
|
+
{
|
|
5153
|
+
"kind": "method",
|
|
5154
|
+
"name": "_disposeScene"
|
|
5155
|
+
},
|
|
5156
|
+
{
|
|
5157
|
+
"kind": "method",
|
|
5158
|
+
"name": "resize",
|
|
5159
|
+
"parameters": [
|
|
5160
|
+
{
|
|
5161
|
+
"name": "force",
|
|
5162
|
+
"type": {
|
|
5163
|
+
"text": "boolean"
|
|
5164
|
+
}
|
|
5165
|
+
}
|
|
5166
|
+
]
|
|
5167
|
+
},
|
|
5168
|
+
{
|
|
5169
|
+
"kind": "method",
|
|
5170
|
+
"name": "_onModelChanged",
|
|
5171
|
+
"parameters": [
|
|
5172
|
+
{
|
|
5173
|
+
"name": "model",
|
|
5174
|
+
"optional": true,
|
|
5175
|
+
"type": {
|
|
5176
|
+
"text": "Model"
|
|
5177
|
+
}
|
|
5178
|
+
}
|
|
5179
|
+
]
|
|
5180
|
+
},
|
|
5181
|
+
{
|
|
5182
|
+
"kind": "method",
|
|
5183
|
+
"name": "_onDisplayChanged",
|
|
5184
|
+
"parameters": [
|
|
5185
|
+
{
|
|
5186
|
+
"name": "screenSize",
|
|
5187
|
+
"type": {
|
|
5188
|
+
"text": "string | number"
|
|
5189
|
+
}
|
|
5190
|
+
}
|
|
5191
|
+
]
|
|
4919
5192
|
},
|
|
4920
5193
|
{
|
|
4921
5194
|
"kind": "method",
|
|
4922
|
-
"name": "
|
|
5195
|
+
"name": "_onModeChanged",
|
|
4923
5196
|
"parameters": [
|
|
4924
5197
|
{
|
|
4925
|
-
"name": "
|
|
5198
|
+
"name": "mode",
|
|
4926
5199
|
"type": {
|
|
4927
|
-
"text": "
|
|
5200
|
+
"text": "SCENE_MODE"
|
|
4928
5201
|
}
|
|
4929
5202
|
}
|
|
4930
5203
|
]
|
|
4931
5204
|
},
|
|
4932
5205
|
{
|
|
4933
5206
|
"kind": "method",
|
|
4934
|
-
"name": "
|
|
5207
|
+
"name": "_onDataChanged",
|
|
5208
|
+
"parameters": [
|
|
5209
|
+
{
|
|
5210
|
+
"name": "data",
|
|
5211
|
+
"type": {
|
|
5212
|
+
"text": "any"
|
|
5213
|
+
}
|
|
5214
|
+
}
|
|
5215
|
+
]
|
|
4935
5216
|
},
|
|
4936
5217
|
{
|
|
4937
5218
|
"kind": "method",
|
|
@@ -4947,29 +5228,55 @@
|
|
|
4947
5228
|
},
|
|
4948
5229
|
{
|
|
4949
5230
|
"kind": "method",
|
|
4950
|
-
"name": "
|
|
5231
|
+
"name": "_onSceneModeChanged",
|
|
4951
5232
|
"parameters": [
|
|
4952
5233
|
{
|
|
4953
|
-
"name": "
|
|
5234
|
+
"name": "after",
|
|
4954
5235
|
"type": {
|
|
4955
|
-
"text": "
|
|
5236
|
+
"text": "SCENE_MODE"
|
|
4956
5237
|
}
|
|
4957
5238
|
}
|
|
4958
5239
|
]
|
|
4959
5240
|
},
|
|
4960
5241
|
{
|
|
4961
5242
|
"kind": "method",
|
|
4962
|
-
"name": "
|
|
5243
|
+
"name": "_onBaseUrlChanged",
|
|
4963
5244
|
"parameters": [
|
|
4964
5245
|
{
|
|
4965
|
-
"name": "
|
|
5246
|
+
"name": "after",
|
|
4966
5247
|
"type": {
|
|
4967
|
-
"text": "
|
|
5248
|
+
"text": "string"
|
|
4968
5249
|
}
|
|
4969
5250
|
}
|
|
4970
5251
|
]
|
|
4971
5252
|
}
|
|
4972
5253
|
],
|
|
5254
|
+
"events": [
|
|
5255
|
+
{
|
|
5256
|
+
"name": "scene-changed",
|
|
5257
|
+
"type": {
|
|
5258
|
+
"text": "CustomEvent"
|
|
5259
|
+
}
|
|
5260
|
+
},
|
|
5261
|
+
{
|
|
5262
|
+
"name": "mode-changed",
|
|
5263
|
+
"type": {
|
|
5264
|
+
"text": "CustomEvent"
|
|
5265
|
+
}
|
|
5266
|
+
},
|
|
5267
|
+
{
|
|
5268
|
+
"name": "variables-changed",
|
|
5269
|
+
"type": {
|
|
5270
|
+
"text": "CustomEvent"
|
|
5271
|
+
}
|
|
5272
|
+
},
|
|
5273
|
+
{
|
|
5274
|
+
"name": "selected-changed",
|
|
5275
|
+
"type": {
|
|
5276
|
+
"text": "CustomEvent"
|
|
5277
|
+
}
|
|
5278
|
+
}
|
|
5279
|
+
],
|
|
4973
5280
|
"attributes": [
|
|
4974
5281
|
{
|
|
4975
5282
|
"name": "scene",
|
|
@@ -4979,253 +5286,119 @@
|
|
|
4979
5286
|
"default": "null",
|
|
4980
5287
|
"fieldName": "scene"
|
|
4981
5288
|
},
|
|
4982
|
-
{
|
|
4983
|
-
"name": "bounds",
|
|
4984
|
-
"type": {
|
|
4985
|
-
"text": "any"
|
|
4986
|
-
},
|
|
4987
|
-
"default": "{}",
|
|
4988
|
-
"fieldName": "bounds"
|
|
4989
|
-
},
|
|
4990
5289
|
{
|
|
4991
5290
|
"name": "model",
|
|
4992
5291
|
"type": {
|
|
4993
|
-
"text": "Model |
|
|
5292
|
+
"text": "Model | undefined"
|
|
4994
5293
|
},
|
|
4995
|
-
"default": "{}",
|
|
4996
5294
|
"fieldName": "model"
|
|
4997
5295
|
},
|
|
4998
5296
|
{
|
|
4999
|
-
"name": "
|
|
5297
|
+
"name": "mode",
|
|
5000
5298
|
"type": {
|
|
5001
|
-
"text": "
|
|
5299
|
+
"text": "SCENE_MODE"
|
|
5002
5300
|
},
|
|
5003
|
-
"
|
|
5004
|
-
"fieldName": "selected"
|
|
5301
|
+
"fieldName": "mode"
|
|
5005
5302
|
},
|
|
5006
5303
|
{
|
|
5007
|
-
"name": "
|
|
5304
|
+
"name": "screenSize",
|
|
5008
5305
|
"type": {
|
|
5009
|
-
"text": "
|
|
5306
|
+
"text": "number"
|
|
5010
5307
|
},
|
|
5011
|
-
"
|
|
5308
|
+
"default": "13.3",
|
|
5309
|
+
"fieldName": "screenSize"
|
|
5012
5310
|
},
|
|
5013
5311
|
{
|
|
5014
|
-
"name": "
|
|
5312
|
+
"name": "variables",
|
|
5015
5313
|
"type": {
|
|
5016
|
-
"text": "
|
|
5314
|
+
"text": "Properties"
|
|
5017
5315
|
},
|
|
5018
|
-
"default": "
|
|
5019
|
-
"fieldName": "
|
|
5316
|
+
"default": "{}",
|
|
5317
|
+
"fieldName": "variables"
|
|
5020
5318
|
},
|
|
5021
5319
|
{
|
|
5022
|
-
"name": "
|
|
5320
|
+
"name": "data",
|
|
5023
5321
|
"type": {
|
|
5024
|
-
"text": "
|
|
5322
|
+
"text": "any"
|
|
5025
5323
|
},
|
|
5026
|
-
"
|
|
5027
|
-
"fieldName": "collapsed"
|
|
5324
|
+
"fieldName": "data"
|
|
5028
5325
|
},
|
|
5029
5326
|
{
|
|
5030
|
-
"name": "
|
|
5327
|
+
"name": "themes",
|
|
5031
5328
|
"type": {
|
|
5032
|
-
"text": "any
|
|
5329
|
+
"text": "any | undefined"
|
|
5033
5330
|
},
|
|
5034
|
-
"
|
|
5035
|
-
"fieldName": "fonts"
|
|
5331
|
+
"fieldName": "themes"
|
|
5036
5332
|
},
|
|
5037
5333
|
{
|
|
5038
|
-
"name": "
|
|
5334
|
+
"name": "fit",
|
|
5039
5335
|
"type": {
|
|
5040
|
-
"text": "
|
|
5336
|
+
"text": "FITMODE"
|
|
5041
5337
|
},
|
|
5042
|
-
"default": "
|
|
5043
|
-
"fieldName": "
|
|
5044
|
-
}
|
|
5045
|
-
],
|
|
5046
|
-
"mixins": [
|
|
5047
|
-
{
|
|
5048
|
-
"name": "ScopedElementsMixin",
|
|
5049
|
-
"package": "@open-wc/scoped-elements"
|
|
5050
|
-
}
|
|
5051
|
-
],
|
|
5052
|
-
"superclass": {
|
|
5053
|
-
"name": "LitElement",
|
|
5054
|
-
"package": "lit"
|
|
5055
|
-
},
|
|
5056
|
-
"customElement": true
|
|
5057
|
-
}
|
|
5058
|
-
],
|
|
5059
|
-
"exports": [
|
|
5060
|
-
{
|
|
5061
|
-
"kind": "js",
|
|
5062
|
-
"name": "PropertySidebar",
|
|
5063
|
-
"declaration": {
|
|
5064
|
-
"name": "PropertySidebar",
|
|
5065
|
-
"module": "src/modeller/property-sidebar/property-sidebar.ts"
|
|
5066
|
-
}
|
|
5067
|
-
}
|
|
5068
|
-
]
|
|
5069
|
-
},
|
|
5070
|
-
{
|
|
5071
|
-
"kind": "javascript-module",
|
|
5072
|
-
"path": "src/modeller/scene-viewer/confidential-overlay.ts",
|
|
5073
|
-
"declarations": [
|
|
5074
|
-
{
|
|
5075
|
-
"kind": "class",
|
|
5076
|
-
"description": "",
|
|
5077
|
-
"name": "ConfidentialOverlay",
|
|
5078
|
-
"members": [
|
|
5079
|
-
{
|
|
5080
|
-
"kind": "method",
|
|
5081
|
-
"name": "_draw",
|
|
5082
|
-
"parameters": [
|
|
5083
|
-
{
|
|
5084
|
-
"name": "context",
|
|
5085
|
-
"type": {
|
|
5086
|
-
"text": "CanvasRenderingContext2D"
|
|
5087
|
-
}
|
|
5088
|
-
}
|
|
5089
|
-
]
|
|
5090
|
-
}
|
|
5091
|
-
],
|
|
5092
|
-
"superclass": {
|
|
5093
|
-
"name": "SceneLayer",
|
|
5094
|
-
"package": "@hatiolab/things-scene"
|
|
5095
|
-
}
|
|
5096
|
-
}
|
|
5097
|
-
],
|
|
5098
|
-
"exports": [
|
|
5099
|
-
{
|
|
5100
|
-
"kind": "js",
|
|
5101
|
-
"name": "default",
|
|
5102
|
-
"declaration": {
|
|
5103
|
-
"name": "ConfidentialOverlay",
|
|
5104
|
-
"module": "src/modeller/scene-viewer/confidential-overlay.ts"
|
|
5105
|
-
}
|
|
5106
|
-
}
|
|
5107
|
-
]
|
|
5108
|
-
},
|
|
5109
|
-
{
|
|
5110
|
-
"kind": "javascript-module",
|
|
5111
|
-
"path": "src/modeller/scene-viewer/ox-scene-handler.ts",
|
|
5112
|
-
"declarations": [
|
|
5113
|
-
{
|
|
5114
|
-
"kind": "class",
|
|
5115
|
-
"description": "",
|
|
5116
|
-
"name": "OxSceneHandler",
|
|
5117
|
-
"members": [
|
|
5338
|
+
"default": "'none'",
|
|
5339
|
+
"fieldName": "fit"
|
|
5340
|
+
},
|
|
5118
5341
|
{
|
|
5119
|
-
"
|
|
5120
|
-
"name": "type",
|
|
5342
|
+
"name": "selected",
|
|
5121
5343
|
"type": {
|
|
5122
|
-
"text": "
|
|
5344
|
+
"text": "Component[]"
|
|
5123
5345
|
},
|
|
5124
|
-
"
|
|
5346
|
+
"default": "[]",
|
|
5347
|
+
"fieldName": "selected"
|
|
5125
5348
|
},
|
|
5126
5349
|
{
|
|
5127
|
-
"
|
|
5128
|
-
"name": "model",
|
|
5350
|
+
"name": "disposeWhenDetached",
|
|
5129
5351
|
"type": {
|
|
5130
|
-
"text": "
|
|
5352
|
+
"text": "boolean"
|
|
5131
5353
|
},
|
|
5132
|
-
"
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
"attributes": [
|
|
5354
|
+
"default": "false",
|
|
5355
|
+
"fieldName": "disposeWhenDetached"
|
|
5356
|
+
},
|
|
5136
5357
|
{
|
|
5137
|
-
"name": "
|
|
5358
|
+
"name": "baseUrl",
|
|
5138
5359
|
"type": {
|
|
5139
5360
|
"text": "string"
|
|
5140
5361
|
},
|
|
5141
|
-
"
|
|
5362
|
+
"default": "''",
|
|
5363
|
+
"fieldName": "baseUrl"
|
|
5142
5364
|
},
|
|
5143
5365
|
{
|
|
5144
|
-
"name": "
|
|
5145
|
-
"type": {
|
|
5146
|
-
"text": "{\n type: Object\n notify: true\n }"
|
|
5147
|
-
},
|
|
5148
|
-
"fieldName": "model"
|
|
5149
|
-
}
|
|
5150
|
-
],
|
|
5151
|
-
"superclass": {
|
|
5152
|
-
"name": "LitElement",
|
|
5153
|
-
"package": "lit"
|
|
5154
|
-
},
|
|
5155
|
-
"tagName": "ox-scene-handler",
|
|
5156
|
-
"customElement": true
|
|
5157
|
-
}
|
|
5158
|
-
],
|
|
5159
|
-
"exports": [
|
|
5160
|
-
{
|
|
5161
|
-
"kind": "js",
|
|
5162
|
-
"name": "default",
|
|
5163
|
-
"declaration": {
|
|
5164
|
-
"name": "OxSceneHandler",
|
|
5165
|
-
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
5166
|
-
}
|
|
5167
|
-
},
|
|
5168
|
-
{
|
|
5169
|
-
"kind": "custom-element-definition",
|
|
5170
|
-
"name": "ox-scene-handler",
|
|
5171
|
-
"declaration": {
|
|
5172
|
-
"name": "OxSceneHandler",
|
|
5173
|
-
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
5174
|
-
}
|
|
5175
|
-
}
|
|
5176
|
-
]
|
|
5177
|
-
},
|
|
5178
|
-
{
|
|
5179
|
-
"kind": "javascript-module",
|
|
5180
|
-
"path": "src/modeller/scene-viewer/ox-scene-layer.ts",
|
|
5181
|
-
"declarations": [
|
|
5182
|
-
{
|
|
5183
|
-
"kind": "class",
|
|
5184
|
-
"description": "",
|
|
5185
|
-
"name": "OxSceneLayer",
|
|
5186
|
-
"members": [
|
|
5187
|
-
{
|
|
5188
|
-
"kind": "field",
|
|
5189
|
-
"name": "type",
|
|
5366
|
+
"name": "provider",
|
|
5190
5367
|
"type": {
|
|
5191
|
-
"text": "
|
|
5368
|
+
"text": "any"
|
|
5192
5369
|
},
|
|
5193
|
-
"
|
|
5370
|
+
"fieldName": "provider"
|
|
5194
5371
|
},
|
|
5195
5372
|
{
|
|
5196
|
-
"
|
|
5197
|
-
"name": "text",
|
|
5373
|
+
"name": "name",
|
|
5198
5374
|
"type": {
|
|
5199
|
-
"text": "
|
|
5375
|
+
"text": "string"
|
|
5200
5376
|
},
|
|
5201
|
-
"
|
|
5377
|
+
"default": "'noname'",
|
|
5378
|
+
"fieldName": "name"
|
|
5202
5379
|
},
|
|
5203
5380
|
{
|
|
5204
|
-
"
|
|
5205
|
-
"name": "getModel"
|
|
5206
|
-
}
|
|
5207
|
-
],
|
|
5208
|
-
"attributes": [
|
|
5209
|
-
{
|
|
5210
|
-
"name": "type",
|
|
5381
|
+
"name": "enableInspector",
|
|
5211
5382
|
"type": {
|
|
5212
|
-
"text": "
|
|
5383
|
+
"text": "boolean"
|
|
5213
5384
|
},
|
|
5214
|
-
"
|
|
5385
|
+
"default": "true",
|
|
5386
|
+
"fieldName": "enableInspector"
|
|
5215
5387
|
},
|
|
5216
5388
|
{
|
|
5217
|
-
"name": "
|
|
5389
|
+
"name": "showInspector",
|
|
5218
5390
|
"type": {
|
|
5219
|
-
"text": "
|
|
5391
|
+
"text": "boolean"
|
|
5220
5392
|
},
|
|
5221
|
-
"
|
|
5393
|
+
"default": "false",
|
|
5394
|
+
"fieldName": "showInspector"
|
|
5222
5395
|
}
|
|
5223
5396
|
],
|
|
5224
5397
|
"superclass": {
|
|
5225
5398
|
"name": "LitElement",
|
|
5226
5399
|
"package": "lit"
|
|
5227
5400
|
},
|
|
5228
|
-
"tagName": "ox-scene-
|
|
5401
|
+
"tagName": "ox-scene-viewer",
|
|
5229
5402
|
"customElement": true
|
|
5230
5403
|
}
|
|
5231
5404
|
],
|
|
@@ -5234,112 +5407,127 @@
|
|
|
5234
5407
|
"kind": "js",
|
|
5235
5408
|
"name": "default",
|
|
5236
5409
|
"declaration": {
|
|
5237
|
-
"name": "
|
|
5238
|
-
"module": "src/modeller/scene-viewer/ox-scene-
|
|
5410
|
+
"name": "OxSceneViewer",
|
|
5411
|
+
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
5239
5412
|
}
|
|
5240
5413
|
},
|
|
5241
5414
|
{
|
|
5242
5415
|
"kind": "custom-element-definition",
|
|
5243
|
-
"name": "ox-scene-
|
|
5416
|
+
"name": "ox-scene-viewer",
|
|
5244
5417
|
"declaration": {
|
|
5245
|
-
"name": "
|
|
5246
|
-
"module": "src/modeller/scene-viewer/ox-scene-
|
|
5418
|
+
"name": "OxSceneViewer",
|
|
5419
|
+
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
5247
5420
|
}
|
|
5248
5421
|
}
|
|
5249
5422
|
]
|
|
5250
5423
|
},
|
|
5251
5424
|
{
|
|
5252
5425
|
"kind": "javascript-module",
|
|
5253
|
-
"path": "src/modeller/
|
|
5426
|
+
"path": "src/modeller/property-sidebar/abstract-property.ts",
|
|
5254
5427
|
"declarations": [
|
|
5255
5428
|
{
|
|
5256
5429
|
"kind": "class",
|
|
5257
5430
|
"description": "",
|
|
5258
|
-
"name": "
|
|
5431
|
+
"name": "AbstractProperty",
|
|
5259
5432
|
"members": [
|
|
5260
5433
|
{
|
|
5261
|
-
"kind": "
|
|
5262
|
-
"name": "
|
|
5263
|
-
"
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5434
|
+
"kind": "method",
|
|
5435
|
+
"name": "_onValueChange",
|
|
5436
|
+
"parameters": [
|
|
5437
|
+
{
|
|
5438
|
+
"name": "e",
|
|
5439
|
+
"type": {
|
|
5440
|
+
"text": "Event"
|
|
5441
|
+
}
|
|
5442
|
+
}
|
|
5443
|
+
]
|
|
5267
5444
|
},
|
|
5268
5445
|
{
|
|
5269
|
-
"kind": "
|
|
5270
|
-
"name": "
|
|
5271
|
-
"
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5446
|
+
"kind": "method",
|
|
5447
|
+
"name": "_getValueFromEventTarget",
|
|
5448
|
+
"parameters": [
|
|
5449
|
+
{
|
|
5450
|
+
"name": "element",
|
|
5451
|
+
"type": {
|
|
5452
|
+
"text": "HTMLElement"
|
|
5453
|
+
}
|
|
5454
|
+
}
|
|
5455
|
+
]
|
|
5275
5456
|
},
|
|
5276
5457
|
{
|
|
5277
|
-
"kind": "
|
|
5278
|
-
"name": "
|
|
5279
|
-
"
|
|
5280
|
-
|
|
5281
|
-
|
|
5282
|
-
|
|
5458
|
+
"kind": "method",
|
|
5459
|
+
"name": "_onAfterValueChange",
|
|
5460
|
+
"parameters": [
|
|
5461
|
+
{
|
|
5462
|
+
"name": "key",
|
|
5463
|
+
"type": {
|
|
5464
|
+
"text": "string"
|
|
5465
|
+
}
|
|
5466
|
+
},
|
|
5467
|
+
{
|
|
5468
|
+
"name": "value",
|
|
5469
|
+
"type": {
|
|
5470
|
+
"text": "any"
|
|
5471
|
+
}
|
|
5472
|
+
}
|
|
5473
|
+
]
|
|
5283
5474
|
}
|
|
5284
5475
|
],
|
|
5285
|
-
"
|
|
5286
|
-
{
|
|
5287
|
-
"name": "name",
|
|
5288
|
-
"type": {
|
|
5289
|
-
"text": "string"
|
|
5290
|
-
},
|
|
5291
|
-
"fieldName": "name"
|
|
5292
|
-
},
|
|
5293
|
-
{
|
|
5294
|
-
"name": "value",
|
|
5295
|
-
"type": {
|
|
5296
|
-
"text": "string"
|
|
5297
|
-
},
|
|
5298
|
-
"fieldName": "value"
|
|
5299
|
-
},
|
|
5476
|
+
"events": [
|
|
5300
5477
|
{
|
|
5301
|
-
"name": "
|
|
5478
|
+
"name": "property-change",
|
|
5302
5479
|
"type": {
|
|
5303
|
-
"text": "
|
|
5304
|
-
}
|
|
5305
|
-
"fieldName": "type"
|
|
5480
|
+
"text": "CustomEvent"
|
|
5481
|
+
}
|
|
5306
5482
|
}
|
|
5307
5483
|
],
|
|
5308
5484
|
"superclass": {
|
|
5309
5485
|
"name": "LitElement",
|
|
5310
5486
|
"package": "lit"
|
|
5311
5487
|
},
|
|
5312
|
-
"tagName": "ox-scene-property",
|
|
5313
5488
|
"customElement": true
|
|
5314
5489
|
}
|
|
5315
5490
|
],
|
|
5316
5491
|
"exports": [
|
|
5317
5492
|
{
|
|
5318
5493
|
"kind": "js",
|
|
5319
|
-
"name": "
|
|
5494
|
+
"name": "AbstractProperty",
|
|
5320
5495
|
"declaration": {
|
|
5321
|
-
"name": "
|
|
5322
|
-
"module": "src/modeller/
|
|
5496
|
+
"name": "AbstractProperty",
|
|
5497
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5323
5498
|
}
|
|
5324
|
-
}
|
|
5499
|
+
}
|
|
5500
|
+
]
|
|
5501
|
+
},
|
|
5502
|
+
{
|
|
5503
|
+
"kind": "javascript-module",
|
|
5504
|
+
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
5505
|
+
"declarations": [
|
|
5325
5506
|
{
|
|
5326
|
-
"kind": "
|
|
5327
|
-
"name": "
|
|
5507
|
+
"kind": "variable",
|
|
5508
|
+
"name": "PropertySharedStyle",
|
|
5509
|
+
"default": "css` fieldset { border: none; margin: 4px; padding: 9px 4px 9px 4px; border-bottom: var(--property-sidebar-fieldset-border); color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-label); } fieldset legend { padding: 5px 0 0 5px; color: var(--property-sidebar-fieldset-legend-color); font: var(--property-sidebar-fieldset-legend); text-transform: capitalize; } select, input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } /* property grid */ .property-grid { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .property-grid > * { width: 100%; box-sizing: border-box; } .property-grid > label { grid-column: span 3; text-align: right; text-transform: capitalize; line-height: 2; } .property-grid > input, .property-grid > table, .property-grid > select, .property-grid > ox-input-angle, .property-grid > ox-buttons-radio, .property-grid > ox-input-color, [custom-editor] { grid-column: span 7; align-self: stretch; } .property-grid > .checkbox-row { grid-column: span 10; } .property-grid > .property-full-label { grid-column: span 3; text-align: right; text-transform: capitalize; } .property-grid > .property-half-label { grid-column: span 1; } .property-grid > .property-full-input { grid-column: span 7; } .property-grid > .property-half-input { grid-column: span 4; } /* checkbox-row */ .checkbox-row { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } .checkbox-row > input { grid-column: 4 / 5; } .checkbox-row > label { grid-column: span 6; text-align: left; } /* image resources */ .icon-only-label { grid-column: span 1; background: var(--url-icon-properties-label) no-repeat; float: left; margin: 0; align-self: stretch; } .icon-only-label.color { background-position: 100% -500px; } .icon-only-label.font-size { background-position: 100% -594px; } .icon-only-label.leading { background-position: 100% -696px; } .icon-only-label.hscale { background-position: 100% -296px; } .icon-only-label.vscale { background-position: 100% -396px; } .icon-only-label.linewidth { background-position: 100% -894px; } .icon-only-label.lineHeight { background-position: 100% -995px; } .icon-only-label.letterSpacing { background-position: 100% -1594px; } `"
|
|
5510
|
+
}
|
|
5511
|
+
],
|
|
5512
|
+
"exports": [
|
|
5513
|
+
{
|
|
5514
|
+
"kind": "js",
|
|
5515
|
+
"name": "PropertySharedStyle",
|
|
5328
5516
|
"declaration": {
|
|
5329
|
-
"name": "
|
|
5330
|
-
"module": "src/modeller/
|
|
5517
|
+
"name": "PropertySharedStyle",
|
|
5518
|
+
"module": "src/modeller/property-sidebar/property-shared-style.ts"
|
|
5331
5519
|
}
|
|
5332
5520
|
}
|
|
5333
5521
|
]
|
|
5334
5522
|
},
|
|
5335
5523
|
{
|
|
5336
5524
|
"kind": "javascript-module",
|
|
5337
|
-
"path": "src/modeller/
|
|
5525
|
+
"path": "src/modeller/property-sidebar/property-sidebar.ts",
|
|
5338
5526
|
"declarations": [
|
|
5339
5527
|
{
|
|
5340
5528
|
"kind": "class",
|
|
5341
5529
|
"description": "",
|
|
5342
|
-
"name": "
|
|
5530
|
+
"name": "PropertySidebar",
|
|
5343
5531
|
"members": [
|
|
5344
5532
|
{
|
|
5345
5533
|
"kind": "field",
|
|
@@ -5352,62 +5540,21 @@
|
|
|
5352
5540
|
},
|
|
5353
5541
|
{
|
|
5354
5542
|
"kind": "field",
|
|
5355
|
-
"name": "
|
|
5356
|
-
"type": {
|
|
5357
|
-
"text": "Model | undefined"
|
|
5358
|
-
},
|
|
5359
|
-
"attribute": "model"
|
|
5360
|
-
},
|
|
5361
|
-
{
|
|
5362
|
-
"kind": "field",
|
|
5363
|
-
"name": "mode",
|
|
5364
|
-
"type": {
|
|
5365
|
-
"text": "SCENE_MODE"
|
|
5366
|
-
},
|
|
5367
|
-
"attribute": "mode"
|
|
5368
|
-
},
|
|
5369
|
-
{
|
|
5370
|
-
"kind": "field",
|
|
5371
|
-
"name": "screenSize",
|
|
5372
|
-
"type": {
|
|
5373
|
-
"text": "number"
|
|
5374
|
-
},
|
|
5375
|
-
"default": "13.3",
|
|
5376
|
-
"attribute": "screenSize"
|
|
5377
|
-
},
|
|
5378
|
-
{
|
|
5379
|
-
"kind": "field",
|
|
5380
|
-
"name": "variables",
|
|
5381
|
-
"type": {
|
|
5382
|
-
"text": "Properties"
|
|
5383
|
-
},
|
|
5384
|
-
"default": "{}",
|
|
5385
|
-
"attribute": "variables"
|
|
5386
|
-
},
|
|
5387
|
-
{
|
|
5388
|
-
"kind": "field",
|
|
5389
|
-
"name": "data",
|
|
5543
|
+
"name": "bounds",
|
|
5390
5544
|
"type": {
|
|
5391
5545
|
"text": "any"
|
|
5392
5546
|
},
|
|
5393
|
-
"
|
|
5394
|
-
|
|
5395
|
-
{
|
|
5396
|
-
"kind": "field",
|
|
5397
|
-
"name": "themes",
|
|
5398
|
-
"type": {
|
|
5399
|
-
"text": "any | undefined"
|
|
5400
|
-
},
|
|
5401
|
-
"attribute": "themes"
|
|
5547
|
+
"default": "{}",
|
|
5548
|
+
"attribute": "bounds"
|
|
5402
5549
|
},
|
|
5403
5550
|
{
|
|
5404
5551
|
"kind": "field",
|
|
5405
|
-
"name": "
|
|
5552
|
+
"name": "model",
|
|
5406
5553
|
"type": {
|
|
5407
|
-
"text": "
|
|
5554
|
+
"text": "Model | null"
|
|
5408
5555
|
},
|
|
5409
|
-
"default": "
|
|
5410
|
-
"attribute": "
|
|
5556
|
+
"default": "{}",
|
|
5557
|
+
"attribute": "model"
|
|
5411
5558
|
},
|
|
5412
5559
|
{
|
|
5413
5560
|
"kind": "field",
|
|
@@ -5420,123 +5567,100 @@
|
|
|
5420
5567
|
},
|
|
5421
5568
|
{
|
|
5422
5569
|
"kind": "field",
|
|
5423
|
-
"name": "
|
|
5424
|
-
"type": {
|
|
5425
|
-
"text": "boolean"
|
|
5426
|
-
},
|
|
5427
|
-
"default": "false",
|
|
5428
|
-
"attribute": "disposeWhenDetached"
|
|
5429
|
-
},
|
|
5430
|
-
{
|
|
5431
|
-
"kind": "field",
|
|
5432
|
-
"name": "baseUrl",
|
|
5570
|
+
"name": "specificProps",
|
|
5433
5571
|
"type": {
|
|
5434
|
-
"text": "
|
|
5572
|
+
"text": "any"
|
|
5435
5573
|
},
|
|
5436
|
-
"
|
|
5437
|
-
"attribute": "baseUrl"
|
|
5574
|
+
"attribute": "specificProps"
|
|
5438
5575
|
},
|
|
5439
5576
|
{
|
|
5440
5577
|
"kind": "field",
|
|
5441
|
-
"name": "
|
|
5578
|
+
"name": "tabName",
|
|
5442
5579
|
"type": {
|
|
5443
|
-
"text": "
|
|
5580
|
+
"text": "string | null"
|
|
5444
5581
|
},
|
|
5445
|
-
"
|
|
5582
|
+
"default": "'specific'",
|
|
5583
|
+
"attribute": "tabName"
|
|
5446
5584
|
},
|
|
5447
5585
|
{
|
|
5448
5586
|
"kind": "field",
|
|
5449
|
-
"name": "
|
|
5587
|
+
"name": "collapsed",
|
|
5450
5588
|
"type": {
|
|
5451
|
-
"text": "
|
|
5589
|
+
"text": "boolean"
|
|
5452
5590
|
},
|
|
5453
|
-
"default": "
|
|
5454
|
-
"attribute": "
|
|
5591
|
+
"default": "false",
|
|
5592
|
+
"attribute": "collapsed"
|
|
5455
5593
|
},
|
|
5456
5594
|
{
|
|
5457
5595
|
"kind": "field",
|
|
5458
|
-
"name": "
|
|
5596
|
+
"name": "fonts",
|
|
5459
5597
|
"type": {
|
|
5460
|
-
"text": "
|
|
5598
|
+
"text": "any[]"
|
|
5461
5599
|
},
|
|
5462
|
-
"default": "
|
|
5463
|
-
"attribute": "
|
|
5600
|
+
"default": "[]",
|
|
5601
|
+
"attribute": "fonts"
|
|
5464
5602
|
},
|
|
5465
5603
|
{
|
|
5466
5604
|
"kind": "field",
|
|
5467
|
-
"name": "
|
|
5605
|
+
"name": "propertyEditor",
|
|
5468
5606
|
"type": {
|
|
5469
|
-
"text": "
|
|
5607
|
+
"text": "any[]"
|
|
5470
5608
|
},
|
|
5471
|
-
"default": "
|
|
5472
|
-
"attribute": "
|
|
5609
|
+
"default": "[]",
|
|
5610
|
+
"attribute": "propertyEditor"
|
|
5473
5611
|
},
|
|
5474
5612
|
{
|
|
5475
5613
|
"kind": "field",
|
|
5476
|
-
"name": "
|
|
5614
|
+
"name": "propertyTarget",
|
|
5477
5615
|
"type": {
|
|
5478
|
-
"text": "
|
|
5616
|
+
"text": "Component | null"
|
|
5479
5617
|
},
|
|
5480
|
-
"
|
|
5618
|
+
"default": "null"
|
|
5481
5619
|
},
|
|
5482
5620
|
{
|
|
5483
|
-
"kind": "
|
|
5484
|
-
"name": "
|
|
5485
|
-
"
|
|
5486
|
-
|
|
5487
|
-
"name": "scene",
|
|
5488
|
-
"type": {
|
|
5489
|
-
"text": "Scene | null"
|
|
5490
|
-
}
|
|
5491
|
-
}
|
|
5492
|
-
]
|
|
5621
|
+
"kind": "field",
|
|
5622
|
+
"name": "scopedElements",
|
|
5623
|
+
"static": true,
|
|
5624
|
+
"readonly": true
|
|
5493
5625
|
},
|
|
5494
5626
|
{
|
|
5495
5627
|
"kind": "method",
|
|
5496
|
-
"name": "
|
|
5628
|
+
"name": "_onPropertyChanged",
|
|
5497
5629
|
"parameters": [
|
|
5498
5630
|
{
|
|
5499
|
-
"name": "
|
|
5631
|
+
"name": "e",
|
|
5500
5632
|
"type": {
|
|
5501
|
-
"text": "
|
|
5633
|
+
"text": "CustomEvent"
|
|
5502
5634
|
}
|
|
5503
5635
|
}
|
|
5504
5636
|
]
|
|
5505
5637
|
},
|
|
5506
5638
|
{
|
|
5507
5639
|
"kind": "method",
|
|
5508
|
-
"name": "
|
|
5640
|
+
"name": "_onBoundsChanged",
|
|
5509
5641
|
"parameters": [
|
|
5510
5642
|
{
|
|
5511
|
-
"name": "
|
|
5643
|
+
"name": "e",
|
|
5512
5644
|
"type": {
|
|
5513
|
-
"text": "
|
|
5645
|
+
"text": "CustomEvent"
|
|
5514
5646
|
}
|
|
5515
5647
|
}
|
|
5516
5648
|
]
|
|
5517
5649
|
},
|
|
5518
5650
|
{
|
|
5519
5651
|
"kind": "method",
|
|
5520
|
-
"name": "
|
|
5521
|
-
"parameters": [
|
|
5522
|
-
{
|
|
5523
|
-
"name": "selected",
|
|
5524
|
-
"type": {
|
|
5525
|
-
"text": "Component[]"
|
|
5526
|
-
}
|
|
5527
|
-
}
|
|
5528
|
-
]
|
|
5652
|
+
"name": "_onChangedByScene"
|
|
5529
5653
|
},
|
|
5530
5654
|
{
|
|
5531
5655
|
"kind": "method",
|
|
5532
|
-
"name": "
|
|
5656
|
+
"name": "_setPropertyTargetAsDefault"
|
|
5533
5657
|
},
|
|
5534
5658
|
{
|
|
5535
5659
|
"kind": "method",
|
|
5536
|
-
"name": "
|
|
5660
|
+
"name": "_onCollapsed",
|
|
5537
5661
|
"parameters": [
|
|
5538
5662
|
{
|
|
5539
|
-
"name": "
|
|
5663
|
+
"name": "collapsed",
|
|
5540
5664
|
"type": {
|
|
5541
5665
|
"text": "boolean"
|
|
5542
5666
|
}
|
|
@@ -5545,52 +5669,7 @@
|
|
|
5545
5669
|
},
|
|
5546
5670
|
{
|
|
5547
5671
|
"kind": "method",
|
|
5548
|
-
"name": "
|
|
5549
|
-
"parameters": [
|
|
5550
|
-
{
|
|
5551
|
-
"name": "model",
|
|
5552
|
-
"optional": true,
|
|
5553
|
-
"type": {
|
|
5554
|
-
"text": "Model"
|
|
5555
|
-
}
|
|
5556
|
-
}
|
|
5557
|
-
]
|
|
5558
|
-
},
|
|
5559
|
-
{
|
|
5560
|
-
"kind": "method",
|
|
5561
|
-
"name": "_onDisplayChanged",
|
|
5562
|
-
"parameters": [
|
|
5563
|
-
{
|
|
5564
|
-
"name": "screenSize",
|
|
5565
|
-
"type": {
|
|
5566
|
-
"text": "string | number"
|
|
5567
|
-
}
|
|
5568
|
-
}
|
|
5569
|
-
]
|
|
5570
|
-
},
|
|
5571
|
-
{
|
|
5572
|
-
"kind": "method",
|
|
5573
|
-
"name": "_onModeChanged",
|
|
5574
|
-
"parameters": [
|
|
5575
|
-
{
|
|
5576
|
-
"name": "mode",
|
|
5577
|
-
"type": {
|
|
5578
|
-
"text": "SCENE_MODE"
|
|
5579
|
-
}
|
|
5580
|
-
}
|
|
5581
|
-
]
|
|
5582
|
-
},
|
|
5583
|
-
{
|
|
5584
|
-
"kind": "method",
|
|
5585
|
-
"name": "_onDataChanged",
|
|
5586
|
-
"parameters": [
|
|
5587
|
-
{
|
|
5588
|
-
"name": "data",
|
|
5589
|
-
"type": {
|
|
5590
|
-
"text": "any"
|
|
5591
|
-
}
|
|
5592
|
-
}
|
|
5593
|
-
]
|
|
5672
|
+
"name": "_onSceneChanged"
|
|
5594
5673
|
},
|
|
5595
5674
|
{
|
|
5596
5675
|
"kind": "method",
|
|
@@ -5606,55 +5685,29 @@
|
|
|
5606
5685
|
},
|
|
5607
5686
|
{
|
|
5608
5687
|
"kind": "method",
|
|
5609
|
-
"name": "
|
|
5688
|
+
"name": "_setPropertyTarget",
|
|
5610
5689
|
"parameters": [
|
|
5611
5690
|
{
|
|
5612
|
-
"name": "
|
|
5691
|
+
"name": "newTarget",
|
|
5613
5692
|
"type": {
|
|
5614
|
-
"text": "
|
|
5693
|
+
"text": "Component | null"
|
|
5615
5694
|
}
|
|
5616
5695
|
}
|
|
5617
5696
|
]
|
|
5618
5697
|
},
|
|
5619
5698
|
{
|
|
5620
5699
|
"kind": "method",
|
|
5621
|
-
"name": "
|
|
5700
|
+
"name": "_setBounds",
|
|
5622
5701
|
"parameters": [
|
|
5623
5702
|
{
|
|
5624
|
-
"name": "
|
|
5703
|
+
"name": "bounds",
|
|
5625
5704
|
"type": {
|
|
5626
|
-
"text": "
|
|
5705
|
+
"text": "BOUNDS"
|
|
5627
5706
|
}
|
|
5628
5707
|
}
|
|
5629
5708
|
]
|
|
5630
5709
|
}
|
|
5631
5710
|
],
|
|
5632
|
-
"events": [
|
|
5633
|
-
{
|
|
5634
|
-
"name": "scene-changed",
|
|
5635
|
-
"type": {
|
|
5636
|
-
"text": "CustomEvent"
|
|
5637
|
-
}
|
|
5638
|
-
},
|
|
5639
|
-
{
|
|
5640
|
-
"name": "mode-changed",
|
|
5641
|
-
"type": {
|
|
5642
|
-
"text": "CustomEvent"
|
|
5643
|
-
}
|
|
5644
|
-
},
|
|
5645
|
-
{
|
|
5646
|
-
"name": "variables-changed",
|
|
5647
|
-
"type": {
|
|
5648
|
-
"text": "CustomEvent"
|
|
5649
|
-
}
|
|
5650
|
-
},
|
|
5651
|
-
{
|
|
5652
|
-
"name": "selected-changed",
|
|
5653
|
-
"type": {
|
|
5654
|
-
"text": "CustomEvent"
|
|
5655
|
-
}
|
|
5656
|
-
}
|
|
5657
|
-
],
|
|
5658
5711
|
"attributes": [
|
|
5659
5712
|
{
|
|
5660
5713
|
"name": "scene",
|
|
@@ -5665,56 +5718,20 @@
|
|
|
5665
5718
|
"fieldName": "scene"
|
|
5666
5719
|
},
|
|
5667
5720
|
{
|
|
5668
|
-
"name": "
|
|
5669
|
-
"type": {
|
|
5670
|
-
"text": "Model | undefined"
|
|
5671
|
-
},
|
|
5672
|
-
"fieldName": "model"
|
|
5673
|
-
},
|
|
5674
|
-
{
|
|
5675
|
-
"name": "mode",
|
|
5676
|
-
"type": {
|
|
5677
|
-
"text": "SCENE_MODE"
|
|
5678
|
-
},
|
|
5679
|
-
"fieldName": "mode"
|
|
5680
|
-
},
|
|
5681
|
-
{
|
|
5682
|
-
"name": "screenSize",
|
|
5683
|
-
"type": {
|
|
5684
|
-
"text": "number"
|
|
5685
|
-
},
|
|
5686
|
-
"default": "13.3",
|
|
5687
|
-
"fieldName": "screenSize"
|
|
5688
|
-
},
|
|
5689
|
-
{
|
|
5690
|
-
"name": "variables",
|
|
5691
|
-
"type": {
|
|
5692
|
-
"text": "Properties"
|
|
5693
|
-
},
|
|
5694
|
-
"default": "{}",
|
|
5695
|
-
"fieldName": "variables"
|
|
5696
|
-
},
|
|
5697
|
-
{
|
|
5698
|
-
"name": "data",
|
|
5721
|
+
"name": "bounds",
|
|
5699
5722
|
"type": {
|
|
5700
5723
|
"text": "any"
|
|
5701
5724
|
},
|
|
5702
|
-
"
|
|
5703
|
-
|
|
5704
|
-
{
|
|
5705
|
-
"name": "themes",
|
|
5706
|
-
"type": {
|
|
5707
|
-
"text": "any | undefined"
|
|
5708
|
-
},
|
|
5709
|
-
"fieldName": "themes"
|
|
5725
|
+
"default": "{}",
|
|
5726
|
+
"fieldName": "bounds"
|
|
5710
5727
|
},
|
|
5711
5728
|
{
|
|
5712
|
-
"name": "
|
|
5729
|
+
"name": "model",
|
|
5713
5730
|
"type": {
|
|
5714
|
-
"text": "
|
|
5731
|
+
"text": "Model | null"
|
|
5715
5732
|
},
|
|
5716
|
-
"default": "
|
|
5717
|
-
"fieldName": "
|
|
5733
|
+
"default": "{}",
|
|
5734
|
+
"fieldName": "model"
|
|
5718
5735
|
},
|
|
5719
5736
|
{
|
|
5720
5737
|
"name": "selected",
|
|
@@ -5725,76 +5742,65 @@
|
|
|
5725
5742
|
"fieldName": "selected"
|
|
5726
5743
|
},
|
|
5727
5744
|
{
|
|
5728
|
-
"name": "
|
|
5745
|
+
"name": "specificProps",
|
|
5729
5746
|
"type": {
|
|
5730
|
-
"text": "
|
|
5747
|
+
"text": "any"
|
|
5731
5748
|
},
|
|
5732
|
-
"
|
|
5733
|
-
"fieldName": "disposeWhenDetached"
|
|
5749
|
+
"fieldName": "specificProps"
|
|
5734
5750
|
},
|
|
5735
5751
|
{
|
|
5736
|
-
"name": "
|
|
5752
|
+
"name": "tabName",
|
|
5737
5753
|
"type": {
|
|
5738
|
-
"text": "string"
|
|
5754
|
+
"text": "string | null"
|
|
5739
5755
|
},
|
|
5740
|
-
"default": "''",
|
|
5741
|
-
"fieldName": "
|
|
5756
|
+
"default": "'specific'",
|
|
5757
|
+
"fieldName": "tabName"
|
|
5742
5758
|
},
|
|
5743
5759
|
{
|
|
5744
|
-
"name": "
|
|
5760
|
+
"name": "collapsed",
|
|
5745
5761
|
"type": {
|
|
5746
|
-
"text": "
|
|
5762
|
+
"text": "boolean"
|
|
5747
5763
|
},
|
|
5748
|
-
"
|
|
5764
|
+
"default": "false",
|
|
5765
|
+
"fieldName": "collapsed"
|
|
5749
5766
|
},
|
|
5750
5767
|
{
|
|
5751
|
-
"name": "
|
|
5768
|
+
"name": "fonts",
|
|
5752
5769
|
"type": {
|
|
5753
|
-
"text": "
|
|
5770
|
+
"text": "any[]"
|
|
5754
5771
|
},
|
|
5755
|
-
"default": "
|
|
5756
|
-
"fieldName": "
|
|
5772
|
+
"default": "[]",
|
|
5773
|
+
"fieldName": "fonts"
|
|
5757
5774
|
},
|
|
5758
5775
|
{
|
|
5759
|
-
"name": "
|
|
5776
|
+
"name": "propertyEditor",
|
|
5760
5777
|
"type": {
|
|
5761
|
-
"text": "
|
|
5778
|
+
"text": "any[]"
|
|
5762
5779
|
},
|
|
5763
|
-
"default": "
|
|
5764
|
-
"fieldName": "
|
|
5765
|
-
}
|
|
5780
|
+
"default": "[]",
|
|
5781
|
+
"fieldName": "propertyEditor"
|
|
5782
|
+
}
|
|
5783
|
+
],
|
|
5784
|
+
"mixins": [
|
|
5766
5785
|
{
|
|
5767
|
-
"name": "
|
|
5768
|
-
"
|
|
5769
|
-
"text": "boolean"
|
|
5770
|
-
},
|
|
5771
|
-
"default": "false",
|
|
5772
|
-
"fieldName": "showInspector"
|
|
5786
|
+
"name": "ScopedElementsMixin",
|
|
5787
|
+
"package": "@open-wc/scoped-elements"
|
|
5773
5788
|
}
|
|
5774
5789
|
],
|
|
5775
5790
|
"superclass": {
|
|
5776
5791
|
"name": "LitElement",
|
|
5777
5792
|
"package": "lit"
|
|
5778
5793
|
},
|
|
5779
|
-
"tagName": "ox-scene-viewer",
|
|
5780
5794
|
"customElement": true
|
|
5781
5795
|
}
|
|
5782
5796
|
],
|
|
5783
5797
|
"exports": [
|
|
5784
5798
|
{
|
|
5785
5799
|
"kind": "js",
|
|
5786
|
-
"name": "
|
|
5787
|
-
"declaration": {
|
|
5788
|
-
"name": "OxSceneViewer",
|
|
5789
|
-
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
5790
|
-
}
|
|
5791
|
-
},
|
|
5792
|
-
{
|
|
5793
|
-
"kind": "custom-element-definition",
|
|
5794
|
-
"name": "ox-scene-viewer",
|
|
5800
|
+
"name": "PropertySidebar",
|
|
5795
5801
|
"declaration": {
|
|
5796
|
-
"name": "
|
|
5797
|
-
"module": "src/modeller/
|
|
5802
|
+
"name": "PropertySidebar",
|
|
5803
|
+
"module": "src/modeller/property-sidebar/property-sidebar.ts"
|
|
5798
5804
|
}
|
|
5799
5805
|
}
|
|
5800
5806
|
]
|