@fmsim/board 1.0.77 → 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
  ],
@@ -7117,16 +6877,499 @@
7117
6877
  "text": "any"
7118
6878
  }
7119
6879
  }
7120
- ]
6880
+ ]
6881
+ }
6882
+ ],
6883
+ "exports": [
6884
+ {
6885
+ "kind": "js",
6886
+ "name": "convert",
6887
+ "declaration": {
6888
+ "name": "convert",
6889
+ "module": "src/modeller/property-sidebar/effects/value-converter.ts"
6890
+ }
6891
+ }
6892
+ ]
6893
+ },
6894
+ {
6895
+ "kind": "javascript-module",
6896
+ "path": "src/modeller/property-sidebar/inspector/inspector.ts",
6897
+ "declarations": [
6898
+ {
6899
+ "kind": "class",
6900
+ "description": "",
6901
+ "name": "SceneInspector",
6902
+ "members": [
6903
+ {
6904
+ "kind": "field",
6905
+ "name": "scene",
6906
+ "type": {
6907
+ "text": "Scene | undefined"
6908
+ },
6909
+ "attribute": "scene"
6910
+ },
6911
+ {
6912
+ "kind": "field",
6913
+ "name": "searchText",
6914
+ "type": {
6915
+ "text": "string"
6916
+ },
6917
+ "privacy": "private",
6918
+ "default": "''"
6919
+ },
6920
+ {
6921
+ "kind": "field",
6922
+ "name": "_extendedMap",
6923
+ "type": {
6924
+ "text": "any"
6925
+ },
6926
+ "privacy": "private"
6927
+ },
6928
+ {
6929
+ "kind": "field",
6930
+ "name": "show",
6931
+ "type": {
6932
+ "text": "boolean"
6933
+ },
6934
+ "privacy": "private",
6935
+ "default": "false"
6936
+ },
6937
+ {
6938
+ "kind": "field",
6939
+ "name": "count",
6940
+ "type": {
6941
+ "text": "number"
6942
+ },
6943
+ "privacy": "private",
6944
+ "default": "-1"
6945
+ },
6946
+ {
6947
+ "kind": "method",
6948
+ "name": "disconnectScene",
6949
+ "parameters": [
6950
+ {
6951
+ "name": "scene",
6952
+ "optional": true,
6953
+ "type": {
6954
+ "text": "Scene"
6955
+ }
6956
+ }
6957
+ ]
6958
+ },
6959
+ {
6960
+ "kind": "method",
6961
+ "name": "refresh"
6962
+ },
6963
+ {
6964
+ "kind": "method",
6965
+ "name": "_onclick",
6966
+ "parameters": [
6967
+ {
6968
+ "name": "e",
6969
+ "type": {
6970
+ "text": "MouseEvent"
6971
+ }
6972
+ }
6973
+ ]
6974
+ },
6975
+ {
6976
+ "kind": "method",
6977
+ "name": "_ondblclick",
6978
+ "parameters": [
6979
+ {
6980
+ "name": "e",
6981
+ "type": {
6982
+ "text": "MouseEvent"
6983
+ }
6984
+ }
6985
+ ]
6986
+ },
6987
+ {
6988
+ "kind": "field",
6989
+ "name": "extendedMap",
6990
+ "readonly": true
6991
+ },
6992
+ {
6993
+ "kind": "method",
6994
+ "name": "getNodeHandleClass",
6995
+ "parameters": [
6996
+ {
6997
+ "name": "component",
6998
+ "type": {
6999
+ "text": "Component"
7000
+ }
7001
+ }
7002
+ ]
7003
+ },
7004
+ {
7005
+ "kind": "method",
7006
+ "name": "isExtended",
7007
+ "parameters": [
7008
+ {
7009
+ "name": "component",
7010
+ "type": {
7011
+ "text": "Component"
7012
+ }
7013
+ }
7014
+ ]
7015
+ },
7016
+ {
7017
+ "kind": "method",
7018
+ "name": "toggleExtended",
7019
+ "parameters": [
7020
+ {
7021
+ "name": "component",
7022
+ "type": {
7023
+ "text": "Component"
7024
+ }
7025
+ }
7026
+ ]
7027
+ },
7028
+ {
7029
+ "kind": "method",
7030
+ "name": "toggleHidden",
7031
+ "parameters": [
7032
+ {
7033
+ "name": "component",
7034
+ "type": {
7035
+ "text": "Component"
7036
+ }
7037
+ }
7038
+ ]
7039
+ },
7040
+ {
7041
+ "kind": "method",
7042
+ "name": "selectComponent",
7043
+ "parameters": [
7044
+ {
7045
+ "name": "component",
7046
+ "type": {
7047
+ "text": "Component"
7048
+ }
7049
+ },
7050
+ {
7051
+ "name": "append",
7052
+ "default": "false",
7053
+ "type": {
7054
+ "text": "boolean"
7055
+ }
7056
+ }
7057
+ ]
7058
+ },
7059
+ {
7060
+ "kind": "method",
7061
+ "name": "shouldBeShown",
7062
+ "return": {
7063
+ "type": {
7064
+ "text": "boolean"
7065
+ }
7066
+ },
7067
+ "parameters": [
7068
+ {
7069
+ "name": "component",
7070
+ "type": {
7071
+ "text": "Component"
7072
+ }
7073
+ },
7074
+ {
7075
+ "name": "counting",
7076
+ "default": "false",
7077
+ "type": {
7078
+ "text": "boolean"
7079
+ }
7080
+ }
7081
+ ]
7082
+ },
7083
+ {
7084
+ "kind": "method",
7085
+ "name": "renderComponent",
7086
+ "return": {
7087
+ "type": {
7088
+ "text": "TemplateResult"
7089
+ }
7090
+ },
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
+ ]
7105
+ }
7106
+ ],
7107
+ "attributes": [
7108
+ {
7109
+ "name": "scene",
7110
+ "type": {
7111
+ "text": "Scene | undefined"
7112
+ },
7113
+ "fieldName": "scene"
7114
+ }
7115
+ ],
7116
+ "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"
7130
+ }
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
+ }
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": [
7164
+ {
7165
+ "kind": "field",
7166
+ "name": "value",
7167
+ "type": {
7168
+ "text": "Properties | undefined"
7169
+ },
7170
+ "attribute": "value"
7171
+ },
7172
+ {
7173
+ "kind": "field",
7174
+ "name": "bounds",
7175
+ "type": {
7176
+ "text": "BOUNDS | null"
7177
+ },
7178
+ "default": "null",
7179
+ "attribute": "bounds"
7180
+ },
7181
+ {
7182
+ "kind": "field",
7183
+ "name": "selected",
7184
+ "type": {
7185
+ "text": "Component[]"
7186
+ },
7187
+ "default": "[]",
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
+ ]
7241
+ },
7242
+ {
7243
+ "kind": "method",
7244
+ "name": "_isClassIdentifiable",
7245
+ "parameters": [
7246
+ {
7247
+ "name": "selected",
7248
+ "type": {
7249
+ "text": "Component[]"
7250
+ }
7251
+ }
7252
+ ]
7253
+ },
7254
+ {
7255
+ "kind": "method",
7256
+ "name": "_isLine",
7257
+ "parameters": [
7258
+ {
7259
+ "name": "selected",
7260
+ "type": {
7261
+ "text": "Component[]"
7262
+ }
7263
+ }
7264
+ ]
7265
+ },
7266
+ {
7267
+ "kind": "method",
7268
+ "name": "_is3dish",
7269
+ "parameters": [
7270
+ {
7271
+ "name": "selected",
7272
+ "type": {
7273
+ "text": "Component[]"
7274
+ }
7275
+ }
7276
+ ]
7277
+ },
7278
+ {
7279
+ "kind": "method",
7280
+ "name": "_getValueFromEventTarget",
7281
+ "parameters": [
7282
+ {
7283
+ "name": "element",
7284
+ "type": {
7285
+ "text": "HTMLElement"
7286
+ }
7287
+ }
7288
+ ],
7289
+ "inheritedFrom": {
7290
+ "name": "AbstractProperty",
7291
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7292
+ }
7293
+ },
7294
+ {
7295
+ "kind": "method",
7296
+ "name": "_onAfterValueChange",
7297
+ "parameters": [
7298
+ {
7299
+ "name": "key",
7300
+ "type": {
7301
+ "text": "string"
7302
+ }
7303
+ },
7304
+ {
7305
+ "name": "value",
7306
+ "type": {
7307
+ "text": "any"
7308
+ }
7309
+ }
7310
+ ],
7311
+ "inheritedFrom": {
7312
+ "name": "AbstractProperty",
7313
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7314
+ }
7315
+ }
7316
+ ],
7317
+ "events": [
7318
+ {
7319
+ "name": "bounds-change",
7320
+ "type": {
7321
+ "text": "CustomEvent"
7322
+ }
7323
+ },
7324
+ {
7325
+ "name": "property-change",
7326
+ "type": {
7327
+ "text": "CustomEvent"
7328
+ },
7329
+ "inheritedFrom": {
7330
+ "name": "AbstractProperty",
7331
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7332
+ }
7333
+ }
7334
+ ],
7335
+ "attributes": [
7336
+ {
7337
+ "name": "value",
7338
+ "type": {
7339
+ "text": "Properties | undefined"
7340
+ },
7341
+ "fieldName": "value"
7342
+ },
7343
+ {
7344
+ "name": "bounds",
7345
+ "type": {
7346
+ "text": "BOUNDS | null"
7347
+ },
7348
+ "default": "null",
7349
+ "fieldName": "bounds"
7350
+ },
7351
+ {
7352
+ "name": "selected",
7353
+ "type": {
7354
+ "text": "Component[]"
7355
+ },
7356
+ "default": "[]",
7357
+ "fieldName": "selected"
7358
+ }
7359
+ ],
7360
+ "superclass": {
7361
+ "name": "AbstractProperty",
7362
+ "module": "/src/modeller/property-sidebar/abstract-property"
7363
+ }
7121
7364
  }
