@genesislcap/grid-tabulator 14.402.1 → 14.403.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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +1954 -1954
  2. package/package.json +13 -13
@@ -1651,515 +1651,383 @@
1651
1651
  },
1652
1652
  {
1653
1653
  "kind": "javascript-module",
1654
- "path": "src/cell-formatters/action.formatter.ts",
1654
+ "path": "src/cell-editors/date.editor.ts",
1655
1655
  "declarations": [
1656
1656
  {
1657
- "kind": "function",
1658
- "name": "actionFormatter",
1659
- "return": {
1660
- "type": {
1661
- "text": ""
1662
- }
1663
- },
1664
- "parameters": [
1657
+ "kind": "class",
1658
+ "description": "The date editor class for grid-tabulator",
1659
+ "name": "DateEditor",
1660
+ "members": [
1665
1661
  {
1666
- "name": "cell",
1662
+ "kind": "field",
1663
+ "name": "params",
1664
+ "type": {
1665
+ "text": "DateEditorParams"
1666
+ }
1667
+ },
1668
+ {
1669
+ "kind": "field",
1670
+ "name": "dateField",
1667
1671
  "type": {
1668
1672
  "text": "any"
1673
+ }
1674
+ },
1675
+ {
1676
+ "kind": "method",
1677
+ "name": "init",
1678
+ "parameters": [
1679
+ {
1680
+ "name": "params",
1681
+ "type": {
1682
+ "text": "DateEditorParams"
1683
+ }
1684
+ }
1685
+ ],
1686
+ "description": "Initialize the editor with parameters"
1687
+ },
1688
+ {
1689
+ "kind": "method",
1690
+ "name": "getValue",
1691
+ "description": "Get current value"
1692
+ },
1693
+ {
1694
+ "kind": "method",
1695
+ "name": "getFormattedValue",
1696
+ "description": "Format value for display"
1697
+ },
1698
+ {
1699
+ "kind": "method",
1700
+ "name": "focus",
1701
+ "description": "Set focus to the input"
1702
+ },
1703
+ {
1704
+ "kind": "method",
1705
+ "name": "handleKeyDown",
1706
+ "parameters": [
1707
+ {
1708
+ "name": "event",
1709
+ "type": {
1710
+ "text": "KeyboardEvent"
1711
+ }
1712
+ }
1713
+ ],
1714
+ "description": "Process key down events"
1715
+ },
1716
+ {
1717
+ "kind": "field",
1718
+ "name": "_presentation",
1719
+ "type": {
1720
+ "text": "ComponentPresentation | null | undefined"
1669
1721
  },
1670
- "description": "The cell component provided by Tabulator"
1722
+ "privacy": "private",
1723
+ "default": "void 0",
1724
+ "inheritedFrom": {
1725
+ "name": "FoundationElement",
1726
+ "module": "src/foundation-element/foundation-element.ts"
1727
+ }
1671
1728
  },
1672
1729
  {
1673
- "name": "formatterParams",
1674
- "default": "{}",
1730
+ "kind": "field",
1731
+ "name": "$presentation",
1675
1732
  "type": {
1676
- "text": "ActionFormatterParams<T>"
1733
+ "text": "ComponentPresentation | null"
1677
1734
  },
1678
- "description": "Action formatter parameters"
1735
+ "privacy": "public",
1736
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1737
+ "inheritedFrom": {
1738
+ "name": "FoundationElement",
1739
+ "module": "src/foundation-element/foundation-element.ts"
1740
+ }
1741
+ },
1742
+ {
1743
+ "kind": "field",
1744
+ "name": "template",
1745
+ "type": {
1746
+ "text": "ElementViewTemplate | void | null"
1747
+ },
1748
+ "privacy": "public",
1749
+ "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.",
1750
+ "inheritedFrom": {
1751
+ "name": "FoundationElement",
1752
+ "module": "src/foundation-element/foundation-element.ts"
1753
+ }
1754
+ },
1755
+ {
1756
+ "kind": "method",
1757
+ "name": "templateChanged",
1758
+ "privacy": "protected",
1759
+ "return": {
1760
+ "type": {
1761
+ "text": "void"
1762
+ }
1763
+ },
1764
+ "inheritedFrom": {
1765
+ "name": "FoundationElement",
1766
+ "module": "src/foundation-element/foundation-element.ts"
1767
+ }
1768
+ },
1769
+ {
1770
+ "kind": "field",
1771
+ "name": "styles",
1772
+ "type": {
1773
+ "text": "ElementStyles | void | null"
1774
+ },
1775
+ "privacy": "public",
1776
+ "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.",
1777
+ "inheritedFrom": {
1778
+ "name": "FoundationElement",
1779
+ "module": "src/foundation-element/foundation-element.ts"
1780
+ }
1781
+ },
1782
+ {
1783
+ "kind": "method",
1784
+ "name": "stylesChanged",
1785
+ "privacy": "protected",
1786
+ "return": {
1787
+ "type": {
1788
+ "text": "void"
1789
+ }
1790
+ },
1791
+ "inheritedFrom": {
1792
+ "name": "FoundationElement",
1793
+ "module": "src/foundation-element/foundation-element.ts"
1794
+ }
1795
+ },
1796
+ {
1797
+ "kind": "method",
1798
+ "name": "compose",
1799
+ "privacy": "public",
1800
+ "static": true,
1801
+ "return": {
1802
+ "type": {
1803
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1804
+ }
1805
+ },
1806
+ "parameters": [
1807
+ {
1808
+ "name": "this",
1809
+ "type": {
1810
+ "text": "K"
1811
+ }
1812
+ },
1813
+ {
1814
+ "name": "elementDefinition",
1815
+ "type": {
1816
+ "text": "T"
1817
+ },
1818
+ "description": "The definition of the element to create the registry\nfunction for."
1819
+ }
1820
+ ],
1821
+ "description": "Defines an element registry function with a set of element definition defaults.",
1822
+ "inheritedFrom": {
1823
+ "name": "FoundationElement",
1824
+ "module": "src/foundation-element/foundation-element.ts"
1825
+ }
1679
1826
  }
1680
1827
  ],
1681
- "description": "Formatter that displays an action button in the cell.\nStyled to match grid-pro action renderer.",
1682
- "privacy": "public"
1683
- }
1684
- ],
1685
- "exports": [
1686
- {
1687
- "kind": "js",
1688
- "name": "actionFormatter",
1689
- "declaration": {
1690
- "name": "actionFormatter",
1691
- "module": "src/cell-formatters/action.formatter.ts"
1828
+ "superclass": {
1829
+ "name": "FoundationElement",
1830
+ "package": "@microsoft/fast-foundation"
1692
1831
  }
1693
- }
1694
- ]
1695
- },
1696
- {
1697
- "kind": "javascript-module",
1698
- "path": "src/cell-formatters/actions-menu.formatter.ts",
1699
- "declarations": [
1832
+ },
1833
+ {
1834
+ "kind": "variable",
1835
+ "name": "dateEditorStyles",
1836
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
1837
+ "description": "Styles for the date editor"
1838
+ },
1700
1839
  {
1701
1840
  "kind": "function",
1702
- "name": "actionsMenuFormatter",
1841
+ "name": "getDateEditorTemplate",
1842
+ "parameters": [
1843
+ {
1844
+ "name": "prefix",
1845
+ "default": "'foundation'",
1846
+ "description": "The design system prefix to use. Defaults to 'foundation'."
1847
+ }
1848
+ ],
1849
+ "description": "Get a Design System prefixed date field template.",
1703
1850
  "return": {
1704
1851
  "type": {
1705
1852
  "text": ""
1706
1853
  }
1707
1854
  },
1708
- "parameters": [
1709
- {
1710
- "name": "cell",
1711
- "type": {
1712
- "text": "any"
1713
- },
1714
- "description": "The cell component provided by Tabulator"
1715
- },
1716
- {
1717
- "name": "formatterParams",
1718
- "default": "{}",
1719
- "type": {
1720
- "text": "ActionsMenuFormatterParams<T>"
1721
- },
1722
- "description": "Actions menu formatter parameters"
1723
- }
1724
- ],
1725
- "description": "Formatter that displays a dropdown menu of actions in the cell.\nStyled to match grid-pro actions-menu renderer.",
1726
1855
  "privacy": "public"
1856
+ },
1857
+ {
1858
+ "kind": "variable",
1859
+ "name": "foundationDateEditor",
1860
+ "description": "Definition for the date editor component"
1727
1861
  }
1728
1862
  ],
1729
1863
  "exports": [
1730
1864
  {
1731
1865
  "kind": "js",
1732
- "name": "actionsMenuFormatter",
1866
+ "name": "DateEditor",
1733
1867
  "declaration": {
1734
- "name": "actionsMenuFormatter",
1735
- "module": "src/cell-formatters/actions-menu.formatter.ts"
1868
+ "name": "DateEditor",
1869
+ "module": "src/cell-editors/date.editor.ts"
1736
1870
  }
1737
- }
1738
- ]
1739
- },
1740
- {
1741
- "kind": "javascript-module",
1742
- "path": "src/cell-formatters/boolean.formatter.ts",
1743
- "declarations": [
1744
- {
1745
- "kind": "function",
1746
- "name": "booleanFormatter",
1747
- "return": {
1748
- "type": {
1749
- "text": ""
1750
- }
1751
- },
1752
- "parameters": [
1753
- {
1754
- "name": "cell",
1755
- "type": {
1756
- "text": "any"
1757
- },
1758
- "description": "The cell component provided by Tabulator"
1759
- },
1760
- {
1761
- "name": "formatterParams",
1762
- "default": "{}",
1763
- "type": {
1764
- "text": "BooleanFormatterParams<T>"
1765
- },
1766
- "description": "Boolean formatter parameters"
1767
- }
1768
- ],
1769
- "description": "Formatter that displays boolean values using a checkbox component.\nStyled to match grid-pro boolean renderer.",
1770
- "privacy": "public"
1771
- }
1772
- ],
1773
- "exports": [
1871
+ },
1774
1872
  {
1775
1873
  "kind": "js",
1776
- "name": "booleanFormatter",
1874
+ "name": "dateEditorStyles",
1777
1875
  "declaration": {
1778
- "name": "booleanFormatter",
1779
- "module": "src/cell-formatters/boolean.formatter.ts"
1876
+ "name": "dateEditorStyles",
1877
+ "module": "src/cell-editors/date.editor.ts"
1780
1878
  }
1781
- }
1782
- ]
1783
- },
1784
- {
1785
- "kind": "javascript-module",
1786
- "path": "src/cell-formatters/constants.ts",
1787
- "declarations": [],
1788
- "exports": []
1789
- },
1790
- {
1791
- "kind": "javascript-module",
1792
- "path": "src/cell-formatters/editable.formatter.ts",
1793
- "declarations": [
1879
+ },
1794
1880
  {
1795
- "kind": "function",
1796
- "name": "editableFormatter",
1797
- "return": {
1798
- "type": {
1799
- "text": ""
1800
- }
1801
- },
1802
- "parameters": [
1803
- {
1804
- "name": "cell",
1805
- "type": {
1806
- "text": "any"
1807
- },
1808
- "description": "The cell component provided by Tabulator"
1809
- },
1810
- {
1811
- "name": "formatterParams",
1812
- "default": "{}",
1813
- "type": {
1814
- "text": "EditableFormatterParams<T>"
1815
- },
1816
- "description": "Editable formatter parameters"
1817
- }
1818
- ],
1819
- "description": "Formatter that displays an editable cell with validation state",
1820
- "privacy": "public"
1821
- }
1822
- ],
1823
- "exports": [
1881
+ "kind": "js",
1882
+ "name": "getDateEditorTemplate",
1883
+ "declaration": {
1884
+ "name": "getDateEditorTemplate",
1885
+ "module": "src/cell-editors/date.editor.ts"
1886
+ }
1887
+ },
1824
1888
  {
1825
1889
  "kind": "js",
1826
- "name": "editableFormatter",
1890
+ "name": "foundationDateEditor",
1827
1891
  "declaration": {
1828
- "name": "editableFormatter",
1829
- "module": "src/cell-formatters/editable.formatter.ts"
1892
+ "name": "foundationDateEditor",
1893
+ "module": "src/cell-editors/date.editor.ts"
1830
1894
  }
1831
1895
  }
1832
1896
  ]
1833
1897
  },
1834
1898
  {
1835
1899
  "kind": "javascript-module",
1836
- "path": "src/cell-formatters/index.ts",
1837
- "declarations": [
1838
- {
1839
- "kind": "variable",
1840
- "name": "formatters",
1841
- "type": {
1842
- "text": "object"
1843
- },
1844
- "default": "{\n action: actionFormatter,\n actionsMenu: actionsMenuFormatter,\n boolean: booleanFormatter,\n editable: editableFormatter,\n select: selectFormatter,\n text: textFormatter,\n}",
1845
- "description": "Zero formatters for Tabulator grid"
1846
- }
1847
- ],
1900
+ "path": "src/cell-editors/index.ts",
1901
+ "declarations": [],
1848
1902
  "exports": [
1849
1903
  {
1850
1904
  "kind": "js",
1851
1905
  "name": "*",
1852
1906
  "declaration": {
1853
1907
  "name": "*",
1854
- "package": "./constants"
1855
- }
1856
- },
1857
- {
1858
- "kind": "js",
1859
- "name": "ActionFormatterParams",
1860
- "declaration": {
1861
- "name": "ActionFormatterParams",
1862
- "module": "src/cell-formatters/index.ts"
1863
- }
1864
- },
1865
- {
1866
- "kind": "js",
1867
- "name": "actionFormatter",
1868
- "declaration": {
1869
- "name": "actionFormatter",
1870
- "module": "src/cell-formatters/index.ts"
1871
- }
1872
- },
1873
- {
1874
- "kind": "js",
1875
- "name": "ActionsMenuFormatterParams",
1876
- "declaration": {
1877
- "name": "ActionsMenuFormatterParams",
1878
- "module": "src/cell-formatters/index.ts"
1879
- }
1880
- },
1881
- {
1882
- "kind": "js",
1883
- "name": "actionsMenuFormatter",
1884
- "declaration": {
1885
- "name": "actionsMenuFormatter",
1886
- "module": "src/cell-formatters/index.ts"
1887
- }
1888
- },
1889
- {
1890
- "kind": "js",
1891
- "name": "BooleanFormatterParams",
1892
- "declaration": {
1893
- "name": "BooleanFormatterParams",
1894
- "module": "src/cell-formatters/index.ts"
1895
- }
1896
- },
1897
- {
1898
- "kind": "js",
1899
- "name": "booleanFormatter",
1900
- "declaration": {
1901
- "name": "booleanFormatter",
1902
- "module": "src/cell-formatters/index.ts"
1903
- }
1904
- },
1905
- {
1906
- "kind": "js",
1907
- "name": "EditableFormatterParams",
1908
- "declaration": {
1909
- "name": "EditableFormatterParams",
1910
- "module": "src/cell-formatters/index.ts"
1911
- }
1912
- },
1913
- {
1914
- "kind": "js",
1915
- "name": "editableFormatter",
1916
- "declaration": {
1917
- "name": "editableFormatter",
1918
- "module": "src/cell-formatters/index.ts"
1919
- }
1920
- },
1921
- {
1922
- "kind": "js",
1923
- "name": "SelectFormatterParams",
1924
- "declaration": {
1925
- "name": "SelectFormatterParams",
1926
- "module": "src/cell-formatters/index.ts"
1908
+ "package": "./date.editor"
1927
1909
  }
1928
1910
  },
1929
1911
  {
1930
1912
  "kind": "js",
1931
- "name": "selectFormatter",
1913
+ "name": "*",
1932
1914
  "declaration": {
1933
- "name": "selectFormatter",
1934
- "module": "src/cell-formatters/index.ts"
1915
+ "name": "*",
1916
+ "package": "./number.editor"
1935
1917
  }
1936
1918
  },
1937
1919
  {
1938
1920
  "kind": "js",
1939
- "name": "TextFormatterParams",
1921
+ "name": "*",
1940
1922
  "declaration": {
1941
- "name": "TextFormatterParams",
1942
- "module": "src/cell-formatters/index.ts"
1923
+ "name": "*",
1924
+ "package": "./select.editor"
1943
1925
  }
1944
1926
  },
1945
1927
  {
1946
1928
  "kind": "js",
1947
- "name": "textFormatter",
1929
+ "name": "*",
1948
1930
  "declaration": {
1949
- "name": "textFormatter",
1950
- "module": "src/cell-formatters/index.ts"
1931
+ "name": "*",
1932
+ "package": "./string.editor"
1951
1933
  }
1952
1934
  },
1953
1935
  {
1954
1936
  "kind": "js",
1955
- "name": "formatters",
1937
+ "name": "*",
1956
1938
  "declaration": {
1957
- "name": "formatters",
1958
- "module": "src/cell-formatters/index.ts"
1939
+ "name": "*",
1940
+ "package": "./multiselect.editor"
1959
1941
  }
1960
1942
  }
1961
1943
  ]
1962
1944
  },
1963
1945
  {
1964
1946
  "kind": "javascript-module",
1965
- "path": "src/cell-formatters/select.formatter.ts",
1947
+ "path": "src/cell-editors/multiselect.editor.ts",
1966
1948
  "declarations": [
1967
1949
  {
1968
- "kind": "function",
1969
- "name": "selectFormatter",
1970
- "return": {
1971
- "type": {
1972
- "text": ""
1973
- }
1974
- },
1975
- "parameters": [
1950
+ "kind": "class",
1951
+ "description": "The multiselect editor class for grid-tabulator",
1952
+ "name": "MultiselectEditor",
1953
+ "members": [
1976
1954
  {
1977
- "name": "cell",
1955
+ "kind": "field",
1956
+ "name": "params",
1978
1957
  "type": {
1979
- "text": "any"
1980
- },
1981
- "description": "The cell component provided by Tabulator"
1958
+ "text": "MultiselectEditorParams"
1959
+ }
1982
1960
  },
1983
1961
  {
1984
- "name": "formatterParams",
1962
+ "kind": "field",
1963
+ "name": "select",
1985
1964
  "type": {
1986
- "text": "SelectFormatterParams<T>"
1965
+ "text": "any"
1966
+ }
1967
+ },
1968
+ {
1969
+ "kind": "method",
1970
+ "name": "init",
1971
+ "parameters": [
1972
+ {
1973
+ "name": "params",
1974
+ "type": {
1975
+ "text": "MultiselectEditorParams"
1976
+ }
1977
+ }
1978
+ ],
1979
+ "description": "Initialize the editor with parameters"
1980
+ },
1981
+ {
1982
+ "kind": "method",
1983
+ "name": "getValues",
1984
+ "return": {
1985
+ "type": {
1986
+ "text": "(string | number)[]"
1987
+ }
1987
1988
  },
1988
- "description": "Select formatter parameters"
1989
- }
1990
- ],
1991
- "description": "Formatter that displays a select component with options.\nReturns a wrapped div containing the select, similar to boolean.formatter.",
1992
- "privacy": "public"
1993
- }
1994
- ],
1995
- "exports": [
1996
- {
1997
- "kind": "js",
1998
- "name": "selectFormatter",
1999
- "declaration": {
2000
- "name": "selectFormatter",
2001
- "module": "src/cell-formatters/select.formatter.ts"
2002
- }
2003
- }
2004
- ]
2005
- },
2006
- {
2007
- "kind": "javascript-module",
2008
- "path": "src/cell-formatters/text.formatter.ts",
2009
- "declarations": [
2010
- {
2011
- "kind": "function",
2012
- "name": "textFormatter",
2013
- "return": {
2014
- "type": {
2015
- "text": ""
2016
- }
2017
- },
2018
- "parameters": [
2019
- {
2020
- "name": "cell",
2021
- "type": {
2022
- "text": "any"
2023
- },
2024
- "description": "The cell component provided by Tabulator"
2025
- },
2026
- {
2027
- "name": "formatterParams",
2028
- "default": "{}",
2029
- "type": {
2030
- "text": "TextFormatterParams<T>"
2031
- },
2032
- "description": "Text formatter parameters"
2033
- }
2034
- ],
2035
- "description": "Text formatter for customized display of values.\nStyled to match grid-pro text renderer.",
2036
- "privacy": "public"
2037
- }
2038
- ],
2039
- "exports": [
2040
- {
2041
- "kind": "js",
2042
- "name": "textFormatter",
2043
- "declaration": {
2044
- "name": "textFormatter",
2045
- "module": "src/cell-formatters/text.formatter.ts"
2046
- }
2047
- }
2048
- ]
2049
- },
2050
- {
2051
- "kind": "javascript-module",
2052
- "path": "src/column/column.ts",
2053
- "declarations": [
2054
- {
2055
- "kind": "class",
2056
- "description": "The GridTabulator Column element.",
2057
- "name": "GridTabulatorColumn",
2058
- "members": [
2059
- {
2060
- "kind": "field",
2061
- "name": "slottedCell",
2062
- "type": {
2063
- "text": "HTMLElement[]"
2064
- },
2065
- "privacy": "public"
2066
- },
2067
- {
2068
- "kind": "field",
2069
- "name": "definition",
2070
- "type": {
2071
- "text": "Partial<ColumnDefinition>"
2072
- },
2073
- "default": "{}"
2074
- },
2075
- {
2076
- "kind": "method",
2077
- "name": "slottedCellChanged",
2078
- "privacy": "public"
1989
+ "description": "Get current values"
2079
1990
  },
2080
1991
  {
2081
1992
  "kind": "method",
2082
- "name": "deepClone",
2083
- "return": {
2084
- "type": {
2085
- "text": "Node"
2086
- }
2087
- },
2088
- "inheritedFrom": {
2089
- "name": "LifecycleMixin",
2090
- "module": "src/mixins/lifecycle/lifecycle.ts"
2091
- }
1993
+ "name": "focus",
1994
+ "description": "Set focus to the select"
2092
1995
  },
2093
1996
  {
2094
1997
  "kind": "method",
2095
- "name": "cloneNode",
1998
+ "name": "isSelected",
2096
1999
  "return": {
2097
2000
  "type": {
2098
- "text": "Node"
2001
+ "text": "boolean"
2099
2002
  }
2100
2003
  },
2101
2004
  "parameters": [
2102
2005
  {
2103
- "name": "deep",
2104
- "optional": true,
2006
+ "name": "value",
2105
2007
  "type": {
2106
- "text": "boolean"
2008
+ "text": "string | number"
2107
2009
  }
2108
2010
  }
2109
2011
  ],
2110
- "inheritedFrom": {
2111
- "name": "LifecycleMixin",
2112
- "module": "src/mixins/lifecycle/lifecycle.ts"
2113
- }
2114
- },
2115
- {
2116
- "kind": "field",
2117
- "name": "shouldRunDisconnect",
2118
- "return": {
2119
- "type": {
2120
- "text": ""
2121
- }
2122
- },
2123
- "readonly": true,
2124
- "inheritedFrom": {
2125
- "name": "LifecycleMixin",
2126
- "module": "src/mixins/lifecycle/lifecycle.ts"
2127
- }
2128
- },
2129
- {
2130
- "kind": "field",
2131
- "name": "shouldRunConnect",
2132
- "return": {
2133
- "type": {
2134
- "text": ""
2135
- }
2136
- },
2137
- "readonly": true,
2138
- "inheritedFrom": {
2139
- "name": "LifecycleMixin",
2140
- "module": "src/mixins/lifecycle/lifecycle.ts"
2141
- }
2012
+ "description": "Check if a value is selected"
2142
2013
  },
2143
2014
  {
2144
2015
  "kind": "method",
2145
- "name": "#_blockLifecycleDueToTokenChange",
2146
- "return": {
2147
- "type": {
2148
- "text": "boolean"
2149
- }
2150
- },
2016
+ "name": "handleKeyDown",
2151
2017
  "parameters": [
2152
2018
  {
2153
- "name": "lifecycleType",
2019
+ "name": "event",
2154
2020
  "type": {
2155
- "text": "Lifecycletype"
2021
+ "text": "KeyboardEvent"
2156
2022
  }
2157
2023
  }
2158
2024
  ],
2159
- "inheritedFrom": {
2160
- "name": "LifecycleMixin",
2161
- "module": "src/mixins/lifecycle/lifecycle.ts"
2162
- }
2025
+ "description": "Process key down events"
2026
+ },
2027
+ {
2028
+ "kind": "method",
2029
+ "name": "handleChange",
2030
+ "description": "Handle change event to save when selection changes"
2163
2031
  },
2164
2032
  {
2165
2033
  "kind": "field",
@@ -2273,626 +2141,1241 @@
2273
2141
  }
2274
2142
  }
2275
2143
  ],
2276
- "mixins": [
2277
- {
2278
- "name": "LifecycleMixin",
2279
- "package": "@genesislcap/foundation-utils"
2280
- }
2281
- ],
2282
2144
  "superclass": {
2283
2145
  "name": "FoundationElement",
2284
2146
  "package": "@microsoft/fast-foundation"
2285
- },
2286
- "tagName": "grid-tabulator-column",
2287
- "customElement": true
2147
+ }
2148
+ },
2149
+ {
2150
+ "kind": "variable",
2151
+ "name": "multiselectEditorStyles",
2152
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2153
+ "description": "Styles for the multiselect editor"
2154
+ },
2155
+ {
2156
+ "kind": "function",
2157
+ "name": "getMultiselectEditorTemplate",
2158
+ "parameters": [
2159
+ {
2160
+ "name": "prefix",
2161
+ "default": "'foundation'",
2162
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2163
+ }
2164
+ ],
2165
+ "description": "Get a Design System prefixed Select template.",
2166
+ "return": {
2167
+ "type": {
2168
+ "text": ""
2169
+ }
2170
+ }
2171
+ },
2172
+ {
2173
+ "kind": "variable",
2174
+ "name": "foundationMultiselectEditor",
2175
+ "description": "Definition for the multiselect editor component"
2288
2176
  }
