@fmsim/board 1.0.79 → 1.0.80

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.
@@ -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",
@@ -6324,329 +6324,89 @@
6324
6324
  },
6325
6325
  {
6326
6326
  "kind": "javascript-module",
6327
- "path": "src/modeller/property-sidebar/inspector/inspector.ts",
6327
+ "path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
6328
+ "declarations": [
6329
+ {
6330
+ "kind": "variable",
6331
+ "name": "EffectsSharedStyle",
6332
+ "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; } `"
6333
+ }
6334
+ ],
6335
+ "exports": [
6336
+ {
6337
+ "kind": "js",
6338
+ "name": "EffectsSharedStyle",
6339
+ "declaration": {
6340
+ "name": "EffectsSharedStyle",
6341
+ "module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
6342
+ }
6343
+ }
6344
+ ]
6345
+ },
6346
+ {
6347
+ "kind": "javascript-module",
6348
+ "path": "src/modeller/property-sidebar/effects/effects.ts",
6328
6349
  "declarations": [
6329
6350
  {
6330
6351
  "kind": "class",
6331
6352
  "description": "",
6332
- "name": "SceneInspector",
6353
+ "name": "PropertyEffects",
6333
6354
  "members": [
6334
6355
  {
6335
6356
  "kind": "field",
6336
- "name": "scene",
6337
- "type": {
6338
- "text": "Scene | undefined"
6339
- },
6340
- "attribute": "scene"
6341
- },
6342
- {
6343
- "kind": "field",
6344
- "name": "searchText",
6357
+ "name": "value",
6345
6358
  "type": {
6346
- "text": "string"
6359
+ "text": "Properties | undefined"
6347
6360
  },
6348
- "privacy": "private",
6349
- "default": "''"
6361
+ "attribute": "value"
6350
6362
  },
6351
6363
  {
6352
6364
  "kind": "field",
6353
- "name": "_extendedMap",
6365
+ "name": "scene",
6354
6366
  "type": {
6355
- "text": "any"
6367
+ "text": "Scene | undefined"
6356
6368
  },
6357
- "privacy": "private"
6369
+ "attribute": "scene"
6358
6370
  },
6359
6371
  {
6360
6372
  "kind": "field",
6361
- "name": "show",
6373
+ "name": "selected",
6362
6374
  "type": {
6363
- "text": "boolean"
6375
+ "text": "Component[]"
6364
6376
  },
6365
- "privacy": "private",
6366
- "default": "false"
6377
+ "default": "[]",
6378
+ "attribute": "selected"
6367
6379
  },
6368
6380
  {
6369
6381
  "kind": "field",
6370
- "name": "count",
6371
- "type": {
6372
- "text": "number"
6373
- },
6374
- "privacy": "private",
6375
- "default": "-1"
6382
+ "name": "scopedElements",
6383
+ "static": true,
6384
+ "readonly": true
6376
6385
  },
6377
6386
  {
6378
6387
  "kind": "method",
6379
- "name": "disconnectScene",
6388
+ "name": "_onValueChange",
6380
6389
  "parameters": [
6381
6390
  {
6382
- "name": "scene",
6383
- "optional": true,
6391
+ "name": "e",
6384
6392
  "type": {
6385
- "text": "Scene"
6393
+ "text": "Event"
6386
6394
  }
6387
6395
  }
6388
- ]
6389
- },
6390
- {
6391
- "kind": "method",
6392
- "name": "refresh"
6396
+ ],
6397
+ "inheritedFrom": {
6398
+ "name": "AbstractProperty",
6399
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6400
+ }
6393
6401
  },
6394
6402
  {
6395
6403
  "kind": "method",
6396
- "name": "_onclick",
6404
+ "name": "_getValueFromEventTarget",
6397
6405
  "parameters": [
6398
6406
  {
6399
- "name": "e",
6407
+ "name": "element",
6400
6408
  "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",
6558
- "declaration": {
6559
- "name": "SceneInspector",
6560
- "module": "src/modeller/property-sidebar/inspector/inspector.ts"
6561
- }
6562
- }
6563
- ]
6564
- },
6565
- {
6566
- "kind": "javascript-module",
6567
- "path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
6568
- "declarations": [
6569
- {
6570
- "kind": "variable",
6571
- "name": "EffectsSharedStyle",
6572
- "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; } `"
6573
- }
6574
- ],
6575
- "exports": [
6576
- {
6577
- "kind": "js",
6578
- "name": "EffectsSharedStyle",
6579
- "declaration": {
6580
- "name": "EffectsSharedStyle",
6581
- "module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
6582
- }
6583
- }
6584
- ]
6585
- },
6586
- {
6587
- "kind": "javascript-module",
6588
- "path": "src/modeller/property-sidebar/effects/effects.ts",
6589
- "declarations": [
6590
- {
6591
- "kind": "class",
6592
- "description": "",
6593
- "name": "PropertyEffects",
6594
- "members": [
6595
- {
6596
- "kind": "field",
6597
- "name": "value",
6598
- "type": {
6599
- "text": "Properties | undefined"
6600
- },
6601
- "attribute": "value"
6602
- },
6603
- {
6604
- "kind": "field",
6605
- "name": "scene",
6606
- "type": {
6607
- "text": "Scene | undefined"
6608
- },
6609
- "attribute": "scene"
6610
- },
6611
- {
6612
- "kind": "field",
6613
- "name": "selected",
6614
- "type": {
6615
- "text": "Component[]"
6616
- },
6617
- "default": "[]",
6618
- "attribute": "selected"
6619
- },
6620
- {
6621
- "kind": "field",
6622
- "name": "scopedElements",
6623
- "static": true,
6624
- "readonly": true
6625
- },
6626
- {
6627
- "kind": "method",
6628
- "name": "_onValueChange",
6629
- "parameters": [
6630
- {
6631
- "name": "e",
6632
- "type": {
6633
- "text": "Event"
6634
- }
6635
- }
6636
- ],
6637
- "inheritedFrom": {
6638
- "name": "AbstractProperty",
6639
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6640
- }
6641
- },
6642
- {
6643
- "kind": "method",
6644
- "name": "_getValueFromEventTarget",
6645
- "parameters": [
6646
- {
6647
- "name": "element",
6648
- "type": {
6649
- "text": "HTMLElement"
6409
+ "text": "HTMLElement"
6650
6410
  }
6651
6411
  }
6652
6412
  ],
@@ -7133,290 +6893,363 @@
7133
6893
  },
7134
6894
  {
7135
6895
  "kind": "javascript-module",
7136
- "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
7137
- "declarations": [
7138
- {
7139
- "kind": "variable",
7140
- "name": "BoxPaddingEditorStyles",
7141
- "default": "css` .box-padding { width: 100%; } .box-padding td { background: var(--url-icon-properties-padding) 50% 0 no-repeat; } .box-padding tr:nth-child(1), .box-padding tr:nth-child(3) { height: 20px; } .box-padding tr td:nth-child(1), .box-padding tr td:nth-child(3) { width: 18px; } .box-padding .slide1 { background-position: 0 0; } .box-padding .slide2 { background-position: 50% -40px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide3 { background-position: 100% -440px; } .box-padding .slide4 { background-position: 0 -360px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide5 { background: none; text-align: center; } .box-padding .slide6 { background-position: 100% -160px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide7 { background-position: 0 100%; } .box-padding .slide8 { background-position: 50% -320px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide9 { background-position: 0 0px; } .box-padding input { background-color: transparent; width: 35px; margin: 0px; padding: 0px; clear: both; float: initial; border: 1px solid #fff; border-width: 0 0 1px 0; text-align: right; font-size: 14px; } .slide5 input:nth-child(1), .slide5 input:nth-child(4) { display: block; margin: auto; } .slide5 input:nth-child(2) { float: left; } .slide5 input:nth-child(3) { float: right; margin-top: -25px; } .slide5 input:nth-child(4) { margin-top: -5px; } `"
7142
- }
7143
- ],
7144
- "exports": [
7145
- {
7146
- "kind": "js",
7147
- "name": "BoxPaddingEditorStyles",
7148
- "declaration": {
7149
- "name": "BoxPaddingEditorStyles",
7150
- "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
7151
- }
7152
- }
7153
- ]
7154
- },
7155
- {
7156
- "kind": "javascript-module",
7157
- "path": "src/modeller/property-sidebar/shapes/shapes.ts",
6896
+ "path": "src/modeller/property-sidebar/inspector/inspector.ts",
7158
6897
  "declarations": [
7159
6898
  {
7160
6899
  "kind": "class",
7161
6900
  "description": "",
7162
- "name": "PropertyShapes",
6901
+ "name": "SceneInspector",
7163
6902
  "members": [
7164
6903
  {
7165
6904
  "kind": "field",
7166
- "name": "value",
6905
+ "name": "scene",
7167
6906
  "type": {
7168
- "text": "Properties | undefined"
6907
+ "text": "Scene | undefined"
7169
6908
  },
7170
- "attribute": "value"
6909
+ "attribute": "scene"
7171
6910
  },
7172
6911
  {
7173
6912
  "kind": "field",
7174
- "name": "bounds",
6913
+ "name": "searchText",
7175
6914
  "type": {
7176
- "text": "BOUNDS | null"
6915
+ "text": "string"
7177
6916
  },
7178
- "default": "null",
7179
- "attribute": "bounds"
6917
+ "privacy": "private",
6918
+ "default": "''"
7180
6919
  },
7181
6920
  {
7182
6921
  "kind": "field",
7183
- "name": "selected",
6922
+ "name": "_extendedMap",
7184
6923
  "type": {
7185
- "text": "Component[]"
6924
+ "text": "any"
7186
6925
  },
7187
- "default": "[]",
7188
- "attribute": "selected"
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"
7189
6945
  },
7190
6946
  {
7191
6947
  "kind": "method",
7192
- "name": "_onValueChange",
6948
+ "name": "disconnectScene",
7193
6949
  "parameters": [
7194
6950
  {
7195
- "name": "e",
6951
+ "name": "scene",
6952
+ "optional": true,
7196
6953
  "type": {
7197
- "text": "Event"
6954
+ "text": "Scene"
7198
6955
  }
7199
6956
  }
7200
- ],
7201
- "inheritedFrom": {
7202
- "name": "AbstractProperty",
7203
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7204
- }
6957
+ ]
7205
6958
  },
7206
6959
  {
7207
6960
  "kind": "method",
7208
- "name": "_hasTextProperty",
6961
+ "name": "refresh"
6962
+ },
6963
+ {
6964
+ "kind": "method",
6965
+ "name": "_onclick",
7209
6966
  "parameters": [
7210
6967
  {
7211
- "name": "selected",
6968
+ "name": "e",
7212
6969
  "type": {
7213
- "text": "Component[]"
6970
+ "text": "MouseEvent"
7214
6971
  }
7215
6972
  }
7216
6973
  ]
7217
6974
  },
7218
6975
  {
7219
6976
  "kind": "method",
7220
- "name": "_hasProperties",
6977
+ "name": "_ondblclick",
7221
6978
  "parameters": [
7222
6979
  {
7223
- "name": "selected",
6980
+ "name": "e",
7224
6981
  "type": {
7225
- "text": "Component[]"
6982
+ "text": "MouseEvent"
7226
6983
  }
7227
6984
  }
7228
6985
  ]
7229
6986
  },
6987
+ {
6988
+ "kind": "field",
6989
+ "name": "extendedMap",
6990
+ "readonly": true
6991
+ },
7230
6992
  {
7231
6993
  "kind": "method",
7232
- "name": "_isIdentifiable",
6994
+ "name": "getNodeHandleClass",
7233
6995
  "parameters": [
7234
6996
  {
7235
- "name": "selected",
6997
+ "name": "component",
7236
6998
  "type": {
7237
- "text": "Component[]"
6999
+ "text": "Component"
7238
7000
  }
7239
7001
  }
7240
7002
  ]
7241
7003
  },
7242
7004
  {
7243
7005
  "kind": "method",
7244
- "name": "_isClassIdentifiable",
7006
+ "name": "isExtended",
7245
7007
  "parameters": [
7246
7008
  {
7247
- "name": "selected",
7009
+ "name": "component",
7248
7010
  "type": {
7249
- "text": "Component[]"
7011
+ "text": "Component"
7250
7012
  }
7251
7013
  }
7252
7014
  ]
7253
7015
  },
7254
7016
  {
7255
7017
  "kind": "method",
7256
- "name": "_isLine",
7018
+ "name": "toggleExtended",
7257
7019
  "parameters": [
7258
7020
  {
7259
- "name": "selected",
7021
+ "name": "component",
7260
7022
  "type": {
7261
- "text": "Component[]"
7023
+ "text": "Component"
7262
7024
  }
7263
7025
  }
7264
7026
  ]
7265
7027
  },
7266
7028
  {
7267
7029
  "kind": "method",
7268
- "name": "_is3dish",
7030
+ "name": "toggleHidden",
7269
7031
  "parameters": [
7270
7032
  {
7271
- "name": "selected",
7033
+ "name": "component",
7272
7034
  "type": {
7273
- "text": "Component[]"
7035
+ "text": "Component"
7274
7036
  }
7275
7037
  }
7276
7038
  ]
7277
7039
  },
7278
7040
  {
7279
7041
  "kind": "method",
7280
- "name": "_getValueFromEventTarget",
7042
+ "name": "selectComponent",
7281
7043
  "parameters": [
7282
7044
  {
7283
- "name": "element",
7045
+ "name": "component",
7284
7046
  "type": {
7285
- "text": "HTMLElement"
7047
+ "text": "Component"
7048
+ }
7049
+ },
7050
+ {
7051
+ "name": "append",
7052
+ "default": "false",
7053
+ "type": {
7054
+ "text": "boolean"
7286
7055
  }
7287
7056
  }
7288
- ],
7289
- "inheritedFrom": {
7290
- "name": "AbstractProperty",
7291
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7292
- }
7057
+ ]
7293
7058
  },
7294
7059
  {
7295
7060
  "kind": "method",
7296
- "name": "_onAfterValueChange",
7061
+ "name": "shouldBeShown",
7062
+ "return": {
7063
+ "type": {
7064
+ "text": "boolean"
7065
+ }
7066
+ },
7297
7067
  "parameters": [
7298
7068
  {
7299
- "name": "key",
7069
+ "name": "component",
7300
7070
  "type": {
7301
- "text": "string"
7071
+ "text": "Component"
7302
7072
  }
7303
7073
  },
7304
7074
  {
7305
- "name": "value",
7075
+ "name": "counting",
7076
+ "default": "false",
7306
7077
  "type": {
7307
- "text": "any"
7078
+ "text": "boolean"
7308
7079
  }
7309
7080
  }
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
- }
7081
+ ]
7323
7082
  },
7324
7083
  {
7325
- "name": "property-change",
7326
- "type": {
7327
- "text": "CustomEvent"
7084
+ "kind": "method",
7085
+ "name": "renderComponent",
7086
+ "return": {
7087
+ "type": {
7088
+ "text": "TemplateResult"
7089
+ }
7328
7090
  },
7329
- "inheritedFrom": {
7330
- "name": "AbstractProperty",
7331
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7332
- }
7091
+ "parameters": [
7092
+ {
7093
+ "name": "component",
7094
+ "type": {
7095
+ "text": "Component"
7096
+ }
7097
+ },
7098
+ {
7099
+ "name": "depth",
7100
+ "type": {
7101
+ "text": "number"
7102
+ }
7103
+ }
7104
+ ]
7333
7105
  }
7334
7106
  ],
7335
7107
  "attributes": [
7336
7108
  {
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",
7109
+ "name": "scene",
7353
7110
  "type": {
7354
- "text": "Component[]"
7111
+ "text": "Scene | undefined"
7355
7112
  },
7356
- "default": "[]",
7357
- "fieldName": "selected"
7113
+ "fieldName": "scene"
7358
7114
  }
7359
7115
  ],
7360
7116
  "superclass": {
7361
- "name": "AbstractProperty",
7362
- "module": "/src/modeller/property-sidebar/abstract-property"
7117
+ "name": "LitElement",
7118
+ "package": "lit"
7119
+ },
7120
+ "customElement": true
7121
+ }
7122
+ ],
7123
+ "exports": [
7124
+ {
7125
+ "kind": "js",
7126
+ "name": "SceneInspector",
7127
+ "declaration": {
7128
+ "name": "SceneInspector",
7129
+ "module": "src/modeller/property-sidebar/inspector/inspector.ts"
7363
7130
  }
7364
7131
  }
7132
+ ]
7133
+ },
7134
+ {
7135
+ "kind": "javascript-module",
7136
+ "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
7137
+ "declarations": [
7138
+ {
7139
+ "kind": "variable",
7140
+ "name": "BoxPaddingEditorStyles",
7141
+ "default": "css` .box-padding { width: 100%; } .box-padding td { background: var(--url-icon-properties-padding) 50% 0 no-repeat; } .box-padding tr:nth-child(1), .box-padding tr:nth-child(3) { height: 20px; } .box-padding tr td:nth-child(1), .box-padding tr td:nth-child(3) { width: 18px; } .box-padding .slide1 { background-position: 0 0; } .box-padding .slide2 { background-position: 50% -40px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide3 { background-position: 100% -440px; } .box-padding .slide4 { background-position: 0 -360px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide5 { background: none; text-align: center; } .box-padding .slide6 { background-position: 100% -160px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide7 { background-position: 0 100%; } .box-padding .slide8 { background-position: 50% -320px; background-color: rgba(69, 46, 41, 0.2); } .box-padding .slide9 { background-position: 0 0px; } .box-padding input { background-color: transparent; width: 35px; margin: 0px; padding: 0px; clear: both; float: initial; border: 1px solid #fff; border-width: 0 0 1px 0; text-align: right; font-size: 14px; } .slide5 input:nth-child(1), .slide5 input:nth-child(4) { display: block; margin: auto; } .slide5 input:nth-child(2) { float: left; } .slide5 input:nth-child(3) { float: right; margin-top: -25px; } .slide5 input:nth-child(4) { margin-top: -5px; } `"
7142
+ }
7365
7143
  ],
7366
7144
  "exports": [
7367
7145
  {
7368
7146
  "kind": "js",
7369
- "name": "PropertyShapes",
7147
+ "name": "BoxPaddingEditorStyles",
7370
7148
  "declaration": {
7371
- "name": "PropertyShapes",
7372
- "module": "src/modeller/property-sidebar/shapes/shapes.ts"
7149
+ "name": "BoxPaddingEditorStyles",
7150
+ "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
7373
7151
  }
7374
7152
  }
7375
7153
  ]
7376
7154
  },
7377
7155
  {
7378
7156
  "kind": "javascript-module",
7379
- "path": "src/modeller/property-sidebar/styles/styles.ts",
7157
+ "path": "src/modeller/property-sidebar/shapes/shapes.ts",
7380
7158
  "declarations": [
7381
7159
  {
7382
7160
  "kind": "class",
7383
7161
  "description": "",
7384
- "name": "PropertyStyles",
7162
+ "name": "PropertyShapes",
7385
7163
  "members": [
7386
7164
  {
7387
7165
  "kind": "field",
7388
7166
  "name": "value",
7389
7167
  "type": {
7390
- "text": "any"
7168
+ "text": "Properties | undefined"
7391
7169
  },
7392
- "default": "{}",
7393
7170
  "attribute": "value"
7394
7171
  },
7395
7172
  {
7396
7173
  "kind": "field",
7397
- "name": "selected",
7174
+ "name": "bounds",
7398
7175
  "type": {
7399
- "text": "Component[]"
7176
+ "text": "BOUNDS | null"
7400
7177
  },
7401
- "default": "[]",
7402
- "attribute": "selected"
7178
+ "default": "null",
7179
+ "attribute": "bounds"
7403
7180
  },
7404
7181
  {
7405
7182
  "kind": "field",
7406
- "name": "fonts",
7183
+ "name": "selected",
7407
7184
  "type": {
7408
- "text": "any[]"
7185
+ "text": "Component[]"
7409
7186
  },
7410
7187
  "default": "[]",
7411
- "attribute": "fonts"
7188
+ "attribute": "selected"
7189
+ },
7190
+ {
7191
+ "kind": "method",
7192
+ "name": "_onValueChange",
7193
+ "parameters": [
7194
+ {
7195
+ "name": "e",
7196
+ "type": {
7197
+ "text": "Event"
7198
+ }
7199
+ }
7200
+ ],
7201
+ "inheritedFrom": {
7202
+ "name": "AbstractProperty",
7203
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7204
+ }
7205
+ },
7206
+ {
7207
+ "kind": "method",
7208
+ "name": "_hasTextProperty",
7209
+ "parameters": [
7210
+ {
7211
+ "name": "selected",
7212
+ "type": {
7213
+ "text": "Component[]"
7214
+ }
7215
+ }
7216
+ ]
7217
+ },
7218
+ {
7219
+ "kind": "method",
7220
+ "name": "_hasProperties",
7221
+ "parameters": [
7222
+ {
7223
+ "name": "selected",
7224
+ "type": {
7225
+ "text": "Component[]"
7226
+ }
7227
+ }
7228
+ ]
7229
+ },
7230
+ {
7231
+ "kind": "method",
7232
+ "name": "_isIdentifiable",
7233
+ "parameters": [
7234
+ {
7235
+ "name": "selected",
7236
+ "type": {
7237
+ "text": "Component[]"
7238
+ }
7239
+ }
7240
+ ]
7412
7241
  },
7413
7242
  {
7414
- "kind": "field",
7415
- "name": "fontAvailable",
7416
- "type": {
7417
- "text": "boolean"
7418
- },
7419
- "default": "false"
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": "_onValueChange",
7268
+ "name": "_is3dish",
7436
7269
  "parameters": [
7437
7270
  {
7438
- "name": "e",
7271
+ "name": "selected",
7439
7272
  "type": {
7440
- "text": "Event"
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": "any"
7339
+ "text": "Properties | undefined"
7493
7340
  },
7494
- "default": "{}",
7495
7341
  "fieldName": "value"
7496
7342
  },
7497
7343
  {
7498
- "name": "selected",
7344
+ "name": "bounds",
7499
7345
  "type": {
7500
- "text": "Component[]"
7346
+ "text": "BOUNDS | null"
7501
7347
  },
7502
- "default": "[]",
7503
- "fieldName": "selected"
7348
+ "default": "null",
7349
+ "fieldName": "bounds"
7504
7350
  },
7505
7351
  {
7506
- "name": "fonts",
7352
+ "name": "selected",
7507
7353
  "type": {
7508
- "text": "any[]"
7354
+ "text": "Component[]"
7509
7355
  },
7510
7356
  "default": "[]",
7511
- "fieldName": "fonts"
7357
+ "fieldName": "selected"
7512
7358
  }
7513
7359
  ],
7514
7360
  "superclass": {
7515
7361
  "name": "AbstractProperty",
7516
- "module": "/src/modeller/property-sidebar/abstract-property.js"
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": "PropertyStyles",
7369
+ "name": "PropertyShapes",
7536
7370
  "declaration": {
7537
- "name": "PropertyStyles",
7538
- "module": "src/modeller/property-sidebar/styles/styles.ts"
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
  }