@fmsim/board 1.0.80 → 1.0.82

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,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",
@@ -1787,6 +1702,91 @@
1787
1702
  "declarations": [],
1788
1703
  "exports": []
1789
1704
  },
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,89 +6324,329 @@
6324
6324
  },
6325
6325
  {
6326
6326
  "kind": "javascript-module",
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",
6327
+ "path": "src/modeller/property-sidebar/inspector/inspector.ts",
6349
6328
  "declarations": [
6350
6329
  {
6351
6330
  "kind": "class",
6352
6331
  "description": "",
6353
- "name": "PropertyEffects",
6332
+ "name": "SceneInspector",
6354
6333
  "members": [
6355
6334
  {
6356
6335
  "kind": "field",
6357
- "name": "value",
6336
+ "name": "scene",
6358
6337
  "type": {
6359
- "text": "Properties | undefined"
6338
+ "text": "Scene | undefined"
6360
6339
  },
6361
- "attribute": "value"
6340
+ "attribute": "scene"
6362
6341
  },
6363
6342
  {
6364
6343
  "kind": "field",
6365
- "name": "scene",
6344
+ "name": "searchText",
6366
6345
  "type": {
6367
- "text": "Scene | undefined"
6346
+ "text": "string"
6368
6347
  },
6369
- "attribute": "scene"
6348
+ "privacy": "private",
6349
+ "default": "''"
6370
6350
  },
6371
6351
  {
6372
6352
  "kind": "field",
6373
- "name": "selected",
6353
+ "name": "_extendedMap",
6374
6354
  "type": {
6375
- "text": "Component[]"
6355
+ "text": "any"
6376
6356
  },
6377
- "default": "[]",
6378
- "attribute": "selected"
6357
+ "privacy": "private"
6379
6358
  },
6380
6359
  {
6381
6360
  "kind": "field",
6382
- "name": "scopedElements",
6383
- "static": true,
6384
- "readonly": true
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"
6385
6376
  },
6386
6377
  {
6387
6378
  "kind": "method",
6388
- "name": "_onValueChange",
6379
+ "name": "disconnectScene",
6389
6380
  "parameters": [
6390
6381
  {
6391
- "name": "e",
6382
+ "name": "scene",
6383
+ "optional": true,
6392
6384
  "type": {
6393
- "text": "Event"
6385
+ "text": "Scene"
6394
6386
  }
6395
6387
  }
6396
- ],
6397
- "inheritedFrom": {
6398
- "name": "AbstractProperty",
6399
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6400
- }
6388
+ ]
6401
6389
  },
6402
6390
  {
6403
6391
  "kind": "method",
6404
- "name": "_getValueFromEventTarget",
6392
+ "name": "refresh"
6393
+ },
6394
+ {
6395
+ "kind": "method",
6396
+ "name": "_onclick",
6405
6397
  "parameters": [
6406
6398
  {
6407
- "name": "element",
6399
+ "name": "e",
6408
6400
  "type": {
6409
- "text": "HTMLElement"
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"
6410
6650
  }
6411
6651
  }
6412
6652
  ],
@@ -6893,291 +7133,265 @@
6893
7133
  },
6894
7134
  {
6895
7135
  "kind": "javascript-module",
6896
- "path": "src/modeller/property-sidebar/inspector/inspector.ts",
7136
+ "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
6897
7137
  "declarations": [
6898
7138
  {
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
- },
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",
7158
+ "declarations": [
7159
+ {
7160
+ "kind": "class",
7161
+ "description": "",
7162
+ "name": "PropertyShapes",
7163
+ "members": [
6920
7164
  {
6921
7165
  "kind": "field",
6922
- "name": "_extendedMap",
7166
+ "name": "value",
6923
7167
  "type": {
6924
- "text": "any"
7168
+ "text": "Properties | undefined"
6925
7169
  },
6926
- "privacy": "private"
7170
+ "attribute": "value"
6927
7171
  },
6928
7172
  {
6929
7173
  "kind": "field",
6930
- "name": "show",
7174
+ "name": "bounds",
6931
7175
  "type": {
6932
- "text": "boolean"
7176
+ "text": "BOUNDS | null"
6933
7177
  },
6934
- "privacy": "private",
6935
- "default": "false"
7178
+ "default": "null",
7179
+ "attribute": "bounds"
6936
7180
  },
6937
7181
  {
6938
7182
  "kind": "field",
6939
- "name": "count",
7183
+ "name": "selected",
6940
7184
  "type": {
6941
- "text": "number"
7185
+ "text": "Component[]"
6942
7186
  },
6943
- "privacy": "private",
6944
- "default": "-1"
7187
+ "default": "[]",
7188
+ "attribute": "selected"
6945
7189
  },
6946
7190
  {
6947
7191
  "kind": "method",
6948
- "name": "disconnectScene",
7192
+ "name": "_onValueChange",
6949
7193
  "parameters": [
6950
7194
  {
6951
- "name": "scene",
6952
- "optional": true,
7195
+ "name": "e",
6953
7196
  "type": {
6954
- "text": "Scene"
7197
+ "text": "Event"
6955
7198
  }
6956
7199
  }
6957
- ]
6958
- },
6959
- {
6960
- "kind": "method",
6961
- "name": "refresh"
7200
+ ],
7201
+ "inheritedFrom": {
7202
+ "name": "AbstractProperty",
7203
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7204
+ }
6962
7205
  },
6963
7206
  {
6964
7207
  "kind": "method",
6965
- "name": "_onclick",
7208
+ "name": "_hasTextProperty",
6966
7209
  "parameters": [
6967
7210
  {
6968
- "name": "e",
7211
+ "name": "selected",
6969
7212
  "type": {
6970
- "text": "MouseEvent"
7213
+ "text": "Component[]"
6971
7214
  }
6972
7215
  }
6973
7216
  ]
6974
7217
  },
6975
7218
  {
6976
7219
  "kind": "method",
6977
- "name": "_ondblclick",
7220
+ "name": "_hasProperties",
6978
7221
  "parameters": [
6979
7222
  {
6980
- "name": "e",
7223
+ "name": "selected",
6981
7224
  "type": {
6982
- "text": "MouseEvent"
7225
+ "text": "Component[]"
6983
7226
  }
6984
7227
  }
6985
7228
  ]
6986
7229
  },
6987
- {
6988
- "kind": "field",
6989
- "name": "extendedMap",
6990
- "readonly": true
6991
- },
6992
7230
  {
6993
7231
  "kind": "method",
6994
- "name": "getNodeHandleClass",
7232
+ "name": "_isIdentifiable",
6995
7233
  "parameters": [
6996
7234
  {
6997
- "name": "component",
7235
+ "name": "selected",
6998
7236
  "type": {
6999
- "text": "Component"
7237
+ "text": "Component[]"
7000
7238
  }
7001
7239
  }
7002
7240
  ]
7003
7241
  },
7004
7242
  {
7005
7243
  "kind": "method",
7006
- "name": "isExtended",
7244
+ "name": "_isClassIdentifiable",
7007
7245
  "parameters": [
7008
7246
  {
7009
- "name": "component",
7247
+ "name": "selected",
7010
7248
  "type": {
7011
- "text": "Component"
7249
+ "text": "Component[]"
7012
7250
  }
7013
7251
  }
7014
7252
  ]
7015
7253
  },
7016
7254
  {
7017
7255
  "kind": "method",
7018
- "name": "toggleExtended",
7256
+ "name": "_isLine",
7019
7257
  "parameters": [
7020
7258
  {
7021
- "name": "component",
7259
+ "name": "selected",
7022
7260
  "type": {
7023
- "text": "Component"
7261
+ "text": "Component[]"
7024
7262
  }
7025
7263
  }
7026
7264
  ]
7027
7265
  },
7028
7266
  {
7029
7267
  "kind": "method",
7030
- "name": "toggleHidden",
7268
+ "name": "_is3dish",
7031
7269
  "parameters": [
7032
7270
  {
7033
- "name": "component",
7271
+ "name": "selected",
7034
7272
  "type": {
7035
- "text": "Component"
7273
+ "text": "Component[]"
7036
7274
  }
7037
7275
  }
7038
7276
  ]
7039
7277
  },
7040
7278
  {
7041
7279
  "kind": "method",
7042
- "name": "selectComponent",
7280
+ "name": "_getValueFromEventTarget",
7043
7281
  "parameters": [
7044
7282
  {
7045
- "name": "component",
7046
- "type": {
7047
- "text": "Component"
7048
- }
7049
- },
7050
- {
7051
- "name": "append",
7052
- "default": "false",
7283
+ "name": "element",
7053
7284
  "type": {
7054
- "text": "boolean"
7285
+ "text": "HTMLElement"
7055
7286
  }
7056
7287
  }
7057
- ]
7288
+ ],
7289
+ "inheritedFrom": {
7290
+ "name": "AbstractProperty",
7291
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7292
+ }
7058
7293
  },
7059
7294
  {
7060
7295
  "kind": "method",
7061
- "name": "shouldBeShown",
7062
- "return": {
7063
- "type": {
7064
- "text": "boolean"
7065
- }
7066
- },
7296
+ "name": "_onAfterValueChange",
7067
7297
  "parameters": [
7068
7298
  {
7069
- "name": "component",
7299
+ "name": "key",
7070
7300
  "type": {
7071
- "text": "Component"
7301
+ "text": "string"
7072
7302
  }
7073
7303
  },
7074
7304
  {
7075
- "name": "counting",
7076
- "default": "false",
7305
+ "name": "value",
7077
7306
  "type": {
7078
- "text": "boolean"
7307
+ "text": "any"
7079
7308
  }
7080
7309
  }
7081
- ]
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
+ }
7082
7323
  },
7083
7324
  {
7084
- "kind": "method",
7085
- "name": "renderComponent",
7086
- "return": {
7087
- "type": {
7088
- "text": "TemplateResult"
7089
- }
7325
+ "name": "property-change",
7326
+ "type": {
7327
+ "text": "CustomEvent"
7090
7328
  },
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
- ]
7329
+ "inheritedFrom": {
7330
+ "name": "AbstractProperty",
7331
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7332
+ }
7105
7333
  }
7106
7334
  ],
7107
7335
  "attributes": [
7108
7336
  {
7109
- "name": "scene",
7337
+ "name": "value",
7110
7338
  "type": {
7111
- "text": "Scene | undefined"
7339
+ "text": "Properties | undefined"
7112
7340
  },
7113
- "fieldName": "scene"
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"
7114
7358
  }
7115
7359
  ],
7116
7360
  "superclass": {
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"
7361
+ "name": "AbstractProperty",
7362
+ "module": "/src/modeller/property-sidebar/abstract-property"
7130
7363
  }
7131
7364
  }
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
- }
7143
7365
  ],
7144
7366
  "exports": [
7145
7367
  {
7146
7368
  "kind": "js",
7147
- "name": "BoxPaddingEditorStyles",
7369
+ "name": "PropertyShapes",
7148
7370
  "declaration": {
7149
- "name": "BoxPaddingEditorStyles",
7150
- "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
7371
+ "name": "PropertyShapes",
7372
+ "module": "src/modeller/property-sidebar/shapes/shapes.ts"
7151
7373
  }
7152
7374
  }
7153
7375
  ]
7154
7376
  },