2289
2177
  ],
2290
2178
  "exports": [
2291
2179
  {
2292
2180
  "kind": "js",
2293
- "name": "GridTabulatorColumn",
2181
+ "name": "MultiselectEditor",
2294
2182
  "declaration": {
2295
- "name": "GridTabulatorColumn",
2296
- "module": "src/column/column.ts"
2183
+ "name": "MultiselectEditor",
2184
+ "module": "src/cell-editors/multiselect.editor.ts"
2297
2185
  }
2298
2186
  },
2299
2187
  {
2300
- "kind": "custom-element-definition",
2301
- "name": "grid-tabulator-column",
2188
+ "kind": "js",
2189
+ "name": "multiselectEditorStyles",
2302
2190
  "declaration": {
2303
- "name": "GridTabulatorColumn",
2304
- "module": "src/column/column.ts"
2191
+ "name": "multiselectEditorStyles",
2192
+ "module": "src/cell-editors/multiselect.editor.ts"
2305
2193
  }
2306
- }
2307
- ]
2308
- },
2309
- {
2310
- "kind": "javascript-module",
2311
- "path": "src/column/index.ts",
2312
- "declarations": [],
2313
- "exports": [
2194
+ },
2314
2195
  {
2315
2196
  "kind": "js",
2316
- "name": "*",
2197
+ "name": "getMultiselectEditorTemplate",
2317
2198
  "declaration": {
2318
- "name": "*",
2319
- "package": "./column"
2199
+ "name": "getMultiselectEditorTemplate",
2200
+ "module": "src/cell-editors/multiselect.editor.ts"
2201
+ }
2202
+ },
2203
+ {
2204
+ "kind": "js",
2205
+ "name": "foundationMultiselectEditor",
2206
+ "declaration": {
2207
+ "name": "foundationMultiselectEditor",
2208
+ "module": "src/cell-editors/multiselect.editor.ts"
2320
2209
  }
2321
2210
  }
2322
2211
  ]
2323
2212
  },
