@genesislcap/grid-pro 14.100.1-alpha-da50d69.0 → 14.101.0
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/dist/custom-elements.json +334 -4
- package/dist/dts/cell-editors/index.d.ts +2 -0
- package/dist/dts/cell-editors/index.d.ts.map +1 -0
- package/dist/dts/cell-editors/select.editor.d.ts +59 -0
- package/dist/dts/cell-editors/select.editor.d.ts.map +1 -0
- package/dist/dts/cell-renderers/boolean.renderer.d.ts +9 -10
- package/dist/dts/cell-renderers/boolean.renderer.d.ts.map +1 -1
- package/dist/dts/grid-components.d.ts +11 -2
- package/dist/dts/grid-components.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.d.ts.map +1 -1
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +8 -13
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/dts/grid-pro.d.ts.map +1 -1
- package/dist/dts/grid-pro.types.d.ts +2 -1
- package/dist/dts/grid-pro.types.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/cell-editors/index.js +1 -0
- package/dist/esm/cell-editors/select.editor.js +88 -0
- package/dist/esm/cell-renderers/boolean.renderer.js +49 -3
- package/dist/esm/grid-components.js +2 -0
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.js +15 -9
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +9 -3
- package/dist/esm/grid-pro.js +20 -28
- package/dist/esm/grid-pro.types.js +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/grid-pro.api.json +1010 -18
- package/dist/grid-pro.d.ts +100 -33
- package/docs/api/grid-pro.agselecteditorstyles.md +13 -0
- package/docs/api/grid-pro.booleanrenderer.changehandler.md +22 -0
- package/docs/api/grid-pro.booleanrenderer.getvalue.md +15 -0
- package/docs/api/grid-pro.booleanrenderer.init.md +2 -2
- package/docs/api/grid-pro.booleanrenderer.md +4 -1
- package/docs/api/grid-pro.booleanrenderer.params.md +1 -1
- package/docs/api/grid-pro.booleanrenderer.refresh.md +2 -2
- package/docs/api/grid-pro.booleanrenderer.selected.md +11 -0
- package/docs/api/grid-pro.foundationagbooleanrenderer.md +2 -2
- package/docs/api/grid-pro.foundationgridcomponents.md +11 -2
- package/docs/api/grid-pro.foundationselecteditor.md +24 -0
- package/docs/api/grid-pro.getagbooleanrenderertemplate.md +1 -1
- package/docs/api/grid-pro.getselecteditortemplate.md +13 -0
- package/docs/api/grid-pro.gridprorenderertypes.md +1 -0
- package/docs/api/grid-pro.md +10 -0
- package/docs/api/grid-pro.selecteditor.afterguiattached.md +15 -0
- package/docs/api/grid-pro.selecteditor.combobox.md +11 -0
- package/docs/api/grid-pro.selecteditor.destroy.md +15 -0
- package/docs/api/grid-pro.selecteditor.getgui.md +15 -0
- package/docs/api/grid-pro.selecteditor.getvalue.md +15 -0
- package/docs/api/grid-pro.selecteditor.init.md +22 -0
- package/docs/api/grid-pro.selecteditor.ispopup.md +15 -0
- package/docs/api/grid-pro.selecteditor.md +37 -0
- package/docs/api/grid-pro.selecteditor.params.md +11 -0
- package/docs/api/grid-pro.selecteditor.refresh.md +22 -0
- package/docs/api/grid-pro.selecteditor.value.md +11 -0
- package/docs/api/grid-pro.selecteditorparams.alloptionsresourcename.md +11 -0
- package/docs/api/grid-pro.selecteditorparams.datasourceoptions.md +11 -0
- package/docs/api/grid-pro.selecteditorparams.labelfield.md +11 -0
- package/docs/api/grid-pro.selecteditorparams.md +25 -0
- package/docs/api/grid-pro.selecteditorparams.valuefield.md +11 -0
- package/docs/api/grid-pro.selecteditorparams.values.md +11 -0
- package/docs/api-report.md +87 -14
- package/package.json +8 -8
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": {
|
|
13
13
|
"text": "object"
|
|
14
14
|
},
|
|
15
|
-
"default": "{\n foundationGridProActionRenderer,\n foundationGridProActionsMenuRenderer,\n foundationAgBooleanRenderer,\n foundationAgTextRenderer,\n foundationAgTextFieldRenderer,\n foundationAgSelectRenderer,\n foundationGridPro,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n this[key]().register(container, ...rest);\n }\n },\n}",
|
|
15
|
+
"default": "{\n foundationGridProActionRenderer,\n foundationGridProActionsMenuRenderer,\n foundationAgBooleanRenderer,\n foundationAgTextRenderer,\n foundationAgTextFieldRenderer,\n foundationAgSelectRenderer,\n foundationGridPro,\n selectEditor: foundationSelectEditor,\n register(container?: Container, ...rest: any[]) {\n if (!container) {\n // preserve backward compatibility with code that loops through\n // the values of this object and calls them as funcs with no args\n return;\n }\n for (const key in this) {\n if (key === 'register') {\n continue;\n }\n this[key]().register(container, ...rest);\n }\n },\n}",
|
|
16
16
|
"description": "The Grid Pro Components.",
|
|
17
17
|
"privacy": "public"
|
|
18
18
|
}
|
|
@@ -1474,6 +1474,14 @@
|
|
|
1474
1474
|
"package": "./cell-renderers"
|
|
1475
1475
|
}
|
|
1476
1476
|
},
|
|
1477
|
+
{
|
|
1478
|
+
"kind": "js",
|
|
1479
|
+
"name": "*",
|
|
1480
|
+
"declaration": {
|
|
1481
|
+
"name": "*",
|
|
1482
|
+
"package": "./cell-editors"
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1477
1485
|
{
|
|
1478
1486
|
"kind": "js",
|
|
1479
1487
|
"name": "*",
|
|
@@ -1828,6 +1836,307 @@
|
|
|
1828
1836
|
}
|
|
1829
1837
|
]
|
|
1830
1838
|
},
|
|
1839
|
+
{
|
|
1840
|
+
"kind": "javascript-module",
|
|
1841
|
+
"path": "src/cell-editors/index.ts",
|
|
1842
|
+
"declarations": [],
|
|
1843
|
+
"exports": [
|
|
1844
|
+
{
|
|
1845
|
+
"kind": "js",
|
|
1846
|
+
"name": "*",
|
|
1847
|
+
"declaration": {
|
|
1848
|
+
"name": "*",
|
|
1849
|
+
"package": "./select.editor"
|
|
1850
|
+
}
|
|
1851
|
+
}
|
|
1852
|
+
]
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"kind": "javascript-module",
|
|
1856
|
+
"path": "src/cell-editors/select.editor.ts",
|
|
1857
|
+
"declarations": [
|
|
1858
|
+
{
|
|
1859
|
+
"kind": "class",
|
|
1860
|
+
"description": "The AG Select Editor element.",
|
|
1861
|
+
"name": "SelectEditor",
|
|
1862
|
+
"members": [
|
|
1863
|
+
{
|
|
1864
|
+
"kind": "field",
|
|
1865
|
+
"name": "params",
|
|
1866
|
+
"type": {
|
|
1867
|
+
"text": "SelectEditorParams"
|
|
1868
|
+
},
|
|
1869
|
+
"privacy": "public"
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"kind": "field",
|
|
1873
|
+
"name": "value",
|
|
1874
|
+
"type": {
|
|
1875
|
+
"text": "string"
|
|
1876
|
+
},
|
|
1877
|
+
"privacy": "public"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"kind": "field",
|
|
1881
|
+
"name": "combobox",
|
|
1882
|
+
"type": {
|
|
1883
|
+
"text": "any"
|
|
1884
|
+
},
|
|
1885
|
+
"privacy": "public"
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
"kind": "method",
|
|
1889
|
+
"name": "init",
|
|
1890
|
+
"privacy": "public",
|
|
1891
|
+
"parameters": [
|
|
1892
|
+
{
|
|
1893
|
+
"name": "params",
|
|
1894
|
+
"type": {
|
|
1895
|
+
"text": "SelectEditorParams"
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
]
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"kind": "method",
|
|
1902
|
+
"name": "getGui",
|
|
1903
|
+
"privacy": "public",
|
|
1904
|
+
"return": {
|
|
1905
|
+
"type": {
|
|
1906
|
+
"text": "HTMLElement"
|
|
1907
|
+
}
|
|
1908
|
+
}
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"kind": "method",
|
|
1912
|
+
"name": "destroy",
|
|
1913
|
+
"privacy": "public",
|
|
1914
|
+
"return": {
|
|
1915
|
+
"type": {
|
|
1916
|
+
"text": "void"
|
|
1917
|
+
}
|
|
1918
|
+
}
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
"kind": "method",
|
|
1922
|
+
"name": "refresh",
|
|
1923
|
+
"privacy": "public",
|
|
1924
|
+
"return": {
|
|
1925
|
+
"type": {
|
|
1926
|
+
"text": "boolean"
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
"parameters": [
|
|
1930
|
+
{
|
|
1931
|
+
"name": "params",
|
|
1932
|
+
"type": {
|
|
1933
|
+
"text": "SelectEditorParams"
|
|
1934
|
+
}
|
|
1935
|
+
}
|
|
1936
|
+
]
|
|
1937
|
+
},
|
|
1938
|
+
{
|
|
1939
|
+
"kind": "method",
|
|
1940
|
+
"name": "getValue"
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
"kind": "method",
|
|
1944
|
+
"name": "isPopup",
|
|
1945
|
+
"return": {
|
|
1946
|
+
"type": {
|
|
1947
|
+
"text": "boolean"
|
|
1948
|
+
}
|
|
1949
|
+
}
|
|
1950
|
+
},
|
|
1951
|
+
{
|
|
1952
|
+
"kind": "method",
|
|
1953
|
+
"name": "afterGuiAttached"
|
|
1954
|
+
},
|
|
1955
|
+
{
|
|
1956
|
+
"kind": "field",
|
|
1957
|
+
"name": "_presentation",
|
|
1958
|
+
"type": {
|
|
1959
|
+
"text": "ComponentPresentation | null | undefined"
|
|
1960
|
+
},
|
|
1961
|
+
"privacy": "private",
|
|
1962
|
+
"default": "void 0",
|
|
1963
|
+
"inheritedFrom": {
|
|
1964
|
+
"name": "FoundationElement",
|
|
1965
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1966
|
+
}
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"kind": "field",
|
|
1970
|
+
"name": "$presentation",
|
|
1971
|
+
"type": {
|
|
1972
|
+
"text": "ComponentPresentation | null"
|
|
1973
|
+
},
|
|
1974
|
+
"privacy": "public",
|
|
1975
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
1976
|
+
"inheritedFrom": {
|
|
1977
|
+
"name": "FoundationElement",
|
|
1978
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1979
|
+
}
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
"kind": "field",
|
|
1983
|
+
"name": "template",
|
|
1984
|
+
"type": {
|
|
1985
|
+
"text": "ElementViewTemplate | void | null"
|
|
1986
|
+
},
|
|
1987
|
+
"privacy": "public",
|
|
1988
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
1989
|
+
"inheritedFrom": {
|
|
1990
|
+
"name": "FoundationElement",
|
|
1991
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
1992
|
+
}
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
"kind": "method",
|
|
1996
|
+
"name": "templateChanged",
|
|
1997
|
+
"privacy": "protected",
|
|
1998
|
+
"return": {
|
|
1999
|
+
"type": {
|
|
2000
|
+
"text": "void"
|
|
2001
|
+
}
|
|
2002
|
+
},
|
|
2003
|
+
"inheritedFrom": {
|
|
2004
|
+
"name": "FoundationElement",
|
|
2005
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2006
|
+
}
|
|
2007
|
+
},
|
|
2008
|
+
{
|
|
2009
|
+
"kind": "field",
|
|
2010
|
+
"name": "styles",
|
|
2011
|
+
"type": {
|
|
2012
|
+
"text": "ElementStyles | void | null"
|
|
2013
|
+
},
|
|
2014
|
+
"privacy": "public",
|
|
2015
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
2016
|
+
"inheritedFrom": {
|
|
2017
|
+
"name": "FoundationElement",
|
|
2018
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2019
|
+
}
|
|
2020
|
+
},
|
|
2021
|
+
{
|
|
2022
|
+
"kind": "method",
|
|
2023
|
+
"name": "stylesChanged",
|
|
2024
|
+
"privacy": "protected",
|
|
2025
|
+
"return": {
|
|
2026
|
+
"type": {
|
|
2027
|
+
"text": "void"
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
"inheritedFrom": {
|
|
2031
|
+
"name": "FoundationElement",
|
|
2032
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2033
|
+
}
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"kind": "method",
|
|
2037
|
+
"name": "compose",
|
|
2038
|
+
"privacy": "public",
|
|
2039
|
+
"static": true,
|
|
2040
|
+
"return": {
|
|
2041
|
+
"type": {
|
|
2042
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
2043
|
+
}
|
|
2044
|
+
},
|
|
2045
|
+
"parameters": [
|
|
2046
|
+
{
|
|
2047
|
+
"name": "this",
|
|
2048
|
+
"type": {
|
|
2049
|
+
"text": "K"
|
|
2050
|
+
}
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
"name": "elementDefinition",
|
|
2054
|
+
"type": {
|
|
2055
|
+
"text": "T"
|
|
2056
|
+
},
|
|
2057
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
2058
|
+
}
|
|
2059
|
+
],
|
|
2060
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
2061
|
+
"inheritedFrom": {
|
|
2062
|
+
"name": "FoundationElement",
|
|
2063
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
2066
|
+
],
|
|
2067
|
+
"superclass": {
|
|
2068
|
+
"name": "FoundationElement",
|
|
2069
|
+
"package": "@microsoft/fast-foundation"
|
|
2070
|
+
},
|
|
2071
|
+
"tagName": "%%prefix%%-select-editor",
|
|
2072
|
+
"customElement": true
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
"kind": "variable",
|
|
2076
|
+
"name": "agSelectEditorStyles",
|
|
2077
|
+
"default": "css`\n :host,\n .select-renderer,\n zero-option,\n ::part(listbox),\n ::part(control) {\n max-width: var(--select-renderer-max-width);\n min-width: 100%;\n }\n`",
|
|
2078
|
+
"description": "The AG Select Renderer Styles.",
|
|
2079
|
+
"privacy": "public"
|
|
2080
|
+
},
|
|
2081
|
+
{
|
|
2082
|
+
"kind": "function",
|
|
2083
|
+
"name": "getSelectEditorTemplate",
|
|
2084
|
+
"parameters": [
|
|
2085
|
+
{
|
|
2086
|
+
"name": "designSystem",
|
|
2087
|
+
"default": "'foundation'",
|
|
2088
|
+
"description": "The design system prefix to use. Defaults to 'foundation'."
|
|
2089
|
+
}
|
|
2090
|
+
],
|
|
2091
|
+
"description": "Get a Design System prefixed Select template.",
|
|
2092
|
+
"return": {
|
|
2093
|
+
"type": {
|
|
2094
|
+
"text": ""
|
|
2095
|
+
}
|
|
2096
|
+
},
|
|
2097
|
+
"privacy": "public"
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
"kind": "variable",
|
|
2101
|
+
"name": "foundationSelectEditor",
|
|
2102
|
+
"privacy": "public"
|
|
2103
|
+
}
|
|
2104
|
+
],
|
|
2105
|
+
"exports": [
|
|
2106
|
+
{
|
|
2107
|
+
"kind": "js",
|
|
2108
|
+
"name": "SelectEditor",
|
|
2109
|
+
"declaration": {
|
|
2110
|
+
"name": "SelectEditor",
|
|
2111
|
+
"module": "src/cell-editors/select.editor.ts"
|
|
2112
|
+
}
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"kind": "js",
|
|
2116
|
+
"name": "agSelectEditorStyles",
|
|
2117
|
+
"declaration": {
|
|
2118
|
+
"name": "agSelectEditorStyles",
|
|
2119
|
+
"module": "src/cell-editors/select.editor.ts"
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
"kind": "js",
|
|
2124
|
+
"name": "getSelectEditorTemplate",
|
|
2125
|
+
"declaration": {
|
|
2126
|
+
"name": "getSelectEditorTemplate",
|
|
2127
|
+
"module": "src/cell-editors/select.editor.ts"
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"kind": "js",
|
|
2132
|
+
"name": "foundationSelectEditor",
|
|
2133
|
+
"declaration": {
|
|
2134
|
+
"name": "foundationSelectEditor",
|
|
2135
|
+
"module": "src/cell-editors/select.editor.ts"
|
|
2136
|
+
}
|
|
2137
|
+
}
|
|
2138
|
+
]
|
|
2139
|
+
},
|
|
1831
2140
|
{
|
|
1832
2141
|
"kind": "javascript-module",
|
|
1833
2142
|
"path": "src/cell-renderers/action.renderer.ts",
|
|
@@ -2359,10 +2668,17 @@
|
|
|
2359
2668
|
"kind": "field",
|
|
2360
2669
|
"name": "params",
|
|
2361
2670
|
"type": {
|
|
2362
|
-
"text": "
|
|
2671
|
+
"text": "ICellRendererParams"
|
|
2363
2672
|
},
|
|
2364
2673
|
"privacy": "public"
|
|
2365
2674
|
},
|
|
2675
|
+
{
|
|
2676
|
+
"kind": "field",
|
|
2677
|
+
"name": "selected",
|
|
2678
|
+
"type": {
|
|
2679
|
+
"text": "boolean"
|
|
2680
|
+
}
|
|
2681
|
+
},
|
|
2366
2682
|
{
|
|
2367
2683
|
"kind": "method",
|
|
2368
2684
|
"name": "init",
|
|
@@ -2371,11 +2687,21 @@
|
|
|
2371
2687
|
{
|
|
2372
2688
|
"name": "params",
|
|
2373
2689
|
"type": {
|
|
2374
|
-
"text": "
|
|
2690
|
+
"text": "ICellRendererParams"
|
|
2375
2691
|
}
|
|
2376
2692
|
}
|
|
2377
2693
|
]
|
|
2378
2694
|
},
|
|
2695
|
+
{
|
|
2696
|
+
"kind": "method",
|
|
2697
|
+
"name": "changeHandler",
|
|
2698
|
+
"privacy": "public",
|
|
2699
|
+
"parameters": [
|
|
2700
|
+
{
|
|
2701
|
+
"name": "e"
|
|
2702
|
+
}
|
|
2703
|
+
]
|
|
2704
|
+
},
|
|
2379
2705
|
{
|
|
2380
2706
|
"kind": "method",
|
|
2381
2707
|
"name": "getGui",
|
|
@@ -2399,11 +2725,15 @@
|
|
|
2399
2725
|
{
|
|
2400
2726
|
"name": "params",
|
|
2401
2727
|
"type": {
|
|
2402
|
-
"text": "
|
|
2728
|
+
"text": "ICellRendererParams"
|
|
2403
2729
|
}
|
|
2404
2730
|
}
|
|
2405
2731
|
]
|
|
2406
2732
|
},
|
|
2733
|
+
{
|
|
2734
|
+
"kind": "method",
|
|
2735
|
+
"name": "getValue"
|
|
2736
|
+
},
|
|
2407
2737
|
{
|
|
2408
2738
|
"kind": "field",
|
|
2409
2739
|
"name": "_presentation",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cell-editors/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { ICellEditorComp, ICellEditorParams } from '@ag-grid-community/core';
|
|
2
|
+
import { DatasourceOptions } from '@genesislcap/foundation-comms';
|
|
3
|
+
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
4
|
+
/**
|
|
5
|
+
* Parameters used to configure {@link SelectEditor}
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface SelectEditorParams extends ICellEditorParams {
|
|
9
|
+
allOptionsResourceName: string;
|
|
10
|
+
valueField: string;
|
|
11
|
+
labelField: string;
|
|
12
|
+
values: any[];
|
|
13
|
+
datasourceOptions: DatasourceOptions[];
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* The AG Select Editor element.
|
|
17
|
+
* @public
|
|
18
|
+
* @tagname %%prefix%%-select-editor
|
|
19
|
+
*/
|
|
20
|
+
export declare class SelectEditor extends FoundationElement implements ICellEditorComp {
|
|
21
|
+
params: SelectEditorParams;
|
|
22
|
+
value: string;
|
|
23
|
+
combobox: any;
|
|
24
|
+
init(params: SelectEditorParams): void;
|
|
25
|
+
getGui(): HTMLElement;
|
|
26
|
+
destroy(): void;
|
|
27
|
+
refresh(params: SelectEditorParams): boolean;
|
|
28
|
+
getValue(): string;
|
|
29
|
+
isPopup(): boolean;
|
|
30
|
+
afterGuiAttached(): void;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* The AG Select Renderer Styles.
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export declare const agSelectEditorStyles: import("@microsoft/fast-element").ElementStyles;
|
|
37
|
+
/**
|
|
38
|
+
* Get a Design System prefixed Select template.
|
|
39
|
+
* @param designSystem - The design system prefix to use. Defaults to 'foundation'.
|
|
40
|
+
* @returns A Select component template prefixed with the correct design system.
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare const getSelectEditorTemplate: (designSystem?: string) => import("@microsoft/fast-element").ViewTemplate<SelectEditor, any>;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @public
|
|
47
|
+
* @remarks
|
|
48
|
+
* HTML Element: \<foundation-select-editor\>
|
|
49
|
+
*/
|
|
50
|
+
export declare const foundationSelectEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
51
|
+
baseName: string;
|
|
52
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
53
|
+
template: import("@microsoft/fast-element").ViewTemplate<SelectEditor, any>;
|
|
54
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
55
|
+
baseName: string;
|
|
56
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
57
|
+
template: import("@microsoft/fast-element").ViewTemplate<SelectEditor, any>;
|
|
58
|
+
}, typeof SelectEditor>;
|
|
59
|
+
//# sourceMappingURL=select.editor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select.editor.d.ts","sourceRoot":"","sources":["../../../src/cell-editors/select.editor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAC7E,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAElE,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAE/D;;;GAGG;AACH,MAAM,WAAW,kBAAmB,SAAQ,iBAAiB;IAC3D,sBAAsB,EAAE,MAAM,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,GAAG,EAAE,CAAC;IACd,iBAAiB,EAAE,iBAAiB,EAAE,CAAC;CACxC;AAED;;;;GAIG;AACH,qBAAa,YAAa,SAAQ,iBAAkB,YAAW,eAAe;IACzD,MAAM,EAAE,kBAAkB,CAAC;IAC3B,KAAK,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,GAAG,CAAC;IAEd,IAAI,CAAC,MAAM,EAAE,kBAAkB;IAM/B,MAAM,IAAI,WAAW;IAIrB,OAAO,IAAI,IAAI;IAEf,OAAO,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO;IAInD,QAAQ;IAIR,OAAO,IAAI,OAAO;IAIlB,gBAAgB;CAGjB;AAED;;;GAGG;AACH,eAAO,MAAM,oBAAoB,iDAShC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,uBAAuB,8FAiBnC,CAAC;AACF;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;uBAIjC,CAAC"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { ICellRendererComp, ICellRendererParams } from '@ag-grid-community/core';
|
|
2
2
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
3
|
-
interface FuiCellRendererParams extends ICellRendererParams {
|
|
4
|
-
changeHandler?: () => any;
|
|
5
|
-
}
|
|
6
3
|
/**
|
|
7
4
|
* The AG Boolean Renderer element.
|
|
8
5
|
* @public
|
|
9
6
|
* @tagname %%prefix%%-boolean-renderer
|
|
10
7
|
*/
|
|
11
8
|
export declare class BooleanRenderer extends FoundationElement implements ICellRendererComp {
|
|
12
|
-
params:
|
|
13
|
-
|
|
9
|
+
params: ICellRendererParams;
|
|
10
|
+
selected: boolean;
|
|
11
|
+
init(params: ICellRendererParams): void;
|
|
12
|
+
changeHandler(e: any): void;
|
|
14
13
|
getGui(): HTMLElement;
|
|
15
14
|
destroy(): void;
|
|
16
|
-
refresh(params:
|
|
15
|
+
refresh(params: ICellRendererParams): boolean;
|
|
16
|
+
getValue(): boolean;
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* The AG Boolean Renderer Styles.
|
|
@@ -26,7 +26,7 @@ export declare const agBooleanRendererStyles: import("@microsoft/fast-element").
|
|
|
26
26
|
* @returns A Checkbox component template prefixed with the correct design system.
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
|
-
export declare const getAgBooleanRendererTemplate: (designSystem?: string) => import("@microsoft/fast-element").ViewTemplate<
|
|
29
|
+
export declare const getAgBooleanRendererTemplate: (designSystem?: string) => import("@microsoft/fast-element").ViewTemplate<BooleanRenderer, any>;
|
|
30
30
|
/**
|
|
31
31
|
* A function that returns a Foundation Boolean Renderer registration for configuring the component with a DesignSystem.
|
|
32
32
|
*
|
|
@@ -37,11 +37,10 @@ export declare const getAgBooleanRendererTemplate: (designSystem?: string) => im
|
|
|
37
37
|
export declare const foundationAgBooleanRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
38
38
|
baseName: string;
|
|
39
39
|
styles: import("@microsoft/fast-element").ElementStyles;
|
|
40
|
-
template: import("@microsoft/fast-element").ViewTemplate<
|
|
40
|
+
template: import("@microsoft/fast-element").ViewTemplate<BooleanRenderer, any>;
|
|
41
41
|
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
42
42
|
baseName: string;
|
|
43
43
|
styles: import("@microsoft/fast-element").ElementStyles;
|
|
44
|
-
template: import("@microsoft/fast-element").ViewTemplate<
|
|
44
|
+
template: import("@microsoft/fast-element").ViewTemplate<BooleanRenderer, any>;
|
|
45
45
|
}, typeof BooleanRenderer>;
|
|
46
|
-
export {};
|
|
47
46
|
//# sourceMappingURL=boolean.renderer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boolean.renderer.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/boolean.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"boolean.renderer.d.ts","sourceRoot":"","sources":["../../../src/cell-renderers/boolean.renderer.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,iBAAiB,EACjB,mBAAmB,EAEpB,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAE/D;;;;GAIG;AACH,qBAAa,eAAgB,SAAQ,iBAAkB,YAAW,iBAAiB;IAE1E,MAAM,EAAE,mBAAmB,CAAC;IAGnC,QAAQ,EAAE,OAAO,CAAC;IAEX,IAAI,CAAC,MAAM,EAAE,mBAAmB;IAMhC,aAAa,CAAC,CAAC,KAAA;IAgDf,MAAM,IAAI,WAAW;IAIrB,OAAO;IAEP,OAAO,CAAC,MAAM,EAAE,mBAAmB;IAK1C,QAAQ;CAGT;AAED;;;GAGG;AACH,eAAO,MAAM,uBAAuB,iDAMnC,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,4BAA4B,iGASxC,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;0BAItC,CAAC"}
|
|
@@ -24,11 +24,11 @@ export declare const foundationGridComponents: {
|
|
|
24
24
|
foundationAgBooleanRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
25
25
|
baseName: string;
|
|
26
26
|
styles: import("@microsoft/fast-element").ElementStyles;
|
|
27
|
-
template: import("@microsoft/fast-element").ViewTemplate<
|
|
27
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./cell-renderers").BooleanRenderer, any>;
|
|
28
28
|
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
29
29
|
baseName: string;
|
|
30
30
|
styles: import("@microsoft/fast-element").ElementStyles;
|
|
31
|
-
template: import("@microsoft/fast-element").ViewTemplate<
|
|
31
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./cell-renderers").BooleanRenderer, any>;
|
|
32
32
|
}, typeof import("./cell-renderers").BooleanRenderer>;
|
|
33
33
|
foundationAgTextRenderer: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
34
34
|
baseName: string;
|
|
@@ -68,6 +68,15 @@ export declare const foundationGridComponents: {
|
|
|
68
68
|
styles: import("@microsoft/fast-element").ElementStyles;
|
|
69
69
|
template: import("@microsoft/fast-element").ViewTemplate<any, any>;
|
|
70
70
|
}, typeof import("./grid-pro").GridPro>;
|
|
71
|
+
selectEditor: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
|
|
72
|
+
baseName: string;
|
|
73
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
74
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./cell-editors").SelectEditor, any>;
|
|
75
|
+
}>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
|
|
76
|
+
baseName: string;
|
|
77
|
+
styles: import("@microsoft/fast-element").ElementStyles;
|
|
78
|
+
template: import("@microsoft/fast-element").ViewTemplate<import("./cell-editors").SelectEditor, any>;
|
|
79
|
+
}, typeof import("./cell-editors").SelectEditor>;
|
|
71
80
|
register(container?: Container, ...rest: any[]): void;
|
|
72
81
|
};
|
|
73
82
|
//# sourceMappingURL=grid-components.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-components.d.ts","sourceRoot":"","sources":["../../src/grid-components.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"grid-components.d.ts","sourceRoot":"","sources":["../../src/grid-components.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAY5D;;;;GAIG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBASd,SAAS,WAAW,GAAG,EAAE;CAa/C,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-pro-genesis-datasource-next.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAGV,qBAAqB,EACrB,wBAAwB,EAKzB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,IAAI,EACJ,OAAO,EAMP,wBAAwB,EAIxB,cAAc,EAEd,gBAAgB,EAEjB,MAAM,+BAA+B,CAAC;AAGvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"grid-pro-genesis-datasource-next.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAGV,qBAAqB,EACrB,wBAAwB,EAKzB,MAAM,yBAAyB,CAAC;AACjC,OAAO,EACL,IAAI,EACJ,OAAO,EAMP,wBAAwB,EAIxB,cAAc,EAEd,gBAAgB,EAEjB,MAAM,+BAA+B,CAAC;AAGvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAc/D;;;;;GAKG;AACH,MAAM,MAAM,uBAAuB,GAAG;IACpC,MAAM,EAAE,gBAAgB,CAAC,wBAAwB,CAAC,CAAC;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,GAAG,CAAC;IACrB,eAAe,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IACxC,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IAEnC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF;;;GAGG;AACH,qBAAa,gBAAiB,YAAW,qBAAqB;IACtD,IAAI,EAAG,IAAI,CAAC;IACT,OAAO,EAAG,OAAO,CAAC;IAE3B,gBAAgB,EAAE,gBAAgB,CAAC,wBAAwB,CAAC,CAAC;IAC7D,OAAO,CAAC,YAAY,CAAS;IAC7B,cAAc,EAAE,GAAG,CAAC;IACpB,OAAO,CAAC,eAAe,CAAwB;IAC/C,OAAO,CAAC,eAAe,CAAmB;IAE1C,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,UAAU,CAAU;IAE5B,eAAe,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,OAAO,CAAC,iBAAiB,CAAK;IAE9B;;;OAGG;IACH,OAAO,CAAC,iBAAiB,CAAK;IAE9B,OAAO,CAAC,QAAQ,CAAS;IAEzB,OAAO,CAAC,mBAAmB,CAAK;IAChC,OAAO,CAAC,cAAc,CAAK;IAE3B,OAAO,CAAC,kBAAkB,CAAM;IAChC,OAAO,CAAC,qBAAqB,CAAoB;IACjD,OAAO,CAAC,gBAAgB,CAAkB;IAE1C,OAAO,CAAC,OAAO,CAA+B;IAC9C,OAAO,CAAC,aAAa,CAAqB;IAC1C,OAAO,CAAC,KAAK,CAAS;gBAEV,OAAO,EAAE,uBAAuB;IAgBtC,OAAO,CAAC,MAAM,EAAE,wBAAwB;IAiK9C,OAAO,CAAC,UAAU;IAUlB,OAAO,CAAC,mBAAmB;IAe3B,OAAO,CAAC,6BAA6B;IAWrC,OAAO,CAAC,uBAAuB;IAa/B,OAAO,CAAC,6BAA6B;IAmBrC,OAAO,CAAC,mBAAmB;IA6D3B,OAAO,CAAC,gBAAgB;CAKzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAID;;;;GAIG;AACH,qBAGa,2BAA4B,SAAQ,gCAAiC;IACvE,OAAO,EAAG,OAAO,CAAC;IAErB,QAAQ,EAAE,MAAM,CAAC;IACvB,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM;IAWlD,MAAM,EAAE,MAAM,CAAC;IACgC,UAAU,EAAE,OAAO,CAAS;IAChD,OAAO,EAAE,MAAM,CAAmC;IAClD,OAAO,EAAE,MAAM,CAAoC;IAChD,UAAU,UAAQ;IACrB,OAAO,EAAE,MAAM,CAAC;IACX,YAAY,EAAE,MAAM,CAAC;IAC3D,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAK3B,UAAU,UAAS;IACf,KAAK,SAAa;IACtB,OAAO,UAAS;IAE3C,OAAO,CAAC,OAAO,CAAwB;IACvC,OAAO,CAAC,gBAAgB,CAAmB;IAC3C,OAAO,CAAC,gBAAgB,CAAmB;IAE3C,iBAAiB;IASjB,oBAAoB;IASpB,IAAI;IAgEJ,KAAK;IAOL,OAAO;IAKP,OAAO,KAAK,MAAM,GAEjB;IAED,OAAO,CAAC,YAAY;IAWpB,OAAO,CAAC,kBAAkB;IAU1B,IAAI,MAAM,QA2BT;YAEa,sBAAsB;IAapC,OAAO,CAAC,eAAe;CAyDxB"}
|
|
@@ -38,11 +38,6 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
38
38
|
lang: string;
|
|
39
39
|
readonly offsetHeight: number;
|
|
40
40
|
readonly offsetLeft: number;
|
|
41
|
-
/**
|
|
42
|
-
* Returns the row id attribute, depending on the resource type.
|
|
43
|
-
* @remarks Will favour the `row-id` attribute if set.
|
|
44
|
-
* @internal
|
|
45
|
-
*/
|
|
46
41
|
readonly offsetParent: Element;
|
|
47
42
|
readonly offsetTop: number;
|
|
48
43
|
readonly offsetWidth: number;
|
|
@@ -77,13 +72,12 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
77
72
|
scrollTop: number;
|
|
78
73
|
readonly scrollWidth: number;
|
|
79
74
|
readonly shadowRoot: ShadowRoot;
|
|
80
|
-
|
|
75
|
+
slot: string;
|
|
76
|
+
readonly tagName: string; /**
|
|
81
77
|
* Resets the datasource to its initial state.
|
|
82
78
|
* @public
|
|
83
79
|
* @deprecated Use `deinit` instead
|
|
84
80
|
*/
|
|
85
|
-
slot: string;
|
|
86
|
-
readonly tagName: string;
|
|
87
81
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
88
82
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
89
83
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
@@ -109,11 +103,6 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
109
103
|
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
110
104
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
111
105
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
112
|
-
/**
|
|
113
|
-
* Sets the columnDefs and rowData for the grid.
|
|
114
|
-
* @remarks This should only happen once, when the grid is first initialized. Follow up updates will use the agTransaction.
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
106
|
matches(selectors: string): boolean;
|
|
118
107
|
releasePointerCapture(pointerId: number): void;
|
|
119
108
|
removeAttribute(qualifiedName: string): void;
|
|
@@ -266,6 +255,12 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
266
255
|
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
267
256
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
268
257
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
258
|
+
/**
|
|
259
|
+
* Maps the transaction data to the row data mapper function, if it exists.
|
|
260
|
+
* @param transaction - The transaction data to be mapped.
|
|
261
|
+
* @param operations - The operations to be mapped. Can be 'add', 'update' or 'remove'.
|
|
262
|
+
* @returns The mapped transaction (if the row data mapper function exists), or the original transaction.
|
|
263
|
+
*/
|
|
269
264
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
270
265
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
271
266
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAU,WAAW,EAAE,WAAW,EAAsB,MAAM,yBAAyB,CAAC;AACpG,OAAO,EACL,IAAI,EACJ,OAAO,EAEP,UAAU,EAYX,MAAM,+BAA+B,CAAC;AAGvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid-pro.d.ts","sourceRoot":"","sources":["../../src/grid-pro.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,MAAM,EACN,SAAS,EACT,WAAW,EAEX,OAAO,EACP,WAAW,EAEZ,MAAM,yBAAyB,CAAC;AACjC,OAAO,EAIL,IAAI,EAEL,MAAM,yBAAyB,CAAC;AASjC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"grid-pro.d.ts","sourceRoot":"","sources":["../../src/grid-pro.ts"],"names":[],"mappings":"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"}
|