@fmsim/board 1.0.61 → 1.0.63

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.
Files changed (2) hide show
  1. package/custom-elements.json +620 -620
  2. package/package.json +4 -4
@@ -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",
@@ -1644,91 +1729,6 @@
1644
1729
  "declarations": [],
1645
1730
  "exports": []
1646
1731
  },
1647
- {
1648
- "kind": "javascript-module",
1649
- "path": "stories/restful-attachment-selector.stories.ts",
1650
- "declarations": [
1651
- {
1652
- "kind": "variable",
1653
- "name": "meta",
1654
- "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"
1655
- },
1656
- {
1657
- "kind": "variable",
1658
- "name": "Default",
1659
- "type": {
1660
- "text": "Story"
1661
- },
1662
- "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' } }"
1663
- },
1664
- {
1665
- "kind": "variable",
1666
- "name": "WithCategory",
1667
- "type": {
1668
- "text": "Story"
1669
- },
1670
- "default": "{ ...Default, args: { ...Default.args, category: 'document' } }"
1671
- },
1672
- {
1673
- "kind": "variable",
1674
- "name": "ReadOnly",
1675
- "type": {
1676
- "text": "Story"
1677
- },
1678
- "default": "{ ...Default, args: { ...Default.args, creatable: false } }"
1679
- },
1680
- {
1681
- "kind": "variable",
1682
- "name": "WithTestData",
1683
- "type": {
1684
- "text": "Story"
1685
- },
1686
- "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' } ] } } }"
1687
- }
1688
- ],
1689
- "exports": [
1690
- {
1691
- "kind": "js",
1692
- "name": "default",
1693
- "declaration": {
1694
- "name": "meta",
1695
- "module": "stories/restful-attachment-selector.stories.ts"
1696
- }
1697
- },
1698
- {
1699
- "kind": "js",
1700
- "name": "Default",
1701
- "declaration": {
1702
- "name": "Default",
1703
- "module": "stories/restful-attachment-selector.stories.ts"
1704
- }
1705
- },
1706
- {
1707
- "kind": "js",
1708
- "name": "WithCategory",
1709
- "declaration": {
1710
- "name": "WithCategory",
1711
- "module": "stories/restful-attachment-selector.stories.ts"
1712
- }
1713
- },
1714
- {
1715
- "kind": "js",
1716
- "name": "ReadOnly",
1717
- "declaration": {
1718
- "name": "ReadOnly",
1719
- "module": "stories/restful-attachment-selector.stories.ts"
1720
- }
1721
- },
1722
- {
1723
- "kind": "js",
1724
- "name": "WithTestData",
1725
- "declaration": {
1726
- "name": "WithTestData",
1727
- "module": "stories/restful-attachment-selector.stories.ts"
1728
- }
1729
- }
1730
- ]
1731
- },
1732
1732
  {
1733
1733
  "kind": "javascript-module",
1734
1734
  "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
  ],
@@ -6844,501 +7084,18 @@
6844
7084
  "name": "element",
