@fmsim/board 1.0.34 → 1.0.38
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/.storybook/main.ts +58 -0
- package/.storybook/preview.ts +15 -0
- package/custom-elements.json +1499 -421
- package/dist/src/component/index.d.ts +3 -1
- package/dist/src/component/index.js +3 -1
- package/dist/src/component/index.js.map +1 -1
- package/dist/src/component/restful-attachment-creation-card.d.ts +18 -0
- package/dist/src/component/restful-attachment-creation-card.js +264 -0
- package/dist/src/component/restful-attachment-creation-card.js.map +1 -0
- package/dist/src/component/restful-attachment-selector.d.ts +36 -0
- package/dist/src/component/restful-attachment-selector.js +663 -0
- package/dist/src/component/restful-attachment-selector.js.map +1 -0
- package/dist/src/component/restful-file-selector.d.ts +14 -0
- package/dist/src/component/restful-file-selector.js +181 -0
- package/dist/src/component/restful-file-selector.js.map +1 -0
- package/dist/src/component/restful-input-attachment-selector.d.ts +16 -0
- package/dist/src/component/restful-input-attachment-selector.js +110 -0
- package/dist/src/component/restful-input-attachment-selector.js.map +1 -0
- package/dist/src/component/restful-input-fill-style.d.ts +45 -0
- package/dist/src/component/restful-input-fill-style.js +344 -0
- package/dist/src/component/restful-input-fill-style.js.map +1 -0
- package/dist/src/component/restrul-input-background-pattern.d.ts +35 -0
- package/dist/src/component/restrul-input-background-pattern.js +183 -0
- package/dist/src/component/restrul-input-background-pattern.js.map +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/layers/movement-layer.d.ts +1 -0
- package/dist/src/layers/movement-layer.js +3 -0
- package/dist/src/layers/movement-layer.js.map +1 -1
- package/dist/src/modeller/property-sidebar/styles/styles.d.ts +1 -0
- package/dist/src/modeller/property-sidebar/styles/styles.js +5 -1
- package/dist/src/modeller/property-sidebar/styles/styles.js.map +1 -1
- package/dist/stories/restful-attachment-selector.stories.d.ts +30 -0
- package/dist/stories/restful-attachment-selector.stories.js +104 -0
- package/dist/stories/restful-attachment-selector.stories.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/icons/attachment/btn-copy-link-hover.svg +4 -0
- package/icons/attachment/btn-copy-link.svg +4 -0
- package/icons/attachment/btn-delete-hover.svg +4 -0
- package/icons/attachment/btn-delete.svg +4 -0
- package/icons/attachment/btn-download-hover.svg +4 -0
- package/icons/attachment/btn-download.svg +4 -0
- package/icons/attachment/btn-zoom-hover.svg +4 -0
- package/icons/attachment/btn-zoom.svg +4 -0
- package/icons/attachment/file.svg +3 -0
- package/icons/board/btn-add-board.svg +5 -0
- package/icons/board/btn-add-list.svg +5 -0
- package/icons/board/btn-close-dropbox.svg +3 -0
- package/icons/board/btn-edit-hover.svg +4 -0
- package/icons/board/btn-edit.svg +4 -0
- package/icons/board/btn-favorite-hover-on.svg +4 -0
- package/icons/board/btn-favorite-hover.svg +4 -0
- package/icons/board/btn-favorite-on.svg +4 -0
- package/icons/board/btn-favorite.svg +4 -0
- package/icons/board/btn-info-hover.svg +3 -0
- package/icons/board/btn-info.svg +3 -0
- package/icons/board/btn-open-dropbox.svg +3 -0
- package/icons/board/btn-users.svg +4 -0
- package/icons/board/favorite_black.svg +1 -0
- package/icons/group-bar/btn-add-list.png +0 -0
- package/icons/group-bar/btn-close-dropbox.png +0 -0
- package/icons/group-bar/btn-edit.png +0 -0
- package/icons/group-bar/btn-open-dropbox-color.png +0 -0
- package/icons/group-bar/btn-search-name.png +0 -0
- package/package.json +12 -8
- package/stories/restful-attachment-selector.stories.ts +113 -0
- package/.storybook/main.js +0 -3
- package/dist/stories/index.stories.d.ts +0 -33
- package/dist/stories/index.stories.js +0 -33
- package/dist/stories/index.stories.js.map +0 -1
- package/stories/index.stories.ts +0 -52
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",
|
|
@@ -54,6 +139,14 @@
|
|
|
54
139
|
"name": "*",
|
|
55
140
|
"package": "./ox-board-list.js"
|
|
56
141
|
}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"kind": "js",
|
|
145
|
+
"name": "*",
|
|
146
|
+
"declaration": {
|
|
147
|
+
"name": "*",
|
|
148
|
+
"package": "./component/index.js"
|
|
149
|
+
}
|
|
57
150
|
}
|
|
58
151
|
]
|
|
59
152
|
},
|
|
@@ -1619,161 +1712,6 @@
|
|
|
1619
1712
|
"declarations": [],
|
|
1620
1713
|
"exports": []
|
|
1621
1714
|
},
|
|
1622
|
-
{
|
|
1623
|
-
"kind": "javascript-module",
|
|
1624
|
-
"path": "stories/index.stories.ts",
|
|
1625
|
-
"declarations": [
|
|
1626
|
-
{
|
|
1627
|
-
"kind": "variable",
|
|
1628
|
-
"name": "Regular"
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"kind": "variable",
|
|
1632
|
-
"name": "CustomTitle"
|
|
1633
|
-
},
|
|
1634
|
-
{
|
|
1635
|
-
"kind": "variable",
|
|
1636
|
-
"name": "CustomCounter"
|
|
1637
|
-
},
|
|
1638
|
-
{
|
|
1639
|
-
"kind": "variable",
|
|
1640
|
-
"name": "SlottedContent"
|
|
1641
|
-
}
|
|
1642
|
-
],
|
|
1643
|
-
"exports": [
|
|
1644
|
-
{
|
|
1645
|
-
"kind": "js",
|
|
1646
|
-
"name": "default",
|
|
1647
|
-
"declaration": {
|
|
1648
|
-
"module": "stories/index.stories.ts"
|
|
1649
|
-
}
|
|
1650
|
-
},
|
|
1651
|
-
{
|
|
1652
|
-
"kind": "js",
|
|
1653
|
-
"name": "Regular",
|
|
1654
|
-
"declaration": {
|
|
1655
|
-
"name": "Regular",
|
|
1656
|
-
"module": "stories/index.stories.ts"
|
|
1657
|
-
}
|
|
1658
|
-
},
|
|
1659
|
-
{
|
|
1660
|
-
"kind": "js",
|
|
1661
|
-
"name": "CustomTitle",
|
|
1662
|
-
"declaration": {
|
|
1663
|
-
"name": "CustomTitle",
|
|
1664
|
-
"module": "stories/index.stories.ts"
|
|
1665
|
-
}
|
|
1666
|
-
},
|
|
1667
|
-
{
|
|
1668
|
-
"kind": "js",
|
|
1669
|
-
"name": "CustomCounter",
|
|
1670
|
-
"declaration": {
|
|
1671
|
-
"name": "CustomCounter",
|
|
1672
|
-
"module": "stories/index.stories.ts"
|
|
1673
|
-
}
|
|
1674
|
-
},
|
|
1675
|
-
{
|
|
1676
|
-
"kind": "js",
|
|
1677
|
-
"name": "SlottedContent",
|
|
1678
|
-
"declaration": {
|
|
1679
|
-
"name": "SlottedContent",
|
|
1680
|
-
"module": "stories/index.stories.ts"
|
|
1681
|
-
}
|
|
1682
|
-
}
|
|
1683
|
-
]
|
|
1684
|
-
},
|
|
1685
|
-
{
|
|
1686
|
-
"kind": "javascript-module",
|
|
1687
|
-
"path": "src/data-storage/data-storage.ts",
|
|
1688
|
-
"declarations": [
|
|
1689
|
-
{
|
|
1690
|
-
"kind": "class",
|
|
1691
|
-
"description": "",
|
|
1692
|
-
"name": "DataStorage",
|
|
1693
|
-
"members": [
|
|
1694
|
-
{
|
|
1695
|
-
"kind": "field",
|
|
1696
|
-
"name": "id",
|
|
1697
|
-
"type": {
|
|
1698
|
-
"text": "string"
|
|
1699
|
-
},
|
|
1700
|
-
"privacy": "private",
|
|
1701
|
-
"default": "id"
|
|
1702
|
-
},
|
|
1703
|
-
{
|
|
1704
|
-
"kind": "method",
|
|
1705
|
-
"name": "load",
|
|
1706
|
-
"privacy": "public",
|
|
1707
|
-
"return": {
|
|
1708
|
-
"type": {
|
|
1709
|
-
"text": "Promise<any>"
|
|
1710
|
-
}
|
|
1711
|
-
},
|
|
1712
|
-
"parameters": [
|
|
1713
|
-
{
|
|
1714
|
-
"name": "key",
|
|
1715
|
-
"type": {
|
|
1716
|
-
"text": "Component"
|
|
1717
|
-
}
|
|
1718
|
-
}
|
|
1719
|
-
]
|
|
1720
|
-
},
|
|
1721
|
-
{
|
|
1722
|
-
"kind": "method",
|
|
1723
|
-
"name": "save",
|
|
1724
|
-
"privacy": "public",
|
|
1725
|
-
"return": {
|
|
1726
|
-
"type": {
|
|
1727
|
-
"text": "Promise<void>"
|
|
1728
|
-
}
|
|
1729
|
-
},
|
|
1730
|
-
"parameters": [
|
|
1731
|
-
{
|
|
1732
|
-
"name": "key",
|
|
1733
|
-
"type": {
|
|
1734
|
-
"text": "Component"
|
|
1735
|
-
}
|
|
1736
|
-
},
|
|
1737
|
-
{
|
|
1738
|
-
"name": "value",
|
|
1739
|
-
"type": {
|
|
1740
|
-
"text": "any"
|
|
1741
|
-
}
|
|
1742
|
-
}
|
|
1743
|
-
]
|
|
1744
|
-
},
|
|
1745
|
-
{
|
|
1746
|
-
"kind": "method",
|
|
1747
|
-
"name": "clear",
|
|
1748
|
-
"privacy": "public",
|
|
1749
|
-
"return": {
|
|
1750
|
-
"type": {
|
|
1751
|
-
"text": "Promise<void>"
|
|
1752
|
-
}
|
|
1753
|
-
},
|
|
1754
|
-
"parameters": [
|
|
1755
|
-
{
|
|
1756
|
-
"name": "key",
|
|
1757
|
-
"type": {
|
|
1758
|
-
"text": "Component"
|
|
1759
|
-
}
|
|
1760
|
-
}
|
|
1761
|
-
]
|
|
1762
|
-
}
|
|
1763
|
-
]
|
|
1764
|
-
}
|
|
1765
|
-
],
|
|
1766
|
-
"exports": [
|
|
1767
|
-
{
|
|
1768
|
-
"kind": "js",
|
|
1769
|
-
"name": "DataStorage",
|
|
1770
|
-
"declaration": {
|
|
1771
|
-
"name": "DataStorage",
|
|
1772
|
-
"module": "src/data-storage/data-storage.ts"
|
|
1773
|
-
}
|
|
1774
|
-
}
|
|
1775
|
-
]
|
|
1776
|
-
},
|
|
1777
1715
|
{
|
|
1778
1716
|
"kind": "javascript-module",
|
|
1779
1717
|
"path": "src/component/etc.ts",
|
|
@@ -1808,7 +1746,23 @@
|
|
|
1808
1746
|
"name": "*",
|
|
1809
1747
|
"declaration": {
|
|
1810
1748
|
"name": "*",
|
|
1811
|
-
"package": "./
|
|
1749
|
+
"package": "./restful-attachment-selector.js"
|
|
1750
|
+
}
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"kind": "js",
|
|
1754
|
+
"name": "*",
|
|
1755
|
+
"declaration": {
|
|
1756
|
+
"name": "*",
|
|
1757
|
+
"package": "./etc.js"
|
|
1758
|
+
}
|
|
1759
|
+
},
|
|
1760
|
+
{
|
|
1761
|
+
"kind": "js",
|
|
1762
|
+
"name": "*",
|
|
1763
|
+
"declaration": {
|
|
1764
|
+
"name": "*",
|
|
1765
|
+
"package": "./restful-input-fill-style.js"
|
|
1812
1766
|
}
|
|
1813
1767
|
}
|
|
1814
1768
|
]
|
|
@@ -1835,51 +1789,1175 @@
|
|
|
1835
1789
|
},
|
|
1836
1790
|
{
|
|
1837
1791
|
"kind": "javascript-module",
|
|
1838
|
-
"path": "src/
|
|
1839
|
-
"declarations": [],
|
|
1840
|
-
"exports": []
|
|
1841
|
-
},
|
|
1842
|
-
{
|
|
1843
|
-
"kind": "javascript-module",
|
|
1844
|
-
"path": "src/layers/movement-layer.ts",
|
|
1792
|
+
"path": "src/component/restful-attachment-creation-card.ts",
|
|
1845
1793
|
"declarations": [
|
|
1846
1794
|
{
|
|
1847
1795
|
"kind": "class",
|
|
1848
1796
|
"description": "",
|
|
1849
|
-
"name": "
|
|
1797
|
+
"name": "RestfulAttachmentCreationCard",
|
|
1850
1798
|
"members": [
|
|
1851
1799
|
{
|
|
1852
1800
|
"kind": "field",
|
|
1853
|
-
"name": "
|
|
1801
|
+
"name": "defaultCategory",
|
|
1802
|
+
"type": {
|
|
1803
|
+
"text": "string | undefined"
|
|
1804
|
+
},
|
|
1805
|
+
"attribute": "defaultCategory"
|
|
1854
1806
|
},
|
|
1855
1807
|
{
|
|
1856
1808
|
"kind": "field",
|
|
1857
|
-
"name": "
|
|
1809
|
+
"name": "categories",
|
|
1810
|
+
"type": {
|
|
1811
|
+
"text": "string[]"
|
|
1812
|
+
},
|
|
1813
|
+
"default": "[]",
|
|
1814
|
+
"attribute": "categories"
|
|
1858
1815
|
},
|
|
1859
1816
|
{
|
|
1860
|
-
"kind": "
|
|
1861
|
-
"name": "
|
|
1817
|
+
"kind": "field",
|
|
1818
|
+
"name": "_files",
|
|
1819
|
+
"type": {
|
|
1820
|
+
"text": "any[]"
|
|
1821
|
+
},
|
|
1822
|
+
"default": "[]",
|
|
1823
|
+
"attribute": "_files"
|
|
1862
1824
|
},
|
|
1863
1825
|
{
|
|
1864
|
-
"kind": "
|
|
1865
|
-
"name": "
|
|
1826
|
+
"kind": "field",
|
|
1827
|
+
"name": "_currentCategory",
|
|
1828
|
+
"type": {
|
|
1829
|
+
"text": "string | undefined"
|
|
1830
|
+
},
|
|
1831
|
+
"attribute": "_currentCategory"
|
|
1866
1832
|
},
|
|
1867
1833
|
{
|
|
1868
1834
|
"kind": "field",
|
|
1869
|
-
"name": "
|
|
1870
|
-
"
|
|
1835
|
+
"name": "fileId",
|
|
1836
|
+
"type": {
|
|
1837
|
+
"text": "string | undefined"
|
|
1838
|
+
},
|
|
1839
|
+
"attribute": "fileId"
|
|
1871
1840
|
},
|
|
1872
1841
|
{
|
|
1873
1842
|
"kind": "method",
|
|
1874
|
-
"name": "
|
|
1843
|
+
"name": "onClickFlip",
|
|
1875
1844
|
"parameters": [
|
|
1876
1845
|
{
|
|
1877
|
-
"name": "
|
|
1846
|
+
"name": "e",
|
|
1878
1847
|
"type": {
|
|
1879
|
-
"text": "
|
|
1848
|
+
"text": "Event"
|
|
1880
1849
|
}
|
|
1881
|
-
}
|
|
1882
|
-
|
|
1850
|
+
}
|
|
1851
|
+
]
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
"kind": "method",
|
|
1855
|
+
"name": "onClickSubmit",
|
|
1856
|
+
"parameters": [
|
|
1857
|
+
{
|
|
1858
|
+
"name": "e",
|
|
1859
|
+
"type": {
|
|
1860
|
+
"text": "Event"
|
|
1861
|
+
}
|
|
1862
|
+
}
|
|
1863
|
+
]
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"kind": "method",
|
|
1867
|
+
"name": "reset"
|
|
1868
|
+
}
|
|
1869
|
+
],
|
|
1870
|
+
"events": [
|
|
1871
|
+
{
|
|
1872
|
+
"name": "create-attachment",
|
|
1873
|
+
"type": {
|
|
1874
|
+
"text": "CustomEvent"
|
|
1875
|
+
}
|
|
1876
|
+
}
|
|
1877
|
+
],
|
|
1878
|
+
"attributes": [
|
|
1879
|
+
{
|
|
1880
|
+
"name": "defaultCategory",
|
|
1881
|
+
"type": {
|
|
1882
|
+
"text": "string | undefined"
|
|
1883
|
+
},
|
|
1884
|
+
"fieldName": "defaultCategory"
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"name": "categories",
|
|
1888
|
+
"type": {
|
|
1889
|
+
"text": "string[]"
|
|
1890
|
+
},
|
|
1891
|
+
"default": "[]",
|
|
1892
|
+
"fieldName": "categories"
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
"name": "_files",
|
|
1896
|
+
"type": {
|
|
1897
|
+
"text": "any[]"
|
|
1898
|
+
},
|
|
1899
|
+
"default": "[]",
|
|
1900
|
+
"fieldName": "_files"
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"name": "_currentCategory",
|
|
1904
|
+
"type": {
|
|
1905
|
+
"text": "string | undefined"
|
|
1906
|
+
},
|
|
1907
|
+
"fieldName": "_currentCategory"
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"name": "fileId",
|
|
1911
|
+
"type": {
|
|
1912
|
+
"text": "string | undefined"
|
|
1913
|
+
},
|
|
1914
|
+
"fieldName": "fileId"
|
|
1915
|
+
}
|
|
1916
|
+
],
|
|
1917
|
+
"mixins": [
|
|
1918
|
+
{
|
|
1919
|
+
"name": "localize(i18next)",
|
|
1920
|
+
"module": "src/component/restful-attachment-creation-card.ts"
|
|
1921
|
+
}
|
|
1922
|
+
],
|
|
1923
|
+
"superclass": {
|
|
1924
|
+
"name": "LitElement",
|
|
1925
|
+
"package": "lit"
|
|
1926
|
+
},
|
|
1927
|
+
"tagName": "restful-attachment-creation-card",
|
|
1928
|
+
"customElement": true
|
|
1929
|
+
}
|
|
1930
|
+
],
|
|
1931
|
+
"exports": [
|
|
1932
|
+
{
|
|
1933
|
+
"kind": "js",
|
|
1934
|
+
"name": "RestfulAttachmentCreationCard",
|
|
1935
|
+
"declaration": {
|
|
1936
|
+
"name": "RestfulAttachmentCreationCard",
|
|
1937
|
+
"module": "src/component/restful-attachment-creation-card.ts"
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"kind": "custom-element-definition",
|
|
1942
|
+
"name": "restful-attachment-creation-card",
|
|
1943
|
+
"declaration": {
|
|
1944
|
+
"name": "RestfulAttachmentCreationCard",
|
|
1945
|
+
"module": "src/component/restful-attachment-creation-card.ts"
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1948
|
+
]
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
"kind": "javascript-module",
|
|
1952
|
+
"path": "src/component/restful-attachment-selector.ts",
|
|
1953
|
+
"declarations": [
|
|
1954
|
+
{
|
|
1955
|
+
"kind": "class",
|
|
1956
|
+
"description": "",
|
|
1957
|
+
"name": "RestfulAttachmentSelector",
|
|
1958
|
+
"members": [
|
|
1959
|
+
{
|
|
1960
|
+
"kind": "field",
|
|
1961
|
+
"name": "categories",
|
|
1962
|
+
"type": {
|
|
1963
|
+
"text": "string[]"
|
|
1964
|
+
},
|
|
1965
|
+
"default": "['audio', 'video', 'image', 'text', 'application']",
|
|
1966
|
+
"attribute": "categories"
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"kind": "field",
|
|
1970
|
+
"name": "attachments",
|
|
1971
|
+
"type": {
|
|
1972
|
+
"text": "any[]"
|
|
1973
|
+
},
|
|
1974
|
+
"default": "[]",
|
|
1975
|
+
"attribute": "attachments"
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
"kind": "field",
|
|
1979
|
+
"name": "category",
|
|
1980
|
+
"type": {
|
|
1981
|
+
"text": "string | undefined"
|
|
1982
|
+
},
|
|
1983
|
+
"attribute": "category"
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"kind": "field",
|
|
1987
|
+
"name": "_page",
|
|
1988
|
+
"type": {
|
|
1989
|
+
"text": "number"
|
|
1990
|
+
},
|
|
1991
|
+
"default": "1",
|
|
1992
|
+
"attribute": "_page"
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
"kind": "field",
|
|
1996
|
+
"name": "_total",
|
|
1997
|
+
"type": {
|
|
1998
|
+
"text": "number"
|
|
1999
|
+
},
|
|
2000
|
+
"default": "0",
|
|
2001
|
+
"attribute": "_total"
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"kind": "field",
|
|
2005
|
+
"name": "creatable",
|
|
2006
|
+
"type": {
|
|
2007
|
+
"text": "boolean | undefined"
|
|
2008
|
+
},
|
|
2009
|
+
"attribute": "creatable"
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
"kind": "field",
|
|
2013
|
+
"name": "selectBoxToggle",
|
|
2014
|
+
"type": {
|
|
2015
|
+
"text": "string | null | undefined"
|
|
2016
|
+
},
|
|
2017
|
+
"attribute": "selectBoxToggle"
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
"kind": "field",
|
|
2021
|
+
"name": "btnDropBoxIcon",
|
|
2022
|
+
"type": {
|
|
2023
|
+
"text": "string"
|
|
2024
|
+
},
|
|
2025
|
+
"default": "'btn-open-dropbox'",
|
|
2026
|
+
"attribute": "btnDropBoxIcon"
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
"kind": "field",
|
|
2030
|
+
"name": "userName",
|
|
2031
|
+
"type": {
|
|
2032
|
+
"text": "string | undefined"
|
|
2033
|
+
},
|
|
2034
|
+
"attribute": "userName"
|
|
2035
|
+
},
|
|
2036
|
+
{
|
|
2037
|
+
"kind": "field",
|
|
2038
|
+
"name": "main",
|
|
2039
|
+
"type": {
|
|
2040
|
+
"text": "HTMLDivElement"
|
|
2041
|
+
}
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
"kind": "field",
|
|
2045
|
+
"name": "creationCard",
|
|
2046
|
+
"type": {
|
|
2047
|
+
"text": "RestfulAttachmentCreationCard"
|
|
2048
|
+
}
|
|
2049
|
+
},
|
|
2050
|
+
{
|
|
2051
|
+
"kind": "method",
|
|
2052
|
+
"name": "toggleSelectBox"
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
"kind": "method",
|
|
2056
|
+
"name": "onClickSelect",
|
|
2057
|
+
"parameters": [
|
|
2058
|
+
{
|
|
2059
|
+
"name": "attachment",
|
|
2060
|
+
"type": {
|
|
2061
|
+
"text": "any"
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
]
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
"kind": "method",
|
|
2068
|
+
"name": "onAttachmentDropped",
|
|
2069
|
+
"parameters": [
|
|
2070
|
+
{
|
|
2071
|
+
"name": "e",
|
|
2072
|
+
"type": {
|
|
2073
|
+
"text": "Event"
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
]
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"kind": "method",
|
|
2080
|
+
"name": "onCreateAttachment",
|
|
2081
|
+
"parameters": [
|
|
2082
|
+
{
|
|
2083
|
+
"name": "e",
|
|
2084
|
+
"type": {
|
|
2085
|
+
"text": "Event"
|
|
2086
|
+
}
|
|
2087
|
+
}
|
|
2088
|
+
]
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"kind": "method",
|
|
2092
|
+
"name": "onDeleteAttachment",
|
|
2093
|
+
"parameters": [
|
|
2094
|
+
{
|
|
2095
|
+
"name": "id",
|
|
2096
|
+
"type": {
|
|
2097
|
+
"text": "string"
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
]
|
|
2101
|
+
},
|
|
2102
|
+
{
|
|
2103
|
+
"kind": "method",
|
|
2104
|
+
"name": "refreshAttachments"
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"kind": "method",
|
|
2108
|
+
"name": "appendAttachments"
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
"kind": "method",
|
|
2112
|
+
"name": "getAttachments",
|
|
2113
|
+
"parameters": [
|
|
2114
|
+
{
|
|
2115
|
+
"name": "{ page = 1, limit = 1000 }",
|
|
2116
|
+
"default": "{}"
|
|
2117
|
+
}
|
|
2118
|
+
]
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"kind": "method",
|
|
2122
|
+
"name": "createAttachments",
|
|
2123
|
+
"parameters": [
|
|
2124
|
+
{
|
|
2125
|
+
"name": "category",
|
|
2126
|
+
"type": {
|
|
2127
|
+
"text": "string"
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"name": "files",
|
|
2132
|
+
"type": {
|
|
2133
|
+
"text": "any[]"
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
"name": "fileId",
|
|
2138
|
+
"optional": true,
|
|
2139
|
+
"type": {
|
|
2140
|
+
"text": "string"
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2143
|
+
]
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"kind": "method",
|
|
2147
|
+
"name": "deleteAttachment",
|
|
2148
|
+
"parameters": [
|
|
2149
|
+
{
|
|
2150
|
+
"name": "id",
|
|
2151
|
+
"type": {
|
|
2152
|
+
"text": "string"
|
|
2153
|
+
}
|
|
2154
|
+
}
|
|
2155
|
+
]
|
|
2156
|
+
},
|
|
2157
|
+
{
|
|
2158
|
+
"kind": "method",
|
|
2159
|
+
"name": "copy",
|
|
2160
|
+
"parameters": [
|
|
2161
|
+
{
|
|
2162
|
+
"name": "copied",
|
|
2163
|
+
"type": {
|
|
2164
|
+
"text": "any"
|
|
2165
|
+
}
|
|
2166
|
+
}
|
|
2167
|
+
]
|
|
2168
|
+
}
|
|
2169
|
+
],
|
|
2170
|
+
"events": [
|
|
2171
|
+
{
|
|
2172
|
+
"name": "attachment-selected",
|
|
2173
|
+
"type": {
|
|
2174
|
+
"text": "CustomEvent"
|
|
2175
|
+
}
|
|
2176
|
+
}
|
|
2177
|
+
],
|
|
2178
|
+
"attributes": [
|
|
2179
|
+
{
|
|
2180
|
+
"name": "categories",
|
|
2181
|
+
"type": {
|
|
2182
|
+
"text": "string[]"
|
|
2183
|
+
},
|
|
2184
|
+
"default": "['audio', 'video', 'image', 'text', 'application']",
|
|
2185
|
+
"fieldName": "categories"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"name": "attachments",
|
|
2189
|
+
"type": {
|
|
2190
|
+
"text": "any[]"
|
|
2191
|
+
},
|
|
2192
|
+
"default": "[]",
|
|
2193
|
+
"fieldName": "attachments"
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"name": "category",
|
|
2197
|
+
"type": {
|
|
2198
|
+
"text": "string | undefined"
|
|
2199
|
+
},
|
|
2200
|
+
"fieldName": "category"
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"name": "_page",
|
|
2204
|
+
"type": {
|
|
2205
|
+
"text": "number"
|
|
2206
|
+
},
|
|
2207
|
+
"default": "1",
|
|
2208
|
+
"fieldName": "_page"
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"name": "_total",
|
|
2212
|
+
"type": {
|
|
2213
|
+
"text": "number"
|
|
2214
|
+
},
|
|
2215
|
+
"default": "0",
|
|
2216
|
+
"fieldName": "_total"
|
|
2217
|
+
},
|
|
2218
|
+
{
|
|
2219
|
+
"name": "creatable",
|
|
2220
|
+
"type": {
|
|
2221
|
+
"text": "boolean | undefined"
|
|
2222
|
+
},
|
|
2223
|
+
"fieldName": "creatable"
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
"name": "selectBoxToggle",
|
|
2227
|
+
"type": {
|
|
2228
|
+
"text": "string | null | undefined"
|
|
2229
|
+
},
|
|
2230
|
+
"fieldName": "selectBoxToggle"
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
"name": "btnDropBoxIcon",
|
|
2234
|
+
"type": {
|
|
2235
|
+
"text": "string"
|
|
2236
|
+
},
|
|
2237
|
+
"default": "'btn-open-dropbox'",
|
|
2238
|
+
"fieldName": "btnDropBoxIcon"
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"name": "userName",
|
|
2242
|
+
"type": {
|
|
2243
|
+
"text": "string | undefined"
|
|
2244
|
+
},
|
|
2245
|
+
"fieldName": "userName"
|
|
2246
|
+
}
|
|
2247
|
+
],
|
|
2248
|
+
"mixins": [
|
|
2249
|
+
{
|
|
2250
|
+
"name": "localize(i18next)",
|
|
2251
|
+
"module": "src/component/restful-attachment-selector.ts"
|
|
2252
|
+
}
|
|
2253
|
+
],
|
|
2254
|
+
"superclass": {
|
|
2255
|
+
"name": "LitElement",
|
|
2256
|
+
"package": "lit"
|
|
2257
|
+
},
|
|
2258
|
+
"tagName": "restful-attachment-selector",
|
|
2259
|
+
"customElement": true
|
|
2260
|
+
}
|
|
2261
|
+
],
|
|
2262
|
+
"exports": [
|
|
2263
|
+
{
|
|
2264
|
+
"kind": "js",
|
|
2265
|
+
"name": "RestfulAttachmentSelector",
|
|
2266
|
+
"declaration": {
|
|
2267
|
+
"name": "RestfulAttachmentSelector",
|
|
2268
|
+
"module": "src/component/restful-attachment-selector.ts"
|
|
2269
|
+
}
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
"kind": "custom-element-definition",
|
|
2273
|
+
"name": "restful-attachment-selector",
|
|
2274
|
+
"declaration": {
|
|
2275
|
+
"name": "RestfulAttachmentSelector",
|
|
2276
|
+
"module": "src/component/restful-attachment-selector.ts"
|
|
2277
|
+
}
|
|
2278
|
+
}
|
|
2279
|
+
]
|
|
2280
|
+
},
|
|
2281
|
+
{
|
|
2282
|
+
"kind": "javascript-module",
|
|
2283
|
+
"path": "src/component/restful-file-selector.ts",
|
|
2284
|
+
"declarations": [
|
|
2285
|
+
{
|
|
2286
|
+
"kind": "class",
|
|
2287
|
+
"description": "",
|
|
2288
|
+
"name": "RestfulFileSelector",
|
|
2289
|
+
"members": [
|
|
2290
|
+
{
|
|
2291
|
+
"kind": "field",
|
|
2292
|
+
"name": "label",
|
|
2293
|
+
"type": {
|
|
2294
|
+
"text": "string"
|
|
2295
|
+
},
|
|
2296
|
+
"default": "'select file'",
|
|
2297
|
+
"attribute": "label"
|
|
2298
|
+
},
|
|
2299
|
+
{
|
|
2300
|
+
"kind": "field",
|
|
2301
|
+
"name": "accept",
|
|
2302
|
+
"type": {
|
|
2303
|
+
"text": "string | undefined"
|
|
2304
|
+
},
|
|
2305
|
+
"attribute": "accept"
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"kind": "field",
|
|
2309
|
+
"name": "showFilename",
|
|
2310
|
+
"type": {
|
|
2311
|
+
"text": "boolean | undefined"
|
|
2312
|
+
},
|
|
2313
|
+
"attribute": "show-filename"
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"kind": "field",
|
|
2317
|
+
"name": "multiple",
|
|
2318
|
+
"type": {
|
|
2319
|
+
"text": "boolean"
|
|
2320
|
+
},
|
|
2321
|
+
"default": "false",
|
|
2322
|
+
"attribute": "multiple"
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"kind": "field",
|
|
2326
|
+
"name": "_files",
|
|
2327
|
+
"type": {
|
|
2328
|
+
"text": "any[]"
|
|
2329
|
+
},
|
|
2330
|
+
"default": "[]",
|
|
2331
|
+
"attribute": "_files"
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
"kind": "field",
|
|
2335
|
+
"name": "fileInput",
|
|
2336
|
+
"type": {
|
|
2337
|
+
"text": "HTMLInputElement"
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"kind": "method",
|
|
2342
|
+
"name": "getUUID"
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"kind": "method",
|
|
2346
|
+
"name": "onFileChange",
|
|
2347
|
+
"parameters": [
|
|
2348
|
+
{
|
|
2349
|
+
"name": "e",
|
|
2350
|
+
"type": {
|
|
2351
|
+
"text": "Event"
|
|
2352
|
+
}
|
|
2353
|
+
}
|
|
2354
|
+
]
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
"kind": "method",
|
|
2358
|
+
"name": "onImageFileChanged",
|
|
2359
|
+
"parameters": [
|
|
2360
|
+
{
|
|
2361
|
+
"name": "e",
|
|
2362
|
+
"type": {
|
|
2363
|
+
"text": "Event"
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2366
|
+
]
|
|
2367
|
+
}
|
|
2368
|
+
],
|
|
2369
|
+
"attributes": [
|
|
2370
|
+
{
|
|
2371
|
+
"name": "label",
|
|
2372
|
+
"type": {
|
|
2373
|
+
"text": "string"
|
|
2374
|
+
},
|
|
2375
|
+
"default": "'select file'",
|
|
2376
|
+
"fieldName": "label"
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
"name": "accept",
|
|
2380
|
+
"type": {
|
|
2381
|
+
"text": "string | undefined"
|
|
2382
|
+
},
|
|
2383
|
+
"fieldName": "accept"
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"name": "show-filename",
|
|
2387
|
+
"type": {
|
|
2388
|
+
"text": "boolean | undefined"
|
|
2389
|
+
},
|
|
2390
|
+
"fieldName": "showFilename"
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
"name": "multiple",
|
|
2394
|
+
"type": {
|
|
2395
|
+
"text": "boolean"
|
|
2396
|
+
},
|
|
2397
|
+
"default": "false",
|
|
2398
|
+
"fieldName": "multiple"
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
"name": "_files",
|
|
2402
|
+
"type": {
|
|
2403
|
+
"text": "any[]"
|
|
2404
|
+
},
|
|
2405
|
+
"default": "[]",
|
|
2406
|
+
"fieldName": "_files"
|
|
2407
|
+
}
|
|
2408
|
+
],
|
|
2409
|
+
"superclass": {
|
|
2410
|
+
"name": "LitElement",
|
|
2411
|
+
"package": "lit"
|
|
2412
|
+
},
|
|
2413
|
+
"tagName": "restful-file-selector",
|
|
2414
|
+
"customElement": true
|
|
2415
|
+
}
|
|
2416
|
+
],
|
|
2417
|
+
"exports": [
|
|
2418
|
+
{
|
|
2419
|
+
"kind": "js",
|
|
2420
|
+
"name": "RestfulFileSelector",
|
|
2421
|
+
"declaration": {
|
|
2422
|
+
"name": "RestfulFileSelector",
|
|
2423
|
+
"module": "src/component/restful-file-selector.ts"
|
|
2424
|
+
}
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
"kind": "custom-element-definition",
|
|
2428
|
+
"name": "restful-file-selector",
|
|
2429
|
+
"declaration": {
|
|
2430
|
+
"name": "RestfulFileSelector",
|
|
2431
|
+
"module": "src/component/restful-file-selector.ts"
|
|
2432
|
+
}
|
|
2433
|
+
}
|
|
2434
|
+
]
|
|
2435
|
+
},
|
|
2436
|
+
{
|
|
2437
|
+
"kind": "javascript-module",
|
|
2438
|
+
"path": "src/component/restful-input-attachment-selector.ts",
|
|
2439
|
+
"declarations": [
|
|
2440
|
+
{
|
|
2441
|
+
"kind": "class",
|
|
2442
|
+
"description": "",
|
|
2443
|
+
"name": "RestfulInputAttachmentSelector",
|
|
2444
|
+
"members": [
|
|
2445
|
+
{
|
|
2446
|
+
"kind": "field",
|
|
2447
|
+
"name": "value",
|
|
2448
|
+
"type": {
|
|
2449
|
+
"text": "string"
|
|
2450
|
+
},
|
|
2451
|
+
"default": "''",
|
|
2452
|
+
"attribute": "value"
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"kind": "field",
|
|
2456
|
+
"name": "popup",
|
|
2457
|
+
"type": {
|
|
2458
|
+
"text": "PopupHandle | undefined"
|
|
2459
|
+
},
|
|
2460
|
+
"privacy": "private"
|
|
2461
|
+
},
|
|
2462
|
+
{
|
|
2463
|
+
"kind": "method",
|
|
2464
|
+
"name": "getIconByCategory"
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
"kind": "method",
|
|
2468
|
+
"name": "_onInputChanged",
|
|
2469
|
+
"parameters": [
|
|
2470
|
+
{
|
|
2471
|
+
"name": "e",
|
|
2472
|
+
"type": {
|
|
2473
|
+
"text": "KeyboardEvent"
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
]
|
|
2477
|
+
},
|
|
2478
|
+
{
|
|
2479
|
+
"kind": "method",
|
|
2480
|
+
"name": "openSelector"
|
|
2481
|
+
}
|
|
2482
|
+
],
|
|
2483
|
+
"events": [
|
|
2484
|
+
{
|
|
2485
|
+
"name": "change",
|
|
2486
|
+
"type": {
|
|
2487
|
+
"text": "CustomEvent"
|
|
2488
|
+
}
|
|
2489
|
+
}
|
|
2490
|
+
],
|
|
2491
|
+
"attributes": [
|
|
2492
|
+
{
|
|
2493
|
+
"name": "value",
|
|
2494
|
+
"type": {
|
|
2495
|
+
"text": "string"
|
|
2496
|
+
},
|
|
2497
|
+
"default": "''",
|
|
2498
|
+
"fieldName": "value"
|
|
2499
|
+
},
|
|
2500
|
+
{
|
|
2501
|
+
"name": "properties",
|
|
2502
|
+
"type": {
|
|
2503
|
+
"text": "any"
|
|
2504
|
+
},
|
|
2505
|
+
"fieldName": "properties"
|
|
2506
|
+
}
|
|
2507
|
+
],
|
|
2508
|
+
"superclass": {
|
|
2509
|
+
"name": "LitElement",
|
|
2510
|
+
"package": "lit"
|
|
2511
|
+
},
|
|
2512
|
+
"tagName": "restful-input-attachment-selector",
|
|
2513
|
+
"customElement": true
|
|
2514
|
+
}
|
|
2515
|
+
],
|
|
2516
|
+
"exports": [
|
|
2517
|
+
{
|
|
2518
|
+
"kind": "js",
|
|
2519
|
+
"name": "RestfulInputAttachmentSelector",
|
|
2520
|
+
"declaration": {
|
|
2521
|
+
"name": "RestfulInputAttachmentSelector",
|
|
2522
|
+
"module": "src/component/restful-input-attachment-selector.ts"
|
|
2523
|
+
}
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"kind": "custom-element-definition",
|
|
2527
|
+
"name": "restful-input-attachment-selector",
|
|
2528
|
+
"declaration": {
|
|
2529
|
+
"name": "RestfulInputAttachmentSelector",
|
|
2530
|
+
"module": "src/component/restful-input-attachment-selector.ts"
|
|
2531
|
+
}
|
|
2532
|
+
}
|
|
2533
|
+
]
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"kind": "javascript-module",
|
|
2537
|
+
"path": "src/component/restful-input-fill-style.ts",
|
|
2538
|
+
"declarations": [
|
|
2539
|
+
{
|
|
2540
|
+
"kind": "class",
|
|
2541
|
+
"description": "",
|
|
2542
|
+
"name": "RestfulInputColorStyle",
|
|
2543
|
+
"members": [
|
|
2544
|
+
{
|
|
2545
|
+
"kind": "field",
|
|
2546
|
+
"name": "value",
|
|
2547
|
+
"type": {
|
|
2548
|
+
"text": "FillStyle | undefined"
|
|
2549
|
+
},
|
|
2550
|
+
"attribute": "value"
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
"kind": "field",
|
|
2554
|
+
"name": "fillType",
|
|
2555
|
+
"type": {
|
|
2556
|
+
"text": "string | undefined"
|
|
2557
|
+
},
|
|
2558
|
+
"attribute": "fillType"
|
|
2559
|
+
},
|
|
2560
|
+
{
|
|
2561
|
+
"kind": "field",
|
|
2562
|
+
"name": "solid",
|
|
2563
|
+
"type": {
|
|
2564
|
+
"text": "string | undefined"
|
|
2565
|
+
},
|
|
2566
|
+
"attribute": "solid"
|
|
2567
|
+
},
|
|
2568
|
+
{
|
|
2569
|
+
"kind": "field",
|
|
2570
|
+
"name": "gradient",
|
|
2571
|
+
"type": {
|
|
2572
|
+
"text": "GradientOption | undefined"
|
|
2573
|
+
},
|
|
2574
|
+
"attribute": "gradient"
|
|
2575
|
+
},
|
|
2576
|
+
{
|
|
2577
|
+
"kind": "field",
|
|
2578
|
+
"name": "pattern",
|
|
2579
|
+
"type": {
|
|
2580
|
+
"text": "BackgroundPatternOption | undefined"
|
|
2581
|
+
},
|
|
2582
|
+
"attribute": "pattern"
|
|
2583
|
+
},
|
|
2584
|
+
{
|
|
2585
|
+
"kind": "field",
|
|
2586
|
+
"name": "colorOnly",
|
|
2587
|
+
"type": {
|
|
2588
|
+
"text": "boolean"
|
|
2589
|
+
},
|
|
2590
|
+
"default": "false",
|
|
2591
|
+
"attribute": "color-only"
|
|
2592
|
+
},
|
|
2593
|
+
{
|
|
2594
|
+
"kind": "field",
|
|
2595
|
+
"name": "_block_reset",
|
|
2596
|
+
"type": {
|
|
2597
|
+
"text": "boolean"
|
|
2598
|
+
},
|
|
2599
|
+
"privacy": "private",
|
|
2600
|
+
"default": "false"
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
"kind": "method",
|
|
2604
|
+
"name": "_onChangedValue",
|
|
2605
|
+
"parameters": [
|
|
2606
|
+
{
|
|
2607
|
+
"name": "value",
|
|
2608
|
+
"type": {
|
|
2609
|
+
"text": "FillStyle"
|
|
2610
|
+
}
|
|
2611
|
+
}
|
|
2612
|
+
]
|
|
2613
|
+
},
|
|
2614
|
+
{
|
|
2615
|
+
"kind": "method",
|
|
2616
|
+
"name": "_onChangedFillType",
|
|
2617
|
+
"parameters": [
|
|
2618
|
+
{
|
|
2619
|
+
"name": "e",
|
|
2620
|
+
"type": {
|
|
2621
|
+
"text": "Event"
|
|
2622
|
+
}
|
|
2623
|
+
}
|
|
2624
|
+
]
|
|
2625
|
+
},
|
|
2626
|
+
{
|
|
2627
|
+
"kind": "method",
|
|
2628
|
+
"name": "_onChangedSolid",
|
|
2629
|
+
"parameters": [
|
|
2630
|
+
{
|
|
2631
|
+
"name": "e",
|
|
2632
|
+
"type": {
|
|
2633
|
+
"text": "Event"
|
|
2634
|
+
}
|
|
2635
|
+
}
|
|
2636
|
+
]
|
|
2637
|
+
},
|
|
2638
|
+
{
|
|
2639
|
+
"kind": "method",
|
|
2640
|
+
"name": "_onChandedGradient",
|
|
2641
|
+
"parameters": [
|
|
2642
|
+
{
|
|
2643
|
+
"name": "e",
|
|
2644
|
+
"type": {
|
|
2645
|
+
"text": "Event"
|
|
2646
|
+
}
|
|
2647
|
+
}
|
|
2648
|
+
]
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
"kind": "method",
|
|
2652
|
+
"name": "_onChangedPattern",
|
|
2653
|
+
"parameters": [
|
|
2654
|
+
{
|
|
2655
|
+
"name": "e",
|
|
2656
|
+
"type": {
|
|
2657
|
+
"text": "Event"
|
|
2658
|
+
}
|
|
2659
|
+
}
|
|
2660
|
+
]
|
|
2661
|
+
}
|
|
2662
|
+
],
|
|
2663
|
+
"events": [
|
|
2664
|
+
{
|
|
2665
|
+
"name": "change",
|
|
2666
|
+
"type": {
|
|
2667
|
+
"text": "CustomEvent"
|
|
2668
|
+
}
|
|
2669
|
+
}
|
|
2670
|
+
],
|
|
2671
|
+
"attributes": [
|
|
2672
|
+
{
|
|
2673
|
+
"name": "value",
|
|
2674
|
+
"type": {
|
|
2675
|
+
"text": "FillStyle | undefined"
|
|
2676
|
+
},
|
|
2677
|
+
"fieldName": "value"
|
|
2678
|
+
},
|
|
2679
|
+
{
|
|
2680
|
+
"name": "fillType",
|
|
2681
|
+
"type": {
|
|
2682
|
+
"text": "string | undefined"
|
|
2683
|
+
},
|
|
2684
|
+
"fieldName": "fillType"
|
|
2685
|
+
},
|
|
2686
|
+
{
|
|
2687
|
+
"name": "solid",
|
|
2688
|
+
"type": {
|
|
2689
|
+
"text": "string | undefined"
|
|
2690
|
+
},
|
|
2691
|
+
"fieldName": "solid"
|
|
2692
|
+
},
|
|
2693
|
+
{
|
|
2694
|
+
"name": "gradient",
|
|
2695
|
+
"type": {
|
|
2696
|
+
"text": "GradientOption | undefined"
|
|
2697
|
+
},
|
|
2698
|
+
"fieldName": "gradient"
|
|
2699
|
+
},
|
|
2700
|
+
{
|
|
2701
|
+
"name": "pattern",
|
|
2702
|
+
"type": {
|
|
2703
|
+
"text": "BackgroundPatternOption | undefined"
|
|
2704
|
+
},
|
|
2705
|
+
"fieldName": "pattern"
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"name": "color-only",
|
|
2709
|
+
"type": {
|
|
2710
|
+
"text": "boolean"
|
|
2711
|
+
},
|
|
2712
|
+
"default": "false",
|
|
2713
|
+
"fieldName": "colorOnly"
|
|
2714
|
+
}
|
|
2715
|
+
],
|
|
2716
|
+
"superclass": {
|
|
2717
|
+
"name": "OxFormField",
|
|
2718
|
+
"package": "@operato/input"
|
|
2719
|
+
},
|
|
2720
|
+
"tagName": "restful-input-fill-style",
|
|
2721
|
+
"customElement": true
|
|
2722
|
+
}
|
|
2723
|
+
],
|
|
2724
|
+
"exports": [
|
|
2725
|
+
{
|
|
2726
|
+
"kind": "js",
|
|
2727
|
+
"name": "RestfulInputColorStyle",
|
|
2728
|
+
"declaration": {
|
|
2729
|
+
"name": "RestfulInputColorStyle",
|
|
2730
|
+
"module": "src/component/restful-input-fill-style.ts"
|
|
2731
|
+
}
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
"kind": "custom-element-definition",
|
|
2735
|
+
"name": "restful-input-fill-style",
|
|
2736
|
+
"declaration": {
|
|
2737
|
+
"name": "RestfulInputColorStyle",
|
|
2738
|
+
"module": "src/component/restful-input-fill-style.ts"
|
|
2739
|
+
}
|
|
2740
|
+
}
|
|
2741
|
+
]
|
|
2742
|
+
},
|
|
2743
|
+
{
|
|
2744
|
+
"kind": "javascript-module",
|
|
2745
|
+
"path": "src/component/restrul-input-background-pattern.ts",
|
|
2746
|
+
"declarations": [
|
|
2747
|
+
{
|
|
2748
|
+
"kind": "class",
|
|
2749
|
+
"description": "컴포넌트의 fill pattern을 편집하는 element\n\nExample:\n <restful-input-background-pattern",
|
|
2750
|
+
"name": "RestfulInputBackgroundPattern",
|
|
2751
|
+
"members": [
|
|
2752
|
+
{
|
|
2753
|
+
"kind": "field",
|
|
2754
|
+
"name": "value",
|
|
2755
|
+
"type": {
|
|
2756
|
+
"text": "BackgroundPatternOption | undefined"
|
|
2757
|
+
},
|
|
2758
|
+
"attribute": "value"
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"kind": "method",
|
|
2762
|
+
"name": "_onChange",
|
|
2763
|
+
"parameters": [
|
|
2764
|
+
{
|
|
2765
|
+
"name": "e",
|
|
2766
|
+
"type": {
|
|
2767
|
+
"text": "Event"
|
|
2768
|
+
}
|
|
2769
|
+
}
|
|
2770
|
+
]
|
|
2771
|
+
}
|
|
2772
|
+
],
|
|
2773
|
+
"events": [
|
|
2774
|
+
{
|
|
2775
|
+
"name": "change",
|
|
2776
|
+
"type": {
|
|
2777
|
+
"text": "CustomEvent"
|
|
2778
|
+
}
|
|
2779
|
+
}
|
|
2780
|
+
],
|
|
2781
|
+
"attributes": [
|
|
2782
|
+
{
|
|
2783
|
+
"name": "value",
|
|
2784
|
+
"type": {
|
|
2785
|
+
"text": "BackgroundPatternOption | undefined"
|
|
2786
|
+
},
|
|
2787
|
+
"fieldName": "value"
|
|
2788
|
+
}
|
|
2789
|
+
],
|
|
2790
|
+
"superclass": {
|
|
2791
|
+
"name": "OxFormField",
|
|
2792
|
+
"package": "@operato/input"
|
|
2793
|
+
},
|
|
2794
|
+
"tagName": "restful-input-background-pattern",
|
|
2795
|
+
"customElement": true
|
|
2796
|
+
}
|
|
2797
|
+
],
|
|
2798
|
+
"exports": [
|
|
2799
|
+
{
|
|
2800
|
+
"kind": "js",
|
|
2801
|
+
"name": "RestfulInputBackgroundPattern",
|
|
2802
|
+
"declaration": {
|
|
2803
|
+
"name": "RestfulInputBackgroundPattern",
|
|
2804
|
+
"module": "src/component/restrul-input-background-pattern.ts"
|
|
2805
|
+
}
|
|
2806
|
+
},
|
|
2807
|
+
{
|
|
2808
|
+
"kind": "custom-element-definition",
|
|
2809
|
+
"name": "restful-input-background-pattern",
|
|
2810
|
+
"declaration": {
|
|
2811
|
+
"name": "RestfulInputBackgroundPattern",
|
|
2812
|
+
"module": "src/component/restrul-input-background-pattern.ts"
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2815
|
+
]
|
|
2816
|
+
},
|
|
2817
|
+
{
|
|
2818
|
+
"kind": "javascript-module",
|
|
2819
|
+
"path": "src/data-storage/data-storage.ts",
|
|
2820
|
+
"declarations": [
|
|
2821
|
+
{
|
|
2822
|
+
"kind": "class",
|
|
2823
|
+
"description": "",
|
|
2824
|
+
"name": "DataStorage",
|
|
2825
|
+
"members": [
|
|
2826
|
+
{
|
|
2827
|
+
"kind": "field",
|
|
2828
|
+
"name": "id",
|
|
2829
|
+
"type": {
|
|
2830
|
+
"text": "string"
|
|
2831
|
+
},
|
|
2832
|
+
"privacy": "private",
|
|
2833
|
+
"default": "id"
|
|
2834
|
+
},
|
|
2835
|
+
{
|
|
2836
|
+
"kind": "method",
|
|
2837
|
+
"name": "load",
|
|
2838
|
+
"privacy": "public",
|
|
2839
|
+
"return": {
|
|
2840
|
+
"type": {
|
|
2841
|
+
"text": "Promise<any>"
|
|
2842
|
+
}
|
|
2843
|
+
},
|
|
2844
|
+
"parameters": [
|
|
2845
|
+
{
|
|
2846
|
+
"name": "key",
|
|
2847
|
+
"type": {
|
|
2848
|
+
"text": "Component"
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
]
|
|
2852
|
+
},
|
|
2853
|
+
{
|
|
2854
|
+
"kind": "method",
|
|
2855
|
+
"name": "save",
|
|
2856
|
+
"privacy": "public",
|
|
2857
|
+
"return": {
|
|
2858
|
+
"type": {
|
|
2859
|
+
"text": "Promise<void>"
|
|
2860
|
+
}
|
|
2861
|
+
},
|
|
2862
|
+
"parameters": [
|
|
2863
|
+
{
|
|
2864
|
+
"name": "key",
|
|
2865
|
+
"type": {
|
|
2866
|
+
"text": "Component"
|
|
2867
|
+
}
|
|
2868
|
+
},
|
|
2869
|
+
{
|
|
2870
|
+
"name": "value",
|
|
2871
|
+
"type": {
|
|
2872
|
+
"text": "any"
|
|
2873
|
+
}
|
|
2874
|
+
}
|
|
2875
|
+
]
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
"kind": "method",
|
|
2879
|
+
"name": "clear",
|
|
2880
|
+
"privacy": "public",
|
|
2881
|
+
"return": {
|
|
2882
|
+
"type": {
|
|
2883
|
+
"text": "Promise<void>"
|
|
2884
|
+
}
|
|
2885
|
+
},
|
|
2886
|
+
"parameters": [
|
|
2887
|
+
{
|
|
2888
|
+
"name": "key",
|
|
2889
|
+
"type": {
|
|
2890
|
+
"text": "Component"
|
|
2891
|
+
}
|
|
2892
|
+
}
|
|
2893
|
+
]
|
|
2894
|
+
}
|
|
2895
|
+
]
|
|
2896
|
+
}
|
|
2897
|
+
],
|
|
2898
|
+
"exports": [
|
|
2899
|
+
{
|
|
2900
|
+
"kind": "js",
|
|
2901
|
+
"name": "DataStorage",
|
|
2902
|
+
"declaration": {
|
|
2903
|
+
"name": "DataStorage",
|
|
2904
|
+
"module": "src/data-storage/data-storage.ts"
|
|
2905
|
+
}
|
|
2906
|
+
}
|
|
2907
|
+
]
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
"kind": "javascript-module",
|
|
2911
|
+
"path": "src/layers/mcs-mouse-event-handler.ts",
|
|
2912
|
+
"declarations": [],
|
|
2913
|
+
"exports": []
|
|
2914
|
+
},
|
|
2915
|
+
{
|
|
2916
|
+
"kind": "javascript-module",
|
|
2917
|
+
"path": "src/layers/movement-layer.ts",
|
|
2918
|
+
"declarations": [
|
|
2919
|
+
{
|
|
2920
|
+
"kind": "class",
|
|
2921
|
+
"description": "",
|
|
2922
|
+
"name": "MovementLayer",
|
|
2923
|
+
"members": [
|
|
2924
|
+
{
|
|
2925
|
+
"kind": "field",
|
|
2926
|
+
"name": "drawInstructionHandler"
|
|
2927
|
+
},
|
|
2928
|
+
{
|
|
2929
|
+
"kind": "field",
|
|
2930
|
+
"name": "clickComponentHandler"
|
|
2931
|
+
},
|
|
2932
|
+
{
|
|
2933
|
+
"kind": "method",
|
|
2934
|
+
"name": "ready"
|
|
2935
|
+
},
|
|
2936
|
+
{
|
|
2937
|
+
"kind": "method",
|
|
2938
|
+
"name": "dispose"
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
"kind": "field",
|
|
2942
|
+
"name": "pointerEvents",
|
|
2943
|
+
"readonly": true
|
|
2944
|
+
},
|
|
2945
|
+
{
|
|
2946
|
+
"kind": "field",
|
|
2947
|
+
"name": "capturable",
|
|
2948
|
+
"readonly": true
|
|
2949
|
+
},
|
|
2950
|
+
{
|
|
2951
|
+
"kind": "method",
|
|
2952
|
+
"name": "drawArrow",
|
|
2953
|
+
"parameters": [
|
|
2954
|
+
{
|
|
2955
|
+
"name": "ctx",
|
|
2956
|
+
"type": {
|
|
2957
|
+
"text": "CanvasRenderingContext2D"
|
|
2958
|
+
}
|
|
2959
|
+
},
|
|
2960
|
+
{
|
|
1883
2961
|
"name": "p1",
|
|
1884
2962
|
"type": {
|
|
1885
2963
|
"text": "POINT"
|
|
@@ -5243,16 +6321,256 @@
|
|
|
5243
6321
|
"text": "any"
|
|
5244
6322
|
}
|
|
5245
6323
|
}
|
|
5246
|
-
]
|
|
6324
|
+
]
|
|
6325
|
+
}
|
|
6326
|
+
],
|
|
6327
|
+
"exports": [
|
|
6328
|
+
{
|
|
6329
|
+
"kind": "js",
|
|
6330
|
+
"name": "convert",
|
|
6331
|
+
"declaration": {
|
|
6332
|
+
"name": "convert",
|
|
6333
|
+
"module": "src/modeller/property-sidebar/effects/value-converter.ts"
|
|
6334
|
+
}
|
|
6335
|
+
}
|
|
6336
|
+
]
|
|
6337
|
+
},
|
|
6338
|
+
{
|
|
6339
|
+
"kind": "javascript-module",
|
|
6340
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
6341
|
+
"declarations": [
|
|
6342
|
+
{
|
|
6343
|
+
"kind": "class",
|
|
6344
|
+
"description": "",
|
|
6345
|
+
"name": "SceneInspector",
|
|
6346
|
+
"members": [
|
|
6347
|
+
{
|
|
6348
|
+
"kind": "field",
|
|
6349
|
+
"name": "scene",
|
|
6350
|
+
"type": {
|
|
6351
|
+
"text": "Scene | undefined"
|
|
6352
|
+
},
|
|
6353
|
+
"attribute": "scene"
|
|
6354
|
+
},
|
|
6355
|
+
{
|
|
6356
|
+
"kind": "field",
|
|
6357
|
+
"name": "searchText",
|
|
6358
|
+
"type": {
|
|
6359
|
+
"text": "string"
|
|
6360
|
+
},
|
|
6361
|
+
"privacy": "private",
|
|
6362
|
+
"default": "''"
|
|
6363
|
+
},
|
|
6364
|
+
{
|
|
6365
|
+
"kind": "field",
|
|
6366
|
+
"name": "_extendedMap",
|
|
6367
|
+
"type": {
|
|
6368
|
+
"text": "any"
|
|
6369
|
+
},
|
|
6370
|
+
"privacy": "private"
|
|
6371
|
+
},
|
|
6372
|
+
{
|
|
6373
|
+
"kind": "field",
|
|
6374
|
+
"name": "show",
|
|
6375
|
+
"type": {
|
|
6376
|
+
"text": "boolean"
|
|
6377
|
+
},
|
|
6378
|
+
"privacy": "private",
|
|
6379
|
+
"default": "false"
|
|
6380
|
+
},
|
|
6381
|
+
{
|
|
6382
|
+
"kind": "field",
|
|
6383
|
+
"name": "count",
|
|
6384
|
+
"type": {
|
|
6385
|
+
"text": "number"
|
|
6386
|
+
},
|
|
6387
|
+
"privacy": "private",
|
|
6388
|
+
"default": "-1"
|
|
6389
|
+
},
|
|
6390
|
+
{
|
|
6391
|
+
"kind": "method",
|
|
6392
|
+
"name": "disconnectScene",
|
|
6393
|
+
"parameters": [
|
|
6394
|
+
{
|
|
6395
|
+
"name": "scene",
|
|
6396
|
+
"optional": true,
|
|
6397
|
+
"type": {
|
|
6398
|
+
"text": "Scene"
|
|
6399
|
+
}
|
|
6400
|
+
}
|
|
6401
|
+
]
|
|
6402
|
+
},
|
|
6403
|
+
{
|
|
6404
|
+
"kind": "method",
|
|
6405
|
+
"name": "refresh"
|
|
6406
|
+
},
|
|
6407
|
+
{
|
|
6408
|
+
"kind": "method",
|
|
6409
|
+
"name": "_onclick",
|
|
6410
|
+
"parameters": [
|
|
6411
|
+
{
|
|
6412
|
+
"name": "e",
|
|
6413
|
+
"type": {
|
|
6414
|
+
"text": "MouseEvent"
|
|
6415
|
+
}
|
|
6416
|
+
}
|
|
6417
|
+
]
|
|
6418
|
+
},
|
|
6419
|
+
{
|
|
6420
|
+
"kind": "method",
|
|
6421
|
+
"name": "_ondblclick",
|
|
6422
|
+
"parameters": [
|
|
6423
|
+
{
|
|
6424
|
+
"name": "e",
|
|
6425
|
+
"type": {
|
|
6426
|
+
"text": "MouseEvent"
|
|
6427
|
+
}
|
|
6428
|
+
}
|
|
6429
|
+
]
|
|
6430
|
+
},
|
|
6431
|
+
{
|
|
6432
|
+
"kind": "field",
|
|
6433
|
+
"name": "extendedMap",
|
|
6434
|
+
"readonly": true
|
|
6435
|
+
},
|
|
6436
|
+
{
|
|
6437
|
+
"kind": "method",
|
|
6438
|
+
"name": "getNodeHandleClass",
|
|
6439
|
+
"parameters": [
|
|
6440
|
+
{
|
|
6441
|
+
"name": "component",
|
|
6442
|
+
"type": {
|
|
6443
|
+
"text": "Component"
|
|
6444
|
+
}
|
|
6445
|
+
}
|
|
6446
|
+
]
|
|
6447
|
+
},
|
|
6448
|
+
{
|
|
6449
|
+
"kind": "method",
|
|
6450
|
+
"name": "isExtended",
|
|
6451
|
+
"parameters": [
|
|
6452
|
+
{
|
|
6453
|
+
"name": "component",
|
|
6454
|
+
"type": {
|
|
6455
|
+
"text": "Component"
|
|
6456
|
+
}
|
|
6457
|
+
}
|
|
6458
|
+
]
|
|
6459
|
+
},
|
|
6460
|
+
{
|
|
6461
|
+
"kind": "method",
|
|
6462
|
+
"name": "toggleExtended",
|
|
6463
|
+
"parameters": [
|
|
6464
|
+
{
|
|
6465
|
+
"name": "component",
|
|
6466
|
+
"type": {
|
|
6467
|
+
"text": "Component"
|
|
6468
|
+
}
|
|
6469
|
+
}
|
|
6470
|
+
]
|
|
6471
|
+
},
|
|
6472
|
+
{
|
|
6473
|
+
"kind": "method",
|
|
6474
|
+
"name": "toggleHidden",
|
|
6475
|
+
"parameters": [
|
|
6476
|
+
{
|
|
6477
|
+
"name": "component",
|
|
6478
|
+
"type": {
|
|
6479
|
+
"text": "Component"
|
|
6480
|
+
}
|
|
6481
|
+
}
|
|
6482
|
+
]
|
|
6483
|
+
},
|
|
6484
|
+
{
|
|
6485
|
+
"kind": "method",
|
|
6486
|
+
"name": "selectComponent",
|
|
6487
|
+
"parameters": [
|
|
6488
|
+
{
|
|
6489
|
+
"name": "component",
|
|
6490
|
+
"type": {
|
|
6491
|
+
"text": "Component"
|
|
6492
|
+
}
|
|
6493
|
+
},
|
|
6494
|
+
{
|
|
6495
|
+
"name": "append",
|
|
6496
|
+
"default": "false",
|
|
6497
|
+
"type": {
|
|
6498
|
+
"text": "boolean"
|
|
6499
|
+
}
|
|
6500
|
+
}
|
|
6501
|
+
]
|
|
6502
|
+
},
|
|
6503
|
+
{
|
|
6504
|
+
"kind": "method",
|
|
6505
|
+
"name": "shouldBeShown",
|
|
6506
|
+
"return": {
|
|
6507
|
+
"type": {
|
|
6508
|
+
"text": "boolean"
|
|
6509
|
+
}
|
|
6510
|
+
},
|
|
6511
|
+
"parameters": [
|
|
6512
|
+
{
|
|
6513
|
+
"name": "component",
|
|
6514
|
+
"type": {
|
|
6515
|
+
"text": "Component"
|
|
6516
|
+
}
|
|
6517
|
+
},
|
|
6518
|
+
{
|
|
6519
|
+
"name": "counting",
|
|
6520
|
+
"default": "false",
|
|
6521
|
+
"type": {
|
|
6522
|
+
"text": "boolean"
|
|
6523
|
+
}
|
|
6524
|
+
}
|
|
6525
|
+
]
|
|
6526
|
+
},
|
|
6527
|
+
{
|
|
6528
|
+
"kind": "method",
|
|
6529
|
+
"name": "renderComponent",
|
|
6530
|
+
"return": {
|
|
6531
|
+
"type": {
|
|
6532
|
+
"text": "TemplateResult"
|
|
6533
|
+
}
|
|
6534
|
+
},
|
|
6535
|
+
"parameters": [
|
|
6536
|
+
{
|
|
6537
|
+
"name": "component",
|
|
6538
|
+
"type": {
|
|
6539
|
+
"text": "Component"
|
|
6540
|
+
}
|
|
6541
|
+
},
|
|
6542
|
+
{
|
|
6543
|
+
"name": "depth",
|
|
6544
|
+
"type": {
|
|
6545
|
+
"text": "number"
|
|
6546
|
+
}
|
|
6547
|
+
}
|
|
6548
|
+
]
|
|
6549
|
+
}
|
|
6550
|
+
],
|
|
6551
|
+
"attributes": [
|
|
6552
|
+
{
|
|
6553
|
+
"name": "scene",
|
|
6554
|
+
"type": {
|
|
6555
|
+
"text": "Scene | undefined"
|
|
6556
|
+
},
|
|
6557
|
+
"fieldName": "scene"
|
|
6558
|
+
}
|
|
6559
|
+
],
|
|
6560
|
+
"superclass": {
|
|
6561
|
+
"name": "LitElement",
|
|
6562
|
+
"package": "lit"
|
|
6563
|
+
},
|
|
6564
|
+
"customElement": true
|
|
5247
6565
|
}
|
|
5248
6566
|
],
|
|
5249
6567
|
"exports": [
|
|
5250
6568
|
{
|
|
5251
6569
|
"kind": "js",
|
|
5252
|
-
"name": "
|
|
6570
|
+
"name": "SceneInspector",
|
|
5253
6571
|
"declaration": {
|
|
5254
|
-
"name": "
|
|
5255
|
-
"module": "src/modeller/property-sidebar/
|
|
6572
|
+
"name": "SceneInspector",
|
|
6573
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
5256
6574
|
}
|
|
5257
6575
|
}
|
|
5258
6576
|
]
|
|
@@ -5774,246 +7092,6 @@
|
|
|
5774
7092
|
}
|
|
5775
7093
|
]
|
|
5776
7094
|
},
|
|
5777
|
-
{
|
|
5778
|
-
"kind": "javascript-module",
|
|
5779
|
-
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
5780
|
-
"declarations": [
|
|
5781
|
-
{
|
|
5782
|
-
"kind": "class",
|
|
5783
|
-
"description": "",
|
|
5784
|
-
"name": "SceneInspector",
|
|
5785
|
-
"members": [
|
|
5786
|
-
{
|
|
5787
|
-
"kind": "field",
|
|
5788
|
-
"name": "scene",
|
|
5789
|
-
"type": {
|
|
5790
|
-
"text": "Scene | undefined"
|
|
5791
|
-
},
|
|
5792
|
-
"attribute": "scene"
|
|
5793
|
-
},
|
|
5794
|
-
{
|
|
5795
|
-
"kind": "field",
|
|
5796
|
-
"name": "searchText",
|
|
5797
|
-
"type": {
|
|
5798
|
-
"text": "string"
|
|
5799
|
-
},
|
|
5800
|
-
"privacy": "private",
|
|
5801
|
-
"default": "''"
|
|
5802
|
-
},
|
|
5803
|
-
{
|
|
5804
|
-
"kind": "field",
|
|
5805
|
-
"name": "_extendedMap",
|
|
5806
|
-
"type": {
|
|
5807
|
-
"text": "any"
|
|
5808
|
-
},
|
|
5809
|
-
"privacy": "private"
|
|
5810
|
-
},
|
|
5811
|
-
{
|
|
5812
|
-
"kind": "field",
|
|
5813
|
-
"name": "show",
|
|
5814
|
-
"type": {
|
|
5815
|
-
"text": "boolean"
|
|
5816
|
-
},
|
|
5817
|
-
"privacy": "private",
|
|
5818
|
-
"default": "false"
|
|
5819
|
-
},
|
|
5820
|
-
{
|
|
5821
|
-
"kind": "field",
|
|
5822
|
-
"name": "count",
|
|
5823
|
-
"type": {
|
|
5824
|
-
"text": "number"
|
|
5825
|
-
},
|
|
5826
|
-
"privacy": "private",
|
|
5827
|
-
"default": "-1"
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
"kind": "method",
|
|
5831
|
-
"name": "disconnectScene",
|
|
5832
|
-
"parameters": [
|
|
5833
|
-
{
|
|
5834
|
-
"name": "scene",
|
|
5835
|
-
"optional": true,
|
|
5836
|
-
"type": {
|
|
5837
|
-
"text": "Scene"
|
|
5838
|
-
}
|
|
5839
|
-
}
|
|
5840
|
-
]
|
|
5841
|
-
},
|
|
5842
|
-
{
|
|
5843
|
-
"kind": "method",
|
|
5844
|
-
"name": "refresh"
|
|
5845
|
-
},
|
|
5846
|
-
{
|
|
5847
|
-
"kind": "method",
|
|
5848
|
-
"name": "_onclick",
|
|
5849
|
-
"parameters": [
|
|
5850
|
-
{
|
|
5851
|
-
"name": "e",
|
|
5852
|
-
"type": {
|
|
5853
|
-
"text": "MouseEvent"
|
|
5854
|
-
}
|
|
5855
|
-
}
|
|
5856
|
-
]
|
|
5857
|
-
},
|
|
5858
|
-
{
|
|
5859
|
-
"kind": "method",
|
|
5860
|
-
"name": "_ondblclick",
|
|
5861
|
-
"parameters": [
|
|
5862
|
-
{
|
|
5863
|
-
"name": "e",
|
|
5864
|
-
"type": {
|
|
5865
|
-
"text": "MouseEvent"
|
|
5866
|
-
}
|
|
5867
|
-
}
|
|
5868
|
-
]
|
|
5869
|
-
},
|
|
5870
|
-
{
|
|
5871
|
-
"kind": "field",
|
|
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
7095
|
{
|
|
6018
7096
|
"kind": "javascript-module",
|
|
6019
7097
|
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|