2324
2213
  {
2325
2214
  "kind": "javascript-module",
2326
- "path": "src/datasource/client-side.datasource.ts",
2215
+ "path": "src/cell-editors/number.editor.ts",
2327
2216
  "declarations": [
2328
- {
2329
- "kind": "variable",
2330
- "name": "criteriaDelimiter",
2331
- "type": {
2332
- "text": "string"
2333
- },
2334
- "default": "';'",
2335
- "description": "Delimiter for criteria in the datasource"
2336
- },
2337
- {
2338
- "kind": "variable",
2339
- "name": "criteriaJoin",
2340
- "type": {
2341
- "text": "string"
2342
- },
2343
- "default": "' && '",
2344
- "description": "Join operator for criteria in the datasource"
2345
- },
2346
2217
  {
2347
2218
  "kind": "class",
2348
- "description": "The Genesis Datasource element, for client-side data fetching and used exclusively by the GridTabulator element.",
2349
- "name": "GridTabulatorClientSideDatasource",
2219
+ "description": "The number editor class for grid-tabulator",
2220
+ "name": "NumberEditor",
2350
2221
  "members": [
2351
2222
  {
2352
2223
  "kind": "field",
2353
- "name": "auth",
2354
- "type": {
2355
- "text": "Auth"
2356
- }
2357
- },
2358
- {
2359
- "kind": "field",
2360
- "name": "connect",
2224
+ "name": "params",
2361
2225
  "type": {
2362
- "text": "Connect"
2226
+ "text": "NumberEditorParams"
2363
2227
  }
2364
2228
  },
2365
2229
  {
2366
2230
  "kind": "field",
2367
- "name": "datasource",
2231
+ "name": "numberField",
2368
2232
  "type": {
2369
- "text": "Datasource"
2233
+ "text": "any"
2370
2234
  }
2371
2235
  },
2372
2236
  {
2373
- "kind": "field",
2374
- "name": "deferredGridOptions",
2375
- "type": {
2376
- "text": "Options"
2377
- }
2237
+ "kind": "method",
2238
+ "name": "init",
2239
+ "parameters": [
2240
+ {
2241
+ "name": "params",
2242
+ "type": {
2243
+ "text": "NumberEditorParams"
2244
+ }
2245
+ }
2246
+ ],
2247
+ "description": "Initialize the editor with parameters"
2378
2248
  },
2379
2249
  {
2380
- "kind": "field",
2381
- "name": "deferredColumnStates",
2382
- "type": {
2383
- "text": "any[]"
2384
- },
2385
- "default": "[]",
2386
- "description": "Allows storing column layouts between datasource initializations"
2250
+ "kind": "method",
2251
+ "name": "getValue",
2252
+ "description": "Get current value"
2387
2253
  },
2388
2254
  {
2389
- "kind": "field",
2390
- "name": "criteria",
2391
- "type": {
2392
- "text": "string"
2393
- }
2255
+ "kind": "method",
2256
+ "name": "focus",
2257
+ "description": "Set focus to the input"
2394
2258
  },
2395
2259
  {
2396
2260
  "kind": "method",
2397
- "name": "criteriaChanged",
2261
+ "name": "handleKeyDown",
2398
2262
  "parameters": [
2399
2263
  {
2400
- "name": "oldCriteria",
2401
- "type": {
2402
- "text": "string"
2403
- }
2404
- },
2405
- {
2406
- "name": "newCriteria",
2264
+ "name": "event",
2407
2265
  "type": {
2408
- "text": "string"
2266
+ "text": "KeyboardEvent"
2409
2267
  }
2410
2268
  }
2411
- ]
2412
- },
2413
- {
2414
- "kind": "field",
2415
- "name": "fields",
2416
- "type": {
2417
- "text": "string"
2418
- }
2269
+ ],
2270
+ "description": "Process key down events"
2419
2271
  },
2420
2272
  {
2421
2273
  "kind": "field",
2422
- "name": "isSnapshot",
2274
+ "name": "_presentation",
2423
2275
  "type": {
2424
- "text": "boolean"
2276
+ "text": "ComponentPresentation | null | undefined"
2425
2277
  },
2426
- "default": "false"
2427
- },
2428
- {
2429
- "kind": "field",
2430
- "name": "maxRows",
2431
- "type": {
2432
- "text": "number"
2278
+ "privacy": "private",
2279
+ "default": "void 0",
2280
+ "inheritedFrom": {
2281
+ "name": "FoundationElement",
2282
+ "module": "src/foundation-element/foundation-element.ts"
2433
2283
  }
2434
2284
  },
2435
2285
  {
2436
2286
  "kind": "field",
2437
- "name": "maxView",
2287
+ "name": "$presentation",
2438
2288
  "type": {
2439
- "text": "number"
2289
+ "text": "ComponentPresentation | null"
2290
+ },
2291
+ "privacy": "public",
2292
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2293
+ "inheritedFrom": {
2294
+ "name": "FoundationElement",
2295
+ "module": "src/foundation-element/foundation-element.ts"
2440
2296
  }
2441
2297
  },
2442
2298
  {
2443
2299
  "kind": "field",
2444
- "name": "pollingInterval",
2300
+ "name": "template",
2445
2301
  "type": {
2446
- "text": "number"
2302
+ "text": "ElementViewTemplate | void | null"
2303
+ },
2304
+ "privacy": "public",
2305
+ "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.",
2306
+ "inheritedFrom": {
2307
+ "name": "FoundationElement",
2308
+ "module": "src/foundation-element/foundation-element.ts"
2447
2309
  }
2448
2310
  },
2449
2311
  {
2450
- "kind": "field",
2451
- "name": "movingView",
2452
- "type": {
2453
- "text": "boolean"
2312
+ "kind": "method",
2313
+ "name": "templateChanged",
2314
+ "privacy": "protected",
2315
+ "return": {
2316
+ "type": {
2317
+ "text": "void"
2318
+ }
2454
2319
  },
2455
- "default": "false"
2456
- },
2457
- {
2458
- "kind": "field",
2459
- "name": "orderBy",
2460
- "type": {
2461
- "text": "string"
2320
+ "inheritedFrom": {
2321
+ "name": "FoundationElement",
2322
+ "module": "src/foundation-element/foundation-element.ts"
2462
2323
  }
2463
2324
  },
2464
2325
  {
2465
2326
  "kind": "field",
2466
- "name": "request",
2327
+ "name": "styles",
2467
2328
  "type": {
2468
- "text": "any"
2329
+ "text": "ElementStyles | void | null"
2330
+ },
2331
+ "privacy": "public",
2332
+ "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.",
2333
+ "inheritedFrom": {
2334
+ "name": "FoundationElement",
2335
+ "module": "src/foundation-element/foundation-element.ts"
2469
2336
  }
2470
2337
  },
2471
2338
  {
2472
- "kind": "field",
2473
- "name": "resourceName",
2474
- "type": {
2475
- "text": "string"
2339
+ "kind": "method",
2340
+ "name": "stylesChanged",
2341
+ "privacy": "protected",
2342
+ "return": {
2343
+ "type": {
2344
+ "text": "void"
2345
+ }
2346
+ },
2347
+ "inheritedFrom": {
2348
+ "name": "FoundationElement",
2349
+ "module": "src/foundation-element/foundation-element.ts"
2476
2350
  }
2477
2351
  },
2478
2352
  {
2479
2353
  "kind": "method",
2480
- "name": "resourceNameChanged",
2354
+ "name": "compose",
2355
+ "privacy": "public",
2356
+ "static": true,
2357
+ "return": {
2358
+ "type": {
2359
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2360
+ }
2361
+ },
2481
2362
  "parameters": [
2482
2363
  {
2483
- "name": "oldValue",
2364
+ "name": "this",
2484
2365
  "type": {
2485
- "text": "string"
2366
+ "text": "K"
2486
2367
  }
2487
2368
  },
2488
2369
  {
2489
- "name": "newValue",
2370
+ "name": "elementDefinition",
2490
2371
  "type": {
2491
- "text": "string"
2492
- }
2372
+ "text": "T"
2373
+ },
2374
+ "description": "The definition of the element to create the registry\nfunction for."
2493
2375
  }
2494
- ]
2495
- },
2496
- {
2497
- "kind": "field",
2498
- "name": "reverse",
2499
- "type": {
2500
- "text": "boolean"
2501
- },
2502
- "default": "false"
2503
- },
2504
- {
2505
- "kind": "field",
2506
- "name": "rowIdAttr",
2507
- "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type."
2508
- },
2509
- {
2510
- "kind": "field",
2511
- "name": "restartOnReconnection",
2512
- "type": {
2513
- "text": "boolean"
2514
- },
2515
- "default": "true"
2516
- },
2517
- {
2518
- "kind": "field",
2519
- "name": "keepColDefsOnClearRowData",
2520
- "type": {
2521
- "text": "boolean"
2522
- },
2523
- "default": "false",
2524
- "description": "Whether to keep column definitions when clearing row data"
2525
- },
2526
- {
2527
- "kind": "field",
2528
- "name": "rowDataMapper",
2529
- "type": {
2530
- "text": "Function"
2531
- },
2532
- "description": "Allows grid data updates to be processed via and external function before applying in grid"
2533
- },
2534
- {
2535
- "kind": "field",
2536
- "name": "dataSub",
2537
- "type": {
2538
- "text": "Subscription"
2539
- },
2540
- "privacy": "private"
2541
- },
2542
- {
2543
- "kind": "field",
2544
- "name": "updateSub",
2545
- "type": {
2546
- "text": "Subscription"
2547
- },
2548
- "privacy": "private"
2549
- },
2376
+ ],
2377
+ "description": "Defines an element registry function with a set of element definition defaults.",
2378
+ "inheritedFrom": {
2379
+ "name": "FoundationElement",
2380
+ "module": "src/foundation-element/foundation-element.ts"
2381
+ }
2382
+ }
2383
+ ],
2384
+ "superclass": {
2385
+ "name": "FoundationElement",
2386
+ "package": "@microsoft/fast-foundation"
2387
+ }
2388
+ },
2389
+ {
2390
+ "kind": "variable",
2391
+ "name": "numberEditorStyles",
2392
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2393
+ "description": "Styles for the number editor"
2394
+ },
2395
+ {
2396
+ "kind": "function",
2397
+ "name": "getNumberEditorTemplate",
2398
+ "parameters": [
2550
2399
  {
2551
- "kind": "field",
2552
- "name": "connectionSub",
2553
- "type": {
2554
- "text": "Subscription"
2555
- },
2556
- "privacy": "private"
2557
- },
2400
+ "name": "prefix",
2401
+ "default": "'foundation'",
2402
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2403
+ }
2404
+ ],
2405
+ "description": "Get a Design System prefixed number field template.",
2406
+ "return": {
2407
+ "type": {
2408
+ "text": ""
2409
+ }
2410
+ }
2411
+ },
2412
+ {
2413
+ "kind": "variable",
2414
+ "name": "foundationNumberEditor",
2415
+ "description": "Definition for the number editor component"
2416
+ }
2417
+ ],
2418
+ "exports": [
2419
+ {
2420
+ "kind": "js",
2421
+ "name": "NumberEditor",
2422
+ "declaration": {
2423
+ "name": "NumberEditor",
2424
+ "module": "src/cell-editors/number.editor.ts"
2425
+ }
2426
+ },
2427
+ {
2428
+ "kind": "js",
2429
+ "name": "numberEditorStyles",
2430
+ "declaration": {
2431
+ "name": "numberEditorStyles",
2432
+ "module": "src/cell-editors/number.editor.ts"
2433
+ }
2434
+ },
2435
+ {
2436
+ "kind": "js",
2437
+ "name": "getNumberEditorTemplate",
2438
+ "declaration": {
2439
+ "name": "getNumberEditorTemplate",
2440
+ "module": "src/cell-editors/number.editor.ts"
2441
+ }
2442
+ },
2443
+ {
2444
+ "kind": "js",
2445
+ "name": "foundationNumberEditor",
2446
+ "declaration": {
2447
+ "name": "foundationNumberEditor",
2448
+ "module": "src/cell-editors/number.editor.ts"
2449
+ }
2450
+ }
2451
+ ]
2452
+ },
2453
+ {
2454
+ "kind": "javascript-module",
2455
+ "path": "src/cell-editors/select.editor.ts",
2456
+ "declarations": [
2457
+ {
2458
+ "kind": "class",
2459
+ "description": "The select editor class for grid-tabulator",
2460
+ "name": "SelectEditor",
2461
+ "members": [
2558
2462
  {
2559
2463
  "kind": "field",
2560
- "name": "isRequestServer",
2464
+ "name": "params",
2561
2465
  "type": {
2562
- "text": "boolean"
2563
- },
2564
- "privacy": "private",
2565
- "default": "false"
2466
+ "text": "SelectEditorParams"
2467
+ }
2566
2468
  },
2567
2469
  {
2568
2470
  "kind": "field",
2569
- "name": "requiresFullRowDataAndColDefs",
2471
+ "name": "select",
2570
2472
  "type": {
2571
- "text": "boolean"
2572
- },
2573
- "privacy": "private",
2574
- "default": "true"
2473
+ "text": "any"
2474
+ }
2575
2475
  },
2576
2476
  {
2577
- "kind": "field",
2578
- "name": "dataSubWasLoggedOff",
2579
- "type": {
2580
- "text": "boolean"
2581
- },
2582
- "privacy": "private",
2583
- "default": "false"
2477
+ "kind": "method",
2478
+ "name": "init",
2479
+ "parameters": [
2480
+ {
2481
+ "name": "params",
2482
+ "type": {
2483
+ "text": "SelectEditorParams"
2484
+ }
2485
+ }
2486
+ ],
2487
+ "description": "Initialize the editor with parameters"
2584
2488
  },
2585
2489
  {
2586
- "kind": "field",
2587
- "name": "rows",
2588
- "type": {
2589
- "text": "Map<string, any>"
2590
- },
2591
- "privacy": "private",
2592
- "default": "new Map()"
2490
+ "kind": "method",
2491
+ "name": "getValue",
2492
+ "description": "Get current value"
2593
2493
  },
2594
2494
  {
2595
- "kind": "field",
2596
- "name": "gridTransaction",
2597
- "type": {
2598
- "text": "RowDataTransaction"
2599
- },
2600
- "privacy": "private"
2495
+ "kind": "method",
2496
+ "name": "focus",
2497
+ "description": "Set focus to the select"
2498
+ },
2499
+ {
2500
+ "kind": "method",
2501
+ "name": "handleKeyDown",
2502
+ "parameters": [
2503
+ {
2504
+ "name": "event",
2505
+ "type": {
2506
+ "text": "KeyboardEvent"
2507
+ }
2508
+ }
2509
+ ],
2510
+ "description": "Process key down events"
2511
+ },
2512
+ {
2513
+ "kind": "method",
2514
+ "name": "handleChange",
2515
+ "description": "Handle change event"
2601
2516
  },
2602
2517
  {
2603
2518
  "kind": "field",
2604
- "name": "sourceRef",
2519
+ "name": "_presentation",
2605
2520
  "type": {
2606
- "text": "string"
2521
+ "text": "ComponentPresentation | null | undefined"
2607
2522
  },
2608
- "privacy": "private"
2523
+ "privacy": "private",
2524
+ "default": "void 0",
2525
+ "inheritedFrom": {
2526
+ "name": "FoundationElement",
2527
+ "module": "src/foundation-element/foundation-element.ts"
2528
+ }
2609
2529
  },
2610
2530
  {
2611
2531
  "kind": "field",
2612
- "name": "criteriaFromFilters",
2532
+ "name": "$presentation",
2613
2533
  "type": {
2614
- "text": "Map<string, string>"
2534
+ "text": "ComponentPresentation | null"
2615
2535
  },
2616
- "privacy": "private",
2617
- "default": "new Map()"
2536
+ "privacy": "public",
2537
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2538
+ "inheritedFrom": {
2539
+ "name": "FoundationElement",
2540
+ "module": "src/foundation-element/foundation-element.ts"
2541
+ }
2618
2542
  },
2619
2543
  {
2620
2544
  "kind": "field",
2621
- "name": "update",
2545
+ "name": "template",
2622
2546
  "type": {
2623
- "text": "BehaviorSubject<Map<string, string>>"
2547
+ "text": "ElementViewTemplate | void | null"
2624
2548
  },
2625
- "privacy": "private",
2626
- "default": "new BehaviorSubject(new Map())"
2549
+ "privacy": "public",
2550
+ "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.",
2551
+ "inheritedFrom": {
2552
+ "name": "FoundationElement",
2553
+ "module": "src/foundation-element/foundation-element.ts"
2554
+ }
2627
2555
  },
2628
2556
  {
2629
2557
  "kind": "method",
2630
- "name": "deepClone",
2558
+ "name": "templateChanged",
2559
+ "privacy": "protected",
2631
2560
  "return": {
2632
2561
  "type": {
2633
- "text": "Node"
2562
+ "text": "void"
2634
2563
  }
2635
2564
  },
2636
2565
  "inheritedFrom": {
2637
- "name": "LifecycleMixin",
2638
- "module": "src/mixins/lifecycle/lifecycle.ts"
2566
+ "name": "FoundationElement",
2567
+ "module": "src/foundation-element/foundation-element.ts"
2639
2568
  }
2640
2569
  },
2641
2570
  {
2642
2571
  "kind": "field",
2643
- "name": "gridTabulator",
2572
+ "name": "styles",
2644
2573
  "type": {
2645
- "text": "GridTabulator | null"
2574
+ "text": "ElementStyles | void | null"
2646
2575
  },
2647
- "privacy": "private",
2648
- "readonly": true
2649
- },
2650
- {
2651
- "kind": "method",
2652
- "name": "init",
2653
- "description": "Initializes the datasource.",
2654
- "privacy": "public"
2655
- },
2656
- {
2657
- "kind": "method",
2658
- "name": "destroy",
2659
- "description": "Destroys the datasource, resetting it to its initial state.",
2660
- "privacy": "public"
2661
- },
2662
- {
2663
- "kind": "method",
2664
- "name": "restart",
2665
- "description": "Restarts the datasource, uses `deinit` and `init` in sequence.",
2666
- "privacy": "public"
2576
+ "privacy": "public",
2577
+ "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.",
2578
+ "inheritedFrom": {
2579
+ "name": "FoundationElement",
2580
+ "module": "src/foundation-element/foundation-element.ts"
2581
+ }
2667
2582
  },
2668
2583
  {
2669
2584
  "kind": "method",
2670
- "name": "refreshRows",
2671
- "description": "Force the grid to redispatch the current rows"
2585
+ "name": "stylesChanged",
2586
+ "privacy": "protected",
2587
+ "return": {
2588
+ "type": {
2589
+ "text": "void"
2590
+ }
2591
+ },
2592
+ "inheritedFrom": {
2593
+ "name": "FoundationElement",
2594
+ "module": "src/foundation-element/foundation-element.ts"
2595
+ }
2672
2596
  },
2673
2597
  {
2674
2598
  "kind": "method",
2675
- "name": "handleErrors",
2599
+ "name": "compose",
2600
+ "privacy": "public",
2601
+ "static": true,
2602
+ "return": {
2603
+ "type": {
2604
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2605
+ }
2606
+ },
2676
2607
  "parameters": [
2677
2608
  {
2678
- "name": "errors",
2609
+ "name": "this",
2679
2610
  "type": {
2680
- "text": "string | any[]"
2611
+ "text": "K"
2681
2612
  }
2682
- }
2683
- ],
2684
- "description": "Handles errors by emitting an error event"
2685
- },
2686
- {
2687
- "kind": "method",
2688
- "name": "getColumnDefs",
2689
- "privacy": "private",
2690
- "parameters": [
2613
+ },
2691
2614
  {
2692
- "name": "fieldsMetadata",
2615
+ "name": "elementDefinition",
2693
2616
  "type": {
2694
- "text": "FieldMetadata[]"
2617
+ "text": "T"
2695
2618
  },
2696
- "description": "The field metadata to generate column definitions from"
2619
+ "description": "The definition of the element to create the registry\nfunction for."
2697
2620
  }
2698
2621
  ],
2699
- "description": "Generate column definitions from the field metadata"
2700
- },
2622
+ "description": "Defines an element registry function with a set of element definition defaults.",
2623
+ "inheritedFrom": {
2624
+ "name": "FoundationElement",
2625
+ "module": "src/foundation-element/foundation-element.ts"
2626
+ }
2627
+ }
2628
+ ],
2629
+ "superclass": {
2630
+ "name": "FoundationElement",
2631
+ "package": "@microsoft/fast-foundation"
2632
+ }
2633
+ },
2634
+ {
2635
+ "kind": "variable",
2636
+ "name": "selectEditorStyles",
2637
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2638
+ "description": "Styles for the select editor"
2639
+ },
2640
+ {
2641
+ "kind": "function",
2642
+ "name": "getSelectEditorTemplate",
2643
+ "parameters": [
2701
2644
  {
2702
- "kind": "method",
2703
- "name": "handleSnapshot",
2704
- "privacy": "private",
2705
- "parameters": [
2706
- {
2707
- "name": "result"
2708
- }
2709
- ]
2710
- },
2645
+ "name": "prefix",
2646
+ "default": "'foundation'",
2647
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2648
+ }
2649
+ ],
2650
+ "description": "Get a Design System prefixed Select template.",
2651
+ "return": {
2652
+ "type": {
2653
+ "text": ""
2654
+ }
2655
+ },
2656
+ "privacy": "public"
2657
+ },
2658
+ {
2659
+ "kind": "variable",
2660
+ "name": "foundationSelectEditor",
2661
+ "description": "Definition for the select editor component"
2662
+ }
2663
+ ],
2664
+ "exports": [
2665
+ {
2666
+ "kind": "js",
2667
+ "name": "SelectEditor",
2668
+ "declaration": {
2669
+ "name": "SelectEditor",
2670
+ "module": "src/cell-editors/select.editor.ts"
2671
+ }
2672
+ },
2673
+ {
2674
+ "kind": "js",
2675
+ "name": "selectEditorStyles",
2676
+ "declaration": {
2677
+ "name": "selectEditorStyles",
2678
+ "module": "src/cell-editors/select.editor.ts"
2679
+ }
2680
+ },
2681
+ {
2682
+ "kind": "js",
2683
+ "name": "getSelectEditorTemplate",
2684
+ "declaration": {
2685
+ "name": "getSelectEditorTemplate",
2686
+ "module": "src/cell-editors/select.editor.ts"
2687
+ }
2688
+ },
2689
+ {
2690
+ "kind": "js",
2691
+ "name": "foundationSelectEditor",
2692
+ "declaration": {
2693
+ "name": "foundationSelectEditor",
2694
+ "module": "src/cell-editors/select.editor.ts"
2695
+ }
2696
+ }
2697
+ ]
2698
+ },
2699
+ {
2700
+ "kind": "javascript-module",
2701
+ "path": "src/cell-editors/string.editor.ts",
2702
+ "declarations": [
2703
+ {
2704
+ "kind": "class",
2705
+ "description": "The string editor class for grid-tabulator",
2706
+ "name": "StringEditor",
2707
+ "members": [
2711
2708
  {
2712
- "kind": "method",
2713
- "name": "datasourceOptions",
2714
- "privacy": "private",
2715
- "return": {
2716
- "type": {
2717
- "text": "DatasourceOptions"
2718
- }
2709
+ "kind": "field",
2710
+ "name": "params",
2711
+ "type": {
2712
+ "text": "StringEditorParams"
2719
2713
  }
2720
2714
  },
2721
2715
  {
2722
- "kind": "method",
2723
- "name": "handleStreamResult",
2724
- "privacy": "private",
2725
- "parameters": [
2726
- {
2727
- "name": "result",
2728
- "type": {
2729
- "text": "FilteredDataServerResult | RequestServerResult"
2730
- }
2731
- }
2732
- ]
2733
- },
2734
- {
2735
- "kind": "method",
2736
- "name": "applyRequestServerData",
2737
- "privacy": "private",
2738
- "parameters": [
2739
- {
2740
- "name": "requestServerResult",
2741
- "type": {
2742
- "text": "RequestServerResult"
2743
- }
2744
- }
2745
- ]
2716
+ "kind": "field",
2717
+ "name": "textField",
2718
+ "type": {
2719
+ "text": "any"
2720
+ }
2746
2721
  },
2747
2722
  {
2748
2723
  "kind": "method",
2749
- "name": "applyDataserverData",
2750
- "privacy": "private",
2724
+ "name": "init",
2751
2725
  "parameters": [
2752
2726
  {
2753
- "name": "dataServerResult",
2727
+ "name": "params",
2754
2728
  "type": {
2755
- "text": "FilteredDataServerResult"
2729
+ "text": "StringEditorParams"
2756
2730
  }
2757
2731
  }
2758
- ]
2732
+ ],
2733
+ "description": "Initialize the editor with parameters"
2759
2734
  },
2760
2735
  {
2761
2736
  "kind": "method",
2762
- "name": "applyTransaction",
2763
- "privacy": "private"
2737
+ "name": "getValue",
2738
+ "description": "Get current value"
2764
2739
  },
2765
2740
  {
2766
2741
  "kind": "method",
2767
- "name": "mapTransaction",
2768
- "privacy": "private",
2769
- "parameters": [
2770
- {
2771
- "name": "transaction",
2772
- "type": {
2773
- "text": "RowDataTransaction"
2774
- }
2775
- }
2776
- ]
2742
+ "name": "focus",
2743
+ "description": "Set focus to the input"
2777
2744
  },
2778
2745
  {
2779
2746
  "kind": "method",
2780
- "name": "handleStreamInserts",
2781
- "privacy": "private",
2747
+ "name": "handleKeyDown",
2782
2748
  "parameters": [
2783
2749
  {
2784
- "name": "insertedRows",
2750
+ "name": "event",
2785
2751
  "type": {
2786
- "text": "any[]"
2752
+ "text": "KeyboardEvent"
2787
2753
  }
2788
2754
  }
2789
- ]
2755
+ ],
2756
+ "description": "Process key down events"
2790
2757
  },
2791
2758
  {
2792
- "kind": "method",
2793
- "name": "handleStreamDeletes",
2759
+ "kind": "field",
2760
+ "name": "_presentation",
2761
+ "type": {
2762
+ "text": "ComponentPresentation | null | undefined"
2763
+ },
2794
2764
  "privacy": "private",
2795
- "parameters": [
2796
- {
2797
- "name": "deletedRows",
2798
- "type": {
2799
- "text": "any[]"
2800
- }
2801
- }
2802
- ]
2765
+ "default": "void 0",
2766
+ "inheritedFrom": {
2767
+ "name": "FoundationElement",
2768
+ "module": "src/foundation-element/foundation-element.ts"
2769
+ }
2803
2770
  },
2804
2771
  {
2805
- "kind": "method",
2806
- "name": "handleStreamUpdates",
2807
- "privacy": "private",
2808
- "parameters": [
2809
- {
2810
- "name": "updatedRows",
2811
- "type": {
2812
- "text": "any[]"
2813
- }
2814
- }
2815
- ]
2772
+ "kind": "field",
2773
+ "name": "$presentation",
2774
+ "type": {
2775
+ "text": "ComponentPresentation | null"
2776
+ },
2777
+ "privacy": "public",
2778
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
2779
+ "inheritedFrom": {
2780
+ "name": "FoundationElement",
2781
+ "module": "src/foundation-element/foundation-element.ts"
2782
+ }
2816
2783
  },
2817
2784
  {
2818
- "kind": "method",
2819
- "name": "handleSizeChanged",
2820
- "privacy": "private",
2821
- "parameters": [
2822
- {
2823
- "name": "oldSize",
2824
- "type": {
2825
- "text": "number"
2826
- }
2827
- },
2828
- {
2829
- "name": "newSize",
2830
- "type": {
2831
- "text": "number"
2832
- }
2833
- }
2834
- ],
2835
- "description": "Emit event when the number of rows changes"
2785
+ "kind": "field",
2786
+ "name": "template",
2787
+ "type": {
2788
+ "text": "ElementViewTemplate | void | null"
2789
+ },
2790
+ "privacy": "public",
2791
+ "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.",
2792
+ "inheritedFrom": {
2793
+ "name": "FoundationElement",
2794
+ "module": "src/foundation-element/foundation-element.ts"
2795
+ }
2836
2796
  },
2837
2797
  {
2838
2798
  "kind": "method",
2839
- "name": "buildCriteria",
2840
- "privacy": "private",
2799
+ "name": "templateChanged",
2800
+ "privacy": "protected",
2841
2801
  "return": {
2842
2802
  "type": {
2843
- "text": "string"
2803
+ "text": "void"
2844
2804
  }
2805
+ },
2806
+ "inheritedFrom": {
2807
+ "name": "FoundationElement",
2808
+ "module": "src/foundation-element/foundation-element.ts"
2845
2809
  }
2846
2810
  },
2847
2811
  {
2848
- "kind": "method",
2849
- "name": "setFilter",
2850
- "privacy": "public",
2851
- "parameters": [
2852
- {
2853
- "name": "fieldName",
2854
- "type": {
2855
- "text": "string"
2856
- }
2857
- },
2858
- {
2859
- "name": "newFilter",
2860
- "type": {
2861
- "text": "string"
2862
- }
2863
- }
2864
- ]
2812
+ "kind": "field",
2813
+ "name": "styles",
2814
+ "type": {
2815
+ "text": "ElementStyles | void | null"
2816
+ },
2817
+ "privacy": "public",
2818
+ "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.",
2819
+ "inheritedFrom": {
2820
+ "name": "FoundationElement",
2821
+ "module": "src/foundation-element/foundation-element.ts"
2822
+ }
2865
2823
  },
2866
2824
  {
2867
2825
  "kind": "method",
2868
- "name": "removeFilter",
2869
- "privacy": "public",
2870
- "parameters": [
2871
- {
2872
- "name": "fieldName",
2873
- "type": {
2874
- "text": "string"
2875
- }
2826
+ "name": "stylesChanged",
2827
+ "privacy": "protected",
2828
+ "return": {
2829
+ "type": {
2830
+ "text": "void"
2876
2831
  }
2877
- ]
2832
+ },
2833
+ "inheritedFrom": {
2834
+ "name": "FoundationElement",
2835
+ "module": "src/foundation-element/foundation-element.ts"
2836
+ }
2878
2837
  },
2879
2838
  {
2880
2839
  "kind": "method",
2881
- "name": "datasourceStatusChanged",
2840
+ "name": "compose",
2841
+ "privacy": "public",
2842
+ "static": true,
2843
+ "return": {
2844
+ "type": {
2845
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
2846
+ }
2847
+ },
2882
2848
  "parameters": [
2883
2849
  {
2884
- "name": "prev",
2850
+ "name": "this",
2885
2851
  "type": {
2886
- "text": "DatasourceStatus"
2852
+ "text": "K"
2887
2853
  }
2888
2854
  },
2889
2855
  {
2890
- "name": "next",
2856
+ "name": "elementDefinition",
2891
2857
  "type": {
2892
- "text": "DatasourceStatus"
2893
- }
2858
+ "text": "T"
2859
+ },
2860
+ "description": "The definition of the element to create the registry\nfunction for."
2894
2861
  }
2895
- ]
2862
+ ],
2863
+ "description": "Defines an element registry function with a set of element definition defaults.",
2864
+ "inheritedFrom": {
2865
+ "name": "FoundationElement",
2866
+ "module": "src/foundation-element/foundation-element.ts"
2867
+ }
2868
+ }
2869
+ ],
2870
+ "superclass": {
2871
+ "name": "FoundationElement",
2872
+ "package": "@microsoft/fast-foundation"
2873
+ }
2874
+ },
2875
+ {
2876
+ "kind": "variable",
2877
+ "name": "stringEditorStyles",
2878
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2879
+ "description": "Styles for the string editor"
2880
+ },
2881
+ {
2882
+ "kind": "function",
2883
+ "name": "getStringEditorTemplate",
2884
+ "parameters": [
2885
+ {
2886
+ "name": "prefix",
2887
+ "default": "'foundation'",
2888
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2889
+ }
2890
+ ],
2891
+ "description": "Get a Design System prefixed text field template.",
2892
+ "return": {
2893
+ "type": {
2894
+ "text": ""
2895
+ }
2896
+ }
2897
+ },
2898
+ {
2899
+ "kind": "variable",
2900
+ "name": "foundationStringEditor",
2901
+ "description": "Definition for the string editor component"
2902
+ }
2903
+ ],
2904
+ "exports": [
2905
+ {
2906
+ "kind": "js",
2907
+ "name": "StringEditor",
2908
+ "declaration": {
2909
+ "name": "StringEditor",
2910
+ "module": "src/cell-editors/string.editor.ts"
2911
+ }
2912
+ },
2913
+ {
2914
+ "kind": "js",
2915
+ "name": "stringEditorStyles",
2916
+ "declaration": {
2917
+ "name": "stringEditorStyles",
2918
+ "module": "src/cell-editors/string.editor.ts"
2919
+ }
2920
+ },
2921
+ {
2922
+ "kind": "js",
2923
+ "name": "getStringEditorTemplate",
2924
+ "declaration": {
2925
+ "name": "getStringEditorTemplate",
2926
+ "module": "src/cell-editors/string.editor.ts"
2927
+ }
2928
+ },
2929
+ {
2930
+ "kind": "js",
2931
+ "name": "foundationStringEditor",
2932
+ "declaration": {
2933
+ "name": "foundationStringEditor",
2934
+ "module": "src/cell-editors/string.editor.ts"
2935
+ }
2936
+ }
2937
+ ]
2938
+ },
2939
+ {
2940
+ "kind": "javascript-module",
2941
+ "path": "src/cell-formatters/action.formatter.ts",
2942
+ "declarations": [
2943
+ {
2944
+ "kind": "function",
2945
+ "name": "actionFormatter",
2946
+ "return": {
2947
+ "type": {
2948
+ "text": ""
2949
+ }
2950
+ },
2951
+ "parameters": [
2952
+ {
2953
+ "name": "cell",
2954
+ "type": {
2955
+ "text": "any"
2956
+ },
2957
+ "description": "The cell component provided by Tabulator"
2958
+ },
2959
+ {
2960
+ "name": "formatterParams",
2961
+ "default": "{}",
2962
+ "type": {
2963
+ "text": "ActionFormatterParams<T>"
2964
+ },
2965
+ "description": "Action formatter parameters"
2966
+ }
2967
+ ],
2968
+ "description": "Formatter that displays an action button in the cell.\nStyled to match grid-pro action renderer.",
2969
+ "privacy": "public"
2970
+ }
2971
+ ],
2972
+ "exports": [
2973
+ {
2974
+ "kind": "js",
2975
+ "name": "actionFormatter",
2976
+ "declaration": {
2977
+ "name": "actionFormatter",
2978
+ "module": "src/cell-formatters/action.formatter.ts"
2979
+ }
2980
+ }
2981
+ ]
2982
+ },
2983
+ {
2984
+ "kind": "javascript-module",
2985
+ "path": "src/cell-formatters/actions-menu.formatter.ts",
2986
+ "declarations": [
2987
+ {
2988
+ "kind": "function",
2989
+ "name": "actionsMenuFormatter",
2990
+ "return": {
2991
+ "type": {
2992
+ "text": ""
2993
+ }
2994
+ },
2995
+ "parameters": [
2996
+ {
2997
+ "name": "cell",
2998
+ "type": {
2999
+ "text": "any"
3000
+ },
3001
+ "description": "The cell component provided by Tabulator"
3002
+ },
3003
+ {
3004
+ "name": "formatterParams",
3005
+ "default": "{}",
3006
+ "type": {
3007
+ "text": "ActionsMenuFormatterParams<T>"
3008
+ },
3009
+ "description": "Actions menu formatter parameters"
3010
+ }
3011
+ ],
3012
+ "description": "Formatter that displays a dropdown menu of actions in the cell.\nStyled to match grid-pro actions-menu renderer.",
3013
+ "privacy": "public"
3014
+ }
3015
+ ],
3016
+ "exports": [
3017
+ {
3018
+ "kind": "js",
3019
+ "name": "actionsMenuFormatter",
3020
+ "declaration": {
3021
+ "name": "actionsMenuFormatter",
3022
+ "module": "src/cell-formatters/actions-menu.formatter.ts"
3023
+ }
3024
+ }
3025
+ ]
3026
+ },
3027
+ {
3028
+ "kind": "javascript-module",
3029
+ "path": "src/cell-formatters/boolean.formatter.ts",
3030
+ "declarations": [
3031
+ {
3032
+ "kind": "function",
3033
+ "name": "booleanFormatter",
3034
+ "return": {
3035
+ "type": {
3036
+ "text": ""
3037
+ }
3038
+ },
3039
+ "parameters": [
3040
+ {
3041
+ "name": "cell",
3042
+ "type": {
3043
+ "text": "any"
3044
+ },
3045
+ "description": "The cell component provided by Tabulator"
3046
+ },
3047
+ {
3048
+ "name": "formatterParams",
3049
+ "default": "{}",
3050
+ "type": {
3051
+ "text": "BooleanFormatterParams<T>"
3052
+ },
3053
+ "description": "Boolean formatter parameters"
3054
+ }
3055
+ ],
3056
+ "description": "Formatter that displays boolean values using a checkbox component.\nStyled to match grid-pro boolean renderer.",
3057
+ "privacy": "public"
3058
+ }
3059
+ ],
3060
+ "exports": [
3061
+ {
3062
+ "kind": "js",
3063
+ "name": "booleanFormatter",
3064
+ "declaration": {
3065
+ "name": "booleanFormatter",
3066
+ "module": "src/cell-formatters/boolean.formatter.ts"
3067
+ }
3068
+ }
3069
+ ]
3070
+ },
3071
+ {
3072
+ "kind": "javascript-module",
3073
+ "path": "src/cell-formatters/constants.ts",
3074
+ "declarations": [],
3075
+ "exports": []
3076
+ },
3077
+ {
3078
+ "kind": "javascript-module",
3079
+ "path": "src/cell-formatters/editable.formatter.ts",
3080
+ "declarations": [
3081
+ {
3082
+ "kind": "function",
3083
+ "name": "editableFormatter",
3084
+ "return": {
3085
+ "type": {
3086
+ "text": ""
3087
+ }
3088
+ },
3089
+ "parameters": [
3090
+ {
3091
+ "name": "cell",
3092
+ "type": {
3093
+ "text": "any"
3094
+ },
3095
+ "description": "The cell component provided by Tabulator"
3096
+ },
3097
+ {
3098
+ "name": "formatterParams",
3099
+ "default": "{}",
3100
+ "type": {
3101
+ "text": "EditableFormatterParams<T>"
3102
+ },
3103
+ "description": "Editable formatter parameters"
3104
+ }
3105
+ ],
3106
+ "description": "Formatter that displays an editable cell with validation state",
3107
+ "privacy": "public"
3108
+ }
3109
+ ],
3110
+ "exports": [
3111
+ {
3112
+ "kind": "js",
3113
+ "name": "editableFormatter",
3114
+ "declaration": {
3115
+ "name": "editableFormatter",
3116
+ "module": "src/cell-formatters/editable.formatter.ts"
3117
+ }
3118
+ }
3119
+ ]
3120
+ },
3121
+ {
3122
+ "kind": "javascript-module",
3123
+ "path": "src/cell-formatters/index.ts",
3124
+ "declarations": [
3125
+ {
3126
+ "kind": "variable",
3127
+ "name": "formatters",
3128
+ "type": {
3129
+ "text": "object"
3130
+ },
3131
+ "default": "{\n action: actionFormatter,\n actionsMenu: actionsMenuFormatter,\n boolean: booleanFormatter,\n editable: editableFormatter,\n select: selectFormatter,\n text: textFormatter,\n}",
3132
+ "description": "Zero formatters for Tabulator grid"
3133
+ }
3134
+ ],
3135
+ "exports": [
3136
+ {
3137
+ "kind": "js",
3138
+ "name": "*",
3139
+ "declaration": {
3140
+ "name": "*",
3141
+ "package": "./constants"
3142
+ }
3143
+ },
3144
+ {
3145
+ "kind": "js",
3146
+ "name": "ActionFormatterParams",
3147
+ "declaration": {
3148
+ "name": "ActionFormatterParams",
3149
+ "module": "src/cell-formatters/index.ts"
3150
+ }
3151
+ },
3152
+ {
3153
+ "kind": "js",
3154
+ "name": "actionFormatter",
3155
+ "declaration": {
3156
+ "name": "actionFormatter",
3157
+ "module": "src/cell-formatters/index.ts"
3158
+ }
3159
+ },
3160
+ {
3161
+ "kind": "js",
3162
+ "name": "ActionsMenuFormatterParams",
3163
+ "declaration": {
3164
+ "name": "ActionsMenuFormatterParams",
3165
+ "module": "src/cell-formatters/index.ts"
3166
+ }
3167
+ },
3168
+ {
3169
+ "kind": "js",
3170
+ "name": "actionsMenuFormatter",
3171
+ "declaration": {
3172
+ "name": "actionsMenuFormatter",
3173
+ "module": "src/cell-formatters/index.ts"
3174
+ }
3175
+ },
3176
+ {
3177
+ "kind": "js",
3178
+ "name": "BooleanFormatterParams",
3179
+ "declaration": {
3180
+ "name": "BooleanFormatterParams",
3181
+ "module": "src/cell-formatters/index.ts"
3182
+ }
3183
+ },
3184
+ {
3185
+ "kind": "js",
3186
+ "name": "booleanFormatter",
3187
+ "declaration": {
3188
+ "name": "booleanFormatter",
3189
+ "module": "src/cell-formatters/index.ts"
3190
+ }
3191
+ },
3192
+ {
3193
+ "kind": "js",
3194
+ "name": "EditableFormatterParams",
3195
+ "declaration": {
3196
+ "name": "EditableFormatterParams",
3197
+ "module": "src/cell-formatters/index.ts"
3198
+ }
3199
+ },
3200
+ {
3201
+ "kind": "js",
3202
+ "name": "editableFormatter",
3203
+ "declaration": {
3204
+ "name": "editableFormatter",
3205
+ "module": "src/cell-formatters/index.ts"
3206
+ }
3207
+ },
3208
+ {
3209
+ "kind": "js",
3210
+ "name": "SelectFormatterParams",
3211
+ "declaration": {
3212
+ "name": "SelectFormatterParams",
3213
+ "module": "src/cell-formatters/index.ts"
3214
+ }
3215
+ },
3216
+ {
3217
+ "kind": "js",
3218
+ "name": "selectFormatter",
3219
+ "declaration": {
3220
+ "name": "selectFormatter",
3221
+ "module": "src/cell-formatters/index.ts"
3222
+ }
3223
+ },
3224
+ {
3225
+ "kind": "js",
3226
+ "name": "TextFormatterParams",
3227
+ "declaration": {
3228
+ "name": "TextFormatterParams",
3229
+ "module": "src/cell-formatters/index.ts"
3230
+ }
3231
+ },
3232
+ {
3233
+ "kind": "js",
3234
+ "name": "textFormatter",
3235
+ "declaration": {
3236
+ "name": "textFormatter",
3237
+ "module": "src/cell-formatters/index.ts"
3238
+ }
3239
+ },
3240
+ {
3241
+ "kind": "js",
3242
+ "name": "formatters",
3243
+ "declaration": {
3244
+ "name": "formatters",
3245
+ "module": "src/cell-formatters/index.ts"
3246
+ }
3247
+ }
3248
+ ]
3249
+ },
3250
+ {
3251
+ "kind": "javascript-module",
3252
+ "path": "src/cell-formatters/select.formatter.ts",
3253
+ "declarations": [
3254
+ {
3255
+ "kind": "function",
3256
+ "name": "selectFormatter",
3257
+ "return": {
3258
+ "type": {
3259
+ "text": ""
3260
+ }
3261
+ },
3262
+ "parameters": [
3263
+ {
3264
+ "name": "cell",
3265
+ "type": {
3266
+ "text": "any"
3267
+ },
3268
+ "description": "The cell component provided by Tabulator"
3269
+ },
3270
+ {
3271
+ "name": "formatterParams",
3272
+ "type": {
3273
+ "text": "SelectFormatterParams<T>"
3274
+ },
3275
+ "description": "Select formatter parameters"
3276
+ }
3277
+ ],
3278
+ "description": "Formatter that displays a select component with options.\nReturns a wrapped div containing the select, similar to boolean.formatter.",
3279
+ "privacy": "public"
3280
+ }
3281
+ ],
3282
+ "exports": [
3283
+ {
3284
+ "kind": "js",
3285
+ "name": "selectFormatter",
3286
+ "declaration": {
3287
+ "name": "selectFormatter",
3288
+ "module": "src/cell-formatters/select.formatter.ts"
3289
+ }
3290
+ }
3291
+ ]
3292
+ },
3293
+ {
3294
+ "kind": "javascript-module",
3295
+ "path": "src/cell-formatters/text.formatter.ts",
3296
+ "declarations": [
3297
+ {
3298
+ "kind": "function",
3299
+ "name": "textFormatter",
3300
+ "return": {
3301
+ "type": {
3302
+ "text": ""
3303
+ }
3304
+ },
3305
+ "parameters": [
3306
+ {
3307
+ "name": "cell",
3308
+ "type": {
3309
+ "text": "any"
3310
+ },
3311
+ "description": "The cell component provided by Tabulator"
3312
+ },
3313
+ {
3314
+ "name": "formatterParams",
3315
+ "default": "{}",
3316
+ "type": {
3317
+ "text": "TextFormatterParams<T>"
3318
+ },
3319
+ "description": "Text formatter parameters"
3320
+ }
3321
+ ],
3322
+ "description": "Text formatter for customized display of values.\nStyled to match grid-pro text renderer.",
3323
+ "privacy": "public"
3324
+ }
3325
+ ],
3326
+ "exports": [
3327
+ {
3328
+ "kind": "js",
3329
+ "name": "textFormatter",
3330
+ "declaration": {
3331
+ "name": "textFormatter",
3332
+ "module": "src/cell-formatters/text.formatter.ts"
3333
+ }
3334
+ }
3335
+ ]
3336
+ },
3337
+ {
3338
+ "kind": "javascript-module",
3339
+ "path": "src/column/column.ts",
3340
+ "declarations": [
3341
+ {
3342
+ "kind": "class",
3343
+ "description": "The GridTabulator Column element.",
3344
+ "name": "GridTabulatorColumn",
3345
+ "members": [
3346
+ {
3347
+ "kind": "field",
3348
+ "name": "slottedCell",
3349
+ "type": {
3350
+ "text": "HTMLElement[]"
3351
+ },
3352
+ "privacy": "public"
3353
+ },
3354
+ {
3355
+ "kind": "field",
3356
+ "name": "definition",
3357
+ "type": {
3358
+ "text": "Partial<ColumnDefinition>"
3359
+ },
3360
+ "default": "{}"
3361
+ },
3362
+ {
3363
+ "kind": "method",
3364
+ "name": "slottedCellChanged",
3365
+ "privacy": "public"
3366
+ },
3367
+ {
3368
+ "kind": "method",
3369
+ "name": "deepClone",
3370
+ "return": {
3371
+ "type": {
3372
+ "text": "Node"
3373
+ }
3374
+ },
3375
+ "inheritedFrom": {
3376
+ "name": "LifecycleMixin",
3377
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3378
+ }
2896
3379
  },
2897
3380
  {
2898
3381
  "kind": "method",
@@ -3077,158 +3560,42 @@
3077
3560
  }
3078
3561
  }
3079
3562
  ],
3080
- "attributes": [
3081
- {
3082
- "name": "criteria",
3083
- "type": {
3084
- "text": "string"
3085
- },
3086
- "fieldName": "criteria"
3087
- },
3088
- {
3089
- "name": "fields",
3090
- "type": {
3091
- "text": "string"
3092
- },
3093
- "fieldName": "fields"
3094
- },
3095
- {
3096
- "name": "is-snapshot",
3097
- "type": {
3098
- "text": "boolean"
3099
- },
3100
- "default": "false",
3101
- "fieldName": "isSnapshot"
3102
- },
3103
- {
3104
- "name": "max-rows",
3105
- "type": {
3106
- "text": "number"
3107
- },
3108
- "fieldName": "maxRows"
3109
- },
3110
- {
3111
- "name": "max-view",
3112
- "type": {
3113
- "text": "number"
3114
- },
3115
- "fieldName": "maxView"
3116
- },
3117
- {
3118
- "name": "polling-interval",
3119
- "type": {
3120
- "text": "number"
3121
- },
3122
- "fieldName": "pollingInterval"
3123
- },
3124
- {
3125
- "name": "moving-view",
3126
- "type": {
3127
- "text": "boolean"
3128
- },
3129
- "default": "false",
3130
- "fieldName": "movingView"
3131
- },
3132
- {
3133
- "name": "order-by",
3134
- "type": {
3135
- "text": "string"
3136
- },
3137
- "fieldName": "orderBy"
3138
- },
3139
- {
3140
- "name": "resource-name",
3141
- "type": {
3142
- "text": "string"
3143
- },
3144
- "fieldName": "resourceName"
3145
- },
3146
- {
3147
- "type": {
3148
- "text": "boolean"
3149
- },
3150
- "default": "false",
3151
- "fieldName": "reverse"
3152
- },
3153
- {
3154
- "name": "row-id",
3155
- "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
3156
- "fieldName": "rowIdAttr"
3157
- },
3158
- {
3159
- "name": "restart-on-reconnection",
3160
- "type": {
3161
- "text": "boolean"
3162
- },
3163
- "default": "true",
3164
- "fieldName": "restartOnReconnection"
3165
- },
3166
- {
3167
- "name": "keep-col-defs-on-clear-row-data",
3168
- "type": {
3169
- "text": "boolean"
3170
- },
3171
- "default": "false",
3172
- "description": "Whether to keep column definitions when clearing row data",
3173
- "fieldName": "keepColDefsOnClearRowData"
3174
- }
3175
- ],
3176
3563
  "mixins": [
3177
3564
  {
3178
3565
  "name": "LifecycleMixin",
3179
3566
  "package": "@genesislcap/foundation-utils"
3180
- },
3181
- {
3182
- "name": "DatasourceEventHandler",
3183
- "package": "@genesislcap/foundation-comms"
3184
3567
  }
3185
3568
  ],
3186
3569
  "superclass": {
3187
3570
  "name": "FoundationElement",
3188
3571
  "package": "@microsoft/fast-foundation"
3189
3572
  },
3190
- "tagName": "grid-tabulator-client-side-datasource",
3573
+ "tagName": "grid-tabulator-column",
3191
3574
  "customElement": true
3192
3575
  }
3193
3576
  ],