6845
7085
  "type": {
6846
7086
  "text": "any"
6847
- }
6848
- }
6849
- ]
6850
- }
6851
- ],
6852
- "exports": [
6853
- {
6854
- "kind": "js",
6855
- "name": "convert",
6856
- "declaration": {
6857
- "name": "convert",
6858
- "module": "src/modeller/property-sidebar/effects/value-converter.ts"
6859
- }
6860
- }
6861
- ]
6862
- },
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
- {
7104
- "kind": "javascript-module",
7105
- "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
7106
- "declarations": [
7107
- {
7108
- "kind": "variable",
7109
- "name": "BoxPaddingEditorStyles",
7110
- "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; } `"
7111
- }
7112
- ],
7113
- "exports": [
7114
- {
7115
- "kind": "js",
7116
- "name": "BoxPaddingEditorStyles",
7117
- "declaration": {
7118
- "name": "BoxPaddingEditorStyles",
7119
- "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
7120
- }
7121
- }
7122
- ]
7123
- },
7124
- {
7125
- "kind": "javascript-module",
7126
- "path": "src/modeller/property-sidebar/shapes/shapes.ts",
7127
- "declarations": [
7128
- {
7129
- "kind": "class",
7130
- "description": "",
7131
- "name": "PropertyShapes",
7132
- "members": [
7133
- {
7134
- "kind": "field",
7135
- "name": "value",
7136
- "type": {
7137
- "text": "Properties | undefined"
7138
- },
7139
- "attribute": "value"
7140
- },
7141
- {
7142
- "kind": "field",
7143
- "name": "bounds",
7144
- "type": {
7145
- "text": "BOUNDS | null"
7146
- },
7147
- "default": "null",
7148
- "attribute": "bounds"
7149
- },
7150
- {
7151
- "kind": "field",
7152
- "name": "selected",
7153
- "type": {
7154
- "text": "Component[]"
7155
- },
7156
- "default": "[]",
7157
- "attribute": "selected"
7158
- },
7159
- {
7160
- "kind": "method",
7161
- "name": "_onValueChange",
7162
- "parameters": [
7163
- {
7164
- "name": "e",
7165
- "type": {
7166
- "text": "Event"
7167
- }
7168
- }
7169
- ],
7170
- "inheritedFrom": {
7171
- "name": "AbstractProperty",
7172
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7173
- }
7174
- },
7175
- {
7176
- "kind": "method",
7177
- "name": "_hasTextProperty",
7178
- "parameters": [
7179
- {
7180
- "name": "selected",
7181
- "type": {
7182
- "text": "Component[]"
7183
- }
7184
- }
7185
- ]
7186
- },
7187
- {
7188
- "kind": "method",
7189
- "name": "_hasProperties",
7190
- "parameters": [
7191
- {
7192
- "name": "selected",
7193
- "type": {
7194
- "text": "Component[]"
7195
- }
7196
- }
7197
- ]
7198
- },
7199
- {
7200
- "kind": "method",
7201
- "name": "_isIdentifiable",
7202
- "parameters": [
7203
- {
7204
- "name": "selected",
7205
- "type": {
7206
- "text": "Component[]"
7207
- }
7208
- }
7209
- ]
7210
- },
7211
- {
7212
- "kind": "method",
7213
- "name": "_isClassIdentifiable",
7214
- "parameters": [
7215
- {
7216
- "name": "selected",
7217
- "type": {
7218
- "text": "Component[]"
7219
- }
7220
- }
7221
- ]
7222
- },
7223
- {
7224
- "kind": "method",
7225
- "name": "_isLine",
7226
- "parameters": [
7227
- {
7228
- "name": "selected",
7229
- "type": {
7230
- "text": "Component[]"
7231
- }
7232
- }
7233
- ]
7234
- },
7235
- {
7236
- "kind": "method",
7237
- "name": "_is3dish",
7238
- "parameters": [
7239
- {
7240
- "name": "selected",
7241
- "type": {
7242
- "text": "Component[]"
7243
- }
7244
- }
7245
- ]
7246
- },
7247
- {
7248
- "kind": "method",
7249
- "name": "_getValueFromEventTarget",
7250
- "parameters": [
7251
- {
7252
- "name": "element",
7253
- "type": {
7254
- "text": "HTMLElement"
7255
- }
7256
- }
7257
- ],
7258
- "inheritedFrom": {
7259
- "name": "AbstractProperty",
7260
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7261
- }
7262
- },
7263
- {
7264
- "kind": "method",
7265
- "name": "_onAfterValueChange",
7266
- "parameters": [
7267
- {
7268
- "name": "key",
7269
- "type": {
7270
- "text": "string"
7271
- }
7272
- },
7273
- {
7274
- "name": "value",
7275
- "type": {
7276
- "text": "any"
7277
- }
7278
- }
7279
- ],
7280
- "inheritedFrom": {
7281
- "name": "AbstractProperty",
7282
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7283
- }
7284
- }
7285
- ],
7286
- "events": [
7287
- {
7288
- "name": "bounds-change",
7289
- "type": {
7290
- "text": "CustomEvent"
7291
- }
7292
- },
7293
- {
7294
- "name": "property-change",
7295
- "type": {
7296
- "text": "CustomEvent"
7297
- },
7298
- "inheritedFrom": {
7299
- "name": "AbstractProperty",
7300
- "module": "src/modeller/property-sidebar/abstract-property.ts"
7301
- }
7302
- }
7303
- ],
7304
- "attributes": [
7305
- {
7306
- "name": "value",
7307
- "type": {
7308
- "text": "Properties | undefined"
7309
- },
7310
- "fieldName": "value"
7311
- },
7312
- {
7313
- "name": "bounds",
7314
- "type": {
7315
- "text": "BOUNDS | null"
7316
- },
7317
- "default": "null",
7318
- "fieldName": "bounds"
7319
- },
7320
- {
7321
- "name": "selected",
7322
- "type": {
7323
- "text": "Component[]"
7324
- },
7325
- "default": "[]",
7326
- "fieldName": "selected"
7087
+ }
7327
7088
  }
7328
- ],
7329
- "superclass": {
7330
- "name": "AbstractProperty",
7331
- "module": "/src/modeller/property-sidebar/abstract-property"
7332
- }
7089
+ ]
7333
7090
  }
