@fmsim/board 1.0.82 → 1.0.83
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 +1234 -1234
- package/package.json +3 -3
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",
|
|
@@ -1702,91 +1787,6 @@
|
|
|
1702
1787
|
"declarations": [],
|
|
1703
1788
|
"exports": []
|
|
1704
1789
|
},
|
|
1705
|
-
{
|
|
1706
|
-
"kind": "javascript-module",
|
|
1707
|
-
"path": "stories/restful-attachment-selector.stories.ts",
|
|
1708
|
-
"declarations": [
|
|
1709
|
-
{
|
|
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
|
-
},
|
|
1714
|
-
{
|
|
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
|
-
},
|
|
1722
|
-
{
|
|
1723
|
-
"kind": "variable",
|
|
1724
|
-
"name": "WithCategory",
|
|
1725
|
-
"type": {
|
|
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"
|
|
1743
|
-
},
|
|
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' } ] } } }"
|
|
1745
|
-
}
|
|
1746
|
-
],
|
|
1747
|
-
"exports": [
|
|
1748
|
-
{
|
|
1749
|
-
"kind": "js",
|
|
1750
|
-
"name": "default",
|
|
1751
|
-
"declaration": {
|
|
1752
|
-
"name": "meta",
|
|
1753
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1754
|
-
}
|
|
1755
|
-
},
|
|
1756
|
-
{
|
|
1757
|
-
"kind": "js",
|
|
1758
|
-
"name": "Default",
|
|
1759
|
-
"declaration": {
|
|
1760
|
-
"name": "Default",
|
|
1761
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1762
|
-
}
|
|
1763
|
-
},
|
|
1764
|
-
{
|
|
1765
|
-
"kind": "js",
|
|
1766
|
-
"name": "WithCategory",
|
|
1767
|
-
"declaration": {
|
|
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
1790
|
{
|
|
1791
1791
|
"kind": "javascript-module",
|
|
1792
1792
|
"path": "src/component/etc.ts",
|
|
@@ -4691,115 +4691,281 @@
|
|
|
4691
4691
|
},
|
|
4692
4692
|
{
|
|
4693
4693
|
"kind": "javascript-module",
|
|
4694
|
-
"path": "src/modeller/
|
|
4694
|
+
"path": "src/modeller/scene-viewer/confidential-overlay.ts",
|
|
4695
4695
|
"declarations": [
|
|
4696
4696
|
{
|
|
4697
4697
|
"kind": "class",
|
|
4698
4698
|
"description": "",
|
|
4699
|
-
"name": "
|
|
4699
|
+
"name": "ConfidentialOverlay",
|
|
4700
4700
|
"members": [
|
|
4701
4701
|
{
|
|
4702
4702
|
"kind": "method",
|
|
4703
|
-
"name": "
|
|
4704
|
-
"parameters": [
|
|
4705
|
-
{
|
|
4706
|
-
"name": "e",
|
|
4707
|
-
"type": {
|
|
4708
|
-
"text": "Event"
|
|
4709
|
-
}
|
|
4710
|
-
}
|
|
4711
|
-
]
|
|
4712
|
-
},
|
|
4713
|
-
{
|
|
4714
|
-
"kind": "method",
|
|
4715
|
-
"name": "_getValueFromEventTarget",
|
|
4716
|
-
"parameters": [
|
|
4717
|
-
{
|
|
4718
|
-
"name": "element",
|
|
4719
|
-
"type": {
|
|
4720
|
-
"text": "HTMLElement"
|
|
4721
|
-
}
|
|
4722
|
-
}
|
|
4723
|
-
]
|
|
4724
|
-
},
|
|
4725
|
-
{
|
|
4726
|
-
"kind": "method",
|
|
4727
|
-
"name": "_onAfterValueChange",
|
|
4703
|
+
"name": "_draw",
|
|
4728
4704
|
"parameters": [
|
|
4729
4705
|
{
|
|
4730
|
-
"name": "
|
|
4731
|
-
"type": {
|
|
4732
|
-
"text": "string"
|
|
4733
|
-
}
|
|
4734
|
-
},
|
|
4735
|
-
{
|
|
4736
|
-
"name": "value",
|
|
4706
|
+
"name": "context",
|
|
4737
4707
|
"type": {
|
|
4738
|
-
"text": "
|
|
4708
|
+
"text": "CanvasRenderingContext2D"
|
|
4739
4709
|
}
|
|
4740
4710
|
}
|
|
4741
4711
|
]
|
|
4742
4712
|
}
|
|
4743
4713
|
],
|
|
4744
|
-
"events": [
|
|
4745
|
-
{
|
|
4746
|
-
"name": "property-change",
|
|
4747
|
-
"type": {
|
|
4748
|
-
"text": "CustomEvent"
|
|
4749
|
-
}
|
|
4750
|
-
}
|
|
4751
|
-
],
|
|
4752
4714
|
"superclass": {
|
|
4753
|
-
"name": "
|
|
4754
|
-
"package": "
|
|
4755
|
-
},
|
|
4756
|
-
"customElement": true
|
|
4757
|
-
}
|
|
4758
|
-
],
|
|
4759
|
-
"exports": [
|
|
4760
|
-
{
|
|
4761
|
-
"kind": "js",
|
|
4762
|
-
"name": "AbstractProperty",
|
|
4763
|
-
"declaration": {
|
|
4764
|
-
"name": "AbstractProperty",
|
|
4765
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
4715
|
+
"name": "SceneLayer",
|
|
4716
|
+
"package": "@hatiolab/things-scene"
|
|
4766
4717
|
}
|
|
4767
4718
|
}
|
|
4768
|
-
]
|
|
4769
|
-
},
|
|
4770
|
-
{
|
|
4771
|
-
"kind": "javascript-module",
|
|
4772
|
-
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
4773
|
-
"declarations": [
|
|
4774
|
-
{
|
|
4775
|
-
"kind": "variable",
|
|
4776
|
-
"name": "PropertySharedStyle",
|
|
4777
|
-
"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; } `"
|
|
4778
|
-
}
|
|
4779
4719
|
],
|
|
4780
4720
|
"exports": [
|
|
4781
4721
|
{
|
|
4782
4722
|
"kind": "js",
|
|
4783
|
-
"name": "
|
|
4723
|
+
"name": "default",
|
|
4784
4724
|
"declaration": {
|
|
4785
|
-
"name": "
|
|
4786
|
-
"module": "src/modeller/
|
|
4725
|
+
"name": "ConfidentialOverlay",
|
|
4726
|
+
"module": "src/modeller/scene-viewer/confidential-overlay.ts"
|
|
4787
4727
|
}
|
|
4788
4728
|
}
|
|
4789
4729
|
]
|
|
4790
4730
|
},
|
|
4791
4731
|
{
|
|
4792
4732
|
"kind": "javascript-module",
|
|
4793
|
-
"path": "src/modeller/
|
|
4733
|
+
"path": "src/modeller/scene-viewer/ox-scene-handler.ts",
|
|
4794
4734
|
"declarations": [
|
|
4795
4735
|
{
|
|
4796
4736
|
"kind": "class",
|
|
4797
4737
|
"description": "",
|
|
4798
|
-
"name": "
|
|
4738
|
+
"name": "OxSceneHandler",
|
|
4799
4739
|
"members": [
|
|
4800
4740
|
{
|
|
4801
4741
|
"kind": "field",
|
|
4802
|
-
"name": "
|
|
4742
|
+
"name": "type",
|
|
4743
|
+
"type": {
|
|
4744
|
+
"text": "string"
|
|
4745
|
+
},
|
|
4746
|
+
"attribute": "type"
|
|
4747
|
+
},
|
|
4748
|
+
{
|
|
4749
|
+
"kind": "field",
|
|
4750
|
+
"name": "model",
|
|
4751
|
+
"type": {
|
|
4752
|
+
"text": "{\n type: Object\n notify: true\n }"
|
|
4753
|
+
},
|
|
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",
|
|
4803
4969
|
"type": {
|
|
4804
4970
|
"text": "Scene | null"
|
|
4805
4971
|
},
|
|
@@ -4808,21 +4974,62 @@
|
|
|
4808
4974
|
},
|
|
4809
4975
|
{
|
|
4810
4976
|
"kind": "field",
|
|
4811
|
-
"name": "
|
|
4977
|
+
"name": "model",
|
|
4812
4978
|
"type": {
|
|
4813
|
-
"text": "
|
|
4979
|
+
"text": "Model | undefined"
|
|
4814
4980
|
},
|
|
4815
|
-
"
|
|
4816
|
-
"attribute": "bounds"
|
|
4981
|
+
"attribute": "model"
|
|
4817
4982
|
},
|
|
4818
4983
|
{
|
|
4819
4984
|
"kind": "field",
|
|
4820
|
-
"name": "
|
|
4985
|
+
"name": "mode",
|
|
4821
4986
|
"type": {
|
|
4822
|
-
"text": "
|
|
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"
|
|
4823
5005
|
},
|
|
4824
5006
|
"default": "{}",
|
|
4825
|
-
"attribute": "
|
|
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"
|
|
4826
5033
|
},
|
|
4827
5034
|
{
|
|
4828
5035
|
"kind": "field",
|
|
@@ -4835,110 +5042,178 @@
|
|
|
4835
5042
|
},
|
|
4836
5043
|
{
|
|
4837
5044
|
"kind": "field",
|
|
4838
|
-
"name": "
|
|
5045
|
+
"name": "disposeWhenDetached",
|
|
4839
5046
|
"type": {
|
|
4840
|
-
"text": "
|
|
5047
|
+
"text": "boolean"
|
|
4841
5048
|
},
|
|
4842
|
-
"
|
|
5049
|
+
"default": "false",
|
|
5050
|
+
"attribute": "disposeWhenDetached"
|
|
4843
5051
|
},
|
|
4844
5052
|
{
|
|
4845
5053
|
"kind": "field",
|
|
4846
|
-
"name": "
|
|
5054
|
+
"name": "baseUrl",
|
|
4847
5055
|
"type": {
|
|
4848
|
-
"text": "string
|
|
5056
|
+
"text": "string"
|
|
4849
5057
|
},
|
|
4850
|
-
"default": "'
|
|
4851
|
-
"attribute": "
|
|
5058
|
+
"default": "''",
|
|
5059
|
+
"attribute": "baseUrl"
|
|
4852
5060
|
},
|
|
4853
5061
|
{
|
|
4854
5062
|
"kind": "field",
|
|
4855
|
-
"name": "
|
|
5063
|
+
"name": "provider",
|
|
4856
5064
|
"type": {
|
|
4857
|
-
"text": "
|
|
5065
|
+
"text": "any"
|
|
4858
5066
|
},
|
|
4859
|
-
"
|
|
4860
|
-
"attribute": "collapsed"
|
|
5067
|
+
"attribute": "provider"
|
|
4861
5068
|
},
|
|
4862
5069
|
{
|
|
4863
5070
|
"kind": "field",
|
|
4864
|
-
"name": "
|
|
5071
|
+
"name": "name",
|
|
4865
5072
|
"type": {
|
|
4866
|
-
"text": "
|
|
5073
|
+
"text": "string"
|
|
4867
5074
|
},
|
|
4868
|
-
"default": "
|
|
4869
|
-
"attribute": "
|
|
5075
|
+
"default": "'noname'",
|
|
5076
|
+
"attribute": "name"
|
|
4870
5077
|
},
|
|
4871
5078
|
{
|
|
4872
5079
|
"kind": "field",
|
|
4873
|
-
"name": "
|
|
5080
|
+
"name": "enableInspector",
|
|
4874
5081
|
"type": {
|
|
4875
|
-
"text": "
|
|
5082
|
+
"text": "boolean"
|
|
4876
5083
|
},
|
|
4877
|
-
"default": "
|
|
4878
|
-
"attribute": "
|
|
5084
|
+
"default": "true",
|
|
5085
|
+
"attribute": "enableInspector"
|
|
4879
5086
|
},
|
|
4880
5087
|
{
|
|
4881
5088
|
"kind": "field",
|
|
4882
|
-
"name": "
|
|
5089
|
+
"name": "showInspector",
|
|
4883
5090
|
"type": {
|
|
4884
|
-
"text": "
|
|
5091
|
+
"text": "boolean"
|
|
4885
5092
|
},
|
|
4886
|
-
"default": "
|
|
5093
|
+
"default": "false",
|
|
5094
|
+
"attribute": "showInspector"
|
|
4887
5095
|
},
|
|
4888
5096
|
{
|
|
4889
5097
|
"kind": "field",
|
|
4890
|
-
"name": "
|
|
4891
|
-
"
|
|
4892
|
-
|
|
5098
|
+
"name": "lastOffsetWidth",
|
|
5099
|
+
"type": {
|
|
5100
|
+
"text": "number | undefined"
|
|
5101
|
+
},
|
|
5102
|
+
"privacy": "private"
|
|
4893
5103
|
},
|
|
4894
5104
|
{
|
|
4895
5105
|
"kind": "method",
|
|
4896
|
-
"name": "
|
|
5106
|
+
"name": "_setScene",
|
|
4897
5107
|
"parameters": [
|
|
4898
5108
|
{
|
|
4899
|
-
"name": "
|
|
5109
|
+
"name": "scene",
|
|
4900
5110
|
"type": {
|
|
4901
|
-
"text": "
|
|
5111
|
+
"text": "Scene | null"
|
|
4902
5112
|
}
|
|
4903
5113
|
}
|
|
4904
5114
|
]
|
|
4905
5115
|
},
|
|
4906
5116
|
{
|
|
4907
5117
|
"kind": "method",
|
|
4908
|
-
"name": "
|
|
5118
|
+
"name": "_setMode",
|
|
4909
5119
|
"parameters": [
|
|
4910
5120
|
{
|
|
4911
|
-
"name": "
|
|
5121
|
+
"name": "mode",
|
|
5122
|
+
"type": {
|
|
5123
|
+
"text": "SCENE_MODE"
|
|
5124
|
+
}
|
|
5125
|
+
}
|
|
5126
|
+
]
|
|
5127
|
+
},
|
|
5128
|
+
{
|
|
5129
|
+
"kind": "method",
|
|
5130
|
+
"name": "_setVariables",
|
|
5131
|
+
"parameters": [
|
|
5132
|
+
{
|
|
5133
|
+
"name": "variables",
|
|
5134
|
+
"type": {
|
|
5135
|
+
"text": "Properties"
|
|
5136
|
+
}
|
|
5137
|
+
}
|
|
5138
|
+
]
|
|
5139
|
+
},
|
|
5140
|
+
{
|
|
5141
|
+
"kind": "method",
|
|
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
|
+
]
|
|
5192
|
+
},
|
|
5193
|
+
{
|
|
5194
|
+
"kind": "method",
|
|
5195
|
+
"name": "_onModeChanged",
|
|
5196
|
+
"parameters": [
|
|
5197
|
+
{
|
|
5198
|
+
"name": "mode",
|
|
4912
5199
|
"type": {
|
|
4913
|
-
"text": "
|
|
5200
|
+
"text": "SCENE_MODE"
|
|
4914
5201
|
}
|
|
4915
5202
|
}
|
|
4916
5203
|
]
|
|
4917
5204
|
},
|
|
4918
5205
|
{
|
|
4919
5206
|
"kind": "method",
|
|
4920
|
-
"name": "
|
|
4921
|
-
},
|
|
4922
|
-
{
|
|
4923
|
-
"kind": "method",
|
|
4924
|
-
"name": "_setPropertyTargetAsDefault"
|
|
4925
|
-
},
|
|
4926
|
-
{
|
|
4927
|
-
"kind": "method",
|
|
4928
|
-
"name": "_onCollapsed",
|
|
5207
|
+
"name": "_onDataChanged",
|
|
4929
5208
|
"parameters": [
|
|
4930
5209
|
{
|
|
4931
|
-
"name": "
|
|
5210
|
+
"name": "data",
|
|
4932
5211
|
"type": {
|
|
4933
|
-
"text": "
|
|
5212
|
+
"text": "any"
|
|
4934
5213
|
}
|
|
4935
5214
|
}
|
|
4936
5215
|
]
|
|
4937
5216
|
},
|
|
4938
|
-
{
|
|
4939
|
-
"kind": "method",
|
|
4940
|
-
"name": "_onSceneChanged"
|
|
4941
|
-
},
|
|
4942
5217
|
{
|
|
4943
5218
|
"kind": "method",
|
|
4944
5219
|
"name": "_onSelectedChanged",
|
|
@@ -4953,285 +5228,177 @@
|
|
|
4953
5228
|
},
|
|
4954
5229
|
{
|
|
4955
5230
|
"kind": "method",
|
|
4956
|
-
"name": "
|
|
5231
|
+
"name": "_onSceneModeChanged",
|
|
4957
5232
|
"parameters": [
|
|
4958
5233
|
{
|
|
4959
|
-
"name": "
|
|
5234
|
+
"name": "after",
|
|
4960
5235
|
"type": {
|
|
4961
|
-
"text": "
|
|
5236
|
+
"text": "SCENE_MODE"
|
|
4962
5237
|
}
|
|
4963
5238
|
}
|
|
4964
5239
|
]
|
|
4965
5240
|
},
|
|
4966
5241
|
{
|
|
4967
5242
|
"kind": "method",
|
|
4968
|
-
"name": "
|
|
5243
|
+
"name": "_onBaseUrlChanged",
|
|
4969
5244
|
"parameters": [
|
|
4970
5245
|
{
|
|
4971
|
-
"name": "
|
|
5246
|
+
"name": "after",
|
|
4972
5247
|
"type": {
|
|
4973
|
-
"text": "
|
|
5248
|
+
"text": "string"
|
|
4974
5249
|
}
|
|
4975
5250
|
}
|
|
4976
5251
|
]
|
|
4977
5252
|
}
|
|
4978
5253
|
],
|
|
4979
|
-
"
|
|
5254
|
+
"events": [
|
|
4980
5255
|
{
|
|
4981
|
-
"name": "scene",
|
|
5256
|
+
"name": "scene-changed",
|
|
4982
5257
|
"type": {
|
|
4983
|
-
"text": "
|
|
4984
|
-
}
|
|
4985
|
-
"default": "null",
|
|
4986
|
-
"fieldName": "scene"
|
|
5258
|
+
"text": "CustomEvent"
|
|
5259
|
+
}
|
|
4987
5260
|
},
|
|
4988
5261
|
{
|
|
4989
|
-
"name": "
|
|
5262
|
+
"name": "mode-changed",
|
|
4990
5263
|
"type": {
|
|
4991
|
-
"text": "
|
|
4992
|
-
}
|
|
4993
|
-
"default": "{}",
|
|
4994
|
-
"fieldName": "bounds"
|
|
5264
|
+
"text": "CustomEvent"
|
|
5265
|
+
}
|
|
4995
5266
|
},
|
|
4996
5267
|
{
|
|
4997
|
-
"name": "
|
|
5268
|
+
"name": "variables-changed",
|
|
4998
5269
|
"type": {
|
|
4999
|
-
"text": "
|
|
5000
|
-
}
|
|
5001
|
-
"default": "{}",
|
|
5002
|
-
"fieldName": "model"
|
|
5270
|
+
"text": "CustomEvent"
|
|
5271
|
+
}
|
|
5003
5272
|
},
|
|
5004
5273
|
{
|
|
5005
|
-
"name": "selected",
|
|
5274
|
+
"name": "selected-changed",
|
|
5006
5275
|
"type": {
|
|
5007
|
-
"text": "
|
|
5276
|
+
"text": "CustomEvent"
|
|
5277
|
+
}
|
|
5278
|
+
}
|
|
5279
|
+
],
|
|
5280
|
+
"attributes": [
|
|
5281
|
+
{
|
|
5282
|
+
"name": "scene",
|
|
5283
|
+
"type": {
|
|
5284
|
+
"text": "Scene | null"
|
|
5008
5285
|
},
|
|
5009
|
-
"default": "
|
|
5010
|
-
"fieldName": "
|
|
5286
|
+
"default": "null",
|
|
5287
|
+
"fieldName": "scene"
|
|
5011
5288
|
},
|
|
5012
5289
|
{
|
|
5013
|
-
"name": "
|
|
5290
|
+
"name": "model",
|
|
5014
5291
|
"type": {
|
|
5015
|
-
"text": "
|
|
5292
|
+
"text": "Model | undefined"
|
|
5016
5293
|
},
|
|
5017
|
-
"fieldName": "
|
|
5294
|
+
"fieldName": "model"
|
|
5018
5295
|
},
|
|
5019
5296
|
{
|
|
5020
|
-
"name": "
|
|
5297
|
+
"name": "mode",
|
|
5021
5298
|
"type": {
|
|
5022
|
-
"text": "
|
|
5299
|
+
"text": "SCENE_MODE"
|
|
5023
5300
|
},
|
|
5024
|
-
"
|
|
5025
|
-
"fieldName": "tabName"
|
|
5301
|
+
"fieldName": "mode"
|
|
5026
5302
|
},
|
|
5027
5303
|
{
|
|
5028
|
-
"name": "
|
|
5304
|
+
"name": "screenSize",
|
|
5029
5305
|
"type": {
|
|
5030
|
-
"text": "
|
|
5306
|
+
"text": "number"
|
|
5031
5307
|
},
|
|
5032
|
-
"default": "
|
|
5033
|
-
"fieldName": "
|
|
5308
|
+
"default": "13.3",
|
|
5309
|
+
"fieldName": "screenSize"
|
|
5034
5310
|
},
|
|
5035
5311
|
{
|
|
5036
|
-
"name": "
|
|
5312
|
+
"name": "variables",
|
|
5037
5313
|
"type": {
|
|
5038
|
-
"text": "
|
|
5314
|
+
"text": "Properties"
|
|
5039
5315
|
},
|
|
5040
|
-
"default": "
|
|
5041
|
-
"fieldName": "
|
|
5316
|
+
"default": "{}",
|
|
5317
|
+
"fieldName": "variables"
|
|
5042
5318
|
},
|
|
5043
5319
|
{
|
|
5044
|
-
"name": "
|
|
5320
|
+
"name": "data",
|
|
5045
5321
|
"type": {
|
|
5046
|
-
"text": "any
|
|
5322
|
+
"text": "any"
|
|
5047
5323
|
},
|
|
5048
|
-
"
|
|
5049
|
-
|
|
5050
|
-
}
|
|
5051
|
-
],
|
|
5052
|
-
"mixins": [
|
|
5053
|
-
{
|
|
5054
|
-
"name": "ScopedElementsMixin",
|
|
5055
|
-
"package": "@open-wc/scoped-elements"
|
|
5056
|
-
}
|
|
5057
|
-
],
|
|
5058
|
-
"superclass": {
|
|
5059
|
-
"name": "LitElement",
|
|
5060
|
-
"package": "lit"
|
|
5061
|
-
},
|
|
5062
|
-
"customElement": true
|
|
5063
|
-
}
|
|
5064
|
-
],
|
|
5065
|
-
"exports": [
|
|
5066
|
-
{
|
|
5067
|
-
"kind": "js",
|
|
5068
|
-
"name": "PropertySidebar",
|
|
5069
|
-
"declaration": {
|
|
5070
|
-
"name": "PropertySidebar",
|
|
5071
|
-
"module": "src/modeller/property-sidebar/property-sidebar.ts"
|
|
5072
|
-
}
|
|
5073
|
-
}
|
|
5074
|
-
]
|
|
5075
|
-
},
|
|
5076
|
-
{
|
|
5077
|
-
"kind": "javascript-module",
|
|
5078
|
-
"path": "src/modeller/scene-viewer/confidential-overlay.ts",
|
|
5079
|
-
"declarations": [
|
|
5080
|
-
{
|
|
5081
|
-
"kind": "class",
|
|
5082
|
-
"description": "",
|
|
5083
|
-
"name": "ConfidentialOverlay",
|
|
5084
|
-
"members": [
|
|
5085
|
-
{
|
|
5086
|
-
"kind": "method",
|
|
5087
|
-
"name": "_draw",
|
|
5088
|
-
"parameters": [
|
|
5089
|
-
{
|
|
5090
|
-
"name": "context",
|
|
5091
|
-
"type": {
|
|
5092
|
-
"text": "CanvasRenderingContext2D"
|
|
5093
|
-
}
|
|
5094
|
-
}
|
|
5095
|
-
]
|
|
5096
|
-
}
|
|
5097
|
-
],
|
|
5098
|
-
"superclass": {
|
|
5099
|
-
"name": "SceneLayer",
|
|
5100
|
-
"package": "@hatiolab/things-scene"
|
|
5101
|
-
}
|
|
5102
|
-
}
|
|
5103
|
-
],
|
|
5104
|
-
"exports": [
|
|
5105
|
-
{
|
|
5106
|
-
"kind": "js",
|
|
5107
|
-
"name": "default",
|
|
5108
|
-
"declaration": {
|
|
5109
|
-
"name": "ConfidentialOverlay",
|
|
5110
|
-
"module": "src/modeller/scene-viewer/confidential-overlay.ts"
|
|
5111
|
-
}
|
|
5112
|
-
}
|
|
5113
|
-
]
|
|
5114
|
-
},
|
|
5115
|
-
{
|
|
5116
|
-
"kind": "javascript-module",
|
|
5117
|
-
"path": "src/modeller/scene-viewer/ox-scene-handler.ts",
|
|
5118
|
-
"declarations": [
|
|
5119
|
-
{
|
|
5120
|
-
"kind": "class",
|
|
5121
|
-
"description": "",
|
|
5122
|
-
"name": "OxSceneHandler",
|
|
5123
|
-
"members": [
|
|
5324
|
+
"fieldName": "data"
|
|
5325
|
+
},
|
|
5124
5326
|
{
|
|
5125
|
-
"
|
|
5126
|
-
"name": "type",
|
|
5327
|
+
"name": "themes",
|
|
5127
5328
|
"type": {
|
|
5128
|
-
"text": "
|
|
5329
|
+
"text": "any | undefined"
|
|
5129
5330
|
},
|
|
5130
|
-
"
|
|
5331
|
+
"fieldName": "themes"
|
|
5131
5332
|
},
|
|
5132
5333
|
{
|
|
5133
|
-
"
|
|
5134
|
-
"name": "model",
|
|
5334
|
+
"name": "fit",
|
|
5135
5335
|
"type": {
|
|
5136
|
-
"text": "
|
|
5336
|
+
"text": "FITMODE"
|
|
5137
5337
|
},
|
|
5138
|
-
"
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
"attributes": [
|
|
5338
|
+
"default": "'none'",
|
|
5339
|
+
"fieldName": "fit"
|
|
5340
|
+
},
|
|
5142
5341
|
{
|
|
5143
|
-
"name": "
|
|
5342
|
+
"name": "selected",
|
|
5144
5343
|
"type": {
|
|
5145
|
-
"text": "
|
|
5344
|
+
"text": "Component[]"
|
|
5146
5345
|
},
|
|
5147
|
-
"
|
|
5346
|
+
"default": "[]",
|
|
5347
|
+
"fieldName": "selected"
|
|
5148
5348
|
},
|
|
5149
5349
|
{
|
|
5150
|
-
"name": "
|
|
5350
|
+
"name": "disposeWhenDetached",
|
|
5151
5351
|
"type": {
|
|
5152
|
-
"text": "
|
|
5352
|
+
"text": "boolean"
|
|
5153
5353
|
},
|
|
5154
|
-
"
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
"superclass": {
|
|
5158
|
-
"name": "LitElement",
|
|
5159
|
-
"package": "lit"
|
|
5160
|
-
},
|
|
5161
|
-
"tagName": "ox-scene-handler",
|
|
5162
|
-
"customElement": true
|
|
5163
|
-
}
|
|
5164
|
-
],
|
|
5165
|
-
"exports": [
|
|
5166
|
-
{
|
|
5167
|
-
"kind": "js",
|
|
5168
|
-
"name": "default",
|
|
5169
|
-
"declaration": {
|
|
5170
|
-
"name": "OxSceneHandler",
|
|
5171
|
-
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
5172
|
-
}
|
|
5173
|
-
},
|
|
5174
|
-
{
|
|
5175
|
-
"kind": "custom-element-definition",
|
|
5176
|
-
"name": "ox-scene-handler",
|
|
5177
|
-
"declaration": {
|
|
5178
|
-
"name": "OxSceneHandler",
|
|
5179
|
-
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
5180
|
-
}
|
|
5181
|
-
}
|
|
5182
|
-
]
|
|
5183
|
-
},
|
|
5184
|
-
{
|
|
5185
|
-
"kind": "javascript-module",
|
|
5186
|
-
"path": "src/modeller/scene-viewer/ox-scene-layer.ts",
|
|
5187
|
-
"declarations": [
|
|
5188
|
-
{
|
|
5189
|
-
"kind": "class",
|
|
5190
|
-
"description": "",
|
|
5191
|
-
"name": "OxSceneLayer",
|
|
5192
|
-
"members": [
|
|
5354
|
+
"default": "false",
|
|
5355
|
+
"fieldName": "disposeWhenDetached"
|
|
5356
|
+
},
|
|
5193
5357
|
{
|
|
5194
|
-
"
|
|
5195
|
-
"name": "type",
|
|
5358
|
+
"name": "baseUrl",
|
|
5196
5359
|
"type": {
|
|
5197
|
-
"text": "
|
|
5360
|
+
"text": "string"
|
|
5198
5361
|
},
|
|
5199
|
-
"
|
|
5362
|
+
"default": "''",
|
|
5363
|
+
"fieldName": "baseUrl"
|
|
5200
5364
|
},
|
|
5201
5365
|
{
|
|
5202
|
-
"
|
|
5203
|
-
"name": "text",
|
|
5366
|
+
"name": "provider",
|
|
5204
5367
|
"type": {
|
|
5205
|
-
"text": "
|
|
5368
|
+
"text": "any"
|
|
5206
5369
|
},
|
|
5207
|
-
"
|
|
5370
|
+
"fieldName": "provider"
|
|
5208
5371
|
},
|
|
5209
5372
|
{
|
|
5210
|
-
"
|
|
5211
|
-
"
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5373
|
+
"name": "name",
|
|
5374
|
+
"type": {
|
|
5375
|
+
"text": "string"
|
|
5376
|
+
},
|
|
5377
|
+
"default": "'noname'",
|
|
5378
|
+
"fieldName": "name"
|
|
5379
|
+
},
|
|
5215
5380
|
{
|
|
5216
|
-
"name": "
|
|
5381
|
+
"name": "enableInspector",
|
|
5217
5382
|
"type": {
|
|
5218
|
-
"text": "
|
|
5383
|
+
"text": "boolean"
|
|
5219
5384
|
},
|
|
5220
|
-
"
|
|
5385
|
+
"default": "true",
|
|
5386
|
+
"fieldName": "enableInspector"
|
|
5221
5387
|
},
|
|
5222
5388
|
{
|
|
5223
|
-
"name": "
|
|
5389
|
+
"name": "showInspector",
|
|
5224
5390
|
"type": {
|
|
5225
|
-
"text": "
|
|
5391
|
+
"text": "boolean"
|
|
5226
5392
|
},
|
|
5227
|
-
"
|
|
5393
|
+
"default": "false",
|
|
5394
|
+
"fieldName": "showInspector"
|
|
5228
5395
|
}
|
|
5229
5396
|
],
|
|
5230
5397
|
"superclass": {
|
|
5231
5398
|
"name": "LitElement",
|
|
5232
5399
|
"package": "lit"
|
|
5233
5400
|
},
|
|
5234
|
-
"tagName": "ox-scene-
|
|
5401
|
+
"tagName": "ox-scene-viewer",
|
|
5235
5402
|
"customElement": true
|
|
5236
5403
|
}
|
|
5237
5404
|
],
|
|
@@ -5240,112 +5407,127 @@
|
|
|
5240
5407
|
"kind": "js",
|
|
5241
5408
|
"name": "default",
|
|
5242
5409
|
"declaration": {
|
|
5243
|
-
"name": "
|
|
5244
|
-
"module": "src/modeller/scene-viewer/ox-scene-
|
|
5410
|
+
"name": "OxSceneViewer",
|
|
5411
|
+
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
5245
5412
|
}
|
|
5246
5413
|
},
|
|
5247
5414
|
{
|
|
5248
5415
|
"kind": "custom-element-definition",
|
|
5249
|
-
"name": "ox-scene-
|
|
5416
|
+
"name": "ox-scene-viewer",
|
|
5250
5417
|
"declaration": {
|
|
5251
|
-
"name": "
|
|
5252
|
-
"module": "src/modeller/scene-viewer/ox-scene-
|
|
5418
|
+
"name": "OxSceneViewer",
|
|
5419
|
+
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
5253
5420
|
}
|
|
5254
5421
|
}
|
|
5255
5422
|
]
|
|
5256
5423
|
},
|
|
5257
5424
|
{
|
|
5258
5425
|
"kind": "javascript-module",
|
|
5259
|
-
"path": "src/modeller/
|
|
5426
|
+
"path": "src/modeller/property-sidebar/abstract-property.ts",
|
|
5260
5427
|
"declarations": [
|
|
5261
5428
|
{
|
|
5262
5429
|
"kind": "class",
|
|
5263
5430
|
"description": "",
|
|
5264
|
-
"name": "
|
|
5431
|
+
"name": "AbstractProperty",
|
|
5265
5432
|
"members": [
|
|
5266
5433
|
{
|
|
5267
|
-
"kind": "
|
|
5268
|
-
"name": "
|
|
5269
|
-
"
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
|
|
5434
|
+
"kind": "method",
|
|
5435
|
+
"name": "_onValueChange",
|
|
5436
|
+
"parameters": [
|
|
5437
|
+
{
|
|
5438
|
+
"name": "e",
|
|
5439
|
+
"type": {
|
|
5440
|
+
"text": "Event"
|
|
5441
|
+
}
|
|
5442
|
+
}
|
|
5443
|
+
]
|
|
5273
5444
|
},
|
|
5274
5445
|
{
|
|
5275
|
-
"kind": "
|
|
5276
|
-
"name": "
|
|
5277
|
-
"
|
|
5278
|
-
|
|
5279
|
-
|
|
5280
|
-
|
|
5446
|
+
"kind": "method",
|
|
5447
|
+
"name": "_getValueFromEventTarget",
|
|
5448
|
+
"parameters": [
|
|
5449
|
+
{
|
|
5450
|
+
"name": "element",
|
|
5451
|
+
"type": {
|
|
5452
|
+
"text": "HTMLElement"
|
|
5453
|
+
}
|
|
5454
|
+
}
|
|
5455
|
+
]
|
|
5281
5456
|
},
|
|
5282
5457
|
{
|
|
5283
|
-
"kind": "
|
|
5284
|
-
"name": "
|
|
5285
|
-
"
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
|
|
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
|
+
]
|
|
5289
5474
|
}
|
|
5290
5475
|
],
|
|
5291
|
-
"
|
|
5292
|
-
{
|
|
5293
|
-
"name": "name",
|
|
5294
|
-
"type": {
|
|
5295
|
-
"text": "string"
|
|
5296
|
-
},
|
|
5297
|
-
"fieldName": "name"
|
|
5298
|
-
},
|
|
5299
|
-
{
|
|
5300
|
-
"name": "value",
|
|
5301
|
-
"type": {
|
|
5302
|
-
"text": "string"
|
|
5303
|
-
},
|
|
5304
|
-
"fieldName": "value"
|
|
5305
|
-
},
|
|
5476
|
+
"events": [
|
|
5306
5477
|
{
|
|
5307
|
-
"name": "
|
|
5478
|
+
"name": "property-change",
|
|
5308
5479
|
"type": {
|
|
5309
|
-
"text": "
|
|
5310
|
-
}
|
|
5311
|
-
"fieldName": "type"
|
|
5480
|
+
"text": "CustomEvent"
|
|
5481
|
+
}
|
|
5312
5482
|
}
|
|
5313
5483
|
],
|
|
5314
5484
|
"superclass": {
|
|
5315
5485
|
"name": "LitElement",
|
|
5316
5486
|
"package": "lit"
|
|
5317
5487
|
},
|
|
5318
|
-
"tagName": "ox-scene-property",
|
|
5319
5488
|
"customElement": true
|
|
5320
5489
|
}
|
|
5321
5490
|
],
|
|
5322
5491
|
"exports": [
|
|
5323
5492
|
{
|
|
5324
5493
|
"kind": "js",
|
|
5325
|
-
"name": "
|
|
5494
|
+
"name": "AbstractProperty",
|
|
5326
5495
|
"declaration": {
|
|
5327
|
-
"name": "
|
|
5328
|
-
"module": "src/modeller/
|
|
5496
|
+
"name": "AbstractProperty",
|
|
5497
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5329
5498
|
}
|
|
5330
|
-
}
|
|
5499
|
+
}
|
|
5500
|
+
]
|
|
5501
|
+
},
|
|
5502
|
+
{
|
|
5503
|
+
"kind": "javascript-module",
|
|
5504
|
+
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
5505
|
+
"declarations": [
|
|
5331
5506
|
{
|
|
5332
|
-
"kind": "
|
|
5333
|
-
"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",
|
|
5334
5516
|
"declaration": {
|
|
5335
|
-
"name": "
|
|
5336
|
-
"module": "src/modeller/
|
|
5517
|
+
"name": "PropertySharedStyle",
|
|
5518
|
+
"module": "src/modeller/property-sidebar/property-shared-style.ts"
|
|
5337
5519
|
}
|
|
5338
5520
|
}
|
|
5339
5521
|
]
|
|
5340
5522
|
},
|
|
5341
5523
|
{
|
|
5342
5524
|
"kind": "javascript-module",
|
|
5343
|
-
"path": "src/modeller/
|
|
5525
|
+
"path": "src/modeller/property-sidebar/property-sidebar.ts",
|
|
5344
5526
|
"declarations": [
|
|
5345
5527
|
{
|
|
5346
5528
|
"kind": "class",
|
|
5347
5529
|
"description": "",
|
|
5348
|
-
"name": "
|
|
5530
|
+
"name": "PropertySidebar",
|
|
5349
5531
|
"members": [
|
|
5350
5532
|
{
|
|
5351
5533
|
"kind": "field",
|
|
@@ -5358,62 +5540,21 @@
|
|
|
5358
5540
|
},
|
|
5359
5541
|
{
|
|
5360
5542
|
"kind": "field",
|
|
5361
|
-
"name": "
|
|
5362
|
-
"type": {
|
|
5363
|
-
"text": "Model | undefined"
|
|
5364
|
-
},
|
|
5365
|
-
"attribute": "model"
|
|
5366
|
-
},
|
|
5367
|
-
{
|
|
5368
|
-
"kind": "field",
|
|
5369
|
-
"name": "mode",
|
|
5370
|
-
"type": {
|
|
5371
|
-
"text": "SCENE_MODE"
|
|
5372
|
-
},
|
|
5373
|
-
"attribute": "mode"
|
|
5374
|
-
},
|
|
5375
|
-
{
|
|
5376
|
-
"kind": "field",
|
|
5377
|
-
"name": "screenSize",
|
|
5378
|
-
"type": {
|
|
5379
|
-
"text": "number"
|
|
5380
|
-
},
|
|
5381
|
-
"default": "13.3",
|
|
5382
|
-
"attribute": "screenSize"
|
|
5383
|
-
},
|
|
5384
|
-
{
|
|
5385
|
-
"kind": "field",
|
|
5386
|
-
"name": "variables",
|
|
5387
|
-
"type": {
|
|
5388
|
-
"text": "Properties"
|
|
5389
|
-
},
|
|
5390
|
-
"default": "{}",
|
|
5391
|
-
"attribute": "variables"
|
|
5392
|
-
},
|
|
5393
|
-
{
|
|
5394
|
-
"kind": "field",
|
|
5395
|
-
"name": "data",
|
|
5543
|
+
"name": "bounds",
|
|
5396
5544
|
"type": {
|
|
5397
5545
|
"text": "any"
|
|
5398
5546
|
},
|
|
5399
|
-
"
|
|
5400
|
-
|
|
5401
|
-
{
|
|
5402
|
-
"kind": "field",
|
|
5403
|
-
"name": "themes",
|
|
5404
|
-
"type": {
|
|
5405
|
-
"text": "any | undefined"
|
|
5406
|
-
},
|
|
5407
|
-
"attribute": "themes"
|
|
5547
|
+
"default": "{}",
|
|
5548
|
+
"attribute": "bounds"
|
|
5408
5549
|
},
|
|
5409
5550
|
{
|
|
5410
5551
|
"kind": "field",
|
|
5411
|
-
"name": "
|
|
5552
|
+
"name": "model",
|
|
5412
5553
|
"type": {
|
|
5413
|
-
"text": "
|
|
5554
|
+
"text": "Model | null"
|
|
5414
5555
|
},
|
|
5415
|
-
"default": "
|
|
5416
|
-
"attribute": "
|
|
5556
|
+
"default": "{}",
|
|
5557
|
+
"attribute": "model"
|
|
5417
5558
|
},
|
|
5418
5559
|
{
|
|
5419
5560
|
"kind": "field",
|
|
@@ -5426,177 +5567,109 @@
|
|
|
5426
5567
|
},
|
|
5427
5568
|
{
|
|
5428
5569
|
"kind": "field",
|
|
5429
|
-
"name": "
|
|
5430
|
-
"type": {
|
|
5431
|
-
"text": "boolean"
|
|
5432
|
-
},
|
|
5433
|
-
"default": "false",
|
|
5434
|
-
"attribute": "disposeWhenDetached"
|
|
5435
|
-
},
|
|
5436
|
-
{
|
|
5437
|
-
"kind": "field",
|
|
5438
|
-
"name": "baseUrl",
|
|
5439
|
-
"type": {
|
|
5440
|
-
"text": "string"
|
|
5441
|
-
},
|
|
5442
|
-
"default": "''",
|
|
5443
|
-
"attribute": "baseUrl"
|
|
5444
|
-
},
|
|
5445
|
-
{
|
|
5446
|
-
"kind": "field",
|
|
5447
|
-
"name": "provider",
|
|
5570
|
+
"name": "specificProps",
|
|
5448
5571
|
"type": {
|
|
5449
5572
|
"text": "any"
|
|
5450
5573
|
},
|
|
5451
|
-
"attribute": "
|
|
5452
|
-
},
|
|
5453
|
-
{
|
|
5454
|
-
"kind": "field",
|
|
5455
|
-
"name": "name",
|
|
5456
|
-
"type": {
|
|
5457
|
-
"text": "string"
|
|
5458
|
-
},
|
|
5459
|
-
"default": "'noname'",
|
|
5460
|
-
"attribute": "name"
|
|
5574
|
+
"attribute": "specificProps"
|
|
5461
5575
|
},
|
|
5462
5576
|
{
|
|
5463
5577
|
"kind": "field",
|
|
5464
|
-
"name": "
|
|
5578
|
+
"name": "tabName",
|
|
5465
5579
|
"type": {
|
|
5466
|
-
"text": "
|
|
5580
|
+
"text": "string | null"
|
|
5467
5581
|
},
|
|
5468
|
-
"default": "
|
|
5469
|
-
"attribute": "
|
|
5582
|
+
"default": "'specific'",
|
|
5583
|
+
"attribute": "tabName"
|
|
5470
5584
|
},
|
|
5471
5585
|
{
|
|
5472
5586
|
"kind": "field",
|
|
5473
|
-
"name": "
|
|
5587
|
+
"name": "collapsed",
|
|
5474
5588
|
"type": {
|
|
5475
5589
|
"text": "boolean"
|
|
5476
5590
|
},
|
|
5477
5591
|
"default": "false",
|
|
5478
|
-
"attribute": "
|
|
5592
|
+
"attribute": "collapsed"
|
|
5479
5593
|
},
|
|
5480
5594
|
{
|
|
5481
5595
|
"kind": "field",
|
|
5482
|
-
"name": "
|
|
5596
|
+
"name": "fonts",
|
|
5483
5597
|
"type": {
|
|
5484
|
-
"text": "
|
|
5598
|
+
"text": "any[]"
|
|
5485
5599
|
},
|
|
5486
|
-
"
|
|
5600
|
+
"default": "[]",
|
|
5601
|
+
"attribute": "fonts"
|
|
5487
5602
|
},
|
|
5488
5603
|
{
|
|
5489
|
-
"kind": "
|
|
5490
|
-
"name": "
|
|
5491
|
-
"
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
|
|
5495
|
-
|
|
5496
|
-
}
|
|
5497
|
-
}
|
|
5498
|
-
]
|
|
5604
|
+
"kind": "field",
|
|
5605
|
+
"name": "propertyEditor",
|
|
5606
|
+
"type": {
|
|
5607
|
+
"text": "any[]"
|
|
5608
|
+
},
|
|
5609
|
+
"default": "[]",
|
|
5610
|
+
"attribute": "propertyEditor"
|
|
5499
5611
|
},
|
|
5500
5612
|
{
|
|
5501
|
-
"kind": "
|
|
5502
|
-
"name": "
|
|
5503
|
-
"
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
"text": "SCENE_MODE"
|
|
5508
|
-
}
|
|
5509
|
-
}
|
|
5510
|
-
]
|
|
5613
|
+
"kind": "field",
|
|
5614
|
+
"name": "propertyTarget",
|
|
5615
|
+
"type": {
|
|
5616
|
+
"text": "Component | null"
|
|
5617
|
+
},
|
|
5618
|
+
"default": "null"
|
|
5511
5619
|
},
|
|
5512
5620
|
{
|
|
5513
|
-
"kind": "
|
|
5514
|
-
"name": "
|
|
5515
|
-
"
|
|
5516
|
-
|
|
5517
|
-
"name": "variables",
|
|
5518
|
-
"type": {
|
|
5519
|
-
"text": "Properties"
|
|
5520
|
-
}
|
|
5521
|
-
}
|
|
5522
|
-
]
|
|
5621
|
+
"kind": "field",
|
|
5622
|
+
"name": "scopedElements",
|
|
5623
|
+
"static": true,
|
|
5624
|
+
"readonly": true
|
|
5523
5625
|
},
|
|
5524
5626
|
{
|
|
5525
5627
|
"kind": "method",
|
|
5526
|
-
"name": "
|
|
5628
|
+
"name": "_onPropertyChanged",
|
|
5527
5629
|
"parameters": [
|
|
5528
5630
|
{
|
|
5529
|
-
"name": "
|
|
5631
|
+
"name": "e",
|
|
5530
5632
|
"type": {
|
|
5531
|
-
"text": "
|
|
5633
|
+
"text": "CustomEvent"
|
|
5532
5634
|
}
|
|
5533
5635
|
}
|
|
5534
5636
|
]
|
|
5535
5637
|
},
|
|
5536
5638
|
{
|
|
5537
5639
|
"kind": "method",
|
|
5538
|
-
"name": "
|
|
5539
|
-
},
|
|
5540
|
-
{
|
|
5541
|
-
"kind": "method",
|
|
5542
|
-
"name": "resize",
|
|
5640
|
+
"name": "_onBoundsChanged",
|
|
5543
5641
|
"parameters": [
|
|
5544
5642
|
{
|
|
5545
|
-
"name": "
|
|
5643
|
+
"name": "e",
|
|
5546
5644
|
"type": {
|
|
5547
|
-
"text": "
|
|
5645
|
+
"text": "CustomEvent"
|
|
5548
5646
|
}
|
|
5549
5647
|
}
|
|
5550
5648
|
]
|
|
5551
5649
|
},
|
|
5552
5650
|
{
|
|
5553
5651
|
"kind": "method",
|
|
5554
|
-
"name": "
|
|
5555
|
-
"parameters": [
|
|
5556
|
-
{
|
|
5557
|
-
"name": "model",
|
|
5558
|
-
"optional": true,
|
|
5559
|
-
"type": {
|
|
5560
|
-
"text": "Model"
|
|
5561
|
-
}
|
|
5562
|
-
}
|
|
5563
|
-
]
|
|
5652
|
+
"name": "_onChangedByScene"
|
|
5564
5653
|
},
|
|
5565
5654
|
{
|
|
5566
5655
|
"kind": "method",
|
|
5567
|
-
"name": "
|
|
5568
|
-
"parameters": [
|
|
5569
|
-
{
|
|
5570
|
-
"name": "screenSize",
|
|
5571
|
-
"type": {
|
|
5572
|
-
"text": "string | number"
|
|
5573
|
-
}
|
|
5574
|
-
}
|
|
5575
|
-
]
|
|
5656
|
+
"name": "_setPropertyTargetAsDefault"
|
|
5576
5657
|
},
|
|
5577
5658
|
{
|
|
5578
5659
|
"kind": "method",
|
|
5579
|
-
"name": "
|
|
5660
|
+
"name": "_onCollapsed",
|
|
5580
5661
|
"parameters": [
|
|
5581
5662
|
{
|
|
5582
|
-
"name": "
|
|
5663
|
+
"name": "collapsed",
|
|
5583
5664
|
"type": {
|
|
5584
|
-
"text": "
|
|
5665
|
+
"text": "boolean"
|
|
5585
5666
|
}
|
|
5586
5667
|
}
|
|
5587
5668
|
]
|
|
5588
5669
|
},
|
|
5589
5670
|
{
|
|
5590
5671
|
"kind": "method",
|
|
5591
|
-
"name": "
|
|
5592
|
-
"parameters": [
|
|
5593
|
-
{
|
|
5594
|
-
"name": "data",
|
|
5595
|
-
"type": {
|
|
5596
|
-
"text": "any"
|
|
5597
|
-
}
|
|
5598
|
-
}
|
|
5599
|
-
]
|
|
5672
|
+
"name": "_onSceneChanged"
|
|
5600
5673
|
},
|
|
5601
5674
|
{
|
|
5602
5675
|
"kind": "method",
|
|
@@ -5612,55 +5685,29 @@
|
|
|
5612
5685
|
},
|
|
5613
5686
|
{
|
|
5614
5687
|
"kind": "method",
|
|
5615
|
-
"name": "
|
|
5688
|
+
"name": "_setPropertyTarget",
|
|
5616
5689
|
"parameters": [
|
|
5617
5690
|
{
|
|
5618
|
-
"name": "
|
|
5691
|
+
"name": "newTarget",
|
|
5619
5692
|
"type": {
|
|
5620
|
-
"text": "
|
|
5693
|
+
"text": "Component | null"
|
|
5621
5694
|
}
|
|
5622
5695
|
}
|
|
5623
5696
|
]
|
|
5624
5697
|
},
|
|
5625
5698
|
{
|
|
5626
5699
|
"kind": "method",
|
|
5627
|
-
"name": "
|
|
5700
|
+
"name": "_setBounds",
|
|
5628
5701
|
"parameters": [
|
|
5629
5702
|
{
|
|
5630
|
-
"name": "
|
|
5703
|
+
"name": "bounds",
|
|
5631
5704
|
"type": {
|
|
5632
|
-
"text": "
|
|
5705
|
+
"text": "BOUNDS"
|
|
5633
5706
|
}
|
|
5634
5707
|
}
|
|
5635
5708
|
]
|
|
5636
5709
|
}
|
|
5637
5710
|
],
|
|
5638
|
-
"events": [
|
|
5639
|
-
{
|
|
5640
|
-
"name": "scene-changed",
|
|
5641
|
-
"type": {
|
|
5642
|
-
"text": "CustomEvent"
|
|
5643
|
-
}
|
|
5644
|
-
},
|
|
5645
|
-
{
|
|
5646
|
-
"name": "mode-changed",
|
|
5647
|
-
"type": {
|
|
5648
|
-
"text": "CustomEvent"
|
|
5649
|
-
}
|
|
5650
|
-
},
|
|
5651
|
-
{
|
|
5652
|
-
"name": "variables-changed",
|
|
5653
|
-
"type": {
|
|
5654
|
-
"text": "CustomEvent"
|
|
5655
|
-
}
|
|
5656
|
-
},
|
|
5657
|
-
{
|
|
5658
|
-
"name": "selected-changed",
|
|
5659
|
-
"type": {
|
|
5660
|
-
"text": "CustomEvent"
|
|
5661
|
-
}
|
|
5662
|
-
}
|
|
5663
|
-
],
|
|
5664
5711
|
"attributes": [
|
|
5665
5712
|
{
|
|
5666
5713
|
"name": "scene",
|
|
@@ -5671,56 +5718,20 @@
|
|
|
5671
5718
|
"fieldName": "scene"
|
|
5672
5719
|
},
|
|
5673
5720
|
{
|
|
5674
|
-
"name": "
|
|
5675
|
-
"type": {
|
|
5676
|
-
"text": "Model | undefined"
|
|
5677
|
-
},
|
|
5678
|
-
"fieldName": "model"
|
|
5679
|
-
},
|
|
5680
|
-
{
|
|
5681
|
-
"name": "mode",
|
|
5682
|
-
"type": {
|
|
5683
|
-
"text": "SCENE_MODE"
|
|
5684
|
-
},
|
|
5685
|
-
"fieldName": "mode"
|
|
5686
|
-
},
|
|
5687
|
-
{
|
|
5688
|
-
"name": "screenSize",
|
|
5689
|
-
"type": {
|
|
5690
|
-
"text": "number"
|
|
5691
|
-
},
|
|
5692
|
-
"default": "13.3",
|
|
5693
|
-
"fieldName": "screenSize"
|
|
5694
|
-
},
|
|
5695
|
-
{
|
|
5696
|
-
"name": "variables",
|
|
5697
|
-
"type": {
|
|
5698
|
-
"text": "Properties"
|
|
5699
|
-
},
|
|
5700
|
-
"default": "{}",
|
|
5701
|
-
"fieldName": "variables"
|
|
5702
|
-
},
|
|
5703
|
-
{
|
|
5704
|
-
"name": "data",
|
|
5721
|
+
"name": "bounds",
|
|
5705
5722
|
"type": {
|
|
5706
5723
|
"text": "any"
|
|
5707
5724
|
},
|
|
5708
|
-
"
|
|
5709
|
-
|
|
5710
|
-
{
|
|
5711
|
-
"name": "themes",
|
|
5712
|
-
"type": {
|
|
5713
|
-
"text": "any | undefined"
|
|
5714
|
-
},
|
|
5715
|
-
"fieldName": "themes"
|
|
5725
|
+
"default": "{}",
|
|
5726
|
+
"fieldName": "bounds"
|
|
5716
5727
|
},
|
|
5717
5728
|
{
|
|
5718
|
-
"name": "
|
|
5729
|
+
"name": "model",
|
|
5719
5730
|
"type": {
|
|
5720
|
-
"text": "
|
|
5731
|
+
"text": "Model | null"
|
|
5721
5732
|
},
|
|
5722
|
-
"default": "
|
|
5723
|
-
"fieldName": "
|
|
5733
|
+
"default": "{}",
|
|
5734
|
+
"fieldName": "model"
|
|
5724
5735
|
},
|
|
5725
5736
|
{
|
|
5726
5737
|
"name": "selected",
|
|
@@ -5731,76 +5742,65 @@
|
|
|
5731
5742
|
"fieldName": "selected"
|
|
5732
5743
|
},
|
|
5733
5744
|
{
|
|
5734
|
-
"name": "
|
|
5745
|
+
"name": "specificProps",
|
|
5735
5746
|
"type": {
|
|
5736
|
-
"text": "
|
|
5747
|
+
"text": "any"
|
|
5737
5748
|
},
|
|
5738
|
-
"
|
|
5739
|
-
"fieldName": "disposeWhenDetached"
|
|
5749
|
+
"fieldName": "specificProps"
|
|
5740
5750
|
},
|
|
5741
5751
|
{
|
|
5742
|
-
"name": "
|
|
5752
|
+
"name": "tabName",
|
|
5743
5753
|
"type": {
|
|
5744
|
-
"text": "string"
|
|
5754
|
+
"text": "string | null"
|
|
5745
5755
|
},
|
|
5746
|
-
"default": "''",
|
|
5747
|
-
"fieldName": "
|
|
5756
|
+
"default": "'specific'",
|
|
5757
|
+
"fieldName": "tabName"
|
|
5748
5758
|
},
|
|
5749
5759
|
{
|
|
5750
|
-
"name": "
|
|
5760
|
+
"name": "collapsed",
|
|
5751
5761
|
"type": {
|
|
5752
|
-
"text": "
|
|
5762
|
+
"text": "boolean"
|
|
5753
5763
|
},
|
|
5754
|
-
"
|
|
5764
|
+
"default": "false",
|
|
5765
|
+
"fieldName": "collapsed"
|
|
5755
5766
|
},
|
|
5756
5767
|
{
|
|
5757
|
-
"name": "
|
|
5768
|
+
"name": "fonts",
|
|
5758
5769
|
"type": {
|
|
5759
|
-
"text": "
|
|
5770
|
+
"text": "any[]"
|
|
5760
5771
|
},
|
|
5761
|
-
"default": "
|
|
5762
|
-
"fieldName": "
|
|
5772
|
+
"default": "[]",
|
|
5773
|
+
"fieldName": "fonts"
|
|
5763
5774
|
},
|
|
5764
5775
|
{
|
|
5765
|
-
"name": "
|
|
5776
|
+
"name": "propertyEditor",
|
|
5766
5777
|
"type": {
|
|
5767
|
-
"text": "
|
|
5778
|
+
"text": "any[]"
|
|
5768
5779
|
},
|
|
5769
|
-
"default": "
|
|
5770
|
-
"fieldName": "
|
|
5771
|
-
}
|
|
5780
|
+
"default": "[]",
|
|
5781
|
+
"fieldName": "propertyEditor"
|
|
5782
|
+
}
|
|
5783
|
+
],
|
|
5784
|
+
"mixins": [
|
|
5772
5785
|
{
|
|
5773
|
-
"name": "
|
|
5774
|
-
"
|
|
5775
|
-
"text": "boolean"
|
|
5776
|
-
},
|
|
5777
|
-
"default": "false",
|
|
5778
|
-
"fieldName": "showInspector"
|
|
5786
|
+
"name": "ScopedElementsMixin",
|
|
5787
|
+
"package": "@open-wc/scoped-elements"
|
|
5779
5788
|
}
|
|
5780
5789
|
],
|
|
5781
5790
|
"superclass": {
|
|
5782
5791
|
"name": "LitElement",
|
|
5783
5792
|
"package": "lit"
|
|
5784
5793
|
},
|
|
5785
|
-
"tagName": "ox-scene-viewer",
|
|
5786
5794
|
"customElement": true
|
|
5787
5795
|
}
|
|
5788
5796
|
],
|
|
5789
5797
|
"exports": [
|
|
5790
5798
|
{
|
|
5791
5799
|
"kind": "js",
|
|
5792
|
-
"name": "
|
|
5793
|
-
"declaration": {
|
|
5794
|
-
"name": "OxSceneViewer",
|
|
5795
|
-
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
5796
|
-
}
|
|
5797
|
-
},
|
|
5798
|
-
{
|
|
5799
|
-
"kind": "custom-element-definition",
|
|
5800
|
-
"name": "ox-scene-viewer",
|
|
5800
|
+
"name": "PropertySidebar",
|
|
5801
5801
|
"declaration": {
|
|
5802
|
-
"name": "
|
|
5803
|
-
"module": "src/modeller/
|
|
5802
|
+
"name": "PropertySidebar",
|
|
5803
|
+
"module": "src/modeller/property-sidebar/property-sidebar.ts"
|
|
5804
5804
|
}
|
|
5805
5805
|
}
|
|
5806
5806
|
]
|
|
@@ -6314,250 +6314,10 @@
|
|
|
6314
6314
|
"exports": [
|
|
6315
6315
|
{
|
|
6316
6316
|
"kind": "js",
|
|
6317
|
-
"name": "PropertyDataBinding",
|
|
6318
|
-
"declaration": {
|
|
6319
|
-
"name": "PropertyDataBinding",
|
|
6320
|
-
"module": "src/modeller/property-sidebar/data-binding/data-binding.ts"
|
|
6321
|
-
}
|
|
6322
|
-
}
|
|
6323
|
-
]
|
|
6324
|
-
},
|
|
6325
|
-
{
|
|
6326
|
-
"kind": "javascript-module",
|
|
6327
|
-
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
6328
|
-
"declarations": [
|
|
6329
|
-
{
|
|
6330
|
-
"kind": "class",
|
|
6331
|
-
"description": "",
|
|
6332
|
-
"name": "SceneInspector",
|
|
6333
|
-
"members": [
|
|
6334
|
-
{
|
|
6335
|
-
"kind": "field",
|
|
6336
|
-
"name": "scene",
|
|
6337
|
-
"type": {
|
|
6338
|
-
"text": "Scene | undefined"
|
|
6339
|
-
},
|
|
6340
|
-
"attribute": "scene"
|
|
6341
|
-
},
|
|
6342
|
-
{
|
|
6343
|
-
"kind": "field",
|
|
6344
|
-
"name": "searchText",
|
|
6345
|
-
"type": {
|
|
6346
|
-
"text": "string"
|
|
6347
|
-
},
|
|
6348
|
-
"privacy": "private",
|
|
6349
|
-
"default": "''"
|
|
6350
|
-
},
|
|
6351
|
-
{
|
|
6352
|
-
"kind": "field",
|
|
6353
|
-
"name": "_extendedMap",
|
|
6354
|
-
"type": {
|
|
6355
|
-
"text": "any"
|
|
6356
|
-
},
|
|
6357
|
-
"privacy": "private"
|
|
6358
|
-
},
|
|
6359
|
-
{
|
|
6360
|
-
"kind": "field",
|
|
6361
|
-
"name": "show",
|
|
6362
|
-
"type": {
|
|
6363
|
-
"text": "boolean"
|
|
6364
|
-
},
|
|
6365
|
-
"privacy": "private",
|
|
6366
|
-
"default": "false"
|
|
6367
|
-
},
|
|
6368
|
-
{
|
|
6369
|
-
"kind": "field",
|
|
6370
|
-
"name": "count",
|
|
6371
|
-
"type": {
|
|
6372
|
-
"text": "number"
|
|
6373
|
-
},
|
|
6374
|
-
"privacy": "private",
|
|
6375
|
-
"default": "-1"
|
|
6376
|
-
},
|
|
6377
|
-
{
|
|
6378
|
-
"kind": "method",
|
|
6379
|
-
"name": "disconnectScene",
|
|
6380
|
-
"parameters": [
|
|
6381
|
-
{
|
|
6382
|
-
"name": "scene",
|
|
6383
|
-
"optional": true,
|
|
6384
|
-
"type": {
|
|
6385
|
-
"text": "Scene"
|
|
6386
|
-
}
|
|
6387
|
-
}
|
|
6388
|
-
]
|
|
6389
|
-
},
|
|
6390
|
-
{
|
|
6391
|
-
"kind": "method",
|
|
6392
|
-
"name": "refresh"
|
|
6393
|
-
},
|
|
6394
|
-
{
|
|
6395
|
-
"kind": "method",
|
|
6396
|
-
"name": "_onclick",
|
|
6397
|
-
"parameters": [
|
|
6398
|
-
{
|
|
6399
|
-
"name": "e",
|
|
6400
|
-
"type": {
|
|
6401
|
-
"text": "MouseEvent"
|
|
6402
|
-
}
|
|
6403
|
-
}
|
|
6404
|
-
]
|
|
6405
|
-
},
|
|
6406
|
-
{
|
|
6407
|
-
"kind": "method",
|
|
6408
|
-
"name": "_ondblclick",
|
|
6409
|
-
"parameters": [
|
|
6410
|
-
{
|
|
6411
|
-
"name": "e",
|
|
6412
|
-
"type": {
|
|
6413
|
-
"text": "MouseEvent"
|
|
6414
|
-
}
|
|
6415
|
-
}
|
|
6416
|
-
]
|
|
6417
|
-
},
|
|
6418
|
-
{
|
|
6419
|
-
"kind": "field",
|
|
6420
|
-
"name": "extendedMap",
|
|
6421
|
-
"readonly": true
|
|
6422
|
-
},
|
|
6423
|
-
{
|
|
6424
|
-
"kind": "method",
|
|
6425
|
-
"name": "getNodeHandleClass",
|
|
6426
|
-
"parameters": [
|
|
6427
|
-
{
|
|
6428
|
-
"name": "component",
|
|
6429
|
-
"type": {
|
|
6430
|
-
"text": "Component"
|
|
6431
|
-
}
|
|
6432
|
-
}
|
|
6433
|
-
]
|
|
6434
|
-
},
|
|
6435
|
-
{
|
|
6436
|
-
"kind": "method",
|
|
6437
|
-
"name": "isExtended",
|
|
6438
|
-
"parameters": [
|
|
6439
|
-
{
|
|
6440
|
-
"name": "component",
|
|
6441
|
-
"type": {
|
|
6442
|
-
"text": "Component"
|
|
6443
|
-
}
|
|
6444
|
-
}
|
|
6445
|
-
]
|
|
6446
|
-
},
|
|
6447
|
-
{
|
|
6448
|
-
"kind": "method",
|
|
6449
|
-
"name": "toggleExtended",
|
|
6450
|
-
"parameters": [
|
|
6451
|
-
{
|
|
6452
|
-
"name": "component",
|
|
6453
|
-
"type": {
|
|
6454
|
-
"text": "Component"
|
|
6455
|
-
}
|
|
6456
|
-
}
|
|
6457
|
-
]
|
|
6458
|
-
},
|
|
6459
|
-
{
|
|
6460
|
-
"kind": "method",
|
|
6461
|
-
"name": "toggleHidden",
|
|
6462
|
-
"parameters": [
|
|
6463
|
-
{
|
|
6464
|
-
"name": "component",
|
|
6465
|
-
"type": {
|
|
6466
|
-
"text": "Component"
|
|
6467
|
-
}
|
|
6468
|
-
}
|
|
6469
|
-
]
|
|
6470
|
-
},
|
|
6471
|
-
{
|
|
6472
|
-
"kind": "method",
|
|
6473
|
-
"name": "selectComponent",
|
|
6474
|
-
"parameters": [
|
|
6475
|
-
{
|
|
6476
|
-
"name": "component",
|
|
6477
|
-
"type": {
|
|
6478
|
-
"text": "Component"
|
|
6479
|
-
}
|
|
6480
|
-
},
|
|
6481
|
-
{
|
|
6482
|
-
"name": "append",
|
|
6483
|
-
"default": "false",
|
|
6484
|
-
"type": {
|
|
6485
|
-
"text": "boolean"
|
|
6486
|
-
}
|
|
6487
|
-
}
|
|
6488
|
-
]
|
|
6489
|
-
},
|
|
6490
|
-
{
|
|
6491
|
-
"kind": "method",
|
|
6492
|
-
"name": "shouldBeShown",
|
|
6493
|
-
"return": {
|
|
6494
|
-
"type": {
|
|
6495
|
-
"text": "boolean"
|
|
6496
|
-
}
|
|
6497
|
-
},
|
|
6498
|
-
"parameters": [
|
|
6499
|
-
{
|
|
6500
|
-
"name": "component",
|
|
6501
|
-
"type": {
|
|
6502
|
-
"text": "Component"
|
|
6503
|
-
}
|
|
6504
|
-
},
|
|
6505
|
-
{
|
|
6506
|
-
"name": "counting",
|
|
6507
|
-
"default": "false",
|
|
6508
|
-
"type": {
|
|
6509
|
-
"text": "boolean"
|
|
6510
|
-
}
|
|
6511
|
-
}
|
|
6512
|
-
]
|
|
6513
|
-
},
|
|
6514
|
-
{
|
|
6515
|
-
"kind": "method",
|
|
6516
|
-
"name": "renderComponent",
|
|
6517
|
-
"return": {
|
|
6518
|
-
"type": {
|
|
6519
|
-
"text": "TemplateResult"
|
|
6520
|
-
}
|
|
6521
|
-
},
|
|
6522
|
-
"parameters": [
|
|
6523
|
-
{
|
|
6524
|
-
"name": "component",
|
|
6525
|
-
"type": {
|
|
6526
|
-
"text": "Component"
|
|
6527
|
-
}
|
|
6528
|
-
},
|
|
6529
|
-
{
|
|
6530
|
-
"name": "depth",
|
|
6531
|
-
"type": {
|
|
6532
|
-
"text": "number"
|
|
6533
|
-
}
|
|
6534
|
-
}
|
|
6535
|
-
]
|
|
6536
|
-
}
|
|
6537
|
-
],
|
|
6538
|
-
"attributes": [
|
|
6539
|
-
{
|
|
6540
|
-
"name": "scene",
|
|
6541
|
-
"type": {
|
|
6542
|
-
"text": "Scene | undefined"
|
|
6543
|
-
},
|
|
6544
|
-
"fieldName": "scene"
|
|
6545
|
-
}
|
|
6546
|
-
],
|
|
6547
|
-
"superclass": {
|
|
6548
|
-
"name": "LitElement",
|
|
6549
|
-
"package": "lit"
|
|
6550
|
-
},
|
|
6551
|
-
"customElement": true
|
|
6552
|
-
}
|
|
6553
|
-
],
|
|
6554
|
-
"exports": [
|
|
6555
|
-
{
|
|
6556
|
-
"kind": "js",
|
|
6557
|
-
"name": "SceneInspector",
|
|
6317
|
+
"name": "PropertyDataBinding",
|
|
6558
6318
|
"declaration": {
|
|
6559
|
-
"name": "
|
|
6560
|
-
"module": "src/modeller/property-sidebar/
|
|
6319
|
+
"name": "PropertyDataBinding",
|
|
6320
|
+
"module": "src/modeller/property-sidebar/data-binding/data-binding.ts"
|
|
6561
6321
|
}
|
|
6562
6322
|
}
|
|
6563
6323
|
]
|
|
@@ -7057,32 +6817,300 @@
|
|
|
7057
6817
|
},
|
|
7058
6818
|
{
|
|
7059
6819
|
"kind": "method",
|
|
7060
|
-
"name": "_onValueChange",
|
|
6820
|
+
"name": "_onValueChange",
|
|
6821
|
+
"parameters": [
|
|
6822
|
+
{
|
|
6823
|
+
"name": "e",
|
|
6824
|
+
"type": {
|
|
6825
|
+
"text": "Event"
|
|
6826
|
+
}
|
|
6827
|
+
}
|
|
6828
|
+
]
|
|
6829
|
+
}
|
|
6830
|
+
],
|
|
6831
|
+
"events": [
|
|
6832
|
+
{
|
|
6833
|
+
"name": "change",
|
|
6834
|
+
"type": {
|
|
6835
|
+
"text": "CustomEvent"
|
|
6836
|
+
}
|
|
6837
|
+
}
|
|
6838
|
+
],
|
|
6839
|
+
"attributes": [
|
|
6840
|
+
{
|
|
6841
|
+
"name": "value",
|
|
6842
|
+
"type": {
|
|
6843
|
+
"text": "Properties | undefined"
|
|
6844
|
+
},
|
|
6845
|
+
"fieldName": "value"
|
|
6846
|
+
}
|
|
6847
|
+
],
|
|
6848
|
+
"superclass": {
|
|
6849
|
+
"name": "LitElement",
|
|
6850
|
+
"package": "lit"
|
|
6851
|
+
},
|
|
6852
|
+
"customElement": true
|
|
6853
|
+
}
|
|
6854
|
+
],
|
|
6855
|
+
"exports": [
|
|
6856
|
+
{
|
|
6857
|
+
"kind": "js",
|
|
6858
|
+
"name": "PropertyShadow",
|
|
6859
|
+
"declaration": {
|
|
6860
|
+
"name": "PropertyShadow",
|
|
6861
|
+
"module": "src/modeller/property-sidebar/effects/property-shadow.ts"
|
|
6862
|
+
}
|
|
6863
|
+
}
|
|
6864
|
+
]
|
|
6865
|
+
},
|
|
6866
|
+
{
|
|
6867
|
+
"kind": "javascript-module",
|
|
6868
|
+
"path": "src/modeller/property-sidebar/effects/value-converter.ts",
|
|
6869
|
+
"declarations": [
|
|
6870
|
+
{
|
|
6871
|
+
"kind": "function",
|
|
6872
|
+
"name": "convert",
|
|
6873
|
+
"parameters": [
|
|
6874
|
+
{
|
|
6875
|
+
"name": "element",
|
|
6876
|
+
"type": {
|
|
6877
|
+
"text": "any"
|
|
6878
|
+
}
|
|
6879
|
+
}
|
|
6880
|
+
]
|
|
6881
|
+
}
|
|
6882
|
+
],
|
|
6883
|
+
"exports": [
|
|
6884
|
+
{
|
|
6885
|
+
"kind": "js",
|
|
6886
|
+
"name": "convert",
|
|
6887
|
+
"declaration": {
|
|
6888
|
+
"name": "convert",
|
|
6889
|
+
"module": "src/modeller/property-sidebar/effects/value-converter.ts"
|
|
6890
|
+
}
|
|
6891
|
+
}
|
|
6892
|
+
]
|
|
6893
|
+
},
|
|
6894
|
+
{
|
|
6895
|
+
"kind": "javascript-module",
|
|
6896
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
6897
|
+
"declarations": [
|
|
6898
|
+
{
|
|
6899
|
+
"kind": "class",
|
|
6900
|
+
"description": "",
|
|
6901
|
+
"name": "SceneInspector",
|
|
6902
|
+
"members": [
|
|
6903
|
+
{
|
|
6904
|
+
"kind": "field",
|
|
6905
|
+
"name": "scene",
|
|
6906
|
+
"type": {
|
|
6907
|
+
"text": "Scene | undefined"
|
|
6908
|
+
},
|
|
6909
|
+
"attribute": "scene"
|
|
6910
|
+
},
|
|
6911
|
+
{
|
|
6912
|
+
"kind": "field",
|
|
6913
|
+
"name": "searchText",
|
|
6914
|
+
"type": {
|
|
6915
|
+
"text": "string"
|
|
6916
|
+
},
|
|
6917
|
+
"privacy": "private",
|
|
6918
|
+
"default": "''"
|
|
6919
|
+
},
|
|
6920
|
+
{
|
|
6921
|
+
"kind": "field",
|
|
6922
|
+
"name": "_extendedMap",
|
|
6923
|
+
"type": {
|
|
6924
|
+
"text": "any"
|
|
6925
|
+
},
|
|
6926
|
+
"privacy": "private"
|
|
6927
|
+
},
|
|
6928
|
+
{
|
|
6929
|
+
"kind": "field",
|
|
6930
|
+
"name": "show",
|
|
6931
|
+
"type": {
|
|
6932
|
+
"text": "boolean"
|
|
6933
|
+
},
|
|
6934
|
+
"privacy": "private",
|
|
6935
|
+
"default": "false"
|
|
6936
|
+
},
|
|
6937
|
+
{
|
|
6938
|
+
"kind": "field",
|
|
6939
|
+
"name": "count",
|
|
6940
|
+
"type": {
|
|
6941
|
+
"text": "number"
|
|
6942
|
+
},
|
|
6943
|
+
"privacy": "private",
|
|
6944
|
+
"default": "-1"
|
|
6945
|
+
},
|
|
6946
|
+
{
|
|
6947
|
+
"kind": "method",
|
|
6948
|
+
"name": "disconnectScene",
|
|
6949
|
+
"parameters": [
|
|
6950
|
+
{
|
|
6951
|
+
"name": "scene",
|
|
6952
|
+
"optional": true,
|
|
6953
|
+
"type": {
|
|
6954
|
+
"text": "Scene"
|
|
6955
|
+
}
|
|
6956
|
+
}
|
|
6957
|
+
]
|
|
6958
|
+
},
|
|
6959
|
+
{
|
|
6960
|
+
"kind": "method",
|
|
6961
|
+
"name": "refresh"
|
|
6962
|
+
},
|
|
6963
|
+
{
|
|
6964
|
+
"kind": "method",
|
|
6965
|
+
"name": "_onclick",
|
|
6966
|
+
"parameters": [
|
|
6967
|
+
{
|
|
6968
|
+
"name": "e",
|
|
6969
|
+
"type": {
|
|
6970
|
+
"text": "MouseEvent"
|
|
6971
|
+
}
|
|
6972
|
+
}
|
|
6973
|
+
]
|
|
6974
|
+
},
|
|
6975
|
+
{
|
|
6976
|
+
"kind": "method",
|
|
6977
|
+
"name": "_ondblclick",
|
|
6978
|
+
"parameters": [
|
|
6979
|
+
{
|
|
6980
|
+
"name": "e",
|
|
6981
|
+
"type": {
|
|
6982
|
+
"text": "MouseEvent"
|
|
6983
|
+
}
|
|
6984
|
+
}
|
|
6985
|
+
]
|
|
6986
|
+
},
|
|
6987
|
+
{
|
|
6988
|
+
"kind": "field",
|
|
6989
|
+
"name": "extendedMap",
|
|
6990
|
+
"readonly": true
|
|
6991
|
+
},
|
|
6992
|
+
{
|
|
6993
|
+
"kind": "method",
|
|
6994
|
+
"name": "getNodeHandleClass",
|
|
6995
|
+
"parameters": [
|
|
6996
|
+
{
|
|
6997
|
+
"name": "component",
|
|
6998
|
+
"type": {
|
|
6999
|
+
"text": "Component"
|
|
7000
|
+
}
|
|
7001
|
+
}
|
|
7002
|
+
]
|
|
7003
|
+
},
|
|
7004
|
+
{
|
|
7005
|
+
"kind": "method",
|
|
7006
|
+
"name": "isExtended",
|
|
7007
|
+
"parameters": [
|
|
7008
|
+
{
|
|
7009
|
+
"name": "component",
|
|
7010
|
+
"type": {
|
|
7011
|
+
"text": "Component"
|
|
7012
|
+
}
|
|
7013
|
+
}
|
|
7014
|
+
]
|
|
7015
|
+
},
|
|
7016
|
+
{
|
|
7017
|
+
"kind": "method",
|
|
7018
|
+
"name": "toggleExtended",
|
|
7019
|
+
"parameters": [
|
|
7020
|
+
{
|
|
7021
|
+
"name": "component",
|
|
7022
|
+
"type": {
|
|
7023
|
+
"text": "Component"
|
|
7024
|
+
}
|
|
7025
|
+
}
|
|
7026
|
+
]
|
|
7027
|
+
},
|
|
7028
|
+
{
|
|
7029
|
+
"kind": "method",
|
|
7030
|
+
"name": "toggleHidden",
|
|
7031
|
+
"parameters": [
|
|
7032
|
+
{
|
|
7033
|
+
"name": "component",
|
|
7034
|
+
"type": {
|
|
7035
|
+
"text": "Component"
|
|
7036
|
+
}
|
|
7037
|
+
}
|
|
7038
|
+
]
|
|
7039
|
+
},
|
|
7040
|
+
{
|
|
7041
|
+
"kind": "method",
|
|
7042
|
+
"name": "selectComponent",
|
|
7043
|
+
"parameters": [
|
|
7044
|
+
{
|
|
7045
|
+
"name": "component",
|
|
7046
|
+
"type": {
|
|
7047
|
+
"text": "Component"
|
|
7048
|
+
}
|
|
7049
|
+
},
|
|
7050
|
+
{
|
|
7051
|
+
"name": "append",
|
|
7052
|
+
"default": "false",
|
|
7053
|
+
"type": {
|
|
7054
|
+
"text": "boolean"
|
|
7055
|
+
}
|
|
7056
|
+
}
|
|
7057
|
+
]
|
|
7058
|
+
},
|
|
7059
|
+
{
|
|
7060
|
+
"kind": "method",
|
|
7061
|
+
"name": "shouldBeShown",
|
|
7062
|
+
"return": {
|
|
7063
|
+
"type": {
|
|
7064
|
+
"text": "boolean"
|
|
7065
|
+
}
|
|
7066
|
+
},
|
|
7067
|
+
"parameters": [
|
|
7068
|
+
{
|
|
7069
|
+
"name": "component",
|
|
7070
|
+
"type": {
|
|
7071
|
+
"text": "Component"
|
|
7072
|
+
}
|
|
7073
|
+
},
|
|
7074
|
+
{
|
|
7075
|
+
"name": "counting",
|
|
7076
|
+
"default": "false",
|
|
7077
|
+
"type": {
|
|
7078
|
+
"text": "boolean"
|
|
7079
|
+
}
|
|
7080
|
+
}
|
|
7081
|
+
]
|
|
7082
|
+
},
|
|
7083
|
+
{
|
|
7084
|
+
"kind": "method",
|
|
7085
|
+
"name": "renderComponent",
|
|
7086
|
+
"return": {
|
|
7087
|
+
"type": {
|
|
7088
|
+
"text": "TemplateResult"
|
|
7089
|
+
}
|
|
7090
|
+
},
|
|
7061
7091
|
"parameters": [
|
|
7062
7092
|
{
|
|
7063
|
-
"name": "
|
|
7093
|
+
"name": "component",
|
|
7064
7094
|
"type": {
|
|
7065
|
-
"text": "
|
|
7095
|
+
"text": "Component"
|
|
7096
|
+
}
|
|
7097
|
+
},
|
|
7098
|
+
{
|
|
7099
|
+
"name": "depth",
|
|
7100
|
+
"type": {
|
|
7101
|
+
"text": "number"
|
|
7066
7102
|
}
|
|
7067
7103
|
}
|
|
7068
7104
|
]
|
|
7069
7105
|
}
|
|
7070
7106
|
],
|
|
7071
|
-
"events": [
|
|
7072
|
-
{
|
|
7073
|
-
"name": "change",
|
|
7074
|
-
"type": {
|
|
7075
|
-
"text": "CustomEvent"
|
|
7076
|
-
}
|
|
7077
|
-
}
|
|
7078
|
-
],
|
|
7079
7107
|
"attributes": [
|
|
7080
7108
|
{
|
|
7081
|
-
"name": "
|
|
7109
|
+
"name": "scene",
|
|
7082
7110
|
"type": {
|
|
7083
|
-
"text": "
|
|
7111
|
+
"text": "Scene | undefined"
|
|
7084
7112
|
},
|
|
7085
|
-
"fieldName": "
|
|
7113
|
+
"fieldName": "scene"
|
|
7086
7114
|
}
|
|
7087
7115
|
],
|
|
7088
7116
|
"superclass": {
|
|
@@ -7095,38 +7123,10 @@
|
|
|
7095
7123
|
"exports": [
|
|
7096
7124
|
{
|
|
7097
7125
|
"kind": "js",
|
|
7098
|
-
"name": "
|
|
7099
|
-
"declaration": {
|
|
7100
|
-
"name": "PropertyShadow",
|
|
7101
|
-
"module": "src/modeller/property-sidebar/effects/property-shadow.ts"
|
|
7102
|
-
}
|
|
7103
|
-
}
|
|
7104
|
-
]
|
|
7105
|
-
},
|
|
7106
|
-
{
|
|
7107
|
-
"kind": "javascript-module",
|
|
7108
|
-
"path": "src/modeller/property-sidebar/effects/value-converter.ts",
|
|
7109
|
-
"declarations": [
|
|
7110
|
-
{
|
|
7111
|
-
"kind": "function",
|
|
7112
|
-
"name": "convert",
|
|
7113
|
-
"parameters": [
|
|
7114
|
-
{
|
|
7115
|
-
"name": "element",
|
|
7116
|
-
"type": {
|
|
7117
|
-
"text": "any"
|
|
7118
|
-
}
|
|
7119
|
-
}
|
|
7120
|
-
]
|
|
7121
|
-
}
|
|
7122
|
-
],
|
|
7123
|
-
"exports": [
|
|
7124
|
-
{
|
|
7125
|
-
"kind": "js",
|
|
7126
|
-
"name": "convert",
|
|
7126
|
+
"name": "SceneInspector",
|
|
7127
7127
|
"declaration": {
|
|
7128
|
-
"name": "
|
|
7129
|
-
"module": "src/modeller/property-sidebar/
|
|
7128
|
+
"name": "SceneInspector",
|
|
7129
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
7130
7130
|
}
|
|
7131
7131
|
}
|
|
7132
7132
|
]
|
|
@@ -7233,190 +7233,23 @@
|
|
|
7233
7233
|
"parameters": [
|
|
7234
7234
|
{
|
|
7235
7235
|
"name": "selected",
|
|
7236
|
-
"type": {
|
|
7237
|
-
"text": "Component[]"
|
|
7238
|
-
}
|
|
7239
|
-
}
|
|
7240
|
-
]
|
|
7241
|
-
},
|
|
7242
|
-
{
|
|
7243
|
-
"kind": "method",
|
|
7244
|
-
"name": "_isClassIdentifiable",
|
|
7245
|
-
"parameters": [
|
|
7246
|
-
{
|
|
7247
|
-
"name": "selected",
|
|
7248
|
-
"type": {
|
|
7249
|
-
"text": "Component[]"
|
|
7250
|
-
}
|
|
7251
|
-
}
|
|
7252
|
-
]
|
|
7253
|
-
},
|
|
7254
|
-
{
|
|
7255
|
-
"kind": "method",
|
|
7256
|
-
"name": "_isLine",
|
|
7257
|
-
"parameters": [
|
|
7258
|
-
{
|
|
7259
|
-
"name": "selected",
|
|
7260
|
-
"type": {
|
|
7261
|
-
"text": "Component[]"
|
|
7262
|
-
}
|
|
7263
|
-
}
|
|
7264
|
-
]
|
|
7265
|
-
},
|
|
7266
|
-
{
|
|
7267
|
-
"kind": "method",
|
|
7268
|
-
"name": "_is3dish",
|
|
7269
|
-
"parameters": [
|
|
7270
|
-
{
|
|
7271
|
-
"name": "selected",
|
|
7272
|
-
"type": {
|
|
7273
|
-
"text": "Component[]"
|
|
7274
|
-
}
|
|
7275
|
-
}
|
|
7276
|
-
]
|
|
7277
|
-
},
|
|
7278
|
-
{
|
|
7279
|
-
"kind": "method",
|
|
7280
|
-
"name": "_getValueFromEventTarget",
|
|
7281
|
-
"parameters": [
|
|
7282
|
-
{
|
|
7283
|
-
"name": "element",
|
|
7284
|
-
"type": {
|
|
7285
|
-
"text": "HTMLElement"
|
|
7286
|
-
}
|
|
7287
|
-
}
|
|
7288
|
-
],
|
|
7289
|
-
"inheritedFrom": {
|
|
7290
|
-
"name": "AbstractProperty",
|
|
7291
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7292
|
-
}
|
|
7293
|
-
},
|
|
7294
|
-
{
|
|
7295
|
-
"kind": "method",
|
|
7296
|
-
"name": "_onAfterValueChange",
|
|
7297
|
-
"parameters": [
|
|
7298
|
-
{
|
|
7299
|
-
"name": "key",
|
|
7300
|
-
"type": {
|
|
7301
|
-
"text": "string"
|
|
7302
|
-
}
|
|
7303
|
-
},
|
|
7304
|
-
{
|
|
7305
|
-
"name": "value",
|
|
7306
|
-
"type": {
|
|
7307
|
-
"text": "any"
|
|
7308
|
-
}
|
|
7309
|
-
}
|
|
7310
|
-
],
|
|
7311
|
-
"inheritedFrom": {
|
|
7312
|
-
"name": "AbstractProperty",
|
|
7313
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7314
|
-
}
|
|
7315
|
-
}
|
|
7316
|
-
],
|
|
7317
|
-
"events": [
|
|
7318
|
-
{
|
|
7319
|
-
"name": "bounds-change",
|
|
7320
|
-
"type": {
|
|
7321
|
-
"text": "CustomEvent"
|
|
7322
|
-
}
|
|
7323
|
-
},
|
|
7324
|
-
{
|
|
7325
|
-
"name": "property-change",
|
|
7326
|
-
"type": {
|
|
7327
|
-
"text": "CustomEvent"
|
|
7328
|
-
},
|
|
7329
|
-
"inheritedFrom": {
|
|
7330
|
-
"name": "AbstractProperty",
|
|
7331
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7332
|
-
}
|
|
7333
|
-
}
|
|
7334
|
-
],
|
|
7335
|
-
"attributes": [
|
|
7336
|
-
{
|
|
7337
|
-
"name": "value",
|
|
7338
|
-
"type": {
|
|
7339
|
-
"text": "Properties | undefined"
|
|
7340
|
-
},
|
|
7341
|
-
"fieldName": "value"
|
|
7342
|
-
},
|
|
7343
|
-
{
|
|
7344
|
-
"name": "bounds",
|
|
7345
|
-
"type": {
|
|
7346
|
-
"text": "BOUNDS | null"
|
|
7347
|
-
},
|
|
7348
|
-
"default": "null",
|
|
7349
|
-
"fieldName": "bounds"
|
|
7350
|
-
},
|
|
7351
|
-
{
|
|
7352
|
-
"name": "selected",
|
|
7353
|
-
"type": {
|
|
7354
|
-
"text": "Component[]"
|
|
7355
|
-
},
|
|
7356
|
-
"default": "[]",
|
|
7357
|
-
"fieldName": "selected"
|
|
7358
|
-
}
|
|
7359
|
-
],
|
|
7360
|
-
"superclass": {
|
|
7361
|
-
"name": "AbstractProperty",
|
|
7362
|
-
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
7363
|
-
}
|
|
7364
|
-
}
|
|
7365
|
-
],
|
|
7366
|
-
"exports": [
|
|
7367
|
-
{
|
|
7368
|
-
"kind": "js",
|
|
7369
|
-
"name": "PropertyShapes",
|
|
7370
|
-
"declaration": {
|
|
7371
|
-
"name": "PropertyShapes",
|
|
7372
|
-
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
7373
|
-
}
|
|
7374
|
-
}
|
|
7375
|
-
]
|
|
7376
|
-
},
|
|
7377
|
-
{
|
|
7378
|
-
"kind": "javascript-module",
|
|
7379
|
-
"path": "src/modeller/property-sidebar/styles/styles.ts",
|
|
7380
|
-
"declarations": [
|
|
7381
|
-
{
|
|
7382
|
-
"kind": "class",
|
|
7383
|
-
"description": "",
|
|
7384
|
-
"name": "PropertyStyles",
|
|
7385
|
-
"members": [
|
|
7386
|
-
{
|
|
7387
|
-
"kind": "field",
|
|
7388
|
-
"name": "value",
|
|
7389
|
-
"type": {
|
|
7390
|
-
"text": "any"
|
|
7391
|
-
},
|
|
7392
|
-
"default": "{}",
|
|
7393
|
-
"attribute": "value"
|
|
7394
|
-
},
|
|
7395
|
-
{
|
|
7396
|
-
"kind": "field",
|
|
7397
|
-
"name": "selected",
|
|
7398
|
-
"type": {
|
|
7399
|
-
"text": "Component[]"
|
|
7400
|
-
},
|
|
7401
|
-
"default": "[]",
|
|
7402
|
-
"attribute": "selected"
|
|
7403
|
-
},
|
|
7404
|
-
{
|
|
7405
|
-
"kind": "field",
|
|
7406
|
-
"name": "fonts",
|
|
7407
|
-
"type": {
|
|
7408
|
-
"text": "any[]"
|
|
7409
|
-
},
|
|
7410
|
-
"default": "[]",
|
|
7411
|
-
"attribute": "fonts"
|
|
7236
|
+
"type": {
|
|
7237
|
+
"text": "Component[]"
|
|
7238
|
+
}
|
|
7239
|
+
}
|
|
7240
|
+
]
|
|
7412
7241
|
},
|
|
7413
7242
|
{
|
|
7414
|
-
"kind": "
|
|
7415
|
-
"name": "
|
|
7416
|
-
"
|
|
7417
|
-
|
|
7418
|
-
|
|
7419
|
-
|
|
7243
|
+
"kind": "method",
|
|
7244
|
+
"name": "_isClassIdentifiable",
|
|
7245
|
+
"parameters": [
|
|
7246
|
+
{
|
|
7247
|
+
"name": "selected",
|
|
7248
|
+
"type": {
|
|
7249
|
+
"text": "Component[]"
|
|
7250
|
+
}
|
|
7251
|
+
}
|
|
7252
|
+
]
|
|
7420
7253
|
},
|
|
7421
7254
|
{
|
|
7422
7255
|
"kind": "method",
|
|
@@ -7432,19 +7265,15 @@
|
|
|
7432
7265
|
},
|
|
7433
7266
|
{
|
|
7434
7267
|
"kind": "method",
|
|
7435
|
-
"name": "
|
|
7268
|
+
"name": "_is3dish",
|
|
7436
7269
|
"parameters": [
|
|
7437
7270
|
{
|
|
7438
|
-
"name": "
|
|
7271
|
+
"name": "selected",
|
|
7439
7272
|
"type": {
|
|
7440
|
-
"text": "
|
|
7273
|
+
"text": "Component[]"
|
|
7441
7274
|
}
|
|
7442
7275
|
}
|
|
7443
|
-
]
|
|
7444
|
-
"inheritedFrom": {
|
|
7445
|
-
"name": "AbstractProperty",
|
|
7446
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7447
|
-
}
|
|
7276
|
+
]
|
|
7448
7277
|
},
|
|
7449
7278
|
{
|
|
7450
7279
|
"kind": "method",
|
|
@@ -7485,57 +7314,62 @@
|
|
|
7485
7314
|
}
|
|
7486
7315
|
}
|
|
7487
7316
|
],
|
|
7317
|
+
"events": [
|
|
7318
|
+
{
|
|
7319
|
+
"name": "bounds-change",
|
|
7320
|
+
"type": {
|
|
7321
|
+
"text": "CustomEvent"
|
|
7322
|
+
}
|
|
7323
|
+
},
|
|
7324
|
+
{
|
|
7325
|
+
"name": "property-change",
|
|
7326
|
+
"type": {
|
|
7327
|
+
"text": "CustomEvent"
|
|
7328
|
+
},
|
|
7329
|
+
"inheritedFrom": {
|
|
7330
|
+
"name": "AbstractProperty",
|
|
7331
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7332
|
+
}
|
|
7333
|
+
}
|
|
7334
|
+
],
|
|
7488
7335
|
"attributes": [
|
|
7489
7336
|
{
|
|
7490
7337
|
"name": "value",
|
|
7491
7338
|
"type": {
|
|
7492
|
-
"text": "
|
|
7339
|
+
"text": "Properties | undefined"
|
|
7493
7340
|
},
|
|
7494
|
-
"default": "{}",
|
|
7495
7341
|
"fieldName": "value"
|
|
7496
7342
|
},
|
|
7497
7343
|
{
|
|
7498
|
-
"name": "
|
|
7344
|
+
"name": "bounds",
|
|
7499
7345
|
"type": {
|
|
7500
|
-
"text": "
|
|
7346
|
+
"text": "BOUNDS | null"
|
|
7501
7347
|
},
|
|
7502
|
-
"default": "
|
|
7503
|
-
"fieldName": "
|
|
7348
|
+
"default": "null",
|
|
7349
|
+
"fieldName": "bounds"
|
|
7504
7350
|
},
|
|
7505
7351
|
{
|
|
7506
|
-
"name": "
|
|
7352
|
+
"name": "selected",
|
|
7507
7353
|
"type": {
|
|
7508
|
-
"text": "
|
|
7354
|
+
"text": "Component[]"
|
|
7509
7355
|
},
|
|
7510
7356
|
"default": "[]",
|
|
7511
|
-
"fieldName": "
|
|
7357
|
+
"fieldName": "selected"
|
|
7512
7358
|
}
|
|
7513
7359
|
],
|
|
7514
7360
|
"superclass": {
|
|
7515
7361
|
"name": "AbstractProperty",
|
|
7516
|
-
"module": "/src/modeller/property-sidebar/abstract-property
|
|
7517
|
-
}
|
|
7518
|
-
"events": [
|
|
7519
|
-
{
|
|
7520
|
-
"name": "property-change",
|
|
7521
|
-
"type": {
|
|
7522
|
-
"text": "CustomEvent"
|
|
7523
|
-
},
|
|
7524
|
-
"inheritedFrom": {
|
|
7525
|
-
"name": "AbstractProperty",
|
|
7526
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7527
|
-
}
|
|
7528
|
-
}
|
|
7529
|
-
]
|
|
7362
|
+
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
7363
|
+
}
|
|
7530
7364
|
}
|
|
7531
7365
|
],
|
|
7532
7366
|
"exports": [
|
|
7533
7367
|
{
|
|
7534
7368
|
"kind": "js",
|
|
7535
|
-
"name": "
|
|
7369
|
+
"name": "PropertyShapes",
|
|
7536
7370
|
"declaration": {
|
|
7537
|
-
"name": "
|
|
7538
|
-
"module": "src/modeller/property-sidebar/
|
|
7371
|
+
"name": "PropertyShapes",
|
|
7372
|
+
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
7539
7373
|
}
|
|
7540
7374
|
}
|
|
7541
7375
|
]
|
|
@@ -7886,6 +7720,172 @@
|
|
|
7886
7720
|
}
|
|
7887
7721
|
}
|
|
7888
7722
|
]
|
|
7723
|
+
},
|
|
7724
|
+
{
|
|
7725
|
+
"kind": "javascript-module",
|
|
7726
|
+
"path": "src/modeller/property-sidebar/styles/styles.ts",
|
|
7727
|
+
"declarations": [
|
|
7728
|
+
{
|
|
7729
|
+
"kind": "class",
|
|
7730
|
+
"description": "",
|
|
7731
|
+
"name": "PropertyStyles",
|
|
7732
|
+
"members": [
|
|
7733
|
+
{
|
|
7734
|
+
"kind": "field",
|
|
7735
|
+
"name": "value",
|
|
7736
|
+
"type": {
|
|
7737
|
+
"text": "any"
|
|
7738
|
+
},
|
|
7739
|
+
"default": "{}",
|
|
7740
|
+
"attribute": "value"
|
|
7741
|
+
},
|
|
7742
|
+
{
|
|
7743
|
+
"kind": "field",
|
|
7744
|
+
"name": "selected",
|
|
7745
|
+
"type": {
|
|
7746
|
+
"text": "Component[]"
|
|
7747
|
+
},
|
|
7748
|
+
"default": "[]",
|
|
7749
|
+
"attribute": "selected"
|
|
7750
|
+
},
|
|
7751
|
+
{
|
|
7752
|
+
"kind": "field",
|
|
7753
|
+
"name": "fonts",
|
|
7754
|
+
"type": {
|
|
7755
|
+
"text": "any[]"
|
|
7756
|
+
},
|
|
7757
|
+
"default": "[]",
|
|
7758
|
+
"attribute": "fonts"
|
|
7759
|
+
},
|
|
7760
|
+
{
|
|
7761
|
+
"kind": "field",
|
|
7762
|
+
"name": "fontAvailable",
|
|
7763
|
+
"type": {
|
|
7764
|
+
"text": "boolean"
|
|
7765
|
+
},
|
|
7766
|
+
"default": "false"
|
|
7767
|
+
},
|
|
7768
|
+
{
|
|
7769
|
+
"kind": "method",
|
|
7770
|
+
"name": "_isLine",
|
|
7771
|
+
"parameters": [
|
|
7772
|
+
{
|
|
7773
|
+
"name": "selected",
|
|
7774
|
+
"type": {
|
|
7775
|
+
"text": "Component[]"
|
|
7776
|
+
}
|
|
7777
|
+
}
|
|
7778
|
+
]
|
|
7779
|
+
},
|
|
7780
|
+
{
|
|
7781
|
+
"kind": "method",
|
|
7782
|
+
"name": "_onValueChange",
|
|
7783
|
+
"parameters": [
|
|
7784
|
+
{
|
|
7785
|
+
"name": "e",
|
|
7786
|
+
"type": {
|
|
7787
|
+
"text": "Event"
|
|
7788
|
+
}
|
|
7789
|
+
}
|
|
7790
|
+
],
|
|
7791
|
+
"inheritedFrom": {
|
|
7792
|
+
"name": "AbstractProperty",
|
|
7793
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7794
|
+
}
|
|
7795
|
+
},
|
|
7796
|
+
{
|
|
7797
|
+
"kind": "method",
|
|
7798
|
+
"name": "_getValueFromEventTarget",
|
|
7799
|
+
"parameters": [
|
|
7800
|
+
{
|
|
7801
|
+
"name": "element",
|
|
7802
|
+
"type": {
|
|
7803
|
+
"text": "HTMLElement"
|
|
7804
|
+
}
|
|
7805
|
+
}
|
|
7806
|
+
],
|
|
7807
|
+
"inheritedFrom": {
|
|
7808
|
+
"name": "AbstractProperty",
|
|
7809
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7810
|
+
}
|
|
7811
|
+
},
|
|
7812
|
+
{
|
|
7813
|
+
"kind": "method",
|
|
7814
|
+
"name": "_onAfterValueChange",
|
|
7815
|
+
"parameters": [
|
|
7816
|
+
{
|
|
7817
|
+
"name": "key",
|
|
7818
|
+
"type": {
|
|
7819
|
+
"text": "string"
|
|
7820
|
+
}
|
|
7821
|
+
},
|
|
7822
|
+
{
|
|
7823
|
+
"name": "value",
|
|
7824
|
+
"type": {
|
|
7825
|
+
"text": "any"
|
|
7826
|
+
}
|
|
7827
|
+
}
|
|
7828
|
+
],
|
|
7829
|
+
"inheritedFrom": {
|
|
7830
|
+
"name": "AbstractProperty",
|
|
7831
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7832
|
+
}
|
|
7833
|
+
}
|
|
7834
|
+
],
|
|
7835
|
+
"attributes": [
|
|
7836
|
+
{
|
|
7837
|
+
"name": "value",
|
|
7838
|
+
"type": {
|
|
7839
|
+
"text": "any"
|
|
7840
|
+
},
|
|
7841
|
+
"default": "{}",
|
|
7842
|
+
"fieldName": "value"
|
|
7843
|
+
},
|
|
7844
|
+
{
|
|
7845
|
+
"name": "selected",
|
|
7846
|
+
"type": {
|
|
7847
|
+
"text": "Component[]"
|
|
7848
|
+
},
|
|
7849
|
+
"default": "[]",
|
|
7850
|
+
"fieldName": "selected"
|
|
7851
|
+
},
|
|
7852
|
+
{
|
|
7853
|
+
"name": "fonts",
|
|
7854
|
+
"type": {
|
|
7855
|
+
"text": "any[]"
|
|
7856
|
+
},
|
|
7857
|
+
"default": "[]",
|
|
7858
|
+
"fieldName": "fonts"
|
|
7859
|
+
}
|
|
7860
|
+
],
|
|
7861
|
+
"superclass": {
|
|
7862
|
+
"name": "AbstractProperty",
|
|
7863
|
+
"module": "/src/modeller/property-sidebar/abstract-property.js"
|
|
7864
|
+
},
|
|
7865
|
+
"events": [
|
|
7866
|
+
{
|
|
7867
|
+
"name": "property-change",
|
|
7868
|
+
"type": {
|
|
7869
|
+
"text": "CustomEvent"
|
|
7870
|
+
},
|
|
7871
|
+
"inheritedFrom": {
|
|
7872
|
+
"name": "AbstractProperty",
|
|
7873
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7874
|
+
}
|
|
7875
|
+
}
|
|
7876
|
+
]
|
|
7877
|
+
}
|
|
7878
|
+
],
|
|
7879
|
+
"exports": [
|
|
7880
|
+
{
|
|
7881
|
+
"kind": "js",
|
|
7882
|
+
"name": "PropertyStyles",
|
|
7883
|
+
"declaration": {
|
|
7884
|
+
"name": "PropertyStyles",
|
|
7885
|
+
"module": "src/modeller/property-sidebar/styles/styles.ts"
|
|
7886
|
+
}
|
|
7887
|
+
}
|
|
7888
|
+
]
|
|
7889
7889
|
}
|
|
7890
7890
|
]
|
|
7891
7891
|
}
|