@fmsim/board 1.0.64 → 1.0.65

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",
@@ -1656,91 +1741,6 @@
1656
1741
  "declarations": [],
1657
1742
  "exports": []
1658
1743
  },
1659
- {
1660
- "kind": "javascript-module",
1661
- "path": "stories/restful-attachment-selector.stories.ts",
1662
- "declarations": [
1663
- {
1664
- "kind": "variable",
1665
- "name": "meta",
1666
- "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"
1667
- },
1668
- {
1669
- "kind": "variable",
1670
- "name": "Default",
1671
- "type": {
1672
- "text": "Story"
1673
- },
1674
- "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' } }"
1675
- },
1676
- {
1677
- "kind": "variable",
1678
- "name": "WithCategory",
1679
- "type": {
1680
- "text": "Story"
1681
- },
1682
- "default": "{ ...Default, args: { ...Default.args, category: 'document' } }"
1683
- },
1684
- {
1685
- "kind": "variable",
1686
- "name": "ReadOnly",
1687
- "type": {
1688
- "text": "Story"
1689
- },
1690
- "default": "{ ...Default, args: { ...Default.args, creatable: false } }"
1691
- },
1692
- {
1693
- "kind": "variable",
1694
- "name": "WithTestData",
1695
- "type": {
1696
- "text": "Story"
1697
- },
1698
- "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' } ] } } }"
1699
- }
1700
- ],
1701
- "exports": [
1702
- {
1703
- "kind": "js",
1704
- "name": "default",
1705
- "declaration": {
1706
- "name": "meta",
1707
- "module": "stories/restful-attachment-selector.stories.ts"
1708
- }
1709
- },
1710
- {
1711
- "kind": "js",
1712
- "name": "Default",
1713
- "declaration": {
1714
- "name": "Default",
1715
- "module": "stories/restful-attachment-selector.stories.ts"
1716
- }
1717
- },
1718
- {
1719
- "kind": "js",
1720
- "name": "WithCategory",
1721
- "declaration": {
1722
- "name": "WithCategory",
1723
- "module": "stories/restful-attachment-selector.stories.ts"
1724
- }
1725
- },
1726
- {
1727
- "kind": "js",
1728
- "name": "ReadOnly",
1729
- "declaration": {
1730
- "name": "ReadOnly",
1731
- "module": "stories/restful-attachment-selector.stories.ts"
1732
- }
1733
- },
1734
- {
1735
- "kind": "js",
1736
- "name": "WithTestData",
1737
- "declaration": {
1738
- "name": "WithTestData",
1739
- "module": "stories/restful-attachment-selector.stories.ts"
1740
- }
1741
- }
1742
- ]
1743
- },
1744
1744
  {
1745
1745
  "kind": "javascript-module",
1746
1746
  "path": "src/component/etc.ts",
@@ -6293,89 +6293,329 @@
6293
6293
  },