3194
3577
  "exports": [
3195
3578
  {
3196
3579
  "kind": "js",
3197
- "name": "criteriaDelimiter",
3198
- "declaration": {
3199
- "name": "criteriaDelimiter",
3200
- "module": "src/datasource/client-side.datasource.ts"
3201
- }
3202
- },
3203
- {
3204
- "kind": "js",
3205
- "name": "criteriaJoin",
3206
- "declaration": {
3207
- "name": "criteriaJoin",
3208
- "module": "src/datasource/client-side.datasource.ts"
3209
- }
3210
- },
3211
- {
3212
- "kind": "js",
3213
- "name": "GridTabulatorClientSideDatasource",
3580
+ "name": "GridTabulatorColumn",
3214
3581
  "declaration": {
3215
- "name": "GridTabulatorClientSideDatasource",
3216
- "module": "src/datasource/client-side.datasource.ts"
3582
+ "name": "GridTabulatorColumn",
3583
+ "module": "src/column/column.ts"
3217
3584
  }
3218
3585
  },
3219
3586
  {
3220
3587
  "kind": "custom-element-definition",
3221
- "name": "grid-tabulator-client-side-datasource",
3588
+ "name": "grid-tabulator-column",
3222
3589
  "declaration": {
3223
- "name": "GridTabulatorClientSideDatasource",
3224
- "module": "src/datasource/client-side.datasource.ts"
3590
+ "name": "GridTabulatorColumn",
3591
+ "module": "src/column/column.ts"
3225
3592
  }
3226
3593
  }
3227
3594
  ]
3228
3595
  },
3229
3596
  {
3230
3597
  "kind": "javascript-module",
3231
- "path": "src/datasource/index.ts",
3598
+ "path": "src/column/index.ts",
3232
3599
  "declarations": [],
3233
3600
  "exports": [
3234
3601
  {
@@ -3236,992 +3603,654 @@
3236
3603
  "name": "*",
3237
3604
  "declaration": {
3238
3605
  "name": "*",
3239
- "package": "./client-side.datasource"
3606
+ "package": "./column"
3240
3607
  }
3241
3608
  }
3242
3609
  ]
3243
3610
  },
