@fmsim/board 0.0.89 → 0.0.91
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 +2020 -2023
- package/dist/src/layers/movement-layer.d.ts +2 -1
- package/dist/src/layers/movement-layer.js +13 -3
- package/dist/src/layers/movement-layer.js.map +1 -1
- package/dist/src/modeller/edit-toolbar.d.ts +0 -4
- package/dist/src/modeller/edit-toolbar.js +1 -69
- package/dist/src/modeller/edit-toolbar.js.map +1 -1
- package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.d.ts +0 -1
- package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.js +1 -2
- package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.js.map +1 -1
- package/dist/src/modeller/property-sidebar/data-binding/data-binding.d.ts +0 -1
- package/dist/src/modeller/property-sidebar/data-binding/data-binding.js +2 -7
- package/dist/src/modeller/property-sidebar/data-binding/data-binding.js.map +1 -1
- package/dist/src/modeller/property-sidebar/effects/effects.d.ts +0 -1
- package/dist/src/modeller/property-sidebar/effects/effects.js +1 -2
- package/dist/src/modeller/property-sidebar/effects/effects.js.map +1 -1
- package/dist/src/modeller/property-sidebar/effects/property-event-hover.d.ts +1 -1
- package/dist/src/modeller/property-sidebar/effects/property-event.d.ts +0 -1
- package/dist/src/modeller/property-sidebar/effects/property-event.js +1 -2
- package/dist/src/modeller/property-sidebar/effects/property-event.js.map +1 -1
- package/dist/src/modeller/property-sidebar/inspector/inspector.d.ts +1 -1
- package/dist/src/modeller/property-sidebar/inspector/inspector.js +16 -31
- package/dist/src/modeller/property-sidebar/inspector/inspector.js.map +1 -1
- package/dist/src/modeller/property-sidebar/shapes/shapes.d.ts +0 -1
- package/dist/src/modeller/property-sidebar/shapes/shapes.js +3 -8
- package/dist/src/modeller/property-sidebar/shapes/shapes.js.map +1 -1
- package/dist/src/modeller/property-sidebar/specifics/specifics.d.ts +0 -1
- package/dist/src/modeller/property-sidebar/specifics/specifics.js +1 -3
- package/dist/src/modeller/property-sidebar/specifics/specifics.js.map +1 -1
- package/dist/src/modeller/property-sidebar/styles/styles.d.ts +0 -1
- package/dist/src/modeller/property-sidebar/styles/styles.js +4 -9
- package/dist/src/modeller/property-sidebar/styles/styles.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/custom-elements.json
CHANGED
|
@@ -2,6 +2,69 @@
|
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
3
|
"readme": "",
|
|
4
4
|
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"kind": "javascript-module",
|
|
7
|
+
"path": "stories/index.stories.ts",
|
|
8
|
+
"declarations": [
|
|
9
|
+
{
|
|
10
|
+
"kind": "variable",
|
|
11
|
+
"name": "Regular"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"kind": "variable",
|
|
15
|
+
"name": "CustomTitle"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"kind": "variable",
|
|
19
|
+
"name": "CustomCounter"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"kind": "variable",
|
|
23
|
+
"name": "SlottedContent"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"exports": [
|
|
27
|
+
{
|
|
28
|
+
"kind": "js",
|
|
29
|
+
"name": "default",
|
|
30
|
+
"declaration": {
|
|
31
|
+
"module": "stories/index.stories.ts"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"kind": "js",
|
|
36
|
+
"name": "Regular",
|
|
37
|
+
"declaration": {
|
|
38
|
+
"name": "Regular",
|
|
39
|
+
"module": "stories/index.stories.ts"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"kind": "js",
|
|
44
|
+
"name": "CustomTitle",
|
|
45
|
+
"declaration": {
|
|
46
|
+
"name": "CustomTitle",
|
|
47
|
+
"module": "stories/index.stories.ts"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"kind": "js",
|
|
52
|
+
"name": "CustomCounter",
|
|
53
|
+
"declaration": {
|
|
54
|
+
"name": "CustomCounter",
|
|
55
|
+
"module": "stories/index.stories.ts"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"kind": "js",
|
|
60
|
+
"name": "SlottedContent",
|
|
61
|
+
"declaration": {
|
|
62
|
+
"name": "SlottedContent",
|
|
63
|
+
"module": "stories/index.stories.ts"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
},
|
|
5
68
|
{
|
|
6
69
|
"kind": "javascript-module",
|
|
7
70
|
"path": "src/index.ts",
|
|
@@ -1607,69 +1670,6 @@
|
|
|
1607
1670
|
"declarations": [],
|
|
1608
1671
|
"exports": []
|
|
1609
1672
|
},
|
|
1610
|
-
{
|
|
1611
|
-
"kind": "javascript-module",
|
|
1612
|
-
"path": "stories/index.stories.ts",
|
|
1613
|
-
"declarations": [
|
|
1614
|
-
{
|
|
1615
|
-
"kind": "variable",
|
|
1616
|
-
"name": "Regular"
|
|
1617
|
-
},
|
|
1618
|
-
{
|
|
1619
|
-
"kind": "variable",
|
|
1620
|
-
"name": "CustomTitle"
|
|
1621
|
-
},
|
|
1622
|
-
{
|
|
1623
|
-
"kind": "variable",
|
|
1624
|
-
"name": "CustomCounter"
|
|
1625
|
-
},
|
|
1626
|
-
{
|
|
1627
|
-
"kind": "variable",
|
|
1628
|
-
"name": "SlottedContent"
|
|
1629
|
-
}
|
|
1630
|
-
],
|
|
1631
|
-
"exports": [
|
|
1632
|
-
{
|
|
1633
|
-
"kind": "js",
|
|
1634
|
-
"name": "default",
|
|
1635
|
-
"declaration": {
|
|
1636
|
-
"module": "stories/index.stories.ts"
|
|
1637
|
-
}
|
|
1638
|
-
},
|
|
1639
|
-
{
|
|
1640
|
-
"kind": "js",
|
|
1641
|
-
"name": "Regular",
|
|
1642
|
-
"declaration": {
|
|
1643
|
-
"name": "Regular",
|
|
1644
|
-
"module": "stories/index.stories.ts"
|
|
1645
|
-
}
|
|
1646
|
-
},
|
|
1647
|
-
{
|
|
1648
|
-
"kind": "js",
|
|
1649
|
-
"name": "CustomTitle",
|
|
1650
|
-
"declaration": {
|
|
1651
|
-
"name": "CustomTitle",
|
|
1652
|
-
"module": "stories/index.stories.ts"
|
|
1653
|
-
}
|
|
1654
|
-
},
|
|
1655
|
-
{
|
|
1656
|
-
"kind": "js",
|
|
1657
|
-
"name": "CustomCounter",
|
|
1658
|
-
"declaration": {
|
|
1659
|
-
"name": "CustomCounter",
|
|
1660
|
-
"module": "stories/index.stories.ts"
|
|
1661
|
-
}
|
|
1662
|
-
},
|
|
1663
|
-
{
|
|
1664
|
-
"kind": "js",
|
|
1665
|
-
"name": "SlottedContent",
|
|
1666
|
-
"declaration": {
|
|
1667
|
-
"name": "SlottedContent",
|
|
1668
|
-
"module": "stories/index.stories.ts"
|
|
1669
|
-
}
|
|
1670
|
-
}
|
|
1671
|
-
]
|
|
1672
|
-
},
|
|
1673
1673
|
{
|
|
1674
1674
|
"kind": "javascript-module",
|
|
1675
1675
|
"path": "src/component/etc.ts",
|
|
@@ -1823,103 +1823,303 @@
|
|
|
1823
1823
|
},
|
|
1824
1824
|
{
|
|
1825
1825
|
"kind": "javascript-module",
|
|
1826
|
-
"path": "src/
|
|
1827
|
-
"declarations": [
|
|
1828
|
-
|
|
1829
|
-
"kind": "variable",
|
|
1830
|
-
"name": "style",
|
|
1831
|
-
"default": "css`\n :host {\n color: white;\n background-color: var(--edit-toolbar-background-color, #394e64);\n\n overflow-x: hidden;\n }\n\n [tools] {\n display: flex;\n align-items: center;\n overflow: none;\n padding: 0px 10px;\n }\n\n [tools] > * {\n padding: 0px;\n }\n\n [tools] > span[button] {\n min-width: 30px;\n }\n\n [tools] > span[padding] {\n flex: 1;\n }\n\n [tools] > .vline {\n display: block;\n flex: none;\n border-left: 1px solid rgba(255, 255, 255, 0.2);\n border-right: 1px solid rgba(0, 0, 0, 0.15);\n width: 0px;\n height: 18px;\n margin: 0 3px;\n }\n\n span[button] {\n min-height: 35px;\n\n background: var(--url-icon-htoolbar) no-repeat;\n background-position-x: 50%;\n opacity: 0.8;\n }\n span[button]:hover {\n opacity: 1;\n background-color: rgba(0, 0, 0, 0.1);\n cursor: pointer;\n }\n\n #fullscreen,\n #toggle-property {\n flex: none;\n }\n\n #align-left {\n background-position-y: 8px;\n }\n\n #align-center {\n background-position-y: -42px;\n }\n\n #align-right {\n background-position-y: -92px;\n }\n\n #align-top {\n background-position-y: -142px;\n }\n\n #align-middle {\n background-position-y: -192px;\n }\n\n #align-bottom {\n background-position-y: -242px;\n }\n\n #undo {\n background-position-y: -592px;\n }\n\n #redo {\n background-position-y: -642px;\n }\n\n #front {\n background-position-y: -292px;\n }\n\n #back {\n background-position-y: -342px;\n }\n\n #forward {\n background-position-y: -392px;\n }\n\n #backward {\n background-position-y: -442px;\n }\n\n #symmetry-x {\n background-position-y: -492px;\n }\n\n #symmetry-y {\n background-position-y: -542px;\n }\n\n #group {\n background-position-y: -492px;\n }\n\n #ungroup {\n background-position-y: -542px;\n }\n\n #fullscreen {\n background-position-y: -692px;\n }\n\n #toggle-property {\n background-position-y: -692px;\n float: right;\n }\n\n #zoomin {\n background-position-y: -742px;\n }\n\n #zoomout {\n background-position-y: -792px;\n }\n\n #fit-scene {\n background-position-y: -1492px;\n }\n\n #cut {\n background-position-y: -842px;\n }\n\n #copy {\n background-position-y: -892px;\n }\n\n #paste {\n background-position-y: -942px;\n }\n\n #delete {\n background-position-y: -992px;\n }\n\n #font-increase {\n background-position-y: -1042px;\n }\n\n #font-decrease {\n background-position-y: -1092px;\n }\n\n #style-copy {\n background-position-y: -1142px;\n }\n\n #context-menu {\n background-position-y: -692px;\n }\n\n #symmetry-x {\n background-position-y: -1192px;\n }\n\n #symmetry-y {\n background-position-y: -1242px;\n }\n\n #rotate-cw {\n background-position-y: -1292px;\n }\n\n #rotate-ccw {\n background-position-y: -1342px;\n }\n\n #distribute-horizontal {\n background-position-y: -1542px;\n }\n\n #distribute-vertical {\n background-position-y: -1593px;\n }\n\n #toggle-property {\n background-position-y: -1392px;\n }\n\n #preview {\n background-position-y: -1640px;\n }\n\n /* bigger buttons */\n #fullscreen {\n background: var(--url-icon-fullscreen) 50% 10px no-repeat;\n width: var(--edit-toolbar-bigger-icon-size);\n height: var(--edit-toolbar-bigger-icon-size);\n border-left: var(--edit-toolbar-bigger-icon-line);\n }\n\n #toggle-property {\n background: var(--url-icon-collapse) 80% 10px no-repeat;\n width: var(--edit-toolbar-bigger-icon-size);\n height: var(--edit-toolbar-bigger-icon-size);\n border-left: var(--edit-toolbar-bigger-icon-line);\n }\n\n #toggle-property[active] {\n background: var(--url-icon-collapse-active) 80% 10px no-repeat;\n }\n\n #generate-model {\n background-position-y: -1492px;\n }\n`"
|
|
1832
|
-
}
|
|
1833
|
-
],
|
|
1834
|
-
"exports": [
|
|
1835
|
-
{
|
|
1836
|
-
"kind": "js",
|
|
1837
|
-
"name": "style",
|
|
1838
|
-
"declaration": {
|
|
1839
|
-
"name": "style",
|
|
1840
|
-
"module": "src/modeller/edit-toolbar-style.ts"
|
|
1841
|
-
}
|
|
1842
|
-
}
|
|
1843
|
-
]
|
|
1826
|
+
"path": "src/layers/mcs-mouse-event-handler.ts",
|
|
1827
|
+
"declarations": [],
|
|
1828
|
+
"exports": []
|
|
1844
1829
|
},
|
|
1845
1830
|
{
|
|
1846
1831
|
"kind": "javascript-module",
|
|
1847
|
-
"path": "src/
|
|
1832
|
+
"path": "src/layers/movement-layer.ts",
|
|
1848
1833
|
"declarations": [
|
|
1849
1834
|
{
|
|
1850
1835
|
"kind": "class",
|
|
1851
1836
|
"description": "",
|
|
1852
|
-
"name": "
|
|
1837
|
+
"name": "MovementLayer",
|
|
1853
1838
|
"members": [
|
|
1854
1839
|
{
|
|
1855
1840
|
"kind": "field",
|
|
1856
|
-
"name": "
|
|
1857
|
-
"type": {
|
|
1858
|
-
"text": "Scene | undefined"
|
|
1859
|
-
},
|
|
1860
|
-
"attribute": "scene"
|
|
1841
|
+
"name": "drawInstructionHandler"
|
|
1861
1842
|
},
|
|
1862
1843
|
{
|
|
1863
1844
|
"kind": "field",
|
|
1864
|
-
"name": "
|
|
1865
|
-
"type": {
|
|
1866
|
-
"text": "any[]"
|
|
1867
|
-
},
|
|
1868
|
-
"default": "[]",
|
|
1869
|
-
"attribute": "selected"
|
|
1845
|
+
"name": "clickComponentHandler"
|
|
1870
1846
|
},
|
|
1871
1847
|
{
|
|
1872
|
-
"kind": "
|
|
1873
|
-
"name": "
|
|
1874
|
-
"type": {
|
|
1875
|
-
"text": "boolean"
|
|
1876
|
-
},
|
|
1877
|
-
"default": "false",
|
|
1878
|
-
"attribute": "hideProperty"
|
|
1848
|
+
"kind": "method",
|
|
1849
|
+
"name": "ready"
|
|
1879
1850
|
},
|
|
1880
1851
|
{
|
|
1881
|
-
"kind": "
|
|
1882
|
-
"name": "
|
|
1883
|
-
"type": {
|
|
1884
|
-
"text": "string | undefined"
|
|
1885
|
-
},
|
|
1886
|
-
"privacy": "private"
|
|
1852
|
+
"kind": "method",
|
|
1853
|
+
"name": "dispose"
|
|
1887
1854
|
},
|
|
1888
1855
|
{
|
|
1889
1856
|
"kind": "field",
|
|
1890
|
-
"name": "
|
|
1891
|
-
"
|
|
1892
|
-
"text": "HTMLElement"
|
|
1893
|
-
},
|
|
1894
|
-
"privacy": "private"
|
|
1857
|
+
"name": "capturable",
|
|
1858
|
+
"readonly": true
|
|
1895
1859
|
},
|
|
1896
1860
|
{
|
|
1897
|
-
"kind": "
|
|
1898
|
-
"name": "
|
|
1899
|
-
"
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1861
|
+
"kind": "method",
|
|
1862
|
+
"name": "drawArrow",
|
|
1863
|
+
"parameters": [
|
|
1864
|
+
{
|
|
1865
|
+
"name": "ctx",
|
|
1866
|
+
"type": {
|
|
1867
|
+
"text": "CanvasRenderingContext2D"
|
|
1868
|
+
}
|
|
1869
|
+
},
|
|
1870
|
+
{
|
|
1871
|
+
"name": "p0",
|
|
1872
|
+
"type": {
|
|
1873
|
+
"text": "POINT"
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
"name": "p1",
|
|
1878
|
+
"type": {
|
|
1879
|
+
"text": "POINT"
|
|
1880
|
+
}
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
"name": "headLength",
|
|
1884
|
+
"default": "10",
|
|
1885
|
+
"type": {
|
|
1886
|
+
"text": "number"
|
|
1887
|
+
}
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"name": "label",
|
|
1891
|
+
"type": {
|
|
1892
|
+
"text": "string"
|
|
1893
|
+
}
|
|
1894
|
+
}
|
|
1895
|
+
]
|
|
1903
1896
|
},
|
|
1904
1897
|
{
|
|
1905
|
-
"kind": "
|
|
1906
|
-
"name": "
|
|
1907
|
-
"
|
|
1908
|
-
"
|
|
1898
|
+
"kind": "method",
|
|
1899
|
+
"name": "findSourceAndTarget",
|
|
1900
|
+
"return": {
|
|
1901
|
+
"type": {
|
|
1902
|
+
"text": "[Component?, Component?]"
|
|
1903
|
+
}
|
|
1909
1904
|
},
|
|
1910
|
-
"
|
|
1905
|
+
"parameters": [
|
|
1906
|
+
{
|
|
1907
|
+
"name": "path",
|
|
1908
|
+
"type": {
|
|
1909
|
+
"text": "PATH"
|
|
1910
|
+
}
|
|
1911
|
+
}
|
|
1912
|
+
]
|
|
1911
1913
|
},
|
|
1912
1914
|
{
|
|
1913
1915
|
"kind": "field",
|
|
1914
|
-
"name": "
|
|
1915
|
-
"
|
|
1916
|
-
"text": "HTMLElement"
|
|
1917
|
-
},
|
|
1918
|
-
"privacy": "private"
|
|
1916
|
+
"name": "eventMap",
|
|
1917
|
+
"readonly": true
|
|
1919
1918
|
},
|
|
1920
1919
|
{
|
|
1921
|
-
"kind": "
|
|
1922
|
-
"name": "
|
|
1920
|
+
"kind": "method",
|
|
1921
|
+
"name": "onchangeModelLayer",
|
|
1922
|
+
"parameters": [
|
|
1923
|
+
{
|
|
1924
|
+
"name": "after",
|
|
1925
|
+
"type": {
|
|
1926
|
+
"text": "any"
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"name": "before",
|
|
1931
|
+
"type": {
|
|
1932
|
+
"text": "any"
|
|
1933
|
+
}
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"name": "hint",
|
|
1937
|
+
"type": {
|
|
1938
|
+
"text": "any"
|
|
1939
|
+
}
|
|
1940
|
+
}
|
|
1941
|
+
]
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
"kind": "method",
|
|
1945
|
+
"name": "onchangeData",
|
|
1946
|
+
"return": {
|
|
1947
|
+
"type": {
|
|
1948
|
+
"text": "void"
|
|
1949
|
+
}
|
|
1950
|
+
},
|
|
1951
|
+
"parameters": [
|
|
1952
|
+
{
|
|
1953
|
+
"name": "after",
|
|
1954
|
+
"type": {
|
|
1955
|
+
"text": "Properties"
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
"name": "before",
|
|
1960
|
+
"type": {
|
|
1961
|
+
"text": "Properties"
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1964
|
+
]
|
|
1965
|
+
}
|
|
1966
|
+
],
|
|
1967
|
+
"superclass": {
|
|
1968
|
+
"name": "Layer",
|
|
1969
|
+
"package": "@hatiolab/things-scene"
|
|
1970
|
+
}
|
|
1971
|
+
}
|
|
1972
|
+
],
|
|
1973
|
+
"exports": [
|
|
1974
|
+
{
|
|
1975
|
+
"kind": "js",
|
|
1976
|
+
"name": "default",
|
|
1977
|
+
"declaration": {
|
|
1978
|
+
"name": "MovementLayer",
|
|
1979
|
+
"module": "src/layers/movement-layer.ts"
|
|
1980
|
+
}
|
|
1981
|
+
}
|
|
1982
|
+
]
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"kind": "javascript-module",
|
|
1986
|
+
"path": "src/layers/tooltip-decorator.ts",
|
|
1987
|
+
"declarations": [
|
|
1988
|
+
{
|
|
1989
|
+
"kind": "function",
|
|
1990
|
+
"name": "tooltipDecorator",
|
|
1991
|
+
"parameters": [
|
|
1992
|
+
{
|
|
1993
|
+
"name": "component",
|
|
1994
|
+
"type": {
|
|
1995
|
+
"text": "Component"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
"name": "context",
|
|
2000
|
+
"type": {
|
|
2001
|
+
"text": "CanvasRenderingContext2D"
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"name": "delta",
|
|
2006
|
+
"type": {
|
|
2007
|
+
"text": "number"
|
|
2008
|
+
}
|
|
2009
|
+
}
|
|
2010
|
+
]
|
|
2011
|
+
}
|
|
2012
|
+
],
|
|
2013
|
+
"exports": [
|
|
2014
|
+
{
|
|
2015
|
+
"kind": "js",
|
|
2016
|
+
"name": "default",
|
|
2017
|
+
"declaration": {
|
|
2018
|
+
"name": "tooltipDecorator",
|
|
2019
|
+
"module": "src/layers/tooltip-decorator.ts"
|
|
2020
|
+
}
|
|
2021
|
+
}
|
|
2022
|
+
]
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
"kind": "javascript-module",
|
|
2026
|
+
"path": "src/modeller/edit-toolbar-style.ts",
|
|
2027
|
+
"declarations": [
|
|
2028
|
+
{
|
|
2029
|
+
"kind": "variable",
|
|
2030
|
+
"name": "style",
|
|
2031
|
+
"default": "css`\n :host {\n color: white;\n background-color: var(--edit-toolbar-background-color, #394e64);\n\n overflow-x: hidden;\n }\n\n [tools] {\n display: flex;\n align-items: center;\n overflow: none;\n padding: 0px 10px;\n }\n\n [tools] > * {\n padding: 0px;\n }\n\n [tools] > span[button] {\n min-width: 30px;\n }\n\n [tools] > span[padding] {\n flex: 1;\n }\n\n [tools] > .vline {\n display: block;\n flex: none;\n border-left: 1px solid rgba(255, 255, 255, 0.2);\n border-right: 1px solid rgba(0, 0, 0, 0.15);\n width: 0px;\n height: 18px;\n margin: 0 3px;\n }\n\n span[button] {\n min-height: 35px;\n\n background: var(--url-icon-htoolbar) no-repeat;\n background-position-x: 50%;\n opacity: 0.8;\n }\n span[button]:hover {\n opacity: 1;\n background-color: rgba(0, 0, 0, 0.1);\n cursor: pointer;\n }\n\n #fullscreen,\n #toggle-property {\n flex: none;\n }\n\n #align-left {\n background-position-y: 8px;\n }\n\n #align-center {\n background-position-y: -42px;\n }\n\n #align-right {\n background-position-y: -92px;\n }\n\n #align-top {\n background-position-y: -142px;\n }\n\n #align-middle {\n background-position-y: -192px;\n }\n\n #align-bottom {\n background-position-y: -242px;\n }\n\n #undo {\n background-position-y: -592px;\n }\n\n #redo {\n background-position-y: -642px;\n }\n\n #front {\n background-position-y: -292px;\n }\n\n #back {\n background-position-y: -342px;\n }\n\n #forward {\n background-position-y: -392px;\n }\n\n #backward {\n background-position-y: -442px;\n }\n\n #symmetry-x {\n background-position-y: -492px;\n }\n\n #symmetry-y {\n background-position-y: -542px;\n }\n\n #group {\n background-position-y: -492px;\n }\n\n #ungroup {\n background-position-y: -542px;\n }\n\n #fullscreen {\n background-position-y: -692px;\n }\n\n #toggle-property {\n background-position-y: -692px;\n float: right;\n }\n\n #zoomin {\n background-position-y: -742px;\n }\n\n #zoomout {\n background-position-y: -792px;\n }\n\n #fit-scene {\n background-position-y: -1492px;\n }\n\n #cut {\n background-position-y: -842px;\n }\n\n #copy {\n background-position-y: -892px;\n }\n\n #paste {\n background-position-y: -942px;\n }\n\n #delete {\n background-position-y: -992px;\n }\n\n #font-increase {\n background-position-y: -1042px;\n }\n\n #font-decrease {\n background-position-y: -1092px;\n }\n\n #style-copy {\n background-position-y: -1142px;\n }\n\n #context-menu {\n background-position-y: -692px;\n }\n\n #symmetry-x {\n background-position-y: -1192px;\n }\n\n #symmetry-y {\n background-position-y: -1242px;\n }\n\n #rotate-cw {\n background-position-y: -1292px;\n }\n\n #rotate-ccw {\n background-position-y: -1342px;\n }\n\n #distribute-horizontal {\n background-position-y: -1542px;\n }\n\n #distribute-vertical {\n background-position-y: -1593px;\n }\n\n #toggle-property {\n background-position-y: -1392px;\n }\n\n #preview {\n background-position-y: -1640px;\n }\n\n /* bigger buttons */\n #fullscreen {\n background: var(--url-icon-fullscreen) 50% 10px no-repeat;\n width: var(--edit-toolbar-bigger-icon-size);\n height: var(--edit-toolbar-bigger-icon-size);\n border-left: var(--edit-toolbar-bigger-icon-line);\n }\n\n #toggle-property {\n background: var(--url-icon-collapse) 80% 10px no-repeat;\n width: var(--edit-toolbar-bigger-icon-size);\n height: var(--edit-toolbar-bigger-icon-size);\n border-left: var(--edit-toolbar-bigger-icon-line);\n }\n\n #toggle-property[active] {\n background: var(--url-icon-collapse-active) 80% 10px no-repeat;\n }\n\n #generate-model {\n background-position-y: -1492px;\n }\n`"
|
|
2032
|
+
}
|
|
2033
|
+
],
|
|
2034
|
+
"exports": [
|
|
2035
|
+
{
|
|
2036
|
+
"kind": "js",
|
|
2037
|
+
"name": "style",
|
|
2038
|
+
"declaration": {
|
|
2039
|
+
"name": "style",
|
|
2040
|
+
"module": "src/modeller/edit-toolbar-style.ts"
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
]
|
|
2044
|
+
},
|
|
2045
|
+
{
|
|
2046
|
+
"kind": "javascript-module",
|
|
2047
|
+
"path": "src/modeller/edit-toolbar.ts",
|
|
2048
|
+
"declarations": [
|
|
2049
|
+
{
|
|
2050
|
+
"kind": "class",
|
|
2051
|
+
"description": "",
|
|
2052
|
+
"name": "EditToolbar",
|
|
2053
|
+
"members": [
|
|
2054
|
+
{
|
|
2055
|
+
"kind": "field",
|
|
2056
|
+
"name": "scene",
|
|
2057
|
+
"type": {
|
|
2058
|
+
"text": "Scene | undefined"
|
|
2059
|
+
},
|
|
2060
|
+
"attribute": "scene"
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
"kind": "field",
|
|
2064
|
+
"name": "selected",
|
|
2065
|
+
"type": {
|
|
2066
|
+
"text": "any[]"
|
|
2067
|
+
},
|
|
2068
|
+
"default": "[]",
|
|
2069
|
+
"attribute": "selected"
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
"kind": "field",
|
|
2073
|
+
"name": "hideProperty",
|
|
2074
|
+
"type": {
|
|
2075
|
+
"text": "boolean"
|
|
2076
|
+
},
|
|
2077
|
+
"default": "false",
|
|
2078
|
+
"attribute": "hideProperty"
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"kind": "field",
|
|
2082
|
+
"name": "cliped",
|
|
2083
|
+
"type": {
|
|
2084
|
+
"text": "string | undefined"
|
|
2085
|
+
},
|
|
2086
|
+
"privacy": "private"
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
"kind": "field",
|
|
2090
|
+
"name": "redo",
|
|
2091
|
+
"type": {
|
|
2092
|
+
"text": "HTMLElement"
|
|
2093
|
+
},
|
|
2094
|
+
"privacy": "private"
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"kind": "field",
|
|
2098
|
+
"name": "undo",
|
|
2099
|
+
"type": {
|
|
2100
|
+
"text": "HTMLElement"
|
|
2101
|
+
},
|
|
2102
|
+
"privacy": "private"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"kind": "field",
|
|
2106
|
+
"name": "fullscreen",
|
|
2107
|
+
"type": {
|
|
2108
|
+
"text": "HTMLElement"
|
|
2109
|
+
},
|
|
2110
|
+
"privacy": "private"
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"kind": "field",
|
|
2114
|
+
"name": "cut",
|
|
2115
|
+
"type": {
|
|
2116
|
+
"text": "HTMLElement"
|
|
2117
|
+
},
|
|
2118
|
+
"privacy": "private"
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"kind": "field",
|
|
2122
|
+
"name": "copy",
|
|
1923
2123
|
"type": {
|
|
1924
2124
|
"text": "HTMLElement"
|
|
1925
2125
|
},
|
|
@@ -2224,22 +2424,6 @@
|
|
|
2224
2424
|
}
|
|
2225
2425
|
]
|
|
2226
2426
|
},
|
|
2227
|
-
{
|
|
2228
|
-
"kind": "method",
|
|
2229
|
-
"name": "onTapSymmetryX"
|
|
2230
|
-
},
|
|
2231
|
-
{
|
|
2232
|
-
"kind": "method",
|
|
2233
|
-
"name": "onTapSymmetryY"
|
|
2234
|
-
},
|
|
2235
|
-
{
|
|
2236
|
-
"kind": "method",
|
|
2237
|
-
"name": "onTapRotateCW"
|
|
2238
|
-
},
|
|
2239
|
-
{
|
|
2240
|
-
"kind": "method",
|
|
2241
|
-
"name": "onTapRotateCCW"
|
|
2242
|
-
},
|
|
2243
2427
|
{
|
|
2244
2428
|
"kind": "method",
|
|
2245
2429
|
"name": "onTapGroup"
|
|
@@ -2364,237 +2548,43 @@
|
|
|
2364
2548
|
},
|
|
2365
2549
|
{
|
|
2366
2550
|
"kind": "javascript-module",
|
|
2367
|
-
"path": "src/
|
|
2368
|
-
"declarations": [],
|
|
2369
|
-
"exports": []
|
|
2370
|
-
},
|
|
2371
|
-
{
|
|
2372
|
-
"kind": "javascript-module",
|
|
2373
|
-
"path": "src/layers/movement-layer.ts",
|
|
2551
|
+
"path": "src/selector/board-creation-popup.ts",
|
|
2374
2552
|
"declarations": [
|
|
2375
2553
|
{
|
|
2376
2554
|
"kind": "class",
|
|
2377
2555
|
"description": "",
|
|
2378
|
-
"name": "
|
|
2556
|
+
"name": "BoardCreationPopup",
|
|
2379
2557
|
"members": [
|
|
2380
2558
|
{
|
|
2381
2559
|
"kind": "field",
|
|
2382
|
-
"name": "
|
|
2560
|
+
"name": "defaultGroup",
|
|
2561
|
+
"type": {
|
|
2562
|
+
"text": "string | undefined"
|
|
2563
|
+
},
|
|
2564
|
+
"attribute": "defaultGroup"
|
|
2383
2565
|
},
|
|
2384
2566
|
{
|
|
2385
2567
|
"kind": "field",
|
|
2386
|
-
"name": "
|
|
2568
|
+
"name": "groups",
|
|
2569
|
+
"type": {
|
|
2570
|
+
"text": "{ id: string; name: string }[] | undefined"
|
|
2571
|
+
},
|
|
2572
|
+
"attribute": "groups"
|
|
2387
2573
|
},
|
|
2388
2574
|
{
|
|
2389
2575
|
"kind": "method",
|
|
2390
|
-
"name": "
|
|
2391
|
-
}
|
|
2576
|
+
"name": "onClickSubmit"
|
|
2577
|
+
}
|
|
2578
|
+
],
|
|
2579
|
+
"events": [
|
|
2392
2580
|
{
|
|
2393
|
-
"
|
|
2394
|
-
"
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
},
|
|
2401
|
-
{
|
|
2402
|
-
"kind": "method",
|
|
2403
|
-
"name": "drawArrow",
|
|
2404
|
-
"parameters": [
|
|
2405
|
-
{
|
|
2406
|
-
"name": "ctx",
|
|
2407
|
-
"type": {
|
|
2408
|
-
"text": "CanvasRenderingContext2D"
|
|
2409
|
-
}
|
|
2410
|
-
},
|
|
2411
|
-
{
|
|
2412
|
-
"name": "p0",
|
|
2413
|
-
"type": {
|
|
2414
|
-
"text": "POINT"
|
|
2415
|
-
}
|
|
2416
|
-
},
|
|
2417
|
-
{
|
|
2418
|
-
"name": "p1",
|
|
2419
|
-
"type": {
|
|
2420
|
-
"text": "POINT"
|
|
2421
|
-
}
|
|
2422
|
-
},
|
|
2423
|
-
{
|
|
2424
|
-
"name": "headLength",
|
|
2425
|
-
"default": "10",
|
|
2426
|
-
"type": {
|
|
2427
|
-
"text": "number"
|
|
2428
|
-
}
|
|
2429
|
-
}
|
|
2430
|
-
]
|
|
2431
|
-
},
|
|
2432
|
-
{
|
|
2433
|
-
"kind": "method",
|
|
2434
|
-
"name": "findSourceAndTarget",
|
|
2435
|
-
"return": {
|
|
2436
|
-
"type": {
|
|
2437
|
-
"text": "[Component?, Component?]"
|
|
2438
|
-
}
|
|
2439
|
-
},
|
|
2440
|
-
"parameters": [
|
|
2441
|
-
{
|
|
2442
|
-
"name": "path",
|
|
2443
|
-
"type": {
|
|
2444
|
-
"text": "PATH"
|
|
2445
|
-
}
|
|
2446
|
-
}
|
|
2447
|
-
]
|
|
2448
|
-
},
|
|
2449
|
-
{
|
|
2450
|
-
"kind": "field",
|
|
2451
|
-
"name": "eventMap",
|
|
2452
|
-
"readonly": true
|
|
2453
|
-
},
|
|
2454
|
-
{
|
|
2455
|
-
"kind": "method",
|
|
2456
|
-
"name": "onchangeModelLayer",
|
|
2457
|
-
"parameters": [
|
|
2458
|
-
{
|
|
2459
|
-
"name": "after",
|
|
2460
|
-
"type": {
|
|
2461
|
-
"text": "any"
|
|
2462
|
-
}
|
|
2463
|
-
},
|
|
2464
|
-
{
|
|
2465
|
-
"name": "before",
|
|
2466
|
-
"type": {
|
|
2467
|
-
"text": "any"
|
|
2468
|
-
}
|
|
2469
|
-
},
|
|
2470
|
-
{
|
|
2471
|
-
"name": "hint",
|
|
2472
|
-
"type": {
|
|
2473
|
-
"text": "any"
|
|
2474
|
-
}
|
|
2475
|
-
}
|
|
2476
|
-
]
|
|
2477
|
-
},
|
|
2478
|
-
{
|
|
2479
|
-
"kind": "method",
|
|
2480
|
-
"name": "onchangeData",
|
|
2481
|
-
"return": {
|
|
2482
|
-
"type": {
|
|
2483
|
-
"text": "void"
|
|
2484
|
-
}
|
|
2485
|
-
},
|
|
2486
|
-
"parameters": [
|
|
2487
|
-
{
|
|
2488
|
-
"name": "after",
|
|
2489
|
-
"type": {
|
|
2490
|
-
"text": "Properties"
|
|
2491
|
-
}
|
|
2492
|
-
},
|
|
2493
|
-
{
|
|
2494
|
-
"name": "before",
|
|
2495
|
-
"type": {
|
|
2496
|
-
"text": "Properties"
|
|
2497
|
-
}
|
|
2498
|
-
}
|
|
2499
|
-
]
|
|
2500
|
-
}
|
|
2501
|
-
],
|
|
2502
|
-
"superclass": {
|
|
2503
|
-
"name": "Layer",
|
|
2504
|
-
"package": "@hatiolab/things-scene"
|
|
2505
|
-
}
|
|
2506
|
-
}
|
|
2507
|
-
],
|
|
2508
|
-
"exports": [
|
|
2509
|
-
{
|
|
2510
|
-
"kind": "js",
|
|
2511
|
-
"name": "default",
|
|
2512
|
-
"declaration": {
|
|
2513
|
-
"name": "MovementLayer",
|
|
2514
|
-
"module": "src/layers/movement-layer.ts"
|
|
2515
|
-
}
|
|
2516
|
-
}
|
|
2517
|
-
]
|
|
2518
|
-
},
|
|
2519
|
-
{
|
|
2520
|
-
"kind": "javascript-module",
|
|
2521
|
-
"path": "src/layers/tooltip-decorator.ts",
|
|
2522
|
-
"declarations": [
|
|
2523
|
-
{
|
|
2524
|
-
"kind": "function",
|
|
2525
|
-
"name": "tooltipDecorator",
|
|
2526
|
-
"parameters": [
|
|
2527
|
-
{
|
|
2528
|
-
"name": "component",
|
|
2529
|
-
"type": {
|
|
2530
|
-
"text": "Component"
|
|
2531
|
-
}
|
|
2532
|
-
},
|
|
2533
|
-
{
|
|
2534
|
-
"name": "context",
|
|
2535
|
-
"type": {
|
|
2536
|
-
"text": "CanvasRenderingContext2D"
|
|
2537
|
-
}
|
|
2538
|
-
},
|
|
2539
|
-
{
|
|
2540
|
-
"name": "delta",
|
|
2541
|
-
"type": {
|
|
2542
|
-
"text": "number"
|
|
2543
|
-
}
|
|
2544
|
-
}
|
|
2545
|
-
]
|
|
2546
|
-
}
|
|
2547
|
-
],
|
|
2548
|
-
"exports": [
|
|
2549
|
-
{
|
|
2550
|
-
"kind": "js",
|
|
2551
|
-
"name": "default",
|
|
2552
|
-
"declaration": {
|
|
2553
|
-
"name": "tooltipDecorator",
|
|
2554
|
-
"module": "src/layers/tooltip-decorator.ts"
|
|
2555
|
-
}
|
|
2556
|
-
}
|
|
2557
|
-
]
|
|
2558
|
-
},
|
|
2559
|
-
{
|
|
2560
|
-
"kind": "javascript-module",
|
|
2561
|
-
"path": "src/selector/board-creation-popup.ts",
|
|
2562
|
-
"declarations": [
|
|
2563
|
-
{
|
|
2564
|
-
"kind": "class",
|
|
2565
|
-
"description": "",
|
|
2566
|
-
"name": "BoardCreationPopup",
|
|
2567
|
-
"members": [
|
|
2568
|
-
{
|
|
2569
|
-
"kind": "field",
|
|
2570
|
-
"name": "defaultGroup",
|
|
2571
|
-
"type": {
|
|
2572
|
-
"text": "string | undefined"
|
|
2573
|
-
},
|
|
2574
|
-
"attribute": "defaultGroup"
|
|
2575
|
-
},
|
|
2576
|
-
{
|
|
2577
|
-
"kind": "field",
|
|
2578
|
-
"name": "groups",
|
|
2579
|
-
"type": {
|
|
2580
|
-
"text": "{ id: string; name: string }[] | undefined"
|
|
2581
|
-
},
|
|
2582
|
-
"attribute": "groups"
|
|
2583
|
-
},
|
|
2584
|
-
{
|
|
2585
|
-
"kind": "method",
|
|
2586
|
-
"name": "onClickSubmit"
|
|
2587
|
-
}
|
|
2588
|
-
],
|
|
2589
|
-
"events": [
|
|
2590
|
-
{
|
|
2591
|
-
"name": "create-board",
|
|
2592
|
-
"type": {
|
|
2593
|
-
"text": "CustomEvent"
|
|
2594
|
-
}
|
|
2595
|
-
}
|
|
2596
|
-
],
|
|
2597
|
-
"attributes": [
|
|
2581
|
+
"name": "create-board",
|
|
2582
|
+
"type": {
|
|
2583
|
+
"text": "CustomEvent"
|
|
2584
|
+
}
|
|
2585
|
+
}
|
|
2586
|
+
],
|
|
2587
|
+
"attributes": [
|
|
2598
2588
|
{
|
|
2599
2589
|
"name": "defaultGroup",
|
|
2600
2590
|
"type": {
|
|
@@ -3116,62 +3106,31 @@
|
|
|
3116
3106
|
},
|
|
3117
3107
|
{
|
|
3118
3108
|
"kind": "javascript-module",
|
|
3119
|
-
"path": "src/modeller/
|
|
3109
|
+
"path": "src/modeller/component-toolbar/component-detail.ts",
|
|
3120
3110
|
"declarations": [
|
|
3121
3111
|
{
|
|
3122
3112
|
"kind": "class",
|
|
3123
3113
|
"description": "",
|
|
3124
|
-
"name": "
|
|
3114
|
+
"name": "ComponentDetail",
|
|
3125
3115
|
"members": [
|
|
3126
3116
|
{
|
|
3127
|
-
"kind": "
|
|
3128
|
-
"name": "
|
|
3129
|
-
"
|
|
3130
|
-
{
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
}
|
|
3135
|
-
}
|
|
3136
|
-
]
|
|
3137
|
-
},
|
|
3138
|
-
{
|
|
3139
|
-
"kind": "method",
|
|
3140
|
-
"name": "_getValueFromEventTarget",
|
|
3141
|
-
"parameters": [
|
|
3142
|
-
{
|
|
3143
|
-
"name": "element",
|
|
3144
|
-
"type": {
|
|
3145
|
-
"text": "HTMLElement"
|
|
3146
|
-
}
|
|
3147
|
-
}
|
|
3148
|
-
]
|
|
3149
|
-
},
|
|
3150
|
-
{
|
|
3151
|
-
"kind": "method",
|
|
3152
|
-
"name": "_onAfterValueChange",
|
|
3153
|
-
"parameters": [
|
|
3154
|
-
{
|
|
3155
|
-
"name": "key",
|
|
3156
|
-
"type": {
|
|
3157
|
-
"text": "string"
|
|
3158
|
-
}
|
|
3159
|
-
},
|
|
3160
|
-
{
|
|
3161
|
-
"name": "value",
|
|
3162
|
-
"type": {
|
|
3163
|
-
"text": "any"
|
|
3164
|
-
}
|
|
3165
|
-
}
|
|
3166
|
-
]
|
|
3117
|
+
"kind": "field",
|
|
3118
|
+
"name": "template",
|
|
3119
|
+
"type": {
|
|
3120
|
+
"text": "{ about: string } | null"
|
|
3121
|
+
},
|
|
3122
|
+
"default": "null",
|
|
3123
|
+
"attribute": "template"
|
|
3167
3124
|
}
|
|
3168
3125
|
],
|
|
3169
|
-
"
|
|
3126
|
+
"attributes": [
|
|
3170
3127
|
{
|
|
3171
|
-
"name": "
|
|
3128
|
+
"name": "template",
|
|
3172
3129
|
"type": {
|
|
3173
|
-
"text": "
|
|
3174
|
-
}
|
|
3130
|
+
"text": "{ about: string } | null"
|
|
3131
|
+
},
|
|
3132
|
+
"default": "null",
|
|
3133
|
+
"fieldName": "template"
|
|
3175
3134
|
}
|
|
3176
3135
|
],
|
|
3177
3136
|
"superclass": {
|
|
@@ -3184,131 +3143,71 @@
|
|
|
3184
3143
|
"exports": [
|
|
3185
3144
|
{
|
|
3186
3145
|
"kind": "js",
|
|
3187
|
-
"name": "
|
|
3188
|
-
"declaration": {
|
|
3189
|
-
"name": "AbstractProperty",
|
|
3190
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
3191
|
-
}
|
|
3192
|
-
}
|
|
3193
|
-
]
|
|
3194
|
-
},
|
|
3195
|
-
{
|
|
3196
|
-
"kind": "javascript-module",
|
|
3197
|
-
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
3198
|
-
"declarations": [
|
|
3199
|
-
{
|
|
3200
|
-
"kind": "variable",
|
|
3201
|
-
"name": "PropertySharedStyle",
|
|
3202
|
-
"default": "css`\n fieldset {\n border: none;\n margin: 4px;\n padding: 9px 4px 9px 4px;\n border-bottom: var(--property-sidebar-fieldset-border);\n color: var(--property-sidebar-fieldset-legend-color);\n font: var(--property-sidebar-fieldset-label);\n }\n\n fieldset legend {\n padding: 5px 0 0 5px;\n color: var(--property-sidebar-fieldset-legend-color);\n font: var(--property-sidebar-fieldset-legend);\n text-transform: capitalize;\n }\n\n select,\n input {\n border: var(--property-sidebar-fieldset-border);\n }\n\n ox-input-data {\n height: 300px;\n }\n\n /* property grid */\n .property-grid {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n align-items: center;\n }\n\n .property-grid > * {\n width: 100%;\n box-sizing: border-box;\n }\n\n .property-grid > label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n line-height: 2;\n }\n\n .property-grid > input,\n .property-grid > table,\n .property-grid > select,\n .property-grid > ox-input-angle,\n .property-grid > ox-buttons-radio,\n .property-grid > ox-input-color,\n [custom-editor] {\n grid-column: span 7;\n align-self: stretch;\n }\n\n .property-grid > .checkbox-row {\n grid-column: span 10;\n }\n\n .property-grid > .property-full-label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n }\n\n .property-grid > .property-half-label {\n grid-column: span 1;\n }\n\n .property-grid > .property-full-input {\n grid-column: span 7;\n }\n\n .property-grid > .property-half-input {\n grid-column: span 4;\n }\n\n /* checkbox-row */\n .checkbox-row {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n align-items: center;\n }\n\n .checkbox-row > input {\n grid-column: 4 / 5;\n }\n\n .checkbox-row > label {\n grid-column: span 6;\n text-align: left;\n }\n\n /* image resources */\n .icon-only-label {\n grid-column: span 1;\n\n background: var(--url-icon-properties-label) no-repeat;\n float: left;\n margin: 0;\n align-self: stretch;\n }\n\n .icon-only-label.color {\n background-position: 100% -500px;\n }\n .icon-only-label.font-size {\n background-position: 100% -594px;\n }\n .icon-only-label.leading {\n background-position: 100% -696px;\n }\n .icon-only-label.hscale {\n background-position: 100% -296px;\n }\n .icon-only-label.vscale {\n background-position: 100% -396px;\n }\n .icon-only-label.linewidth {\n background-position: 100% -894px;\n }\n .icon-only-label.lineHeight {\n background-position: 100% -995px;\n }\n`"
|
|
3203
|
-
}
|
|
3204
|
-
],
|
|
3205
|
-
"exports": [
|
|
3206
|
-
{
|
|
3207
|
-
"kind": "js",
|
|
3208
|
-
"name": "PropertySharedStyle",
|
|
3146
|
+
"name": "ComponentDetail",
|
|
3209
3147
|
"declaration": {
|
|
3210
|
-
"name": "
|
|
3211
|
-
"module": "src/modeller/
|
|
3148
|
+
"name": "ComponentDetail",
|
|
3149
|
+
"module": "src/modeller/component-toolbar/component-detail.ts"
|
|
3212
3150
|
}
|
|
3213
3151
|
}
|
|
3214
3152
|
]
|
|
3215
3153
|
},
|
|
3216
3154
|
{
|
|
3217
3155
|
"kind": "javascript-module",
|
|
3218
|
-
"path": "src/modeller/
|
|
3156
|
+
"path": "src/modeller/component-toolbar/component-menu.ts",
|
|
3219
3157
|
"declarations": [
|
|
3220
3158
|
{
|
|
3221
3159
|
"kind": "class",
|
|
3222
3160
|
"description": "",
|
|
3223
|
-
"name": "
|
|
3161
|
+
"name": "ComponentMenu",
|
|
3224
3162
|
"members": [
|
|
3225
3163
|
{
|
|
3226
3164
|
"kind": "field",
|
|
3227
|
-
"name": "
|
|
3228
|
-
"type": {
|
|
3229
|
-
"text": "Scene | null"
|
|
3230
|
-
},
|
|
3231
|
-
"default": "null",
|
|
3232
|
-
"attribute": "scene"
|
|
3233
|
-
},
|
|
3234
|
-
{
|
|
3235
|
-
"kind": "field",
|
|
3236
|
-
"name": "bounds",
|
|
3237
|
-
"type": {
|
|
3238
|
-
"text": "any"
|
|
3239
|
-
},
|
|
3240
|
-
"default": "{}",
|
|
3241
|
-
"attribute": "bounds"
|
|
3242
|
-
},
|
|
3243
|
-
{
|
|
3244
|
-
"kind": "field",
|
|
3245
|
-
"name": "model",
|
|
3246
|
-
"type": {
|
|
3247
|
-
"text": "Model | null"
|
|
3248
|
-
},
|
|
3249
|
-
"default": "{}",
|
|
3250
|
-
"attribute": "model"
|
|
3251
|
-
},
|
|
3252
|
-
{
|
|
3253
|
-
"kind": "field",
|
|
3254
|
-
"name": "selected",
|
|
3165
|
+
"name": "groups",
|
|
3255
3166
|
"type": {
|
|
3256
|
-
"text": "
|
|
3167
|
+
"text": "Pallet[]"
|
|
3257
3168
|
},
|
|
3258
3169
|
"default": "[]",
|
|
3259
|
-
"attribute": "
|
|
3170
|
+
"attribute": "groups"
|
|
3260
3171
|
},
|
|
3261
3172
|
{
|
|
3262
3173
|
"kind": "field",
|
|
3263
|
-
"name": "
|
|
3174
|
+
"name": "scene",
|
|
3264
3175
|
"type": {
|
|
3265
|
-
"text": "
|
|
3176
|
+
"text": "Scene | null"
|
|
3266
3177
|
},
|
|
3267
|
-
"
|
|
3178
|
+
"default": "null",
|
|
3179
|
+
"attribute": "scene"
|
|
3268
3180
|
},
|
|
3269
3181
|
{
|
|
3270
3182
|
"kind": "field",
|
|
3271
|
-
"name": "
|
|
3183
|
+
"name": "group",
|
|
3272
3184
|
"type": {
|
|
3273
3185
|
"text": "string | null"
|
|
3274
3186
|
},
|
|
3275
|
-
"default": "'
|
|
3276
|
-
"attribute": "
|
|
3277
|
-
},
|
|
3278
|
-
{
|
|
3279
|
-
"kind": "field",
|
|
3280
|
-
"name": "collapsed",
|
|
3281
|
-
"type": {
|
|
3282
|
-
"text": "boolean"
|
|
3283
|
-
},
|
|
3284
|
-
"default": "false",
|
|
3285
|
-
"attribute": "collapsed"
|
|
3187
|
+
"default": "''",
|
|
3188
|
+
"attribute": "group"
|
|
3286
3189
|
},
|
|
3287
3190
|
{
|
|
3288
3191
|
"kind": "field",
|
|
3289
|
-
"name": "
|
|
3192
|
+
"name": "templates",
|
|
3290
3193
|
"type": {
|
|
3291
|
-
"text": "
|
|
3194
|
+
"text": "PalletItem[]"
|
|
3292
3195
|
},
|
|
3293
|
-
"default": "[]"
|
|
3294
|
-
"attribute": "fonts"
|
|
3196
|
+
"default": "[]"
|
|
3295
3197
|
},
|
|
3296
3198
|
{
|
|
3297
3199
|
"kind": "field",
|
|
3298
|
-
"name": "
|
|
3200
|
+
"name": "template",
|
|
3299
3201
|
"type": {
|
|
3300
|
-
"text": "any
|
|
3301
|
-
}
|
|
3302
|
-
"default": "[]",
|
|
3303
|
-
"attribute": "propertyEditor"
|
|
3202
|
+
"text": "PalletItem | any"
|
|
3203
|
+
}
|
|
3304
3204
|
},
|
|
3305
3205
|
{
|
|
3306
3206
|
"kind": "field",
|
|
3307
|
-
"name": "
|
|
3207
|
+
"name": "detail",
|
|
3308
3208
|
"type": {
|
|
3309
|
-
"text": "
|
|
3310
|
-
}
|
|
3311
|
-
"default": "null"
|
|
3209
|
+
"text": "HTMLElement"
|
|
3210
|
+
}
|
|
3312
3211
|
},
|
|
3313
3212
|
{
|
|
3314
3213
|
"kind": "field",
|
|
@@ -3318,84 +3217,48 @@
|
|
|
3318
3217
|
},
|
|
3319
3218
|
{
|
|
3320
3219
|
"kind": "method",
|
|
3321
|
-
"name": "
|
|
3220
|
+
"name": "findTemplate",
|
|
3322
3221
|
"parameters": [
|
|
3323
3222
|
{
|
|
3324
|
-
"name": "
|
|
3223
|
+
"name": "type",
|
|
3325
3224
|
"type": {
|
|
3326
|
-
"text": "
|
|
3225
|
+
"text": "string | null | undefined"
|
|
3327
3226
|
}
|
|
3328
3227
|
}
|
|
3329
3228
|
]
|
|
3330
3229
|
},
|
|
3331
3230
|
{
|
|
3332
3231
|
"kind": "method",
|
|
3333
|
-
"name": "
|
|
3232
|
+
"name": "onHoverComponent",
|
|
3334
3233
|
"parameters": [
|
|
3335
3234
|
{
|
|
3336
3235
|
"name": "e",
|
|
3337
3236
|
"type": {
|
|
3338
|
-
"text": "
|
|
3339
|
-
}
|
|
3340
|
-
}
|
|
3341
|
-
]
|
|
3342
|
-
},
|
|
3343
|
-
{
|
|
3344
|
-
"kind": "method",
|
|
3345
|
-
"name": "_onChangedByScene"
|
|
3346
|
-
},
|
|
3347
|
-
{
|
|
3348
|
-
"kind": "method",
|
|
3349
|
-
"name": "_setPropertyTargetAsDefault"
|
|
3350
|
-
},
|
|
3351
|
-
{
|
|
3352
|
-
"kind": "method",
|
|
3353
|
-
"name": "_onCollapsed",
|
|
3354
|
-
"parameters": [
|
|
3355
|
-
{
|
|
3356
|
-
"name": "collapsed",
|
|
3357
|
-
"type": {
|
|
3358
|
-
"text": "boolean"
|
|
3359
|
-
}
|
|
3360
|
-
}
|
|
3361
|
-
]
|
|
3362
|
-
},
|
|
3363
|
-
{
|
|
3364
|
-
"kind": "method",
|
|
3365
|
-
"name": "_onSceneChanged"
|
|
3366
|
-
},
|
|
3367
|
-
{
|
|
3368
|
-
"kind": "method",
|
|
3369
|
-
"name": "_onSelectedChanged",
|
|
3370
|
-
"parameters": [
|
|
3371
|
-
{
|
|
3372
|
-
"name": "after",
|
|
3373
|
-
"type": {
|
|
3374
|
-
"text": "Component[]"
|
|
3237
|
+
"text": "MouseEvent"
|
|
3375
3238
|
}
|
|
3376
3239
|
}
|
|
3377
3240
|
]
|
|
3378
3241
|
},
|
|
3379
3242
|
{
|
|
3380
3243
|
"kind": "method",
|
|
3381
|
-
"name": "
|
|
3244
|
+
"name": "onClickTemplate",
|
|
3382
3245
|
"parameters": [
|
|
3383
3246
|
{
|
|
3384
|
-
"name": "
|
|
3247
|
+
"name": "e",
|
|
3385
3248
|
"type": {
|
|
3386
|
-
"text": "
|
|
3249
|
+
"text": "MouseEvent"
|
|
3387
3250
|
}
|
|
3388
3251
|
}
|
|
3389
3252
|
]
|
|
3390
3253
|
},
|
|
3391
3254
|
{
|
|
3392
3255
|
"kind": "method",
|
|
3393
|
-
"name": "
|
|
3256
|
+
"name": "templateIcon",
|
|
3394
3257
|
"parameters": [
|
|
3395
3258
|
{
|
|
3396
|
-
"name": "
|
|
3259
|
+
"name": "template",
|
|
3397
3260
|
"type": {
|
|
3398
|
-
"text": "
|
|
3261
|
+
"text": "PalletItem"
|
|
3399
3262
|
}
|
|
3400
3263
|
}
|
|
3401
3264
|
]
|
|
@@ -3403,75 +3266,28 @@
|
|
|
3403
3266
|
],
|
|
3404
3267
|
"attributes": [
|
|
3405
3268
|
{
|
|
3406
|
-
"name": "
|
|
3407
|
-
"type": {
|
|
3408
|
-
"text": "Scene | null"
|
|
3409
|
-
},
|
|
3410
|
-
"default": "null",
|
|
3411
|
-
"fieldName": "scene"
|
|
3412
|
-
},
|
|
3413
|
-
{
|
|
3414
|
-
"name": "bounds",
|
|
3415
|
-
"type": {
|
|
3416
|
-
"text": "any"
|
|
3417
|
-
},
|
|
3418
|
-
"default": "{}",
|
|
3419
|
-
"fieldName": "bounds"
|
|
3420
|
-
},
|
|
3421
|
-
{
|
|
3422
|
-
"name": "model",
|
|
3423
|
-
"type": {
|
|
3424
|
-
"text": "Model | null"
|
|
3425
|
-
},
|
|
3426
|
-
"default": "{}",
|
|
3427
|
-
"fieldName": "model"
|
|
3428
|
-
},
|
|
3429
|
-
{
|
|
3430
|
-
"name": "selected",
|
|
3269
|
+
"name": "groups",
|
|
3431
3270
|
"type": {
|
|
3432
|
-
"text": "
|
|
3271
|
+
"text": "Pallet[]"
|
|
3433
3272
|
},
|
|
3434
3273
|
"default": "[]",
|
|
3435
|
-
"fieldName": "
|
|
3274
|
+
"fieldName": "groups"
|
|
3436
3275
|
},
|
|
3437
3276
|
{
|
|
3438
|
-
"name": "
|
|
3277
|
+
"name": "scene",
|
|
3439
3278
|
"type": {
|
|
3440
|
-
"text": "
|
|
3279
|
+
"text": "Scene | null"
|
|
3441
3280
|
},
|
|
3442
|
-
"
|
|
3281
|
+
"default": "null",
|
|
3282
|
+
"fieldName": "scene"
|
|
3443
3283
|
},
|
|
3444
3284
|
{
|
|
3445
|
-
"name": "
|
|
3285
|
+
"name": "group",
|
|
3446
3286
|
"type": {
|
|
3447
3287
|
"text": "string | null"
|
|
3448
3288
|
},
|
|
3449
|
-
"default": "'
|
|
3450
|
-
"fieldName": "
|
|
3451
|
-
},
|
|
3452
|
-
{
|
|
3453
|
-
"name": "collapsed",
|
|
3454
|
-
"type": {
|
|
3455
|
-
"text": "boolean"
|
|
3456
|
-
},
|
|
3457
|
-
"default": "false",
|
|
3458
|
-
"fieldName": "collapsed"
|
|
3459
|
-
},
|
|
3460
|
-
{
|
|
3461
|
-
"name": "fonts",
|
|
3462
|
-
"type": {
|
|
3463
|
-
"text": "any[]"
|
|
3464
|
-
},
|
|
3465
|
-
"default": "[]",
|
|
3466
|
-
"fieldName": "fonts"
|
|
3467
|
-
},
|
|
3468
|
-
{
|
|
3469
|
-
"name": "propertyEditor",
|
|
3470
|
-
"type": {
|
|
3471
|
-
"text": "any[]"
|
|
3472
|
-
},
|
|
3473
|
-
"default": "[]",
|
|
3474
|
-
"fieldName": "propertyEditor"
|
|
3289
|
+
"default": "''",
|
|
3290
|
+
"fieldName": "group"
|
|
3475
3291
|
}
|
|
3476
3292
|
],
|
|
3477
3293
|
"mixins": [
|
|
@@ -3490,238 +3306,28 @@
|
|
|
3490
3306
|
"exports": [
|
|
3491
3307
|
{
|
|
3492
3308
|
"kind": "js",
|
|
3493
|
-
"name": "
|
|
3309
|
+
"name": "ComponentMenu",
|
|
3494
3310
|
"declaration": {
|
|
3495
|
-
"name": "
|
|
3496
|
-
"module": "src/modeller/
|
|
3311
|
+
"name": "ComponentMenu",
|
|
3312
|
+
"module": "src/modeller/component-toolbar/component-menu.ts"
|
|
3497
3313
|
}
|
|
3498
3314
|
}
|
|
3499
3315
|
]
|
|
3500
3316
|
},
|
|
3501
3317
|
{
|
|
3502
3318
|
"kind": "javascript-module",
|
|
3503
|
-
"path": "src/modeller/component-toolbar/component-
|
|
3319
|
+
"path": "src/modeller/component-toolbar/component-toolbar.ts",
|
|
3504
3320
|
"declarations": [
|
|
3505
3321
|
{
|
|
3506
3322
|
"kind": "class",
|
|
3507
3323
|
"description": "",
|
|
3508
|
-
"name": "
|
|
3324
|
+
"name": "ComponentToolbar",
|
|
3509
3325
|
"members": [
|
|
3510
3326
|
{
|
|
3511
3327
|
"kind": "field",
|
|
3512
|
-
"name": "
|
|
3328
|
+
"name": "componentGroupList",
|
|
3513
3329
|
"type": {
|
|
3514
|
-
"text": "
|
|
3515
|
-
},
|
|
3516
|
-
"default": "null",
|
|
3517
|
-
"attribute": "template"
|
|
3518
|
-
}
|
|
3519
|
-
],
|
|
3520
|
-
"attributes": [
|
|
3521
|
-
{
|
|
3522
|
-
"name": "template",
|
|
3523
|
-
"type": {
|
|
3524
|
-
"text": "{ about: string } | null"
|
|
3525
|
-
},
|
|
3526
|
-
"default": "null",
|
|
3527
|
-
"fieldName": "template"
|
|
3528
|
-
}
|
|
3529
|
-
],
|
|
3530
|
-
"superclass": {
|
|
3531
|
-
"name": "LitElement",
|
|
3532
|
-
"package": "lit"
|
|
3533
|
-
},
|
|
3534
|
-
"customElement": true
|
|
3535
|
-
}
|
|
3536
|
-
],
|
|
3537
|
-
"exports": [
|
|
3538
|
-
{
|
|
3539
|
-
"kind": "js",
|
|
3540
|
-
"name": "ComponentDetail",
|
|
3541
|
-
"declaration": {
|
|
3542
|
-
"name": "ComponentDetail",
|
|
3543
|
-
"module": "src/modeller/component-toolbar/component-detail.ts"
|
|
3544
|
-
}
|
|
3545
|
-
}
|
|
3546
|
-
]
|
|
3547
|
-
},
|
|
3548
|
-
{
|
|
3549
|
-
"kind": "javascript-module",
|
|
3550
|
-
"path": "src/modeller/component-toolbar/component-menu.ts",
|
|
3551
|
-
"declarations": [
|
|
3552
|
-
{
|
|
3553
|
-
"kind": "class",
|
|
3554
|
-
"description": "",
|
|
3555
|
-
"name": "ComponentMenu",
|
|
3556
|
-
"members": [
|
|
3557
|
-
{
|
|
3558
|
-
"kind": "field",
|
|
3559
|
-
"name": "groups",
|
|
3560
|
-
"type": {
|
|
3561
|
-
"text": "Pallet[]"
|
|
3562
|
-
},
|
|
3563
|
-
"default": "[]",
|
|
3564
|
-
"attribute": "groups"
|
|
3565
|
-
},
|
|
3566
|
-
{
|
|
3567
|
-
"kind": "field",
|
|
3568
|
-
"name": "scene",
|
|
3569
|
-
"type": {
|
|
3570
|
-
"text": "Scene | null"
|
|
3571
|
-
},
|
|
3572
|
-
"default": "null",
|
|
3573
|
-
"attribute": "scene"
|
|
3574
|
-
},
|
|
3575
|
-
{
|
|
3576
|
-
"kind": "field",
|
|
3577
|
-
"name": "group",
|
|
3578
|
-
"type": {
|
|
3579
|
-
"text": "string | null"
|
|
3580
|
-
},
|
|
3581
|
-
"default": "''",
|
|
3582
|
-
"attribute": "group"
|
|
3583
|
-
},
|
|
3584
|
-
{
|
|
3585
|
-
"kind": "field",
|
|
3586
|
-
"name": "templates",
|
|
3587
|
-
"type": {
|
|
3588
|
-
"text": "PalletItem[]"
|
|
3589
|
-
},
|
|
3590
|
-
"default": "[]"
|
|
3591
|
-
},
|
|
3592
|
-
{
|
|
3593
|
-
"kind": "field",
|
|
3594
|
-
"name": "template",
|
|
3595
|
-
"type": {
|
|
3596
|
-
"text": "PalletItem | any"
|
|
3597
|
-
}
|
|
3598
|
-
},
|
|
3599
|
-
{
|
|
3600
|
-
"kind": "field",
|
|
3601
|
-
"name": "detail",
|
|
3602
|
-
"type": {
|
|
3603
|
-
"text": "HTMLElement"
|
|
3604
|
-
}
|
|
3605
|
-
},
|
|
3606
|
-
{
|
|
3607
|
-
"kind": "field",
|
|
3608
|
-
"name": "scopedElements",
|
|
3609
|
-
"static": true,
|
|
3610
|
-
"readonly": true
|
|
3611
|
-
},
|
|
3612
|
-
{
|
|
3613
|
-
"kind": "method",
|
|
3614
|
-
"name": "findTemplate",
|
|
3615
|
-
"parameters": [
|
|
3616
|
-
{
|
|
3617
|
-
"name": "type",
|
|
3618
|
-
"type": {
|
|
3619
|
-
"text": "string | null | undefined"
|
|
3620
|
-
}
|
|
3621
|
-
}
|
|
3622
|
-
]
|
|
3623
|
-
},
|
|
3624
|
-
{
|
|
3625
|
-
"kind": "method",
|
|
3626
|
-
"name": "onHoverComponent",
|
|
3627
|
-
"parameters": [
|
|
3628
|
-
{
|
|
3629
|
-
"name": "e",
|
|
3630
|
-
"type": {
|
|
3631
|
-
"text": "MouseEvent"
|
|
3632
|
-
}
|
|
3633
|
-
}
|
|
3634
|
-
]
|
|
3635
|
-
},
|
|
3636
|
-
{
|
|
3637
|
-
"kind": "method",
|
|
3638
|
-
"name": "onClickTemplate",
|
|
3639
|
-
"parameters": [
|
|
3640
|
-
{
|
|
3641
|
-
"name": "e",
|
|
3642
|
-
"type": {
|
|
3643
|
-
"text": "MouseEvent"
|
|
3644
|
-
}
|
|
3645
|
-
}
|
|
3646
|
-
]
|
|
3647
|
-
},
|
|
3648
|
-
{
|
|
3649
|
-
"kind": "method",
|
|
3650
|
-
"name": "templateIcon",
|
|
3651
|
-
"parameters": [
|
|
3652
|
-
{
|
|
3653
|
-
"name": "template",
|
|
3654
|
-
"type": {
|
|
3655
|
-
"text": "PalletItem"
|
|
3656
|
-
}
|
|
3657
|
-
}
|
|
3658
|
-
]
|
|
3659
|
-
}
|
|
3660
|
-
],
|
|
3661
|
-
"attributes": [
|
|
3662
|
-
{
|
|
3663
|
-
"name": "groups",
|
|
3664
|
-
"type": {
|
|
3665
|
-
"text": "Pallet[]"
|
|
3666
|
-
},
|
|
3667
|
-
"default": "[]",
|
|
3668
|
-
"fieldName": "groups"
|
|
3669
|
-
},
|
|
3670
|
-
{
|
|
3671
|
-
"name": "scene",
|
|
3672
|
-
"type": {
|
|
3673
|
-
"text": "Scene | null"
|
|
3674
|
-
},
|
|
3675
|
-
"default": "null",
|
|
3676
|
-
"fieldName": "scene"
|
|
3677
|
-
},
|
|
3678
|
-
{
|
|
3679
|
-
"name": "group",
|
|
3680
|
-
"type": {
|
|
3681
|
-
"text": "string | null"
|
|
3682
|
-
},
|
|
3683
|
-
"default": "''",
|
|
3684
|
-
"fieldName": "group"
|
|
3685
|
-
}
|
|
3686
|
-
],
|
|
3687
|
-
"mixins": [
|
|
3688
|
-
{
|
|
3689
|
-
"name": "ScopedElementsMixin",
|
|
3690
|
-
"package": "@open-wc/scoped-elements"
|
|
3691
|
-
}
|
|
3692
|
-
],
|
|
3693
|
-
"superclass": {
|
|
3694
|
-
"name": "LitElement",
|
|
3695
|
-
"package": "lit"
|
|
3696
|
-
},
|
|
3697
|
-
"customElement": true
|
|
3698
|
-
}
|
|
3699
|
-
],
|
|
3700
|
-
"exports": [
|
|
3701
|
-
{
|
|
3702
|
-
"kind": "js",
|
|
3703
|
-
"name": "ComponentMenu",
|
|
3704
|
-
"declaration": {
|
|
3705
|
-
"name": "ComponentMenu",
|
|
3706
|
-
"module": "src/modeller/component-toolbar/component-menu.ts"
|
|
3707
|
-
}
|
|
3708
|
-
}
|
|
3709
|
-
]
|
|
3710
|
-
},
|
|
3711
|
-
{
|
|
3712
|
-
"kind": "javascript-module",
|
|
3713
|
-
"path": "src/modeller/component-toolbar/component-toolbar.ts",
|
|
3714
|
-
"declarations": [
|
|
3715
|
-
{
|
|
3716
|
-
"kind": "class",
|
|
3717
|
-
"description": "",
|
|
3718
|
-
"name": "ComponentToolbar",
|
|
3719
|
-
"members": [
|
|
3720
|
-
{
|
|
3721
|
-
"kind": "field",
|
|
3722
|
-
"name": "componentGroupList",
|
|
3723
|
-
"type": {
|
|
3724
|
-
"text": "ComponentGroup[]"
|
|
3330
|
+
"text": "ComponentGroup[]"
|
|
3725
3331
|
},
|
|
3726
3332
|
"default": "[]",
|
|
3727
3333
|
"attribute": "componentGroupList"
|
|
@@ -3944,474 +3550,244 @@
|
|
|
3944
3550
|
},
|
|
3945
3551
|
{
|
|
3946
3552
|
"kind": "javascript-module",
|
|
3947
|
-
"path": "src/modeller/
|
|
3553
|
+
"path": "src/modeller/property-sidebar/abstract-property.ts",
|
|
3948
3554
|
"declarations": [
|
|
3949
3555
|
{
|
|
3950
3556
|
"kind": "class",
|
|
3951
3557
|
"description": "",
|
|
3952
|
-
"name": "
|
|
3558
|
+
"name": "AbstractProperty",
|
|
3953
3559
|
"members": [
|
|
3954
3560
|
{
|
|
3955
3561
|
"kind": "method",
|
|
3956
|
-
"name": "
|
|
3562
|
+
"name": "_onValueChange",
|
|
3957
3563
|
"parameters": [
|
|
3958
3564
|
{
|
|
3959
|
-
"name": "
|
|
3565
|
+
"name": "e",
|
|
3960
3566
|
"type": {
|
|
3961
|
-
"text": "
|
|
3567
|
+
"text": "Event"
|
|
3568
|
+
}
|
|
3569
|
+
}
|
|
3570
|
+
]
|
|
3571
|
+
},
|
|
3572
|
+
{
|
|
3573
|
+
"kind": "method",
|
|
3574
|
+
"name": "_getValueFromEventTarget",
|
|
3575
|
+
"parameters": [
|
|
3576
|
+
{
|
|
3577
|
+
"name": "element",
|
|
3578
|
+
"type": {
|
|
3579
|
+
"text": "HTMLElement"
|
|
3580
|
+
}
|
|
3581
|
+
}
|
|
3582
|
+
]
|
|
3583
|
+
},
|
|
3584
|
+
{
|
|
3585
|
+
"kind": "method",
|
|
3586
|
+
"name": "_onAfterValueChange",
|
|
3587
|
+
"parameters": [
|
|
3588
|
+
{
|
|
3589
|
+
"name": "key",
|
|
3590
|
+
"type": {
|
|
3591
|
+
"text": "string"
|
|
3592
|
+
}
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
"name": "value",
|
|
3596
|
+
"type": {
|
|
3597
|
+
"text": "any"
|
|
3962
3598
|
}
|
|
3963
3599
|
}
|
|
3964
3600
|
]
|
|
3965
3601
|
}
|
|
3966
3602
|
],
|
|
3603
|
+
"events": [
|
|
3604
|
+
{
|
|
3605
|
+
"name": "property-change",
|
|
3606
|
+
"type": {
|
|
3607
|
+
"text": "CustomEvent"
|
|
3608
|
+
}
|
|
3609
|
+
}
|
|
3610
|
+
],
|
|
3967
3611
|
"superclass": {
|
|
3968
|
-
"name": "
|
|
3969
|
-
"package": "
|
|
3970
|
-
}
|
|
3612
|
+
"name": "LitElement",
|
|
3613
|
+
"package": "lit"
|
|
3614
|
+
},
|
|
3615
|
+
"customElement": true
|
|
3971
3616
|
}
|
|
3972
3617
|
],
|
|
3973
3618
|
"exports": [
|
|
3974
3619
|
{
|
|
3975
3620
|
"kind": "js",
|
|
3976
|
-
"name": "
|
|
3621
|
+
"name": "AbstractProperty",
|
|
3977
3622
|
"declaration": {
|
|
3978
|
-
"name": "
|
|
3979
|
-
"module": "src/modeller/
|
|
3623
|
+
"name": "AbstractProperty",
|
|
3624
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
3980
3625
|
}
|
|
3981
3626
|
}
|
|
3982
3627
|
]
|
|
3983
3628
|
},
|
|
3984
3629
|
{
|
|
3985
3630
|
"kind": "javascript-module",
|
|
3986
|
-
"path": "src/modeller/
|
|
3631
|
+
"path": "src/modeller/property-sidebar/property-shared-style.ts",
|
|
3987
3632
|
"declarations": [
|
|
3988
3633
|
{
|
|
3989
|
-
"kind": "
|
|
3990
|
-
"
|
|
3991
|
-
"
|
|
3992
|
-
"members": [
|
|
3993
|
-
{
|
|
3994
|
-
"kind": "field",
|
|
3995
|
-
"name": "type",
|
|
3996
|
-
"type": {
|
|
3997
|
-
"text": "string"
|
|
3998
|
-
},
|
|
3999
|
-
"attribute": "type"
|
|
4000
|
-
},
|
|
4001
|
-
{
|
|
4002
|
-
"kind": "field",
|
|
4003
|
-
"name": "model",
|
|
4004
|
-
"type": {
|
|
4005
|
-
"text": "{\n type: Object\n notify: true\n }"
|
|
4006
|
-
},
|
|
4007
|
-
"attribute": "model"
|
|
4008
|
-
}
|
|
4009
|
-
],
|
|
4010
|
-
"attributes": [
|
|
4011
|
-
{
|
|
4012
|
-
"name": "type",
|
|
4013
|
-
"type": {
|
|
4014
|
-
"text": "string"
|
|
4015
|
-
},
|
|
4016
|
-
"fieldName": "type"
|
|
4017
|
-
},
|
|
4018
|
-
{
|
|
4019
|
-
"name": "model",
|
|
4020
|
-
"type": {
|
|
4021
|
-
"text": "{\n type: Object\n notify: true\n }"
|
|
4022
|
-
},
|
|
4023
|
-
"fieldName": "model"
|
|
4024
|
-
}
|
|
4025
|
-
],
|
|
4026
|
-
"superclass": {
|
|
4027
|
-
"name": "LitElement",
|
|
4028
|
-
"package": "lit"
|
|
4029
|
-
},
|
|
4030
|
-
"tagName": "ox-scene-handler",
|
|
4031
|
-
"customElement": true
|
|
3634
|
+
"kind": "variable",
|
|
3635
|
+
"name": "PropertySharedStyle",
|
|
3636
|
+
"default": "css`\n fieldset {\n border: none;\n margin: 4px;\n padding: 9px 4px 9px 4px;\n border-bottom: var(--property-sidebar-fieldset-border);\n color: var(--property-sidebar-fieldset-legend-color);\n font: var(--property-sidebar-fieldset-label);\n }\n\n fieldset legend {\n padding: 5px 0 0 5px;\n color: var(--property-sidebar-fieldset-legend-color);\n font: var(--property-sidebar-fieldset-legend);\n text-transform: capitalize;\n }\n\n select,\n input {\n border: var(--property-sidebar-fieldset-border);\n }\n\n ox-input-data {\n height: 300px;\n }\n\n /* property grid */\n .property-grid {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n align-items: center;\n }\n\n .property-grid > * {\n width: 100%;\n box-sizing: border-box;\n }\n\n .property-grid > label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n line-height: 2;\n }\n\n .property-grid > input,\n .property-grid > table,\n .property-grid > select,\n .property-grid > ox-input-angle,\n .property-grid > ox-buttons-radio,\n .property-grid > ox-input-color,\n [custom-editor] {\n grid-column: span 7;\n align-self: stretch;\n }\n\n .property-grid > .checkbox-row {\n grid-column: span 10;\n }\n\n .property-grid > .property-full-label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n }\n\n .property-grid > .property-half-label {\n grid-column: span 1;\n }\n\n .property-grid > .property-full-input {\n grid-column: span 7;\n }\n\n .property-grid > .property-half-input {\n grid-column: span 4;\n }\n\n /* checkbox-row */\n .checkbox-row {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n align-items: center;\n }\n\n .checkbox-row > input {\n grid-column: 4 / 5;\n }\n\n .checkbox-row > label {\n grid-column: span 6;\n text-align: left;\n }\n\n /* image resources */\n .icon-only-label {\n grid-column: span 1;\n\n background: var(--url-icon-properties-label) no-repeat;\n float: left;\n margin: 0;\n align-self: stretch;\n }\n\n .icon-only-label.color {\n background-position: 100% -500px;\n }\n .icon-only-label.font-size {\n background-position: 100% -594px;\n }\n .icon-only-label.leading {\n background-position: 100% -696px;\n }\n .icon-only-label.hscale {\n background-position: 100% -296px;\n }\n .icon-only-label.vscale {\n background-position: 100% -396px;\n }\n .icon-only-label.linewidth {\n background-position: 100% -894px;\n }\n .icon-only-label.lineHeight {\n background-position: 100% -995px;\n }\n`"
|
|
4032
3637
|
}
|
|
4033
3638
|
],
|
|
4034
3639
|
"exports": [
|
|
4035
3640
|
{
|
|
4036
3641
|
"kind": "js",
|
|
4037
|
-
"name": "
|
|
4038
|
-
"declaration": {
|
|
4039
|
-
"name": "OxSceneHandler",
|
|
4040
|
-
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
4041
|
-
}
|
|
4042
|
-
},
|
|
4043
|
-
{
|
|
4044
|
-
"kind": "custom-element-definition",
|
|
4045
|
-
"name": "ox-scene-handler",
|
|
3642
|
+
"name": "PropertySharedStyle",
|
|
4046
3643
|
"declaration": {
|
|
4047
|
-
"name": "
|
|
4048
|
-
"module": "src/modeller/
|
|
3644
|
+
"name": "PropertySharedStyle",
|
|
3645
|
+
"module": "src/modeller/property-sidebar/property-shared-style.ts"
|
|
4049
3646
|
}
|
|
4050
3647
|
}
|
|
4051
3648
|
]
|
|
4052
3649
|
},
|
|
4053
3650
|
{
|
|
4054
3651
|
"kind": "javascript-module",
|
|
4055
|
-
"path": "src/modeller/
|
|
3652
|
+
"path": "src/modeller/property-sidebar/property-sidebar.ts",
|
|
4056
3653
|
"declarations": [
|
|
4057
3654
|
{
|
|
4058
3655
|
"kind": "class",
|
|
4059
3656
|
"description": "",
|
|
4060
|
-
"name": "
|
|
3657
|
+
"name": "PropertySidebar",
|
|
4061
3658
|
"members": [
|
|
4062
3659
|
{
|
|
4063
3660
|
"kind": "field",
|
|
4064
|
-
"name": "
|
|
3661
|
+
"name": "scene",
|
|
4065
3662
|
"type": {
|
|
4066
|
-
"text": "
|
|
3663
|
+
"text": "Scene | null"
|
|
4067
3664
|
},
|
|
4068
|
-
"
|
|
3665
|
+
"default": "null",
|
|
3666
|
+
"attribute": "scene"
|
|
4069
3667
|
},
|
|
4070
3668
|
{
|
|
4071
3669
|
"kind": "field",
|
|
4072
|
-
"name": "
|
|
3670
|
+
"name": "bounds",
|
|
4073
3671
|
"type": {
|
|
4074
|
-
"text": "
|
|
3672
|
+
"text": "any"
|
|
4075
3673
|
},
|
|
4076
|
-
"
|
|
3674
|
+
"default": "{}",
|
|
3675
|
+
"attribute": "bounds"
|
|
4077
3676
|
},
|
|
4078
3677
|
{
|
|
4079
|
-
"kind": "
|
|
4080
|
-
"name": "
|
|
4081
|
-
}
|
|
4082
|
-
],
|
|
4083
|
-
"attributes": [
|
|
4084
|
-
{
|
|
4085
|
-
"name": "type",
|
|
3678
|
+
"kind": "field",
|
|
3679
|
+
"name": "model",
|
|
4086
3680
|
"type": {
|
|
4087
|
-
"text": "
|
|
3681
|
+
"text": "Model | null"
|
|
4088
3682
|
},
|
|
4089
|
-
"
|
|
3683
|
+
"default": "{}",
|
|
3684
|
+
"attribute": "model"
|
|
4090
3685
|
},
|
|
4091
|
-
{
|
|
4092
|
-
"name": "text",
|
|
4093
|
-
"type": {
|
|
4094
|
-
"text": "String | undefined"
|
|
4095
|
-
},
|
|
4096
|
-
"fieldName": "text"
|
|
4097
|
-
}
|
|
4098
|
-
],
|
|
4099
|
-
"superclass": {
|
|
4100
|
-
"name": "LitElement",
|
|
4101
|
-
"package": "lit"
|
|
4102
|
-
},
|
|
4103
|
-
"tagName": "ox-scene-layer",
|
|
4104
|
-
"customElement": true
|
|
4105
|
-
}
|
|
4106
|
-
],
|
|
4107
|
-
"exports": [
|
|
4108
|
-
{
|
|
4109
|
-
"kind": "js",
|
|
4110
|
-
"name": "default",
|
|
4111
|
-
"declaration": {
|
|
4112
|
-
"name": "OxSceneLayer",
|
|
4113
|
-
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
4114
|
-
}
|
|
4115
|
-
},
|
|
4116
|
-
{
|
|
4117
|
-
"kind": "custom-element-definition",
|
|
4118
|
-
"name": "ox-scene-layer",
|
|
4119
|
-
"declaration": {
|
|
4120
|
-
"name": "OxSceneLayer",
|
|
4121
|
-
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
4122
|
-
}
|
|
4123
|
-
}
|
|
4124
|
-
]
|
|
4125
|
-
},
|
|
4126
|
-
{
|
|
4127
|
-
"kind": "javascript-module",
|
|
4128
|
-
"path": "src/modeller/scene-viewer/ox-scene-property.ts",
|
|
4129
|
-
"declarations": [
|
|
4130
|
-
{
|
|
4131
|
-
"kind": "class",
|
|
4132
|
-
"description": "",
|
|
4133
|
-
"name": "OxSceneProperty",
|
|
4134
|
-
"members": [
|
|
4135
3686
|
{
|
|
4136
3687
|
"kind": "field",
|
|
4137
|
-
"name": "
|
|
3688
|
+
"name": "selected",
|
|
4138
3689
|
"type": {
|
|
4139
|
-
"text": "
|
|
3690
|
+
"text": "Component[]"
|
|
4140
3691
|
},
|
|
4141
|
-
"
|
|
3692
|
+
"default": "[]",
|
|
3693
|
+
"attribute": "selected"
|
|
4142
3694
|
},
|
|
4143
3695
|
{
|
|
4144
3696
|
"kind": "field",
|
|
4145
|
-
"name": "
|
|
3697
|
+
"name": "specificProps",
|
|
4146
3698
|
"type": {
|
|
4147
|
-
"text": "
|
|
3699
|
+
"text": "any"
|
|
4148
3700
|
},
|
|
4149
|
-
"attribute": "
|
|
3701
|
+
"attribute": "specificProps"
|
|
4150
3702
|
},
|
|
4151
3703
|
{
|
|
4152
3704
|
"kind": "field",
|
|
4153
|
-
"name": "
|
|
4154
|
-
"type": {
|
|
4155
|
-
"text": "string"
|
|
4156
|
-
},
|
|
4157
|
-
"attribute": "type"
|
|
4158
|
-
}
|
|
4159
|
-
],
|
|
4160
|
-
"attributes": [
|
|
4161
|
-
{
|
|
4162
|
-
"name": "name",
|
|
3705
|
+
"name": "tabName",
|
|
4163
3706
|
"type": {
|
|
4164
|
-
"text": "string"
|
|
3707
|
+
"text": "string | null"
|
|
4165
3708
|
},
|
|
4166
|
-
"
|
|
3709
|
+
"default": "'specific'",
|
|
3710
|
+
"attribute": "tabName"
|
|
4167
3711
|
},
|
|
4168
3712
|
{
|
|
4169
|
-
"
|
|
3713
|
+
"kind": "field",
|
|
3714
|
+
"name": "collapsed",
|
|
4170
3715
|
"type": {
|
|
4171
|
-
"text": "
|
|
3716
|
+
"text": "boolean"
|
|
4172
3717
|
},
|
|
4173
|
-
"
|
|
3718
|
+
"default": "false",
|
|
3719
|
+
"attribute": "collapsed"
|
|
4174
3720
|
},
|
|
4175
|
-
{
|
|
4176
|
-
"name": "type",
|
|
4177
|
-
"type": {
|
|
4178
|
-
"text": "string"
|
|
4179
|
-
},
|
|
4180
|
-
"fieldName": "type"
|
|
4181
|
-
}
|
|
4182
|
-
],
|
|
4183
|
-
"superclass": {
|
|
4184
|
-
"name": "LitElement",
|
|
4185
|
-
"package": "lit"
|
|
4186
|
-
},
|
|
4187
|
-
"tagName": "ox-scene-property",
|
|
4188
|
-
"customElement": true
|
|
4189
|
-
}
|
|
4190
|
-
],
|
|
4191
|
-
"exports": [
|
|
4192
|
-
{
|
|
4193
|
-
"kind": "js",
|
|
4194
|
-
"name": "default",
|
|
4195
|
-
"declaration": {
|
|
4196
|
-
"name": "OxSceneProperty",
|
|
4197
|
-
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
4198
|
-
}
|
|
4199
|
-
},
|
|
4200
|
-
{
|
|
4201
|
-
"kind": "custom-element-definition",
|
|
4202
|
-
"name": "ox-scene-property",
|
|
4203
|
-
"declaration": {
|
|
4204
|
-
"name": "OxSceneProperty",
|
|
4205
|
-
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
4206
|
-
}
|
|
4207
|
-
}
|
|
4208
|
-
]
|
|
4209
|
-
},
|
|
4210
|
-
{
|
|
4211
|
-
"kind": "javascript-module",
|
|
4212
|
-
"path": "src/modeller/scene-viewer/ox-scene-viewer.ts",
|
|
4213
|
-
"declarations": [
|
|
4214
|
-
{
|
|
4215
|
-
"kind": "class",
|
|
4216
|
-
"description": "",
|
|
4217
|
-
"name": "OxSceneViewer",
|
|
4218
|
-
"members": [
|
|
4219
3721
|
{
|
|
4220
3722
|
"kind": "field",
|
|
4221
|
-
"name": "
|
|
3723
|
+
"name": "fonts",
|
|
4222
3724
|
"type": {
|
|
4223
|
-
"text": "
|
|
3725
|
+
"text": "any[]"
|
|
4224
3726
|
},
|
|
4225
|
-
"default": "
|
|
4226
|
-
"attribute": "
|
|
3727
|
+
"default": "[]",
|
|
3728
|
+
"attribute": "fonts"
|
|
4227
3729
|
},
|
|
4228
3730
|
{
|
|
4229
3731
|
"kind": "field",
|
|
4230
|
-
"name": "
|
|
3732
|
+
"name": "propertyEditor",
|
|
4231
3733
|
"type": {
|
|
4232
|
-
"text": "
|
|
3734
|
+
"text": "any[]"
|
|
4233
3735
|
},
|
|
4234
|
-
"
|
|
3736
|
+
"default": "[]",
|
|
3737
|
+
"attribute": "propertyEditor"
|
|
4235
3738
|
},
|
|
4236
3739
|
{
|
|
4237
3740
|
"kind": "field",
|
|
4238
|
-
"name": "
|
|
3741
|
+
"name": "propertyTarget",
|
|
4239
3742
|
"type": {
|
|
4240
|
-
"text": "
|
|
3743
|
+
"text": "Component | null"
|
|
4241
3744
|
},
|
|
4242
|
-
"
|
|
3745
|
+
"default": "null"
|
|
4243
3746
|
},
|
|
4244
3747
|
{
|
|
4245
3748
|
"kind": "field",
|
|
4246
|
-
"name": "
|
|
4247
|
-
"
|
|
4248
|
-
|
|
4249
|
-
},
|
|
4250
|
-
"default": "13.3",
|
|
4251
|
-
"attribute": "screenSize"
|
|
4252
|
-
},
|
|
4253
|
-
{
|
|
4254
|
-
"kind": "field",
|
|
4255
|
-
"name": "variables",
|
|
4256
|
-
"type": {
|
|
4257
|
-
"text": "Properties"
|
|
4258
|
-
},
|
|
4259
|
-
"default": "{}",
|
|
4260
|
-
"attribute": "variables"
|
|
4261
|
-
},
|
|
4262
|
-
{
|
|
4263
|
-
"kind": "field",
|
|
4264
|
-
"name": "data",
|
|
4265
|
-
"type": {
|
|
4266
|
-
"text": "any"
|
|
4267
|
-
},
|
|
4268
|
-
"attribute": "data"
|
|
4269
|
-
},
|
|
4270
|
-
{
|
|
4271
|
-
"kind": "field",
|
|
4272
|
-
"name": "themes",
|
|
4273
|
-
"type": {
|
|
4274
|
-
"text": "any | undefined"
|
|
4275
|
-
},
|
|
4276
|
-
"attribute": "themes"
|
|
4277
|
-
},
|
|
4278
|
-
{
|
|
4279
|
-
"kind": "field",
|
|
4280
|
-
"name": "fit",
|
|
4281
|
-
"type": {
|
|
4282
|
-
"text": "FITMODE"
|
|
4283
|
-
},
|
|
4284
|
-
"default": "'none'",
|
|
4285
|
-
"attribute": "fit"
|
|
4286
|
-
},
|
|
4287
|
-
{
|
|
4288
|
-
"kind": "field",
|
|
4289
|
-
"name": "selected",
|
|
4290
|
-
"type": {
|
|
4291
|
-
"text": "Component[]"
|
|
4292
|
-
},
|
|
4293
|
-
"default": "[]",
|
|
4294
|
-
"attribute": "selected"
|
|
4295
|
-
},
|
|
4296
|
-
{
|
|
4297
|
-
"kind": "field",
|
|
4298
|
-
"name": "disposeWhenDetached",
|
|
4299
|
-
"type": {
|
|
4300
|
-
"text": "boolean"
|
|
4301
|
-
},
|
|
4302
|
-
"default": "false",
|
|
4303
|
-
"attribute": "disposeWhenDetached"
|
|
4304
|
-
},
|
|
4305
|
-
{
|
|
4306
|
-
"kind": "field",
|
|
4307
|
-
"name": "baseUrl",
|
|
4308
|
-
"type": {
|
|
4309
|
-
"text": "string"
|
|
4310
|
-
},
|
|
4311
|
-
"default": "''",
|
|
4312
|
-
"attribute": "baseUrl"
|
|
4313
|
-
},
|
|
4314
|
-
{
|
|
4315
|
-
"kind": "field",
|
|
4316
|
-
"name": "provider",
|
|
4317
|
-
"type": {
|
|
4318
|
-
"text": "any"
|
|
4319
|
-
},
|
|
4320
|
-
"attribute": "provider"
|
|
4321
|
-
},
|
|
4322
|
-
{
|
|
4323
|
-
"kind": "field",
|
|
4324
|
-
"name": "name",
|
|
4325
|
-
"type": {
|
|
4326
|
-
"text": "string"
|
|
4327
|
-
},
|
|
4328
|
-
"default": "'noname'",
|
|
4329
|
-
"attribute": "name"
|
|
4330
|
-
},
|
|
4331
|
-
{
|
|
4332
|
-
"kind": "field",
|
|
4333
|
-
"name": "enableInspector",
|
|
4334
|
-
"type": {
|
|
4335
|
-
"text": "boolean"
|
|
4336
|
-
},
|
|
4337
|
-
"default": "true",
|
|
4338
|
-
"attribute": "enableInspector"
|
|
4339
|
-
},
|
|
4340
|
-
{
|
|
4341
|
-
"kind": "field",
|
|
4342
|
-
"name": "showInspector",
|
|
4343
|
-
"type": {
|
|
4344
|
-
"text": "boolean"
|
|
4345
|
-
},
|
|
4346
|
-
"default": "false",
|
|
4347
|
-
"attribute": "showInspector"
|
|
4348
|
-
},
|
|
4349
|
-
{
|
|
4350
|
-
"kind": "field",
|
|
4351
|
-
"name": "lastOffsetWidth",
|
|
4352
|
-
"type": {
|
|
4353
|
-
"text": "number | undefined"
|
|
4354
|
-
},
|
|
4355
|
-
"privacy": "private"
|
|
4356
|
-
},
|
|
4357
|
-
{
|
|
4358
|
-
"kind": "method",
|
|
4359
|
-
"name": "_setScene",
|
|
4360
|
-
"parameters": [
|
|
4361
|
-
{
|
|
4362
|
-
"name": "scene",
|
|
4363
|
-
"type": {
|
|
4364
|
-
"text": "Scene | null"
|
|
4365
|
-
}
|
|
4366
|
-
}
|
|
4367
|
-
]
|
|
3749
|
+
"name": "scopedElements",
|
|
3750
|
+
"static": true,
|
|
3751
|
+
"readonly": true
|
|
4368
3752
|
},
|
|
4369
3753
|
{
|
|
4370
3754
|
"kind": "method",
|
|
4371
|
-
"name": "
|
|
3755
|
+
"name": "_onPropertyChanged",
|
|
4372
3756
|
"parameters": [
|
|
4373
3757
|
{
|
|
4374
|
-
"name": "
|
|
3758
|
+
"name": "e",
|
|
4375
3759
|
"type": {
|
|
4376
|
-
"text": "
|
|
3760
|
+
"text": "CustomEvent"
|
|
4377
3761
|
}
|
|
4378
3762
|
}
|
|
4379
3763
|
]
|
|
4380
3764
|
},
|
|
4381
3765
|
{
|
|
4382
3766
|
"kind": "method",
|
|
4383
|
-
"name": "
|
|
3767
|
+
"name": "_onBoundsChanged",
|
|
4384
3768
|
"parameters": [
|
|
4385
3769
|
{
|
|
4386
|
-
"name": "
|
|
3770
|
+
"name": "e",
|
|
4387
3771
|
"type": {
|
|
4388
|
-
"text": "
|
|
3772
|
+
"text": "CustomEvent"
|
|
4389
3773
|
}
|
|
4390
3774
|
}
|
|
4391
3775
|
]
|
|
4392
3776
|
},
|
|
4393
3777
|
{
|
|
4394
3778
|
"kind": "method",
|
|
4395
|
-
"name": "
|
|
4396
|
-
"parameters": [
|
|
4397
|
-
{
|
|
4398
|
-
"name": "selected",
|
|
4399
|
-
"type": {
|
|
4400
|
-
"text": "Component[]"
|
|
4401
|
-
}
|
|
4402
|
-
}
|
|
4403
|
-
]
|
|
3779
|
+
"name": "_onChangedByScene"
|
|
4404
3780
|
},
|
|
4405
3781
|
{
|
|
4406
3782
|
"kind": "method",
|
|
4407
|
-
"name": "
|
|
3783
|
+
"name": "_setPropertyTargetAsDefault"
|
|
4408
3784
|
},
|
|
4409
3785
|
{
|
|
4410
3786
|
"kind": "method",
|
|
4411
|
-
"name": "
|
|
3787
|
+
"name": "_onCollapsed",
|
|
4412
3788
|
"parameters": [
|
|
4413
3789
|
{
|
|
4414
|
-
"name": "
|
|
3790
|
+
"name": "collapsed",
|
|
4415
3791
|
"type": {
|
|
4416
3792
|
"text": "boolean"
|
|
4417
3793
|
}
|
|
@@ -4420,52 +3796,7 @@
|
|
|
4420
3796
|
},
|
|
4421
3797
|
{
|
|
4422
3798
|
"kind": "method",
|
|
4423
|
-
"name": "
|
|
4424
|
-
"parameters": [
|
|
4425
|
-
{
|
|
4426
|
-
"name": "model",
|
|
4427
|
-
"optional": true,
|
|
4428
|
-
"type": {
|
|
4429
|
-
"text": "Model"
|
|
4430
|
-
}
|
|
4431
|
-
}
|
|
4432
|
-
]
|
|
4433
|
-
},
|
|
4434
|
-
{
|
|
4435
|
-
"kind": "method",
|
|
4436
|
-
"name": "_onDisplayChanged",
|
|
4437
|
-
"parameters": [
|
|
4438
|
-
{
|
|
4439
|
-
"name": "screenSize",
|
|
4440
|
-
"type": {
|
|
4441
|
-
"text": "string | number"
|
|
4442
|
-
}
|
|
4443
|
-
}
|
|
4444
|
-
]
|
|
4445
|
-
},
|
|
4446
|
-
{
|
|
4447
|
-
"kind": "method",
|
|
4448
|
-
"name": "_onModeChanged",
|
|
4449
|
-
"parameters": [
|
|
4450
|
-
{
|
|
4451
|
-
"name": "mode",
|
|
4452
|
-
"type": {
|
|
4453
|
-
"text": "SCENE_MODE"
|
|
4454
|
-
}
|
|
4455
|
-
}
|
|
4456
|
-
]
|
|
4457
|
-
},
|
|
4458
|
-
{
|
|
4459
|
-
"kind": "method",
|
|
4460
|
-
"name": "_onDataChanged",
|
|
4461
|
-
"parameters": [
|
|
4462
|
-
{
|
|
4463
|
-
"name": "data",
|
|
4464
|
-
"type": {
|
|
4465
|
-
"text": "any"
|
|
4466
|
-
}
|
|
4467
|
-
}
|
|
4468
|
-
]
|
|
3799
|
+
"name": "_onSceneChanged"
|
|
4469
3800
|
},
|
|
4470
3801
|
{
|
|
4471
3802
|
"kind": "method",
|
|
@@ -4481,55 +3812,29 @@
|
|
|
4481
3812
|
},
|
|
4482
3813
|
{
|
|
4483
3814
|
"kind": "method",
|
|
4484
|
-
"name": "
|
|
3815
|
+
"name": "_setPropertyTarget",
|
|
4485
3816
|
"parameters": [
|
|
4486
3817
|
{
|
|
4487
|
-
"name": "
|
|
3818
|
+
"name": "newTarget",
|
|
4488
3819
|
"type": {
|
|
4489
|
-
"text": "
|
|
3820
|
+
"text": "Component | null"
|
|
4490
3821
|
}
|
|
4491
3822
|
}
|
|
4492
3823
|
]
|
|
4493
3824
|
},
|
|
4494
3825
|
{
|
|
4495
3826
|
"kind": "method",
|
|
4496
|
-
"name": "
|
|
3827
|
+
"name": "_setBounds",
|
|
4497
3828
|
"parameters": [
|
|
4498
3829
|
{
|
|
4499
|
-
"name": "
|
|
3830
|
+
"name": "bounds",
|
|
4500
3831
|
"type": {
|
|
4501
|
-
"text": "
|
|
3832
|
+
"text": "BOUNDS"
|
|
4502
3833
|
}
|
|
4503
3834
|
}
|
|
4504
3835
|
]
|
|
4505
3836
|
}
|
|
4506
3837
|
],
|
|
4507
|
-
"events": [
|
|
4508
|
-
{
|
|
4509
|
-
"name": "scene-changed",
|
|
4510
|
-
"type": {
|
|
4511
|
-
"text": "CustomEvent"
|
|
4512
|
-
}
|
|
4513
|
-
},
|
|
4514
|
-
{
|
|
4515
|
-
"name": "mode-changed",
|
|
4516
|
-
"type": {
|
|
4517
|
-
"text": "CustomEvent"
|
|
4518
|
-
}
|
|
4519
|
-
},
|
|
4520
|
-
{
|
|
4521
|
-
"name": "variables-changed",
|
|
4522
|
-
"type": {
|
|
4523
|
-
"text": "CustomEvent"
|
|
4524
|
-
}
|
|
4525
|
-
},
|
|
4526
|
-
{
|
|
4527
|
-
"name": "selected-changed",
|
|
4528
|
-
"type": {
|
|
4529
|
-
"text": "CustomEvent"
|
|
4530
|
-
}
|
|
4531
|
-
}
|
|
4532
|
-
],
|
|
4533
3838
|
"attributes": [
|
|
4534
3839
|
{
|
|
4535
3840
|
"name": "scene",
|
|
@@ -4540,118 +3845,179 @@
|
|
|
4540
3845
|
"fieldName": "scene"
|
|
4541
3846
|
},
|
|
4542
3847
|
{
|
|
4543
|
-
"name": "
|
|
3848
|
+
"name": "bounds",
|
|
4544
3849
|
"type": {
|
|
4545
|
-
"text": "
|
|
3850
|
+
"text": "any"
|
|
4546
3851
|
},
|
|
4547
|
-
"
|
|
3852
|
+
"default": "{}",
|
|
3853
|
+
"fieldName": "bounds"
|
|
4548
3854
|
},
|
|
4549
3855
|
{
|
|
4550
|
-
"name": "
|
|
3856
|
+
"name": "model",
|
|
4551
3857
|
"type": {
|
|
4552
|
-
"text": "
|
|
3858
|
+
"text": "Model | null"
|
|
4553
3859
|
},
|
|
4554
|
-
"
|
|
3860
|
+
"default": "{}",
|
|
3861
|
+
"fieldName": "model"
|
|
4555
3862
|
},
|
|
4556
3863
|
{
|
|
4557
|
-
"name": "
|
|
3864
|
+
"name": "selected",
|
|
4558
3865
|
"type": {
|
|
4559
|
-
"text": "
|
|
3866
|
+
"text": "Component[]"
|
|
4560
3867
|
},
|
|
4561
|
-
"default": "
|
|
4562
|
-
"fieldName": "
|
|
3868
|
+
"default": "[]",
|
|
3869
|
+
"fieldName": "selected"
|
|
4563
3870
|
},
|
|
4564
3871
|
{
|
|
4565
|
-
"name": "
|
|
4566
|
-
"type": {
|
|
4567
|
-
"text": "Properties"
|
|
4568
|
-
},
|
|
4569
|
-
"default": "{}",
|
|
4570
|
-
"fieldName": "variables"
|
|
4571
|
-
},
|
|
4572
|
-
{
|
|
4573
|
-
"name": "data",
|
|
3872
|
+
"name": "specificProps",
|
|
4574
3873
|
"type": {
|
|
4575
3874
|
"text": "any"
|
|
4576
3875
|
},
|
|
4577
|
-
"fieldName": "
|
|
3876
|
+
"fieldName": "specificProps"
|
|
4578
3877
|
},
|
|
4579
3878
|
{
|
|
4580
|
-
"name": "
|
|
3879
|
+
"name": "tabName",
|
|
4581
3880
|
"type": {
|
|
4582
|
-
"text": "
|
|
3881
|
+
"text": "string | null"
|
|
4583
3882
|
},
|
|
4584
|
-
"
|
|
3883
|
+
"default": "'specific'",
|
|
3884
|
+
"fieldName": "tabName"
|
|
4585
3885
|
},
|
|
4586
3886
|
{
|
|
4587
|
-
"name": "
|
|
3887
|
+
"name": "collapsed",
|
|
4588
3888
|
"type": {
|
|
4589
|
-
"text": "
|
|
3889
|
+
"text": "boolean"
|
|
4590
3890
|
},
|
|
4591
|
-
"default": "
|
|
4592
|
-
"fieldName": "
|
|
3891
|
+
"default": "false",
|
|
3892
|
+
"fieldName": "collapsed"
|
|
4593
3893
|
},
|
|
4594
3894
|
{
|
|
4595
|
-
"name": "
|
|
3895
|
+
"name": "fonts",
|
|
4596
3896
|
"type": {
|
|
4597
|
-
"text": "
|
|
3897
|
+
"text": "any[]"
|
|
4598
3898
|
},
|
|
4599
3899
|
"default": "[]",
|
|
4600
|
-
"fieldName": "
|
|
3900
|
+
"fieldName": "fonts"
|
|
4601
3901
|
},
|
|
4602
3902
|
{
|
|
4603
|
-
"name": "
|
|
3903
|
+
"name": "propertyEditor",
|
|
4604
3904
|
"type": {
|
|
4605
|
-
"text": "
|
|
3905
|
+
"text": "any[]"
|
|
4606
3906
|
},
|
|
4607
|
-
"default": "
|
|
4608
|
-
"fieldName": "
|
|
4609
|
-
}
|
|
3907
|
+
"default": "[]",
|
|
3908
|
+
"fieldName": "propertyEditor"
|
|
3909
|
+
}
|
|
3910
|
+
],
|
|
3911
|
+
"mixins": [
|
|
4610
3912
|
{
|
|
4611
|
-
"name": "
|
|
3913
|
+
"name": "ScopedElementsMixin",
|
|
3914
|
+
"package": "@open-wc/scoped-elements"
|
|
3915
|
+
}
|
|
3916
|
+
],
|
|
3917
|
+
"superclass": {
|
|
3918
|
+
"name": "LitElement",
|
|
3919
|
+
"package": "lit"
|
|
3920
|
+
},
|
|
3921
|
+
"customElement": true
|
|
3922
|
+
}
|
|
3923
|
+
],
|
|
3924
|
+
"exports": [
|
|
3925
|
+
{
|
|
3926
|
+
"kind": "js",
|
|
3927
|
+
"name": "PropertySidebar",
|
|
3928
|
+
"declaration": {
|
|
3929
|
+
"name": "PropertySidebar",
|
|
3930
|
+
"module": "src/modeller/property-sidebar/property-sidebar.ts"
|
|
3931
|
+
}
|
|
3932
|
+
}
|
|
3933
|
+
]
|
|
3934
|
+
},
|
|
3935
|
+
{
|
|
3936
|
+
"kind": "javascript-module",
|
|
3937
|
+
"path": "src/modeller/scene-viewer/confidential-overlay.ts",
|
|
3938
|
+
"declarations": [
|
|
3939
|
+
{
|
|
3940
|
+
"kind": "class",
|
|
3941
|
+
"description": "",
|
|
3942
|
+
"name": "ConfidentialOverlay",
|
|
3943
|
+
"members": [
|
|
3944
|
+
{
|
|
3945
|
+
"kind": "method",
|
|
3946
|
+
"name": "_draw",
|
|
3947
|
+
"parameters": [
|
|
3948
|
+
{
|
|
3949
|
+
"name": "context",
|
|
3950
|
+
"type": {
|
|
3951
|
+
"text": "CanvasRenderingContext2D"
|
|
3952
|
+
}
|
|
3953
|
+
}
|
|
3954
|
+
]
|
|
3955
|
+
}
|
|
3956
|
+
],
|
|
3957
|
+
"superclass": {
|
|
3958
|
+
"name": "SceneLayer",
|
|
3959
|
+
"package": "@hatiolab/things-scene"
|
|
3960
|
+
}
|
|
3961
|
+
}
|
|
3962
|
+
],
|
|
3963
|
+
"exports": [
|
|
3964
|
+
{
|
|
3965
|
+
"kind": "js",
|
|
3966
|
+
"name": "default",
|
|
3967
|
+
"declaration": {
|
|
3968
|
+
"name": "ConfidentialOverlay",
|
|
3969
|
+
"module": "src/modeller/scene-viewer/confidential-overlay.ts"
|
|
3970
|
+
}
|
|
3971
|
+
}
|
|
3972
|
+
]
|
|
3973
|
+
},
|
|
3974
|
+
{
|
|
3975
|
+
"kind": "javascript-module",
|
|
3976
|
+
"path": "src/modeller/scene-viewer/ox-scene-handler.ts",
|
|
3977
|
+
"declarations": [
|
|
3978
|
+
{
|
|
3979
|
+
"kind": "class",
|
|
3980
|
+
"description": "",
|
|
3981
|
+
"name": "OxSceneHandler",
|
|
3982
|
+
"members": [
|
|
3983
|
+
{
|
|
3984
|
+
"kind": "field",
|
|
3985
|
+
"name": "type",
|
|
4612
3986
|
"type": {
|
|
4613
3987
|
"text": "string"
|
|
4614
3988
|
},
|
|
4615
|
-
"
|
|
4616
|
-
"fieldName": "baseUrl"
|
|
3989
|
+
"attribute": "type"
|
|
4617
3990
|
},
|
|
4618
3991
|
{
|
|
4619
|
-
"
|
|
3992
|
+
"kind": "field",
|
|
3993
|
+
"name": "model",
|
|
4620
3994
|
"type": {
|
|
4621
|
-
"text": "
|
|
3995
|
+
"text": "{\n type: Object\n notify: true\n }"
|
|
4622
3996
|
},
|
|
4623
|
-
"
|
|
4624
|
-
}
|
|
3997
|
+
"attribute": "model"
|
|
3998
|
+
}
|
|
3999
|
+
],
|
|
4000
|
+
"attributes": [
|
|
4625
4001
|
{
|
|
4626
|
-
"name": "
|
|
4002
|
+
"name": "type",
|
|
4627
4003
|
"type": {
|
|
4628
4004
|
"text": "string"
|
|
4629
4005
|
},
|
|
4630
|
-
"
|
|
4631
|
-
"fieldName": "name"
|
|
4632
|
-
},
|
|
4633
|
-
{
|
|
4634
|
-
"name": "enableInspector",
|
|
4635
|
-
"type": {
|
|
4636
|
-
"text": "boolean"
|
|
4637
|
-
},
|
|
4638
|
-
"default": "true",
|
|
4639
|
-
"fieldName": "enableInspector"
|
|
4006
|
+
"fieldName": "type"
|
|
4640
4007
|
},
|
|
4641
4008
|
{
|
|
4642
|
-
"name": "
|
|
4009
|
+
"name": "model",
|
|
4643
4010
|
"type": {
|
|
4644
|
-
"text": "
|
|
4011
|
+
"text": "{\n type: Object\n notify: true\n }"
|
|
4645
4012
|
},
|
|
4646
|
-
"
|
|
4647
|
-
"fieldName": "showInspector"
|
|
4013
|
+
"fieldName": "model"
|
|
4648
4014
|
}
|
|
4649
4015
|
],
|
|
4650
4016
|
"superclass": {
|
|
4651
4017
|
"name": "LitElement",
|
|
4652
4018
|
"package": "lit"
|
|
4653
4019
|
},
|
|
4654
|
-
"tagName": "ox-scene-
|
|
4020
|
+
"tagName": "ox-scene-handler",
|
|
4655
4021
|
"customElement": true
|
|
4656
4022
|
}
|
|
4657
4023
|
],
|
|
@@ -4660,799 +4026,926 @@
|
|
|
4660
4026
|
"kind": "js",
|
|
4661
4027
|
"name": "default",
|
|
4662
4028
|
"declaration": {
|
|
4663
|
-
"name": "
|
|
4664
|
-
"module": "src/modeller/scene-viewer/ox-scene-
|
|
4029
|
+
"name": "OxSceneHandler",
|
|
4030
|
+
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
4665
4031
|
}
|
|
4666
4032
|
},
|
|
4667
4033
|
{
|
|
4668
4034
|
"kind": "custom-element-definition",
|
|
4669
|
-
"name": "ox-scene-
|
|
4035
|
+
"name": "ox-scene-handler",
|
|
4670
4036
|
"declaration": {
|
|
4671
|
-
"name": "
|
|
4672
|
-
"module": "src/modeller/scene-viewer/ox-scene-
|
|
4037
|
+
"name": "OxSceneHandler",
|
|
4038
|
+
"module": "src/modeller/scene-viewer/ox-scene-handler.ts"
|
|
4673
4039
|
}
|
|
4674
4040
|
}
|
|
4675
4041
|
]
|
|
4676
4042
|
},
|
|
4677
4043
|
{
|
|
4678
4044
|
"kind": "javascript-module",
|
|
4679
|
-
"path": "src/modeller/
|
|
4045
|
+
"path": "src/modeller/scene-viewer/ox-scene-layer.ts",
|
|
4680
4046
|
"declarations": [
|
|
4681
4047
|
{
|
|
4682
4048
|
"kind": "class",
|
|
4683
|
-
"description": "
|
|
4684
|
-
"name": "
|
|
4049
|
+
"description": "",
|
|
4050
|
+
"name": "OxSceneLayer",
|
|
4685
4051
|
"members": [
|
|
4686
4052
|
{
|
|
4687
4053
|
"kind": "field",
|
|
4688
|
-
"name": "
|
|
4054
|
+
"name": "type",
|
|
4689
4055
|
"type": {
|
|
4690
|
-
"text": "
|
|
4056
|
+
"text": "String | undefined"
|
|
4691
4057
|
},
|
|
4692
|
-
"
|
|
4693
|
-
"attribute": "mapping"
|
|
4058
|
+
"attribute": "type"
|
|
4694
4059
|
},
|
|
4695
4060
|
{
|
|
4696
4061
|
"kind": "field",
|
|
4697
|
-
"name": "
|
|
4062
|
+
"name": "text",
|
|
4698
4063
|
"type": {
|
|
4699
|
-
"text": "
|
|
4064
|
+
"text": "String | undefined"
|
|
4700
4065
|
},
|
|
4701
|
-
"
|
|
4702
|
-
"attribute": "rule"
|
|
4066
|
+
"attribute": "text"
|
|
4703
4067
|
},
|
|
4704
4068
|
{
|
|
4705
|
-
"kind": "
|
|
4706
|
-
"name": "
|
|
4069
|
+
"kind": "method",
|
|
4070
|
+
"name": "getModel"
|
|
4071
|
+
}
|
|
4072
|
+
],
|
|
4073
|
+
"attributes": [
|
|
4074
|
+
{
|
|
4075
|
+
"name": "type",
|
|
4707
4076
|
"type": {
|
|
4708
|
-
"text": "
|
|
4077
|
+
"text": "String | undefined"
|
|
4709
4078
|
},
|
|
4710
|
-
"
|
|
4079
|
+
"fieldName": "type"
|
|
4711
4080
|
},
|
|
4712
4081
|
{
|
|
4713
|
-
"
|
|
4714
|
-
"name": "_valueTypes",
|
|
4082
|
+
"name": "text",
|
|
4715
4083
|
"type": {
|
|
4716
|
-
"text": "
|
|
4084
|
+
"text": "String | undefined"
|
|
4717
4085
|
},
|
|
4718
|
-
"
|
|
4719
|
-
}
|
|
4086
|
+
"fieldName": "text"
|
|
4087
|
+
}
|
|
4088
|
+
],
|
|
4089
|
+
"superclass": {
|
|
4090
|
+
"name": "LitElement",
|
|
4091
|
+
"package": "lit"
|
|
4092
|
+
},
|
|
4093
|
+
"tagName": "ox-scene-layer",
|
|
4094
|
+
"customElement": true
|
|
4095
|
+
}
|
|
4096
|
+
],
|
|
4097
|
+
"exports": [
|
|
4098
|
+
{
|
|
4099
|
+
"kind": "js",
|
|
4100
|
+
"name": "default",
|
|
4101
|
+
"declaration": {
|
|
4102
|
+
"name": "OxSceneLayer",
|
|
4103
|
+
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
4104
|
+
}
|
|
4105
|
+
},
|
|
4106
|
+
{
|
|
4107
|
+
"kind": "custom-element-definition",
|
|
4108
|
+
"name": "ox-scene-layer",
|
|
4109
|
+
"declaration": {
|
|
4110
|
+
"name": "OxSceneLayer",
|
|
4111
|
+
"module": "src/modeller/scene-viewer/ox-scene-layer.ts"
|
|
4112
|
+
}
|
|
4113
|
+
}
|
|
4114
|
+
]
|
|
4115
|
+
},
|
|
4116
|
+
{
|
|
4117
|
+
"kind": "javascript-module",
|
|
4118
|
+
"path": "src/modeller/scene-viewer/ox-scene-property.ts",
|
|
4119
|
+
"declarations": [
|
|
4120
|
+
{
|
|
4121
|
+
"kind": "class",
|
|
4122
|
+
"description": "",
|
|
4123
|
+
"name": "OxSceneProperty",
|
|
4124
|
+
"members": [
|
|
4720
4125
|
{
|
|
4721
4126
|
"kind": "field",
|
|
4722
|
-
"name": "
|
|
4127
|
+
"name": "name",
|
|
4723
4128
|
"type": {
|
|
4724
|
-
"text": "
|
|
4129
|
+
"text": "string"
|
|
4725
4130
|
},
|
|
4726
|
-
"
|
|
4131
|
+
"attribute": "name"
|
|
4727
4132
|
},
|
|
4728
4133
|
{
|
|
4729
4134
|
"kind": "field",
|
|
4730
|
-
"name": "
|
|
4135
|
+
"name": "value",
|
|
4731
4136
|
"type": {
|
|
4732
|
-
"text": "
|
|
4733
|
-
}
|
|
4137
|
+
"text": "string"
|
|
4138
|
+
},
|
|
4139
|
+
"attribute": "value"
|
|
4734
4140
|
},
|
|
4735
4141
|
{
|
|
4736
4142
|
"kind": "field",
|
|
4737
|
-
"name": "
|
|
4738
|
-
"type": {
|
|
4739
|
-
"text": "HTMLInputElement"
|
|
4740
|
-
}
|
|
4741
|
-
},
|
|
4742
|
-
{
|
|
4743
|
-
"kind": "method",
|
|
4744
|
-
"name": "_valuetype",
|
|
4745
|
-
"parameters": [
|
|
4746
|
-
{
|
|
4747
|
-
"name": "property",
|
|
4748
|
-
"type": {
|
|
4749
|
-
"text": "string"
|
|
4750
|
-
}
|
|
4751
|
-
}
|
|
4752
|
-
]
|
|
4753
|
-
},
|
|
4754
|
-
{
|
|
4755
|
-
"kind": "field",
|
|
4756
|
-
"name": "_keep_saved_rule_params",
|
|
4143
|
+
"name": "type",
|
|
4757
4144
|
"type": {
|
|
4758
|
-
"text": "
|
|
4145
|
+
"text": "string"
|
|
4759
4146
|
},
|
|
4760
|
-
"
|
|
4761
|
-
"default": "false"
|
|
4762
|
-
},
|
|
4763
|
-
{
|
|
4764
|
-
"kind": "method",
|
|
4765
|
-
"name": "_onChangedMapping"
|
|
4766
|
-
},
|
|
4767
|
-
{
|
|
4768
|
-
"kind": "method",
|
|
4769
|
-
"name": "_onChangeRule",
|
|
4770
|
-
"parameters": [
|
|
4771
|
-
{
|
|
4772
|
-
"name": "e",
|
|
4773
|
-
"type": {
|
|
4774
|
-
"text": "Event"
|
|
4775
|
-
}
|
|
4776
|
-
}
|
|
4777
|
-
]
|
|
4778
|
-
},
|
|
4779
|
-
{
|
|
4780
|
-
"kind": "method",
|
|
4781
|
-
"name": "_onChange",
|
|
4782
|
-
"parameters": [
|
|
4783
|
-
{
|
|
4784
|
-
"name": "e",
|
|
4785
|
-
"type": {
|
|
4786
|
-
"text": "Event"
|
|
4787
|
-
}
|
|
4788
|
-
}
|
|
4789
|
-
]
|
|
4790
|
-
}
|
|
4791
|
-
],
|
|
4792
|
-
"events": [
|
|
4793
|
-
{
|
|
4794
|
-
"name": "value-change",
|
|
4795
|
-
"type": {
|
|
4796
|
-
"text": "CustomEvent"
|
|
4797
|
-
}
|
|
4147
|
+
"attribute": "type"
|
|
4798
4148
|
}
|
|
4799
4149
|
],
|
|
4800
4150
|
"attributes": [
|
|
4801
4151
|
{
|
|
4802
|
-
"name": "
|
|
4803
|
-
"type": {
|
|
4804
|
-
"text": "Mapping"
|
|
4805
|
-
},
|
|
4806
|
-
"default": "{\n rule: 'value'\n }",
|
|
4807
|
-
"fieldName": "mapping"
|
|
4808
|
-
},
|
|
4809
|
-
{
|
|
4810
|
-
"name": "rule",
|
|
4152
|
+
"name": "name",
|
|
4811
4153
|
"type": {
|
|
4812
|
-
"text": "
|
|
4154
|
+
"text": "string"
|
|
4813
4155
|
},
|
|
4814
|
-
"
|
|
4815
|
-
"fieldName": "rule"
|
|
4156
|
+
"fieldName": "name"
|
|
4816
4157
|
},
|
|
4817
4158
|
{
|
|
4818
|
-
"name": "
|
|
4159
|
+
"name": "value",
|
|
4819
4160
|
"type": {
|
|
4820
|
-
"text": "
|
|
4161
|
+
"text": "string"
|
|
4821
4162
|
},
|
|
4822
|
-
"
|
|
4823
|
-
"fieldName": "properties"
|
|
4163
|
+
"fieldName": "value"
|
|
4824
4164
|
},
|
|
4825
4165
|
{
|
|
4826
|
-
"name": "
|
|
4166
|
+
"name": "type",
|
|
4827
4167
|
"type": {
|
|
4828
|
-
"text": "
|
|
4168
|
+
"text": "string"
|
|
4829
4169
|
},
|
|
4830
|
-
"fieldName": "
|
|
4170
|
+
"fieldName": "type"
|
|
4831
4171
|
}
|
|
4832
4172
|
],
|
|
4833
4173
|
"superclass": {
|
|
4834
4174
|
"name": "LitElement",
|
|
4835
4175
|
"package": "lit"
|
|
4836
4176
|
},
|
|
4177
|
+
"tagName": "ox-scene-property",
|
|
4837
4178
|
"customElement": true
|
|
4838
4179
|
}
|
|
4839
4180
|
],
|
|
4840
4181
|
"exports": [
|
|
4841
4182
|
{
|
|
4842
4183
|
"kind": "js",
|
|
4843
|
-
"name": "
|
|
4844
|
-
"declaration": {
|
|
4845
|
-
"name": "DataBindingMapper",
|
|
4846
|
-
"module": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts"
|
|
4847
|
-
}
|
|
4848
|
-
}
|
|
4849
|
-
]
|
|
4850
|
-
},
|
|
4851
|
-
{
|
|
4852
|
-
"kind": "javascript-module",
|
|
4853
|
-
"path": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts",
|
|
4854
|
-
"declarations": [
|
|
4855
|
-
{
|
|
4856
|
-
"kind": "class",
|
|
4857
|
-
"description": "",
|
|
4858
|
-
"name": "DataBindingValueMap",
|
|
4859
|
-
"members": [
|
|
4860
|
-
{
|
|
4861
|
-
"kind": "method",
|
|
4862
|
-
"name": "valueInputTemplate",
|
|
4863
|
-
"parameters": [
|
|
4864
|
-
{
|
|
4865
|
-
"name": "value",
|
|
4866
|
-
"optional": true,
|
|
4867
|
-
"type": {
|
|
4868
|
-
"text": "any"
|
|
4869
|
-
}
|
|
4870
|
-
}
|
|
4871
|
-
]
|
|
4872
|
-
}
|
|
4873
|
-
],
|
|
4874
|
-
"superclass": {
|
|
4875
|
-
"name": "OxInputValueMap",
|
|
4876
|
-
"package": "@operato/input"
|
|
4877
|
-
},
|
|
4878
|
-
"tagName": "data-binding-value-map",
|
|
4879
|
-
"customElement": true
|
|
4880
|
-
}
|
|
4881
|
-
],
|
|
4882
|
-
"exports": [
|
|
4883
|
-
{
|
|
4884
|
-
"kind": "js",
|
|
4885
|
-
"name": "DataBindingValueMap",
|
|
4886
|
-
"declaration": {
|
|
4887
|
-
"name": "DataBindingValueMap",
|
|
4888
|
-
"module": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts"
|
|
4889
|
-
}
|
|
4890
|
-
},
|
|
4891
|
-
{
|
|
4892
|
-
"kind": "custom-element-definition",
|
|
4893
|
-
"name": "data-binding-value-map",
|
|
4894
|
-
"declaration": {
|
|
4895
|
-
"name": "DataBindingValueMap",
|
|
4896
|
-
"module": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts"
|
|
4897
|
-
}
|
|
4898
|
-
}
|
|
4899
|
-
]
|
|
4900
|
-
},
|
|
4901
|
-
{
|
|
4902
|
-
"kind": "javascript-module",
|
|
4903
|
-
"path": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts",
|
|
4904
|
-
"declarations": [
|
|
4905
|
-
{
|
|
4906
|
-
"kind": "class",
|
|
4907
|
-
"description": "",
|
|
4908
|
-
"name": "DataBindingValueRange",
|
|
4909
|
-
"members": [
|
|
4910
|
-
{
|
|
4911
|
-
"kind": "method",
|
|
4912
|
-
"name": "valueInputTemplate",
|
|
4913
|
-
"parameters": [
|
|
4914
|
-
{
|
|
4915
|
-
"name": "value",
|
|
4916
|
-
"optional": true,
|
|
4917
|
-
"type": {
|
|
4918
|
-
"text": "any"
|
|
4919
|
-
}
|
|
4920
|
-
}
|
|
4921
|
-
]
|
|
4922
|
-
}
|
|
4923
|
-
],
|
|
4924
|
-
"superclass": {
|
|
4925
|
-
"name": "OxInputValueRange",
|
|
4926
|
-
"package": "@operato/input"
|
|
4927
|
-
},
|
|
4928
|
-
"tagName": "data-binding-value-range",
|
|
4929
|
-
"customElement": true
|
|
4930
|
-
}
|
|
4931
|
-
],
|
|
4932
|
-
"exports": [
|
|
4933
|
-
{
|
|
4934
|
-
"kind": "js",
|
|
4935
|
-
"name": "DataBindingValueRange",
|
|
4184
|
+
"name": "default",
|
|
4936
4185
|
"declaration": {
|
|
4937
|
-
"name": "
|
|
4938
|
-
"module": "src/modeller/
|
|
4186
|
+
"name": "OxSceneProperty",
|
|
4187
|
+
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
4939
4188
|
}
|
|
4940
4189
|
},
|
|
4941
4190
|
{
|
|
4942
4191
|
"kind": "custom-element-definition",
|
|
4943
|
-
"name": "
|
|
4192
|
+
"name": "ox-scene-property",
|
|
4944
4193
|
"declaration": {
|
|
4945
|
-
"name": "
|
|
4946
|
-
"module": "src/modeller/
|
|
4194
|
+
"name": "OxSceneProperty",
|
|
4195
|
+
"module": "src/modeller/scene-viewer/ox-scene-property.ts"
|
|
4947
4196
|
}
|
|
4948
4197
|
}
|
|
4949
4198
|
]
|
|
4950
4199
|
},
|
|
4951
4200
|
{
|
|
4952
4201
|
"kind": "javascript-module",
|
|
4953
|
-
"path": "src/modeller/
|
|
4202
|
+
"path": "src/modeller/scene-viewer/ox-scene-viewer.ts",
|
|
4954
4203
|
"declarations": [
|
|
4955
4204
|
{
|
|
4956
4205
|
"kind": "class",
|
|
4957
4206
|
"description": "",
|
|
4958
|
-
"name": "
|
|
4207
|
+
"name": "OxSceneViewer",
|
|
4959
4208
|
"members": [
|
|
4960
4209
|
{
|
|
4961
4210
|
"kind": "field",
|
|
4962
|
-
"name": "
|
|
4211
|
+
"name": "scene",
|
|
4963
4212
|
"type": {
|
|
4964
|
-
"text": "
|
|
4213
|
+
"text": "Scene | null"
|
|
4965
4214
|
},
|
|
4966
|
-
"
|
|
4215
|
+
"default": "null",
|
|
4216
|
+
"attribute": "scene"
|
|
4967
4217
|
},
|
|
4968
4218
|
{
|
|
4969
4219
|
"kind": "field",
|
|
4970
|
-
"name": "
|
|
4220
|
+
"name": "model",
|
|
4971
4221
|
"type": {
|
|
4972
|
-
"text": "
|
|
4222
|
+
"text": "Model | undefined"
|
|
4973
4223
|
},
|
|
4974
|
-
"attribute": "
|
|
4224
|
+
"attribute": "model"
|
|
4975
4225
|
},
|
|
4976
4226
|
{
|
|
4977
4227
|
"kind": "field",
|
|
4978
|
-
"name": "
|
|
4228
|
+
"name": "mode",
|
|
4979
4229
|
"type": {
|
|
4980
|
-
"text": "
|
|
4230
|
+
"text": "SCENE_MODE"
|
|
4981
4231
|
},
|
|
4982
|
-
"
|
|
4232
|
+
"attribute": "mode"
|
|
4983
4233
|
},
|
|
4984
4234
|
{
|
|
4985
4235
|
"kind": "field",
|
|
4986
|
-
"name": "
|
|
4236
|
+
"name": "screenSize",
|
|
4987
4237
|
"type": {
|
|
4988
|
-
"text": "
|
|
4989
|
-
}
|
|
4238
|
+
"text": "number"
|
|
4239
|
+
},
|
|
4240
|
+
"default": "13.3",
|
|
4241
|
+
"attribute": "screenSize"
|
|
4990
4242
|
},
|
|
4991
4243
|
{
|
|
4992
4244
|
"kind": "field",
|
|
4993
|
-
"name": "
|
|
4245
|
+
"name": "variables",
|
|
4994
4246
|
"type": {
|
|
4995
|
-
"text": "
|
|
4247
|
+
"text": "Properties"
|
|
4996
4248
|
},
|
|
4997
|
-
"default": "
|
|
4249
|
+
"default": "{}",
|
|
4250
|
+
"attribute": "variables"
|
|
4998
4251
|
},
|
|
4999
4252
|
{
|
|
5000
4253
|
"kind": "field",
|
|
5001
|
-
"name": "
|
|
4254
|
+
"name": "data",
|
|
5002
4255
|
"type": {
|
|
5003
|
-
"text": "
|
|
5004
|
-
}
|
|
4256
|
+
"text": "any"
|
|
4257
|
+
},
|
|
4258
|
+
"attribute": "data"
|
|
5005
4259
|
},
|
|
5006
4260
|
{
|
|
5007
4261
|
"kind": "field",
|
|
5008
|
-
"name": "
|
|
4262
|
+
"name": "themes",
|
|
5009
4263
|
"type": {
|
|
5010
|
-
"text": "
|
|
5011
|
-
}
|
|
4264
|
+
"text": "any | undefined"
|
|
4265
|
+
},
|
|
4266
|
+
"attribute": "themes"
|
|
5012
4267
|
},
|
|
5013
4268
|
{
|
|
5014
4269
|
"kind": "field",
|
|
5015
|
-
"name": "
|
|
4270
|
+
"name": "fit",
|
|
5016
4271
|
"type": {
|
|
5017
|
-
"text": "
|
|
5018
|
-
}
|
|
4272
|
+
"text": "FITMODE"
|
|
4273
|
+
},
|
|
4274
|
+
"default": "'none'",
|
|
4275
|
+
"attribute": "fit"
|
|
5019
4276
|
},
|
|
5020
4277
|
{
|
|
5021
4278
|
"kind": "field",
|
|
5022
|
-
"name": "
|
|
5023
|
-
"
|
|
4279
|
+
"name": "selected",
|
|
4280
|
+
"type": {
|
|
4281
|
+
"text": "Component[]"
|
|
4282
|
+
},
|
|
4283
|
+
"default": "[]",
|
|
4284
|
+
"attribute": "selected"
|
|
5024
4285
|
},
|
|
5025
4286
|
{
|
|
5026
4287
|
"kind": "field",
|
|
5027
|
-
"name": "
|
|
5028
|
-
"
|
|
5029
|
-
|
|
4288
|
+
"name": "disposeWhenDetached",
|
|
4289
|
+
"type": {
|
|
4290
|
+
"text": "boolean"
|
|
4291
|
+
},
|
|
4292
|
+
"default": "false",
|
|
4293
|
+
"attribute": "disposeWhenDetached"
|
|
4294
|
+
},
|
|
4295
|
+
{
|
|
4296
|
+
"kind": "field",
|
|
4297
|
+
"name": "baseUrl",
|
|
4298
|
+
"type": {
|
|
4299
|
+
"text": "string"
|
|
4300
|
+
},
|
|
4301
|
+
"default": "''",
|
|
4302
|
+
"attribute": "baseUrl"
|
|
4303
|
+
},
|
|
4304
|
+
{
|
|
4305
|
+
"kind": "field",
|
|
4306
|
+
"name": "provider",
|
|
4307
|
+
"type": {
|
|
4308
|
+
"text": "any"
|
|
4309
|
+
},
|
|
4310
|
+
"attribute": "provider"
|
|
4311
|
+
},
|
|
4312
|
+
{
|
|
4313
|
+
"kind": "field",
|
|
4314
|
+
"name": "name",
|
|
4315
|
+
"type": {
|
|
4316
|
+
"text": "string"
|
|
4317
|
+
},
|
|
4318
|
+
"default": "'noname'",
|
|
4319
|
+
"attribute": "name"
|
|
4320
|
+
},
|
|
4321
|
+
{
|
|
4322
|
+
"kind": "field",
|
|
4323
|
+
"name": "enableInspector",
|
|
4324
|
+
"type": {
|
|
4325
|
+
"text": "boolean"
|
|
4326
|
+
},
|
|
4327
|
+
"default": "true",
|
|
4328
|
+
"attribute": "enableInspector"
|
|
4329
|
+
},
|
|
4330
|
+
{
|
|
4331
|
+
"kind": "field",
|
|
4332
|
+
"name": "showInspector",
|
|
4333
|
+
"type": {
|
|
4334
|
+
"text": "boolean"
|
|
4335
|
+
},
|
|
4336
|
+
"default": "false",
|
|
4337
|
+
"attribute": "showInspector"
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
"kind": "field",
|
|
4341
|
+
"name": "lastOffsetWidth",
|
|
4342
|
+
"type": {
|
|
4343
|
+
"text": "number | undefined"
|
|
4344
|
+
},
|
|
4345
|
+
"privacy": "private"
|
|
5030
4346
|
},
|
|
5031
4347
|
{
|
|
5032
4348
|
"kind": "method",
|
|
5033
|
-
"name": "
|
|
4349
|
+
"name": "_setScene",
|
|
5034
4350
|
"parameters": [
|
|
5035
4351
|
{
|
|
5036
|
-
"name": "
|
|
4352
|
+
"name": "scene",
|
|
5037
4353
|
"type": {
|
|
5038
|
-
"text": "
|
|
4354
|
+
"text": "Scene | null"
|
|
5039
4355
|
}
|
|
5040
4356
|
}
|
|
5041
4357
|
]
|
|
5042
4358
|
},
|
|
5043
4359
|
{
|
|
5044
4360
|
"kind": "method",
|
|
5045
|
-
"name": "
|
|
4361
|
+
"name": "_setMode",
|
|
4362
|
+
"parameters": [
|
|
4363
|
+
{
|
|
4364
|
+
"name": "mode",
|
|
4365
|
+
"type": {
|
|
4366
|
+
"text": "SCENE_MODE"
|
|
4367
|
+
}
|
|
4368
|
+
}
|
|
4369
|
+
]
|
|
5046
4370
|
},
|
|
5047
4371
|
{
|
|
5048
4372
|
"kind": "method",
|
|
5049
|
-
"name": "
|
|
4373
|
+
"name": "_setVariables",
|
|
4374
|
+
"parameters": [
|
|
4375
|
+
{
|
|
4376
|
+
"name": "variables",
|
|
4377
|
+
"type": {
|
|
4378
|
+
"text": "Properties"
|
|
4379
|
+
}
|
|
4380
|
+
}
|
|
4381
|
+
]
|
|
5050
4382
|
},
|
|
5051
4383
|
{
|
|
5052
4384
|
"kind": "method",
|
|
5053
|
-
"name": "
|
|
4385
|
+
"name": "_setSelected",
|
|
4386
|
+
"parameters": [
|
|
4387
|
+
{
|
|
4388
|
+
"name": "selected",
|
|
4389
|
+
"type": {
|
|
4390
|
+
"text": "Component[]"
|
|
4391
|
+
}
|
|
4392
|
+
}
|
|
4393
|
+
]
|
|
5054
4394
|
},
|
|
5055
4395
|
{
|
|
5056
4396
|
"kind": "method",
|
|
5057
|
-
"name": "
|
|
4397
|
+
"name": "_disposeScene"
|
|
5058
4398
|
},
|
|
5059
4399
|
{
|
|
5060
4400
|
"kind": "method",
|
|
5061
|
-
"name": "
|
|
4401
|
+
"name": "resize",
|
|
5062
4402
|
"parameters": [
|
|
5063
4403
|
{
|
|
5064
|
-
"name": "
|
|
4404
|
+
"name": "force",
|
|
5065
4405
|
"type": {
|
|
5066
|
-
"text": "
|
|
4406
|
+
"text": "boolean"
|
|
5067
4407
|
}
|
|
5068
4408
|
}
|
|
5069
|
-
]
|
|
5070
|
-
"inheritedFrom": {
|
|
5071
|
-
"name": "AbstractProperty",
|
|
5072
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5073
|
-
}
|
|
5074
|
-
},
|
|
5075
|
-
{
|
|
5076
|
-
"kind": "field",
|
|
5077
|
-
"name": "tabContainer",
|
|
5078
|
-
"readonly": true
|
|
4409
|
+
]
|
|
5079
4410
|
},
|
|
5080
4411
|
{
|
|
5081
4412
|
"kind": "method",
|
|
5082
|
-
"name": "
|
|
4413
|
+
"name": "_onModelChanged",
|
|
5083
4414
|
"parameters": [
|
|
5084
4415
|
{
|
|
5085
|
-
"name": "
|
|
4416
|
+
"name": "model",
|
|
4417
|
+
"optional": true,
|
|
5086
4418
|
"type": {
|
|
5087
|
-
"text": "
|
|
4419
|
+
"text": "Model"
|
|
5088
4420
|
}
|
|
5089
4421
|
}
|
|
5090
4422
|
]
|
|
5091
4423
|
},
|
|
5092
4424
|
{
|
|
5093
4425
|
"kind": "method",
|
|
5094
|
-
"name": "
|
|
4426
|
+
"name": "_onDisplayChanged",
|
|
4427
|
+
"parameters": [
|
|
4428
|
+
{
|
|
4429
|
+
"name": "screenSize",
|
|
4430
|
+
"type": {
|
|
4431
|
+
"text": "string | number"
|
|
4432
|
+
}
|
|
4433
|
+
}
|
|
4434
|
+
]
|
|
5095
4435
|
},
|
|
5096
4436
|
{
|
|
5097
4437
|
"kind": "method",
|
|
5098
|
-
"name": "
|
|
4438
|
+
"name": "_onModeChanged",
|
|
4439
|
+
"parameters": [
|
|
4440
|
+
{
|
|
4441
|
+
"name": "mode",
|
|
4442
|
+
"type": {
|
|
4443
|
+
"text": "SCENE_MODE"
|
|
4444
|
+
}
|
|
4445
|
+
}
|
|
4446
|
+
]
|
|
5099
4447
|
},
|
|
5100
4448
|
{
|
|
5101
4449
|
"kind": "method",
|
|
5102
|
-
"name": "
|
|
4450
|
+
"name": "_onDataChanged",
|
|
4451
|
+
"parameters": [
|
|
4452
|
+
{
|
|
4453
|
+
"name": "data",
|
|
4454
|
+
"type": {
|
|
4455
|
+
"text": "any"
|
|
4456
|
+
}
|
|
4457
|
+
}
|
|
4458
|
+
]
|
|
5103
4459
|
},
|
|
5104
4460
|
{
|
|
5105
4461
|
"kind": "method",
|
|
5106
|
-
"name": "
|
|
4462
|
+
"name": "_onSelectedChanged",
|
|
5107
4463
|
"parameters": [
|
|
5108
4464
|
{
|
|
5109
|
-
"name": "
|
|
4465
|
+
"name": "after",
|
|
5110
4466
|
"type": {
|
|
5111
|
-
"text": "
|
|
4467
|
+
"text": "Component[]"
|
|
5112
4468
|
}
|
|
5113
4469
|
}
|
|
5114
|
-
]
|
|
5115
|
-
"inheritedFrom": {
|
|
5116
|
-
"name": "AbstractProperty",
|
|
5117
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5118
|
-
}
|
|
4470
|
+
]
|
|
5119
4471
|
},
|
|
5120
4472
|
{
|
|
5121
4473
|
"kind": "method",
|
|
5122
|
-
"name": "
|
|
4474
|
+
"name": "_onSceneModeChanged",
|
|
5123
4475
|
"parameters": [
|
|
5124
4476
|
{
|
|
5125
|
-
"name": "
|
|
4477
|
+
"name": "after",
|
|
5126
4478
|
"type": {
|
|
5127
|
-
"text": "
|
|
4479
|
+
"text": "SCENE_MODE"
|
|
5128
4480
|
}
|
|
5129
|
-
}
|
|
4481
|
+
}
|
|
4482
|
+
]
|
|
4483
|
+
},
|
|
4484
|
+
{
|
|
4485
|
+
"kind": "method",
|
|
4486
|
+
"name": "_onBaseUrlChanged",
|
|
4487
|
+
"parameters": [
|
|
5130
4488
|
{
|
|
5131
|
-
"name": "
|
|
4489
|
+
"name": "after",
|
|
5132
4490
|
"type": {
|
|
5133
|
-
"text": "
|
|
4491
|
+
"text": "string"
|
|
5134
4492
|
}
|
|
5135
4493
|
}
|
|
5136
|
-
]
|
|
5137
|
-
"inheritedFrom": {
|
|
5138
|
-
"name": "AbstractProperty",
|
|
5139
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5140
|
-
}
|
|
4494
|
+
]
|
|
5141
4495
|
}
|
|
5142
4496
|
],
|
|
5143
4497
|
"events": [
|
|
5144
4498
|
{
|
|
5145
|
-
"name": "
|
|
4499
|
+
"name": "scene-changed",
|
|
4500
|
+
"type": {
|
|
4501
|
+
"text": "CustomEvent"
|
|
4502
|
+
}
|
|
4503
|
+
},
|
|
4504
|
+
{
|
|
4505
|
+
"name": "mode-changed",
|
|
4506
|
+
"type": {
|
|
4507
|
+
"text": "CustomEvent"
|
|
4508
|
+
}
|
|
4509
|
+
},
|
|
4510
|
+
{
|
|
4511
|
+
"name": "variables-changed",
|
|
4512
|
+
"type": {
|
|
4513
|
+
"text": "CustomEvent"
|
|
4514
|
+
}
|
|
4515
|
+
},
|
|
4516
|
+
{
|
|
4517
|
+
"name": "selected-changed",
|
|
5146
4518
|
"type": {
|
|
5147
4519
|
"text": "CustomEvent"
|
|
5148
|
-
},
|
|
5149
|
-
"inheritedFrom": {
|
|
5150
|
-
"name": "AbstractProperty",
|
|
5151
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5152
4520
|
}
|
|
5153
4521
|
}
|
|
5154
4522
|
],
|
|
5155
4523
|
"attributes": [
|
|
5156
4524
|
{
|
|
5157
|
-
"name": "
|
|
4525
|
+
"name": "scene",
|
|
5158
4526
|
"type": {
|
|
5159
|
-
"text": "
|
|
4527
|
+
"text": "Scene | null"
|
|
5160
4528
|
},
|
|
5161
|
-
"
|
|
4529
|
+
"default": "null",
|
|
4530
|
+
"fieldName": "scene"
|
|
5162
4531
|
},
|
|
5163
4532
|
{
|
|
5164
|
-
"name": "
|
|
4533
|
+
"name": "model",
|
|
5165
4534
|
"type": {
|
|
5166
|
-
"text": "
|
|
4535
|
+
"text": "Model | undefined"
|
|
5167
4536
|
},
|
|
5168
|
-
"fieldName": "
|
|
5169
|
-
}
|
|
5170
|
-
],
|
|
5171
|
-
"mixins": [
|
|
4537
|
+
"fieldName": "model"
|
|
4538
|
+
},
|
|
5172
4539
|
{
|
|
5173
|
-
"name": "
|
|
5174
|
-
"
|
|
5175
|
-
|
|
5176
|
-
|
|
5177
|
-
|
|
5178
|
-
|
|
5179
|
-
|
|
5180
|
-
|
|
5181
|
-
|
|
5182
|
-
|
|
5183
|
-
|
|
5184
|
-
|
|
5185
|
-
|
|
5186
|
-
|
|
5187
|
-
|
|
5188
|
-
|
|
5189
|
-
|
|
5190
|
-
|
|
5191
|
-
|
|
5192
|
-
|
|
4540
|
+
"name": "mode",
|
|
4541
|
+
"type": {
|
|
4542
|
+
"text": "SCENE_MODE"
|
|
4543
|
+
},
|
|
4544
|
+
"fieldName": "mode"
|
|
4545
|
+
},
|
|
4546
|
+
{
|
|
4547
|
+
"name": "screenSize",
|
|
4548
|
+
"type": {
|
|
4549
|
+
"text": "number"
|
|
4550
|
+
},
|
|
4551
|
+
"default": "13.3",
|
|
4552
|
+
"fieldName": "screenSize"
|
|
4553
|
+
},
|
|
4554
|
+
{
|
|
4555
|
+
"name": "variables",
|
|
4556
|
+
"type": {
|
|
4557
|
+
"text": "Properties"
|
|
4558
|
+
},
|
|
4559
|
+
"default": "{}",
|
|
4560
|
+
"fieldName": "variables"
|
|
4561
|
+
},
|
|
4562
|
+
{
|
|
4563
|
+
"name": "data",
|
|
4564
|
+
"type": {
|
|
4565
|
+
"text": "any"
|
|
4566
|
+
},
|
|
4567
|
+
"fieldName": "data"
|
|
4568
|
+
},
|
|
4569
|
+
{
|
|
4570
|
+
"name": "themes",
|
|
4571
|
+
"type": {
|
|
4572
|
+
"text": "any | undefined"
|
|
4573
|
+
},
|
|
4574
|
+
"fieldName": "themes"
|
|
4575
|
+
},
|
|
4576
|
+
{
|
|
4577
|
+
"name": "fit",
|
|
4578
|
+
"type": {
|
|
4579
|
+
"text": "FITMODE"
|
|
4580
|
+
},
|
|
4581
|
+
"default": "'none'",
|
|
4582
|
+
"fieldName": "fit"
|
|
4583
|
+
},
|
|
4584
|
+
{
|
|
4585
|
+
"name": "selected",
|
|
4586
|
+
"type": {
|
|
4587
|
+
"text": "Component[]"
|
|
4588
|
+
},
|
|
4589
|
+
"default": "[]",
|
|
4590
|
+
"fieldName": "selected"
|
|
4591
|
+
},
|
|
4592
|
+
{
|
|
4593
|
+
"name": "disposeWhenDetached",
|
|
4594
|
+
"type": {
|
|
4595
|
+
"text": "boolean"
|
|
4596
|
+
},
|
|
4597
|
+
"default": "false",
|
|
4598
|
+
"fieldName": "disposeWhenDetached"
|
|
4599
|
+
},
|
|
4600
|
+
{
|
|
4601
|
+
"name": "baseUrl",
|
|
4602
|
+
"type": {
|
|
4603
|
+
"text": "string"
|
|
4604
|
+
},
|
|
4605
|
+
"default": "''",
|
|
4606
|
+
"fieldName": "baseUrl"
|
|
4607
|
+
},
|
|
4608
|
+
{
|
|
4609
|
+
"name": "provider",
|
|
4610
|
+
"type": {
|
|
4611
|
+
"text": "any"
|
|
4612
|
+
},
|
|
4613
|
+
"fieldName": "provider"
|
|
4614
|
+
},
|
|
4615
|
+
{
|
|
4616
|
+
"name": "name",
|
|
4617
|
+
"type": {
|
|
4618
|
+
"text": "string"
|
|
4619
|
+
},
|
|
4620
|
+
"default": "'noname'",
|
|
4621
|
+
"fieldName": "name"
|
|
4622
|
+
},
|
|
4623
|
+
{
|
|
4624
|
+
"name": "enableInspector",
|
|
4625
|
+
"type": {
|
|
4626
|
+
"text": "boolean"
|
|
4627
|
+
},
|
|
4628
|
+
"default": "true",
|
|
4629
|
+
"fieldName": "enableInspector"
|
|
4630
|
+
},
|
|
4631
|
+
{
|
|
4632
|
+
"name": "showInspector",
|
|
4633
|
+
"type": {
|
|
4634
|
+
"text": "boolean"
|
|
4635
|
+
},
|
|
4636
|
+
"default": "false",
|
|
4637
|
+
"fieldName": "showInspector"
|
|
4638
|
+
}
|
|
4639
|
+
],
|
|
4640
|
+
"superclass": {
|
|
4641
|
+
"name": "LitElement",
|
|
4642
|
+
"package": "lit"
|
|
4643
|
+
},
|
|
4644
|
+
"tagName": "ox-scene-viewer",
|
|
4645
|
+
"customElement": true
|
|
4646
|
+
}
|
|
4647
|
+
],
|
|
4648
|
+
"exports": [
|
|
4649
|
+
{
|
|
4650
|
+
"kind": "js",
|
|
4651
|
+
"name": "default",
|
|
4652
|
+
"declaration": {
|
|
4653
|
+
"name": "OxSceneViewer",
|
|
4654
|
+
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
4655
|
+
}
|
|
4656
|
+
},
|
|
4657
|
+
{
|
|
4658
|
+
"kind": "custom-element-definition",
|
|
4659
|
+
"name": "ox-scene-viewer",
|
|
4660
|
+
"declaration": {
|
|
4661
|
+
"name": "OxSceneViewer",
|
|
4662
|
+
"module": "src/modeller/scene-viewer/ox-scene-viewer.ts"
|
|
4663
|
+
}
|
|
4664
|
+
}
|
|
4665
|
+
]
|
|
5193
4666
|
},
|
|
5194
4667
|
{
|
|
5195
4668
|
"kind": "javascript-module",
|
|
5196
|
-
"path": "src/modeller/property-sidebar/
|
|
4669
|
+
"path": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts",
|
|
5197
4670
|
"declarations": [
|
|
5198
4671
|
{
|
|
5199
4672
|
"kind": "class",
|
|
5200
|
-
"description": "",
|
|
5201
|
-
"name": "
|
|
4673
|
+
"description": "element for mapping data value editing\n\nExample:\n\n<data-binding-mapper mapping=${mapping}>\n</data-binding-mapper>",
|
|
4674
|
+
"name": "DataBindingMapper",
|
|
5202
4675
|
"members": [
|
|
5203
4676
|
{
|
|
5204
4677
|
"kind": "field",
|
|
5205
|
-
"name": "
|
|
4678
|
+
"name": "mapping",
|
|
5206
4679
|
"type": {
|
|
5207
|
-
"text": "
|
|
4680
|
+
"text": "Mapping"
|
|
5208
4681
|
},
|
|
5209
|
-
"
|
|
4682
|
+
"default": "{\n rule: 'value'\n }",
|
|
4683
|
+
"attribute": "mapping"
|
|
5210
4684
|
},
|
|
5211
4685
|
{
|
|
5212
4686
|
"kind": "field",
|
|
5213
|
-
"name": "
|
|
4687
|
+
"name": "rule",
|
|
5214
4688
|
"type": {
|
|
5215
|
-
"text": "
|
|
4689
|
+
"text": "Rule"
|
|
5216
4690
|
},
|
|
5217
|
-
"
|
|
5218
|
-
"
|
|
4691
|
+
"default": "{}",
|
|
4692
|
+
"attribute": "rule"
|
|
5219
4693
|
},
|
|
5220
4694
|
{
|
|
5221
4695
|
"kind": "field",
|
|
5222
|
-
"name": "
|
|
4696
|
+
"name": "scene",
|
|
5223
4697
|
"type": {
|
|
5224
|
-
"text": "
|
|
4698
|
+
"text": "Scene | undefined"
|
|
5225
4699
|
},
|
|
5226
|
-
"
|
|
4700
|
+
"attribute": "scene"
|
|
5227
4701
|
},
|
|
5228
4702
|
{
|
|
5229
4703
|
"kind": "field",
|
|
5230
|
-
"name": "
|
|
4704
|
+
"name": "_valueTypes",
|
|
5231
4705
|
"type": {
|
|
5232
|
-
"text": "
|
|
4706
|
+
"text": "any"
|
|
5233
4707
|
},
|
|
5234
|
-
"
|
|
5235
|
-
"default": "false"
|
|
4708
|
+
"default": "{\n play: 'boolean',\n hidden: 'boolean',\n started: 'boolean',\n\n rotation: 'number',\n value: 'number',\n\n fillStyle: 'color',\n strokeStyle: 'color',\n fontColor: 'color',\n\n data: 'object',\n source: 'attachment',\n location: 'object',\n dimension: 'object',\n\n text: 'string',\n ref: 'string'\n }"
|
|
5236
4709
|
},
|
|
5237
4710
|
{
|
|
5238
4711
|
"kind": "field",
|
|
5239
|
-
"name": "
|
|
4712
|
+
"name": "_componentIds",
|
|
5240
4713
|
"type": {
|
|
5241
|
-
"text": "
|
|
4714
|
+
"text": "{ value: string; description: string }[]"
|
|
5242
4715
|
},
|
|
5243
|
-
"
|
|
5244
|
-
"default": "-1"
|
|
5245
|
-
},
|
|
5246
|
-
{
|
|
5247
|
-
"kind": "method",
|
|
5248
|
-
"name": "disconnectScene",
|
|
5249
|
-
"parameters": [
|
|
5250
|
-
{
|
|
5251
|
-
"name": "scene",
|
|
5252
|
-
"optional": true,
|
|
5253
|
-
"type": {
|
|
5254
|
-
"text": "Scene"
|
|
5255
|
-
}
|
|
5256
|
-
}
|
|
5257
|
-
]
|
|
4716
|
+
"default": "[]"
|
|
5258
4717
|
},
|
|
5259
4718
|
{
|
|
5260
|
-
"kind": "
|
|
5261
|
-
"name": "
|
|
4719
|
+
"kind": "field",
|
|
4720
|
+
"name": "editor",
|
|
4721
|
+
"type": {
|
|
4722
|
+
"text": "HTMLInputElement"
|
|
4723
|
+
}
|
|
5262
4724
|
},
|
|
5263
4725
|
{
|
|
5264
|
-
"kind": "
|
|
5265
|
-
"name": "
|
|
5266
|
-
"
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
"type": {
|
|
5270
|
-
"text": "MouseEvent"
|
|
5271
|
-
}
|
|
5272
|
-
}
|
|
5273
|
-
]
|
|
4726
|
+
"kind": "field",
|
|
4727
|
+
"name": "target",
|
|
4728
|
+
"type": {
|
|
4729
|
+
"text": "HTMLInputElement"
|
|
4730
|
+
}
|
|
5274
4731
|
},
|
|
5275
4732
|
{
|
|
5276
4733
|
"kind": "method",
|
|
5277
|
-
"name": "
|
|
4734
|
+
"name": "_valuetype",
|
|
5278
4735
|
"parameters": [
|
|
5279
4736
|
{
|
|
5280
|
-
"name": "
|
|
4737
|
+
"name": "property",
|
|
5281
4738
|
"type": {
|
|
5282
|
-
"text": "
|
|
4739
|
+
"text": "string"
|
|
5283
4740
|
}
|
|
5284
4741
|
}
|
|
5285
4742
|
]
|
|
5286
4743
|
},
|
|
5287
4744
|
{
|
|
5288
4745
|
"kind": "field",
|
|
5289
|
-
"name": "
|
|
5290
|
-
"
|
|
4746
|
+
"name": "_keep_saved_rule_params",
|
|
4747
|
+
"type": {
|
|
4748
|
+
"text": "boolean"
|
|
4749
|
+
},
|
|
4750
|
+
"privacy": "private",
|
|
4751
|
+
"default": "false"
|
|
5291
4752
|
},
|
|
5292
4753
|
{
|
|
5293
4754
|
"kind": "method",
|
|
5294
|
-
"name": "
|
|
5295
|
-
"parameters": [
|
|
5296
|
-
{
|
|
5297
|
-
"name": "component",
|
|
5298
|
-
"type": {
|
|
5299
|
-
"text": "Component"
|
|
5300
|
-
}
|
|
5301
|
-
}
|
|
5302
|
-
]
|
|
4755
|
+
"name": "_onChangedMapping"
|
|
5303
4756
|
},
|
|
5304
4757
|
{
|
|
5305
4758
|
"kind": "method",
|
|
5306
|
-
"name": "
|
|
4759
|
+
"name": "_onChangeRule",
|
|
5307
4760
|
"parameters": [
|
|
5308
4761
|
{
|
|
5309
|
-
"name": "
|
|
4762
|
+
"name": "e",
|
|
5310
4763
|
"type": {
|
|
5311
|
-
"text": "
|
|
4764
|
+
"text": "Event"
|
|
5312
4765
|
}
|
|
5313
4766
|
}
|
|
5314
4767
|
]
|
|
5315
4768
|
},
|
|
5316
4769
|
{
|
|
5317
4770
|
"kind": "method",
|
|
5318
|
-
"name": "
|
|
4771
|
+
"name": "_onChange",
|
|
5319
4772
|
"parameters": [
|
|
5320
4773
|
{
|
|
5321
|
-
"name": "
|
|
4774
|
+
"name": "e",
|
|
5322
4775
|
"type": {
|
|
5323
|
-
"text": "
|
|
4776
|
+
"text": "Event"
|
|
5324
4777
|
}
|
|
5325
4778
|
}
|
|
5326
4779
|
]
|
|
4780
|
+
}
|
|
4781
|
+
],
|
|
4782
|
+
"events": [
|
|
4783
|
+
{
|
|
4784
|
+
"name": "value-change",
|
|
4785
|
+
"type": {
|
|
4786
|
+
"text": "CustomEvent"
|
|
4787
|
+
}
|
|
4788
|
+
}
|
|
4789
|
+
],
|
|
4790
|
+
"attributes": [
|
|
4791
|
+
{
|
|
4792
|
+
"name": "mapping",
|
|
4793
|
+
"type": {
|
|
4794
|
+
"text": "Mapping"
|
|
4795
|
+
},
|
|
4796
|
+
"default": "{\n rule: 'value'\n }",
|
|
4797
|
+
"fieldName": "mapping"
|
|
5327
4798
|
},
|
|
5328
4799
|
{
|
|
5329
|
-
"
|
|
5330
|
-
"
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
"text": "Component"
|
|
5336
|
-
}
|
|
5337
|
-
}
|
|
5338
|
-
]
|
|
4800
|
+
"name": "rule",
|
|
4801
|
+
"type": {
|
|
4802
|
+
"text": "Rule"
|
|
4803
|
+
},
|
|
4804
|
+
"default": "{}",
|
|
4805
|
+
"fieldName": "rule"
|
|
5339
4806
|
},
|
|
5340
4807
|
{
|
|
5341
|
-
"
|
|
5342
|
-
"
|
|
5343
|
-
|
|
5344
|
-
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
"text": "Component"
|
|
5348
|
-
}
|
|
5349
|
-
}
|
|
5350
|
-
]
|
|
4808
|
+
"name": "properties",
|
|
4809
|
+
"type": {
|
|
4810
|
+
"text": "Properties[]"
|
|
4811
|
+
},
|
|
4812
|
+
"default": "[]",
|
|
4813
|
+
"fieldName": "properties"
|
|
5351
4814
|
},
|
|
5352
4815
|
{
|
|
5353
|
-
"
|
|
5354
|
-
"
|
|
5355
|
-
|
|
5356
|
-
"type": {
|
|
5357
|
-
"text": "boolean"
|
|
5358
|
-
}
|
|
4816
|
+
"name": "scene",
|
|
4817
|
+
"type": {
|
|
4818
|
+
"text": "Scene | undefined"
|
|
5359
4819
|
},
|
|
5360
|
-
"
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
|
|
5374
|
-
|
|
5375
|
-
|
|
4820
|
+
"fieldName": "scene"
|
|
4821
|
+
}
|
|
4822
|
+
],
|
|
4823
|
+
"superclass": {
|
|
4824
|
+
"name": "LitElement",
|
|
4825
|
+
"package": "lit"
|
|
4826
|
+
},
|
|
4827
|
+
"customElement": true
|
|
4828
|
+
}
|
|
4829
|
+
],
|
|
4830
|
+
"exports": [
|
|
4831
|
+
{
|
|
4832
|
+
"kind": "js",
|
|
4833
|
+
"name": "DataBindingMapper",
|
|
4834
|
+
"declaration": {
|
|
4835
|
+
"name": "DataBindingMapper",
|
|
4836
|
+
"module": "src/modeller/property-sidebar/data-binding/data-binding-mapper.ts"
|
|
4837
|
+
}
|
|
4838
|
+
}
|
|
4839
|
+
]
|
|
4840
|
+
},
|
|
4841
|
+
{
|
|
4842
|
+
"kind": "javascript-module",
|
|
4843
|
+
"path": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts",
|
|
4844
|
+
"declarations": [
|
|
4845
|
+
{
|
|
4846
|
+
"kind": "class",
|
|
4847
|
+
"description": "",
|
|
4848
|
+
"name": "DataBindingValueMap",
|
|
4849
|
+
"members": [
|
|
5376
4850
|
{
|
|
5377
4851
|
"kind": "method",
|
|
5378
|
-
"name": "
|
|
5379
|
-
"return": {
|
|
5380
|
-
"type": {
|
|
5381
|
-
"text": "TemplateResult"
|
|
5382
|
-
}
|
|
5383
|
-
},
|
|
4852
|
+
"name": "valueInputTemplate",
|
|
5384
4853
|
"parameters": [
|
|
5385
4854
|
{
|
|
5386
|
-
"name": "
|
|
5387
|
-
"
|
|
5388
|
-
"text": "Component"
|
|
5389
|
-
}
|
|
5390
|
-
},
|
|
5391
|
-
{
|
|
5392
|
-
"name": "depth",
|
|
4855
|
+
"name": "value",
|
|
4856
|
+
"optional": true,
|
|
5393
4857
|
"type": {
|
|
5394
|
-
"text": "
|
|
4858
|
+
"text": "any"
|
|
5395
4859
|
}
|
|
5396
4860
|
}
|
|
5397
4861
|
]
|
|
5398
4862
|
}
|
|
5399
4863
|
],
|
|
5400
|
-
"attributes": [
|
|
5401
|
-
{
|
|
5402
|
-
"name": "scene",
|
|
5403
|
-
"type": {
|
|
5404
|
-
"text": "Scene | undefined"
|
|
5405
|
-
},
|
|
5406
|
-
"fieldName": "scene"
|
|
5407
|
-
}
|
|
5408
|
-
],
|
|
5409
4864
|
"superclass": {
|
|
5410
|
-
"name": "
|
|
5411
|
-
"package": "
|
|
4865
|
+
"name": "OxInputValueMap",
|
|
4866
|
+
"package": "@operato/input"
|
|
5412
4867
|
},
|
|
4868
|
+
"tagName": "data-binding-value-map",
|
|
5413
4869
|
"customElement": true
|
|
5414
4870
|
}
|
|
5415
4871
|
],
|
|
5416
4872
|
"exports": [
|
|
5417
4873
|
{
|
|
5418
4874
|
"kind": "js",
|
|
5419
|
-
"name": "
|
|
4875
|
+
"name": "DataBindingValueMap",
|
|
5420
4876
|
"declaration": {
|
|
5421
|
-
"name": "
|
|
5422
|
-
"module": "src/modeller/property-sidebar/
|
|
4877
|
+
"name": "DataBindingValueMap",
|
|
4878
|
+
"module": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts"
|
|
4879
|
+
}
|
|
4880
|
+
},
|
|
4881
|
+
{
|
|
4882
|
+
"kind": "custom-element-definition",
|
|
4883
|
+
"name": "data-binding-value-map",
|
|
4884
|
+
"declaration": {
|
|
4885
|
+
"name": "DataBindingValueMap",
|
|
4886
|
+
"module": "src/modeller/property-sidebar/data-binding/data-binding-value-map.ts"
|
|
5423
4887
|
}
|
|
5424
4888
|
}
|
|
5425
4889
|
]
|
|
5426
4890
|
},
|
|
5427
4891
|
{
|
|
5428
4892
|
"kind": "javascript-module",
|
|
5429
|
-
"path": "src/modeller/property-sidebar/
|
|
4893
|
+
"path": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts",
|
|
5430
4894
|
"declarations": [
|
|
5431
4895
|
{
|
|
5432
|
-
"kind": "
|
|
5433
|
-
"
|
|
5434
|
-
"
|
|
4896
|
+
"kind": "class",
|
|
4897
|
+
"description": "",
|
|
4898
|
+
"name": "DataBindingValueRange",
|
|
4899
|
+
"members": [
|
|
4900
|
+
{
|
|
4901
|
+
"kind": "method",
|
|
4902
|
+
"name": "valueInputTemplate",
|
|
4903
|
+
"parameters": [
|
|
4904
|
+
{
|
|
4905
|
+
"name": "value",
|
|
4906
|
+
"optional": true,
|
|
4907
|
+
"type": {
|
|
4908
|
+
"text": "any"
|
|
4909
|
+
}
|
|
4910
|
+
}
|
|
4911
|
+
]
|
|
4912
|
+
}
|
|
4913
|
+
],
|
|
4914
|
+
"superclass": {
|
|
4915
|
+
"name": "OxInputValueRange",
|
|
4916
|
+
"package": "@operato/input"
|
|
4917
|
+
},
|
|
4918
|
+
"tagName": "data-binding-value-range",
|
|
4919
|
+
"customElement": true
|
|
5435
4920
|
}
|
|
5436
4921
|
],
|
|
5437
4922
|
"exports": [
|
|
5438
4923
|
{
|
|
5439
4924
|
"kind": "js",
|
|
5440
|
-
"name": "
|
|
4925
|
+
"name": "DataBindingValueRange",
|
|
5441
4926
|
"declaration": {
|
|
5442
|
-
"name": "
|
|
5443
|
-
"module": "src/modeller/property-sidebar/
|
|
4927
|
+
"name": "DataBindingValueRange",
|
|
4928
|
+
"module": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts"
|
|
4929
|
+
}
|
|
4930
|
+
},
|
|
4931
|
+
{
|
|
4932
|
+
"kind": "custom-element-definition",
|
|
4933
|
+
"name": "data-binding-value-range",
|
|
4934
|
+
"declaration": {
|
|
4935
|
+
"name": "DataBindingValueRange",
|
|
4936
|
+
"module": "src/modeller/property-sidebar/data-binding/data-binding-value-range.ts"
|
|
5444
4937
|
}
|
|
5445
4938
|
}
|
|
5446
4939
|
]
|
|
5447
4940
|
},
|
|
5448
4941
|
{
|
|
5449
4942
|
"kind": "javascript-module",
|
|
5450
|
-
"path": "src/modeller/property-sidebar/
|
|
4943
|
+
"path": "src/modeller/property-sidebar/data-binding/data-binding.ts",
|
|
5451
4944
|
"declarations": [
|
|
5452
4945
|
{
|
|
5453
4946
|
"kind": "class",
|
|
5454
4947
|
"description": "",
|
|
5455
|
-
"name": "
|
|
4948
|
+
"name": "PropertyDataBinding",
|
|
5456
4949
|
"members": [
|
|
5457
4950
|
{
|
|
5458
4951
|
"kind": "field",
|
|
@@ -5470,6 +4963,55 @@
|
|
|
5470
4963
|
},
|
|
5471
4964
|
"attribute": "scene"
|
|
5472
4965
|
},
|
|
4966
|
+
{
|
|
4967
|
+
"kind": "field",
|
|
4968
|
+
"name": "mappingIndex",
|
|
4969
|
+
"type": {
|
|
4970
|
+
"text": "number"
|
|
4971
|
+
},
|
|
4972
|
+
"default": "0"
|
|
4973
|
+
},
|
|
4974
|
+
{
|
|
4975
|
+
"kind": "field",
|
|
4976
|
+
"name": "_afterRender",
|
|
4977
|
+
"type": {
|
|
4978
|
+
"text": "Function | null | undefined"
|
|
4979
|
+
}
|
|
4980
|
+
},
|
|
4981
|
+
{
|
|
4982
|
+
"kind": "field",
|
|
4983
|
+
"name": "_dataExpanded",
|
|
4984
|
+
"type": {
|
|
4985
|
+
"text": "boolean"
|
|
4986
|
+
},
|
|
4987
|
+
"default": "true"
|
|
4988
|
+
},
|
|
4989
|
+
{
|
|
4990
|
+
"kind": "field",
|
|
4991
|
+
"name": "tabs",
|
|
4992
|
+
"type": {
|
|
4993
|
+
"text": "HTMLElement"
|
|
4994
|
+
}
|
|
4995
|
+
},
|
|
4996
|
+
{
|
|
4997
|
+
"kind": "field",
|
|
4998
|
+
"name": "tabNavLeftButton",
|
|
4999
|
+
"type": {
|
|
5000
|
+
"text": "HTMLElement"
|
|
5001
|
+
}
|
|
5002
|
+
},
|
|
5003
|
+
{
|
|
5004
|
+
"kind": "field",
|
|
5005
|
+
"name": "tabNavRightButton",
|
|
5006
|
+
"type": {
|
|
5007
|
+
"text": "HTMLElement"
|
|
5008
|
+
}
|
|
5009
|
+
},
|
|
5010
|
+
{
|
|
5011
|
+
"kind": "field",
|
|
5012
|
+
"name": "mappings",
|
|
5013
|
+
"readonly": true
|
|
5014
|
+
},
|
|
5473
5015
|
{
|
|
5474
5016
|
"kind": "field",
|
|
5475
5017
|
"name": "scopedElements",
|
|
@@ -5478,39 +5020,254 @@
|
|
|
5478
5020
|
},
|
|
5479
5021
|
{
|
|
5480
5022
|
"kind": "method",
|
|
5481
|
-
"name": "
|
|
5023
|
+
"name": "_setMappingIndex",
|
|
5482
5024
|
"parameters": [
|
|
5483
5025
|
{
|
|
5484
|
-
"name": "
|
|
5026
|
+
"name": "idx",
|
|
5485
5027
|
"type": {
|
|
5486
|
-
"text": "
|
|
5028
|
+
"text": "number"
|
|
5487
5029
|
}
|
|
5488
5030
|
}
|
|
5489
|
-
]
|
|
5490
|
-
"inheritedFrom": {
|
|
5491
|
-
"name": "AbstractProperty",
|
|
5492
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5493
|
-
}
|
|
5031
|
+
]
|
|
5494
5032
|
},
|
|
5495
5033
|
{
|
|
5496
5034
|
"kind": "method",
|
|
5497
|
-
"name": "
|
|
5498
|
-
"parameters": [
|
|
5499
|
-
{
|
|
5500
|
-
"name": "element",
|
|
5501
|
-
"type": {
|
|
5502
|
-
"text": "HTMLElement"
|
|
5503
|
-
}
|
|
5504
|
-
}
|
|
5505
|
-
],
|
|
5506
|
-
"inheritedFrom": {
|
|
5507
|
-
"name": "AbstractProperty",
|
|
5508
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5509
|
-
}
|
|
5035
|
+
"name": "_clearDataBindingMapper"
|
|
5510
5036
|
},
|
|
5511
5037
|
{
|
|
5512
5038
|
"kind": "method",
|
|
5513
|
-
"name": "
|
|
5039
|
+
"name": "_copyDataBindingMapper"
|
|
5040
|
+
},
|
|
5041
|
+
{
|
|
5042
|
+
"kind": "method",
|
|
5043
|
+
"name": "_pasteDataBindingMapper"
|
|
5044
|
+
},
|
|
5045
|
+
{
|
|
5046
|
+
"kind": "method",
|
|
5047
|
+
"name": "_onValueChanged"
|
|
5048
|
+
},
|
|
5049
|
+
{
|
|
5050
|
+
"kind": "method",
|
|
5051
|
+
"name": "_onValueChange",
|
|
5052
|
+
"parameters": [
|
|
5053
|
+
{
|
|
5054
|
+
"name": "e",
|
|
5055
|
+
"type": {
|
|
5056
|
+
"text": "Event"
|
|
5057
|
+
}
|
|
5058
|
+
}
|
|
5059
|
+
],
|
|
5060
|
+
"inheritedFrom": {
|
|
5061
|
+
"name": "AbstractProperty",
|
|
5062
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5063
|
+
}
|
|
5064
|
+
},
|
|
5065
|
+
{
|
|
5066
|
+
"kind": "field",
|
|
5067
|
+
"name": "tabContainer",
|
|
5068
|
+
"readonly": true
|
|
5069
|
+
},
|
|
5070
|
+
{
|
|
5071
|
+
"kind": "method",
|
|
5072
|
+
"name": "_onMappingChanged",
|
|
5073
|
+
"parameters": [
|
|
5074
|
+
{
|
|
5075
|
+
"name": "e",
|
|
5076
|
+
"type": {
|
|
5077
|
+
"text": "CustomEvent"
|
|
5078
|
+
}
|
|
5079
|
+
}
|
|
5080
|
+
]
|
|
5081
|
+
},
|
|
5082
|
+
{
|
|
5083
|
+
"kind": "method",
|
|
5084
|
+
"name": "_onTabScroll"
|
|
5085
|
+
},
|
|
5086
|
+
{
|
|
5087
|
+
"kind": "method",
|
|
5088
|
+
"name": "_onTabScrollNavLeft"
|
|
5089
|
+
},
|
|
5090
|
+
{
|
|
5091
|
+
"kind": "method",
|
|
5092
|
+
"name": "_onTabScrollNavRight"
|
|
5093
|
+
},
|
|
5094
|
+
{
|
|
5095
|
+
"kind": "method",
|
|
5096
|
+
"name": "_getValueFromEventTarget",
|
|
5097
|
+
"parameters": [
|
|
5098
|
+
{
|
|
5099
|
+
"name": "element",
|
|
5100
|
+
"type": {
|
|
5101
|
+
"text": "HTMLElement"
|
|
5102
|
+
}
|
|
5103
|
+
}
|
|
5104
|
+
],
|
|
5105
|
+
"inheritedFrom": {
|
|
5106
|
+
"name": "AbstractProperty",
|
|
5107
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5108
|
+
}
|
|
5109
|
+
},
|
|
5110
|
+
{
|
|
5111
|
+
"kind": "method",
|
|
5112
|
+
"name": "_onAfterValueChange",
|
|
5113
|
+
"parameters": [
|
|
5114
|
+
{
|
|
5115
|
+
"name": "key",
|
|
5116
|
+
"type": {
|
|
5117
|
+
"text": "string"
|
|
5118
|
+
}
|
|
5119
|
+
},
|
|
5120
|
+
{
|
|
5121
|
+
"name": "value",
|
|
5122
|
+
"type": {
|
|
5123
|
+
"text": "any"
|
|
5124
|
+
}
|
|
5125
|
+
}
|
|
5126
|
+
],
|
|
5127
|
+
"inheritedFrom": {
|
|
5128
|
+
"name": "AbstractProperty",
|
|
5129
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5130
|
+
}
|
|
5131
|
+
}
|
|
5132
|
+
],
|
|
5133
|
+
"events": [
|
|
5134
|
+
{
|
|
5135
|
+
"name": "property-change",
|
|
5136
|
+
"type": {
|
|
5137
|
+
"text": "CustomEvent"
|
|
5138
|
+
},
|
|
5139
|
+
"inheritedFrom": {
|
|
5140
|
+
"name": "AbstractProperty",
|
|
5141
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5142
|
+
}
|
|
5143
|
+
}
|
|
5144
|
+
],
|
|
5145
|
+
"attributes": [
|
|
5146
|
+
{
|
|
5147
|
+
"name": "value",
|
|
5148
|
+
"type": {
|
|
5149
|
+
"text": "Properties | undefined"
|
|
5150
|
+
},
|
|
5151
|
+
"fieldName": "value"
|
|
5152
|
+
},
|
|
5153
|
+
{
|
|
5154
|
+
"name": "scene",
|
|
5155
|
+
"type": {
|
|
5156
|
+
"text": "Scene | undefined"
|
|
5157
|
+
},
|
|
5158
|
+
"fieldName": "scene"
|
|
5159
|
+
}
|
|
5160
|
+
],
|
|
5161
|
+
"mixins": [
|
|
5162
|
+
{
|
|
5163
|
+
"name": "ScopedElementsMixin",
|
|
5164
|
+
"package": "@open-wc/scoped-elements"
|
|
5165
|
+
}
|
|
5166
|
+
],
|
|
5167
|
+
"superclass": {
|
|
5168
|
+
"name": "AbstractProperty",
|
|
5169
|
+
"module": "/src/modeller/property-sidebar/abstract-property.js"
|
|
5170
|
+
}
|
|
5171
|
+
}
|
|
5172
|
+
],
|
|
5173
|
+
"exports": [
|
|
5174
|
+
{
|
|
5175
|
+
"kind": "js",
|
|
5176
|
+
"name": "PropertyDataBinding",
|
|
5177
|
+
"declaration": {
|
|
5178
|
+
"name": "PropertyDataBinding",
|
|
5179
|
+
"module": "src/modeller/property-sidebar/data-binding/data-binding.ts"
|
|
5180
|
+
}
|
|
5181
|
+
}
|
|
5182
|
+
]
|
|
5183
|
+
},
|
|
5184
|
+
{
|
|
5185
|
+
"kind": "javascript-module",
|
|
5186
|
+
"path": "src/modeller/property-sidebar/effects/effects-shared-style.ts",
|
|
5187
|
+
"declarations": [
|
|
5188
|
+
{
|
|
5189
|
+
"kind": "variable",
|
|
5190
|
+
"name": "EffectsSharedStyle",
|
|
5191
|
+
"default": "css`\n :host {\n display: grid;\n grid-template-columns: repeat(10, 1fr);\n grid-gap: 5px;\n grid-auto-rows: minmax(24px, auto);\n\n align-items: center;\n }\n\n * {\n align-self: stretch;\n }\n\n label {\n grid-column: span 3;\n text-align: right;\n text-transform: capitalize;\n\n align-self: center;\n }\n\n input,\n select,\n ox-input-angle,\n ox-input-color,\n [custom-editor] {\n grid-column: span 7;\n }\n\n input,\n select,\n ox-input-angle input,\n ox-input-color input,\n [custom-editor] input {\n border: var(--property-sidebar-fieldset-border);\n }\n\n ox-input-data {\n height: 300px;\n }\n\n input[type='checkbox'] {\n grid-column: 4 / 5;\n align-self: center;\n }\n\n label.checkbox-label {\n grid-column: span 6;\n text-align: left;\n }\n\n [fullwidth] {\n grid-column: 1 / -1;\n }\n`"
|
|
5192
|
+
}
|
|
5193
|
+
],
|
|
5194
|
+
"exports": [
|
|
5195
|
+
{
|
|
5196
|
+
"kind": "js",
|
|
5197
|
+
"name": "EffectsSharedStyle",
|
|
5198
|
+
"declaration": {
|
|
5199
|
+
"name": "EffectsSharedStyle",
|
|
5200
|
+
"module": "src/modeller/property-sidebar/effects/effects-shared-style.ts"
|
|
5201
|
+
}
|
|
5202
|
+
}
|
|
5203
|
+
]
|
|
5204
|
+
},
|
|
5205
|
+
{
|
|
5206
|
+
"kind": "javascript-module",
|
|
5207
|
+
"path": "src/modeller/property-sidebar/effects/effects.ts",
|
|
5208
|
+
"declarations": [
|
|
5209
|
+
{
|
|
5210
|
+
"kind": "class",
|
|
5211
|
+
"description": "",
|
|
5212
|
+
"name": "PropertyEffects",
|
|
5213
|
+
"members": [
|
|
5214
|
+
{
|
|
5215
|
+
"kind": "field",
|
|
5216
|
+
"name": "value",
|
|
5217
|
+
"type": {
|
|
5218
|
+
"text": "Properties | undefined"
|
|
5219
|
+
},
|
|
5220
|
+
"attribute": "value"
|
|
5221
|
+
},
|
|
5222
|
+
{
|
|
5223
|
+
"kind": "field",
|
|
5224
|
+
"name": "scene",
|
|
5225
|
+
"type": {
|
|
5226
|
+
"text": "Scene | undefined"
|
|
5227
|
+
},
|
|
5228
|
+
"attribute": "scene"
|
|
5229
|
+
},
|
|
5230
|
+
{
|
|
5231
|
+
"kind": "field",
|
|
5232
|
+
"name": "scopedElements",
|
|
5233
|
+
"static": true,
|
|
5234
|
+
"readonly": true
|
|
5235
|
+
},
|
|
5236
|
+
{
|
|
5237
|
+
"kind": "method",
|
|
5238
|
+
"name": "_onValueChange",
|
|
5239
|
+
"parameters": [
|
|
5240
|
+
{
|
|
5241
|
+
"name": "e",
|
|
5242
|
+
"type": {
|
|
5243
|
+
"text": "Event"
|
|
5244
|
+
}
|
|
5245
|
+
}
|
|
5246
|
+
],
|
|
5247
|
+
"inheritedFrom": {
|
|
5248
|
+
"name": "AbstractProperty",
|
|
5249
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5250
|
+
}
|
|
5251
|
+
},
|
|
5252
|
+
{
|
|
5253
|
+
"kind": "method",
|
|
5254
|
+
"name": "_getValueFromEventTarget",
|
|
5255
|
+
"parameters": [
|
|
5256
|
+
{
|
|
5257
|
+
"name": "element",
|
|
5258
|
+
"type": {
|
|
5259
|
+
"text": "HTMLElement"
|
|
5260
|
+
}
|
|
5261
|
+
}
|
|
5262
|
+
],
|
|
5263
|
+
"inheritedFrom": {
|
|
5264
|
+
"name": "AbstractProperty",
|
|
5265
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5266
|
+
}
|
|
5267
|
+
},
|
|
5268
|
+
{
|
|
5269
|
+
"kind": "method",
|
|
5270
|
+
"name": "_onAfterValueChange",
|
|
5514
5271
|
"parameters": [
|
|
5515
5272
|
{
|
|
5516
5273
|
"name": "key",
|
|
@@ -5987,16 +5744,499 @@
|
|
|
5987
5744
|
"text": "any"
|
|
5988
5745
|
}
|
|
5989
5746
|
}
|
|
5990
|
-
]
|
|
5747
|
+
]
|
|
5748
|
+
}
|
|
5749
|
+
],
|
|
5750
|
+
"exports": [
|
|
5751
|
+
{
|
|
5752
|
+
"kind": "js",
|
|
5753
|
+
"name": "convert",
|
|
5754
|
+
"declaration": {
|
|
5755
|
+
"name": "convert",
|
|
5756
|
+
"module": "src/modeller/property-sidebar/effects/value-converter.ts"
|
|
5757
|
+
}
|
|
5758
|
+
}
|
|
5759
|
+
]
|
|
5760
|
+
},
|
|
5761
|
+
{
|
|
5762
|
+
"kind": "javascript-module",
|
|
5763
|
+
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|
|
5764
|
+
"declarations": [
|
|
5765
|
+
{
|
|
5766
|
+
"kind": "variable",
|
|
5767
|
+
"name": "BoxPaddingEditorStyles",
|
|
5768
|
+
"default": "css`\n .box-padding {\n width: 100%;\n }\n\n .box-padding td {\n background: var(--url-icon-properties-padding) 50% 0 no-repeat;\n }\n\n .box-padding tr:nth-child(1),\n .box-padding tr:nth-child(3) {\n height: 20px;\n }\n\n .box-padding tr td:nth-child(1),\n .box-padding tr td:nth-child(3) {\n width: 18px;\n }\n\n .box-padding .slide1 {\n background-position: 0 0;\n }\n\n .box-padding .slide2 {\n background-position: 50% -40px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide3 {\n background-position: 100% -440px;\n }\n\n .box-padding .slide4 {\n background-position: 0 -360px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide5 {\n background: none;\n text-align: center;\n }\n\n .box-padding .slide6 {\n background-position: 100% -160px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide7 {\n background-position: 0 100%;\n }\n\n .box-padding .slide8 {\n background-position: 50% -320px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide9 {\n background-position: 0 0px;\n }\n\n .box-padding input {\n background-color: transparent;\n width: 35px;\n margin: 0px;\n padding: 0px;\n clear: both;\n float: initial;\n border: 1px solid #fff;\n border-width: 0 0 1px 0;\n text-align: right;\n font-size: 14px;\n }\n\n .slide5 input:nth-child(1),\n .slide5 input:nth-child(4) {\n display: block;\n margin: auto;\n }\n\n .slide5 input:nth-child(2) {\n float: left;\n }\n\n .slide5 input:nth-child(3) {\n float: right;\n margin-top: -25px;\n }\n\n .slide5 input:nth-child(4) {\n margin-top: -5px;\n }\n`"
|
|
5769
|
+
}
|
|
5770
|
+
],
|
|
5771
|
+
"exports": [
|
|
5772
|
+
{
|
|
5773
|
+
"kind": "js",
|
|
5774
|
+
"name": "BoxPaddingEditorStyles",
|
|
5775
|
+
"declaration": {
|
|
5776
|
+
"name": "BoxPaddingEditorStyles",
|
|
5777
|
+
"module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
|
|
5778
|
+
}
|
|
5779
|
+
}
|
|
5780
|
+
]
|
|
5781
|
+
},
|
|
5782
|
+
{
|
|
5783
|
+
"kind": "javascript-module",
|
|
5784
|
+
"path": "src/modeller/property-sidebar/shapes/shapes.ts",
|
|
5785
|
+
"declarations": [
|
|
5786
|
+
{
|
|
5787
|
+
"kind": "class",
|
|
5788
|
+
"description": "",
|
|
5789
|
+
"name": "PropertyShapes",
|
|
5790
|
+
"members": [
|
|
5791
|
+
{
|
|
5792
|
+
"kind": "field",
|
|
5793
|
+
"name": "value",
|
|
5794
|
+
"type": {
|
|
5795
|
+
"text": "Properties | undefined"
|
|
5796
|
+
},
|
|
5797
|
+
"attribute": "value"
|
|
5798
|
+
},
|
|
5799
|
+
{
|
|
5800
|
+
"kind": "field",
|
|
5801
|
+
"name": "bounds",
|
|
5802
|
+
"type": {
|
|
5803
|
+
"text": "BOUNDS | null"
|
|
5804
|
+
},
|
|
5805
|
+
"default": "null",
|
|
5806
|
+
"attribute": "bounds"
|
|
5807
|
+
},
|
|
5808
|
+
{
|
|
5809
|
+
"kind": "field",
|
|
5810
|
+
"name": "selected",
|
|
5811
|
+
"type": {
|
|
5812
|
+
"text": "Component[]"
|
|
5813
|
+
},
|
|
5814
|
+
"default": "[]",
|
|
5815
|
+
"attribute": "selected"
|
|
5816
|
+
},
|
|
5817
|
+
{
|
|
5818
|
+
"kind": "method",
|
|
5819
|
+
"name": "_onValueChange",
|
|
5820
|
+
"parameters": [
|
|
5821
|
+
{
|
|
5822
|
+
"name": "e",
|
|
5823
|
+
"type": {
|
|
5824
|
+
"text": "Event"
|
|
5825
|
+
}
|
|
5826
|
+
}
|
|
5827
|
+
],
|
|
5828
|
+
"inheritedFrom": {
|
|
5829
|
+
"name": "AbstractProperty",
|
|
5830
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5831
|
+
}
|
|
5832
|
+
},
|
|
5833
|
+
{
|
|
5834
|
+
"kind": "method",
|
|
5835
|
+
"name": "_hasTextProperty",
|
|
5836
|
+
"parameters": [
|
|
5837
|
+
{
|
|
5838
|
+
"name": "selected",
|
|
5839
|
+
"type": {
|
|
5840
|
+
"text": "Component[]"
|
|
5841
|
+
}
|
|
5842
|
+
}
|
|
5843
|
+
]
|
|
5844
|
+
},
|
|
5845
|
+
{
|
|
5846
|
+
"kind": "method",
|
|
5847
|
+
"name": "_hasProperties",
|
|
5848
|
+
"parameters": [
|
|
5849
|
+
{
|
|
5850
|
+
"name": "selected",
|
|
5851
|
+
"type": {
|
|
5852
|
+
"text": "Component[]"
|
|
5853
|
+
}
|
|
5854
|
+
}
|
|
5855
|
+
]
|
|
5856
|
+
},
|
|
5857
|
+
{
|
|
5858
|
+
"kind": "method",
|
|
5859
|
+
"name": "_isIdentifiable",
|
|
5860
|
+
"parameters": [
|
|
5861
|
+
{
|
|
5862
|
+
"name": "selected",
|
|
5863
|
+
"type": {
|
|
5864
|
+
"text": "Component[]"
|
|
5865
|
+
}
|
|
5866
|
+
}
|
|
5867
|
+
]
|
|
5868
|
+
},
|
|
5869
|
+
{
|
|
5870
|
+
"kind": "method",
|
|
5871
|
+
"name": "_isClassIdentifiable",
|
|
5872
|
+
"parameters": [
|
|
5873
|
+
{
|
|
5874
|
+
"name": "selected",
|
|
5875
|
+
"type": {
|
|
5876
|
+
"text": "Component[]"
|
|
5877
|
+
}
|
|
5878
|
+
}
|
|
5879
|
+
]
|
|
5880
|
+
},
|
|
5881
|
+
{
|
|
5882
|
+
"kind": "method",
|
|
5883
|
+
"name": "_isLine",
|
|
5884
|
+
"parameters": [
|
|
5885
|
+
{
|
|
5886
|
+
"name": "selected",
|
|
5887
|
+
"type": {
|
|
5888
|
+
"text": "Component[]"
|
|
5889
|
+
}
|
|
5890
|
+
}
|
|
5891
|
+
]
|
|
5892
|
+
},
|
|
5893
|
+
{
|
|
5894
|
+
"kind": "method",
|
|
5895
|
+
"name": "_is3dish",
|
|
5896
|
+
"parameters": [
|
|
5897
|
+
{
|
|
5898
|
+
"name": "selected",
|
|
5899
|
+
"type": {
|
|
5900
|
+
"text": "Component[]"
|
|
5901
|
+
}
|
|
5902
|
+
}
|
|
5903
|
+
]
|
|
5904
|
+
},
|
|
5905
|
+
{
|
|
5906
|
+
"kind": "method",
|
|
5907
|
+
"name": "_getValueFromEventTarget",
|
|
5908
|
+
"parameters": [
|
|
5909
|
+
{
|
|
5910
|
+
"name": "element",
|
|
5911
|
+
"type": {
|
|
5912
|
+
"text": "HTMLElement"
|
|
5913
|
+
}
|
|
5914
|
+
}
|
|
5915
|
+
],
|
|
5916
|
+
"inheritedFrom": {
|
|
5917
|
+
"name": "AbstractProperty",
|
|
5918
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5919
|
+
}
|
|
5920
|
+
},
|
|
5921
|
+
{
|
|
5922
|
+
"kind": "method",
|
|
5923
|
+
"name": "_onAfterValueChange",
|
|
5924
|
+
"parameters": [
|
|
5925
|
+
{
|
|
5926
|
+
"name": "key",
|
|
5927
|
+
"type": {
|
|
5928
|
+
"text": "string"
|
|
5929
|
+
}
|
|
5930
|
+
},
|
|
5931
|
+
{
|
|
5932
|
+
"name": "value",
|
|
5933
|
+
"type": {
|
|
5934
|
+
"text": "any"
|
|
5935
|
+
}
|
|
5936
|
+
}
|
|
5937
|
+
],
|
|
5938
|
+
"inheritedFrom": {
|
|
5939
|
+
"name": "AbstractProperty",
|
|
5940
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5941
|
+
}
|
|
5942
|
+
}
|
|
5943
|
+
],
|
|
5944
|
+
"events": [
|
|
5945
|
+
{
|
|
5946
|
+
"name": "bounds-change",
|
|
5947
|
+
"type": {
|
|
5948
|
+
"text": "CustomEvent"
|
|
5949
|
+
}
|
|
5950
|
+
},
|
|
5951
|
+
{
|
|
5952
|
+
"name": "property-change",
|
|
5953
|
+
"type": {
|
|
5954
|
+
"text": "CustomEvent"
|
|
5955
|
+
},
|
|
5956
|
+
"inheritedFrom": {
|
|
5957
|
+
"name": "AbstractProperty",
|
|
5958
|
+
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
5959
|
+
}
|
|
5960
|
+
}
|
|
5961
|
+
],
|
|
5962
|
+
"attributes": [
|
|
5963
|
+
{
|
|
5964
|
+
"name": "value",
|
|
5965
|
+
"type": {
|
|
5966
|
+
"text": "Properties | undefined"
|
|
5967
|
+
},
|
|
5968
|
+
"fieldName": "value"
|
|
5969
|
+
},
|
|
5970
|
+
{
|
|
5971
|
+
"name": "bounds",
|
|
5972
|
+
"type": {
|
|
5973
|
+
"text": "BOUNDS | null"
|
|
5974
|
+
},
|
|
5975
|
+
"default": "null",
|
|
5976
|
+
"fieldName": "bounds"
|
|
5977
|
+
},
|
|
5978
|
+
{
|
|
5979
|
+
"name": "selected",
|
|
5980
|
+
"type": {
|
|
5981
|
+
"text": "Component[]"
|
|
5982
|
+
},
|
|
5983
|
+
"default": "[]",
|
|
5984
|
+
"fieldName": "selected"
|
|
5985
|
+
}
|
|
5986
|
+
],
|
|
5987
|
+
"superclass": {
|
|
5988
|
+
"name": "AbstractProperty",
|
|
5989
|
+
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
5990
|
+
}
|
|
5991
|
+
}
|
|
5992
|
+
],
|
|
5993
|
+
"exports": [
|
|
5994
|
+
{
|
|
5995
|
+
"kind": "js",
|
|
5996
|
+
"name": "PropertyShapes",
|
|
5997
|
+
"declaration": {
|
|
5998
|
+
"name": "PropertyShapes",
|
|
5999
|
+
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
6000
|
+
}
|
|
6001
|
+
}
|
|
6002
|
+
]
|
|
6003
|
+
},
|
|
6004
|
+
{
|
|
6005
|
+
"kind": "javascript-module",
|
|
6006
|
+
"path": "src/modeller/property-sidebar/inspector/inspector.ts",
|
|
6007
|
+
"declarations": [
|
|
6008
|
+
{
|
|
6009
|
+
"kind": "class",
|
|
6010
|
+
"description": "",
|
|
6011
|
+
"name": "SceneInspector",
|
|
6012
|
+
"members": [
|
|
6013
|
+
{
|
|
6014
|
+
"kind": "field",
|
|
6015
|
+
"name": "scene",
|
|
6016
|
+
"type": {
|
|
6017
|
+
"text": "Scene | undefined"
|
|
6018
|
+
},
|
|
6019
|
+
"attribute": "scene"
|
|
6020
|
+
},
|
|
6021
|
+
{
|
|
6022
|
+
"kind": "field",
|
|
6023
|
+
"name": "searchText",
|
|
6024
|
+
"type": {
|
|
6025
|
+
"text": "string"
|
|
6026
|
+
},
|
|
6027
|
+
"privacy": "private",
|
|
6028
|
+
"default": "''"
|
|
6029
|
+
},
|
|
6030
|
+
{
|
|
6031
|
+
"kind": "field",
|
|
6032
|
+
"name": "_extendedMap",
|
|
6033
|
+
"type": {
|
|
6034
|
+
"text": "any"
|
|
6035
|
+
},
|
|
6036
|
+
"privacy": "private"
|
|
6037
|
+
},
|
|
6038
|
+
{
|
|
6039
|
+
"kind": "field",
|
|
6040
|
+
"name": "show",
|
|
6041
|
+
"type": {
|
|
6042
|
+
"text": "boolean"
|
|
6043
|
+
},
|
|
6044
|
+
"privacy": "private",
|
|
6045
|
+
"default": "false"
|
|
6046
|
+
},
|
|
6047
|
+
{
|
|
6048
|
+
"kind": "field",
|
|
6049
|
+
"name": "count",
|
|
6050
|
+
"type": {
|
|
6051
|
+
"text": "number"
|
|
6052
|
+
},
|
|
6053
|
+
"privacy": "private",
|
|
6054
|
+
"default": "-1"
|
|
6055
|
+
},
|
|
6056
|
+
{
|
|
6057
|
+
"kind": "method",
|
|
6058
|
+
"name": "disconnectScene",
|
|
6059
|
+
"parameters": [
|
|
6060
|
+
{
|
|
6061
|
+
"name": "scene",
|
|
6062
|
+
"optional": true,
|
|
6063
|
+
"type": {
|
|
6064
|
+
"text": "Scene"
|
|
6065
|
+
}
|
|
6066
|
+
}
|
|
6067
|
+
]
|
|
6068
|
+
},
|
|
6069
|
+
{
|
|
6070
|
+
"kind": "method",
|
|
6071
|
+
"name": "refresh"
|
|
6072
|
+
},
|
|
6073
|
+
{
|
|
6074
|
+
"kind": "method",
|
|
6075
|
+
"name": "_onclick",
|
|
6076
|
+
"parameters": [
|
|
6077
|
+
{
|
|
6078
|
+
"name": "e",
|
|
6079
|
+
"type": {
|
|
6080
|
+
"text": "MouseEvent"
|
|
6081
|
+
}
|
|
6082
|
+
}
|
|
6083
|
+
]
|
|
6084
|
+
},
|
|
6085
|
+
{
|
|
6086
|
+
"kind": "method",
|
|
6087
|
+
"name": "_ondblclick",
|
|
6088
|
+
"parameters": [
|
|
6089
|
+
{
|
|
6090
|
+
"name": "e",
|
|
6091
|
+
"type": {
|
|
6092
|
+
"text": "MouseEvent"
|
|
6093
|
+
}
|
|
6094
|
+
}
|
|
6095
|
+
]
|
|
6096
|
+
},
|
|
6097
|
+
{
|
|
6098
|
+
"kind": "field",
|
|
6099
|
+
"name": "extendedMap",
|
|
6100
|
+
"readonly": true
|
|
6101
|
+
},
|
|
6102
|
+
{
|
|
6103
|
+
"kind": "method",
|
|
6104
|
+
"name": "getNodeHandleClass",
|
|
6105
|
+
"parameters": [
|
|
6106
|
+
{
|
|
6107
|
+
"name": "component",
|
|
6108
|
+
"type": {
|
|
6109
|
+
"text": "Component"
|
|
6110
|
+
}
|
|
6111
|
+
}
|
|
6112
|
+
]
|
|
6113
|
+
},
|
|
6114
|
+
{
|
|
6115
|
+
"kind": "method",
|
|
6116
|
+
"name": "isExtended",
|
|
6117
|
+
"parameters": [
|
|
6118
|
+
{
|
|
6119
|
+
"name": "component",
|
|
6120
|
+
"type": {
|
|
6121
|
+
"text": "Component"
|
|
6122
|
+
}
|
|
6123
|
+
}
|
|
6124
|
+
]
|
|
6125
|
+
},
|
|
6126
|
+
{
|
|
6127
|
+
"kind": "method",
|
|
6128
|
+
"name": "toggleExtended",
|
|
6129
|
+
"parameters": [
|
|
6130
|
+
{
|
|
6131
|
+
"name": "component",
|
|
6132
|
+
"type": {
|
|
6133
|
+
"text": "Component"
|
|
6134
|
+
}
|
|
6135
|
+
}
|
|
6136
|
+
]
|
|
6137
|
+
},
|
|
6138
|
+
{
|
|
6139
|
+
"kind": "method",
|
|
6140
|
+
"name": "toggleHidden",
|
|
6141
|
+
"parameters": [
|
|
6142
|
+
{
|
|
6143
|
+
"name": "component",
|
|
6144
|
+
"type": {
|
|
6145
|
+
"text": "Component"
|
|
6146
|
+
}
|
|
6147
|
+
}
|
|
6148
|
+
]
|
|
6149
|
+
},
|
|
6150
|
+
{
|
|
6151
|
+
"kind": "method",
|
|
6152
|
+
"name": "selectComponent",
|
|
6153
|
+
"parameters": [
|
|
6154
|
+
{
|
|
6155
|
+
"name": "component",
|
|
6156
|
+
"type": {
|
|
6157
|
+
"text": "Component"
|
|
6158
|
+
}
|
|
6159
|
+
},
|
|
6160
|
+
{
|
|
6161
|
+
"name": "append",
|
|
6162
|
+
"default": "false",
|
|
6163
|
+
"type": {
|
|
6164
|
+
"text": "boolean"
|
|
6165
|
+
}
|
|
6166
|
+
}
|
|
6167
|
+
]
|
|
6168
|
+
},
|
|
6169
|
+
{
|
|
6170
|
+
"kind": "method",
|
|
6171
|
+
"name": "shouldBeShown",
|
|
6172
|
+
"return": {
|
|
6173
|
+
"type": {
|
|
6174
|
+
"text": "boolean"
|
|
6175
|
+
}
|
|
6176
|
+
},
|
|
6177
|
+
"parameters": [
|
|
6178
|
+
{
|
|
6179
|
+
"name": "component",
|
|
6180
|
+
"type": {
|
|
6181
|
+
"text": "Component"
|
|
6182
|
+
}
|
|
6183
|
+
},
|
|
6184
|
+
{
|
|
6185
|
+
"name": "counting",
|
|
6186
|
+
"default": "false",
|
|
6187
|
+
"type": {
|
|
6188
|
+
"text": "boolean"
|
|
6189
|
+
}
|
|
6190
|
+
}
|
|
6191
|
+
]
|
|
6192
|
+
},
|
|
6193
|
+
{
|
|
6194
|
+
"kind": "method",
|
|
6195
|
+
"name": "renderComponent",
|
|
6196
|
+
"return": {
|
|
6197
|
+
"type": {
|
|
6198
|
+
"text": "TemplateResult"
|
|
6199
|
+
}
|
|
6200
|
+
},
|
|
6201
|
+
"parameters": [
|
|
6202
|
+
{
|
|
6203
|
+
"name": "component",
|
|
6204
|
+
"type": {
|
|
6205
|
+
"text": "Component"
|
|
6206
|
+
}
|
|
6207
|
+
},
|
|
6208
|
+
{
|
|
6209
|
+
"name": "depth",
|
|
6210
|
+
"type": {
|
|
6211
|
+
"text": "number"
|
|
6212
|
+
}
|
|
6213
|
+
}
|
|
6214
|
+
]
|
|
6215
|
+
}
|
|
6216
|
+
],
|
|
6217
|
+
"attributes": [
|
|
6218
|
+
{
|
|
6219
|
+
"name": "scene",
|
|
6220
|
+
"type": {
|
|
6221
|
+
"text": "Scene | undefined"
|
|
6222
|
+
},
|
|
6223
|
+
"fieldName": "scene"
|
|
6224
|
+
}
|
|
6225
|
+
],
|
|
6226
|
+
"superclass": {
|
|
6227
|
+
"name": "LitElement",
|
|
6228
|
+
"package": "lit"
|
|
6229
|
+
},
|
|
6230
|
+
"customElement": true
|
|
5991
6231
|
}
|
|
5992
6232
|
],
|
|
5993
6233
|
"exports": [
|
|
5994
6234
|
{
|
|
5995
6235
|
"kind": "js",
|
|
5996
|
-
"name": "
|
|
6236
|
+
"name": "SceneInspector",
|
|
5997
6237
|
"declaration": {
|
|
5998
|
-
"name": "
|
|
5999
|
-
"module": "src/modeller/property-sidebar/
|
|
6238
|
+
"name": "SceneInspector",
|
|
6239
|
+
"module": "src/modeller/property-sidebar/inspector/inspector.ts"
|
|
6000
6240
|
}
|
|
6001
6241
|
}
|
|
6002
6242
|
]
|
|
@@ -6513,249 +6753,6 @@
|
|
|
6513
6753
|
}
|
|
6514
6754
|
}
|
|
6515
6755
|
]
|
|
6516
|
-
},
|
|
6517
|
-
{
|
|
6518
|
-
"kind": "javascript-module",
|
|
6519
|
-
"path": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts",
|
|
6520
|
-
"declarations": [
|
|
6521
|
-
{
|
|
6522
|
-
"kind": "variable",
|
|
6523
|
-
"name": "BoxPaddingEditorStyles",
|
|
6524
|
-
"default": "css`\n .box-padding {\n width: 100%;\n }\n\n .box-padding td {\n background: var(--url-icon-properties-padding) 50% 0 no-repeat;\n }\n\n .box-padding tr:nth-child(1),\n .box-padding tr:nth-child(3) {\n height: 20px;\n }\n\n .box-padding tr td:nth-child(1),\n .box-padding tr td:nth-child(3) {\n width: 18px;\n }\n\n .box-padding .slide1 {\n background-position: 0 0;\n }\n\n .box-padding .slide2 {\n background-position: 50% -40px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide3 {\n background-position: 100% -440px;\n }\n\n .box-padding .slide4 {\n background-position: 0 -360px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide5 {\n background: none;\n text-align: center;\n }\n\n .box-padding .slide6 {\n background-position: 100% -160px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide7 {\n background-position: 0 100%;\n }\n\n .box-padding .slide8 {\n background-position: 50% -320px;\n background-color: rgba(69, 46, 41, 0.2);\n }\n\n .box-padding .slide9 {\n background-position: 0 0px;\n }\n\n .box-padding input {\n background-color: transparent;\n width: 35px;\n margin: 0px;\n padding: 0px;\n clear: both;\n float: initial;\n border: 1px solid #fff;\n border-width: 0 0 1px 0;\n text-align: right;\n font-size: 14px;\n }\n\n .slide5 input:nth-child(1),\n .slide5 input:nth-child(4) {\n display: block;\n margin: auto;\n }\n\n .slide5 input:nth-child(2) {\n float: left;\n }\n\n .slide5 input:nth-child(3) {\n float: right;\n margin-top: -25px;\n }\n\n .slide5 input:nth-child(4) {\n margin-top: -5px;\n }\n`"
|
|
6525
|
-
}
|
|
6526
|
-
],
|
|
6527
|
-
"exports": [
|
|
6528
|
-
{
|
|
6529
|
-
"kind": "js",
|
|
6530
|
-
"name": "BoxPaddingEditorStyles",
|
|
6531
|
-
"declaration": {
|
|
6532
|
-
"name": "BoxPaddingEditorStyles",
|
|
6533
|
-
"module": "src/modeller/property-sidebar/shapes/box-padding-editor-styles.ts"
|
|
6534
|
-
}
|
|
6535
|
-
}
|
|
6536
|
-
]
|
|
6537
|
-
},
|
|
6538
|
-
{
|
|
6539
|
-
"kind": "javascript-module",
|
|
6540
|
-
"path": "src/modeller/property-sidebar/shapes/shapes.ts",
|
|
6541
|
-
"declarations": [
|
|
6542
|
-
{
|
|
6543
|
-
"kind": "class",
|
|
6544
|
-
"description": "",
|
|
6545
|
-
"name": "PropertyShapes",
|
|
6546
|
-
"members": [
|
|
6547
|
-
{
|
|
6548
|
-
"kind": "field",
|
|
6549
|
-
"name": "value",
|
|
6550
|
-
"type": {
|
|
6551
|
-
"text": "Properties | undefined"
|
|
6552
|
-
},
|
|
6553
|
-
"attribute": "value"
|
|
6554
|
-
},
|
|
6555
|
-
{
|
|
6556
|
-
"kind": "field",
|
|
6557
|
-
"name": "bounds",
|
|
6558
|
-
"type": {
|
|
6559
|
-
"text": "BOUNDS | null"
|
|
6560
|
-
},
|
|
6561
|
-
"default": "null",
|
|
6562
|
-
"attribute": "bounds"
|
|
6563
|
-
},
|
|
6564
|
-
{
|
|
6565
|
-
"kind": "field",
|
|
6566
|
-
"name": "selected",
|
|
6567
|
-
"type": {
|
|
6568
|
-
"text": "Component[]"
|
|
6569
|
-
},
|
|
6570
|
-
"default": "[]",
|
|
6571
|
-
"attribute": "selected"
|
|
6572
|
-
},
|
|
6573
|
-
{
|
|
6574
|
-
"kind": "method",
|
|
6575
|
-
"name": "_onValueChange",
|
|
6576
|
-
"parameters": [
|
|
6577
|
-
{
|
|
6578
|
-
"name": "e",
|
|
6579
|
-
"type": {
|
|
6580
|
-
"text": "Event"
|
|
6581
|
-
}
|
|
6582
|
-
}
|
|
6583
|
-
],
|
|
6584
|
-
"inheritedFrom": {
|
|
6585
|
-
"name": "AbstractProperty",
|
|
6586
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6587
|
-
}
|
|
6588
|
-
},
|
|
6589
|
-
{
|
|
6590
|
-
"kind": "method",
|
|
6591
|
-
"name": "_hasTextProperty",
|
|
6592
|
-
"parameters": [
|
|
6593
|
-
{
|
|
6594
|
-
"name": "selected",
|
|
6595
|
-
"type": {
|
|
6596
|
-
"text": "Component[]"
|
|
6597
|
-
}
|
|
6598
|
-
}
|
|
6599
|
-
]
|
|
6600
|
-
},
|
|
6601
|
-
{
|
|
6602
|
-
"kind": "method",
|
|
6603
|
-
"name": "_hasProperties",
|
|
6604
|
-
"parameters": [
|
|
6605
|
-
{
|
|
6606
|
-
"name": "selected",
|
|
6607
|
-
"type": {
|
|
6608
|
-
"text": "Component[]"
|
|
6609
|
-
}
|
|
6610
|
-
}
|
|
6611
|
-
]
|
|
6612
|
-
},
|
|
6613
|
-
{
|
|
6614
|
-
"kind": "method",
|
|
6615
|
-
"name": "_isIdentifiable",
|
|
6616
|
-
"parameters": [
|
|
6617
|
-
{
|
|
6618
|
-
"name": "selected",
|
|
6619
|
-
"type": {
|
|
6620
|
-
"text": "Component[]"
|
|
6621
|
-
}
|
|
6622
|
-
}
|
|
6623
|
-
]
|
|
6624
|
-
},
|
|
6625
|
-
{
|
|
6626
|
-
"kind": "method",
|
|
6627
|
-
"name": "_isClassIdentifiable",
|
|
6628
|
-
"parameters": [
|
|
6629
|
-
{
|
|
6630
|
-
"name": "selected",
|
|
6631
|
-
"type": {
|
|
6632
|
-
"text": "Component[]"
|
|
6633
|
-
}
|
|
6634
|
-
}
|
|
6635
|
-
]
|
|
6636
|
-
},
|
|
6637
|
-
{
|
|
6638
|
-
"kind": "method",
|
|
6639
|
-
"name": "_isLine",
|
|
6640
|
-
"parameters": [
|
|
6641
|
-
{
|
|
6642
|
-
"name": "selected",
|
|
6643
|
-
"type": {
|
|
6644
|
-
"text": "Component[]"
|
|
6645
|
-
}
|
|
6646
|
-
}
|
|
6647
|
-
]
|
|
6648
|
-
},
|
|
6649
|
-
{
|
|
6650
|
-
"kind": "method",
|
|
6651
|
-
"name": "_is3dish",
|
|
6652
|
-
"parameters": [
|
|
6653
|
-
{
|
|
6654
|
-
"name": "selected",
|
|
6655
|
-
"type": {
|
|
6656
|
-
"text": "Component[]"
|
|
6657
|
-
}
|
|
6658
|
-
}
|
|
6659
|
-
]
|
|
6660
|
-
},
|
|
6661
|
-
{
|
|
6662
|
-
"kind": "method",
|
|
6663
|
-
"name": "_getValueFromEventTarget",
|
|
6664
|
-
"parameters": [
|
|
6665
|
-
{
|
|
6666
|
-
"name": "element",
|
|
6667
|
-
"type": {
|
|
6668
|
-
"text": "HTMLElement"
|
|
6669
|
-
}
|
|
6670
|
-
}
|
|
6671
|
-
],
|
|
6672
|
-
"inheritedFrom": {
|
|
6673
|
-
"name": "AbstractProperty",
|
|
6674
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6675
|
-
}
|
|
6676
|
-
},
|
|
6677
|
-
{
|
|
6678
|
-
"kind": "method",
|
|
6679
|
-
"name": "_onAfterValueChange",
|
|
6680
|
-
"parameters": [
|
|
6681
|
-
{
|
|
6682
|
-
"name": "key",
|
|
6683
|
-
"type": {
|
|
6684
|
-
"text": "string"
|
|
6685
|
-
}
|
|
6686
|
-
},
|
|
6687
|
-
{
|
|
6688
|
-
"name": "value",
|
|
6689
|
-
"type": {
|
|
6690
|
-
"text": "any"
|
|
6691
|
-
}
|
|
6692
|
-
}
|
|
6693
|
-
],
|
|
6694
|
-
"inheritedFrom": {
|
|
6695
|
-
"name": "AbstractProperty",
|
|
6696
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6697
|
-
}
|
|
6698
|
-
}
|
|
6699
|
-
],
|
|
6700
|
-
"events": [
|
|
6701
|
-
{
|
|
6702
|
-
"name": "bounds-change",
|
|
6703
|
-
"type": {
|
|
6704
|
-
"text": "CustomEvent"
|
|
6705
|
-
}
|
|
6706
|
-
},
|
|
6707
|
-
{
|
|
6708
|
-
"name": "property-change",
|
|
6709
|
-
"type": {
|
|
6710
|
-
"text": "CustomEvent"
|
|
6711
|
-
},
|
|
6712
|
-
"inheritedFrom": {
|
|
6713
|
-
"name": "AbstractProperty",
|
|
6714
|
-
"module": "src/modeller/property-sidebar/abstract-property.ts"
|
|
6715
|
-
}
|
|
6716
|
-
}
|
|
6717
|
-
],
|
|
6718
|
-
"attributes": [
|
|
6719
|
-
{
|
|
6720
|
-
"name": "value",
|
|
6721
|
-
"type": {
|
|
6722
|
-
"text": "Properties | undefined"
|
|
6723
|
-
},
|
|
6724
|
-
"fieldName": "value"
|
|
6725
|
-
},
|
|
6726
|
-
{
|
|
6727
|
-
"name": "bounds",
|
|
6728
|
-
"type": {
|
|
6729
|
-
"text": "BOUNDS | null"
|
|
6730
|
-
},
|
|
6731
|
-
"default": "null",
|
|
6732
|
-
"fieldName": "bounds"
|
|
6733
|
-
},
|
|
6734
|
-
{
|
|
6735
|
-
"name": "selected",
|
|
6736
|
-
"type": {
|
|
6737
|
-
"text": "Component[]"
|
|
6738
|
-
},
|
|
6739
|
-
"default": "[]",
|
|
6740
|
-
"fieldName": "selected"
|
|
6741
|
-
}
|
|
6742
|
-
],
|
|
6743
|
-
"superclass": {
|
|
6744
|
-
"name": "AbstractProperty",
|
|
6745
|
-
"module": "/src/modeller/property-sidebar/abstract-property"
|
|
6746
|
-
}
|
|
6747
|
-
}
|
|
6748
|
-
],
|
|
6749
|
-
"exports": [
|
|
6750
|
-
{
|
|
6751
|
-
"kind": "js",
|
|
6752
|
-
"name": "PropertyShapes",
|
|
6753
|
-
"declaration": {
|
|
6754
|
-
"name": "PropertyShapes",
|
|
6755
|
-
"module": "src/modeller/property-sidebar/shapes/shapes.ts"
|
|
6756
|
-
}
|
|
6757
|
-
}
|
|
6758
|
-
]
|
|
6759
6756
|
}
|
|
6760
6757
|
]
|
|
6761
6758
|
}
|