6294
6294
  {
6295
6295
  "kind": "javascript-module",
6296
- "path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
6297
- "declarations": [
6298
- {
6299
- "kind": "variable",
6300
- "name": "EffectsSharedStyle",
6301
- "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; } `"
6302
- }
6303
- ],
6304
- "exports": [
6305
- {
6306
- "kind": "js",
6307
- "name": "EffectsSharedStyle",
6308
- "declaration": {
6309
- "name": "EffectsSharedStyle",
6310
- "module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
6311
- }
6312
- }
6313
- ]
6314
- },
6315
- {
6316
- "kind": "javascript-module",
6317
- "path": "src/modeller/property-sidebar/effects/effects.ts",
6296
+ "path": "src/modeller/property-sidebar/inspector/inspector.ts",
6318
6297
  "declarations": [
6319
6298
  {
6320
6299
  "kind": "class",
6321
6300
  "description": "",
6322
- "name": "PropertyEffects",
6301
+ "name": "SceneInspector",
6323
6302
  "members": [
6324
6303
  {
6325
6304
  "kind": "field",
6326
- "name": "value",
6305
+ "name": "scene",
6327
6306
  "type": {
6328
- "text": "Properties | undefined"
6307
+ "text": "Scene | undefined"
6329
6308
  },
6330
- "attribute": "value"
6309
+ "attribute": "scene"
6331
6310
  },
6332
6311
  {
6333
6312
  "kind": "field",
6334
- "name": "scene",
6313
+ "name": "searchText",
6335
6314
  "type": {
6336
- "text": "Scene | undefined"
6315
+ "text": "string"
6337
6316
  },
6338
- "attribute": "scene"
6317
+ "privacy": "private",
6318
+ "default": "''"
6339
6319
  },
6340
6320
  {
6341
6321
  "kind": "field",
6342
- "name": "selected",
6322
+ "name": "_extendedMap",
6343
6323
  "type": {
6344
- "text": "Component[]"
6324
+ "text": "any"
6345
6325
  },
6346
- "default": "[]",
6347
- "attribute": "selected"
6326
+ "privacy": "private"
6348
6327
  },
6349
6328
  {
6350
6329
  "kind": "field",
6351
- "name": "scopedElements",
6352
- "static": true,
6353
- "readonly": true
6330
+ "name": "show",
6331
+ "type": {
6332
+ "text": "boolean"
6333
+ },
6334
+ "privacy": "private",
6335
+ "default": "false"
6336
+ },
6337
+ {
6338
+ "kind": "field",
6339
+ "name": "count",
6340
+ "type": {
6341
+ "text": "number"
6342
+ },
6343
+ "privacy": "private",
6344
+ "default": "-1"
6354
6345
  },
6355
6346
  {
6356
6347
  "kind": "method",
6357
- "name": "_onValueChange",
6348
+ "name": "disconnectScene",
6358
6349
  "parameters": [
6359
6350
  {
6360
- "name": "e",
6351
+ "name": "scene",
6352
+ "optional": true,
6361
6353
  "type": {
6362
- "text": "Event"
6354
+ "text": "Scene"
6363
6355
  }
6364
6356
  }
6365
- ],
6366
- "inheritedFrom": {
6367
- "name": "AbstractProperty",
6368
- "module": "src/modeller/property-sidebar/abstract-property.ts"
6369
- }
6357
+ ]
6370
6358
  },
6371
6359
  {
6372
6360
  "kind": "method",
6373
- "name": "_getValueFromEventTarget",
6361
+ "name": "refresh"
6362
+ },
6363
+ {
6364
+ "kind": "method",
6365
+ "name": "_onclick",
6374
6366
  "parameters": [
6375
6367
  {
6376
- "name": "element",
6368
+ "name": "e",
6377
6369
  "type": {
6378
- "text": "HTMLElement"
6370
+ "text": "MouseEvent"
6371
+ }
6372
+ }
6373
+ ]
6374
+ },
6375
+ {
6376
+ "kind": "method",
6377
+ "name": "_ondblclick",
6378
+ "parameters": [
6379
+ {
6380
+ "name": "e",
6381
+ "type": {
6382
+ "text": "MouseEvent"
6383
+ }
6384
+ }
6385
+ ]
6386
+ },
6387
+ {
6388
+ "kind": "field",
6389
+ "name": "extendedMap",
6390
+ "readonly": true
6391
+ },
6392
+ {
6393
+ "kind": "method",
6394
+ "name": "getNodeHandleClass",
6395
+ "parameters": [
6396
+ {
6397
+ "name": "component",
6398
+ "type": {
6399
+ "text": "Component"
6400
+ }
6401
+ }
6402
+ ]
6403
+ },
6404
+ {
6405
+ "kind": "method",
6406
+ "name": "isExtended",
6407
+ "parameters": [
6408
+ {
6409
+ "name": "component",
6410
+ "type": {
6411
+ "text": "Component"
6412
+ }
6413
+ }
6414
+ ]
6415
+ },
6416
+ {
6417
+ "kind": "method",
6418
+ "name": "toggleExtended",
6419
+ "parameters": [
6420
+ {
6421
+ "name": "component",
6422
+ "type": {
6423
+ "text": "Component"
6424
+ }
6425
+ }
6426
+ ]
6427
+ },
6428
+ {
6429
+ "kind": "method",
6430
+ "name": "toggleHidden",
6431
+ "parameters": [
6432
+ {
6433
+ "name": "component",
6434
+ "type": {
6435
+ "text": "Component"
6436
+ }
6437
+ }
6438
+ ]
6439
+ },
6440
+ {
6441
+ "kind": "method",
6442
+ "name": "selectComponent",
6443
+ "parameters": [
6444
+ {
6445
+ "name": "component",
6446
+ "type": {
6447
+ "text": "Component"
6448
+ }
6449
+ },
6450
+ {
6451
+ "name": "append",
6452
+ "default": "false",
6453
+ "type": {
6454
+ "text": "boolean"
6455
+ }
6456
+ }
6457
+ ]
6458
+ },
6459
+ {
6460
+ "kind": "method",
6461
+ "name": "shouldBeShown",
6462
+ "return": {
6463
+ "type": {
6464
+ "text": "boolean"
6465
+ }
6466
+ },
6467
+ "parameters": [
6468
+ {
6469
+ "name": "component",
6470
+ "type": {
6471
+ "text": "Component"
6472
+ }
6473
+ },
6474
+ {
6475
+ "name": "counting",
6476
+ "default": "false",
6477
+ "type": {
6478
+ "text": "boolean"
6479
+ }
6480
+ }
6481
+ ]
6482
+ },
6483
+ {
6484
+ "kind": "method",
6485
+ "name": "renderComponent",
6486
+ "return": {
6487
+ "type": {
6488
+ "text": "TemplateResult"
6489
+ }
6490
+ },
6491
+ "parameters": [
6492
+ {
6493
+ "name": "component",
6494
+ "type": {
6495
+ "text": "Component"
6496
+ }
6497
+ },
6498
+ {
6499
+ "name": "depth",
6500
+ "type": {
6501
+ "text": "number"
6502
+ }
6503
+ }
6504
+ ]
6505
+ }
6506
+ ],
6507
+ "attributes": [
6508
+ {
6509
+ "name": "scene",
6510
+ "type": {
6511
+ "text": "Scene | undefined"
6512
+ },
6513
+ "fieldName": "scene"
6514
+ }
6515
+ ],
6516
+ "superclass": {
6517
+ "name": "LitElement",
6518
+ "package": "lit"
6519
+ },
6520
+ "customElement": true
6521
+ }
6522
+ ],
6523
+ "exports": [
6524
+ {
6525
+ "kind": "js",
6526
+ "name": "SceneInspector",
6527
+ "declaration": {
6528
+ "name": "SceneInspector",
6529
+ "module": "src/modeller/property-sidebar/inspector/inspector.ts"
6530
+ }
6531
+ }
6532
+ ]
6533
+ },
6534
+ {
6535
+ "kind": "javascript-module",
6536
+ "path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
6537
+ "declarations": [
6538
+ {
6539
+ "kind": "variable",
6540
+ "name": "EffectsSharedStyle",
6541
+ "default": "css` :host { display: grid; grid-template-columns: repeat(10, 1fr); grid-gap: 5px; grid-auto-rows: minmax(24px, auto); align-items: center; } * { align-self: stretch; } label { grid-column: span 3; text-align: right; text-transform: capitalize; align-self: center; } input, select, ox-input-angle, ox-input-color, [custom-editor] { grid-column: span 7; } input, select, ox-input-angle input, ox-input-color input, [custom-editor] input { border: var(--property-sidebar-fieldset-border); } ox-input-data { height: 300px; } input[type='checkbox'] { grid-column: 4 / 5; align-self: center; } label.checkbox-label { grid-column: span 6; text-align: left; } [fullwidth] { grid-column: 1 / -1; } `"
6542
+ }
6543
+ ],
6544
+ "exports": [
6545
+ {
6546
+ "kind": "js",
6547
+ "name": "EffectsSharedStyle",
6548
+ "declaration": {
6549
+ "name": "EffectsSharedStyle",
6550
+ "module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
6551
+ }
6552
+ }
6553
+ ]
6554
+ },
6555
+ {
6556
+ "kind": "javascript-module",
6557
+ "path": "src/modeller/property-sidebar/effects/effects.ts",
6558
+ "declarations": [
6559
+ {
6560
+ "kind": "class",
6561
+ "description": "",
6562
+ "name": "PropertyEffects",
6563
+ "members": [
6564
+ {
6565
+ "kind": "field",
6566
+ "name": "value",
6567
+ "type": {
6568
+ "text": "Properties | undefined"
6569
+ },
6570
+ "attribute": "value"
6571
+ },
6572
+ {
6573
+ "kind": "field",
6574
+ "name": "scene",
6575
+ "type": {
6576
+ "text": "Scene | undefined"
6577
+ },
6578
+ "attribute": "scene"
6579
+ },
6580
+ {
6581
+ "kind": "field",
6582
+ "name": "selected",
6583
+ "type": {
6584
+ "text": "Component[]"
6585
+ },
6586
+ "default": "[]",
6587
+ "attribute": "selected"
6588
+ },
6589
+ {
6590
+ "kind": "field",
6591
+ "name": "scopedElements",
6592
+ "static": true,
6593
+ "readonly": true
6594
+ },
6595
+ {
6596
+ "kind": "method",
6597
+ "name": "_onValueChange",
6598
+ "parameters": [
6599
+ {
6600
+ "name": "e",
6601
+ "type": {
6602
+ "text": "Event"
6603
+ }
6604
+ }
6605
+ ],
6606
+ "inheritedFrom": {
6607
+ "name": "AbstractProperty",
6608
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
6609
+ }
6610
+ },
6611
+ {
6612
+ "kind": "method",
6613
+ "name": "_getValueFromEventTarget",
6614
+ "parameters": [
6615
+ {
6616
+ "name": "element",
6617
+ "type": {
6618
+ "text": "HTMLElement"
6379
6619
  }
6380
6620
  }
6381
6621
  ],
@@ -6860,246 +7100,6 @@
6860
7100
  }
6861
7101
  ]
6862
7102
  },
6863
- {
6864
- "kind": "javascript-module",
6865
- "path": "src/modeller/property-sidebar/inspector/inspector.ts",
6866
- "declarations": [
6867
- {
6868
- "kind": "class",
6869
- "description": "",
6870
- "name": "SceneInspector",
6871
- "members": [
6872
- {
6873
- "kind": "field",
6874
- "name": "scene",
6875
- "type": {
6876
- "text": "Scene | undefined"
6877
- },
6878
- "attribute": "scene"
6879
- },
6880
- {
6881
- "kind": "field",
6882
- "name": "searchText",
6883
- "type": {
6884
- "text": "string"
6885
- },
6886
- "privacy": "private",
6887
- "default": "''"
6888
- },
6889
- {
6890
- "kind": "field",
6891
- "name": "_extendedMap",
6892
- "type": {
6893
- "text": "any"
6894
- },
6895
- "privacy": "private"
6896
- },
6897
- {
6898
- "kind": "field",
6899
- "name": "show",
6900
- "type": {
6901
- "text": "boolean"
6902
- },
6903
- "privacy": "private",
6904
- "default": "false"
6905
- },
6906
- {
6907
- "kind": "field",
6908
- "name": "count",
6909
- "type": {
6910
- "text": "number"
6911
- },
6912
- "privacy": "private",
6913
- "default": "-1"
6914
- },
6915
- {
6916
- "kind": "method",
6917
- "name": "disconnectScene",
6918
- "parameters": [
6919
- {
6920
- "name": "scene",
6921
- "optional": true,
6922
- "type": {
6923
- "text": "Scene"
6924
- }
6925
- }
6926
- ]
6927
- },
6928
- {
6929
- "kind": "method",
6930
- "name": "refresh"
6931
- },
6932
- {
6933
- "kind": "method",
6934
- "name": "_onclick",
6935
- "parameters": [
6936
- {
6937
- "name": "e",
6938
- "type": {
6939
- "text": "MouseEvent"
6940
- }
6941
- }
6942
- ]
6943
- },
6944
- {
6945
- "kind": "method",
6946
- "name": "_ondblclick",
6947
- "parameters": [
6948
- {
6949
- "name": "e",
6950
- "type": {
6951
- "text": "MouseEvent"
6952
- }
6953
- }
6954
- ]
6955
- },
6956
- {
6957
- "kind": "field",
6958
- "name": "extendedMap",
6959
- "readonly": true
6960
- },
6961
- {
6962
- "kind": "method",
6963
- "name": "getNodeHandleClass",
6964
- "parameters": [
6965
- {
6966
- "name": "component",
6967
- "type": {
6968
- "text": "Component"
6969
- }
6970
- }
6971
- ]
6972
- },
6973
- {
6974
- "kind": "method",
6975
- "name": "isExtended",
6976
- "parameters": [
6977
- {
6978
- "name": "component",
6979
- "type": {
6980
- "text": "Component"
6981
- }
6982
- }
6983
- ]
6984
- },
6985
- {
6986
- "kind": "method",
6987
- "name": "toggleExtended",
6988
- "parameters": [
6989
- {
6990
- "name": "component",
6991
- "type": {
6992
- "text": "Component"
6993
- }
6994
- }
6995
- ]
6996
- },
6997
- {
6998
- "kind": "method",
6999
- "name": "toggleHidden",
7000
- "parameters": [
7001
- {
7002
- "name": "component",
7003
- "type": {
7004
- "text": "Component"
7005
- }
7006
- }
7007
- ]
7008
- },
7009
- {
7010
- "kind": "method",
7011
- "name": "selectComponent",
7012
- "parameters": [
7013
- {
7014
- "name": "component",
7015
- "type": {
7016
- "text": "Component"
7017
- }
7018
- },
7019
- {
7020
- "name": "append",
7021
- "default": "false",
7022
- "type": {
7023
- "text": "boolean"
7024
- }
7025
- }
7026
- ]
7027
- },
7028
- {
7029
- "kind": "method",
7030
- "name": "shouldBeShown",
7031
- "return": {
7032
- "type": {
7033
- "text": "boolean"
7034
- }
7035
- },
7036
- "parameters": [
7037
- {
7038
- "name": "component",
7039
- "type": {
7040
- "text": "Component"
7041
- }
7042
- },
7043
- {
7044
- "name": "counting",
7045
- "default": "false",
7046
- "type": {
7047
- "text": "boolean"
7048
- }
7049
- }
7050
- ]
7051
- },
7052
- {
7053
- "kind": "method",
7054
- "name": "renderComponent",
7055
- "return": {
7056
- "type": {
7057
- "text": "TemplateResult"
7058
- }
7059
- },
7060
- "parameters": [
7061
- {
7062
- "name": "component",
7063
- "type": {
7064
- "text": "Component"
7065
- }
7066
- },
7067
- {
7068
- "name": "depth",
7069
- "type": {
7070
- "text": "number"
7071
- }
7072
- }
7073
- ]
7074
- }
7075
- ],
7076
- "attributes": [
7077
- {
7078
- "name": "scene",
7079
- "type": {
7080
- "text": "Scene | undefined"
7081
- },
7082
- "fieldName": "scene"
7083
- }
7084
- ],
7085
- "superclass": {
7086
- "name": "LitElement",
7087
- "package": "lit"
7088
- },
7089
- "customElement": true
7090
- }
7091
- ],
7092
- "exports": [
7093
- {
7094
- "kind": "js",
7095
- "name": "SceneInspector",
7096
- "declaration": {
7097
- "name": "SceneInspector",
7098
- "module": "src/modeller/property-sidebar/inspector/inspector.ts"
7099
- }
7100
- }
7101
- ]
7102
- },
7103
7103
  {
7104
7104
  "kind": "javascript-module",
7105
7105
  "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",