@fmsim/board 1.0.46 → 1.0.47
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 +1062 -1062
- package/dist/src/modeller/property-sidebar/inspector/inspector.js +1 -1
- package/dist/src/modeller/property-sidebar/inspector/inspector.js.map +1 -1
- package/dist/src/ox-board-component-info.js +2 -2
- package/dist/src/ox-board-component-info.js.map +1 -1
- package/dist/src/ox-board-viewer.js +10 -5
- 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,6 +2,91 @@
|
|
|
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
|
+
},
|
|
5
90
|
{
|
|
6
91
|
"kind": "javascript-module",
|
|
7
92
|
"path": "src/index.ts",
|
|
@@ -1646,85 +1731,92 @@
|
|
|
1646
1731
|
},
|
|
1647
1732
|
{
|
|
1648
1733
|
"kind": "javascript-module",
|
|
1649
|
-
"path": "
|
|
1734
|
+
"path": "src/data-storage/data-storage.ts",
|
|
1650
1735
|
"declarations": [
|
|
1651
1736
|
{
|
|
1652
|
-
"kind": "
|
|
1653
|
-
"
|
|
1654
|
-
"
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1737
|
+
"kind": "class",
|
|
1738
|
+
"description": "",
|
|
1739
|
+
"name": "DataStorage",
|
|
1740
|
+
"members": [
|
|
1741
|
+
{
|
|
1742
|
+
"kind": "field",
|
|
1743
|
+
"name": "id",
|
|
1744
|
+
"type": {
|
|
1745
|
+
"text": "string"
|
|
1746
|
+
},
|
|
1747
|
+
"privacy": "private",
|
|
1748
|
+
"default": "id"
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"kind": "method",
|
|
1752
|
+
"name": "load",
|
|
1753
|
+
"privacy": "public",
|
|
1754
|
+
"return": {
|
|
1755
|
+
"type": {
|
|
1756
|
+
"text": "Promise<any>"
|
|
1757
|
+
}
|
|
1758
|
+
},
|
|
1759
|
+
"parameters": [
|
|
1760
|
+
{
|
|
1761
|
+
"name": "key",
|
|
1762
|
+
"type": {
|
|
1763
|
+
"text": "Component"
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1766
|
+
]
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
"kind": "method",
|
|
1770
|
+
"name": "save",
|
|
1771
|
+
"privacy": "public",
|
|
1772
|
+
"return": {
|
|
1773
|
+
"type": {
|
|
1774
|
+
"text": "Promise<void>"
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
"parameters": [
|
|
1778
|
+
{
|
|
1779
|
+
"name": "key",
|
|
1780
|
+
"type": {
|
|
1781
|
+
"text": "Component"
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
"name": "value",
|
|
1786
|
+
"type": {
|
|
1787
|
+
"text": "any"
|
|
1788
|
+
}
|
|
1789
|
+
}
|
|
1790
|
+
]
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"kind": "method",
|
|
1794
|
+
"name": "clear",
|
|
1795
|
+
"privacy": "public",
|
|
1796
|
+
"return": {
|
|
1797
|
+
"type": {
|
|
1798
|
+
"text": "Promise<void>"
|
|
1799
|
+
}
|
|
1800
|
+
},
|
|
1801
|
+
"parameters": [
|
|
1802
|
+
{
|
|
1803
|
+
"name": "key",
|
|
1804
|
+
"type": {
|
|
1805
|
+
"text": "Component"
|
|
1806
|
+
}
|
|
1807
|
+
}
|
|
1808
|
+
]
|
|
1809
|
+
}
|
|
1810
|
+
]
|
|
1687
1811
|
}
|
|
1688
1812
|
],
|
|
1689
1813
|
"exports": [
|
|
1690
1814
|
{
|
|
1691
1815
|
"kind": "js",
|
|
1692
|
-
"name": "
|
|
1693
|
-
"declaration": {
|
|
1694
|
-
"name": "meta",
|
|
1695
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1696
|
-
}
|
|
1697
|
-
},
|
|
1698
|
-
{
|
|
1699
|
-
"kind": "js",
|
|
1700
|
-
"name": "Default",
|
|
1701
|
-
"declaration": {
|
|
1702
|
-
"name": "Default",
|
|
1703
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1704
|
-
}
|
|
1705
|
-
},
|
|
1706
|
-
{
|
|
1707
|
-
"kind": "js",
|
|
1708
|
-
"name": "WithCategory",
|
|
1709
|
-
"declaration": {
|
|
1710
|
-
"name": "WithCategory",
|
|
1711
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1712
|
-
}
|
|
1713
|
-
},
|
|
1714
|
-
{
|
|
1715
|
-
"kind": "js",
|
|
1716
|
-
"name": "ReadOnly",
|
|
1717
|
-
"declaration": {
|
|
1718
|
-
"name": "ReadOnly",
|
|
1719
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1720
|
-
}
|
|
1721
|
-
},
|
|
1722
|
-
{
|
|
1723
|
-
"kind": "js",
|
|
1724
|
-
"name": "WithTestData",
|
|
1816
|
+
"name": "DataStorage",
|
|
1725
1817
|
"declaration": {
|
|
1726
|
-
"name": "
|
|
1727
|
-
"module": "
|
|
1818
|
+
"name": "DataStorage",
|
|
1819
|
+
"module": "src/data-storage/data-storage.ts"
|
|
1728
1820
|
}
|
|
1729
1821
|
}
|
|
1730
1822
|
]
|
|
@@ -2833,118 +2925,26 @@
|
|
|
2833
2925
|
},
|
|
2834
2926
|
{
|
|
2835
2927
|
"kind": "javascript-module",
|
|
2836
|
-
"path": "src/
|
|
2928
|
+
"path": "src/layers/mcs-mouse-event-handler.ts",
|
|
2929
|
+
"declarations": [],
|
|
2930
|
+
"exports": []
|
|
2931
|
+
},
|
|
2932
|
+
{
|
|
2933
|
+
"kind": "javascript-module",
|
|
2934
|
+
"path": "src/layers/movement-layer.ts",
|
|
2837
2935
|
"declarations": [
|
|
2838
2936
|
{
|
|
2839
2937
|
"kind": "class",
|
|
2840
2938
|
"description": "",
|
|
2841
|
-
"name": "
|
|
2939
|
+
"name": "MovementLayer",
|
|
2842
2940
|
"members": [
|
|
2843
2941
|
{
|
|
2844
2942
|
"kind": "field",
|
|
2845
|
-
"name": "
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
"
|
|
2850
|
-
"default": "id"
|
|
2851
|
-
},
|
|
2852
|
-
{
|
|
2853
|
-
"kind": "method",
|
|
2854
|
-
"name": "load",
|
|
2855
|
-
"privacy": "public",
|
|
2856
|
-
"return": {
|
|
2857
|
-
"type": {
|
|
2858
|
-
"text": "Promise<any>"
|
|
2859
|
-
}
|
|
2860
|
-
},
|
|
2861
|
-
"parameters": [
|
|
2862
|
-
{
|
|
2863
|
-
"name": "key",
|
|
2864
|
-
"type": {
|
|
2865
|
-
"text": "Component"
|
|
2866
|
-
}
|
|
2867
|
-
}
|
|
2868
|
-
]
|
|
2869
|
-
},
|
|
2870
|
-
{
|
|
2871
|
-
"kind": "method",
|
|
2872
|
-
"name": "save",
|
|
2873
|
-
"privacy": "public",
|
|
2874
|
-
"return": {
|
|
2875
|
-
"type": {
|
|
2876
|
-
"text": "Promise<void>"
|
|
2877
|
-
}
|
|
2878
|
-
},
|
|
2879
|
-
"parameters": [
|
|
2880
|
-
{
|
|
2881
|
-
"name": "key",
|
|
2882
|
-
"type": {
|
|
2883
|
-
"text": "Component"
|
|
2884
|
-
}
|
|
2885
|
-
},
|
|
2886
|
-
{
|
|
2887
|
-
"name": "value",
|
|
2888
|
-
"type": {
|
|
2889
|
-
"text": "any"
|
|
2890
|
-
}
|
|
2891
|
-
}
|
|
2892
|
-
]
|
|
2893
|
-
},
|
|
2894
|
-
{
|
|
2895
|
-
"kind": "method",
|
|
2896
|
-
"name": "clear",
|
|
2897
|
-
"privacy": "public",
|
|
2898
|
-
"return": {
|
|
2899
|
-
"type": {
|
|
2900
|
-
"text": "Promise<void>"
|
|
2901
|
-
}
|
|
2902
|
-
},
|
|
2903
|
-
"parameters": [
|
|
2904
|
-
{
|
|
2905
|
-
"name": "key",
|
|
2906
|
-
"type": {
|
|
2907
|
-
"text": "Component"
|
|
2908
|
-
}
|
|
2909
|
-
}
|
|
2910
|
-
]
|
|
2911
|
-
}
|
|
2912
|
-
]
|
|
2913
|
-
}
|
|
2914
|
-
],
|
|
2915
|
-
"exports": [
|
|
2916
|
-
{
|
|
2917
|
-
"kind": "js",
|
|
2918
|
-
"name": "DataStorage",
|
|
2919
|
-
"declaration": {
|
|
2920
|
-
"name": "DataStorage",
|
|
2921
|
-
"module": "src/data-storage/data-storage.ts"
|
|
2922
|
-
}
|
|
2923
|
-
}
|
|
2924
|
-
]
|
|
2925
|
-
},
|
|
2926
|
-
{
|
|
2927
|
-
"kind": "javascript-module",
|
|
2928
|
-
"path": "src/layers/mcs-mouse-event-handler.ts",
|
|
2929
|
-
"declarations": [],
|
|
2930
|
-
"exports": []
|
|
2931
|
-
},
|
|
2932
|
-
{
|
|
2933
|
-
"kind": "javascript-module",
|
|
2934
|
-
"path": "src/layers/movement-layer.ts",
|
|
2935
|
-
"declarations": [
|
|
2936
|
-
{
|
|
2937
|
-
"kind": "class",
|
|
2938
|
-
"description": "",
|
|
2939
|
-
"name": "MovementLayer",
|
|
2940
|
-
"members": [
|
|
2941
|
-
{
|
|
2942
|
-
"kind": "field",
|
|
2943
|
-
"name": "drawInstructionHandler"
|
|
2944
|
-
},
|
|
2945
|
-
{
|
|
2946
|
-
"kind": "field",
|
|
2947
|
-
"name": "clickComponentHandler"
|
|
2943
|
+
"name": "drawInstructionHandler"
|
|
2944
|
+
},
|
|
2945
|
+
{
|
|
2946
|
+
"kind": "field",
|
|
2947
|
+
"name": "clickComponentHandler"
|
|
2948
2948
|
},
|
|
2949
2949
|
{
|
|
2950
2950
|
"kind": "method",
|
|
@@ -4669,529 +4669,254 @@
|
|
|
4669
4669
|
},
|
|
4670
4670
|
{
|
|
4671
4671
|
"kind": "javascript-module",
|
|
4672
|
-
"path": "src/modeller/
|
|
4672
|
+
"path": "src/modeller/property-sidebar/abstract-property.ts",
|
|
4673
4673
|
"declarations": [
|
|
4674
4674
|
{
|
|
4675
4675
|
"kind": "class",
|
|
4676
4676
|
"description": "",
|
|
4677
|
-
"name": "
|
|
4677
|
+
"name": "AbstractProperty",
|
|
4678
4678
|
"members": [
|
|
4679
4679
|
{
|
|
4680
4680
|
"kind": "method",
|
|
4681
|
-
"name": "
|
|
4681
|
+
"name": "_onValueChange",
|
|
4682
4682
|
"parameters": [
|
|
4683
4683
|
{
|
|
4684
|
-
"name": "
|
|
4684
|
+
"name": "e",
|
|
4685
4685
|
"type": {
|
|
4686
|
-
"text": "
|
|
4686
|
+
"text": "Event"
|
|
4687
4687
|
}
|
|
4688
4688
|
}
|
|
4689
4689
|
]
|
|
4690
|
-
}
|
|
4691
|
-
],
|
|
4692
|
-
"superclass": {
|
|
4693
|
-
"name": "SceneLayer",
|
|
4694
|
-
"package": "@hatiolab/things-scene"
|
|
4695
|
-
}
|
|
4696
|
-
}
|
|
4697
|
-
],
|
|
4698
|
-
"exports": [
|
|
4699
|
-
{
|
|
4700
|
-
"kind": "js",
|
|
4701
|
-
"name": "default",
|
|
4702
|
-
"declaration": {
|
|
4703
|
-
"name": "ConfidentialOverlay",
|
|
4704
|
-
"module": "src/modeller/scene-viewer/confidential-overlay.ts"
|
|
4705
|
-
}
|
|
4706
|
-
}
|
|
4707
|
-
]
|
|
4708
|
-
},
|
|
4709
|
-
{
|
|
4710
|
-
"kind": "javascript-module",
|
|
4711
|
-
"path": "src/modeller/scene-viewer/ox-scene-handler.ts",
|
|
4712
|
-
"declarations": [
|
|
4713
|
-
{
|
|
4714
|
-
"kind": "class",
|
|
4715
|
-
"description": "",
|
|
4716
|
-
"name": "OxSceneHandler",
|
|
4717
|
-
"members": [
|
|
4690
|
+
},
|
|
4718
4691
|
{
|
|
4719
|
-
"kind": "
|
|
4720
|
-
"name": "
|
|
4721
|
-
"
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4692
|
+
"kind": "method",
|
|
4693
|
+
"name": "_getValueFromEventTarget",
|
|
4694
|
+
"parameters": [
|
|
4695
|
+
{
|
|
4696
|
+
"name": "element",
|
|
4697
|
+
"type": {
|
|
4698
|
+
"text": "HTMLElement"
|
|
4699
|
+
}
|
|
4700
|
+
}
|
|
4701
|
+
]
|
|
4725
4702
|
},
|
|
4726
4703
|
{
|
|
4727
|
-
"kind": "
|
|
4728
|
-
"name": "
|
|
4729
|
-
"
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4704
|
+
"kind": "method",
|
|
4705
|
+
"name": "_onAfterValueChange",
|
|
4706
|
+
"parameters": [
|
|
4707
|
+
{
|
|
4708
|
+
"name": "key",
|
|
4709
|
+
"type": {
|
|
4710
|
+
"text": "string"
|
|
4711
|
+
}
|
|
4712
|
+
},
|
|
4713
|
+
{
|
|
4714
|
+
"name": "value",
|
|
4715
|
+
"type": {
|
|
4716
|
+
"text": "any"
|
|
4717
|
+
}
|
|
4718
|
+
}
|
|
4719
|
+
]
|
|
4733
4720
|
}
|
|
4734
4721
|
],
|
|
4735
|
-
"
|
|
4736
|
-
{
|
|
4737
|
-
"name": "type",
|
|
4738
|
-
"type": {
|
|
4739
|
-
"text": "string"
|
|
4740
|
-
},
|
|
4741
|
-
"fieldName": "type"
|
|
4742
|
-
},
|
|
4722
|
+
"events": [
|
|
4743
4723
|
{
|
|
4744
|
-
"name": "
|
|
4724
|
+
"name": "property-change",
|
|
4745
4725
|
"type": {
|
|
4746
|
-
"text": "
|
|
4747
|
-
}
|
|
4748
|
-
"fieldName": "model"
|
|
4726
|
+
"text": "CustomEvent"
|
|
4727
|
+
}
|
|
4749
4728
|
}
|
|
4750
4729
|
],
|
|
4751
4730
|
"superclass": {
|
|
4752
4731
|
"name": "LitElement",
|
|
4753
4732
|
"package": "lit"
|
|
4754
4733
|
},
|
|
4755
|
-
"tagName": "ox-scene-handler",
|
|
4756
4734
|
"customElement": true
|
|
4757
4735
|
}
|
|
4758
4736
|
],
|
|
4759
4737
|
"exports": [
|
|
4760
4738
|
{
|
|
4761
4739
|
"kind": "js",
|
|
4762
|
-
"name": "
|
|
4740
|
+
"name": "AbstractProperty",
|
|
4763
4741
|
"declaration": {
|
|
4764
|
-
"name": "
|
|
4765
|
-
"module": "src/modeller/
|
|
4742
|
+
"name": "AbstractProperty",
|
|
4743
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
4766
4744
|
}
|
|
4767
|
-
}
|
|
4745
|
+
}
|
|
4746
|
+
]
|
|
4747
|
+
},
|
|
4748
|
+
{
|
|
4749
|
+
"kind": "javascript-module",
|
|
4750
|
+
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
4751
|
+
"declarations": [
|
|
4768
4752
|
{
|
|
4769
|
-
"kind": "
|
|
4770
|
-
"name": "
|
|
4753
|
+
"kind": "variable",
|
|
4754
|
+
"name": "PropertySharedStyle",
|
|
4755
|
+
"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; } `"
|
|
4756
|
+
}
|
|
4757
|
+
],
|
|
4758
|
+
"exports": [
|
|
4759
|
+
{
|
|
4760
|
+
"kind": "js",
|
|
4761
|
+
"name": "PropertySharedStyle",
|
|
4771
4762
|
"declaration": {
|
|
4772
|
-
"name": "
|
|
4773
|
-
"module": "src/modeller/
|
|
4763
|
+
"name": "PropertySharedStyle",
|
|
4764
|
+
"module": "src/modeller/property-sidebar/property-shared-style.ts"
|
|
4774
4765
|
}
|
|
4775
4766
|
}
|
|
4776
4767
|
]
|
|
4777
4768
|
},
|
|
4778
4769
|
{
|
|
4779
4770
|
"kind": "javascript-module",
|
|
4780
|
-
"path": "src/modeller/
|
|
4771
|
+
"path": "src/modeller/property-sidebar/property-sidebar.ts",
|
|
4781
4772
|
"declarations": [
|
|
4782
4773
|
{
|
|
4783
4774
|
"kind": "class",
|
|
4784
4775
|
"description": "",
|
|
4785
|
-
"name": "
|
|
4776
|
+
"name": "PropertySidebar",
|
|
4786
4777
|
"members": [
|
|
4787
4778
|
{
|
|
4788
4779
|
"kind": "field",
|
|
4789
|
-
"name": "
|
|
4780
|
+
"name": "scene",
|
|
4790
4781
|
"type": {
|
|
4791
|
-
"text": "
|
|
4782
|
+
"text": "Scene | null"
|
|
4792
4783
|
},
|
|
4793
|
-
"
|
|
4784
|
+
"default": "null",
|
|
4785
|
+
"attribute": "scene"
|
|
4794
4786
|
},
|
|
4795
4787
|
{
|
|
4796
4788
|
"kind": "field",
|
|
4797
|
-
"name": "
|
|
4789
|
+
"name": "bounds",
|
|
4798
4790
|
"type": {
|
|
4799
|
-
"text": "
|
|
4791
|
+
"text": "any"
|
|
4800
4792
|
},
|
|
4801
|
-
"
|
|
4793
|
+
"default": "{}",
|
|
4794
|
+
"attribute": "bounds"
|
|
4802
4795
|
},
|
|
4803
4796
|
{
|
|
4804
|
-
"kind": "
|
|
4805
|
-
"name": "
|
|
4806
|
-
}
|
|
4807
|
-
],
|
|
4808
|
-
"attributes": [
|
|
4809
|
-
{
|
|
4810
|
-
"name": "type",
|
|
4797
|
+
"kind": "field",
|
|
4798
|
+
"name": "model",
|
|
4811
4799
|
"type": {
|
|
4812
|
-
"text": "
|
|
4800
|
+
"text": "Model | null"
|
|
4813
4801
|
},
|
|
4814
|
-
"
|
|
4802
|
+
"default": "{}",
|
|
4803
|
+
"attribute": "model"
|
|
4815
4804
|
},
|
|
4816
4805
|
{
|
|
4817
|
-
"
|
|
4806
|
+
"kind": "field",
|
|
4807
|
+
"name": "selected",
|
|
4818
4808
|
"type": {
|
|
4819
|
-
"text": "
|
|
4809
|
+
"text": "Component[]"
|
|
4820
4810
|
},
|
|
4821
|
-
"
|
|
4822
|
-
|
|
4823
|
-
],
|
|
4824
|
-
"superclass": {
|
|
4825
|
-
"name": "LitElement",
|
|
4826
|
-
"package": "lit"
|
|
4827
|
-
},
|
|
4828
|
-
"tagName": "ox-scene-layer",
|
|
4829
|
-
"customElement": true
|
|
4830
|
-
}
|
|
4831
|
-
],
|
|
4832
|
-
"exports": [
|
|
4833
|
-
{
|
|
4834
|
-
"kind": "js",
|
|
4835
|
-
"name": "default",
|
|
4836
|
-
"declaration": {
|
|
4837
|
-
"name": "OxSceneLayer",
|
|
4838
|
-
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
4839
|
-
}
|
|
4840
|
-
},
|
|
4841
|
-
{
|
|
4842
|
-
"kind": "custom-element-definition",
|
|
4843
|
-
"name": "ox-scene-layer",
|
|
4844
|
-
"declaration": {
|
|
4845
|
-
"name": "OxSceneLayer",
|
|
4846
|
-
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
4847
|
-
}
|
|
4848
|
-
}
|
|
4849
|
-
]
|
|
4850
|
-
},
|
|
4851
|
-
{
|
|
4852
|
-
"kind": "javascript-module",
|
|
4853
|
-
"path": "src/modeller/scene-viewer/ox-scene-property.ts",
|
|
4854
|
-
"declarations": [
|
|
4855
|
-
{
|
|
4856
|
-
"kind": "class",
|
|
4857
|
-
"description": "",
|
|
4858
|
-
"name": "OxSceneProperty",
|
|
4859
|
-
"members": [
|
|
4860
|
-
{
|
|
4861
|
-
"kind": "field",
|
|
4862
|
-
"name": "name",
|
|
4863
|
-
"type": {
|
|
4864
|
-
"text": "string"
|
|
4865
|
-
},
|
|
4866
|
-
"attribute": "name"
|
|
4867
|
-
},
|
|
4868
|
-
{
|
|
4869
|
-
"kind": "field",
|
|
4870
|
-
"name": "value",
|
|
4871
|
-
"type": {
|
|
4872
|
-
"text": "string"
|
|
4873
|
-
},
|
|
4874
|
-
"attribute": "value"
|
|
4875
|
-
},
|
|
4876
|
-
{
|
|
4877
|
-
"kind": "field",
|
|
4878
|
-
"name": "type",
|
|
4879
|
-
"type": {
|
|
4880
|
-
"text": "string"
|
|
4881
|
-
},
|
|
4882
|
-
"attribute": "type"
|
|
4883
|
-
}
|
|
4884
|
-
],
|
|
4885
|
-
"attributes": [
|
|
4886
|
-
{
|
|
4887
|
-
"name": "name",
|
|
4888
|
-
"type": {
|
|
4889
|
-
"text": "string"
|
|
4890
|
-
},
|
|
4891
|
-
"fieldName": "name"
|
|
4892
|
-
},
|
|
4893
|
-
{
|
|
4894
|
-
"name": "value",
|
|
4895
|
-
"type": {
|
|
4896
|
-
"text": "string"
|
|
4897
|
-
},
|
|
4898
|
-
"fieldName": "value"
|
|
4899
|
-
},
|
|
4900
|
-
{
|
|
4901
|
-
"name": "type",
|
|
4902
|
-
"type": {
|
|
4903
|
-
"text": "string"
|
|
4904
|
-
},
|
|
4905
|
-
"fieldName": "type"
|
|
4906
|
-
}
|
|
4907
|
-
],
|
|
4908
|
-
"superclass": {
|
|
4909
|
-
"name": "LitElement",
|
|
4910
|
-
"package": "lit"
|
|
4911
|
-
},
|
|
4912
|
-
"tagName": "ox-scene-property",
|
|
4913
|
-
"customElement": true
|
|
4914
|
-
}
|
|
4915
|
-
],
|
|
4916
|
-
"exports": [
|
|
4917
|
-
{
|
|
4918
|
-
"kind": "js",
|
|
4919
|
-
"name": "default",
|
|
4920
|
-
"declaration": {
|
|
4921
|
-
"name": "OxSceneProperty",
|
|
4922
|
-
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
4923
|
-
}
|
|
4924
|
-
},
|
|
4925
|
-
{
|
|
4926
|
-
"kind": "custom-element-definition",
|
|
4927
|
-
"name": "ox-scene-property",
|
|
4928
|
-
"declaration": {
|
|
4929
|
-
"name": "OxSceneProperty",
|
|
4930
|
-
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
4931
|
-
}
|
|
4932
|
-
}
|
|
4933
|
-
]
|
|
4934
|
-
},
|
|
4935
|
-
{
|
|
4936
|
-
"kind": "javascript-module",
|
|
4937
|
-
"path": "src/modeller/scene-viewer/ox-scene-viewer.ts",
|
|
4938
|
-
"declarations": [
|
|
4939
|
-
{
|
|
4940
|
-
"kind": "class",
|
|
4941
|
-
"description": "",
|
|
4942
|
-
"name": "OxSceneViewer",
|
|
4943
|
-
"members": [
|
|
4944
|
-
{
|
|
4945
|
-
"kind": "field",
|
|
4946
|
-
"name": "scene",
|
|
4947
|
-
"type": {
|
|
4948
|
-
"text": "Scene | null"
|
|
4949
|
-
},
|
|
4950
|
-
"default": "null",
|
|
4951
|
-
"attribute": "scene"
|
|
4952
|
-
},
|
|
4953
|
-
{
|
|
4954
|
-
"kind": "field",
|
|
4955
|
-
"name": "model",
|
|
4956
|
-
"type": {
|
|
4957
|
-
"text": "Model | undefined"
|
|
4958
|
-
},
|
|
4959
|
-
"attribute": "model"
|
|
4960
|
-
},
|
|
4961
|
-
{
|
|
4962
|
-
"kind": "field",
|
|
4963
|
-
"name": "mode",
|
|
4964
|
-
"type": {
|
|
4965
|
-
"text": "SCENE_MODE"
|
|
4966
|
-
},
|
|
4967
|
-
"attribute": "mode"
|
|
4968
|
-
},
|
|
4969
|
-
{
|
|
4970
|
-
"kind": "field",
|
|
4971
|
-
"name": "screenSize",
|
|
4972
|
-
"type": {
|
|
4973
|
-
"text": "number"
|
|
4974
|
-
},
|
|
4975
|
-
"default": "13.3",
|
|
4976
|
-
"attribute": "screenSize"
|
|
4977
|
-
},
|
|
4978
|
-
{
|
|
4979
|
-
"kind": "field",
|
|
4980
|
-
"name": "variables",
|
|
4981
|
-
"type": {
|
|
4982
|
-
"text": "Properties"
|
|
4983
|
-
},
|
|
4984
|
-
"default": "{}",
|
|
4985
|
-
"attribute": "variables"
|
|
4811
|
+
"default": "[]",
|
|
4812
|
+
"attribute": "selected"
|
|
4986
4813
|
},
|
|
4987
4814
|
{
|
|
4988
4815
|
"kind": "field",
|
|
4989
|
-
"name": "
|
|
4816
|
+
"name": "specificProps",
|
|
4990
4817
|
"type": {
|
|
4991
4818
|
"text": "any"
|
|
4992
4819
|
},
|
|
4993
|
-
"attribute": "
|
|
4994
|
-
},
|
|
4995
|
-
{
|
|
4996
|
-
"kind": "field",
|
|
4997
|
-
"name": "themes",
|
|
4998
|
-
"type": {
|
|
4999
|
-
"text": "any | undefined"
|
|
5000
|
-
},
|
|
5001
|
-
"attribute": "themes"
|
|
5002
|
-
},
|
|
5003
|
-
{
|
|
5004
|
-
"kind": "field",
|
|
5005
|
-
"name": "fit",
|
|
5006
|
-
"type": {
|
|
5007
|
-
"text": "FITMODE"
|
|
5008
|
-
},
|
|
5009
|
-
"default": "'none'",
|
|
5010
|
-
"attribute": "fit"
|
|
4820
|
+
"attribute": "specificProps"
|
|
5011
4821
|
},
|
|
5012
4822
|
{
|
|
5013
4823
|
"kind": "field",
|
|
5014
|
-
"name": "
|
|
4824
|
+
"name": "tabName",
|
|
5015
4825
|
"type": {
|
|
5016
|
-
"text": "
|
|
4826
|
+
"text": "string | null"
|
|
5017
4827
|
},
|
|
5018
|
-
"default": "
|
|
5019
|
-
"attribute": "
|
|
4828
|
+
"default": "'specific'",
|
|
4829
|
+
"attribute": "tabName"
|
|
5020
4830
|
},
|
|
5021
4831
|
{
|
|
5022
4832
|
"kind": "field",
|
|
5023
|
-
"name": "
|
|
4833
|
+
"name": "collapsed",
|
|
5024
4834
|
"type": {
|
|
5025
4835
|
"text": "boolean"
|
|
5026
4836
|
},
|
|
5027
4837
|
"default": "false",
|
|
5028
|
-
"attribute": "
|
|
5029
|
-
},
|
|
5030
|
-
{
|
|
5031
|
-
"kind": "field",
|
|
5032
|
-
"name": "baseUrl",
|
|
5033
|
-
"type": {
|
|
5034
|
-
"text": "string"
|
|
5035
|
-
},
|
|
5036
|
-
"default": "''",
|
|
5037
|
-
"attribute": "baseUrl"
|
|
5038
|
-
},
|
|
5039
|
-
{
|
|
5040
|
-
"kind": "field",
|
|
5041
|
-
"name": "provider",
|
|
5042
|
-
"type": {
|
|
5043
|
-
"text": "any"
|
|
5044
|
-
},
|
|
5045
|
-
"attribute": "provider"
|
|
4838
|
+
"attribute": "collapsed"
|
|
5046
4839
|
},
|
|
5047
4840
|
{
|
|
5048
4841
|
"kind": "field",
|
|
5049
|
-
"name": "
|
|
4842
|
+
"name": "fonts",
|
|
5050
4843
|
"type": {
|
|
5051
|
-
"text": "
|
|
4844
|
+
"text": "any[]"
|
|
5052
4845
|
},
|
|
5053
|
-
"default": "
|
|
5054
|
-
"attribute": "
|
|
4846
|
+
"default": "[]",
|
|
4847
|
+
"attribute": "fonts"
|
|
5055
4848
|
},
|
|
5056
4849
|
{
|
|
5057
4850
|
"kind": "field",
|
|
5058
|
-
"name": "
|
|
4851
|
+
"name": "propertyEditor",
|
|
5059
4852
|
"type": {
|
|
5060
|
-
"text": "
|
|
4853
|
+
"text": "any[]"
|
|
5061
4854
|
},
|
|
5062
|
-
"default": "
|
|
5063
|
-
"attribute": "
|
|
4855
|
+
"default": "[]",
|
|
4856
|
+
"attribute": "propertyEditor"
|
|
5064
4857
|
},
|
|
5065
4858
|
{
|
|
5066
4859
|
"kind": "field",
|
|
5067
|
-
"name": "
|
|
4860
|
+
"name": "propertyTarget",
|
|
5068
4861
|
"type": {
|
|
5069
|
-
"text": "
|
|
4862
|
+
"text": "Component | null"
|
|
5070
4863
|
},
|
|
5071
|
-
"default": "
|
|
5072
|
-
"attribute": "showInspector"
|
|
4864
|
+
"default": "null"
|
|
5073
4865
|
},
|
|
5074
4866
|
{
|
|
5075
4867
|
"kind": "field",
|
|
5076
|
-
"name": "
|
|
5077
|
-
"
|
|
5078
|
-
|
|
5079
|
-
},
|
|
5080
|
-
"privacy": "private"
|
|
5081
|
-
},
|
|
5082
|
-
{
|
|
5083
|
-
"kind": "method",
|
|
5084
|
-
"name": "_setScene",
|
|
5085
|
-
"parameters": [
|
|
5086
|
-
{
|
|
5087
|
-
"name": "scene",
|
|
5088
|
-
"type": {
|
|
5089
|
-
"text": "Scene | null"
|
|
5090
|
-
}
|
|
5091
|
-
}
|
|
5092
|
-
]
|
|
5093
|
-
},
|
|
5094
|
-
{
|
|
5095
|
-
"kind": "method",
|
|
5096
|
-
"name": "_setMode",
|
|
5097
|
-
"parameters": [
|
|
5098
|
-
{
|
|
5099
|
-
"name": "mode",
|
|
5100
|
-
"type": {
|
|
5101
|
-
"text": "SCENE_MODE"
|
|
5102
|
-
}
|
|
5103
|
-
}
|
|
5104
|
-
]
|
|
5105
|
-
},
|
|
5106
|
-
{
|
|
5107
|
-
"kind": "method",
|
|
5108
|
-
"name": "_setVariables",
|
|
5109
|
-
"parameters": [
|
|
5110
|
-
{
|
|
5111
|
-
"name": "variables",
|
|
5112
|
-
"type": {
|
|
5113
|
-
"text": "Properties"
|
|
5114
|
-
}
|
|
5115
|
-
}
|
|
5116
|
-
]
|
|
5117
|
-
},
|
|
5118
|
-
{
|
|
5119
|
-
"kind": "method",
|
|
5120
|
-
"name": "_setSelected",
|
|
5121
|
-
"parameters": [
|
|
5122
|
-
{
|
|
5123
|
-
"name": "selected",
|
|
5124
|
-
"type": {
|
|
5125
|
-
"text": "Component[]"
|
|
5126
|
-
}
|
|
5127
|
-
}
|
|
5128
|
-
]
|
|
5129
|
-
},
|
|
5130
|
-
{
|
|
5131
|
-
"kind": "method",
|
|
5132
|
-
"name": "_disposeScene"
|
|
5133
|
-
},
|
|
5134
|
-
{
|
|
5135
|
-
"kind": "method",
|
|
5136
|
-
"name": "resize",
|
|
5137
|
-
"parameters": [
|
|
5138
|
-
{
|
|
5139
|
-
"name": "force",
|
|
5140
|
-
"type": {
|
|
5141
|
-
"text": "boolean"
|
|
5142
|
-
}
|
|
5143
|
-
}
|
|
5144
|
-
]
|
|
5145
|
-
},
|
|
5146
|
-
{
|
|
5147
|
-
"kind": "method",
|
|
5148
|
-
"name": "_onModelChanged",
|
|
5149
|
-
"parameters": [
|
|
5150
|
-
{
|
|
5151
|
-
"name": "model",
|
|
5152
|
-
"optional": true,
|
|
5153
|
-
"type": {
|
|
5154
|
-
"text": "Model"
|
|
5155
|
-
}
|
|
5156
|
-
}
|
|
5157
|
-
]
|
|
4868
|
+
"name": "scopedElements",
|
|
4869
|
+
"static": true,
|
|
4870
|
+
"readonly": true
|
|
5158
4871
|
},
|
|
5159
4872
|
{
|
|
5160
4873
|
"kind": "method",
|
|
5161
|
-
"name": "
|
|
4874
|
+
"name": "_onPropertyChanged",
|
|
5162
4875
|
"parameters": [
|
|
5163
4876
|
{
|
|
5164
|
-
"name": "
|
|
4877
|
+
"name": "e",
|
|
5165
4878
|
"type": {
|
|
5166
|
-
"text": "
|
|
4879
|
+
"text": "CustomEvent"
|
|
5167
4880
|
}
|
|
5168
4881
|
}
|
|
5169
4882
|
]
|
|
5170
4883
|
},
|
|
5171
4884
|
{
|
|
5172
4885
|
"kind": "method",
|
|
5173
|
-
"name": "
|
|
4886
|
+
"name": "_onBoundsChanged",
|
|
5174
4887
|
"parameters": [
|
|
5175
4888
|
{
|
|
5176
|
-
"name": "
|
|
4889
|
+
"name": "e",
|
|
5177
4890
|
"type": {
|
|
5178
|
-
"text": "
|
|
4891
|
+
"text": "CustomEvent"
|
|
5179
4892
|
}
|
|
5180
4893
|
}
|
|
5181
4894
|
]
|
|
5182
4895
|
},
|
|
5183
4896
|
{
|
|
5184
4897
|
"kind": "method",
|
|
5185
|
-
"name": "
|
|
4898
|
+
"name": "_onChangedByScene"
|
|
4899
|
+
},
|
|
4900
|
+
{
|
|
4901
|
+
"kind": "method",
|
|
4902
|
+
"name": "_setPropertyTargetAsDefault"
|
|
4903
|
+
},
|
|
4904
|
+
{
|
|
4905
|
+
"kind": "method",
|
|
4906
|
+
"name": "_onCollapsed",
|
|
5186
4907
|
"parameters": [
|
|
5187
4908
|
{
|
|
5188
|
-
"name": "
|
|
4909
|
+
"name": "collapsed",
|
|
5189
4910
|
"type": {
|
|
5190
|
-
"text": "
|
|
4911
|
+
"text": "boolean"
|
|
5191
4912
|
}
|
|
5192
4913
|
}
|
|
5193
4914
|
]
|
|
5194
4915
|
},
|
|
4916
|
+
{
|
|
4917
|
+
"kind": "method",
|
|
4918
|
+
"name": "_onSceneChanged"
|
|
4919
|
+
},
|
|
5195
4920
|
{
|
|
5196
4921
|
"kind": "method",
|
|
5197
4922
|
"name": "_onSelectedChanged",
|
|
@@ -5206,55 +4931,29 @@
|
|
|
5206
4931
|
},
|
|
5207
4932
|
{
|
|
5208
4933
|
"kind": "method",
|
|
5209
|
-
"name": "
|
|
4934
|
+
"name": "_setPropertyTarget",
|
|
5210
4935
|
"parameters": [
|
|
5211
4936
|
{
|
|
5212
|
-
"name": "
|
|
4937
|
+
"name": "newTarget",
|
|
5213
4938
|
"type": {
|
|
5214
|
-
"text": "
|
|
4939
|
+
"text": "Component | null"
|
|
5215
4940
|
}
|
|
5216
4941
|
}
|
|
5217
4942
|
]
|
|
5218
4943
|
},
|
|
5219
4944
|
{
|
|
5220
4945
|
"kind": "method",
|
|
5221
|
-
"name": "
|
|
4946
|
+
"name": "_setBounds",
|
|
5222
4947
|
"parameters": [
|
|
5223
4948
|
{
|
|
5224
|
-
"name": "
|
|
4949
|
+
"name": "bounds",
|
|
5225
4950
|
"type": {
|
|
5226
|
-
"text": "
|
|
4951
|
+
"text": "BOUNDS"
|
|
5227
4952
|
}
|
|
5228
4953
|
}
|
|
5229
4954
|
]
|
|
5230
4955
|
}
|
|
5231
4956
|
],
|
|
5232
|
-
"events": [
|
|
5233
|
-
{
|
|
5234
|
-
"name": "scene-changed",
|
|
5235
|
-
"type": {
|
|
5236
|
-
"text": "CustomEvent"
|
|
5237
|
-
}
|
|
5238
|
-
},
|
|
5239
|
-
{
|
|
5240
|
-
"name": "mode-changed",
|
|
5241
|
-
"type": {
|
|
5242
|
-
"text": "CustomEvent"
|
|
5243
|
-
}
|
|
5244
|
-
},
|
|
5245
|
-
{
|
|
5246
|
-
"name": "variables-changed",
|
|
5247
|
-
"type": {
|
|
5248
|
-
"text": "CustomEvent"
|
|
5249
|
-
}
|
|
5250
|
-
},
|
|
5251
|
-
{
|
|
5252
|
-
"name": "selected-changed",
|
|
5253
|
-
"type": {
|
|
5254
|
-
"text": "CustomEvent"
|
|
5255
|
-
}
|
|
5256
|
-
}
|
|
5257
|
-
],
|
|
5258
4957
|
"attributes": [
|
|
5259
4958
|
{
|
|
5260
4959
|
"name": "scene",
|
|
@@ -5265,118 +4964,252 @@
|
|
|
5265
4964
|
"fieldName": "scene"
|
|
5266
4965
|
},
|
|
5267
4966
|
{
|
|
5268
|
-
"name": "
|
|
4967
|
+
"name": "bounds",
|
|
5269
4968
|
"type": {
|
|
5270
|
-
"text": "
|
|
4969
|
+
"text": "any"
|
|
5271
4970
|
},
|
|
5272
|
-
"
|
|
4971
|
+
"default": "{}",
|
|
4972
|
+
"fieldName": "bounds"
|
|
5273
4973
|
},
|
|
5274
4974
|
{
|
|
5275
|
-
"name": "
|
|
4975
|
+
"name": "model",
|
|
5276
4976
|
"type": {
|
|
5277
|
-
"text": "
|
|
4977
|
+
"text": "Model | null"
|
|
5278
4978
|
},
|
|
5279
|
-
"
|
|
4979
|
+
"default": "{}",
|
|
4980
|
+
"fieldName": "model"
|
|
5280
4981
|
},
|
|
5281
4982
|
{
|
|
5282
|
-
"name": "
|
|
4983
|
+
"name": "selected",
|
|
5283
4984
|
"type": {
|
|
5284
|
-
"text": "
|
|
4985
|
+
"text": "Component[]"
|
|
5285
4986
|
},
|
|
5286
|
-
"default": "
|
|
5287
|
-
"fieldName": "
|
|
4987
|
+
"default": "[]",
|
|
4988
|
+
"fieldName": "selected"
|
|
5288
4989
|
},
|
|
5289
4990
|
{
|
|
5290
|
-
"name": "
|
|
4991
|
+
"name": "specificProps",
|
|
5291
4992
|
"type": {
|
|
5292
|
-
"text": "
|
|
4993
|
+
"text": "any"
|
|
5293
4994
|
},
|
|
5294
|
-
"
|
|
5295
|
-
"fieldName": "variables"
|
|
4995
|
+
"fieldName": "specificProps"
|
|
5296
4996
|
},
|
|
5297
4997
|
{
|
|
5298
|
-
"name": "
|
|
4998
|
+
"name": "tabName",
|
|
5299
4999
|
"type": {
|
|
5300
|
-
"text": "
|
|
5000
|
+
"text": "string | null"
|
|
5301
5001
|
},
|
|
5302
|
-
"
|
|
5002
|
+
"default": "'specific'",
|
|
5003
|
+
"fieldName": "tabName"
|
|
5303
5004
|
},
|
|
5304
5005
|
{
|
|
5305
|
-
"name": "
|
|
5006
|
+
"name": "collapsed",
|
|
5306
5007
|
"type": {
|
|
5307
|
-
"text": "
|
|
5008
|
+
"text": "boolean"
|
|
5308
5009
|
},
|
|
5309
|
-
"
|
|
5010
|
+
"default": "false",
|
|
5011
|
+
"fieldName": "collapsed"
|
|
5310
5012
|
},
|
|
5311
5013
|
{
|
|
5312
|
-
"name": "
|
|
5014
|
+
"name": "fonts",
|
|
5313
5015
|
"type": {
|
|
5314
|
-
"text": "
|
|
5016
|
+
"text": "any[]"
|
|
5315
5017
|
},
|
|
5316
|
-
"default": "
|
|
5317
|
-
"fieldName": "
|
|
5018
|
+
"default": "[]",
|
|
5019
|
+
"fieldName": "fonts"
|
|
5318
5020
|
},
|
|
5319
5021
|
{
|
|
5320
|
-
"name": "
|
|
5022
|
+
"name": "propertyEditor",
|
|
5321
5023
|
"type": {
|
|
5322
|
-
"text": "
|
|
5024
|
+
"text": "any[]"
|
|
5323
5025
|
},
|
|
5324
5026
|
"default": "[]",
|
|
5325
|
-
"fieldName": "
|
|
5027
|
+
"fieldName": "propertyEditor"
|
|
5028
|
+
}
|
|
5029
|
+
],
|
|
5030
|
+
"mixins": [
|
|
5031
|
+
{
|
|
5032
|
+
"name": "ScopedElementsMixin",
|
|
5033
|
+
"package": "@open-wc/scoped-elements"
|
|
5034
|
+
}
|
|
5035
|
+
],
|
|
5036
|
+
"superclass": {
|
|
5037
|
+
"name": "LitElement",
|
|
5038
|
+
"package": "lit"
|
|
5039
|
+
},
|
|
5040
|
+
"customElement": true
|
|
5041
|
+
}
|
|
5042
|
+
],
|
|
5043
|
+
"exports": [
|
|
5044
|
+
{
|
|
5045
|
+
"kind": "js",
|
|
5046
|
+
"name": "PropertySidebar",
|
|
5047
|
+
"declaration": {
|
|
5048
|
+
"name": "PropertySidebar",
|
|
5049
|
+
"module": "src/modeller/property-sidebar/property-sidebar.ts"
|
|
5050
|
+
}
|
|
5051
|
+
}
|
|
5052
|
+
]
|
|
5053
|
+
},
|
|
5054
|
+
{
|
|
5055
|
+
"kind": "javascript-module",
|
|
5056
|
+
"path": "src/modeller/scene-viewer/confidential-overlay.ts",
|
|
5057
|
+
"declarations": [
|
|
5058
|
+
{
|
|
5059
|
+
"kind": "class",
|
|
5060
|
+
"description": "",
|
|
5061
|
+
"name": "ConfidentialOverlay",
|
|
5062
|
+
"members": [
|
|
5063
|
+
{
|
|
5064
|
+
"kind": "method",
|
|
5065
|
+
"name": "_draw",
|
|
5066
|
+
"parameters": [
|
|
5067
|
+
{
|
|
5068
|
+
"name": "context",
|
|
5069
|
+
"type": {
|
|
5070
|
+
"text": "CanvasRenderingContext2D"
|
|
5071
|
+
}
|
|
5072
|
+
}
|
|
5073
|
+
]
|
|
5074
|
+
}
|
|
5075
|
+
],
|
|
5076
|
+
"superclass": {
|
|
5077
|
+
"name": "SceneLayer",
|
|
5078
|
+
"package": "@hatiolab/things-scene"
|
|
5079
|
+
}
|
|
5080
|
+
}
|
|
5081
|
+
],
|
|
5082
|
+
"exports": [
|
|
5083
|
+
{
|
|
5084
|
+
"kind": "js",
|
|
5085
|
+
"name": "default",
|
|
5086
|
+
"declaration": {
|
|
5087
|
+
"name": "ConfidentialOverlay",
|
|
5088
|
+
"module": "src/modeller/scene-viewer/confidential-overlay.ts"
|
|
5089
|
+
}
|
|
5090
|
+
}
|
|
5091
|
+
]
|
|
5092
|
+
},
|
|
5093
|
+
{
|
|
5094
|
+
"kind": "javascript-module",
|
|
5095
|
+
"path": "src/modeller/scene-viewer/ox-scene-handler.ts",
|
|
5096
|
+
"declarations": [
|
|
5097
|
+
{
|
|
5098
|
+
"kind": "class",
|
|
5099
|
+
"description": "",
|
|
5100
|
+
"name": "OxSceneHandler",
|
|
5101
|
+
"members": [
|
|
5102
|
+
{
|
|
5103
|
+
"kind": "field",
|
|
5104
|
+
"name": "type",
|
|
5105
|
+
"type": {
|
|
5106
|
+
"text": "string"
|
|
5107
|
+
},
|
|
5108
|
+
"attribute": "type"
|
|
5326
5109
|
},
|
|
5327
5110
|
{
|
|
5328
|
-
"
|
|
5111
|
+
"kind": "field",
|
|
5112
|
+
"name": "model",
|
|
5329
5113
|
"type": {
|
|
5330
|
-
"text": "
|
|
5114
|
+
"text": "{\n type: Object\n notify: true\n }"
|
|
5331
5115
|
},
|
|
5332
|
-
"
|
|
5333
|
-
|
|
5116
|
+
"attribute": "model"
|
|
5117
|
+
}
|
|
5118
|
+
],
|
|
5119
|
+
"attributes": [
|
|
5120
|
+
{
|
|
5121
|
+
"name": "type",
|
|
5122
|
+
"type": {
|
|
5123
|
+
"text": "string"
|
|
5124
|
+
},
|
|
5125
|
+
"fieldName": "type"
|
|
5334
5126
|
},
|
|
5335
5127
|
{
|
|
5336
|
-
"name": "
|
|
5128
|
+
"name": "model",
|
|
5129
|
+
"type": {
|
|
5130
|
+
"text": "{\n type: Object\n notify: true\n }"
|
|
5131
|
+
},
|
|
5132
|
+
"fieldName": "model"
|
|
5133
|
+
}
|
|
5134
|
+
],
|
|
5135
|
+
"superclass": {
|
|
5136
|
+
"name": "LitElement",
|
|
5137
|
+
"package": "lit"
|
|
5138
|
+
},
|
|
5139
|
+
"tagName": "ox-scene-handler",
|
|
5140
|
+
"customElement": true
|
|
5141
|
+
}
|
|
5142
|
+
],
|
|
5143
|
+
"exports": [
|
|
5144
|
+
{
|
|
5145
|
+
"kind": "js",
|
|
5146
|
+
"name": "default",
|
|
5147
|
+
"declaration": {
|
|
5148
|
+
"name": "OxSceneHandler",
|
|
5149
|
+
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
5150
|
+
}
|
|
5151
|
+
},
|
|
5152
|
+
{
|
|
5153
|
+
"kind": "custom-element-definition",
|
|
5154
|
+
"name": "ox-scene-handler",
|
|
5155
|
+
"declaration": {
|
|
5156
|
+
"name": "OxSceneHandler",
|
|
5157
|
+
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
5158
|
+
}
|
|
5159
|
+
}
|
|
5160
|
+
]
|
|
5161
|
+
},
|
|
5162
|
+
{
|
|
5163
|
+
"kind": "javascript-module",
|
|
5164
|
+
"path": "src/modeller/scene-viewer/ox-scene-layer.ts",
|
|
5165
|
+
"declarations": [
|
|
5166
|
+
{
|
|
5167
|
+
"kind": "class",
|
|
5168
|
+
"description": "",
|
|
5169
|
+
"name": "OxSceneLayer",
|
|
5170
|
+
"members": [
|
|
5171
|
+
{
|
|
5172
|
+
"kind": "field",
|
|
5173
|
+
"name": "type",
|
|
5337
5174
|
"type": {
|
|
5338
|
-
"text": "
|
|
5175
|
+
"text": "String | undefined"
|
|
5339
5176
|
},
|
|
5340
|
-
"
|
|
5341
|
-
"fieldName": "baseUrl"
|
|
5177
|
+
"attribute": "type"
|
|
5342
5178
|
},
|
|
5343
5179
|
{
|
|
5344
|
-
"
|
|
5180
|
+
"kind": "field",
|
|
5181
|
+
"name": "text",
|
|
5345
5182
|
"type": {
|
|
5346
|
-
"text": "
|
|
5183
|
+
"text": "String | undefined"
|
|
5347
5184
|
},
|
|
5348
|
-
"
|
|
5185
|
+
"attribute": "text"
|
|
5349
5186
|
},
|
|
5350
5187
|
{
|
|
5351
|
-
"
|
|
5352
|
-
"
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
"fieldName": "name"
|
|
5357
|
-
},
|
|
5188
|
+
"kind": "method",
|
|
5189
|
+
"name": "getModel"
|
|
5190
|
+
}
|
|
5191
|
+
],
|
|
5192
|
+
"attributes": [
|
|
5358
5193
|
{
|
|
5359
|
-
"name": "
|
|
5194
|
+
"name": "type",
|
|
5360
5195
|
"type": {
|
|
5361
|
-
"text": "
|
|
5196
|
+
"text": "String | undefined"
|
|
5362
5197
|
},
|
|
5363
|
-
"
|
|
5364
|
-
"fieldName": "enableInspector"
|
|
5198
|
+
"fieldName": "type"
|
|
5365
5199
|
},
|
|
5366
5200
|
{
|
|
5367
|
-
"name": "
|
|
5201
|
+
"name": "text",
|
|
5368
5202
|
"type": {
|
|
5369
|
-
"text": "
|
|
5203
|
+
"text": "String | undefined"
|
|
5370
5204
|
},
|
|
5371
|
-
"
|
|
5372
|
-
"fieldName": "showInspector"
|
|
5205
|
+
"fieldName": "text"
|
|
5373
5206
|
}
|
|
5374
5207
|
],
|
|
5375
5208
|
"superclass": {
|
|
5376
5209
|
"name": "LitElement",
|
|
5377
5210
|
"package": "lit"
|
|
5378
5211
|
},
|
|
5379
|
-
"tagName": "ox-scene-
|
|
5212
|
+
"tagName": "ox-scene-layer",
|
|
5380
5213
|
"customElement": true
|
|
5381
5214
|
}
|
|
5382
5215
|
],
|
|
@@ -5385,127 +5218,112 @@
|
|
|
5385
5218
|
"kind": "js",
|
|
5386
5219
|
"name": "default",
|
|
5387
5220
|
"declaration": {
|
|
5388
|
-
"name": "
|
|
5389
|
-
"module": "src/modeller/scene-viewer/ox-scene-
|
|
5221
|
+
"name": "OxSceneLayer",
|
|
5222
|
+
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
5390
5223
|
}
|
|
5391
5224
|
},
|
|
5392
5225
|
{
|
|
5393
5226
|
"kind": "custom-element-definition",
|
|
5394
|
-
"name": "ox-scene-
|
|
5227
|
+
"name": "ox-scene-layer",
|
|
5395
5228
|
"declaration": {
|
|
5396
|
-
"name": "
|
|
5397
|
-
"module": "src/modeller/scene-viewer/ox-scene-
|
|
5229
|
+
"name": "OxSceneLayer",
|
|
5230
|
+
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
5398
5231
|
}
|
|
5399
5232
|
}
|
|
5400
5233
|
]
|
|
5401
5234
|
},
|
|
5402
5235
|
{
|
|
5403
5236
|
"kind": "javascript-module",
|
|
5404
|
-
"path": "src/modeller/
|
|
5237
|
+
"path": "src/modeller/scene-viewer/ox-scene-property.ts",
|
|
5405
5238
|
"declarations": [
|
|
5406
5239
|
{
|
|
5407
5240
|
"kind": "class",
|
|
5408
5241
|
"description": "",
|
|
5409
|
-
"name": "
|
|
5242
|
+
"name": "OxSceneProperty",
|
|
5410
5243
|
"members": [
|
|
5411
5244
|
{
|
|
5412
|
-
"kind": "
|
|
5413
|
-
"name": "
|
|
5414
|
-
"
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
"text": "Event"
|
|
5419
|
-
}
|
|
5420
|
-
}
|
|
5421
|
-
]
|
|
5245
|
+
"kind": "field",
|
|
5246
|
+
"name": "name",
|
|
5247
|
+
"type": {
|
|
5248
|
+
"text": "string"
|
|
5249
|
+
},
|
|
5250
|
+
"attribute": "name"
|
|
5422
5251
|
},
|
|
5423
5252
|
{
|
|
5424
|
-
"kind": "
|
|
5425
|
-
"name": "
|
|
5426
|
-
"
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
"text": "HTMLElement"
|
|
5431
|
-
}
|
|
5432
|
-
}
|
|
5433
|
-
]
|
|
5253
|
+
"kind": "field",
|
|
5254
|
+
"name": "value",
|
|
5255
|
+
"type": {
|
|
5256
|
+
"text": "string"
|
|
5257
|
+
},
|
|
5258
|
+
"attribute": "value"
|
|
5434
5259
|
},
|
|
5435
5260
|
{
|
|
5436
|
-
"kind": "
|
|
5437
|
-
"name": "
|
|
5438
|
-
"
|
|
5439
|
-
|
|
5440
|
-
|
|
5441
|
-
|
|
5442
|
-
"text": "string"
|
|
5443
|
-
}
|
|
5444
|
-
},
|
|
5445
|
-
{
|
|
5446
|
-
"name": "value",
|
|
5447
|
-
"type": {
|
|
5448
|
-
"text": "any"
|
|
5449
|
-
}
|
|
5450
|
-
}
|
|
5451
|
-
]
|
|
5261
|
+
"kind": "field",
|
|
5262
|
+
"name": "type",
|
|
5263
|
+
"type": {
|
|
5264
|
+
"text": "string"
|
|
5265
|
+
},
|
|
5266
|
+
"attribute": "type"
|
|
5452
5267
|
}
|
|
5453
5268
|
],
|
|
5454
|
-
"
|
|
5269
|
+
"attributes": [
|
|
5455
5270
|
{
|
|
5456
|
-
"name": "
|
|
5271
|
+
"name": "name",
|
|
5457
5272
|
"type": {
|
|
5458
|
-
"text": "
|
|
5459
|
-
}
|
|
5273
|
+
"text": "string"
|
|
5274
|
+
},
|
|
5275
|
+
"fieldName": "name"
|
|
5276
|
+
},
|
|
5277
|
+
{
|
|
5278
|
+
"name": "value",
|
|
5279
|
+
"type": {
|
|
5280
|
+
"text": "string"
|
|
5281
|
+
},
|
|
5282
|
+
"fieldName": "value"
|
|
5283
|
+
},
|
|
5284
|
+
{
|
|
5285
|
+
"name": "type",
|
|
5286
|
+
"type": {
|
|
5287
|
+
"text": "string"
|
|
5288
|
+
},
|
|
5289
|
+
"fieldName": "type"
|
|
5460
5290
|
}
|
|
5461
5291
|
],
|
|
5462
5292
|
"superclass": {
|
|
5463
5293
|
"name": "LitElement",
|
|
5464
5294
|
"package": "lit"
|
|
5465
5295
|
},
|
|
5296
|
+
"tagName": "ox-scene-property",
|
|
5466
5297
|
"customElement": true
|
|
5467
5298
|
}
|
|
5468
5299
|
],
|
|
5469
5300
|
"exports": [
|
|
5470
5301
|
{
|
|
5471
5302
|
"kind": "js",
|
|
5472
|
-
"name": "
|
|
5303
|
+
"name": "default",
|
|
5473
5304
|
"declaration": {
|
|
5474
|
-
"name": "
|
|
5475
|
-
"module": "src/modeller/
|
|
5305
|
+
"name": "OxSceneProperty",
|
|
5306
|
+
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
5476
5307
|
}
|
|
5477
|
-
}
|
|
5478
|
-
]
|
|
5479
|
-
},
|
|
5480
|
-
{
|
|
5481
|
-
"kind": "javascript-module",
|
|
5482
|
-
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
5483
|
-
"declarations": [
|
|
5484
|
-
{
|
|
5485
|
-
"kind": "variable",
|
|
5486
|
-
"name": "PropertySharedStyle",
|
|
5487
|
-
"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; } `"
|
|
5488
|
-
}
|
|
5489
|
-
],
|
|
5490
|
-
"exports": [
|
|
5308
|
+
},
|
|
5491
5309
|
{
|
|
5492
|
-
"kind": "
|
|
5493
|
-
"name": "
|
|
5310
|
+
"kind": "custom-element-definition",
|
|
5311
|
+
"name": "ox-scene-property",
|
|
5494
5312
|
"declaration": {
|
|
5495
|
-
"name": "
|
|
5496
|
-
"module": "src/modeller/
|
|
5313
|
+
"name": "OxSceneProperty",
|
|
5314
|
+
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
5497
5315
|
}
|
|
5498
5316
|
}
|
|
5499
5317
|
]
|
|
5500
5318
|
},
|
|
5501
5319
|
{
|
|
5502
5320
|
"kind": "javascript-module",
|
|
5503
|
-
"path": "src/modeller/
|
|
5321
|
+
"path": "src/modeller/scene-viewer/ox-scene-viewer.ts",
|
|
5504
5322
|
"declarations": [
|
|
5505
5323
|
{
|
|
5506
5324
|
"kind": "class",
|
|
5507
5325
|
"description": "",
|
|
5508
|
-
"name": "
|
|
5326
|
+
"name": "OxSceneViewer",
|
|
5509
5327
|
"members": [
|
|
5510
5328
|
{
|
|
5511
5329
|
"kind": "field",
|
|
@@ -5518,21 +5336,62 @@
|
|
|
5518
5336
|
},
|
|
5519
5337
|
{
|
|
5520
5338
|
"kind": "field",
|
|
5521
|
-
"name": "
|
|
5339
|
+
"name": "model",
|
|
5522
5340
|
"type": {
|
|
5523
|
-
"text": "
|
|
5341
|
+
"text": "Model | undefined"
|
|
5524
5342
|
},
|
|
5525
|
-
"
|
|
5526
|
-
"attribute": "bounds"
|
|
5343
|
+
"attribute": "model"
|
|
5527
5344
|
},
|
|
5528
5345
|
{
|
|
5529
5346
|
"kind": "field",
|
|
5530
|
-
"name": "
|
|
5347
|
+
"name": "mode",
|
|
5531
5348
|
"type": {
|
|
5532
|
-
"text": "
|
|
5349
|
+
"text": "SCENE_MODE"
|
|
5350
|
+
},
|
|
5351
|
+
"attribute": "mode"
|
|
5352
|
+
},
|
|
5353
|
+
{
|
|
5354
|
+
"kind": "field",
|
|
5355
|
+
"name": "screenSize",
|
|
5356
|
+
"type": {
|
|
5357
|
+
"text": "number"
|
|
5358
|
+
},
|
|
5359
|
+
"default": "13.3",
|
|
5360
|
+
"attribute": "screenSize"
|
|
5361
|
+
},
|
|
5362
|
+
{
|
|
5363
|
+
"kind": "field",
|
|
5364
|
+
"name": "variables",
|
|
5365
|
+
"type": {
|
|
5366
|
+
"text": "Properties"
|
|
5533
5367
|
},
|
|
5534
5368
|
"default": "{}",
|
|
5535
|
-
"attribute": "
|
|
5369
|
+
"attribute": "variables"
|
|
5370
|
+
},
|
|
5371
|
+
{
|
|
5372
|
+
"kind": "field",
|
|
5373
|
+
"name": "data",
|
|
5374
|
+
"type": {
|
|
5375
|
+
"text": "any"
|
|
5376
|
+
},
|
|
5377
|
+
"attribute": "data"
|
|
5378
|
+
},
|
|
5379
|
+
{
|
|
5380
|
+
"kind": "field",
|
|
5381
|
+
"name": "themes",
|
|
5382
|
+
"type": {
|
|
5383
|
+
"text": "any | undefined"
|
|
5384
|
+
},
|
|
5385
|
+
"attribute": "themes"
|
|
5386
|
+
},
|
|
5387
|
+
{
|
|
5388
|
+
"kind": "field",
|
|
5389
|
+
"name": "fit",
|
|
5390
|
+
"type": {
|
|
5391
|
+
"text": "FITMODE"
|
|
5392
|
+
},
|
|
5393
|
+
"default": "'none'",
|
|
5394
|
+
"attribute": "fit"
|
|
5536
5395
|
},
|
|
5537
5396
|
{
|
|
5538
5397
|
"kind": "field",
|
|
@@ -5545,100 +5404,123 @@
|
|
|
5545
5404
|
},
|
|
5546
5405
|
{
|
|
5547
5406
|
"kind": "field",
|
|
5548
|
-
"name": "
|
|
5407
|
+
"name": "disposeWhenDetached",
|
|
5549
5408
|
"type": {
|
|
5550
|
-
"text": "
|
|
5409
|
+
"text": "boolean"
|
|
5551
5410
|
},
|
|
5552
|
-
"
|
|
5411
|
+
"default": "false",
|
|
5412
|
+
"attribute": "disposeWhenDetached"
|
|
5553
5413
|
},
|
|
5554
5414
|
{
|
|
5555
5415
|
"kind": "field",
|
|
5556
|
-
"name": "
|
|
5416
|
+
"name": "baseUrl",
|
|
5557
5417
|
"type": {
|
|
5558
|
-
"text": "string
|
|
5418
|
+
"text": "string"
|
|
5559
5419
|
},
|
|
5560
|
-
"default": "'
|
|
5561
|
-
"attribute": "
|
|
5420
|
+
"default": "''",
|
|
5421
|
+
"attribute": "baseUrl"
|
|
5562
5422
|
},
|
|
5563
5423
|
{
|
|
5564
5424
|
"kind": "field",
|
|
5565
|
-
"name": "
|
|
5425
|
+
"name": "provider",
|
|
5566
5426
|
"type": {
|
|
5567
|
-
"text": "
|
|
5427
|
+
"text": "any"
|
|
5568
5428
|
},
|
|
5569
|
-
"
|
|
5570
|
-
|
|
5429
|
+
"attribute": "provider"
|
|
5430
|
+
},
|
|
5431
|
+
{
|
|
5432
|
+
"kind": "field",
|
|
5433
|
+
"name": "name",
|
|
5434
|
+
"type": {
|
|
5435
|
+
"text": "string"
|
|
5436
|
+
},
|
|
5437
|
+
"default": "'noname'",
|
|
5438
|
+
"attribute": "name"
|
|
5571
5439
|
},
|
|
5572
5440
|
{
|
|
5573
5441
|
"kind": "field",
|
|
5574
|
-
"name": "
|
|
5442
|
+
"name": "enableInspector",
|
|
5575
5443
|
"type": {
|
|
5576
|
-
"text": "
|
|
5444
|
+
"text": "boolean"
|
|
5577
5445
|
},
|
|
5578
|
-
"default": "
|
|
5579
|
-
"attribute": "
|
|
5446
|
+
"default": "true",
|
|
5447
|
+
"attribute": "enableInspector"
|
|
5580
5448
|
},
|
|
5581
5449
|
{
|
|
5582
5450
|
"kind": "field",
|
|
5583
|
-
"name": "
|
|
5451
|
+
"name": "showInspector",
|
|
5584
5452
|
"type": {
|
|
5585
|
-
"text": "
|
|
5453
|
+
"text": "boolean"
|
|
5586
5454
|
},
|
|
5587
|
-
"default": "
|
|
5588
|
-
"attribute": "
|
|
5455
|
+
"default": "false",
|
|
5456
|
+
"attribute": "showInspector"
|
|
5589
5457
|
},
|
|
5590
5458
|
{
|
|
5591
5459
|
"kind": "field",
|
|
5592
|
-
"name": "
|
|
5460
|
+
"name": "lastOffsetWidth",
|
|
5593
5461
|
"type": {
|
|
5594
|
-
"text": "
|
|
5462
|
+
"text": "number | undefined"
|
|
5595
5463
|
},
|
|
5596
|
-
"
|
|
5464
|
+
"privacy": "private"
|
|
5597
5465
|
},
|
|
5598
5466
|
{
|
|
5599
|
-
"kind": "
|
|
5600
|
-
"name": "
|
|
5601
|
-
"
|
|
5602
|
-
|
|
5467
|
+
"kind": "method",
|
|
5468
|
+
"name": "_setScene",
|
|
5469
|
+
"parameters": [
|
|
5470
|
+
{
|
|
5471
|
+
"name": "scene",
|
|
5472
|
+
"type": {
|
|
5473
|
+
"text": "Scene | null"
|
|
5474
|
+
}
|
|
5475
|
+
}
|
|
5476
|
+
]
|
|
5603
5477
|
},
|
|
5604
5478
|
{
|
|
5605
5479
|
"kind": "method",
|
|
5606
|
-
"name": "
|
|
5480
|
+
"name": "_setMode",
|
|
5607
5481
|
"parameters": [
|
|
5608
5482
|
{
|
|
5609
|
-
"name": "
|
|
5483
|
+
"name": "mode",
|
|
5610
5484
|
"type": {
|
|
5611
|
-
"text": "
|
|
5485
|
+
"text": "SCENE_MODE"
|
|
5612
5486
|
}
|
|
5613
5487
|
}
|
|
5614
5488
|
]
|
|
5615
5489
|
},
|
|
5616
5490
|
{
|
|
5617
5491
|
"kind": "method",
|
|
5618
|
-
"name": "
|
|
5492
|
+
"name": "_setVariables",
|
|
5619
5493
|
"parameters": [
|
|
5620
5494
|
{
|
|
5621
|
-
"name": "
|
|
5495
|
+
"name": "variables",
|
|
5622
5496
|
"type": {
|
|
5623
|
-
"text": "
|
|
5497
|
+
"text": "Properties"
|
|
5624
5498
|
}
|
|
5625
5499
|
}
|
|
5626
5500
|
]
|
|
5627
5501
|
},
|
|
5628
5502
|
{
|
|
5629
5503
|
"kind": "method",
|
|
5630
|
-
"name": "
|
|
5504
|
+
"name": "_setSelected",
|
|
5505
|
+
"parameters": [
|
|
5506
|
+
{
|
|
5507
|
+
"name": "selected",
|
|
5508
|
+
"type": {
|
|
5509
|
+
"text": "Component[]"
|
|
5510
|
+
}
|
|
5511
|
+
}
|
|
5512
|
+
]
|
|
5631
5513
|
},
|
|
5632
5514
|
{
|
|
5633
5515
|
"kind": "method",
|
|
5634
|
-
"name": "
|
|
5516
|
+
"name": "_disposeScene"
|
|
5635
5517
|
},
|
|
5636
5518
|
{
|
|
5637
5519
|
"kind": "method",
|
|
5638
|
-
"name": "
|
|
5520
|
+
"name": "resize",
|
|
5639
5521
|
"parameters": [
|
|
5640
5522
|
{
|
|
5641
|
-
"name": "
|
|
5523
|
+
"name": "force",
|
|
5642
5524
|
"type": {
|
|
5643
5525
|
"text": "boolean"
|
|
5644
5526
|
}
|
|
@@ -5647,7 +5529,52 @@
|
|
|
5647
5529
|
},
|
|
5648
5530
|
{
|
|
5649
5531
|
"kind": "method",
|
|
5650
|
-
"name": "
|
|
5532
|
+
"name": "_onModelChanged",
|
|
5533
|
+
"parameters": [
|
|
5534
|
+
{
|
|
5535
|
+
"name": "model",
|
|
5536
|
+
"optional": true,
|
|
5537
|
+
"type": {
|
|
5538
|
+
"text": "Model"
|
|
5539
|
+
}
|
|
5540
|
+
}
|
|
5541
|
+
]
|
|
5542
|
+
},
|
|
5543
|
+
{
|
|
5544
|
+
"kind": "method",
|
|
5545
|
+
"name": "_onDisplayChanged",
|
|
5546
|
+
"parameters": [
|
|
5547
|
+
{
|
|
5548
|
+
"name": "screenSize",
|
|
5549
|
+
"type": {
|
|
5550
|
+
"text": "string | number"
|
|
5551
|
+
}
|
|
5552
|
+
}
|
|
5553
|
+
]
|
|
5554
|
+
},
|
|
5555
|
+
{
|
|
5556
|
+
"kind": "method",
|
|
5557
|
+
"name": "_onModeChanged",
|
|
5558
|
+
"parameters": [
|
|
5559
|
+
{
|
|
5560
|
+
"name": "mode",
|
|
5561
|
+
"type": {
|
|
5562
|
+
"text": "SCENE_MODE"
|
|
5563
|
+
}
|
|
5564
|
+
}
|
|
5565
|
+
]
|
|
5566
|
+
},
|
|
5567
|
+
{
|
|
5568
|
+
"kind": "method",
|
|
5569
|
+
"name": "_onDataChanged",
|
|
5570
|
+
"parameters": [
|
|
5571
|
+
{
|
|
5572
|
+
"name": "data",
|
|
5573
|
+
"type": {
|
|
5574
|
+
"text": "any"
|
|
5575
|
+
}
|
|
5576
|
+
}
|
|
5577
|
+
]
|
|
5651
5578
|
},
|
|
5652
5579
|
{
|
|
5653
5580
|
"kind": "method",
|
|
@@ -5663,29 +5590,55 @@
|
|
|
5663
5590
|
},
|
|
5664
5591
|
{
|
|
5665
5592
|
"kind": "method",
|
|
5666
|
-
"name": "
|
|
5593
|
+
"name": "_onSceneModeChanged",
|
|
5667
5594
|
"parameters": [
|
|
5668
5595
|
{
|
|
5669
|
-
"name": "
|
|
5596
|
+
"name": "after",
|
|
5670
5597
|
"type": {
|
|
5671
|
-
"text": "
|
|
5598
|
+
"text": "SCENE_MODE"
|
|
5672
5599
|
}
|
|
5673
5600
|
}
|
|
5674
5601
|
]
|
|
5675
5602
|
},
|
|
5676
5603
|
{
|
|
5677
5604
|
"kind": "method",
|
|
5678
|
-
"name": "
|
|
5605
|
+
"name": "_onBaseUrlChanged",
|
|
5679
5606
|
"parameters": [
|
|
5680
5607
|
{
|
|
5681
|
-
"name": "
|
|
5608
|
+
"name": "after",
|
|
5682
5609
|
"type": {
|
|
5683
|
-
"text": "
|
|
5610
|
+
"text": "string"
|
|
5684
5611
|
}
|
|
5685
5612
|
}
|
|
5686
5613
|
]
|
|
5687
5614
|
}
|
|
5688
5615
|
],
|
|
5616
|
+
"events": [
|
|
5617
|
+
{
|
|
5618
|
+
"name": "scene-changed",
|
|
5619
|
+
"type": {
|
|
5620
|
+
"text": "CustomEvent"
|
|
5621
|
+
}
|
|
5622
|
+
},
|
|
5623
|
+
{
|
|
5624
|
+
"name": "mode-changed",
|
|
5625
|
+
"type": {
|
|
5626
|
+
"text": "CustomEvent"
|
|
5627
|
+
}
|
|
5628
|
+
},
|
|
5629
|
+
{
|
|
5630
|
+
"name": "variables-changed",
|
|
5631
|
+
"type": {
|
|
5632
|
+
"text": "CustomEvent"
|
|
5633
|
+
}
|
|
5634
|
+
},
|
|
5635
|
+
{
|
|
5636
|
+
"name": "selected-changed",
|
|
5637
|
+
"type": {
|
|
5638
|
+
"text": "CustomEvent"
|
|
5639
|
+
}
|
|
5640
|
+
}
|
|
5641
|
+
],
|
|
5689
5642
|
"attributes": [
|
|
5690
5643
|
{
|
|
5691
5644
|
"name": "scene",
|
|
@@ -5696,20 +5649,56 @@
|
|
|
5696
5649
|
"fieldName": "scene"
|
|
5697
5650
|
},
|
|
5698
5651
|
{
|
|
5699
|
-
"name": "
|
|
5652
|
+
"name": "model",
|
|
5700
5653
|
"type": {
|
|
5701
|
-
"text": "
|
|
5654
|
+
"text": "Model | undefined"
|
|
5702
5655
|
},
|
|
5703
|
-
"
|
|
5704
|
-
"fieldName": "bounds"
|
|
5656
|
+
"fieldName": "model"
|
|
5705
5657
|
},
|
|
5706
5658
|
{
|
|
5707
|
-
"name": "
|
|
5659
|
+
"name": "mode",
|
|
5708
5660
|
"type": {
|
|
5709
|
-
"text": "
|
|
5661
|
+
"text": "SCENE_MODE"
|
|
5662
|
+
},
|
|
5663
|
+
"fieldName": "mode"
|
|
5664
|
+
},
|
|
5665
|
+
{
|
|
5666
|
+
"name": "screenSize",
|
|
5667
|
+
"type": {
|
|
5668
|
+
"text": "number"
|
|
5669
|
+
},
|
|
5670
|
+
"default": "13.3",
|
|
5671
|
+
"fieldName": "screenSize"
|
|
5672
|
+
},
|
|
5673
|
+
{
|
|
5674
|
+
"name": "variables",
|
|
5675
|
+
"type": {
|
|
5676
|
+
"text": "Properties"
|
|
5710
5677
|
},
|
|
5711
5678
|
"default": "{}",
|
|
5712
|
-
"fieldName": "
|
|
5679
|
+
"fieldName": "variables"
|
|
5680
|
+
},
|
|
5681
|
+
{
|
|
5682
|
+
"name": "data",
|
|
5683
|
+
"type": {
|
|
5684
|
+
"text": "any"
|
|
5685
|
+
},
|
|
5686
|
+
"fieldName": "data"
|
|
5687
|
+
},
|
|
5688
|
+
{
|
|
5689
|
+
"name": "themes",
|
|
5690
|
+
"type": {
|
|
5691
|
+
"text": "any | undefined"
|
|
5692
|
+
},
|
|
5693
|
+
"fieldName": "themes"
|
|
5694
|
+
},
|
|
5695
|
+
{
|
|
5696
|
+
"name": "fit",
|
|
5697
|
+
"type": {
|
|
5698
|
+
"text": "FITMODE"
|
|
5699
|
+
},
|
|
5700
|
+
"default": "'none'",
|
|
5701
|
+
"fieldName": "fit"
|
|
5713
5702
|
},
|
|
5714
5703
|
{
|
|
5715
5704
|
"name": "selected",
|
|
@@ -5720,65 +5709,76 @@
|
|
|
5720
5709
|
"fieldName": "selected"
|
|
5721
5710
|
},
|
|
5722
5711
|
{
|
|
5723
|
-
"name": "
|
|
5712
|
+
"name": "disposeWhenDetached",
|
|
5724
5713
|
"type": {
|
|
5725
|
-
"text": "
|
|
5714
|
+
"text": "boolean"
|
|
5726
5715
|
},
|
|
5727
|
-
"
|
|
5716
|
+
"default": "false",
|
|
5717
|
+
"fieldName": "disposeWhenDetached"
|
|
5728
5718
|
},
|
|
5729
5719
|
{
|
|
5730
|
-
"name": "
|
|
5720
|
+
"name": "baseUrl",
|
|
5731
5721
|
"type": {
|
|
5732
|
-
"text": "string
|
|
5722
|
+
"text": "string"
|
|
5733
5723
|
},
|
|
5734
|
-
"default": "'
|
|
5735
|
-
"fieldName": "
|
|
5724
|
+
"default": "''",
|
|
5725
|
+
"fieldName": "baseUrl"
|
|
5736
5726
|
},
|
|
5737
5727
|
{
|
|
5738
|
-
"name": "
|
|
5728
|
+
"name": "provider",
|
|
5739
5729
|
"type": {
|
|
5740
|
-
"text": "
|
|
5730
|
+
"text": "any"
|
|
5741
5731
|
},
|
|
5742
|
-
"
|
|
5743
|
-
"fieldName": "collapsed"
|
|
5732
|
+
"fieldName": "provider"
|
|
5744
5733
|
},
|
|
5745
5734
|
{
|
|
5746
|
-
"name": "
|
|
5735
|
+
"name": "name",
|
|
5747
5736
|
"type": {
|
|
5748
|
-
"text": "
|
|
5737
|
+
"text": "string"
|
|
5749
5738
|
},
|
|
5750
|
-
"default": "
|
|
5751
|
-
"fieldName": "
|
|
5739
|
+
"default": "'noname'",
|
|
5740
|
+
"fieldName": "name"
|
|
5752
5741
|
},
|
|
5753
5742
|
{
|
|
5754
|
-
"name": "
|
|
5743
|
+
"name": "enableInspector",
|
|
5755
5744
|
"type": {
|
|
5756
|
-
"text": "
|
|
5745
|
+
"text": "boolean"
|
|
5757
5746
|
},
|
|
5758
|
-
"default": "
|
|
5759
|
-
"fieldName": "
|
|
5760
|
-
}
|
|
5761
|
-
],
|
|
5762
|
-
"mixins": [
|
|
5747
|
+
"default": "true",
|
|
5748
|
+
"fieldName": "enableInspector"
|
|
5749
|
+
},
|
|
5763
5750
|
{
|
|
5764
|
-
"name": "
|
|
5765
|
-
"
|
|
5751
|
+
"name": "showInspector",
|
|
5752
|
+
"type": {
|
|
5753
|
+
"text": "boolean"
|
|
5754
|
+
},
|
|
5755
|
+
"default": "false",
|
|
5756
|
+
"fieldName": "showInspector"
|
|
5766
5757
|
}
|
|
5767
5758
|
],
|
|
5768
5759
|
"superclass": {
|
|
5769
5760
|
"name": "LitElement",
|
|
5770
5761
|
"package": "lit"
|
|
5771
5762
|
},
|
|
5763
|
+
"tagName": "ox-scene-viewer",
|
|
5772
5764
|
"customElement": true
|
|
5773
5765
|
}
|
|
5774
5766
|
],
|
|
5775
5767
|
"exports": [
|
|
5776
5768
|
{
|
|
5777
|
-
"kind": "js",
|
|
5778
|
-
"name": "
|
|
5769
|
+
"kind": "js",
|
|
5770
|
+
"name": "default",
|
|
5771
|
+
"declaration": {
|
|
5772
|
+
"name": "OxSceneViewer",
|
|
5773
|
+
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
5774
|
+
}
|
|
5775
|
+
},
|
|
5776
|
+
{
|
|
5777
|
+
"kind": "custom-element-definition",
|
|
5778
|
+
"name": "ox-scene-viewer",
|
|
5779
5779
|
"declaration": {
|
|
5780
|
-
"name": "
|
|
5781
|
-
"module": "src/modeller/
|
|
5780
|
+
"name": "OxSceneViewer",
|
|
5781
|
+
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
5782
5782
|
}
|
|
5783
5783
|
}
|
|
5784
5784
|
]
|
|
@@ -7092,19 +7092,262 @@
|
|
|
7092
7092
|
}
|
|
7093
7093
|
],
|
|
7094
7094
|
"superclass": {
|
|
7095
|
-
"name": "LitElement",
|
|
7096
|
-
"package": "lit"
|
|
7097
|
-
},
|
|
7098
|
-
"customElement": true
|
|
7095
|
+
"name": "LitElement",
|
|
7096
|
+
"package": "lit"
|
|
7097
|
+
},
|
|
7098
|
+
"customElement": true
|
|
7099
|
+
}
|
|
7100
|
+
],
|
|
7101
|
+
"exports": [
|
|
7102
|
+
{
|
|
7103
|
+
"kind": "js",
|
|
7104
|
+
"name": "SceneInspector",
|
|
7105
|
+
"declaration": {
|
|
7106
|
+
"name": "SceneInspector",
|
|
7107
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
7108
|
+
}
|
|
7109
|
+
}
|
|
7110
|
+
]
|
|
7111
|
+
},
|
|
7112
|
+
{
|
|
7113
|
+
"kind": "javascript-module",
|
|
7114
|
+
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|
|
7115
|
+
"declarations": [
|
|
7116
|
+
{
|
|
7117
|
+
"kind": "variable",
|
|
7118
|
+
"name": "BoxPaddingEditorStyles",
|
|
7119
|
+
"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; } `"
|
|
7120
|
+
}
|
|
7121
|
+
],
|
|
7122
|
+
"exports": [
|
|
7123
|
+
{
|
|
7124
|
+
"kind": "js",
|
|
7125
|
+
"name": "BoxPaddingEditorStyles",
|
|
7126
|
+
"declaration": {
|
|
7127
|
+
"name": "BoxPaddingEditorStyles",
|
|
7128
|
+
"module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
|
|
7129
|
+
}
|
|
7130
|
+
}
|
|
7131
|
+
]
|
|
7132
|
+
},
|
|
7133
|
+
{
|
|
7134
|
+
"kind": "javascript-module",
|
|
7135
|
+
"path": "src/modeller/property-sidebar/shapes/shapes.ts",
|
|
7136
|
+
"declarations": [
|
|
7137
|
+
{
|
|
7138
|
+
"kind": "class",
|
|
7139
|
+
"description": "",
|
|
7140
|
+
"name": "PropertyShapes",
|
|
7141
|
+
"members": [
|
|
7142
|
+
{
|
|
7143
|
+
"kind": "field",
|
|
7144
|
+
"name": "value",
|
|
7145
|
+
"type": {
|
|
7146
|
+
"text": "Properties | undefined"
|
|
7147
|
+
},
|
|
7148
|
+
"attribute": "value"
|
|
7149
|
+
},
|
|
7150
|
+
{
|
|
7151
|
+
"kind": "field",
|
|
7152
|
+
"name": "bounds",
|
|
7153
|
+
"type": {
|
|
7154
|
+
"text": "BOUNDS | null"
|
|
7155
|
+
},
|
|
7156
|
+
"default": "null",
|
|
7157
|
+
"attribute": "bounds"
|
|
7158
|
+
},
|
|
7159
|
+
{
|
|
7160
|
+
"kind": "field",
|
|
7161
|
+
"name": "selected",
|
|
7162
|
+
"type": {
|
|
7163
|
+
"text": "Component[]"
|
|
7164
|
+
},
|
|
7165
|
+
"default": "[]",
|
|
7166
|
+
"attribute": "selected"
|
|
7167
|
+
},
|
|
7168
|
+
{
|
|
7169
|
+
"kind": "method",
|
|
7170
|
+
"name": "_onValueChange",
|
|
7171
|
+
"parameters": [
|
|
7172
|
+
{
|
|
7173
|
+
"name": "e",
|
|
7174
|
+
"type": {
|
|
7175
|
+
"text": "Event"
|
|
7176
|
+
}
|
|
7177
|
+
}
|
|
7178
|
+
],
|
|
7179
|
+
"inheritedFrom": {
|
|
7180
|
+
"name": "AbstractProperty",
|
|
7181
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7182
|
+
}
|
|
7183
|
+
},
|
|
7184
|
+
{
|
|
7185
|
+
"kind": "method",
|
|
7186
|
+
"name": "_hasTextProperty",
|
|
7187
|
+
"parameters": [
|
|
7188
|
+
{
|
|
7189
|
+
"name": "selected",
|
|
7190
|
+
"type": {
|
|
7191
|
+
"text": "Component[]"
|
|
7192
|
+
}
|
|
7193
|
+
}
|
|
7194
|
+
]
|
|
7195
|
+
},
|
|
7196
|
+
{
|
|
7197
|
+
"kind": "method",
|
|
7198
|
+
"name": "_hasProperties",
|
|
7199
|
+
"parameters": [
|
|
7200
|
+
{
|
|
7201
|
+
"name": "selected",
|
|
7202
|
+
"type": {
|
|
7203
|
+
"text": "Component[]"
|
|
7204
|
+
}
|
|
7205
|
+
}
|
|
7206
|
+
]
|
|
7207
|
+
},
|
|
7208
|
+
{
|
|
7209
|
+
"kind": "method",
|
|
7210
|
+
"name": "_isIdentifiable",
|
|
7211
|
+
"parameters": [
|
|
7212
|
+
{
|
|
7213
|
+
"name": "selected",
|
|
7214
|
+
"type": {
|
|
7215
|
+
"text": "Component[]"
|
|
7216
|
+
}
|
|
7217
|
+
}
|
|
7218
|
+
]
|
|
7219
|
+
},
|
|
7220
|
+
{
|
|
7221
|
+
"kind": "method",
|
|
7222
|
+
"name": "_isClassIdentifiable",
|
|
7223
|
+
"parameters": [
|
|
7224
|
+
{
|
|
7225
|
+
"name": "selected",
|
|
7226
|
+
"type": {
|
|
7227
|
+
"text": "Component[]"
|
|
7228
|
+
}
|
|
7229
|
+
}
|
|
7230
|
+
]
|
|
7231
|
+
},
|
|
7232
|
+
{
|
|
7233
|
+
"kind": "method",
|
|
7234
|
+
"name": "_isLine",
|
|
7235
|
+
"parameters": [
|
|
7236
|
+
{
|
|
7237
|
+
"name": "selected",
|
|
7238
|
+
"type": {
|
|
7239
|
+
"text": "Component[]"
|
|
7240
|
+
}
|
|
7241
|
+
}
|
|
7242
|
+
]
|
|
7243
|
+
},
|
|
7244
|
+
{
|
|
7245
|
+
"kind": "method",
|
|
7246
|
+
"name": "_is3dish",
|
|
7247
|
+
"parameters": [
|
|
7248
|
+
{
|
|
7249
|
+
"name": "selected",
|
|
7250
|
+
"type": {
|
|
7251
|
+
"text": "Component[]"
|
|
7252
|
+
}
|
|
7253
|
+
}
|
|
7254
|
+
]
|
|
7255
|
+
},
|
|
7256
|
+
{
|
|
7257
|
+
"kind": "method",
|
|
7258
|
+
"name": "_getValueFromEventTarget",
|
|
7259
|
+
"parameters": [
|
|
7260
|
+
{
|
|
7261
|
+
"name": "element",
|
|
7262
|
+
"type": {
|
|
7263
|
+
"text": "HTMLElement"
|
|
7264
|
+
}
|
|
7265
|
+
}
|
|
7266
|
+
],
|
|
7267
|
+
"inheritedFrom": {
|
|
7268
|
+
"name": "AbstractProperty",
|
|
7269
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7270
|
+
}
|
|
7271
|
+
},
|
|
7272
|
+
{
|
|
7273
|
+
"kind": "method",
|
|
7274
|
+
"name": "_onAfterValueChange",
|
|
7275
|
+
"parameters": [
|
|
7276
|
+
{
|
|
7277
|
+
"name": "key",
|
|
7278
|
+
"type": {
|
|
7279
|
+
"text": "string"
|
|
7280
|
+
}
|
|
7281
|
+
},
|
|
7282
|
+
{
|
|
7283
|
+
"name": "value",
|
|
7284
|
+
"type": {
|
|
7285
|
+
"text": "any"
|
|
7286
|
+
}
|
|
7287
|
+
}
|
|
7288
|
+
],
|
|
7289
|
+
"inheritedFrom": {
|
|
7290
|
+
"name": "AbstractProperty",
|
|
7291
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7292
|
+
}
|
|
7293
|
+
}
|
|
7294
|
+
],
|
|
7295
|
+
"events": [
|
|
7296
|
+
{
|
|
7297
|
+
"name": "bounds-change",
|
|
7298
|
+
"type": {
|
|
7299
|
+
"text": "CustomEvent"
|
|
7300
|
+
}
|
|
7301
|
+
},
|
|
7302
|
+
{
|
|
7303
|
+
"name": "property-change",
|
|
7304
|
+
"type": {
|
|
7305
|
+
"text": "CustomEvent"
|
|
7306
|
+
},
|
|
7307
|
+
"inheritedFrom": {
|
|
7308
|
+
"name": "AbstractProperty",
|
|
7309
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7310
|
+
}
|
|
7311
|
+
}
|
|
7312
|
+
],
|
|
7313
|
+
"attributes": [
|
|
7314
|
+
{
|
|
7315
|
+
"name": "value",
|
|
7316
|
+
"type": {
|
|
7317
|
+
"text": "Properties | undefined"
|
|
7318
|
+
},
|
|
7319
|
+
"fieldName": "value"
|
|
7320
|
+
},
|
|
7321
|
+
{
|
|
7322
|
+
"name": "bounds",
|
|
7323
|
+
"type": {
|
|
7324
|
+
"text": "BOUNDS | null"
|
|
7325
|
+
},
|
|
7326
|
+
"default": "null",
|
|
7327
|
+
"fieldName": "bounds"
|
|
7328
|
+
},
|
|
7329
|
+
{
|
|
7330
|
+
"name": "selected",
|
|
7331
|
+
"type": {
|
|
7332
|
+
"text": "Component[]"
|
|
7333
|
+
},
|
|
7334
|
+
"default": "[]",
|
|
7335
|
+
"fieldName": "selected"
|
|
7336
|
+
}
|
|
7337
|
+
],
|
|
7338
|
+
"superclass": {
|
|
7339
|
+
"name": "AbstractProperty",
|
|
7340
|
+
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
7341
|
+
}
|
|
7099
7342
|
}
|
|
7100
7343
|
],
|
|
7101
7344
|
"exports": [
|
|
7102
7345
|
{
|
|
7103
7346
|
"kind": "js",
|
|
7104
|
-
"name": "
|
|
7347
|
+
"name": "PropertyShapes",
|
|
7105
7348
|
"declaration": {
|
|
7106
|
-
"name": "
|
|
7107
|
-
"module": "src/modeller/property-sidebar/
|
|
7349
|
+
"name": "PropertyShapes",
|
|
7350
|
+
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
7108
7351
|
}
|
|
7109
7352
|
}
|
|
7110
7353
|
]
|
|
@@ -7621,249 +7864,6 @@
|
|
|
7621
7864
|
}
|
|
7622
7865
|
}
|
|
7623
7866
|
]
|
|
7624
|
-
},
|
|
7625
|
-
{
|
|
7626
|
-
"kind": "javascript-module",
|
|
7627
|
-
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|
|
7628
|
-
"declarations": [
|
|
7629
|
-
{
|
|
7630
|
-
"kind": "variable",
|
|
7631
|
-
"name": "BoxPaddingEditorStyles",
|
|
7632
|
-
"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; } `"
|
|
7633
|
-
}
|
|
7634
|
-
],
|
|
7635
|
-
"exports": [
|
|
7636
|
-
{
|
|
7637
|
-
"kind": "js",
|
|
7638
|
-
"name": "BoxPaddingEditorStyles",
|
|
7639
|
-
"declaration": {
|
|
7640
|
-
"name": "BoxPaddingEditorStyles",
|
|
7641
|
-
"module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
|
|
7642
|
-
}
|
|
7643
|
-
}
|
|
7644
|
-
]
|
|
7645
|
-
},
|
|
7646
|
-
{
|
|
7647
|
-
"kind": "javascript-module",
|
|
7648
|
-
"path": "src/modeller/property-sidebar/shapes/shapes.ts",
|
|
7649
|
-
"declarations": [
|
|
7650
|
-
{
|
|
7651
|
-
"kind": "class",
|
|
7652
|
-
"description": "",
|
|
7653
|
-
"name": "PropertyShapes",
|
|
7654
|
-
"members": [
|
|
7655
|
-
{
|
|
7656
|
-
"kind": "field",
|
|
7657
|
-
"name": "value",
|
|
7658
|
-
"type": {
|
|
7659
|
-
"text": "Properties | undefined"
|
|
7660
|
-
},
|
|
7661
|
-
"attribute": "value"
|
|
7662
|
-
},
|
|
7663
|
-
{
|
|
7664
|
-
"kind": "field",
|
|
7665
|
-
"name": "bounds",
|
|
7666
|
-
"type": {
|
|
7667
|
-
"text": "BOUNDS | null"
|
|
7668
|
-
},
|
|
7669
|
-
"default": "null",
|
|
7670
|
-
"attribute": "bounds"
|
|
7671
|
-
},
|
|
7672
|
-
{
|
|
7673
|
-
"kind": "field",
|
|
7674
|
-
"name": "selected",
|
|
7675
|
-
"type": {
|
|
7676
|
-
"text": "Component[]"
|
|
7677
|
-
},
|
|
7678
|
-
"default": "[]",
|
|
7679
|
-
"attribute": "selected"
|
|
7680
|
-
},
|
|
7681
|
-
{
|
|
7682
|
-
"kind": "method",
|
|
7683
|
-
"name": "_onValueChange",
|
|
7684
|
-
"parameters": [
|
|
7685
|
-
{
|
|
7686
|
-
"name": "e",
|
|
7687
|
-
"type": {
|
|
7688
|
-
"text": "Event"
|
|
7689
|
-
}
|
|
7690
|
-
}
|
|
7691
|
-
],
|
|
7692
|
-
"inheritedFrom": {
|
|
7693
|
-
"name": "AbstractProperty",
|
|
7694
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7695
|
-
}
|
|
7696
|
-
},
|
|
7697
|
-
{
|
|
7698
|
-
"kind": "method",
|
|
7699
|
-
"name": "_hasTextProperty",
|
|
7700
|
-
"parameters": [
|
|
7701
|
-
{
|
|
7702
|
-
"name": "selected",
|
|
7703
|
-
"type": {
|
|
7704
|
-
"text": "Component[]"
|
|
7705
|
-
}
|
|
7706
|
-
}
|
|
7707
|
-
]
|
|
7708
|
-
},
|
|
7709
|
-
{
|
|
7710
|
-
"kind": "method",
|
|
7711
|
-
"name": "_hasProperties",
|
|
7712
|
-
"parameters": [
|
|
7713
|
-
{
|
|
7714
|
-
"name": "selected",
|
|
7715
|
-
"type": {
|
|
7716
|
-
"text": "Component[]"
|
|
7717
|
-
}
|
|
7718
|
-
}
|
|
7719
|
-
]
|
|
7720
|
-
},
|
|
7721
|
-
{
|
|
7722
|
-
"kind": "method",
|
|
7723
|
-
"name": "_isIdentifiable",
|
|
7724
|
-
"parameters": [
|
|
7725
|
-
{
|
|
7726
|
-
"name": "selected",
|
|
7727
|
-
"type": {
|
|
7728
|
-
"text": "Component[]"
|
|
7729
|
-
}
|
|
7730
|
-
}
|
|
7731
|
-
]
|
|
7732
|
-
},
|
|
7733
|
-
{
|
|
7734
|
-
"kind": "method",
|
|
7735
|
-
"name": "_isClassIdentifiable",
|
|
7736
|
-
"parameters": [
|
|
7737
|
-
{
|
|
7738
|
-
"name": "selected",
|
|
7739
|
-
"type": {
|
|
7740
|
-
"text": "Component[]"
|
|
7741
|
-
}
|
|
7742
|
-
}
|
|
7743
|
-
]
|
|
7744
|
-
},
|
|
7745
|
-
{
|
|
7746
|
-
"kind": "method",
|
|
7747
|
-
"name": "_isLine",
|
|
7748
|
-
"parameters": [
|
|
7749
|
-
{
|
|
7750
|
-
"name": "selected",
|
|
7751
|
-
"type": {
|
|
7752
|
-
"text": "Component[]"
|
|
7753
|
-
}
|
|
7754
|
-
}
|
|
7755
|
-
]
|
|
7756
|
-
},
|
|
7757
|
-
{
|
|
7758
|
-
"kind": "method",
|
|
7759
|
-
"name": "_is3dish",
|
|
7760
|
-
"parameters": [
|
|
7761
|
-
{
|
|
7762
|
-
"name": "selected",
|
|
7763
|
-
"type": {
|
|
7764
|
-
"text": "Component[]"
|
|
7765
|
-
}
|
|
7766
|
-
}
|
|
7767
|
-
]
|
|
7768
|
-
},
|
|
7769
|
-
{
|
|
7770
|
-
"kind": "method",
|
|
7771
|
-
"name": "_getValueFromEventTarget",
|
|
7772
|
-
"parameters": [
|
|
7773
|
-
{
|
|
7774
|
-
"name": "element",
|
|
7775
|
-
"type": {
|
|
7776
|
-
"text": "HTMLElement"
|
|
7777
|
-
}
|
|
7778
|
-
}
|
|
7779
|
-
],
|
|
7780
|
-
"inheritedFrom": {
|
|
7781
|
-
"name": "AbstractProperty",
|
|
7782
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7783
|
-
}
|
|
7784
|
-
},
|
|
7785
|
-
{
|
|
7786
|
-
"kind": "method",
|
|
7787
|
-
"name": "_onAfterValueChange",
|
|
7788
|
-
"parameters": [
|
|
7789
|
-
{
|
|
7790
|
-
"name": "key",
|
|
7791
|
-
"type": {
|
|
7792
|
-
"text": "string"
|
|
7793
|
-
}
|
|
7794
|
-
},
|
|
7795
|
-
{
|
|
7796
|
-
"name": "value",
|
|
7797
|
-
"type": {
|
|
7798
|
-
"text": "any"
|
|
7799
|
-
}
|
|
7800
|
-
}
|
|
7801
|
-
],
|
|
7802
|
-
"inheritedFrom": {
|
|
7803
|
-
"name": "AbstractProperty",
|
|
7804
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7805
|
-
}
|
|
7806
|
-
}
|
|
7807
|
-
],
|
|
7808
|
-
"events": [
|
|
7809
|
-
{
|
|
7810
|
-
"name": "bounds-change",
|
|
7811
|
-
"type": {
|
|
7812
|
-
"text": "CustomEvent"
|
|
7813
|
-
}
|
|
7814
|
-
},
|
|
7815
|
-
{
|
|
7816
|
-
"name": "property-change",
|
|
7817
|
-
"type": {
|
|
7818
|
-
"text": "CustomEvent"
|
|
7819
|
-
},
|
|
7820
|
-
"inheritedFrom": {
|
|
7821
|
-
"name": "AbstractProperty",
|
|
7822
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7823
|
-
}
|
|
7824
|
-
}
|
|
7825
|
-
],
|
|
7826
|
-
"attributes": [
|
|
7827
|
-
{
|
|
7828
|
-
"name": "value",
|
|
7829
|
-
"type": {
|
|
7830
|
-
"text": "Properties | undefined"
|
|
7831
|
-
},
|
|
7832
|
-
"fieldName": "value"
|
|
7833
|
-
},
|
|
7834
|
-
{
|
|
7835
|
-
"name": "bounds",
|
|
7836
|
-
"type": {
|
|
7837
|
-
"text": "BOUNDS | null"
|
|
7838
|
-
},
|
|
7839
|
-
"default": "null",
|
|
7840
|
-
"fieldName": "bounds"
|
|
7841
|
-
},
|
|
7842
|
-
{
|
|
7843
|
-
"name": "selected",
|
|
7844
|
-
"type": {
|
|
7845
|
-
"text": "Component[]"
|
|
7846
|
-
},
|
|
7847
|
-
"default": "[]",
|
|
7848
|
-
"fieldName": "selected"
|
|
7849
|
-
}
|
|
7850
|
-
],
|
|
7851
|
-
"superclass": {
|
|
7852
|
-
"name": "AbstractProperty",
|
|
7853
|
-
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
7854
|
-
}
|
|
7855
|
-
}
|
|
7856
|
-
],
|
|
7857
|
-
"exports": [
|
|
7858
|
-
{
|
|
7859
|
-
"kind": "js",
|
|
7860
|
-
"name": "PropertyShapes",
|
|
7861
|
-
"declaration": {
|
|
7862
|
-
"name": "PropertyShapes",
|
|
7863
|
-
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
7864
|
-
}
|
|
7865
|
-
}
|
|
7866
|
-
]
|
|
7867
7867
|
}
|
|
7868
7868
|
]
|
|
7869
7869
|
}
|