7334
7091
  ],
7335
7092
  "exports": [
7336
7093
  {
7337
7094
  "kind": "js",
7338
- "name": "PropertyShapes",
7095
+ "name": "convert",
7339
7096
  "declaration": {
7340
- "name": "PropertyShapes",
7341
- "module": "src/modeller/property-sidebar/shapes/shapes.ts"
7097
+ "name": "convert",
7098
+ "module": "src/modeller/property-sidebar/effects/value-converter.ts"
7342
7099
  }
7343
7100
  }
7344
7101
  ]
@@ -7855,6 +7612,249 @@
7855
7612
  }
7856
7613
  }
7857
7614
  ]
7615
+ },
7616
+ {
7617
+ "kind": "javascript-module",
7618
+ "path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
7619
+ "declarations": [
7620
+ {
7621
+ "kind": "variable",
7622
+ "name": "BoxPaddingEditorStyles",
7623
+ "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; } `"
7624
+ }
7625
+ ],
7626
+ "exports": [
7627
+ {
7628
+ "kind": "js",
7629
+ "name": "BoxPaddingEditorStyles",
7630
+ "declaration": {
7631
+ "name": "BoxPaddingEditorStyles",
7632
+ "module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
7633
+ }
7634
+ }
7635
+ ]
7636
+ },
7637
+ {
7638
+ "kind": "javascript-module",
7639
+ "path": "src/modeller/property-sidebar/shapes/shapes.ts",
7640
+ "declarations": [
7641
+ {
7642
+ "kind": "class",
7643
+ "description": "",
7644
+ "name": "PropertyShapes",
7645
+ "members": [
7646
+ {
7647
+ "kind": "field",
7648
+ "name": "value",
7649
+ "type": {
7650
+ "text": "Properties | undefined"
7651
+ },
7652
+ "attribute": "value"
7653
+ },
7654
+ {
7655
+ "kind": "field",
7656
+ "name": "bounds",
7657
+ "type": {
7658
+ "text": "BOUNDS | null"
7659
+ },
7660
+ "default": "null",
7661
+ "attribute": "bounds"
7662
+ },
7663
+ {
7664
+ "kind": "field",
7665
+ "name": "selected",
7666
+ "type": {
7667
+ "text": "Component[]"
7668
+ },
7669
+ "default": "[]",
7670
+ "attribute": "selected"
7671
+ },
7672
+ {
7673
+ "kind": "method",
7674
+ "name": "_onValueChange",
7675
+ "parameters": [
7676
+ {
7677
+ "name": "e",
7678
+ "type": {
7679
+ "text": "Event"
7680
+ }
7681
+ }
7682
+ ],
7683
+ "inheritedFrom": {
7684
+ "name": "AbstractProperty",
7685
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7686
+ }
7687
+ },
7688
+ {
7689
+ "kind": "method",
7690
+ "name": "_hasTextProperty",
7691
+ "parameters": [
7692
+ {
7693
+ "name": "selected",
7694
+ "type": {
7695
+ "text": "Component[]"
7696
+ }
7697
+ }
7698
+ ]
7699
+ },
7700
+ {
7701
+ "kind": "method",
7702
+ "name": "_hasProperties",
7703
+ "parameters": [
7704
+ {
7705
+ "name": "selected",
7706
+ "type": {
7707
+ "text": "Component[]"
7708
+ }
7709
+ }
7710
+ ]
7711
+ },
7712
+ {
7713
+ "kind": "method",
7714
+ "name": "_isIdentifiable",
7715
+ "parameters": [
7716
+ {
7717
+ "name": "selected",
7718
+ "type": {
7719
+ "text": "Component[]"
7720
+ }
7721
+ }
7722
+ ]
7723
+ },
7724
+ {
7725
+ "kind": "method",
7726
+ "name": "_isClassIdentifiable",
7727
+ "parameters": [
7728
+ {
7729
+ "name": "selected",
7730
+ "type": {
7731
+ "text": "Component[]"
7732
+ }
7733
+ }
7734
+ ]
7735
+ },
7736
+ {
7737
+ "kind": "method",
7738
+ "name": "_isLine",
7739
+ "parameters": [
7740
+ {
7741
+ "name": "selected",
7742
+ "type": {
7743
+ "text": "Component[]"
7744
+ }
7745
+ }
7746
+ ]
7747
+ },
7748
+ {
7749
+ "kind": "method",
7750
+ "name": "_is3dish",
7751
+ "parameters": [
7752
+ {
7753
+ "name": "selected",
7754
+ "type": {
7755
+ "text": "Component[]"
7756
+ }
7757
+ }
7758
+ ]
7759
+ },
7760
+ {
7761
+ "kind": "method",
7762
+ "name": "_getValueFromEventTarget",
7763
+ "parameters": [
7764
+ {
7765
+ "name": "element",
7766
+ "type": {
7767
+ "text": "HTMLElement"
7768
+ }
7769
+ }
7770
+ ],
7771
+ "inheritedFrom": {
7772
+ "name": "AbstractProperty",
7773
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7774
+ }
7775
+ },
7776
+ {
7777
+ "kind": "method",
7778
+ "name": "_onAfterValueChange",
7779
+ "parameters": [
7780
+ {
7781
+ "name": "key",
7782
+ "type": {
7783
+ "text": "string"
7784
+ }
7785
+ },
7786
+ {
7787
+ "name": "value",
7788
+ "type": {
7789
+ "text": "any"
7790
+ }
7791
+ }
7792
+ ],
7793
+ "inheritedFrom": {
7794
+ "name": "AbstractProperty",
7795
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7796
+ }
7797
+ }
7798
+ ],
7799
+ "events": [
7800
+ {
7801
+ "name": "bounds-change",
7802
+ "type": {
7803
+ "text": "CustomEvent"
7804
+ }
7805
+ },
7806
+ {
7807
+ "name": "property-change",
7808
+ "type": {
7809
+ "text": "CustomEvent"
7810
+ },
7811
+ "inheritedFrom": {
7812
+ "name": "AbstractProperty",
7813
+ "module": "src/modeller/property-sidebar/abstract-property.ts"
7814
+ }
7815
+ }
7816
+ ],
7817
+ "attributes": [
7818
+ {
7819
+ "name": "value",
7820
+ "type": {
7821
+ "text": "Properties | undefined"
7822
+ },
7823
+ "fieldName": "value"
7824
+ },
7825
+ {
7826
+ "name": "bounds",
7827
+ "type": {
7828
+ "text": "BOUNDS | null"
7829
+ },
7830
+ "default": "null",
7831
+ "fieldName": "bounds"
7832
+ },
7833
+ {
7834
+ "name": "selected",
7835
+ "type": {
7836
+ "text": "Component[]"
7837
+ },
7838
+ "default": "[]",
7839
+ "fieldName": "selected"
7840
+ }
7841
+ ],
7842
+ "superclass": {
7843
+ "name": "AbstractProperty",
7844
+ "module": "/src/modeller/property-sidebar/abstract-property"
7845
+ }
7846
+ }
7847
+ ],
7848
+ "exports": [
7849
+ {
7850
+ "kind": "js",
7851
+ "name": "PropertyShapes",
7852
+ "declaration": {
7853
+ "name": "PropertyShapes",
7854
+ "module": "src/modeller/property-sidebar/shapes/shapes.ts"
7855
+ }
7856
+ }
7857
+ ]
7858
7858
  }