7122
7365
  ],
7123
7366
  "exports": [
7124
7367
  {
7125
7368
  "kind": "js",
7126
- "name": "convert",
7369
+ "name": "PropertyShapes",
7127
7370
  "declaration": {
7128
- "name": "convert",
7129
- "module": "src/modeller/property-sidebar/effects/value-converter.ts"
7371
+ "name": "PropertyShapes",
7372
+ "module": "src/modeller/property-sidebar/shapes/shapes.ts"
7130
7373
  }
7131
7374
  }
7132
7375
  ]
@@ -7643,249 +7886,6 @@
7643
7886
  }
7644
7887
  }
7645
7888
  ]
7646
- },
7647
- {
7648
- "kind": "javascript-module",
7649
- "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
7650
- "declarations": [
7651
- {
7652
- "kind": "variable",
7653
- "name": "BoxPaddingEditorStyles",
7654
- "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; } `"
7655
- }
7656
- ],
7657
- "exports": [
7658
- {
7659
- "kind": "js",
7660
- "name": "BoxPaddingEditorStyles",
7661
- "declaration": {
7662
- "name": "BoxPaddingEditorStyles",
7663
- "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
7664
- }
7665
- }
7666
- ]
7667
- },
7668
- {
7669
- "kind": "javascript-module",
7670
- "path": "src/modeller/property-sidebar/shapes/shapes.ts",
7671
- "declarations": [
7672
- {
7673
- "kind": "class",
7674
- "description": "",
7675
- "name": "PropertyShapes",
7676
- "members": [
7677
- {
7678
- "kind": "field",
7679
- "name": "value",
7680
- "type": {
7681
- "text": "Properties | undefined"
7682
- },
7683
- "attribute": "value"
7684
- },
7685
- {
7686
- "kind": "field",
7687
- "name": "bounds",
7688
- "type": {
7689
- "text": "BOUNDS | null"
7690
- },
7691
- "default": "null",
7692
- "attribute": "bounds"
7693
- },
7694
- {
7695
- "kind": "field",
7696
- "name": "selected",
7697
- "type": {
7698
- "text": "Component[]"
7699
- },
7700
- "default": "[]",
7701
- "attribute": "selected"
7702
- },
7703
- {
7704
- "kind": "method",
7705
- "name": "_onValueChange",
7706
- "parameters": [
7707
- {
7708
- "name": "e",
7709
- "type": {
7710
- "text": "Event"
7711
- }
7712
- }
7713
- ],
7714
- "inheritedFrom": {
7715
- "name": "AbstractProperty",
7716
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7717
- }
7718
- },
7719
- {
7720
- "kind": "method",
7721
- "name": "_hasTextProperty",
7722
- "parameters": [
7723
- {
7724
- "name": "selected",
7725
- "type": {
7726
- "text": "Component[]"
7727
- }
7728
- }
7729
- ]
7730
- },
7731
- {
7732
- "kind": "method",
7733
- "name": "_hasProperties",
7734
- "parameters": [
7735
- {
7736
- "name": "selected",
7737
- "type": {
7738
- "text": "Component[]"
7739
- }
7740
- }
7741
- ]
7742
- },
7743
- {
7744
- "kind": "method",
7745
- "name": "_isIdentifiable",
7746
- "parameters": [
7747
- {
7748
- "name": "selected",
7749
- "type": {
7750
- "text": "Component[]"
7751
- }
7752
- }
7753
- ]
7754
- },
7755
- {
7756
- "kind": "method",
7757
- "name": "_isClassIdentifiable",
7758
- "parameters": [
7759
- {
7760
- "name": "selected",
7761
- "type": {
7762
- "text": "Component[]"
7763
- }
7764
- }
7765
- ]
7766
- },
7767
- {
7768
- "kind": "method",
7769
- "name": "_isLine",
7770
- "parameters": [
7771
- {
7772
- "name": "selected",
7773
- "type": {
7774
- "text": "Component[]"
7775
- }
7776
- }
7777
- ]
7778
- },
7779
- {
7780
- "kind": "method",
7781
- "name": "_is3dish",
7782
- "parameters": [
7783
- {
7784
- "name": "selected",
7785
- "type": {
7786
- "text": "Component[]"
7787
- }
7788
- }
7789
- ]
7790
- },
7791
- {
7792
- "kind": "method",
7793
- "name": "_getValueFromEventTarget",
7794
- "parameters": [
7795
- {
7796
- "name": "element",
7797
- "type": {
7798
- "text": "HTMLElement"
7799
- }
7800
- }
7801
- ],
7802
- "inheritedFrom": {
7803
- "name": "AbstractProperty",
7804
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7805
- }
7806
- },
7807
- {
7808
- "kind": "method",
7809
- "name": "_onAfterValueChange",
7810
- "parameters": [
7811
- {
7812
- "name": "key",
7813
- "type": {
7814
- "text": "string"
7815
- }
7816
- },
7817
- {
7818
- "name": "value",
7819
- "type": {
7820
- "text": "any"
7821
- }
7822
- }
7823
- ],
7824
- "inheritedFrom": {
7825
- "name": "AbstractProperty",
7826
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7827
- }
7828
- }
7829
- ],
7830
- "events": [
7831
- {
7832
- "name": "bounds-change",
7833
- "type": {
7834
- "text": "CustomEvent"
7835
- }
7836
- },
7837
- {
7838
- "name": "property-change",
7839
- "type": {
7840
- "text": "CustomEvent"
7841
- },
7842
- "inheritedFrom": {
7843
- "name": "AbstractProperty",
7844
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7845
- }
7846
- }
7847
- ],
7848
- "attributes": [
7849
- {
7850
- "name": "value",
7851
- "type": {
7852
- "text": "Properties | undefined"
7853
- },
7854
- "fieldName": "value"
7855
- },
7856
- {
7857
- "name": "bounds",
7858
- "type": {
7859
- "text": "BOUNDS | null"
7860
- },
7861
- "default": "null",
7862
- "fieldName": "bounds"
7863
- },
7864
- {
7865
- "name": "selected",
7866
- "type": {
7867
- "text": "Component[]"
7868
- },
7869
- "default": "[]",
7870
- "fieldName": "selected"
7871
- }
7872
- ],
7873
- "superclass": {
7874
- "name": "AbstractProperty",
7875
- "module": "/src/modeller/property-sidebar/abstract-property"
7876
- }
7877
- }
7878
- ],
7879
- "exports": [
7880
- {
7881
- "kind": "js",
7882
- "name": "PropertyShapes",
7883
- "declaration": {
7884
- "name": "PropertyShapes",
7885
- "module": "src/modeller/property-sidebar/shapes/shapes.ts"
7886
- }
7887
- }
7888
- ]
7889
7889
  }
7890
7890
  ]
7891
7891
  }