@fmsim/board 1.0.62 → 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.
- package/custom-elements.json +378 -378
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -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",
|
|
@@ -5776,13 +5776,31 @@
|
|
|
5776
5776
|
},
|
|
5777
5777
|
{
|
|
5778
5778
|
"kind": "javascript-module",
|
|
5779
|
-
"path": "src/modeller/property-sidebar/
|
|
5779
|
+
"path": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts",
|
|
5780
5780
|
"declarations": [
|
|
5781
5781
|
{
|
|
5782
5782
|
"kind": "class",
|
|
5783
|
-
"description": "",
|
|
5784
|
-
"name": "
|
|
5783
|
+
"description": "element for mapping data value editing\n\nExample:\n\n<data-binding-mapper mapping=${mapping}>\n</data-binding-mapper>",
|
|
5784
|
+
"name": "DataBindingMapper",
|
|
5785
5785
|
"members": [
|
|
5786
|
+
{
|
|
5787
|
+
"kind": "field",
|
|
5788
|
+
"name": "mapping",
|
|
5789
|
+
"type": {
|
|
5790
|
+
"text": "Mapping"
|
|
5791
|
+
},
|
|
5792
|
+
"default": "{ rule: 'value' }",
|
|
5793
|
+
"attribute": "mapping"
|
|
5794
|
+
},
|
|
5795
|
+
{
|
|
5796
|
+
"kind": "field",
|
|
5797
|
+
"name": "rule",
|
|
5798
|
+
"type": {
|
|
5799
|
+
"text": "Rule"
|
|
5800
|
+
},
|
|
5801
|
+
"default": "{}",
|
|
5802
|
+
"attribute": "rule"
|
|
5803
|
+
},
|
|
5786
5804
|
{
|
|
5787
5805
|
"kind": "field",
|
|
5788
5806
|
"name": "scene",
|
|
@@ -5793,343 +5811,85 @@
|
|
|
5793
5811
|
},
|
|
5794
5812
|
{
|
|
5795
5813
|
"kind": "field",
|
|
5796
|
-
"name": "
|
|
5814
|
+
"name": "_valueTypes",
|
|
5797
5815
|
"type": {
|
|
5798
|
-
"text": "
|
|
5816
|
+
"text": "any"
|
|
5799
5817
|
},
|
|
5800
|
-
"
|
|
5801
|
-
"default": "''"
|
|
5818
|
+
"default": "{ play: 'boolean', hidden: 'boolean', started: 'boolean', rotation: 'number', value: 'number', fillStyle: 'color', strokeStyle: 'color', fontColor: 'color', data: 'object', source: 'attachment', location: 'object', dimension: 'object', text: 'string', ref: 'string' }"
|
|
5802
5819
|
},
|
|
5803
5820
|
{
|
|
5804
5821
|
"kind": "field",
|
|
5805
|
-
"name": "
|
|
5822
|
+
"name": "_componentIds",
|
|
5806
5823
|
"type": {
|
|
5807
|
-
"text": "
|
|
5824
|
+
"text": "{ value: string; description: string }[]"
|
|
5808
5825
|
},
|
|
5809
|
-
"
|
|
5826
|
+
"default": "[]"
|
|
5810
5827
|
},
|
|
5811
5828
|
{
|
|
5812
5829
|
"kind": "field",
|
|
5813
|
-
"name": "
|
|
5830
|
+
"name": "editor",
|
|
5814
5831
|
"type": {
|
|
5815
|
-
"text": "
|
|
5816
|
-
}
|
|
5817
|
-
"privacy": "private",
|
|
5818
|
-
"default": "false"
|
|
5832
|
+
"text": "HTMLInputElement"
|
|
5833
|
+
}
|
|
5819
5834
|
},
|
|
5820
5835
|
{
|
|
5821
5836
|
"kind": "field",
|
|
5822
|
-
"name": "
|
|
5837
|
+
"name": "target",
|
|
5823
5838
|
"type": {
|
|
5824
|
-
"text": "
|
|
5825
|
-
}
|
|
5826
|
-
"privacy": "private",
|
|
5827
|
-
"default": "-1"
|
|
5839
|
+
"text": "HTMLInputElement"
|
|
5840
|
+
}
|
|
5828
5841
|
},
|
|
5829
5842
|
{
|
|
5830
5843
|
"kind": "method",
|
|
5831
|
-
"name": "
|
|
5844
|
+
"name": "_valuetype",
|
|
5832
5845
|
"parameters": [
|
|
5833
5846
|
{
|
|
5834
|
-
"name": "
|
|
5835
|
-
"optional": true,
|
|
5847
|
+
"name": "property",
|
|
5836
5848
|
"type": {
|
|
5837
|
-
"text": "
|
|
5849
|
+
"text": "string"
|
|
5838
5850
|
}
|
|
5839
5851
|
}
|
|
5840
5852
|
]
|
|
5841
5853
|
},
|
|
5854
|
+
{
|
|
5855
|
+
"kind": "field",
|
|
5856
|
+
"name": "_keep_saved_rule_params",
|
|
5857
|
+
"type": {
|
|
5858
|
+
"text": "boolean"
|
|
5859
|
+
},
|
|
5860
|
+
"privacy": "private",
|
|
5861
|
+
"default": "false"
|
|
5862
|
+
},
|
|
5842
5863
|
{
|
|
5843
5864
|
"kind": "method",
|
|
5844
|
-
"name": "
|
|
5865
|
+
"name": "_onChangedMapping"
|
|
5845
5866
|
},
|
|
5846
5867
|
{
|
|
5847
5868
|
"kind": "method",
|
|
5848
|
-
"name": "
|
|
5869
|
+
"name": "_onChangeRule",
|
|
5849
5870
|
"parameters": [
|
|
5850
5871
|
{
|
|
5851
5872
|
"name": "e",
|
|
5852
5873
|
"type": {
|
|
5853
|
-
"text": "
|
|
5874
|
+
"text": "Event"
|
|
5854
5875
|
}
|
|
5855
5876
|
}
|
|
5856
5877
|
]
|
|
5857
5878
|
},
|
|
5858
5879
|
{
|
|
5859
5880
|
"kind": "method",
|
|
5860
|
-
"name": "
|
|
5881
|
+
"name": "_onChange",
|
|
5861
5882
|
"parameters": [
|
|
5862
5883
|
{
|
|
5863
5884
|
"name": "e",
|
|
5864
5885
|
"type": {
|
|
5865
|
-
"text": "
|
|
5886
|
+
"text": "Event"
|
|
5866
5887
|
}
|
|
5867
5888
|
}
|
|
5868
5889
|
]
|
|
5869
|
-
}
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
"name": "extendedMap",
|
|
5873
|
-
"readonly": true
|
|
5874
|
-
},
|
|
5875
|
-
{
|
|
5876
|
-
"kind": "method",
|
|
5877
|
-
"name": "getNodeHandleClass",
|
|
5878
|
-
"parameters": [
|
|
5879
|
-
{
|
|
5880
|
-
"name": "component",
|
|
5881
|
-
"type": {
|
|
5882
|
-
"text": "Component"
|
|
5883
|
-
}
|
|
5884
|
-
}
|
|
5885
|
-
]
|
|
5886
|
-
},
|
|
5887
|
-
{
|
|
5888
|
-
"kind": "method",
|
|
5889
|
-
"name": "isExtended",
|
|
5890
|
-
"parameters": [
|
|
5891
|
-
{
|
|
5892
|
-
"name": "component",
|
|
5893
|
-
"type": {
|
|
5894
|
-
"text": "Component"
|
|
5895
|
-
}
|
|
5896
|
-
}
|
|
5897
|
-
]
|
|
5898
|
-
},
|
|
5899
|
-
{
|
|
5900
|
-
"kind": "method",
|
|
5901
|
-
"name": "toggleExtended",
|
|
5902
|
-
"parameters": [
|
|
5903
|
-
{
|
|
5904
|
-
"name": "component",
|
|
5905
|
-
"type": {
|
|
5906
|
-
"text": "Component"
|
|
5907
|
-
}
|
|
5908
|
-
}
|
|
5909
|
-
]
|
|
5910
|
-
},
|
|
5911
|
-
{
|
|
5912
|
-
"kind": "method",
|
|
5913
|
-
"name": "toggleHidden",
|
|
5914
|
-
"parameters": [
|
|
5915
|
-
{
|
|
5916
|
-
"name": "component",
|
|
5917
|
-
"type": {
|
|
5918
|
-
"text": "Component"
|
|
5919
|
-
}
|
|
5920
|
-
}
|
|
5921
|
-
]
|
|
5922
|
-
},
|
|
5923
|
-
{
|
|
5924
|
-
"kind": "method",
|
|
5925
|
-
"name": "selectComponent",
|
|
5926
|
-
"parameters": [
|
|
5927
|
-
{
|
|
5928
|
-
"name": "component",
|
|
5929
|
-
"type": {
|
|
5930
|
-
"text": "Component"
|
|
5931
|
-
}
|
|
5932
|
-
},
|
|
5933
|
-
{
|
|
5934
|
-
"name": "append",
|
|
5935
|
-
"default": "false",
|
|
5936
|
-
"type": {
|
|
5937
|
-
"text": "boolean"
|
|
5938
|
-
}
|
|
5939
|
-
}
|
|
5940
|
-
]
|
|
5941
|
-
},
|
|
5942
|
-
{
|
|
5943
|
-
"kind": "method",
|
|
5944
|
-
"name": "shouldBeShown",
|
|
5945
|
-
"return": {
|
|
5946
|
-
"type": {
|
|
5947
|
-
"text": "boolean"
|
|
5948
|
-
}
|
|
5949
|
-
},
|
|
5950
|
-
"parameters": [
|
|
5951
|
-
{
|
|
5952
|
-
"name": "component",
|
|
5953
|
-
"type": {
|
|
5954
|
-
"text": "Component"
|
|
5955
|
-
}
|
|
5956
|
-
},
|
|
5957
|
-
{
|
|
5958
|
-
"name": "counting",
|
|
5959
|
-
"default": "false",
|
|
5960
|
-
"type": {
|
|
5961
|
-
"text": "boolean"
|
|
5962
|
-
}
|
|
5963
|
-
}
|
|
5964
|
-
]
|
|
5965
|
-
},
|
|
5966
|
-
{
|
|
5967
|
-
"kind": "method",
|
|
5968
|
-
"name": "renderComponent",
|
|
5969
|
-
"return": {
|
|
5970
|
-
"type": {
|
|
5971
|
-
"text": "TemplateResult"
|
|
5972
|
-
}
|
|
5973
|
-
},
|
|
5974
|
-
"parameters": [
|
|
5975
|
-
{
|
|
5976
|
-
"name": "component",
|
|
5977
|
-
"type": {
|
|
5978
|
-
"text": "Component"
|
|
5979
|
-
}
|
|
5980
|
-
},
|
|
5981
|
-
{
|
|
5982
|
-
"name": "depth",
|
|
5983
|
-
"type": {
|
|
5984
|
-
"text": "number"
|
|
5985
|
-
}
|
|
5986
|
-
}
|
|
5987
|
-
]
|
|
5988
|
-
}
|
|
5989
|
-
],
|
|
5990
|
-
"attributes": [
|
|
5991
|
-
{
|
|
5992
|
-
"name": "scene",
|
|
5993
|
-
"type": {
|
|
5994
|
-
"text": "Scene | undefined"
|
|
5995
|
-
},
|
|
5996
|
-
"fieldName": "scene"
|
|
5997
|
-
}
|
|
5998
|
-
],
|
|
5999
|
-
"superclass": {
|
|
6000
|
-
"name": "LitElement",
|
|
6001
|
-
"package": "lit"
|
|
6002
|
-
},
|
|
6003
|
-
"customElement": true
|
|
6004
|
-
}
|
|
6005
|
-
],
|
|
6006
|
-
"exports": [
|
|
6007
|
-
{
|
|
6008
|
-
"kind": "js",
|
|
6009
|
-
"name": "SceneInspector",
|
|
6010
|
-
"declaration": {
|
|
6011
|
-
"name": "SceneInspector",
|
|
6012
|
-
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
6013
|
-
}
|
|
6014
|
-
}
|
|
6015
|
-
]
|
|
6016
|
-
},
|
|
6017
|
-
{
|
|
6018
|
-
"kind": "javascript-module",
|
|
6019
|
-
"path": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts",
|
|
6020
|
-
"declarations": [
|
|
6021
|
-
{
|
|
6022
|
-
"kind": "class",
|
|
6023
|
-
"description": "element for mapping data value editing\n\nExample:\n\n<data-binding-mapper mapping=${mapping}>\n</data-binding-mapper>",
|
|
6024
|
-
"name": "DataBindingMapper",
|
|
6025
|
-
"members": [
|
|
6026
|
-
{
|
|
6027
|
-
"kind": "field",
|
|
6028
|
-
"name": "mapping",
|
|
6029
|
-
"type": {
|
|
6030
|
-
"text": "Mapping"
|
|
6031
|
-
},
|
|
6032
|
-
"default": "{ rule: 'value' }",
|
|
6033
|
-
"attribute": "mapping"
|
|
6034
|
-
},
|
|
6035
|
-
{
|
|
6036
|
-
"kind": "field",
|
|
6037
|
-
"name": "rule",
|
|
6038
|
-
"type": {
|
|
6039
|
-
"text": "Rule"
|
|
6040
|
-
},
|
|
6041
|
-
"default": "{}",
|
|
6042
|
-
"attribute": "rule"
|
|
6043
|
-
},
|
|
6044
|
-
{
|
|
6045
|
-
"kind": "field",
|
|
6046
|
-
"name": "scene",
|
|
6047
|
-
"type": {
|
|
6048
|
-
"text": "Scene | undefined"
|
|
6049
|
-
},
|
|
6050
|
-
"attribute": "scene"
|
|
6051
|
-
},
|
|
6052
|
-
{
|
|
6053
|
-
"kind": "field",
|
|
6054
|
-
"name": "_valueTypes",
|
|
6055
|
-
"type": {
|
|
6056
|
-
"text": "any"
|
|
6057
|
-
},
|
|
6058
|
-
"default": "{ play: 'boolean', hidden: 'boolean', started: 'boolean', rotation: 'number', value: 'number', fillStyle: 'color', strokeStyle: 'color', fontColor: 'color', data: 'object', source: 'attachment', location: 'object', dimension: 'object', text: 'string', ref: 'string' }"
|
|
6059
|
-
},
|
|
6060
|
-
{
|
|
6061
|
-
"kind": "field",
|
|
6062
|
-
"name": "_componentIds",
|
|
6063
|
-
"type": {
|
|
6064
|
-
"text": "{ value: string; description: string }[]"
|
|
6065
|
-
},
|
|
6066
|
-
"default": "[]"
|
|
6067
|
-
},
|
|
6068
|
-
{
|
|
6069
|
-
"kind": "field",
|
|
6070
|
-
"name": "editor",
|
|
6071
|
-
"type": {
|
|
6072
|
-
"text": "HTMLInputElement"
|
|
6073
|
-
}
|
|
6074
|
-
},
|
|
6075
|
-
{
|
|
6076
|
-
"kind": "field",
|
|
6077
|
-
"name": "target",
|
|
6078
|
-
"type": {
|
|
6079
|
-
"text": "HTMLInputElement"
|
|
6080
|
-
}
|
|
6081
|
-
},
|
|
6082
|
-
{
|
|
6083
|
-
"kind": "method",
|
|
6084
|
-
"name": "_valuetype",
|
|
6085
|
-
"parameters": [
|
|
6086
|
-
{
|
|
6087
|
-
"name": "property",
|
|
6088
|
-
"type": {
|
|
6089
|
-
"text": "string"
|
|
6090
|
-
}
|
|
6091
|
-
}
|
|
6092
|
-
]
|
|
6093
|
-
},
|
|
6094
|
-
{
|
|
6095
|
-
"kind": "field",
|
|
6096
|
-
"name": "_keep_saved_rule_params",
|
|
6097
|
-
"type": {
|
|
6098
|
-
"text": "boolean"
|
|
6099
|
-
},
|
|
6100
|
-
"privacy": "private",
|
|
6101
|
-
"default": "false"
|
|
6102
|
-
},
|
|
6103
|
-
{
|
|
6104
|
-
"kind": "method",
|
|
6105
|
-
"name": "_onChangedMapping"
|
|
6106
|
-
},
|
|
6107
|
-
{
|
|
6108
|
-
"kind": "method",
|
|
6109
|
-
"name": "_onChangeRule",
|
|
6110
|
-
"parameters": [
|
|
6111
|
-
{
|
|
6112
|
-
"name": "e",
|
|
6113
|
-
"type": {
|
|
6114
|
-
"text": "Event"
|
|
6115
|
-
}
|
|
6116
|
-
}
|
|
6117
|
-
]
|
|
6118
|
-
},
|
|
6119
|
-
{
|
|
6120
|
-
"kind": "method",
|
|
6121
|
-
"name": "_onChange",
|
|
6122
|
-
"parameters": [
|
|
6123
|
-
{
|
|
6124
|
-
"name": "e",
|
|
6125
|
-
"type": {
|
|
6126
|
-
"text": "Event"
|
|
6127
|
-
}
|
|
6128
|
-
}
|
|
6129
|
-
]
|
|
6130
|
-
}
|
|
6131
|
-
],
|
|
6132
|
-
"events": [
|
|
5890
|
+
}
|
|
5891
|
+
],
|
|
5892
|
+
"events": [
|
|
6133
5893
|
{
|
|
6134
5894
|
"name": "value-change",
|
|
6135
5895
|
"type": {
|
|
@@ -6531,6 +6291,246 @@
|
|
|
6531
6291
|
}
|
|
6532
6292
|
]
|
|
6533
6293
|
},
|
|
6294
|
+
{
|
|
6295
|
+
"kind": "javascript-module",
|
|
6296
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
6297
|
+
"declarations": [
|
|
6298
|
+
{
|
|
6299
|
+
"kind": "class",
|
|
6300
|
+
"description": "",
|
|
6301
|
+
"name": "SceneInspector",
|
|
6302
|
+
"members": [
|
|
6303
|
+
{
|
|
6304
|
+
"kind": "field",
|
|
6305
|
+
"name": "scene",
|
|
6306
|
+
"type": {
|
|
6307
|
+
"text": "Scene | undefined"
|
|
6308
|
+
},
|
|
6309
|
+
"attribute": "scene"
|
|
6310
|
+
},
|
|
6311
|
+
{
|
|
6312
|
+
"kind": "field",
|
|
6313
|
+
"name": "searchText",
|
|
6314
|
+
"type": {
|
|
6315
|
+
"text": "string"
|
|
6316
|
+
},
|
|
6317
|
+
"privacy": "private",
|
|
6318
|
+
"default": "''"
|
|
6319
|
+
},
|
|
6320
|
+
{
|
|
6321
|
+
"kind": "field",
|
|
6322
|
+
"name": "_extendedMap",
|
|
6323
|
+
"type": {
|
|
6324
|
+
"text": "any"
|
|
6325
|
+
},
|
|
6326
|
+
"privacy": "private"
|
|
6327
|
+
},
|
|
6328
|
+
{
|
|
6329
|
+
"kind": "field",
|
|
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"
|
|
6345
|
+
},
|
|
6346
|
+
{
|
|
6347
|
+
"kind": "method",
|
|
6348
|
+
"name": "disconnectScene",
|
|
6349
|
+
"parameters": [
|
|
6350
|
+
{
|
|
6351
|
+
"name": "scene",
|
|
6352
|
+
"optional": true,
|
|
6353
|
+
"type": {
|
|
6354
|
+
"text": "Scene"
|
|
6355
|
+
}
|
|
6356
|
+
}
|
|
6357
|
+
]
|
|
6358
|
+
},
|
|
6359
|
+
{
|
|
6360
|
+
"kind": "method",
|
|
6361
|
+
"name": "refresh"
|
|
6362
|
+
},
|
|
6363
|
+
{
|
|
6364
|
+
"kind": "method",
|
|
6365
|
+
"name": "_onclick",
|
|
6366
|
+
"parameters": [
|
|
6367
|
+
{
|
|
6368
|
+
"name": "e",
|
|
6369
|
+
"type": {
|
|
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
6534
|
{
|
|
6535
6535
|
"kind": "javascript-module",
|
|
6536
6536
|
"path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fmsim/board",
|
|
3
|
-
"version": "1.0.
|
|
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.
|
|
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",
|
|
@@ -150,5 +150,5 @@
|
|
|
150
150
|
"prettier --write"
|
|
151
151
|
]
|
|
152
152
|
},
|
|
153
|
-
"gitHead": "
|
|
153
|
+
"gitHead": "b23aaf22e1b8466214b5910badb0a0c59017a590"
|
|
154
154
|
}
|