@fmsim/board 1.0.65 → 1.0.69
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 +646 -637
- package/dist/src/modeller/property-sidebar/effects/property-event-tap.js +2 -0
- package/dist/src/modeller/property-sidebar/effects/property-event-tap.js.map +1 -1
- package/dist/src/ox-board-viewer.d.ts +2 -0
- package/dist/src/ox-board-viewer.js +14 -0
- package/dist/src/ox-board-viewer.js.map +1 -1
- package/dist/src/selector/ox-board-selector.d.ts +0 -2
- package/dist/src/selector/ox-board-selector.js +5 -26
- package/dist/src/selector/ox-board-selector.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -2,91 +2,6 @@
|
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"readme": "",
|
|
4
4
|
"modules": [
|
|
5
|
-
{
|
|
6
|
-
"kind": "javascript-module",
|
|
7
|
-
"path": "stories/restful-attachment-selector.stories.ts",
|
|
8
|
-
"declarations": [
|
|
9
|
-
{
|
|
10
|
-
"kind": "variable",
|
|
11
|
-
"name": "meta",
|
|
12
|
-
"default": "{ title: 'Components/RestfulAttachmentSelector', component: 'restful-attachment-selector', argTypes: { category: { control: 'select', options: ['', 'audio', 'video', 'image', 'text', 'application'], description: '첨부파일 카테고리' }, creatable: { control: 'boolean', description: '파일 업로드 가능 여부' }, userName: { control: 'text', description: '사용자 이름' } }, parameters: { layout: 'centered' } } satisfies Meta"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"kind": "variable",
|
|
16
|
-
"name": "Default",
|
|
17
|
-
"type": {
|
|
18
|
-
"text": "Story"
|
|
19
|
-
},
|
|
20
|
-
"default": "{ render: args => html` <restful-attachment-selector .category=${args.category} .creatable=${args.creatable} .userName=${args.userName} style=\"width: 800px; height: 600px;\" ></restful-attachment-selector> `, args: { category: '', creatable: true, userName: 'testUser' } }"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"kind": "variable",
|
|
24
|
-
"name": "WithCategory",
|
|
25
|
-
"type": {
|
|
26
|
-
"text": "Story"
|
|
27
|
-
},
|
|
28
|
-
"default": "{ ...Default, args: { ...Default.args, category: 'document' } }"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"kind": "variable",
|
|
32
|
-
"name": "ReadOnly",
|
|
33
|
-
"type": {
|
|
34
|
-
"text": "Story"
|
|
35
|
-
},
|
|
36
|
-
"default": "{ ...Default, args: { ...Default.args, creatable: false } }"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"kind": "variable",
|
|
40
|
-
"name": "WithTestData",
|
|
41
|
-
"type": {
|
|
42
|
-
"text": "Story"
|
|
43
|
-
},
|
|
44
|
-
"default": "{ ...Default, args: { ...Default.args, category: 'document' }, play: async ({ canvasElement }) => { const selector = canvasElement.querySelector('restful-attachment-selector') as RestfulAttachmentSelector if (selector) { // 테스트 데이터 주입 selector.attachments = [ { id: 'test-1', name: 'test1.txt', description: 'Test file 1', mimetype: 'text/plain', encoding: '7bit', category: 'document', path: 'test1.txt', bulk: '27', createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), creatorId: 'testUser', updaterId: 'testUser', fullpath: 'http://localhost:16060/mcs/lv/images/test1.txt', download: 'http://localhost:16060/mcs/lv/downloadFile/test1.txt' }, { id: 'test-2', name: 'test2.jpg', description: 'Test image', mimetype: 'image/jpeg', encoding: '7bit', category: 'image', path: 'test2.jpg', bulk: '1024', createdAt: new Date().toISOString(), updatedAt: new Date().toISOString(), creatorId: 'testUser', updaterId: 'testUser', fullpath: 'http://localhost:16060/mcs/lv/images/test2.jpg', download: 'http://localhost:16060/mcs/lv/downloadFile/test2.jpg' } ] } } }"
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
"exports": [
|
|
48
|
-
{
|
|
49
|
-
"kind": "js",
|
|
50
|
-
"name": "default",
|
|
51
|
-
"declaration": {
|
|
52
|
-
"name": "meta",
|
|
53
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"kind": "js",
|
|
58
|
-
"name": "Default",
|
|
59
|
-
"declaration": {
|
|
60
|
-
"name": "Default",
|
|
61
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"kind": "js",
|
|
66
|
-
"name": "WithCategory",
|
|
67
|
-
"declaration": {
|
|
68
|
-
"name": "WithCategory",
|
|
69
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"kind": "js",
|
|
74
|
-
"name": "ReadOnly",
|
|
75
|
-
"declaration": {
|
|
76
|
-
"name": "ReadOnly",
|
|
77
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"kind": "js",
|
|
82
|
-
"name": "WithTestData",
|
|
83
|
-
"declaration": {
|
|
84
|
-
"name": "WithTestData",
|
|
85
|
-
"module": "stories/restful-attachment-selector.stories.ts"
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
]
|
|
89
|
-
},
|
|
90
5
|
{
|
|
91
6
|
"kind": "javascript-module",
|
|
92
7
|
"path": "src/index.ts",
|
|
@@ -1365,6 +1280,30 @@
|
|
|
1365
1280
|
"kind": "method",
|
|
1366
1281
|
"name": "onLegendToggle"
|
|
1367
1282
|
},
|
|
1283
|
+
{
|
|
1284
|
+
"kind": "method",
|
|
1285
|
+
"name": "onPopup",
|
|
1286
|
+
"parameters": [
|
|
1287
|
+
{
|
|
1288
|
+
"name": "component",
|
|
1289
|
+
"type": {
|
|
1290
|
+
"text": "Component"
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
]
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
"kind": "method",
|
|
1297
|
+
"name": "onModalPopup",
|
|
1298
|
+
"parameters": [
|
|
1299
|
+
{
|
|
1300
|
+
"name": "component",
|
|
1301
|
+
"type": {
|
|
1302
|
+
"text": "Component"
|
|
1303
|
+
}
|
|
1304
|
+
}
|
|
1305
|
+
]
|
|
1306
|
+
},
|
|
1368
1307
|
{
|
|
1369
1308
|
"kind": "method",
|
|
1370
1309
|
"name": "getSceneData"
|
|
@@ -1741,6 +1680,91 @@
|
|
|
1741
1680
|
"declarations": [],
|
|
1742
1681
|
"exports": []
|
|
1743
1682
|
},
|
|
1683
|
+
{
|
|
1684
|
+
"kind": "javascript-module",
|
|
1685
|
+
"path": "stories/restful-attachment-selector.stories.ts",
|
|
1686
|
+
"declarations": [
|
|
1687
|
+
{
|
|
1688
|
+
"kind": "variable",
|
|
1689
|
+
"name": "meta",
|
|
1690
|
+
"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"
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"kind": "variable",
|
|
1694
|
+
"name": "Default",
|
|
1695
|
+
"type": {
|
|
1696
|
+
"text": "Story"
|
|
1697
|
+
},
|
|
1698
|
+
"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' } }"
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"kind": "variable",
|
|
1702
|
+
"name": "WithCategory",
|
|
1703
|
+
"type": {
|
|
1704
|
+
"text": "Story"
|
|
1705
|
+
},
|
|
1706
|
+
"default": "{ ...Default, args: { ...Default.args, category: 'document' } }"
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"kind": "variable",
|
|
1710
|
+
"name": "ReadOnly",
|
|
1711
|
+
"type": {
|
|
1712
|
+
"text": "Story"
|
|
1713
|
+
},
|
|
1714
|
+
"default": "{ ...Default, args: { ...Default.args, creatable: false } }"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"kind": "variable",
|
|
1718
|
+
"name": "WithTestData",
|
|
1719
|
+
"type": {
|
|
1720
|
+
"text": "Story"
|
|
1721
|
+
},
|
|
1722
|
+
"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' } ] } } }"
|
|
1723
|
+
}
|
|
1724
|
+
],
|
|
1725
|
+
"exports": [
|
|
1726
|
+
{
|
|
1727
|
+
"kind": "js",
|
|
1728
|
+
"name": "default",
|
|
1729
|
+
"declaration": {
|
|
1730
|
+
"name": "meta",
|
|
1731
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1732
|
+
}
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"kind": "js",
|
|
1736
|
+
"name": "Default",
|
|
1737
|
+
"declaration": {
|
|
1738
|
+
"name": "Default",
|
|
1739
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1740
|
+
}
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"kind": "js",
|
|
1744
|
+
"name": "WithCategory",
|
|
1745
|
+
"declaration": {
|
|
1746
|
+
"name": "WithCategory",
|
|
1747
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"kind": "js",
|
|
1752
|
+
"name": "ReadOnly",
|
|
1753
|
+
"declaration": {
|
|
1754
|
+
"name": "ReadOnly",
|
|
1755
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1756
|
+
}
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
"kind": "js",
|
|
1760
|
+
"name": "WithTestData",
|
|
1761
|
+
"declaration": {
|
|
1762
|
+
"name": "WithTestData",
|
|
1763
|
+
"module": "stories/restful-attachment-selector.stories.ts"
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1766
|
+
]
|
|
1767
|
+
},
|
|
1744
1768
|
{
|
|
1745
1769
|
"kind": "javascript-module",
|
|
1746
1770
|
"path": "src/component/etc.ts",
|
|
@@ -3988,14 +4012,6 @@
|
|
|
3988
4012
|
},
|
|
3989
4013
|
"attribute": "group"
|
|
3990
4014
|
},
|
|
3991
|
-
{
|
|
3992
|
-
"kind": "field",
|
|
3993
|
-
"name": "inherited",
|
|
3994
|
-
"type": {
|
|
3995
|
-
"text": "InheritedValueType | undefined"
|
|
3996
|
-
},
|
|
3997
|
-
"attribute": "inherited"
|
|
3998
|
-
},
|
|
3999
4015
|
{
|
|
4000
4016
|
"kind": "field",
|
|
4001
4017
|
"name": "creatable",
|
|
@@ -4154,13 +4170,6 @@
|
|
|
4154
4170
|
},
|
|
4155
4171
|
"fieldName": "group"
|
|
4156
4172
|
},
|
|
4157
|
-
{
|
|
4158
|
-
"name": "inherited",
|
|
4159
|
-
"type": {
|
|
4160
|
-
"text": "InheritedValueType | undefined"
|
|
4161
|
-
},
|
|
4162
|
-
"fieldName": "inherited"
|
|
4163
|
-
},
|
|
4164
4173
|
{
|
|
4165
4174
|
"name": "creatable",
|
|
4166
4175
|
"type": {
|
|
@@ -6293,304 +6302,64 @@
|
|
|
6293
6302
|
},
|
|
6294
6303
|
{
|
|
6295
6304
|
"kind": "javascript-module",
|
|
6296
|
-
"path": "src/modeller/property-sidebar/
|
|
6305
|
+
"path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
|
|
6306
|
+
"declarations": [
|
|
6307
|
+
{
|
|
6308
|
+
"kind": "variable",
|
|
6309
|
+
"name": "EffectsSharedStyle",
|
|
6310
|
+
"default": "css` :host { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } * { align-self: stretch; } label { grid-column: span 3; text-align: right; text-transform: capitalize; align-self: center; } input, select, ox-input-angle, ox-input-color, [custom-editor] { grid-column: span 7; } input, select, ox-input-angle input, ox-input-color input, [custom-editor] input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } input[type='checkbox'] { grid-column: 4 / 5; align-self: center; } label.checkbox-label { grid-column: span 6; text-align: left; } [fullwidth] { grid-column: 1 / -1; } `"
|
|
6311
|
+
}
|
|
6312
|
+
],
|
|
6313
|
+
"exports": [
|
|
6314
|
+
{
|
|
6315
|
+
"kind": "js",
|
|
6316
|
+
"name": "EffectsSharedStyle",
|
|
6317
|
+
"declaration": {
|
|
6318
|
+
"name": "EffectsSharedStyle",
|
|
6319
|
+
"module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
|
|
6320
|
+
}
|
|
6321
|
+
}
|
|
6322
|
+
]
|
|
6323
|
+
},
|
|
6324
|
+
{
|
|
6325
|
+
"kind": "javascript-module",
|
|
6326
|
+
"path": "src/modeller/property-sidebar/effects/effects.ts",
|
|
6297
6327
|
"declarations": [
|
|
6298
6328
|
{
|
|
6299
6329
|
"kind": "class",
|
|
6300
6330
|
"description": "",
|
|
6301
|
-
"name": "
|
|
6331
|
+
"name": "PropertyEffects",
|
|
6302
6332
|
"members": [
|
|
6303
6333
|
{
|
|
6304
6334
|
"kind": "field",
|
|
6305
|
-
"name": "
|
|
6335
|
+
"name": "value",
|
|
6306
6336
|
"type": {
|
|
6307
|
-
"text": "
|
|
6337
|
+
"text": "Properties | undefined"
|
|
6308
6338
|
},
|
|
6309
|
-
"attribute": "
|
|
6339
|
+
"attribute": "value"
|
|
6310
6340
|
},
|
|
6311
6341
|
{
|
|
6312
6342
|
"kind": "field",
|
|
6313
|
-
"name": "
|
|
6343
|
+
"name": "scene",
|
|
6314
6344
|
"type": {
|
|
6315
|
-
"text": "
|
|
6345
|
+
"text": "Scene | undefined"
|
|
6316
6346
|
},
|
|
6317
|
-
"
|
|
6318
|
-
"default": "''"
|
|
6347
|
+
"attribute": "scene"
|
|
6319
6348
|
},
|
|
6320
6349
|
{
|
|
6321
6350
|
"kind": "field",
|
|
6322
|
-
"name": "
|
|
6351
|
+
"name": "selected",
|
|
6323
6352
|
"type": {
|
|
6324
|
-
"text": "
|
|
6353
|
+
"text": "Component[]"
|
|
6325
6354
|
},
|
|
6326
|
-
"
|
|
6355
|
+
"default": "[]",
|
|
6356
|
+
"attribute": "selected"
|
|
6327
6357
|
},
|
|
6328
6358
|
{
|
|
6329
6359
|
"kind": "field",
|
|
6330
|
-
"name": "
|
|
6331
|
-
"
|
|
6332
|
-
|
|
6333
|
-
},
|
|
6334
|
-
"privacy": "private",
|
|
6335
|
-
"default": "false"
|
|
6336
|
-
},
|
|
6337
|
-
{
|
|
6338
|
-
"kind": "field",
|
|
6339
|
-
"name": "count",
|
|
6340
|
-
"type": {
|
|
6341
|
-
"text": "number"
|
|
6342
|
-
},
|
|
6343
|
-
"privacy": "private",
|
|
6344
|
-
"default": "-1"
|
|
6345
|
-
},
|
|
6346
|
-
{
|
|
6347
|
-
"kind": "method",
|
|
6348
|
-
"name": "disconnectScene",
|
|
6349
|
-
"parameters": [
|
|
6350
|
-
{
|
|
6351
|
-
"name": "scene",
|
|
6352
|
-
"optional": true,
|
|
6353
|
-
"type": {
|
|
6354
|
-
"text": "Scene"
|
|
6355
|
-
}
|
|
6356
|
-
}
|
|
6357
|
-
]
|
|
6358
|
-
},
|
|
6359
|
-
{
|
|
6360
|
-
"kind": "method",
|
|
6361
|
-
"name": "refresh"
|
|
6362
|
-
},
|
|
6363
|
-
{
|
|
6364
|
-
"kind": "method",
|
|
6365
|
-
"name": "_onclick",
|
|
6366
|
-
"parameters": [
|
|
6367
|
-
{
|
|
6368
|
-
"name": "e",
|
|
6369
|
-
"type": {
|
|
6370
|
-
"text": "MouseEvent"
|
|
6371
|
-
}
|
|
6372
|
-
}
|
|
6373
|
-
]
|
|
6374
|
-
},
|
|
6375
|
-
{
|
|
6376
|
-
"kind": "method",
|
|
6377
|
-
"name": "_ondblclick",
|
|
6378
|
-
"parameters": [
|
|
6379
|
-
{
|
|
6380
|
-
"name": "e",
|
|
6381
|
-
"type": {
|
|
6382
|
-
"text": "MouseEvent"
|
|
6383
|
-
}
|
|
6384
|
-
}
|
|
6385
|
-
]
|
|
6386
|
-
},
|
|
6387
|
-
{
|
|
6388
|
-
"kind": "field",
|
|
6389
|
-
"name": "extendedMap",
|
|
6390
|
-
"readonly": true
|
|
6391
|
-
},
|
|
6392
|
-
{
|
|
6393
|
-
"kind": "method",
|
|
6394
|
-
"name": "getNodeHandleClass",
|
|
6395
|
-
"parameters": [
|
|
6396
|
-
{
|
|
6397
|
-
"name": "component",
|
|
6398
|
-
"type": {
|
|
6399
|
-
"text": "Component"
|
|
6400
|
-
}
|
|
6401
|
-
}
|
|
6402
|
-
]
|
|
6403
|
-
},
|
|
6404
|
-
{
|
|
6405
|
-
"kind": "method",
|
|
6406
|
-
"name": "isExtended",
|
|
6407
|
-
"parameters": [
|
|
6408
|
-
{
|
|
6409
|
-
"name": "component",
|
|
6410
|
-
"type": {
|
|
6411
|
-
"text": "Component"
|
|
6412
|
-
}
|
|
6413
|
-
}
|
|
6414
|
-
]
|
|
6415
|
-
},
|
|
6416
|
-
{
|
|
6417
|
-
"kind": "method",
|
|
6418
|
-
"name": "toggleExtended",
|
|
6419
|
-
"parameters": [
|
|
6420
|
-
{
|
|
6421
|
-
"name": "component",
|
|
6422
|
-
"type": {
|
|
6423
|
-
"text": "Component"
|
|
6424
|
-
}
|
|
6425
|
-
}
|
|
6426
|
-
]
|
|
6427
|
-
},
|
|
6428
|
-
{
|
|
6429
|
-
"kind": "method",
|
|
6430
|
-
"name": "toggleHidden",
|
|
6431
|
-
"parameters": [
|
|
6432
|
-
{
|
|
6433
|
-
"name": "component",
|
|
6434
|
-
"type": {
|
|
6435
|
-
"text": "Component"
|
|
6436
|
-
}
|
|
6437
|
-
}
|
|
6438
|
-
]
|
|
6439
|
-
},
|
|
6440
|
-
{
|
|
6441
|
-
"kind": "method",
|
|
6442
|
-
"name": "selectComponent",
|
|
6443
|
-
"parameters": [
|
|
6444
|
-
{
|
|
6445
|
-
"name": "component",
|
|
6446
|
-
"type": {
|
|
6447
|
-
"text": "Component"
|
|
6448
|
-
}
|
|
6449
|
-
},
|
|
6450
|
-
{
|
|
6451
|
-
"name": "append",
|
|
6452
|
-
"default": "false",
|
|
6453
|
-
"type": {
|
|
6454
|
-
"text": "boolean"
|
|
6455
|
-
}
|
|
6456
|
-
}
|
|
6457
|
-
]
|
|
6458
|
-
},
|
|
6459
|
-
{
|
|
6460
|
-
"kind": "method",
|
|
6461
|
-
"name": "shouldBeShown",
|
|
6462
|
-
"return": {
|
|
6463
|
-
"type": {
|
|
6464
|
-
"text": "boolean"
|
|
6465
|
-
}
|
|
6466
|
-
},
|
|
6467
|
-
"parameters": [
|
|
6468
|
-
{
|
|
6469
|
-
"name": "component",
|
|
6470
|
-
"type": {
|
|
6471
|
-
"text": "Component"
|
|
6472
|
-
}
|
|
6473
|
-
},
|
|
6474
|
-
{
|
|
6475
|
-
"name": "counting",
|
|
6476
|
-
"default": "false",
|
|
6477
|
-
"type": {
|
|
6478
|
-
"text": "boolean"
|
|
6479
|
-
}
|
|
6480
|
-
}
|
|
6481
|
-
]
|
|
6482
|
-
},
|
|
6483
|
-
{
|
|
6484
|
-
"kind": "method",
|
|
6485
|
-
"name": "renderComponent",
|
|
6486
|
-
"return": {
|
|
6487
|
-
"type": {
|
|
6488
|
-
"text": "TemplateResult"
|
|
6489
|
-
}
|
|
6490
|
-
},
|
|
6491
|
-
"parameters": [
|
|
6492
|
-
{
|
|
6493
|
-
"name": "component",
|
|
6494
|
-
"type": {
|
|
6495
|
-
"text": "Component"
|
|
6496
|
-
}
|
|
6497
|
-
},
|
|
6498
|
-
{
|
|
6499
|
-
"name": "depth",
|
|
6500
|
-
"type": {
|
|
6501
|
-
"text": "number"
|
|
6502
|
-
}
|
|
6503
|
-
}
|
|
6504
|
-
]
|
|
6505
|
-
}
|
|
6506
|
-
],
|
|
6507
|
-
"attributes": [
|
|
6508
|
-
{
|
|
6509
|
-
"name": "scene",
|
|
6510
|
-
"type": {
|
|
6511
|
-
"text": "Scene | undefined"
|
|
6512
|
-
},
|
|
6513
|
-
"fieldName": "scene"
|
|
6514
|
-
}
|
|
6515
|
-
],
|
|
6516
|
-
"superclass": {
|
|
6517
|
-
"name": "LitElement",
|
|
6518
|
-
"package": "lit"
|
|
6519
|
-
},
|
|
6520
|
-
"customElement": true
|
|
6521
|
-
}
|
|
6522
|
-
],
|
|
6523
|
-
"exports": [
|
|
6524
|
-
{
|
|
6525
|
-
"kind": "js",
|
|
6526
|
-
"name": "SceneInspector",
|
|
6527
|
-
"declaration": {
|
|
6528
|
-
"name": "SceneInspector",
|
|
6529
|
-
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
6530
|
-
}
|
|
6531
|
-
}
|
|
6532
|
-
]
|
|
6533
|
-
},
|
|
6534
|
-
{
|
|
6535
|
-
"kind": "javascript-module",
|
|
6536
|
-
"path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
|
|
6537
|
-
"declarations": [
|
|
6538
|
-
{
|
|
6539
|
-
"kind": "variable",
|
|
6540
|
-
"name": "EffectsSharedStyle",
|
|
6541
|
-
"default": "css` :host { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } * { align-self: stretch; } label { grid-column: span 3; text-align: right; text-transform: capitalize; align-self: center; } input, select, ox-input-angle, ox-input-color, [custom-editor] { grid-column: span 7; } input, select, ox-input-angle input, ox-input-color input, [custom-editor] input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } input[type='checkbox'] { grid-column: 4 / 5; align-self: center; } label.checkbox-label { grid-column: span 6; text-align: left; } [fullwidth] { grid-column: 1 / -1; } `"
|
|
6542
|
-
}
|
|
6543
|
-
],
|
|
6544
|
-
"exports": [
|
|
6545
|
-
{
|
|
6546
|
-
"kind": "js",
|
|
6547
|
-
"name": "EffectsSharedStyle",
|
|
6548
|
-
"declaration": {
|
|
6549
|
-
"name": "EffectsSharedStyle",
|
|
6550
|
-
"module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
|
|
6551
|
-
}
|
|
6552
|
-
}
|
|
6553
|
-
]
|
|
6554
|
-
},
|
|
6555
|
-
{
|
|
6556
|
-
"kind": "javascript-module",
|
|
6557
|
-
"path": "src/modeller/property-sidebar/effects/effects.ts",
|
|
6558
|
-
"declarations": [
|
|
6559
|
-
{
|
|
6560
|
-
"kind": "class",
|
|
6561
|
-
"description": "",
|
|
6562
|
-
"name": "PropertyEffects",
|
|
6563
|
-
"members": [
|
|
6564
|
-
{
|
|
6565
|
-
"kind": "field",
|
|
6566
|
-
"name": "value",
|
|
6567
|
-
"type": {
|
|
6568
|
-
"text": "Properties | undefined"
|
|
6569
|
-
},
|
|
6570
|
-
"attribute": "value"
|
|
6571
|
-
},
|
|
6572
|
-
{
|
|
6573
|
-
"kind": "field",
|
|
6574
|
-
"name": "scene",
|
|
6575
|
-
"type": {
|
|
6576
|
-
"text": "Scene | undefined"
|
|
6577
|
-
},
|
|
6578
|
-
"attribute": "scene"
|
|
6579
|
-
},
|
|
6580
|
-
{
|
|
6581
|
-
"kind": "field",
|
|
6582
|
-
"name": "selected",
|
|
6583
|
-
"type": {
|
|
6584
|
-
"text": "Component[]"
|
|
6585
|
-
},
|
|
6586
|
-
"default": "[]",
|
|
6587
|
-
"attribute": "selected"
|
|
6588
|
-
},
|
|
6589
|
-
{
|
|
6590
|
-
"kind": "field",
|
|
6591
|
-
"name": "scopedElements",
|
|
6592
|
-
"static": true,
|
|
6593
|
-
"readonly": true
|
|
6360
|
+
"name": "scopedElements",
|
|
6361
|
+
"static": true,
|
|
6362
|
+
"readonly": true
|
|
6594
6363
|
},
|
|
6595
6364
|
{
|
|
6596
6365
|
"kind": "method",
|
|
@@ -7026,32 +6795,300 @@
|
|
|
7026
6795
|
},
|
|
7027
6796
|
{
|
|
7028
6797
|
"kind": "method",
|
|
7029
|
-
"name": "_onValueChange",
|
|
6798
|
+
"name": "_onValueChange",
|
|
6799
|
+
"parameters": [
|
|
6800
|
+
{
|
|
6801
|
+
"name": "e",
|
|
6802
|
+
"type": {
|
|
6803
|
+
"text": "Event"
|
|
6804
|
+
}
|
|
6805
|
+
}
|
|
6806
|
+
]
|
|
6807
|
+
}
|
|
6808
|
+
],
|
|
6809
|
+
"events": [
|
|
6810
|
+
{
|
|
6811
|
+
"name": "change",
|
|
6812
|
+
"type": {
|
|
6813
|
+
"text": "CustomEvent"
|
|
6814
|
+
}
|
|
6815
|
+
}
|
|
6816
|
+
],
|
|
6817
|
+
"attributes": [
|
|
6818
|
+
{
|
|
6819
|
+
"name": "value",
|
|
6820
|
+
"type": {
|
|
6821
|
+
"text": "Properties | undefined"
|
|
6822
|
+
},
|
|
6823
|
+
"fieldName": "value"
|
|
6824
|
+
}
|
|
6825
|
+
],
|
|
6826
|
+
"superclass": {
|
|
6827
|
+
"name": "LitElement",
|
|
6828
|
+
"package": "lit"
|
|
6829
|
+
},
|
|
6830
|
+
"customElement": true
|
|
6831
|
+
}
|
|
6832
|
+
],
|
|
6833
|
+
"exports": [
|
|
6834
|
+
{
|
|
6835
|
+
"kind": "js",
|
|
6836
|
+
"name": "PropertyShadow",
|
|
6837
|
+
"declaration": {
|
|
6838
|
+
"name": "PropertyShadow",
|
|
6839
|
+
"module": "src/modeller/property-sidebar/effects/property-shadow.ts"
|
|
6840
|
+
}
|
|
6841
|
+
}
|
|
6842
|
+
]
|
|
6843
|
+
},
|
|
6844
|
+
{
|
|
6845
|
+
"kind": "javascript-module",
|
|
6846
|
+
"path": "src/modeller/property-sidebar/effects/value-converter.ts",
|
|
6847
|
+
"declarations": [
|
|
6848
|
+
{
|
|
6849
|
+
"kind": "function",
|
|
6850
|
+
"name": "convert",
|
|
6851
|
+
"parameters": [
|
|
6852
|
+
{
|
|
6853
|
+
"name": "element",
|
|
6854
|
+
"type": {
|
|
6855
|
+
"text": "any"
|
|
6856
|
+
}
|
|
6857
|
+
}
|
|
6858
|
+
]
|
|
6859
|
+
}
|
|
6860
|
+
],
|
|
6861
|
+
"exports": [
|
|
6862
|
+
{
|
|
6863
|
+
"kind": "js",
|
|
6864
|
+
"name": "convert",
|
|
6865
|
+
"declaration": {
|
|
6866
|
+
"name": "convert",
|
|
6867
|
+
"module": "src/modeller/property-sidebar/effects/value-converter.ts"
|
|
6868
|
+
}
|
|
6869
|
+
}
|
|
6870
|
+
]
|
|
6871
|
+
},
|
|
6872
|
+
{
|
|
6873
|
+
"kind": "javascript-module",
|
|
6874
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
6875
|
+
"declarations": [
|
|
6876
|
+
{
|
|
6877
|
+
"kind": "class",
|
|
6878
|
+
"description": "",
|
|
6879
|
+
"name": "SceneInspector",
|
|
6880
|
+
"members": [
|
|
6881
|
+
{
|
|
6882
|
+
"kind": "field",
|
|
6883
|
+
"name": "scene",
|
|
6884
|
+
"type": {
|
|
6885
|
+
"text": "Scene | undefined"
|
|
6886
|
+
},
|
|
6887
|
+
"attribute": "scene"
|
|
6888
|
+
},
|
|
6889
|
+
{
|
|
6890
|
+
"kind": "field",
|
|
6891
|
+
"name": "searchText",
|
|
6892
|
+
"type": {
|
|
6893
|
+
"text": "string"
|
|
6894
|
+
},
|
|
6895
|
+
"privacy": "private",
|
|
6896
|
+
"default": "''"
|
|
6897
|
+
},
|
|
6898
|
+
{
|
|
6899
|
+
"kind": "field",
|
|
6900
|
+
"name": "_extendedMap",
|
|
6901
|
+
"type": {
|
|
6902
|
+
"text": "any"
|
|
6903
|
+
},
|
|
6904
|
+
"privacy": "private"
|
|
6905
|
+
},
|
|
6906
|
+
{
|
|
6907
|
+
"kind": "field",
|
|
6908
|
+
"name": "show",
|
|
6909
|
+
"type": {
|
|
6910
|
+
"text": "boolean"
|
|
6911
|
+
},
|
|
6912
|
+
"privacy": "private",
|
|
6913
|
+
"default": "false"
|
|
6914
|
+
},
|
|
6915
|
+
{
|
|
6916
|
+
"kind": "field",
|
|
6917
|
+
"name": "count",
|
|
6918
|
+
"type": {
|
|
6919
|
+
"text": "number"
|
|
6920
|
+
},
|
|
6921
|
+
"privacy": "private",
|
|
6922
|
+
"default": "-1"
|
|
6923
|
+
},
|
|
6924
|
+
{
|
|
6925
|
+
"kind": "method",
|
|
6926
|
+
"name": "disconnectScene",
|
|
6927
|
+
"parameters": [
|
|
6928
|
+
{
|
|
6929
|
+
"name": "scene",
|
|
6930
|
+
"optional": true,
|
|
6931
|
+
"type": {
|
|
6932
|
+
"text": "Scene"
|
|
6933
|
+
}
|
|
6934
|
+
}
|
|
6935
|
+
]
|
|
6936
|
+
},
|
|
6937
|
+
{
|
|
6938
|
+
"kind": "method",
|
|
6939
|
+
"name": "refresh"
|
|
6940
|
+
},
|
|
6941
|
+
{
|
|
6942
|
+
"kind": "method",
|
|
6943
|
+
"name": "_onclick",
|
|
6944
|
+
"parameters": [
|
|
6945
|
+
{
|
|
6946
|
+
"name": "e",
|
|
6947
|
+
"type": {
|
|
6948
|
+
"text": "MouseEvent"
|
|
6949
|
+
}
|
|
6950
|
+
}
|
|
6951
|
+
]
|
|
6952
|
+
},
|
|
6953
|
+
{
|
|
6954
|
+
"kind": "method",
|
|
6955
|
+
"name": "_ondblclick",
|
|
6956
|
+
"parameters": [
|
|
6957
|
+
{
|
|
6958
|
+
"name": "e",
|
|
6959
|
+
"type": {
|
|
6960
|
+
"text": "MouseEvent"
|
|
6961
|
+
}
|
|
6962
|
+
}
|
|
6963
|
+
]
|
|
6964
|
+
},
|
|
6965
|
+
{
|
|
6966
|
+
"kind": "field",
|
|
6967
|
+
"name": "extendedMap",
|
|
6968
|
+
"readonly": true
|
|
6969
|
+
},
|
|
6970
|
+
{
|
|
6971
|
+
"kind": "method",
|
|
6972
|
+
"name": "getNodeHandleClass",
|
|
6973
|
+
"parameters": [
|
|
6974
|
+
{
|
|
6975
|
+
"name": "component",
|
|
6976
|
+
"type": {
|
|
6977
|
+
"text": "Component"
|
|
6978
|
+
}
|
|
6979
|
+
}
|
|
6980
|
+
]
|
|
6981
|
+
},
|
|
6982
|
+
{
|
|
6983
|
+
"kind": "method",
|
|
6984
|
+
"name": "isExtended",
|
|
6985
|
+
"parameters": [
|
|
6986
|
+
{
|
|
6987
|
+
"name": "component",
|
|
6988
|
+
"type": {
|
|
6989
|
+
"text": "Component"
|
|
6990
|
+
}
|
|
6991
|
+
}
|
|
6992
|
+
]
|
|
6993
|
+
},
|
|
6994
|
+
{
|
|
6995
|
+
"kind": "method",
|
|
6996
|
+
"name": "toggleExtended",
|
|
6997
|
+
"parameters": [
|
|
6998
|
+
{
|
|
6999
|
+
"name": "component",
|
|
7000
|
+
"type": {
|
|
7001
|
+
"text": "Component"
|
|
7002
|
+
}
|
|
7003
|
+
}
|
|
7004
|
+
]
|
|
7005
|
+
},
|
|
7006
|
+
{
|
|
7007
|
+
"kind": "method",
|
|
7008
|
+
"name": "toggleHidden",
|
|
7009
|
+
"parameters": [
|
|
7010
|
+
{
|
|
7011
|
+
"name": "component",
|
|
7012
|
+
"type": {
|
|
7013
|
+
"text": "Component"
|
|
7014
|
+
}
|
|
7015
|
+
}
|
|
7016
|
+
]
|
|
7017
|
+
},
|
|
7018
|
+
{
|
|
7019
|
+
"kind": "method",
|
|
7020
|
+
"name": "selectComponent",
|
|
7021
|
+
"parameters": [
|
|
7022
|
+
{
|
|
7023
|
+
"name": "component",
|
|
7024
|
+
"type": {
|
|
7025
|
+
"text": "Component"
|
|
7026
|
+
}
|
|
7027
|
+
},
|
|
7028
|
+
{
|
|
7029
|
+
"name": "append",
|
|
7030
|
+
"default": "false",
|
|
7031
|
+
"type": {
|
|
7032
|
+
"text": "boolean"
|
|
7033
|
+
}
|
|
7034
|
+
}
|
|
7035
|
+
]
|
|
7036
|
+
},
|
|
7037
|
+
{
|
|
7038
|
+
"kind": "method",
|
|
7039
|
+
"name": "shouldBeShown",
|
|
7040
|
+
"return": {
|
|
7041
|
+
"type": {
|
|
7042
|
+
"text": "boolean"
|
|
7043
|
+
}
|
|
7044
|
+
},
|
|
7045
|
+
"parameters": [
|
|
7046
|
+
{
|
|
7047
|
+
"name": "component",
|
|
7048
|
+
"type": {
|
|
7049
|
+
"text": "Component"
|
|
7050
|
+
}
|
|
7051
|
+
},
|
|
7052
|
+
{
|
|
7053
|
+
"name": "counting",
|
|
7054
|
+
"default": "false",
|
|
7055
|
+
"type": {
|
|
7056
|
+
"text": "boolean"
|
|
7057
|
+
}
|
|
7058
|
+
}
|
|
7059
|
+
]
|
|
7060
|
+
},
|
|
7061
|
+
{
|
|
7062
|
+
"kind": "method",
|
|
7063
|
+
"name": "renderComponent",
|
|
7064
|
+
"return": {
|
|
7065
|
+
"type": {
|
|
7066
|
+
"text": "TemplateResult"
|
|
7067
|
+
}
|
|
7068
|
+
},
|
|
7030
7069
|
"parameters": [
|
|
7031
7070
|
{
|
|
7032
|
-
"name": "
|
|
7071
|
+
"name": "component",
|
|
7033
7072
|
"type": {
|
|
7034
|
-
"text": "
|
|
7073
|
+
"text": "Component"
|
|
7074
|
+
}
|
|
7075
|
+
},
|
|
7076
|
+
{
|
|
7077
|
+
"name": "depth",
|
|
7078
|
+
"type": {
|
|
7079
|
+
"text": "number"
|
|
7035
7080
|
}
|
|
7036
7081
|
}
|
|
7037
7082
|
]
|
|
7038
7083
|
}
|
|
7039
7084
|
],
|
|
7040
|
-
"events": [
|
|
7041
|
-
{
|
|
7042
|
-
"name": "change",
|
|
7043
|
-
"type": {
|
|
7044
|
-
"text": "CustomEvent"
|
|
7045
|
-
}
|
|
7046
|
-
}
|
|
7047
|
-
],
|
|
7048
7085
|
"attributes": [
|
|
7049
7086
|
{
|
|
7050
|
-
"name": "
|
|
7087
|
+
"name": "scene",
|
|
7051
7088
|
"type": {
|
|
7052
|
-
"text": "
|
|
7089
|
+
"text": "Scene | undefined"
|
|
7053
7090
|
},
|
|
7054
|
-
"fieldName": "
|
|
7091
|
+
"fieldName": "scene"
|
|
7055
7092
|
}
|
|
7056
7093
|
],
|
|
7057
7094
|
"superclass": {
|
|
@@ -7064,38 +7101,10 @@
|
|
|
7064
7101
|
"exports": [
|
|
7065
7102
|
{
|
|
7066
7103
|
"kind": "js",
|
|
7067
|
-
"name": "
|
|
7068
|
-
"declaration": {
|
|
7069
|
-
"name": "PropertyShadow",
|
|
7070
|
-
"module": "src/modeller/property-sidebar/effects/property-shadow.ts"
|
|
7071
|
-
}
|
|
7072
|
-
}
|
|
7073
|
-
]
|
|
7074
|
-
},
|
|
7075
|
-
{
|
|
7076
|
-
"kind": "javascript-module",
|
|
7077
|
-
"path": "src/modeller/property-sidebar/effects/value-converter.ts",
|
|
7078
|
-
"declarations": [
|
|
7079
|
-
{
|
|
7080
|
-
"kind": "function",
|
|
7081
|
-
"name": "convert",
|
|
7082
|
-
"parameters": [
|
|
7083
|
-
{
|
|
7084
|
-
"name": "element",
|
|
7085
|
-
"type": {
|
|
7086
|
-
"text": "any"
|
|
7087
|
-
}
|
|
7088
|
-
}
|
|
7089
|
-
]
|
|
7090
|
-
}
|
|
7091
|
-
],
|
|
7092
|
-
"exports": [
|
|
7093
|
-
{
|
|
7094
|
-
"kind": "js",
|
|
7095
|
-
"name": "convert",
|
|
7104
|
+
"name": "SceneInspector",
|
|
7096
7105
|
"declaration": {
|
|
7097
|
-
"name": "
|
|
7098
|
-
"module": "src/modeller/property-sidebar/
|
|
7106
|
+
"name": "SceneInspector",
|
|
7107
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
7099
7108
|
}
|
|
7100
7109
|
}
|
|
7101
7110
|
]
|
|
@@ -7202,190 +7211,23 @@
|
|
|
7202
7211
|
"parameters": [
|
|
7203
7212
|
{
|
|
7204
7213
|
"name": "selected",
|
|
7205
|
-
"type": {
|
|
7206
|
-
"text": "Component[]"
|
|
7207
|
-
}
|
|
7208
|
-
}
|
|
7209
|
-
]
|
|
7210
|
-
},
|
|
7211
|
-
{
|
|
7212
|
-
"kind": "method",
|
|
7213
|
-
"name": "_isClassIdentifiable",
|
|
7214
|
-
"parameters": [
|
|
7215
|
-
{
|
|
7216
|
-
"name": "selected",
|
|
7217
|
-
"type": {
|
|
7218
|
-
"text": "Component[]"
|
|
7219
|
-
}
|
|
7220
|
-
}
|
|
7221
|
-
]
|
|
7222
|
-
},
|
|
7223
|
-
{
|
|
7224
|
-
"kind": "method",
|
|
7225
|
-
"name": "_isLine",
|
|
7226
|
-
"parameters": [
|
|
7227
|
-
{
|
|
7228
|
-
"name": "selected",
|
|
7229
|
-
"type": {
|
|
7230
|
-
"text": "Component[]"
|
|
7231
|
-
}
|
|
7232
|
-
}
|
|
7233
|
-
]
|
|
7234
|
-
},
|
|
7235
|
-
{
|
|
7236
|
-
"kind": "method",
|
|
7237
|
-
"name": "_is3dish",
|
|
7238
|
-
"parameters": [
|
|
7239
|
-
{
|
|
7240
|
-
"name": "selected",
|
|
7241
|
-
"type": {
|
|
7242
|
-
"text": "Component[]"
|
|
7243
|
-
}
|
|
7244
|
-
}
|
|
7245
|
-
]
|
|
7246
|
-
},
|
|
7247
|
-
{
|
|
7248
|
-
"kind": "method",
|
|
7249
|
-
"name": "_getValueFromEventTarget",
|
|
7250
|
-
"parameters": [
|
|
7251
|
-
{
|
|
7252
|
-
"name": "element",
|
|
7253
|
-
"type": {
|
|
7254
|
-
"text": "HTMLElement"
|
|
7255
|
-
}
|
|
7256
|
-
}
|
|
7257
|
-
],
|
|
7258
|
-
"inheritedFrom": {
|
|
7259
|
-
"name": "AbstractProperty",
|
|
7260
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7261
|
-
}
|
|
7262
|
-
},
|
|
7263
|
-
{
|
|
7264
|
-
"kind": "method",
|
|
7265
|
-
"name": "_onAfterValueChange",
|
|
7266
|
-
"parameters": [
|
|
7267
|
-
{
|
|
7268
|
-
"name": "key",
|
|
7269
|
-
"type": {
|
|
7270
|
-
"text": "string"
|
|
7271
|
-
}
|
|
7272
|
-
},
|
|
7273
|
-
{
|
|
7274
|
-
"name": "value",
|
|
7275
|
-
"type": {
|
|
7276
|
-
"text": "any"
|
|
7277
|
-
}
|
|
7278
|
-
}
|
|
7279
|
-
],
|
|
7280
|
-
"inheritedFrom": {
|
|
7281
|
-
"name": "AbstractProperty",
|
|
7282
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7283
|
-
}
|
|
7284
|
-
}
|
|
7285
|
-
],
|
|
7286
|
-
"events": [
|
|
7287
|
-
{
|
|
7288
|
-
"name": "bounds-change",
|
|
7289
|
-
"type": {
|
|
7290
|
-
"text": "CustomEvent"
|
|
7291
|
-
}
|
|
7292
|
-
},
|
|
7293
|
-
{
|
|
7294
|
-
"name": "property-change",
|
|
7295
|
-
"type": {
|
|
7296
|
-
"text": "CustomEvent"
|
|
7297
|
-
},
|
|
7298
|
-
"inheritedFrom": {
|
|
7299
|
-
"name": "AbstractProperty",
|
|
7300
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7301
|
-
}
|
|
7302
|
-
}
|
|
7303
|
-
],
|
|
7304
|
-
"attributes": [
|
|
7305
|
-
{
|
|
7306
|
-
"name": "value",
|
|
7307
|
-
"type": {
|
|
7308
|
-
"text": "Properties | undefined"
|
|
7309
|
-
},
|
|
7310
|
-
"fieldName": "value"
|
|
7311
|
-
},
|
|
7312
|
-
{
|
|
7313
|
-
"name": "bounds",
|
|
7314
|
-
"type": {
|
|
7315
|
-
"text": "BOUNDS | null"
|
|
7316
|
-
},
|
|
7317
|
-
"default": "null",
|
|
7318
|
-
"fieldName": "bounds"
|
|
7319
|
-
},
|
|
7320
|
-
{
|
|
7321
|
-
"name": "selected",
|
|
7322
|
-
"type": {
|
|
7323
|
-
"text": "Component[]"
|
|
7324
|
-
},
|
|
7325
|
-
"default": "[]",
|
|
7326
|
-
"fieldName": "selected"
|
|
7327
|
-
}
|
|
7328
|
-
],
|
|
7329
|
-
"superclass": {
|
|
7330
|
-
"name": "AbstractProperty",
|
|
7331
|
-
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
7332
|
-
}
|
|
7333
|
-
}
|
|
7334
|
-
],
|
|
7335
|
-
"exports": [
|
|
7336
|
-
{
|
|
7337
|
-
"kind": "js",
|
|
7338
|
-
"name": "PropertyShapes",
|
|
7339
|
-
"declaration": {
|
|
7340
|
-
"name": "PropertyShapes",
|
|
7341
|
-
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
7342
|
-
}
|
|
7343
|
-
}
|
|
7344
|
-
]
|
|
7345
|
-
},
|
|
7346
|
-
{
|
|
7347
|
-
"kind": "javascript-module",
|
|
7348
|
-
"path": "src/modeller/property-sidebar/styles/styles.ts",
|
|
7349
|
-
"declarations": [
|
|
7350
|
-
{
|
|
7351
|
-
"kind": "class",
|
|
7352
|
-
"description": "",
|
|
7353
|
-
"name": "PropertyStyles",
|
|
7354
|
-
"members": [
|
|
7355
|
-
{
|
|
7356
|
-
"kind": "field",
|
|
7357
|
-
"name": "value",
|
|
7358
|
-
"type": {
|
|
7359
|
-
"text": "any"
|
|
7360
|
-
},
|
|
7361
|
-
"default": "{}",
|
|
7362
|
-
"attribute": "value"
|
|
7363
|
-
},
|
|
7364
|
-
{
|
|
7365
|
-
"kind": "field",
|
|
7366
|
-
"name": "selected",
|
|
7367
|
-
"type": {
|
|
7368
|
-
"text": "Component[]"
|
|
7369
|
-
},
|
|
7370
|
-
"default": "[]",
|
|
7371
|
-
"attribute": "selected"
|
|
7372
|
-
},
|
|
7373
|
-
{
|
|
7374
|
-
"kind": "field",
|
|
7375
|
-
"name": "fonts",
|
|
7376
|
-
"type": {
|
|
7377
|
-
"text": "any[]"
|
|
7378
|
-
},
|
|
7379
|
-
"default": "[]",
|
|
7380
|
-
"attribute": "fonts"
|
|
7214
|
+
"type": {
|
|
7215
|
+
"text": "Component[]"
|
|
7216
|
+
}
|
|
7217
|
+
}
|
|
7218
|
+
]
|
|
7381
7219
|
},
|
|
7382
7220
|
{
|
|
7383
|
-
"kind": "
|
|
7384
|
-
"name": "
|
|
7385
|
-
"
|
|
7386
|
-
|
|
7387
|
-
|
|
7388
|
-
|
|
7221
|
+
"kind": "method",
|
|
7222
|
+
"name": "_isClassIdentifiable",
|
|
7223
|
+
"parameters": [
|
|
7224
|
+
{
|
|
7225
|
+
"name": "selected",
|
|
7226
|
+
"type": {
|
|
7227
|
+
"text": "Component[]"
|
|
7228
|
+
}
|
|
7229
|
+
}
|
|
7230
|
+
]
|
|
7389
7231
|
},
|
|
7390
7232
|
{
|
|
7391
7233
|
"kind": "method",
|
|
@@ -7401,19 +7243,15 @@
|
|
|
7401
7243
|
},
|
|
7402
7244
|
{
|
|
7403
7245
|
"kind": "method",
|
|
7404
|
-
"name": "
|
|
7246
|
+
"name": "_is3dish",
|
|
7405
7247
|
"parameters": [
|
|
7406
7248
|
{
|
|
7407
|
-
"name": "
|
|
7249
|
+
"name": "selected",
|
|
7408
7250
|
"type": {
|
|
7409
|
-
"text": "
|
|
7251
|
+
"text": "Component[]"
|
|
7410
7252
|
}
|
|
7411
7253
|
}
|
|
7412
|
-
]
|
|
7413
|
-
"inheritedFrom": {
|
|
7414
|
-
"name": "AbstractProperty",
|
|
7415
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7416
|
-
}
|
|
7254
|
+
]
|
|
7417
7255
|
},
|
|
7418
7256
|
{
|
|
7419
7257
|
"kind": "method",
|
|
@@ -7454,57 +7292,62 @@
|
|
|
7454
7292
|
}
|
|
7455
7293
|
}
|
|
7456
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
|
+
],
|
|
7457
7313
|
"attributes": [
|
|
7458
7314
|
{
|
|
7459
7315
|
"name": "value",
|
|
7460
7316
|
"type": {
|
|
7461
|
-
"text": "
|
|
7317
|
+
"text": "Properties | undefined"
|
|
7462
7318
|
},
|
|
7463
|
-
"default": "{}",
|
|
7464
7319
|
"fieldName": "value"
|
|
7465
7320
|
},
|
|
7466
7321
|
{
|
|
7467
|
-
"name": "
|
|
7322
|
+
"name": "bounds",
|
|
7468
7323
|
"type": {
|
|
7469
|
-
"text": "
|
|
7324
|
+
"text": "BOUNDS | null"
|
|
7470
7325
|
},
|
|
7471
|
-
"default": "
|
|
7472
|
-
"fieldName": "
|
|
7326
|
+
"default": "null",
|
|
7327
|
+
"fieldName": "bounds"
|
|
7473
7328
|
},
|
|
7474
7329
|
{
|
|
7475
|
-
"name": "
|
|
7330
|
+
"name": "selected",
|
|
7476
7331
|
"type": {
|
|
7477
|
-
"text": "
|
|
7332
|
+
"text": "Component[]"
|
|
7478
7333
|
},
|
|
7479
7334
|
"default": "[]",
|
|
7480
|
-
"fieldName": "
|
|
7335
|
+
"fieldName": "selected"
|
|
7481
7336
|
}
|
|
7482
7337
|
],
|
|
7483
7338
|
"superclass": {
|
|
7484
7339
|
"name": "AbstractProperty",
|
|
7485
|
-
"module": "/src/modeller/property-sidebar/abstract-property
|
|
7486
|
-
}
|
|
7487
|
-
"events": [
|
|
7488
|
-
{
|
|
7489
|
-
"name": "property-change",
|
|
7490
|
-
"type": {
|
|
7491
|
-
"text": "CustomEvent"
|
|
7492
|
-
},
|
|
7493
|
-
"inheritedFrom": {
|
|
7494
|
-
"name": "AbstractProperty",
|
|
7495
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7496
|
-
}
|
|
7497
|
-
}
|
|
7498
|
-
]
|
|
7340
|
+
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
7341
|
+
}
|
|
7499
7342
|
}
|
|
7500
7343
|
],
|
|
7501
7344
|
"exports": [
|
|
7502
7345
|
{
|
|
7503
7346
|
"kind": "js",
|
|
7504
|
-
"name": "
|
|
7347
|
+
"name": "PropertyShapes",
|
|
7505
7348
|
"declaration": {
|
|
7506
|
-
"name": "
|
|
7507
|
-
"module": "src/modeller/property-sidebar/
|
|
7349
|
+
"name": "PropertyShapes",
|
|
7350
|
+
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
7508
7351
|
}
|
|
7509
7352
|
}
|
|
7510
7353
|
]
|
|
@@ -7855,6 +7698,172 @@
|
|
|
7855
7698
|
}
|
|
7856
7699
|
}
|
|
7857
7700
|
]
|
|
7701
|
+
},
|
|
7702
|
+
{
|
|
7703
|
+
"kind": "javascript-module",
|
|
7704
|
+
"path": "src/modeller/property-sidebar/styles/styles.ts",
|
|
7705
|
+
"declarations": [
|
|
7706
|
+
{
|
|
7707
|
+
"kind": "class",
|
|
7708
|
+
"description": "",
|
|
7709
|
+
"name": "PropertyStyles",
|
|
7710
|
+
"members": [
|
|
7711
|
+
{
|
|
7712
|
+
"kind": "field",
|
|
7713
|
+
"name": "value",
|
|
7714
|
+
"type": {
|
|
7715
|
+
"text": "any"
|
|
7716
|
+
},
|
|
7717
|
+
"default": "{}",
|
|
7718
|
+
"attribute": "value"
|
|
7719
|
+
},
|
|
7720
|
+
{
|
|
7721
|
+
"kind": "field",
|
|
7722
|
+
"name": "selected",
|
|
7723
|
+
"type": {
|
|
7724
|
+
"text": "Component[]"
|
|
7725
|
+
},
|
|
7726
|
+
"default": "[]",
|
|
7727
|
+
"attribute": "selected"
|
|
7728
|
+
},
|
|
7729
|
+
{
|
|
7730
|
+
"kind": "field",
|
|
7731
|
+
"name": "fonts",
|
|
7732
|
+
"type": {
|
|
7733
|
+
"text": "any[]"
|
|
7734
|
+
},
|
|
7735
|
+
"default": "[]",
|
|
7736
|
+
"attribute": "fonts"
|
|
7737
|
+
},
|
|
7738
|
+
{
|
|
7739
|
+
"kind": "field",
|
|
7740
|
+
"name": "fontAvailable",
|
|
7741
|
+
"type": {
|
|
7742
|
+
"text": "boolean"
|
|
7743
|
+
},
|
|
7744
|
+
"default": "false"
|
|
7745
|
+
},
|
|
7746
|
+
{
|
|
7747
|
+
"kind": "method",
|
|
7748
|
+
"name": "_isLine",
|
|
7749
|
+
"parameters": [
|
|
7750
|
+
{
|
|
7751
|
+
"name": "selected",
|
|
7752
|
+
"type": {
|
|
7753
|
+
"text": "Component[]"
|
|
7754
|
+
}
|
|
7755
|
+
}
|
|
7756
|
+
]
|
|
7757
|
+
},
|
|
7758
|
+
{
|
|
7759
|
+
"kind": "method",
|
|
7760
|
+
"name": "_onValueChange",
|
|
7761
|
+
"parameters": [
|
|
7762
|
+
{
|
|
7763
|
+
"name": "e",
|
|
7764
|
+
"type": {
|
|
7765
|
+
"text": "Event"
|
|
7766
|
+
}
|
|
7767
|
+
}
|
|
7768
|
+
],
|
|
7769
|
+
"inheritedFrom": {
|
|
7770
|
+
"name": "AbstractProperty",
|
|
7771
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7772
|
+
}
|
|
7773
|
+
},
|
|
7774
|
+
{
|
|
7775
|
+
"kind": "method",
|
|
7776
|
+
"name": "_getValueFromEventTarget",
|
|
7777
|
+
"parameters": [
|
|
7778
|
+
{
|
|
7779
|
+
"name": "element",
|
|
7780
|
+
"type": {
|
|
7781
|
+
"text": "HTMLElement"
|
|
7782
|
+
}
|
|
7783
|
+
}
|
|
7784
|
+
],
|
|
7785
|
+
"inheritedFrom": {
|
|
7786
|
+
"name": "AbstractProperty",
|
|
7787
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7788
|
+
}
|
|
7789
|
+
},
|
|
7790
|
+
{
|
|
7791
|
+
"kind": "method",
|
|
7792
|
+
"name": "_onAfterValueChange",
|
|
7793
|
+
"parameters": [
|
|
7794
|
+
{
|
|
7795
|
+
"name": "key",
|
|
7796
|
+
"type": {
|
|
7797
|
+
"text": "string"
|
|
7798
|
+
}
|
|
7799
|
+
},
|
|
7800
|
+
{
|
|
7801
|
+
"name": "value",
|
|
7802
|
+
"type": {
|
|
7803
|
+
"text": "any"
|
|
7804
|
+
}
|
|
7805
|
+
}
|
|
7806
|
+
],
|
|
7807
|
+
"inheritedFrom": {
|
|
7808
|
+
"name": "AbstractProperty",
|
|
7809
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7810
|
+
}
|
|
7811
|
+
}
|
|
7812
|
+
],
|
|
7813
|
+
"attributes": [
|
|
7814
|
+
{
|
|
7815
|
+
"name": "value",
|
|
7816
|
+
"type": {
|
|
7817
|
+
"text": "any"
|
|
7818
|
+
},
|
|
7819
|
+
"default": "{}",
|
|
7820
|
+
"fieldName": "value"
|
|
7821
|
+
},
|
|
7822
|
+
{
|
|
7823
|
+
"name": "selected",
|
|
7824
|
+
"type": {
|
|
7825
|
+
"text": "Component[]"
|
|
7826
|
+
},
|
|
7827
|
+
"default": "[]",
|
|
7828
|
+
"fieldName": "selected"
|
|
7829
|
+
},
|
|
7830
|
+
{
|
|
7831
|
+
"name": "fonts",
|
|
7832
|
+
"type": {
|
|
7833
|
+
"text": "any[]"
|
|
7834
|
+
},
|
|
7835
|
+
"default": "[]",
|
|
7836
|
+
"fieldName": "fonts"
|
|
7837
|
+
}
|
|
7838
|
+
],
|
|
7839
|
+
"superclass": {
|
|
7840
|
+
"name": "AbstractProperty",
|
|
7841
|
+
"module": "/src/modeller/property-sidebar/abstract-property.js"
|
|
7842
|
+
},
|
|
7843
|
+
"events": [
|
|
7844
|
+
{
|
|
7845
|
+
"name": "property-change",
|
|
7846
|
+
"type": {
|
|
7847
|
+
"text": "CustomEvent"
|
|
7848
|
+
},
|
|
7849
|
+
"inheritedFrom": {
|
|
7850
|
+
"name": "AbstractProperty",
|
|
7851
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
7852
|
+
}
|
|
7853
|
+
}
|
|
7854
|
+
]
|
|
7855
|
+
}
|
|
7856
|
+
],
|
|
7857
|
+
"exports": [
|
|
7858
|
+
{
|
|
7859
|
+
"kind": "js",
|
|
7860
|
+
"name": "PropertyStyles",
|
|
7861
|
+
"declaration": {
|
|
7862
|
+
"name": "PropertyStyles",
|
|
7863
|
+
"module": "src/modeller/property-sidebar/styles/styles.ts"
|
|
7864
|
+
}
|
|
7865
|
+
}
|
|
7866
|
+
]
|
|
7858
7867
|
}
|
|
7859
7868
|
]
|
|
7860
7869
|
}
|