7859
7859
  ]
7860
7860
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fmsim/board",
3
- "version": "1.0.61",
3
+ "version": "1.0.63",
4
4
  "description": "보드 구성을 위한 기본 UI (웹)컴포넌트들을 제공합니다.",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -88,7 +88,7 @@
88
88
  "build-storybook": "storybook build"
89
89
  },
90
90
  "dependencies": {
91
- "@fmsim/api": "^1.0.61",
91
+ "@fmsim/api": "^1.0.63",
92
92
  "@open-wc/scoped-elements": "^3.0.5",
93
93
  "@operato/app": "^1.3.7",
94
94
  "@operato/data-grist": "^1.3.5",
@@ -114,7 +114,7 @@
114
114
  "devDependencies": {
115
115
  "@custom-elements-manifest/analyzer": "^0.10.4",
116
116
  "@hatiolab/prettier-config": "^1.0.0",
117
- "@hatiolab/things-scene": "^9.0.0-beta.40",
117
+ "@hatiolab/things-scene": "^9.0.0-beta.62",
118
118
  "@material/mwc-fab": "^0.27.0",
119
119
  "@material/mwc-icon": "^0.27.0",
120
120
  "@open-wc/eslint-config": "^12.0.3",
@@ -150,5 +150,5 @@
150
150
  "prettier --write"
151
151
  ]
152
152
  },
153
- "gitHead": "352e4fa7d969e85836b4d414be5f5ead30de83c9"
153
+ "gitHead": "b23aaf22e1b8466214b5910badb0a0c59017a590"
154
154
  }