3244
3611
  {
3245
3612
  "kind": "javascript-module",
3246
- "path": "src/external/fonts.ts",
3613
+ "path": "src/datasource/client-side.datasource.ts",
3247
3614
  "declarations": [
3248
3615
  {
3249
3616
  "kind": "variable",
3250
- "name": "tabulatorDefaultFontFace",
3251
- "default": "`\n @font-face {\n font-family: \"defaultFontFace\";\n }\n`"
3252
- },
3253
- {
3254
- "kind": "variable",
3255
- "name": "tabulatorRapidFontFace",
3256
- "default": "`\n @font-face {\n font-family: \"rapidFontFace\";\n }\n`"
3257
- },
3258
- {
3259
- "kind": "variable",
3260
- "name": "gridThemeFontFaceMap",
3617
+ "name": "criteriaDelimiter",
3261
3618
  "type": {
3262
- "text": "GridThemeFontFaceMap"
3619
+ "text": "string"
3263
3620
  },
3264
- "default": "{\n [GridTabulatorTheme.default]: tabulatorDefaultFontFace,\n [GridTabulatorTheme.rapid]: tabulatorRapidFontFace,\n}"
3265
- },
3266
- {
3267
- "kind": "variable",
3268
- "name": "defaultGridTabulatorFontFace",
3269
- "default": "tabulatorDefaultFontFace"
3270
- }
3271
- ],
3272
- "exports": [
3273
- {
3274
- "kind": "js",
3275
- "name": "tabulatorDefaultFontFace",
3276
- "declaration": {
3277
- "name": "tabulatorDefaultFontFace",
3278
- "module": "src/external/fonts.ts"
3279
- }
3280
- },
3281
- {
3282
- "kind": "js",
3283
- "name": "tabulatorRapidFontFace",
3284
- "declaration": {
3285
- "name": "tabulatorRapidFontFace",
3286
- "module": "src/external/fonts.ts"
3287
- }
3288
- },
3289
- {
3290
- "kind": "js",
3291
- "name": "gridThemeFontFaceMap",
3292
- "declaration": {
3293
- "name": "gridThemeFontFaceMap",
3294
- "module": "src/external/fonts.ts"
3295
- }
3621
+ "default": "';'",
3622
+ "description": "Delimiter for criteria in the datasource"
3296
3623
  },
3297
- {
3298
- "kind": "js",
3299
- "name": "defaultGridTabulatorFontFace",
3300
- "declaration": {
3301
- "name": "defaultGridTabulatorFontFace",
3302
- "module": "src/external/fonts.ts"
3303
- }
3304
- }
3305
- ]
3306
- },
3307
- {
3308
- "kind": "javascript-module",
3309
- "path": "src/external/index.ts",
3310
- "declarations": [
3311
3624
  {
3312
3625
  "kind": "variable",
3313
- "name": "tabulatorExternalStockStyles",
3314
- "default": "css`\n ${tabulatorThemeSimpleCSS}\n`",
3315
- "description": "External styles for the Tabulator grid.",
3316
- "privacy": "public"
3317
- }
3318
- ],
3319
- "exports": [
3320
- {
3321
- "kind": "js",
3322
- "name": "tabulatorExternalStockStyles",
3323
- "declaration": {
3324
- "name": "tabulatorExternalStockStyles",
3325
- "module": "src/external/index.ts"
3326
- }
3626
+ "name": "criteriaJoin",
3627
+ "type": {
3628
+ "text": "string"
3629
+ },
3630
+ "default": "' && '",
3631
+ "description": "Join operator for criteria in the datasource"
3327
3632
  },
3328
- {
3329
- "kind": "js",
3330
- "name": "tabulatorThemeSimpleCSS",
3331
- "declaration": {
3332
- "name": "tabulatorThemeSimpleCSS",
3333
- "module": "src/external/index.ts"
3334
- }
3335
- }
3336
- ]
3337
- },
3338
- {
3339
- "kind": "javascript-module",
3340
- "path": "src/external/tabulator-theme-simple-css.ts",
3341
- "declarations": [
3342
- {
3343
- "kind": "variable",
3344
- "name": "tabulatorThemeSimpleCSS",
3345
- "default": "css`\n .tabulator {\n position: relative;\n border: 1px solid #999;\n background-color: #fff;\n font-size: 14px;\n text-align: left;\n overflow: hidden;\n -webkit-transform: translateZ(0);\n -moz-transform: translateZ(0);\n -ms-transform: translateZ(0);\n -o-transform: translateZ(0);\n transform: translateZ(0);\n }\n\n .tabulator[tabulator-layout='fitDataFill'] .tabulator-tableholder .tabulator-table {\n min-width: 100%;\n }\n\n .tabulator[tabulator-layout='fitDataTable'] {\n display: inline-block;\n }\n\n .tabulator.tabulator-block-select {\n user-select: none;\n }\n\n .tabulator .tabulator-header {\n position: relative;\n box-sizing: border-box;\n width: 100%;\n border-bottom: 1px solid #999;\n background-color: #fff;\n color: #555;\n font-weight: bold;\n white-space: nowrap;\n overflow: hidden;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator .tabulator-header.tabulator-header-hidden {\n display: none;\n }\n\n .tabulator .tabulator-header .tabulator-header-contents {\n position: relative;\n overflow: hidden;\n }\n\n .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {\n display: inline-block;\n }\n\n .tabulator .tabulator-header .tabulator-col {\n display: inline-flex;\n position: relative;\n box-sizing: border-box;\n flex-direction: column;\n justify-content: flex-start;\n border-right: 1px solid #ddd;\n background: #fff;\n text-align: left;\n vertical-align: bottom;\n overflow: hidden;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-moving {\n position: absolute;\n border: 1px solid #999;\n background: #e6e6e6;\n pointer-events: none;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content {\n box-sizing: border-box;\n position: relative;\n padding: 4px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-header-popup-button {\n padding: 0 8px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-header-popup-button:hover {\n cursor: pointer;\n opacity: 0.6;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {\n position: relative;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {\n box-sizing: border-box;\n width: 100%;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n vertical-align: bottom;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title.tabulator-col-title-wrap {\n white-space: normal;\n text-overflow: initial;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title\n .tabulator-title-editor {\n box-sizing: border-box;\n width: 100%;\n border: 1px solid #999;\n padding: 1px;\n background: #fff;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title\n .tabulator-header-popup-button\n + .tabulator-title-editor {\n width: calc(100% - 22px);\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {\n display: flex;\n align-items: center;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 4px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n width: 0;\n height: 0;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-bottom: 6px solid #bbb;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {\n position: relative;\n display: flex;\n border-top: 1px solid #ddd;\n overflow: hidden;\n margin-right: -1px;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter {\n position: relative;\n box-sizing: border-box;\n margin-top: 2px;\n width: 100%;\n text-align: center;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {\n height: auto !important;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {\n margin-top: 3px;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {\n width: 0;\n height: 0;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {\n padding-right: 25px;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {\n cursor: pointer;\n background-color: #e6e6e6;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #bbb;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-bottom: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-top: none;\n border-bottom: 6px solid #bbb;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #666;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-bottom: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-top: none;\n border-bottom: 6px solid #666;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #666;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-top: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-bottom: none;\n border-top: 6px solid #666;\n color: #666;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical\n .tabulator-col-content\n .tabulator-col-title {\n writing-mode: vertical-rl;\n text-orientation: mixed;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip\n .tabulator-col-title {\n transform: rotate(180deg);\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable\n .tabulator-col-title {\n padding-right: 0;\n padding-top: 20px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip\n .tabulator-col-title {\n padding-right: 0;\n padding-bottom: 20px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable\n .tabulator-col-sorter {\n justify-content: center;\n left: 0;\n right: 0;\n top: 4px;\n bottom: auto;\n }\n\n .tabulator .tabulator-header .tabulator-frozen {\n position: sticky;\n left: 0;\n z-index: 11;\n }\n\n .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {\n border-right: 2px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {\n border-left: 2px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder {\n box-sizing: border-box;\n background: white !important;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {\n background: white !important;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {\n display: none;\n }\n\n .tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {\n display: none;\n }\n\n .tabulator .tabulator-tableholder {\n position: relative;\n width: 100%;\n white-space: nowrap;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n }\n\n .tabulator .tabulator-tableholder:focus {\n outline: none;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode='virtual'] {\n min-height: 100%;\n min-width: 100%;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {\n display: inline-block;\n text-align: center;\n padding: 10px;\n color: #ccc;\n font-weight: bold;\n font-size: 20px;\n white-space: normal;\n }\n\n .tabulator .tabulator-tableholder .tabulator-table {\n position: relative;\n display: inline-block;\n white-space: nowrap;\n overflow: visible;\n color: #333;\n }\n\n .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {\n font-weight: bold;\n background: #f2f2f2;\n }\n\n .tabulator\n .tabulator-tableholder\n .tabulator-table\n .tabulator-row.tabulator-calcs.tabulator-calcs-top {\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator\n .tabulator-tableholder\n .tabulator-table\n .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {\n border-top: 2px solid #ddd;\n }\n\n .tabulator .tabulator-footer {\n border-top: 1px solid #999;\n background-color: #fff;\n color: #555;\n font-weight: bold;\n white-space: nowrap;\n user-select: none;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator .tabulator-footer .tabulator-footer-contents {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding: 5px 10px;\n }\n\n .tabulator .tabulator-footer .tabulator-footer-contents:empty {\n display: none;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder {\n box-sizing: border-box;\n width: 100%;\n text-align: left;\n background: white !important;\n border-bottom: 1px solid #ddd;\n border-top: 1px solid #ddd;\n overflow: hidden;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {\n display: inline-block;\n background: white !important;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {\n display: none;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder:only-child {\n margin-bottom: -5px;\n border-bottom: none;\n }\n\n .tabulator .tabulator-footer > * + .tabulator-page-counter {\n margin-left: 10px;\n }\n\n .tabulator .tabulator-footer .tabulator-page-counter {\n font-weight: normal;\n }\n\n .tabulator .tabulator-footer .tabulator-paginator {\n flex: 1;\n text-align: right;\n color: #555;\n font-family: inherit;\n font-weight: inherit;\n font-size: inherit;\n }\n\n .tabulator .tabulator-footer .tabulator-page-size {\n display: inline-block;\n margin: 0 5px;\n padding: 2px 5px;\n border: 1px solid #aaa;\n border-radius: 3px;\n }\n\n .tabulator .tabulator-footer .tabulator-pages {\n margin: 0 7px;\n }\n\n .tabulator .tabulator-footer .tabulator-page {\n display: inline-block;\n margin: 0 2px;\n padding: 2px 5px;\n border: 1px solid #aaa;\n border-radius: 3px;\n background: rgba(255, 255, 255, 0.2);\n }\n\n .tabulator .tabulator-footer .tabulator-page.active {\n color: #d00;\n }\n\n .tabulator .tabulator-footer .tabulator-page:disabled {\n opacity: 0.5;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n color: #fff;\n }\n }\n\n .tabulator .tabulator-col-resize-handle {\n position: relative;\n display: inline-block;\n width: 6px;\n margin-left: -3px;\n margin-right: -3px;\n z-index: 10;\n vertical-align: middle;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator .tabulator-col-resize-handle:hover {\n cursor: ew-resize;\n }\n }\n\n .tabulator .tabulator-col-resize-handle:last-of-type {\n width: 3px;\n margin-right: 0;\n }\n\n .tabulator .tabulator-alert {\n position: absolute;\n display: flex;\n align-items: center;\n top: 0;\n left: 0;\n z-index: 100;\n height: 100%;\n width: 100%;\n background: rgba(0, 0, 0, 0.4);\n text-align: center;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg {\n display: inline-block;\n margin: 0 auto;\n padding: 10px 20px;\n border-radius: 10px;\n background: #fff;\n font-weight: bold;\n font-size: 16px;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {\n border: 4px solid #333;\n color: #000;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {\n border: 4px solid #d00;\n color: #590000;\n }\n\n .tabulator-row {\n position: relative;\n box-sizing: border-box;\n min-height: 22px;\n background-color: #fff;\n }\n\n .tabulator-row.tabulator-row-even {\n background-color: #fff;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-selectable:hover {\n background-color: #bbb;\n cursor: pointer;\n }\n }\n\n .tabulator-row.tabulator-selected {\n background-color: #9abcea;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-selected:hover {\n background-color: #769bcc;\n cursor: pointer;\n }\n }\n\n .tabulator-row.tabulator-row-moving {\n border: 1px solid #000;\n background: #fff;\n }\n\n .tabulator-row.tabulator-moving {\n position: absolute;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n pointer-events: none;\n z-index: 15;\n }\n\n .tabulator-row .tabulator-row-resize-handle {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n height: 5px;\n }\n\n .tabulator-row .tabulator-row-resize-handle.prev {\n top: 0;\n bottom: auto;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-row-resize-handle:hover {\n cursor: ns-resize;\n }\n }\n\n .tabulator-row .tabulator-responsive-collapse {\n box-sizing: border-box;\n padding: 5px;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator-row .tabulator-responsive-collapse:empty {\n display: none;\n }\n\n .tabulator-row .tabulator-responsive-collapse table {\n font-size: 14px;\n }\n\n .tabulator-row .tabulator-responsive-collapse table tr td {\n position: relative;\n }\n\n .tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {\n padding-right: 10px;\n }\n\n .tabulator-row .tabulator-cell {\n display: inline-flex;\n position: unset;\n box-sizing: border-box;\n padding: 4px 8px;\n border-right: 1px solid #ddd;\n vertical-align: middle;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen {\n display: inline-flex;\n position: sticky;\n left: 0;\n background-color: inherit;\n z-index: 11;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {\n border-right: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {\n border-left: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell.tabulator-editing {\n border: 1px solid #1d68cd;\n outline: none;\n padding: 0;\n }\n\n .tabulator-row .tabulator-cell.tabulator-editing input,\n .tabulator-row .tabulator-cell.tabulator-editing select {\n border: 1px;\n background: transparent;\n outline: none;\n }\n\n .tabulator-row .tabulator-cell.tabulator-validation-fail {\n border: 1px solid #dd0000;\n }\n\n .tabulator-row .tabulator-cell.tabulator-validation-fail input,\n .tabulator-row .tabulator-cell.tabulator-validation-fail select {\n border: 1px;\n background: transparent;\n color: #dd0000;\n }\n\n .tabulator-row .tabulator-cell.tabulator-row-handle {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {\n width: 80%;\n }\n\n .tabulator-row\n .tabulator-cell.tabulator-row-handle\n .tabulator-row-handle-box\n .tabulator-row-handle-bar {\n width: 100%;\n height: 3px;\n margin-top: 2px;\n background: #666;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-branch-empty {\n display: inline-block;\n width: 7px;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-branch {\n display: inline-block;\n vertical-align: middle;\n height: 9px;\n width: 7px;\n margin-top: -9px;\n margin-right: 5px;\n border-bottom-left-radius: 1px;\n border-left: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-control {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n vertical-align: middle;\n height: 11px;\n width: 11px;\n margin-right: 5px;\n border: 1px solid #333;\n border-radius: 2px;\n background: rgba(0, 0, 0, 0.1);\n overflow: hidden;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n }\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-collapse {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: transparent;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-collapse:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: #333;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-expand:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n height: 15px;\n width: 15px;\n border-radius: 20px;\n background: #666;\n color: #fff;\n font-weight: bold;\n font-size: 1.1em;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {\n opacity: 0.7;\n cursor: pointer;\n }\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle.open\n .tabulator-responsive-collapse-toggle-close {\n display: initial;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle.open\n .tabulator-responsive-collapse-toggle-open {\n display: none;\n }\n\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle svg {\n stroke: #fff;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle\n .tabulator-responsive-collapse-toggle-close {\n display: none;\n }\n\n .tabulator-row .tabulator-cell .tabulator-traffic-light {\n display: inline-block;\n height: 14px;\n width: 14px;\n border-radius: 14px;\n }\n\n .tabulator-row.tabulator-group {\n box-sizing: border-box;\n border-bottom: 1px solid #999;\n border-right: 1px solid #ddd;\n border-top: 1px solid #999;\n padding: 5px;\n padding-left: 10px;\n background: #ccc;\n font-weight: bold;\n min-width: 100%;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-group:hover {\n cursor: pointer;\n background-color: rgba(0, 0, 0, 0.1);\n }\n }\n\n .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {\n margin-right: 10px;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid #666;\n border-bottom: 0;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-1 {\n padding-left: 30px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-2 {\n padding-left: 50px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-3 {\n padding-left: 70px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-4 {\n padding-left: 90px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-5 {\n padding-left: 110px;\n }\n\n .tabulator-row.tabulator-group .tabulator-group-toggle {\n display: inline-block;\n }\n\n .tabulator-row.tabulator-group .tabulator-arrow {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 16px;\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n border-right: 0;\n border-left: 6px solid #666;\n vertical-align: middle;\n }\n\n .tabulator-row.tabulator-group span {\n margin-left: 10px;\n color: #d00;\n }\n\n .tabulator-popup-container {\n position: absolute;\n display: inline-block;\n box-sizing: border-box;\n background: #fff;\n border: 1px solid #ddd;\n box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);\n font-size: 14px;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n z-index: 10000;\n }\n\n .tabulator-popup {\n padding: 5px;\n border-radius: 3px;\n }\n\n .tabulator-tooltip {\n max-width: Min(500px, 100%);\n padding: 3px 5px;\n border-radius: 2px;\n box-shadow: none;\n font-size: 12px;\n pointer-events: none;\n }\n\n .tabulator-menu .tabulator-menu-item {\n position: relative;\n box-sizing: border-box;\n padding: 5px 10px;\n user-select: none;\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {\n opacity: 0.5;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {\n cursor: pointer;\n background: #fff;\n }\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {\n padding-right: 25px;\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu::after {\n display: inline-block;\n position: absolute;\n top: calc(5px + 0.4em);\n right: 10px;\n height: 7px;\n width: 7px;\n content: '';\n border-width: 1px 1px 0 0;\n border-style: solid;\n border-color: #ddd;\n vertical-align: top;\n transform: rotate(45deg);\n }\n\n .tabulator-menu .tabulator-menu-separator {\n border-top: 1px solid #ddd;\n }\n\n .tabulator-edit-list {\n max-height: 200px;\n font-size: 14px;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item {\n padding: 4px;\n color: #333;\n outline: none;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.active {\n color: #fff;\n background: #1d68cd;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.active.focused {\n outline: 1px solid rgba(255, 255, 255, 0.5);\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.focused {\n outline: 1px solid #1d68cd;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-edit-list .tabulator-edit-list-item:hover {\n cursor: pointer;\n color: #fff;\n background: #1d68cd;\n }\n }\n\n .tabulator-edit-list .tabulator-edit-list-placeholder {\n padding: 4px;\n color: #333;\n text-align: center;\n }\n\n .tabulator-edit-list .tabulator-edit-list-group {\n border-bottom: 1px solid #ddd;\n padding: 4px;\n padding-top: 6px;\n color: #333;\n font-weight: bold;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2 {\n padding-left: 12px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3 {\n padding-left: 20px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4 {\n padding-left: 28px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5 {\n padding-left: 36px;\n }\n\n .tabulator.tabulator-ltr {\n direction: ltr;\n }\n\n .tabulator.tabulator-rtl {\n text-align: initial;\n direction: rtl;\n }\n\n .tabulator.tabulator-rtl .tabulator-header .tabulator-col {\n text-align: initial;\n border-left: 1px solid #ddd;\n border-right: initial;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col.tabulator-col-group\n .tabulator-col-group-cols {\n margin-right: initial;\n margin-left: -1px;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col.tabulator-sortable\n .tabulator-col-title {\n padding-right: 0;\n padding-left: 25px;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-sorter {\n left: 8px;\n right: initial;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell {\n border-right: initial;\n border-left: 1px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-branch {\n margin-right: initial;\n margin-left: 5px;\n border-bottom-left-radius: initial;\n border-bottom-right-radius: 1px;\n border-left: initial;\n border-right: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-control {\n margin-right: initial;\n margin-left: 5px;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {\n border-left: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {\n border-right: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-col-resize-handle:last-of-type {\n width: 3px;\n margin-left: 0;\n margin-right: -3px;\n }\n\n .tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {\n text-align: initial;\n }\n\n .tabulator-print-fullscreen {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 10000;\n }\n\n body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {\n display: none !important;\n }\n\n .tabulator-print-table {\n border-collapse: collapse;\n }\n\n .tabulator-print-table .tabulator-data-tree-branch {\n display: inline-block;\n vertical-align: middle;\n height: 9px;\n width: 7px;\n margin-top: -9px;\n margin-right: 5px;\n border-bottom-left-radius: 1px;\n border-left: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator-print-table .tabulator-print-table-group {\n box-sizing: border-box;\n border-bottom: 1px solid #999;\n border-right: 1px solid #ddd;\n border-top: 1px solid #999;\n padding: 5px;\n padding-left: 10px;\n background: #ccc;\n font-weight: bold;\n min-width: 100%;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-print-table .tabulator-print-table-group:hover {\n cursor: pointer;\n background-color: rgba(0, 0, 0, 0.1);\n }\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {\n margin-right: 10px;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid #666;\n border-bottom: 0;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-1 td {\n padding-left: 30px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-2 td {\n padding-left: 50px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-3 td {\n padding-left: 70px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-4 td {\n padding-left: 90px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-5 td {\n padding-left: 110px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group .tabulator-group-toggle {\n display: inline-block;\n }\n\n .tabulator-print-table .tabulator-print-table-group .tabulator-arrow {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 16px;\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n border-right: 0;\n border-left: 6px solid #666;\n vertical-align: middle;\n }\n\n .tabulator-print-table .tabulator-print-table-group span {\n margin-left: 10px;\n color: #d00;\n }\n\n .tabulator-print-table .tabulator-data-tree-control {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n vertical-align: middle;\n height: 11px;\n width: 11px;\n margin-right: 5px;\n border: 1px solid #333;\n border-radius: 2px;\n background: rgba(0, 0, 0, 0.1);\n overflow: hidden;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-print-table .tabulator-data-tree-control:hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n }\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: transparent;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: #333;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator {\n border: none;\n background-color: #fff;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder {\n background: #f2f2f2 !important;\n border-bottom: 1px solid #999;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {\n background: #f2f2f2 !important;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder span {\n color: #000;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder {\n background: #f2f2f2 !important;\n border-bottom: 1px solid #fff;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {\n background: #f2f2f2 !important;\n }\n\n .tabulator-row {\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell:last-of-type {\n border-right: none;\n }\n\n .tabulator-row.tabulator-group span {\n color: #666;\n }\n\n .tabulator-print-table .tabulator-print-table-group span {\n margin-left: 10px;\n color: #666;\n }\n\n /*# sourceMappingURL=tabulator_simple.css.map */\n`",
3346
- "description": "External styles for the Tabulator grid.",
3347
- "privacy": "public"
3348
- }
3349
- ],
3350
- "exports": [
3351
- {
3352
- "kind": "js",
3353
- "name": "tabulatorThemeSimpleCSS",
3354
- "declaration": {
3355
- "name": "tabulatorThemeSimpleCSS",
3356
- "module": "src/external/tabulator-theme-simple-css.ts"
3357
- }
3358
- }
3359
- ]
3360
- },
3361
- {
3362
- "kind": "javascript-module",
3363
- "path": "src/cell-editors/date.editor.ts",
3364
- "declarations": [
3365
3633
  {
3366
3634
  "kind": "class",
3367
- "description": "The date editor class for grid-tabulator",
3368
- "name": "DateEditor",
3635
+ "description": "The Genesis Datasource element, for client-side data fetching and used exclusively by the GridTabulator element.",
3636
+ "name": "GridTabulatorClientSideDatasource",
3369
3637
  "members": [
3370
3638
  {
3371
3639
  "kind": "field",
3372
- "name": "params",
3640
+ "name": "auth",
3373
3641
  "type": {
3374
- "text": "DateEditorParams"
3642
+ "text": "Auth"
3375
3643
  }
3376
3644
  },
3377
3645
  {
3378
3646
  "kind": "field",
3379
- "name": "dateField",
3647
+ "name": "connect",
3380
3648
  "type": {
3381
- "text": "any"
3649
+ "text": "Connect"
3650
+ }
3651
+ },
3652
+ {
3653
+ "kind": "field",
3654
+ "name": "datasource",
3655
+ "type": {
3656
+ "text": "Datasource"
3657
+ }
3658
+ },
3659
+ {
3660
+ "kind": "field",
3661
+ "name": "deferredGridOptions",
3662
+ "type": {
3663
+ "text": "Options"
3664
+ }
3665
+ },
3666
+ {
3667
+ "kind": "field",
3668
+ "name": "deferredColumnStates",
3669
+ "type": {
3670
+ "text": "any[]"
3671
+ },
3672
+ "default": "[]",
3673
+ "description": "Allows storing column layouts between datasource initializations"
3674
+ },
3675
+ {
3676
+ "kind": "field",
3677
+ "name": "criteria",
3678
+ "type": {
3679
+ "text": "string"
3382
3680
  }
3383
3681
  },
3384
3682
  {
3385
3683
  "kind": "method",
3386
- "name": "init",
3684
+ "name": "criteriaChanged",
3387
3685
  "parameters": [
3388
3686
  {
3389
- "name": "params",
3687
+ "name": "oldCriteria",
3390
3688
  "type": {
3391
- "text": "DateEditorParams"
3689
+ "text": "string"
3690
+ }
3691
+ },
3692
+ {
3693
+ "name": "newCriteria",
3694
+ "type": {
3695
+ "text": "string"
3392
3696
  }
3393
3697
  }
3394
- ],
3395
- "description": "Initialize the editor with parameters"
3698
+ ]
3396
3699
  },
3397
3700
  {
3398
- "kind": "method",
3399
- "name": "getValue",
3400
- "description": "Get current value"
3701
+ "kind": "field",
3702
+ "name": "fields",
3703
+ "type": {
3704
+ "text": "string"
3705
+ }
3401
3706
  },
3402
3707
  {
3403
- "kind": "method",
3404
- "name": "getFormattedValue",
3405
- "description": "Format value for display"
3708
+ "kind": "field",
3709
+ "name": "isSnapshot",
3710
+ "type": {
3711
+ "text": "boolean"
3712
+ },
3713
+ "default": "false"
3406
3714
  },
3407
3715
  {
3408
- "kind": "method",
3409
- "name": "focus",
3410
- "description": "Set focus to the input"
3716
+ "kind": "field",
3717
+ "name": "maxRows",
3718
+ "type": {
3719
+ "text": "number"
3720
+ }
3721
+ },
3722
+ {
3723
+ "kind": "field",
3724
+ "name": "maxView",
3725
+ "type": {
3726
+ "text": "number"
3727
+ }
3728
+ },
3729
+ {
3730
+ "kind": "field",
3731
+ "name": "pollingInterval",
3732
+ "type": {
3733
+ "text": "number"
3734
+ }
3735
+ },
3736
+ {
3737
+ "kind": "field",
3738
+ "name": "movingView",
3739
+ "type": {
3740
+ "text": "boolean"
3741
+ },
3742
+ "default": "false"
3743
+ },
3744
+ {
3745
+ "kind": "field",
3746
+ "name": "orderBy",
3747
+ "type": {
3748
+ "text": "string"
3749
+ }
3750
+ },
3751
+ {
3752
+ "kind": "field",
3753
+ "name": "request",
3754
+ "type": {
3755
+ "text": "any"
3756
+ }
3757
+ },
3758
+ {
3759
+ "kind": "field",
3760
+ "name": "resourceName",
3761
+ "type": {
3762
+ "text": "string"
3763
+ }
3411
3764
  },
3412
3765
  {
3413
3766
  "kind": "method",
3414
- "name": "handleKeyDown",
3767
+ "name": "resourceNameChanged",
3415
3768
  "parameters": [
3416
3769
  {
3417
- "name": "event",
3770
+ "name": "oldValue",
3418
3771
  "type": {
3419
- "text": "KeyboardEvent"
3772
+ "text": "string"
3773
+ }
3774
+ },
3775
+ {
3776
+ "name": "newValue",
3777
+ "type": {
3778
+ "text": "string"
3420
3779
  }
3421
3780
  }
3422
- ],
3423
- "description": "Process key down events"
3781
+ ]
3424
3782
  },
3425
3783
  {
3426
3784
  "kind": "field",
3427
- "name": "_presentation",
3785
+ "name": "reverse",
3428
3786
  "type": {
3429
- "text": "ComponentPresentation | null | undefined"
3787
+ "text": "boolean"
3788
+ },
3789
+ "default": "false"
3790
+ },
3791
+ {
3792
+ "kind": "field",
3793
+ "name": "rowIdAttr",
3794
+ "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type."
3795
+ },
3796
+ {
3797
+ "kind": "field",
3798
+ "name": "restartOnReconnection",
3799
+ "type": {
3800
+ "text": "boolean"
3801
+ },
3802
+ "default": "true"
3803
+ },
3804
+ {
3805
+ "kind": "field",
3806
+ "name": "keepColDefsOnClearRowData",
3807
+ "type": {
3808
+ "text": "boolean"
3809
+ },
3810
+ "default": "false",
3811
+ "description": "Whether to keep column definitions when clearing row data"
3812
+ },
3813
+ {
3814
+ "kind": "field",
3815
+ "name": "rowDataMapper",
3816
+ "type": {
3817
+ "text": "Function"
3818
+ },
3819
+ "description": "Allows grid data updates to be processed via and external function before applying in grid"
3820
+ },
3821
+ {
3822
+ "kind": "field",
3823
+ "name": "dataSub",
3824
+ "type": {
3825
+ "text": "Subscription"
3826
+ },
3827
+ "privacy": "private"
3828
+ },
3829
+ {
3830
+ "kind": "field",
3831
+ "name": "updateSub",
3832
+ "type": {
3833
+ "text": "Subscription"
3834
+ },
3835
+ "privacy": "private"
3836
+ },
3837
+ {
3838
+ "kind": "field",
3839
+ "name": "connectionSub",
3840
+ "type": {
3841
+ "text": "Subscription"
3842
+ },
3843
+ "privacy": "private"
3844
+ },
3845
+ {
3846
+ "kind": "field",
3847
+ "name": "isRequestServer",
3848
+ "type": {
3849
+ "text": "boolean"
3430
3850
  },
3431
3851
  "privacy": "private",
3432
- "default": "void 0",
3433
- "inheritedFrom": {
3434
- "name": "FoundationElement",
3435
- "module": "src/foundation-element/foundation-element.ts"
3436
- }
3852
+ "default": "false"
3437
3853
  },
3438
3854
  {
3439
3855
  "kind": "field",
3440
- "name": "$presentation",
3856
+ "name": "requiresFullRowDataAndColDefs",
3857
+ "type": {
3858
+ "text": "boolean"
3859
+ },
3860
+ "privacy": "private",
3861
+ "default": "true"
3862
+ },
3863
+ {
3864
+ "kind": "field",
3865
+ "name": "dataSubWasLoggedOff",
3866
+ "type": {
3867
+ "text": "boolean"
3868
+ },
3869
+ "privacy": "private",
3870
+ "default": "false"
3871
+ },
3872
+ {
3873
+ "kind": "field",
3874
+ "name": "rows",
3875
+ "type": {
3876
+ "text": "Map<string, any>"
3877
+ },
3878
+ "privacy": "private",
3879
+ "default": "new Map()"
3880
+ },
3881
+ {
3882
+ "kind": "field",
3883
+ "name": "gridTransaction",
3884
+ "type": {
3885
+ "text": "RowDataTransaction"
3886
+ },
3887
+ "privacy": "private"
3888
+ },
3889
+ {
3890
+ "kind": "field",
3891
+ "name": "sourceRef",
3892
+ "type": {
3893
+ "text": "string"
3894
+ },
3895
+ "privacy": "private"
3896
+ },
3897
+ {
3898
+ "kind": "field",
3899
+ "name": "criteriaFromFilters",
3441
3900
  "type": {
3442
- "text": "ComponentPresentation | null"
3901
+ "text": "Map<string, string>"
3443
3902
  },
3444
- "privacy": "public",
3445
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3446
- "inheritedFrom": {
3447
- "name": "FoundationElement",
3448
- "module": "src/foundation-element/foundation-element.ts"
3449
- }
3903
+ "privacy": "private",
3904
+ "default": "new Map()"
3450
3905
  },
3451
3906
  {
3452
3907
  "kind": "field",
3453
- "name": "template",
3908
+ "name": "update",
3454
3909
  "type": {
3455
- "text": "ElementViewTemplate | void | null"
3910
+ "text": "BehaviorSubject<Map<string, string>>"
3456
3911
  },
3457
- "privacy": "public",
3458
- "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.",
3459
- "inheritedFrom": {
3460
- "name": "FoundationElement",
3461
- "module": "src/foundation-element/foundation-element.ts"
3462
- }
3912
+ "privacy": "private",
3913
+ "default": "new BehaviorSubject(new Map())"
3463
3914
  },
3464
3915
  {
3465
3916
  "kind": "method",
3466
- "name": "templateChanged",
3467
- "privacy": "protected",
3917
+ "name": "deepClone",
3468
3918
  "return": {
3469
3919
  "type": {
3470
- "text": "void"
3920
+ "text": "Node"
3471
3921
  }
3472
3922
  },
3473
3923
  "inheritedFrom": {
3474
- "name": "FoundationElement",
3475
- "module": "src/foundation-element/foundation-element.ts"
3924
+ "name": "LifecycleMixin",
3925
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3476
3926
  }
3477
3927
  },
3478
3928
  {
3479
3929
  "kind": "field",
3480
- "name": "styles",
3930
+ "name": "gridTabulator",
3481
3931
  "type": {
3482
- "text": "ElementStyles | void | null"
3932
+ "text": "GridTabulator | null"
3483
3933
  },
3484
- "privacy": "public",
3485
- "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.",
3486
- "inheritedFrom": {
3487
- "name": "FoundationElement",
3488
- "module": "src/foundation-element/foundation-element.ts"
3489
- }
3934
+ "privacy": "private",
3935
+ "readonly": true
3490
3936
  },
3491
3937
  {
3492
3938
  "kind": "method",
3493
- "name": "stylesChanged",
3494
- "privacy": "protected",
3495
- "return": {
3496
- "type": {
3497
- "text": "void"
3498
- }
3499
- },
3500
- "inheritedFrom": {
3501
- "name": "FoundationElement",
3502
- "module": "src/foundation-element/foundation-element.ts"
3503
- }
3939
+ "name": "init",
3940
+ "description": "Initializes the datasource.",
3941
+ "privacy": "public"
3504
3942
  },
3505
3943
  {
3506
3944
  "kind": "method",
3507
- "name": "compose",
3508
- "privacy": "public",
3509
- "static": true,
3510
- "return": {
3511
- "type": {
3512
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3513
- }
3514
- },
3515
- "parameters": [
3516
- {
3517
- "name": "this",
3518
- "type": {
3519
- "text": "K"
3520
- }
3521
- },
3522
- {
3523
- "name": "elementDefinition",
3524
- "type": {
3525
- "text": "T"
3526
- },
3527
- "description": "The definition of the element to create the registry\nfunction for."
3528
- }
3529
- ],
3530
- "description": "Defines an element registry function with a set of element definition defaults.",
3531
- "inheritedFrom": {
3532
- "name": "FoundationElement",
3533
- "module": "src/foundation-element/foundation-element.ts"
3534
- }
3535
- }
3536
- ],
3537
- "superclass": {
3538
- "name": "FoundationElement",
3539
- "package": "@microsoft/fast-foundation"
3540
- }
3541
- },
3542
- {
3543
- "kind": "variable",
3544
- "name": "dateEditorStyles",
3545
- "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
3546
- "description": "Styles for the date editor"
3547
- },
3548
- {
3549
- "kind": "function",
3550
- "name": "getDateEditorTemplate",
3551
- "parameters": [
3552
- {
3553
- "name": "prefix",
3554
- "default": "'foundation'",
3555
- "description": "The design system prefix to use. Defaults to 'foundation'."
3556
- }
3557
- ],
3558
- "description": "Get a Design System prefixed date field template.",
3559
- "return": {
3560
- "type": {
3561
- "text": ""
3562
- }
3563
- },
3564
- "privacy": "public"
3565
- },
3566
- {
3567
- "kind": "variable",
3568
- "name": "foundationDateEditor",
3569
- "description": "Definition for the date editor component"
3570
- }
3571
- ],
3572
- "exports": [
3573
- {
3574
- "kind": "js",
3575
- "name": "DateEditor",
3576
- "declaration": {
3577
- "name": "DateEditor",
3578
- "module": "src/cell-editors/date.editor.ts"
3579
- }
3580
- },
3581
- {
3582
- "kind": "js",
3583
- "name": "dateEditorStyles",
3584
- "declaration": {
3585
- "name": "dateEditorStyles",
3586
- "module": "src/cell-editors/date.editor.ts"
3587
- }
3588
- },
3589
- {
3590
- "kind": "js",
3591
- "name": "getDateEditorTemplate",
3592
- "declaration": {
3593
- "name": "getDateEditorTemplate",
3594
- "module": "src/cell-editors/date.editor.ts"
3595
- }
3596
- },
3597
- {
3598
- "kind": "js",
3599
- "name": "foundationDateEditor",
3600
- "declaration": {
3601
- "name": "foundationDateEditor",
3602
- "module": "src/cell-editors/date.editor.ts"
3603
- }
3604
- }
3605
- ]
3606
- },
3607
- {
3608
- "kind": "javascript-module",
3609
- "path": "src/cell-editors/index.ts",
3610
- "declarations": [],
3611
- "exports": [
3612
- {
3613
- "kind": "js",
3614
- "name": "*",
3615
- "declaration": {
3616
- "name": "*",
3617
- "package": "./date.editor"
3618
- }
3619
- },
3620
- {
3621
- "kind": "js",
3622
- "name": "*",
3623
- "declaration": {
3624
- "name": "*",
3625
- "package": "./number.editor"
3626
- }
3627
- },
3628
- {
3629
- "kind": "js",
3630
- "name": "*",
3631
- "declaration": {
3632
- "name": "*",
3633
- "package": "./select.editor"
3634
- }
3635
- },
3636
- {
3637
- "kind": "js",
3638
- "name": "*",
3639
- "declaration": {
3640
- "name": "*",
3641
- "package": "./string.editor"
3642
- }
3643
- },
3644
- {
3645
- "kind": "js",
3646
- "name": "*",
3647
- "declaration": {
3648
- "name": "*",
3649
- "package": "./multiselect.editor"
3650
- }
3651
- }
3652
- ]
3653
- },
3654
- {
3655
- "kind": "javascript-module",
3656
- "path": "src/cell-editors/multiselect.editor.ts",
3657
- "declarations": [
3658
- {
3659
- "kind": "class",
3660
- "description": "The multiselect editor class for grid-tabulator",
3661
- "name": "MultiselectEditor",
3662
- "members": [
3945
+ "name": "destroy",
3946
+ "description": "Destroys the datasource, resetting it to its initial state.",
3947
+ "privacy": "public"
3948
+ },
3663
3949
  {
3664
- "kind": "field",
3665
- "name": "params",
3666
- "type": {
3667
- "text": "MultiselectEditorParams"
3668
- }
3950
+ "kind": "method",
3951
+ "name": "restart",
3952
+ "description": "Restarts the datasource, uses `deinit` and `init` in sequence.",
3953
+ "privacy": "public"
3669
3954
  },
3670
3955
  {
3671
- "kind": "field",
3672
- "name": "select",
3673
- "type": {
3674
- "text": "any"
3675
- }
3956
+ "kind": "method",
3957
+ "name": "refreshRows",
3958
+ "description": "Force the grid to redispatch the current rows"
3676
3959
  },
3677
3960
  {
3678
3961
  "kind": "method",
3679
- "name": "init",
3962
+ "name": "handleErrors",
3680
3963
  "parameters": [
3681
3964
  {
3682
- "name": "params",
3965
+ "name": "errors",
3683
3966
  "type": {
3684
- "text": "MultiselectEditorParams"
3967
+ "text": "string | any[]"
3685
3968
  }
3686
3969
  }
3687
3970
  ],
3688
- "description": "Initialize the editor with parameters"
3971
+ "description": "Handles errors by emitting an error event"
3689
3972
  },
3690
3973
  {
3691
3974
  "kind": "method",
3692
- "name": "getValues",
3693
- "return": {
3694
- "type": {
3695
- "text": "(string | number)[]"
3975
+ "name": "getColumnDefs",
3976
+ "privacy": "private",
3977
+ "parameters": [
3978
+ {
3979
+ "name": "fieldsMetadata",
3980
+ "type": {
3981
+ "text": "FieldMetadata[]"
3982
+ },
3983
+ "description": "The field metadata to generate column definitions from"
3696
3984
  }
3697
- },
3698
- "description": "Get current values"
3985
+ ],
3986
+ "description": "Generate column definitions from the field metadata"
3699
3987
  },
3700
3988
  {
3701
3989
  "kind": "method",
3702
- "name": "focus",
3703
- "description": "Set focus to the select"
3990
+ "name": "handleSnapshot",
3991
+ "privacy": "private",
3992
+ "parameters": [
3993
+ {
3994
+ "name": "result"
3995
+ }
3996
+ ]
3704
3997
  },
3705
3998
  {
3706
3999
  "kind": "method",
3707
- "name": "isSelected",
4000
+ "name": "datasourceOptions",
4001
+ "privacy": "private",
3708
4002
  "return": {
3709
4003
  "type": {
3710
- "text": "boolean"
4004
+ "text": "DatasourceOptions"
3711
4005
  }
3712
- },
4006
+ }
4007
+ },
4008
+ {
4009
+ "kind": "method",
4010
+ "name": "handleStreamResult",
4011
+ "privacy": "private",
3713
4012
  "parameters": [
3714
4013
  {
3715
- "name": "value",
4014
+ "name": "result",
3716
4015
  "type": {
3717
- "text": "string | number"
4016
+ "text": "FilteredDataServerResult | RequestServerResult"
3718
4017
  }
3719
4018
  }
3720
- ],
3721
- "description": "Check if a value is selected"
4019
+ ]
3722
4020
  },
3723
4021
  {
3724
4022
  "kind": "method",
3725
- "name": "handleKeyDown",
4023
+ "name": "applyRequestServerData",
4024
+ "privacy": "private",
3726
4025
  "parameters": [
3727
4026
  {
3728
- "name": "event",
4027
+ "name": "requestServerResult",
3729
4028
  "type": {
3730
- "text": "KeyboardEvent"
4029
+ "text": "RequestServerResult"
3731
4030
  }
3732
4031
  }
3733
- ],
3734
- "description": "Process key down events"
4032
+ ]
3735
4033
  },
3736
4034
  {
3737
4035
  "kind": "method",
3738
- "name": "handleChange",
3739
- "description": "Handle change event to save when selection changes"
3740
- },
3741
- {
3742
- "kind": "field",
3743
- "name": "_presentation",
3744
- "type": {
3745
- "text": "ComponentPresentation | null | undefined"
3746
- },
4036
+ "name": "applyDataserverData",
3747
4037
  "privacy": "private",
3748
- "default": "void 0",
3749
- "inheritedFrom": {
3750
- "name": "FoundationElement",
3751
- "module": "src/foundation-element/foundation-element.ts"
3752
- }
3753
- },
3754
- {
3755
- "kind": "field",
3756
- "name": "$presentation",
3757
- "type": {
3758
- "text": "ComponentPresentation | null"
3759
- },
3760
- "privacy": "public",
3761
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3762
- "inheritedFrom": {
3763
- "name": "FoundationElement",
3764
- "module": "src/foundation-element/foundation-element.ts"
3765
- }
3766
- },
3767
- {
3768
- "kind": "field",
3769
- "name": "template",
3770
- "type": {
3771
- "text": "ElementViewTemplate | void | null"
3772
- },
3773
- "privacy": "public",
3774
- "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.",
3775
- "inheritedFrom": {
3776
- "name": "FoundationElement",
3777
- "module": "src/foundation-element/foundation-element.ts"
3778
- }
3779
- },
3780
- {
3781
- "kind": "method",
3782
- "name": "templateChanged",
3783
- "privacy": "protected",
3784
- "return": {
3785
- "type": {
3786
- "text": "void"
4038
+ "parameters": [
4039
+ {
4040
+ "name": "dataServerResult",
4041
+ "type": {
4042
+ "text": "FilteredDataServerResult"
4043
+ }
3787
4044
  }
3788
- },
3789
- "inheritedFrom": {
3790
- "name": "FoundationElement",
3791
- "module": "src/foundation-element/foundation-element.ts"
3792
- }
4045
+ ]
3793
4046
  },
3794
4047
  {
3795
- "kind": "field",
3796
- "name": "styles",
3797
- "type": {
3798
- "text": "ElementStyles | void | null"
3799
- },
3800
- "privacy": "public",
3801
- "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.",
3802
- "inheritedFrom": {
3803
- "name": "FoundationElement",
3804
- "module": "src/foundation-element/foundation-element.ts"
3805
- }
4048
+ "kind": "method",
4049
+ "name": "applyTransaction",
4050
+ "privacy": "private"
3806
4051
  },
3807
4052
  {
3808
4053
  "kind": "method",
3809
- "name": "stylesChanged",
3810
- "privacy": "protected",
3811
- "return": {
3812
- "type": {
3813
- "text": "void"
4054
+ "name": "mapTransaction",
4055
+ "privacy": "private",
4056
+ "parameters": [
4057
+ {
4058
+ "name": "transaction",
4059
+ "type": {
4060
+ "text": "RowDataTransaction"
4061
+ }
3814
4062
  }
3815
- },
3816
- "inheritedFrom": {
3817
- "name": "FoundationElement",
3818
- "module": "src/foundation-element/foundation-element.ts"
3819
- }
4063
+ ]
3820
4064
  },
3821
4065
  {
3822
4066
  "kind": "method",
3823
- "name": "compose",
3824
- "privacy": "public",
3825
- "static": true,
3826
- "return": {
3827
- "type": {
3828
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3829
- }
3830
- },
4067
+ "name": "handleStreamInserts",
4068
+ "privacy": "private",
3831
4069
  "parameters": [
3832
4070
  {
3833
- "name": "this",
4071
+ "name": "insertedRows",
3834
4072
  "type": {
3835
- "text": "K"
4073
+ "text": "any[]"
3836
4074
  }
3837
- },
3838
- {
3839
- "name": "elementDefinition",
3840
- "type": {
3841
- "text": "T"
3842
- },
3843
- "description": "The definition of the element to create the registry\nfunction for."
3844
4075
  }
3845
- ],
3846
- "description": "Defines an element registry function with a set of element definition defaults.",
3847
- "inheritedFrom": {
3848
- "name": "FoundationElement",
3849
- "module": "src/foundation-element/foundation-element.ts"
3850
- }
3851
- }
3852
- ],
3853
- "superclass": {
3854
- "name": "FoundationElement",
3855
- "package": "@microsoft/fast-foundation"
3856
- }
3857
- },
3858
- {
3859
- "kind": "variable",
3860
- "name": "multiselectEditorStyles",
3861
- "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
3862
- "description": "Styles for the multiselect editor"
3863
- },
3864
- {
3865
- "kind": "function",
3866
- "name": "getMultiselectEditorTemplate",
3867
- "parameters": [
3868
- {
3869
- "name": "prefix",
3870
- "default": "'foundation'",
3871
- "description": "The design system prefix to use. Defaults to 'foundation'."
3872
- }
3873
- ],
3874
- "description": "Get a Design System prefixed Select template.",
3875
- "return": {
3876
- "type": {
3877
- "text": ""
3878
- }
3879
- }
3880
- },
3881
- {
3882
- "kind": "variable",
3883
- "name": "foundationMultiselectEditor",
3884
- "description": "Definition for the multiselect editor component"
3885
- }
3886
- ],
3887
- "exports": [
3888
- {
3889
- "kind": "js",
3890
- "name": "MultiselectEditor",
3891
- "declaration": {
3892
- "name": "MultiselectEditor",
3893
- "module": "src/cell-editors/multiselect.editor.ts"
3894
- }
3895
- },
3896
- {
3897
- "kind": "js",
3898
- "name": "multiselectEditorStyles",
3899
- "declaration": {
3900
- "name": "multiselectEditorStyles",
3901
- "module": "src/cell-editors/multiselect.editor.ts"
3902
- }
3903
- },
3904
- {
3905
- "kind": "js",
3906
- "name": "getMultiselectEditorTemplate",
3907
- "declaration": {
3908
- "name": "getMultiselectEditorTemplate",
3909
- "module": "src/cell-editors/multiselect.editor.ts"
3910
- }
3911
- },
3912
- {
3913
- "kind": "js",
3914
- "name": "foundationMultiselectEditor",
3915
- "declaration": {
3916
- "name": "foundationMultiselectEditor",
3917
- "module": "src/cell-editors/multiselect.editor.ts"
3918
- }
3919
- }
3920
- ]
3921
- },
3922
- {
3923
- "kind": "javascript-module",
3924
- "path": "src/cell-editors/number.editor.ts",
3925
- "declarations": [
3926
- {
3927
- "kind": "class",
3928
- "description": "The number editor class for grid-tabulator",
3929
- "name": "NumberEditor",
3930
- "members": [
3931
- {
3932
- "kind": "field",
3933
- "name": "params",
3934
- "type": {
3935
- "text": "NumberEditorParams"
3936
- }
3937
- },
3938
- {
3939
- "kind": "field",
3940
- "name": "numberField",
3941
- "type": {
3942
- "text": "any"
3943
- }
4076
+ ]
3944
4077
  },
3945
4078
  {
3946
4079
  "kind": "method",
3947
- "name": "init",
4080
+ "name": "handleStreamDeletes",
4081
+ "privacy": "private",
3948
4082
  "parameters": [
3949
4083
  {
3950
- "name": "params",
4084
+ "name": "deletedRows",
3951
4085
  "type": {
3952
- "text": "NumberEditorParams"
4086
+ "text": "any[]"
3953
4087
  }
3954
4088
  }
3955
- ],
3956
- "description": "Initialize the editor with parameters"
3957
- },
3958
- {
3959
- "kind": "method",
3960
- "name": "getValue",
3961
- "description": "Get current value"
4089
+ ]
3962
4090
  },
3963
4091
  {
3964
4092
  "kind": "method",
3965
- "name": "focus",
3966
- "description": "Set focus to the input"
4093
+ "name": "handleStreamUpdates",
4094
+ "privacy": "private",
4095
+ "parameters": [
4096
+ {
4097
+ "name": "updatedRows",
4098
+ "type": {
4099
+ "text": "any[]"
4100
+ }
4101
+ }
4102
+ ]
3967
4103
  },
3968
4104
  {
3969
4105
  "kind": "method",
3970
- "name": "handleKeyDown",
4106
+ "name": "handleSizeChanged",
4107
+ "privacy": "private",
3971
4108
  "parameters": [
3972
4109
  {
3973
- "name": "event",
4110
+ "name": "oldSize",
3974
4111
  "type": {
3975
- "text": "KeyboardEvent"
4112
+ "text": "number"
4113
+ }
4114
+ },
4115
+ {
4116
+ "name": "newSize",
4117
+ "type": {
4118
+ "text": "number"
3976
4119
  }
3977
4120
  }
3978
4121
  ],
3979
- "description": "Process key down events"
3980
- },
3981
- {
3982
- "kind": "field",
3983
- "name": "_presentation",
3984
- "type": {
3985
- "text": "ComponentPresentation | null | undefined"
3986
- },
3987
- "privacy": "private",
3988
- "default": "void 0",
3989
- "inheritedFrom": {
3990
- "name": "FoundationElement",
3991
- "module": "src/foundation-element/foundation-element.ts"
3992
- }
3993
- },
3994
- {
3995
- "kind": "field",
3996
- "name": "$presentation",
3997
- "type": {
3998
- "text": "ComponentPresentation | null"
3999
- },
4000
- "privacy": "public",
4001
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
4002
- "inheritedFrom": {
4003
- "name": "FoundationElement",
4004
- "module": "src/foundation-element/foundation-element.ts"
4005
- }
4006
- },
4007
- {
4008
- "kind": "field",
4009
- "name": "template",
4010
- "type": {
4011
- "text": "ElementViewTemplate | void | null"
4012
- },
4013
- "privacy": "public",
4014
- "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.",
4015
- "inheritedFrom": {
4016
- "name": "FoundationElement",
4017
- "module": "src/foundation-element/foundation-element.ts"
4018
- }
4122
+ "description": "Emit event when the number of rows changes"
4019
4123
  },
4020
4124
  {
4021
4125
  "kind": "method",
4022
- "name": "templateChanged",
4023
- "privacy": "protected",
4126
+ "name": "buildCriteria",
4127
+ "privacy": "private",
4024
4128
  "return": {
4025
4129
  "type": {
4026
- "text": "void"
4130
+ "text": "string"
4027
4131
  }
4028
- },
4029
- "inheritedFrom": {
4030
- "name": "FoundationElement",
4031
- "module": "src/foundation-element/foundation-element.ts"
4032
4132
  }
4033
4133
  },
4034
4134
  {
4035
- "kind": "field",
4036
- "name": "styles",
4037
- "type": {
4038
- "text": "ElementStyles | void | null"
4039
- },
4135
+ "kind": "method",
4136
+ "name": "setFilter",
4040
4137
  "privacy": "public",
4041
- "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.",
4042
- "inheritedFrom": {
4043
- "name": "FoundationElement",
4044
- "module": "src/foundation-element/foundation-element.ts"
4045
- }
4138
+ "parameters": [
4139
+ {
4140
+ "name": "fieldName",
4141
+ "type": {
4142
+ "text": "string"
4143
+ }
4144
+ },
4145
+ {
4146
+ "name": "newFilter",
4147
+ "type": {
4148
+ "text": "string"
4149
+ }
4150
+ }
4151
+ ]
4046
4152
  },
4047
4153
  {
4048
4154
  "kind": "method",
4049
- "name": "stylesChanged",
4050
- "privacy": "protected",
4051
- "return": {
4052
- "type": {
4053
- "text": "void"
4155
+ "name": "removeFilter",
4156
+ "privacy": "public",
4157
+ "parameters": [
4158
+ {
4159
+ "name": "fieldName",
4160
+ "type": {
4161
+ "text": "string"
4162
+ }
4054
4163
  }
4055
- },
4056
- "inheritedFrom": {
4057
- "name": "FoundationElement",
4058
- "module": "src/foundation-element/foundation-element.ts"
4059
- }
4164
+ ]
4060
4165
  },
4061
4166
  {
4062
4167
  "kind": "method",
4063
- "name": "compose",
4064
- "privacy": "public",
4065
- "static": true,
4066
- "return": {
4067
- "type": {
4068
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
4069
- }
4070
- },
4168
+ "name": "datasourceStatusChanged",
4071
4169
  "parameters": [
4072
4170
  {
4073
- "name": "this",
4171
+ "name": "prev",
4074
4172
  "type": {
4075
- "text": "K"
4173
+ "text": "DatasourceStatus"
4076
4174
  }
4077
4175
  },
4078
4176
  {
4079
- "name": "elementDefinition",
4177
+ "name": "next",
4080
4178
  "type": {
4081
- "text": "T"
4082
- },
4083
- "description": "The definition of the element to create the registry\nfunction for."
4179
+ "text": "DatasourceStatus"
4180
+ }
4084
4181
  }
4085
- ],
4086
- "description": "Defines an element registry function with a set of element definition defaults.",
4087
- "inheritedFrom": {
4088
- "name": "FoundationElement",
4089
- "module": "src/foundation-element/foundation-element.ts"
4090
- }
4091
- }
4092
- ],
4093
- "superclass": {
4094
- "name": "FoundationElement",
4095
- "package": "@microsoft/fast-foundation"
4096
- }
4097
- },
4098
- {
4099
- "kind": "variable",
4100
- "name": "numberEditorStyles",
4101
- "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
4102
- "description": "Styles for the number editor"
4103
- },
4104
- {
4105
- "kind": "function",
4106
- "name": "getNumberEditorTemplate",
4107
- "parameters": [
4108
- {
4109
- "name": "prefix",
4110
- "default": "'foundation'",
4111
- "description": "The design system prefix to use. Defaults to 'foundation'."
4112
- }
4113
- ],
4114
- "description": "Get a Design System prefixed number field template.",
4115
- "return": {
4116
- "type": {
4117
- "text": ""
4118
- }
4119
- }
4120
- },
4121
- {
4122
- "kind": "variable",
4123
- "name": "foundationNumberEditor",
4124
- "description": "Definition for the number editor component"
4125
- }
4126
- ],
4127
- "exports": [
4128
- {
4129
- "kind": "js",
4130
- "name": "NumberEditor",
4131
- "declaration": {
4132
- "name": "NumberEditor",
4133
- "module": "src/cell-editors/number.editor.ts"
4134
- }
4135
- },
4136
- {
4137
- "kind": "js",
4138
- "name": "numberEditorStyles",
4139
- "declaration": {
4140
- "name": "numberEditorStyles",
4141
- "module": "src/cell-editors/number.editor.ts"
4142
- }
4143
- },
4144
- {
4145
- "kind": "js",
4146
- "name": "getNumberEditorTemplate",
4147
- "declaration": {
4148
- "name": "getNumberEditorTemplate",
4149
- "module": "src/cell-editors/number.editor.ts"
4150
- }
4151
- },
4152
- {
4153
- "kind": "js",
4154
- "name": "foundationNumberEditor",
4155
- "declaration": {
4156
- "name": "foundationNumberEditor",
4157
- "module": "src/cell-editors/number.editor.ts"
4158
- }
4159
- }
4160
- ]
4161
- },
4162
- {
4163
- "kind": "javascript-module",
4164
- "path": "src/cell-editors/select.editor.ts",
4165
- "declarations": [
4166
- {
4167
- "kind": "class",
4168
- "description": "The select editor class for grid-tabulator",
4169
- "name": "SelectEditor",
4170
- "members": [
4171
- {
4172
- "kind": "field",
4173
- "name": "params",
4174
- "type": {
4175
- "text": "SelectEditorParams"
4176
- }
4177
- },
4178
- {
4179
- "kind": "field",
4180
- "name": "select",
4181
- "type": {
4182
- "text": "any"
4183
- }
4182
+ ]
4184
4183
  },
4185
4184
  {
4186
4185
  "kind": "method",
4187
- "name": "init",
4186
+ "name": "cloneNode",
4187
+ "return": {
4188
+ "type": {
4189
+ "text": "Node"
4190
+ }
4191
+ },
4188
4192
  "parameters": [
4189
4193
  {
4190
- "name": "params",
4194
+ "name": "deep",
4195
+ "optional": true,
4191
4196
  "type": {
4192
- "text": "SelectEditorParams"
4197
+ "text": "boolean"
4193
4198
  }
4194
4199
  }
4195
4200
  ],
4196
- "description": "Initialize the editor with parameters"
4201
+ "inheritedFrom": {
4202
+ "name": "LifecycleMixin",
4203
+ "module": "src/mixins/lifecycle/lifecycle.ts"
4204
+ }
4197
4205
  },
4198
4206
  {
4199
- "kind": "method",
4200
- "name": "getValue",
4201
- "description": "Get current value"
4207
+ "kind": "field",
4208
+ "name": "shouldRunDisconnect",
4209
+ "return": {
4210
+ "type": {
4211
+ "text": ""
4212
+ }
4213
+ },
4214
+ "readonly": true,
4215
+ "inheritedFrom": {
4216
+ "name": "LifecycleMixin",
4217
+ "module": "src/mixins/lifecycle/lifecycle.ts"
4218
+ }
4202
4219
  },
4203
4220
  {
4204
- "kind": "method",
4205
- "name": "focus",
4206
- "description": "Set focus to the select"
4221
+ "kind": "field",
4222
+ "name": "shouldRunConnect",
4223
+ "return": {
4224
+ "type": {
4225
+ "text": ""
4226
+ }
4227
+ },
4228
+ "readonly": true,
4229
+ "inheritedFrom": {
4230
+ "name": "LifecycleMixin",
4231
+ "module": "src/mixins/lifecycle/lifecycle.ts"
4232
+ }
4207
4233
  },
4208
4234
  {
4209
4235
  "kind": "method",
4210
- "name": "handleKeyDown",
4236
+ "name": "#_blockLifecycleDueToTokenChange",
4237
+ "return": {
4238
+ "type": {
4239
+ "text": "boolean"
4240
+ }
4241
+ },
4211
4242
  "parameters": [
4212
4243
  {
4213
- "name": "event",
4244
+ "name": "lifecycleType",
4214
4245
  "type": {
4215
- "text": "KeyboardEvent"
4246
+ "text": "Lifecycletype"
4216
4247
  }
4217
4248
  }
4218
4249
  ],
4219
- "description": "Process key down events"
4220
- },
4221
- {
4222
- "kind": "method",
4223
- "name": "handleChange",
4224
- "description": "Handle change event"
4250
+ "inheritedFrom": {
4251
+ "name": "LifecycleMixin",
4252
+ "module": "src/mixins/lifecycle/lifecycle.ts"
4253
+ }
4225
4254
  },
4226
4255
  {
4227
4256
  "kind": "field",
@@ -4335,312 +4364,283 @@
4335
4364
  }
4336
4365
  }
4337
4366
  ],
4338
- "superclass": {
4339
- "name": "FoundationElement",
4340
- "package": "@microsoft/fast-foundation"
4341
- }
4342
- },
4343
- {
4344
- "kind": "variable",
4345
- "name": "selectEditorStyles",
4346
- "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
4347
- "description": "Styles for the select editor"
4348
- },
4349
- {
4350
- "kind": "function",
4351
- "name": "getSelectEditorTemplate",
4352
- "parameters": [
4353
- {
4354
- "name": "prefix",
4355
- "default": "'foundation'",
4356
- "description": "The design system prefix to use. Defaults to 'foundation'."
4357
- }
4358
- ],
4359
- "description": "Get a Design System prefixed Select template.",
4360
- "return": {
4361
- "type": {
4362
- "text": ""
4363
- }
4364
- },
4365
- "privacy": "public"
4366
- },
4367
- {
4368
- "kind": "variable",
4369
- "name": "foundationSelectEditor",
4370
- "description": "Definition for the select editor component"
4371
- }
4372
- ],
4373
- "exports": [
4374
- {
4375
- "kind": "js",
4376
- "name": "SelectEditor",
4377
- "declaration": {
4378
- "name": "SelectEditor",
4379
- "module": "src/cell-editors/select.editor.ts"
4380
- }
4381
- },
4382
- {
4383
- "kind": "js",
4384
- "name": "selectEditorStyles",
4385
- "declaration": {
4386
- "name": "selectEditorStyles",
4387
- "module": "src/cell-editors/select.editor.ts"
4388
- }
4389
- },
4390
- {
4391
- "kind": "js",
4392
- "name": "getSelectEditorTemplate",
4393
- "declaration": {
4394
- "name": "getSelectEditorTemplate",
4395
- "module": "src/cell-editors/select.editor.ts"
4396
- }
4397
- },
4398
- {
4399
- "kind": "js",
4400
- "name": "foundationSelectEditor",
4401
- "declaration": {
4402
- "name": "foundationSelectEditor",
4403
- "module": "src/cell-editors/select.editor.ts"
4404
- }
4405
- }
4406
- ]
4407
- },
4408
- {
4409
- "kind": "javascript-module",
4410
- "path": "src/cell-editors/string.editor.ts",
4411
- "declarations": [
4412
- {
4413
- "kind": "class",
4414
- "description": "The string editor class for grid-tabulator",
4415
- "name": "StringEditor",
4416
- "members": [
4367
+ "attributes": [
4417
4368
  {
4418
- "kind": "field",
4419
- "name": "params",
4369
+ "name": "criteria",
4420
4370
  "type": {
4421
- "text": "StringEditorParams"
4422
- }
4371
+ "text": "string"
4372
+ },
4373
+ "fieldName": "criteria"
4423
4374
  },
4424
4375
  {
4425
- "kind": "field",
4426
- "name": "textField",
4376
+ "name": "fields",
4427
4377
  "type": {
4428
- "text": "any"
4429
- }
4430
- },
4431
- {
4432
- "kind": "method",
4433
- "name": "init",
4434
- "parameters": [
4435
- {
4436
- "name": "params",
4437
- "type": {
4438
- "text": "StringEditorParams"
4439
- }
4440
- }
4441
- ],
4442
- "description": "Initialize the editor with parameters"
4378
+ "text": "string"
4379
+ },
4380
+ "fieldName": "fields"
4443
4381
  },
4444
4382
  {
4445
- "kind": "method",
4446
- "name": "getValue",
4447
- "description": "Get current value"
4383
+ "name": "is-snapshot",
4384
+ "type": {
4385
+ "text": "boolean"
4386
+ },
4387
+ "default": "false",
4388
+ "fieldName": "isSnapshot"
4448
4389
  },
4449
4390
  {
4450
- "kind": "method",
4451
- "name": "focus",
4452
- "description": "Set focus to the input"
4391
+ "name": "max-rows",
4392
+ "type": {
4393
+ "text": "number"
4394
+ },
4395
+ "fieldName": "maxRows"
4453
4396
  },
4454
4397
  {
4455
- "kind": "method",
4456
- "name": "handleKeyDown",
4457
- "parameters": [
4458
- {
4459
- "name": "event",
4460
- "type": {
4461
- "text": "KeyboardEvent"
4462
- }
4463
- }
4464
- ],
4465
- "description": "Process key down events"
4398
+ "name": "max-view",
4399
+ "type": {
4400
+ "text": "number"
4401
+ },
4402
+ "fieldName": "maxView"
4466
4403
  },
4467
4404
  {
4468
- "kind": "field",
4469
- "name": "_presentation",
4405
+ "name": "polling-interval",
4470
4406
  "type": {
4471
- "text": "ComponentPresentation | null | undefined"
4407
+ "text": "number"
4472
4408
  },
4473
- "privacy": "private",
4474
- "default": "void 0",
4475
- "inheritedFrom": {
4476
- "name": "FoundationElement",
4477
- "module": "src/foundation-element/foundation-element.ts"
4478
- }
4409
+ "fieldName": "pollingInterval"
4479
4410
  },
4480
4411
  {
4481
- "kind": "field",
4482
- "name": "$presentation",
4412
+ "name": "moving-view",
4483
4413
  "type": {
4484
- "text": "ComponentPresentation | null"
4414
+ "text": "boolean"
4485
4415
  },
4486
- "privacy": "public",
4487
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
4488
- "inheritedFrom": {
4489
- "name": "FoundationElement",
4490
- "module": "src/foundation-element/foundation-element.ts"
4491
- }
4416
+ "default": "false",
4417
+ "fieldName": "movingView"
4492
4418
  },
4493
4419
  {
4494
- "kind": "field",
4495
- "name": "template",
4420
+ "name": "order-by",
4496
4421
  "type": {
4497
- "text": "ElementViewTemplate | void | null"
4422
+ "text": "string"
4498
4423
  },
4499
- "privacy": "public",
4500
- "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.",
4501
- "inheritedFrom": {
4502
- "name": "FoundationElement",
4503
- "module": "src/foundation-element/foundation-element.ts"
4504
- }
4424
+ "fieldName": "orderBy"
4505
4425
  },
4506
- {
4507
- "kind": "method",
4508
- "name": "templateChanged",
4509
- "privacy": "protected",
4510
- "return": {
4511
- "type": {
4512
- "text": "void"
4513
- }
4426
+ {
4427
+ "name": "resource-name",
4428
+ "type": {
4429
+ "text": "string"
4514
4430
  },
4515
- "inheritedFrom": {
4516
- "name": "FoundationElement",
4517
- "module": "src/foundation-element/foundation-element.ts"
4518
- }
4431
+ "fieldName": "resourceName"
4519
4432
  },
4520
4433
  {
4521
- "kind": "field",
4522
- "name": "styles",
4523
4434
  "type": {
4524
- "text": "ElementStyles | void | null"
4435
+ "text": "boolean"
4525
4436
  },
4526
- "privacy": "public",
4527
- "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.",
4528
- "inheritedFrom": {
4529
- "name": "FoundationElement",
4530
- "module": "src/foundation-element/foundation-element.ts"
4531
- }
4437
+ "default": "false",
4438
+ "fieldName": "reverse"
4532
4439
  },
4533
4440
  {
4534
- "kind": "method",
4535
- "name": "stylesChanged",
4536
- "privacy": "protected",
4537
- "return": {
4538
- "type": {
4539
- "text": "void"
4540
- }
4441
+ "name": "row-id",
4442
+ "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
4443
+ "fieldName": "rowIdAttr"
4444
+ },
4445
+ {
4446
+ "name": "restart-on-reconnection",
4447
+ "type": {
4448
+ "text": "boolean"
4541
4449
  },
4542
- "inheritedFrom": {
4543
- "name": "FoundationElement",
4544
- "module": "src/foundation-element/foundation-element.ts"
4545
- }
4450
+ "default": "true",
4451
+ "fieldName": "restartOnReconnection"
4546
4452
  },
4547
4453
  {
4548
- "kind": "method",
4549
- "name": "compose",
4550
- "privacy": "public",
4551
- "static": true,
4552
- "return": {
4553
- "type": {
4554
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
4555
- }
4454
+ "name": "keep-col-defs-on-clear-row-data",
4455
+ "type": {
4456
+ "text": "boolean"
4556
4457
  },
4557
- "parameters": [
4558
- {
4559
- "name": "this",
4560
- "type": {
4561
- "text": "K"
4562
- }
4563
- },
4564
- {
4565
- "name": "elementDefinition",
4566
- "type": {
4567
- "text": "T"
4568
- },
4569
- "description": "The definition of the element to create the registry\nfunction for."
4570
- }
4571
- ],
4572
- "description": "Defines an element registry function with a set of element definition defaults.",
4573
- "inheritedFrom": {
4574
- "name": "FoundationElement",
4575
- "module": "src/foundation-element/foundation-element.ts"
4576
- }
4458
+ "default": "false",
4459
+ "description": "Whether to keep column definitions when clearing row data",
4460
+ "fieldName": "keepColDefsOnClearRowData"
4461
+ }
4462
+ ],
4463
+ "mixins": [
4464
+ {
4465
+ "name": "LifecycleMixin",
4466
+ "package": "@genesislcap/foundation-utils"
4467
+ },
4468
+ {
4469
+ "name": "DatasourceEventHandler",
4470
+ "package": "@genesislcap/foundation-comms"
4577
4471
  }
4578
4472
  ],
4579
4473
  "superclass": {
4580
4474
  "name": "FoundationElement",
4581
4475
  "package": "@microsoft/fast-foundation"
4476
+ },
4477
+ "tagName": "grid-tabulator-client-side-datasource",
4478
+ "customElement": true
4479
+ }
4480
+ ],
4481
+ "exports": [
4482
+ {
4483
+ "kind": "js",
4484
+ "name": "criteriaDelimiter",
4485
+ "declaration": {
4486
+ "name": "criteriaDelimiter",
4487
+ "module": "src/datasource/client-side.datasource.ts"
4582
4488
  }
4583
4489
  },
4584
4490
  {
4585
- "kind": "variable",
4586
- "name": "stringEditorStyles",
4587
- "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
4588
- "description": "Styles for the string editor"
4491
+ "kind": "js",
4492
+ "name": "criteriaJoin",
4493
+ "declaration": {
4494
+ "name": "criteriaJoin",
4495
+ "module": "src/datasource/client-side.datasource.ts"
4496
+ }
4589
4497
  },
4590
4498
  {
4591
- "kind": "function",
4592
- "name": "getStringEditorTemplate",
4593
- "parameters": [
4594
- {
4595
- "name": "prefix",
4596
- "default": "'foundation'",
4597
- "description": "The design system prefix to use. Defaults to 'foundation'."
4598
- }
4599
- ],
4600
- "description": "Get a Design System prefixed text field template.",
4601
- "return": {
4602
- "type": {
4603
- "text": ""
4604
- }
4499
+ "kind": "js",
4500
+ "name": "GridTabulatorClientSideDatasource",
4501
+ "declaration": {
4502
+ "name": "GridTabulatorClientSideDatasource",
4503
+ "module": "src/datasource/client-side.datasource.ts"
4504
+ }
4505
+ },
4506
+ {
4507
+ "kind": "custom-element-definition",
4508
+ "name": "grid-tabulator-client-side-datasource",
4509
+ "declaration": {
4510
+ "name": "GridTabulatorClientSideDatasource",
4511
+ "module": "src/datasource/client-side.datasource.ts"
4512
+ }
4513
+ }
4514
+ ]
4515
+ },
4516
+ {
4517
+ "kind": "javascript-module",
4518
+ "path": "src/datasource/index.ts",
4519
+ "declarations": [],
4520
+ "exports": [
4521
+ {
4522
+ "kind": "js",
4523
+ "name": "*",
4524
+ "declaration": {
4525
+ "name": "*",
4526
+ "package": "./client-side.datasource"
4605
4527
  }
4528
+ }
4529
+ ]
4530
+ },
4531
+ {
4532
+ "kind": "javascript-module",
4533
+ "path": "src/external/fonts.ts",
4534
+ "declarations": [
4535
+ {
4536
+ "kind": "variable",
4537
+ "name": "tabulatorDefaultFontFace",
4538
+ "default": "`\n @font-face {\n font-family: \"defaultFontFace\";\n }\n`"
4606
4539
  },
4607
4540
  {
4608
4541
  "kind": "variable",
4609
- "name": "foundationStringEditor",
4610
- "description": "Definition for the string editor component"
4542
+ "name": "tabulatorRapidFontFace",
4543
+ "default": "`\n @font-face {\n font-family: \"rapidFontFace\";\n }\n`"
4544
+ },
4545
+ {
4546
+ "kind": "variable",
4547
+ "name": "gridThemeFontFaceMap",
4548
+ "type": {
4549
+ "text": "GridThemeFontFaceMap"
4550
+ },
4551
+ "default": "{\n [GridTabulatorTheme.default]: tabulatorDefaultFontFace,\n [GridTabulatorTheme.rapid]: tabulatorRapidFontFace,\n}"
4552
+ },
4553
+ {
4554
+ "kind": "variable",
4555
+ "name": "defaultGridTabulatorFontFace",
4556
+ "default": "tabulatorDefaultFontFace"
4611
4557
  }
4612
4558
  ],
4613
4559
  "exports": [
4614
4560
  {
4615
4561
  "kind": "js",
4616
- "name": "StringEditor",
4562
+ "name": "tabulatorDefaultFontFace",
4617
4563
  "declaration": {
4618
- "name": "StringEditor",
4619
- "module": "src/cell-editors/string.editor.ts"
4564
+ "name": "tabulatorDefaultFontFace",
4565
+ "module": "src/external/fonts.ts"
4620
4566
  }
4621
4567
  },
4622
4568
  {
4623
4569
  "kind": "js",
4624
- "name": "stringEditorStyles",
4570
+ "name": "tabulatorRapidFontFace",
4625
4571
  "declaration": {
4626
- "name": "stringEditorStyles",
4627
- "module": "src/cell-editors/string.editor.ts"
4572
+ "name": "tabulatorRapidFontFace",
4573
+ "module": "src/external/fonts.ts"
4628
4574
  }
4629
4575
  },
4630
4576
  {
4631
4577
  "kind": "js",
4632
- "name": "getStringEditorTemplate",
4578
+ "name": "gridThemeFontFaceMap",
4633
4579
  "declaration": {
4634
- "name": "getStringEditorTemplate",
4635
- "module": "src/cell-editors/string.editor.ts"
4580
+ "name": "gridThemeFontFaceMap",
4581
+ "module": "src/external/fonts.ts"
4636
4582
  }
4637
4583
  },
4638
4584
  {
4639
4585
  "kind": "js",
4640
- "name": "foundationStringEditor",
4586
+ "name": "defaultGridTabulatorFontFace",
4641
4587
  "declaration": {
4642
- "name": "foundationStringEditor",
4643
- "module": "src/cell-editors/string.editor.ts"
4588
+ "name": "defaultGridTabulatorFontFace",
4589
+ "module": "src/external/fonts.ts"
4590
+ }
4591
+ }
4592
+ ]
4593
+ },
4594
+ {
4595
+ "kind": "javascript-module",
4596
+ "path": "src/external/index.ts",
4597
+ "declarations": [
4598
+ {
4599
+ "kind": "variable",
4600
+ "name": "tabulatorExternalStockStyles",
4601
+ "default": "css`\n ${tabulatorThemeSimpleCSS}\n`",
4602
+ "description": "External styles for the Tabulator grid.",
4603
+ "privacy": "public"
4604
+ }
4605
+ ],
4606
+ "exports": [
4607
+ {
4608
+ "kind": "js",
4609
+ "name": "tabulatorExternalStockStyles",
4610
+ "declaration": {
4611
+ "name": "tabulatorExternalStockStyles",
4612
+ "module": "src/external/index.ts"
4613
+ }
4614
+ },
4615
+ {
4616
+ "kind": "js",
4617
+ "name": "tabulatorThemeSimpleCSS",
4618
+ "declaration": {
4619
+ "name": "tabulatorThemeSimpleCSS",
4620
+ "module": "src/external/index.ts"
4621
+ }
4622
+ }
4623
+ ]
4624
+ },
4625
+ {
4626
+ "kind": "javascript-module",
4627
+ "path": "src/external/tabulator-theme-simple-css.ts",
4628
+ "declarations": [
4629
+ {
4630
+ "kind": "variable",
4631
+ "name": "tabulatorThemeSimpleCSS",
4632
+ "default": "css`\n .tabulator {\n position: relative;\n border: 1px solid #999;\n background-color: #fff;\n font-size: 14px;\n text-align: left;\n overflow: hidden;\n -webkit-transform: translateZ(0);\n -moz-transform: translateZ(0);\n -ms-transform: translateZ(0);\n -o-transform: translateZ(0);\n transform: translateZ(0);\n }\n\n .tabulator[tabulator-layout='fitDataFill'] .tabulator-tableholder .tabulator-table {\n min-width: 100%;\n }\n\n .tabulator[tabulator-layout='fitDataTable'] {\n display: inline-block;\n }\n\n .tabulator.tabulator-block-select {\n user-select: none;\n }\n\n .tabulator .tabulator-header {\n position: relative;\n box-sizing: border-box;\n width: 100%;\n border-bottom: 1px solid #999;\n background-color: #fff;\n color: #555;\n font-weight: bold;\n white-space: nowrap;\n overflow: hidden;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator .tabulator-header.tabulator-header-hidden {\n display: none;\n }\n\n .tabulator .tabulator-header .tabulator-header-contents {\n position: relative;\n overflow: hidden;\n }\n\n .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {\n display: inline-block;\n }\n\n .tabulator .tabulator-header .tabulator-col {\n display: inline-flex;\n position: relative;\n box-sizing: border-box;\n flex-direction: column;\n justify-content: flex-start;\n border-right: 1px solid #ddd;\n background: #fff;\n text-align: left;\n vertical-align: bottom;\n overflow: hidden;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-moving {\n position: absolute;\n border: 1px solid #999;\n background: #e6e6e6;\n pointer-events: none;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content {\n box-sizing: border-box;\n position: relative;\n padding: 4px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-header-popup-button {\n padding: 0 8px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-header-popup-button:hover {\n cursor: pointer;\n opacity: 0.6;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {\n position: relative;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {\n box-sizing: border-box;\n width: 100%;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n vertical-align: bottom;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title.tabulator-col-title-wrap {\n white-space: normal;\n text-overflow: initial;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title\n .tabulator-title-editor {\n box-sizing: border-box;\n width: 100%;\n border: 1px solid #999;\n padding: 1px;\n background: #fff;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title\n .tabulator-header-popup-button\n + .tabulator-title-editor {\n width: calc(100% - 22px);\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {\n display: flex;\n align-items: center;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 4px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n width: 0;\n height: 0;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-bottom: 6px solid #bbb;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {\n position: relative;\n display: flex;\n border-top: 1px solid #ddd;\n overflow: hidden;\n margin-right: -1px;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter {\n position: relative;\n box-sizing: border-box;\n margin-top: 2px;\n width: 100%;\n text-align: center;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {\n height: auto !important;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {\n margin-top: 3px;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {\n width: 0;\n height: 0;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {\n padding-right: 25px;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {\n cursor: pointer;\n background-color: #e6e6e6;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #bbb;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-bottom: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-top: none;\n border-bottom: 6px solid #bbb;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #666;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-bottom: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-top: none;\n border-bottom: 6px solid #666;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #666;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-top: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-bottom: none;\n border-top: 6px solid #666;\n color: #666;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical\n .tabulator-col-content\n .tabulator-col-title {\n writing-mode: vertical-rl;\n text-orientation: mixed;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip\n .tabulator-col-title {\n transform: rotate(180deg);\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable\n .tabulator-col-title {\n padding-right: 0;\n padding-top: 20px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip\n .tabulator-col-title {\n padding-right: 0;\n padding-bottom: 20px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable\n .tabulator-col-sorter {\n justify-content: center;\n left: 0;\n right: 0;\n top: 4px;\n bottom: auto;\n }\n\n .tabulator .tabulator-header .tabulator-frozen {\n position: sticky;\n left: 0;\n z-index: 11;\n }\n\n .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {\n border-right: 2px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {\n border-left: 2px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder {\n box-sizing: border-box;\n background: white !important;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {\n background: white !important;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {\n display: none;\n }\n\n .tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {\n display: none;\n }\n\n .tabulator .tabulator-tableholder {\n position: relative;\n width: 100%;\n white-space: nowrap;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n }\n\n .tabulator .tabulator-tableholder:focus {\n outline: none;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode='virtual'] {\n min-height: 100%;\n min-width: 100%;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {\n display: inline-block;\n text-align: center;\n padding: 10px;\n color: #ccc;\n font-weight: bold;\n font-size: 20px;\n white-space: normal;\n }\n\n .tabulator .tabulator-tableholder .tabulator-table {\n position: relative;\n display: inline-block;\n white-space: nowrap;\n overflow: visible;\n color: #333;\n }\n\n .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {\n font-weight: bold;\n background: #f2f2f2;\n }\n\n .tabulator\n .tabulator-tableholder\n .tabulator-table\n .tabulator-row.tabulator-calcs.tabulator-calcs-top {\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator\n .tabulator-tableholder\n .tabulator-table\n .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {\n border-top: 2px solid #ddd;\n }\n\n .tabulator .tabulator-footer {\n border-top: 1px solid #999;\n background-color: #fff;\n color: #555;\n font-weight: bold;\n white-space: nowrap;\n user-select: none;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator .tabulator-footer .tabulator-footer-contents {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding: 5px 10px;\n }\n\n .tabulator .tabulator-footer .tabulator-footer-contents:empty {\n display: none;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder {\n box-sizing: border-box;\n width: 100%;\n text-align: left;\n background: white !important;\n border-bottom: 1px solid #ddd;\n border-top: 1px solid #ddd;\n overflow: hidden;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {\n display: inline-block;\n background: white !important;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {\n display: none;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder:only-child {\n margin-bottom: -5px;\n border-bottom: none;\n }\n\n .tabulator .tabulator-footer > * + .tabulator-page-counter {\n margin-left: 10px;\n }\n\n .tabulator .tabulator-footer .tabulator-page-counter {\n font-weight: normal;\n }\n\n .tabulator .tabulator-footer .tabulator-paginator {\n flex: 1;\n text-align: right;\n color: #555;\n font-family: inherit;\n font-weight: inherit;\n font-size: inherit;\n }\n\n .tabulator .tabulator-footer .tabulator-page-size {\n display: inline-block;\n margin: 0 5px;\n padding: 2px 5px;\n border: 1px solid #aaa;\n border-radius: 3px;\n }\n\n .tabulator .tabulator-footer .tabulator-pages {\n margin: 0 7px;\n }\n\n .tabulator .tabulator-footer .tabulator-page {\n display: inline-block;\n margin: 0 2px;\n padding: 2px 5px;\n border: 1px solid #aaa;\n border-radius: 3px;\n background: rgba(255, 255, 255, 0.2);\n }\n\n .tabulator .tabulator-footer .tabulator-page.active {\n color: #d00;\n }\n\n .tabulator .tabulator-footer .tabulator-page:disabled {\n opacity: 0.5;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n color: #fff;\n }\n }\n\n .tabulator .tabulator-col-resize-handle {\n position: relative;\n display: inline-block;\n width: 6px;\n margin-left: -3px;\n margin-right: -3px;\n z-index: 10;\n vertical-align: middle;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator .tabulator-col-resize-handle:hover {\n cursor: ew-resize;\n }\n }\n\n .tabulator .tabulator-col-resize-handle:last-of-type {\n width: 3px;\n margin-right: 0;\n }\n\n .tabulator .tabulator-alert {\n position: absolute;\n display: flex;\n align-items: center;\n top: 0;\n left: 0;\n z-index: 100;\n height: 100%;\n width: 100%;\n background: rgba(0, 0, 0, 0.4);\n text-align: center;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg {\n display: inline-block;\n margin: 0 auto;\n padding: 10px 20px;\n border-radius: 10px;\n background: #fff;\n font-weight: bold;\n font-size: 16px;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {\n border: 4px solid #333;\n color: #000;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {\n border: 4px solid #d00;\n color: #590000;\n }\n\n .tabulator-row {\n position: relative;\n box-sizing: border-box;\n min-height: 22px;\n background-color: #fff;\n }\n\n .tabulator-row.tabulator-row-even {\n background-color: #fff;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-selectable:hover {\n background-color: #bbb;\n cursor: pointer;\n }\n }\n\n .tabulator-row.tabulator-selected {\n background-color: #9abcea;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-selected:hover {\n background-color: #769bcc;\n cursor: pointer;\n }\n }\n\n .tabulator-row.tabulator-row-moving {\n border: 1px solid #000;\n background: #fff;\n }\n\n .tabulator-row.tabulator-moving {\n position: absolute;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n pointer-events: none;\n z-index: 15;\n }\n\n .tabulator-row .tabulator-row-resize-handle {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n height: 5px;\n }\n\n .tabulator-row .tabulator-row-resize-handle.prev {\n top: 0;\n bottom: auto;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-row-resize-handle:hover {\n cursor: ns-resize;\n }\n }\n\n .tabulator-row .tabulator-responsive-collapse {\n box-sizing: border-box;\n padding: 5px;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator-row .tabulator-responsive-collapse:empty {\n display: none;\n }\n\n .tabulator-row .tabulator-responsive-collapse table {\n font-size: 14px;\n }\n\n .tabulator-row .tabulator-responsive-collapse table tr td {\n position: relative;\n }\n\n .tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {\n padding-right: 10px;\n }\n\n .tabulator-row .tabulator-cell {\n display: inline-flex;\n position: unset;\n box-sizing: border-box;\n padding: 4px 8px;\n border-right: 1px solid #ddd;\n vertical-align: middle;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen {\n display: inline-flex;\n position: sticky;\n left: 0;\n background-color: inherit;\n z-index: 11;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {\n border-right: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {\n border-left: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell.tabulator-editing {\n border: 1px solid #1d68cd;\n outline: none;\n padding: 0;\n }\n\n .tabulator-row .tabulator-cell.tabulator-editing input,\n .tabulator-row .tabulator-cell.tabulator-editing select {\n border: 1px;\n background: transparent;\n outline: none;\n }\n\n .tabulator-row .tabulator-cell.tabulator-validation-fail {\n border: 1px solid #dd0000;\n }\n\n .tabulator-row .tabulator-cell.tabulator-validation-fail input,\n .tabulator-row .tabulator-cell.tabulator-validation-fail select {\n border: 1px;\n background: transparent;\n color: #dd0000;\n }\n\n .tabulator-row .tabulator-cell.tabulator-row-handle {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {\n width: 80%;\n }\n\n .tabulator-row\n .tabulator-cell.tabulator-row-handle\n .tabulator-row-handle-box\n .tabulator-row-handle-bar {\n width: 100%;\n height: 3px;\n margin-top: 2px;\n background: #666;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-branch-empty {\n display: inline-block;\n width: 7px;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-branch {\n display: inline-block;\n vertical-align: middle;\n height: 9px;\n width: 7px;\n margin-top: -9px;\n margin-right: 5px;\n border-bottom-left-radius: 1px;\n border-left: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-control {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n vertical-align: middle;\n height: 11px;\n width: 11px;\n margin-right: 5px;\n border: 1px solid #333;\n border-radius: 2px;\n background: rgba(0, 0, 0, 0.1);\n overflow: hidden;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n }\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-collapse {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: transparent;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-collapse:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: #333;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-expand:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n height: 15px;\n width: 15px;\n border-radius: 20px;\n background: #666;\n color: #fff;\n font-weight: bold;\n font-size: 1.1em;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {\n opacity: 0.7;\n cursor: pointer;\n }\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle.open\n .tabulator-responsive-collapse-toggle-close {\n display: initial;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle.open\n .tabulator-responsive-collapse-toggle-open {\n display: none;\n }\n\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle svg {\n stroke: #fff;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle\n .tabulator-responsive-collapse-toggle-close {\n display: none;\n }\n\n .tabulator-row .tabulator-cell .tabulator-traffic-light {\n display: inline-block;\n height: 14px;\n width: 14px;\n border-radius: 14px;\n }\n\n .tabulator-row.tabulator-group {\n box-sizing: border-box;\n border-bottom: 1px solid #999;\n border-right: 1px solid #ddd;\n border-top: 1px solid #999;\n padding: 5px;\n padding-left: 10px;\n background: #ccc;\n font-weight: bold;\n min-width: 100%;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-group:hover {\n cursor: pointer;\n background-color: rgba(0, 0, 0, 0.1);\n }\n }\n\n .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {\n margin-right: 10px;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid #666;\n border-bottom: 0;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-1 {\n padding-left: 30px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-2 {\n padding-left: 50px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-3 {\n padding-left: 70px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-4 {\n padding-left: 90px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-5 {\n padding-left: 110px;\n }\n\n .tabulator-row.tabulator-group .tabulator-group-toggle {\n display: inline-block;\n }\n\n .tabulator-row.tabulator-group .tabulator-arrow {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 16px;\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n border-right: 0;\n border-left: 6px solid #666;\n vertical-align: middle;\n }\n\n .tabulator-row.tabulator-group span {\n margin-left: 10px;\n color: #d00;\n }\n\n .tabulator-popup-container {\n position: absolute;\n display: inline-block;\n box-sizing: border-box;\n background: #fff;\n border: 1px solid #ddd;\n box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);\n font-size: 14px;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n z-index: 10000;\n }\n\n .tabulator-popup {\n padding: 5px;\n border-radius: 3px;\n }\n\n .tabulator-tooltip {\n max-width: Min(500px, 100%);\n padding: 3px 5px;\n border-radius: 2px;\n box-shadow: none;\n font-size: 12px;\n pointer-events: none;\n }\n\n .tabulator-menu .tabulator-menu-item {\n position: relative;\n box-sizing: border-box;\n padding: 5px 10px;\n user-select: none;\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {\n opacity: 0.5;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {\n cursor: pointer;\n background: #fff;\n }\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {\n padding-right: 25px;\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu::after {\n display: inline-block;\n position: absolute;\n top: calc(5px + 0.4em);\n right: 10px;\n height: 7px;\n width: 7px;\n content: '';\n border-width: 1px 1px 0 0;\n border-style: solid;\n border-color: #ddd;\n vertical-align: top;\n transform: rotate(45deg);\n }\n\n .tabulator-menu .tabulator-menu-separator {\n border-top: 1px solid #ddd;\n }\n\n .tabulator-edit-list {\n max-height: 200px;\n font-size: 14px;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item {\n padding: 4px;\n color: #333;\n outline: none;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.active {\n color: #fff;\n background: #1d68cd;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.active.focused {\n outline: 1px solid rgba(255, 255, 255, 0.5);\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.focused {\n outline: 1px solid #1d68cd;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-edit-list .tabulator-edit-list-item:hover {\n cursor: pointer;\n color: #fff;\n background: #1d68cd;\n }\n }\n\n .tabulator-edit-list .tabulator-edit-list-placeholder {\n padding: 4px;\n color: #333;\n text-align: center;\n }\n\n .tabulator-edit-list .tabulator-edit-list-group {\n border-bottom: 1px solid #ddd;\n padding: 4px;\n padding-top: 6px;\n color: #333;\n font-weight: bold;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2 {\n padding-left: 12px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3 {\n padding-left: 20px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4 {\n padding-left: 28px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5 {\n padding-left: 36px;\n }\n\n .tabulator.tabulator-ltr {\n direction: ltr;\n }\n\n .tabulator.tabulator-rtl {\n text-align: initial;\n direction: rtl;\n }\n\n .tabulator.tabulator-rtl .tabulator-header .tabulator-col {\n text-align: initial;\n border-left: 1px solid #ddd;\n border-right: initial;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col.tabulator-col-group\n .tabulator-col-group-cols {\n margin-right: initial;\n margin-left: -1px;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col.tabulator-sortable\n .tabulator-col-title {\n padding-right: 0;\n padding-left: 25px;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-sorter {\n left: 8px;\n right: initial;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell {\n border-right: initial;\n border-left: 1px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-branch {\n margin-right: initial;\n margin-left: 5px;\n border-bottom-left-radius: initial;\n border-bottom-right-radius: 1px;\n border-left: initial;\n border-right: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-control {\n margin-right: initial;\n margin-left: 5px;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {\n border-left: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {\n border-right: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-col-resize-handle:last-of-type {\n width: 3px;\n margin-left: 0;\n margin-right: -3px;\n }\n\n .tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {\n text-align: initial;\n }\n\n .tabulator-print-fullscreen {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 10000;\n }\n\n body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {\n display: none !important;\n }\n\n .tabulator-print-table {\n border-collapse: collapse;\n }\n\n .tabulator-print-table .tabulator-data-tree-branch {\n display: inline-block;\n vertical-align: middle;\n height: 9px;\n width: 7px;\n margin-top: -9px;\n margin-right: 5px;\n border-bottom-left-radius: 1px;\n border-left: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator-print-table .tabulator-print-table-group {\n box-sizing: border-box;\n border-bottom: 1px solid #999;\n border-right: 1px solid #ddd;\n border-top: 1px solid #999;\n padding: 5px;\n padding-left: 10px;\n background: #ccc;\n font-weight: bold;\n min-width: 100%;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-print-table .tabulator-print-table-group:hover {\n cursor: pointer;\n background-color: rgba(0, 0, 0, 0.1);\n }\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {\n margin-right: 10px;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid #666;\n border-bottom: 0;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-1 td {\n padding-left: 30px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-2 td {\n padding-left: 50px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-3 td {\n padding-left: 70px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-4 td {\n padding-left: 90px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-5 td {\n padding-left: 110px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group .tabulator-group-toggle {\n display: inline-block;\n }\n\n .tabulator-print-table .tabulator-print-table-group .tabulator-arrow {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 16px;\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n border-right: 0;\n border-left: 6px solid #666;\n vertical-align: middle;\n }\n\n .tabulator-print-table .tabulator-print-table-group span {\n margin-left: 10px;\n color: #d00;\n }\n\n .tabulator-print-table .tabulator-data-tree-control {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n vertical-align: middle;\n height: 11px;\n width: 11px;\n margin-right: 5px;\n border: 1px solid #333;\n border-radius: 2px;\n background: rgba(0, 0, 0, 0.1);\n overflow: hidden;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-print-table .tabulator-data-tree-control:hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n }\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: transparent;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: #333;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator {\n border: none;\n background-color: #fff;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder {\n background: #f2f2f2 !important;\n border-bottom: 1px solid #999;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {\n background: #f2f2f2 !important;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder span {\n color: #000;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder {\n background: #f2f2f2 !important;\n border-bottom: 1px solid #fff;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {\n background: #f2f2f2 !important;\n }\n\n .tabulator-row {\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell:last-of-type {\n border-right: none;\n }\n\n .tabulator-row.tabulator-group span {\n color: #666;\n }\n\n .tabulator-print-table .tabulator-print-table-group span {\n margin-left: 10px;\n color: #666;\n }\n\n /*# sourceMappingURL=tabulator_simple.css.map */\n`",
4633
+ "description": "External styles for the Tabulator grid.",
4634
+ "privacy": "public"
4635
+ }
4636
+ ],
4637
+ "exports": [
4638
+ {
4639
+ "kind": "js",
4640
+ "name": "tabulatorThemeSimpleCSS",
4641
+ "declaration": {
4642
+ "name": "tabulatorThemeSimpleCSS",
4643
+ "module": "src/external/tabulator-theme-simple-css.ts"
4644
4644
  }
4645
4645
  }
4646
4646
  ]