7155
7377
  {
7156
7378
  "kind": "javascript-module",
7157
- "path": "src/modeller/property-sidebar/shapes/shapes.ts",
7379
+ "path": "src/modeller/property-sidebar/styles/styles.ts",
7158
7380
  "declarations": [
7159
7381
  {
7160
7382
  "kind": "class",
7161
7383
  "description": "",
7162
- "name": "PropertyShapes",
7384
+ "name": "PropertyStyles",
7163
7385
  "members": [
7164
7386
  {
7165
7387
  "kind": "field",
7166
7388
  "name": "value",
7167
7389
  "type": {
7168
- "text": "Properties | undefined"
7390
+ "text": "any"
7169
7391
  },
7392
+ "default": "{}",
7170
7393
  "attribute": "value"
7171
7394
  },
7172
- {
7173
- "kind": "field",
7174
- "name": "bounds",
7175
- "type": {
7176
- "text": "BOUNDS | null"
7177
- },
7178
- "default": "null",
7179
- "attribute": "bounds"
7180
- },
7181
7395
  {
7182
7396
  "kind": "field",
7183
7397
  "name": "selected",
@@ -7188,68 +7402,21 @@
7188
7402
  "attribute": "selected"
7189
7403
  },
7190
7404
  {
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
- ]
7405
+ "kind": "field",
7406
+ "name": "fonts",
7407
+ "type": {
7408
+ "text": "any[]"
7409
+ },
7410
+ "default": "[]",
7411
+ "attribute": "fonts"
7241
7412
  },
7242
7413
  {
7243
- "kind": "method",
7244
- "name": "_isClassIdentifiable",
7245
- "parameters": [
7246
- {
7247
- "name": "selected",
7248
- "type": {
7249
- "text": "Component[]"
7250
- }
7251
- }
7252
- ]
7414
+ "kind": "field",
7415
+ "name": "fontAvailable",
7416
+ "type": {
7417
+ "text": "boolean"
7418
+ },
7419
+ "default": "false"
7253
7420
  },
7254
7421
  {
7255
7422
  "kind": "method",
@@ -7265,15 +7432,19 @@
7265
7432
  },
7266
7433
  {
7267
7434
  "kind": "method",
7268
- "name": "_is3dish",
7435
+ "name": "_onValueChange",
7269
7436
  "parameters": [
7270
7437
  {
7271
- "name": "selected",
7438
+ "name": "e",
7272
7439
  "type": {
7273
- "text": "Component[]"
7440
+ "text": "Event"
7274
7441
  }
7275
7442
  }
7276
- ]
7443
+ ],
7444
+ "inheritedFrom": {
7445
+ "name": "AbstractProperty",
7446
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7447
+ }
7277
7448
  },
7278
7449
  {
7279
7450
  "kind": "method",
@@ -7314,62 +7485,57 @@
7314
7485
  }
7315
7486
  }
7316
7487
  ],
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
7488
  "attributes": [
7336
7489
  {
7337
7490
  "name": "value",
7338
7491
  "type": {
7339
- "text": "Properties | undefined"
7492
+ "text": "any"
7340
7493
  },
7494
+ "default": "{}",
7341
7495
  "fieldName": "value"
7342
7496
  },
7343
7497
  {
7344
- "name": "bounds",
7498
+ "name": "selected",
7345
7499
  "type": {
7346
- "text": "BOUNDS | null"
7500
+ "text": "Component[]"
7347
7501
  },
7348
- "default": "null",
7349
- "fieldName": "bounds"
7502
+ "default": "[]",
7503
+ "fieldName": "selected"
7350
7504
  },
7351
7505
  {
7352
- "name": "selected",
7506
+ "name": "fonts",
7353
7507
  "type": {
7354
- "text": "Component[]"
7508
+ "text": "any[]"
7355
7509
  },
7356
7510
  "default": "[]",
7357
- "fieldName": "selected"
7511
+ "fieldName": "fonts"
7358
7512
  }
7359
7513
  ],
7360
7514
  "superclass": {
7361
7515
  "name": "AbstractProperty",
7362
- "module": "/src/modeller/property-sidebar/abstract-property"
7363
- }
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
+ ]
7364
7530
  }
7365
7531
  ],
7366
7532
  "exports": [
7367
7533
  {
7368
7534
  "kind": "js",
7369
- "name": "PropertyShapes",
7535
+ "name": "PropertyStyles",
7370
7536
  "declaration": {
7371
- "name": "PropertyShapes",
7372
- "module": "src/modeller/property-sidebar/shapes/shapes.ts"
7537
+ "name": "PropertyStyles",
7538
+ "module": "src/modeller/property-sidebar/styles/styles.ts"
7373
7539
  }
7374
7540
  }
7375
7541
  ]
@@ -7720,172 +7886,6 @@
7720
7886
  }
7721
7887
  }
7722
7888
  ]
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
  }