@genesislcap/grid-tabulator 15.12.0-FUI-2601.1 → 15.13.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.
@@ -1419,498 +1419,589 @@
1419
1419
  },
1420
1420
  {
1421
1421
  "kind": "javascript-module",
1422
- "path": "src/cell-formatters/action.formatter.ts",
1422
+ "path": "src/cell/cell.ts",
1423
1423
  "declarations": [
1424
1424
  {
1425
- "kind": "function",
1426
- "name": "actionFormatter",
1427
- "return": {
1428
- "type": {
1429
- "text": ""
1430
- }
1431
- },
1432
- "parameters": [
1425
+ "kind": "class",
1426
+ "description": "The GridTabulator Cell element.",
1427
+ "name": "GridTabulatorCell",
1428
+ "members": [
1433
1429
  {
1434
- "name": "cell",
1430
+ "kind": "field",
1431
+ "name": "renderer",
1435
1432
  "type": {
1436
- "text": "any"
1433
+ "text": "CellRendererFunc"
1437
1434
  },
1438
- "description": "The cell component provided by Tabulator"
1435
+ "privacy": "public"
1439
1436
  },
1440
1437
  {
1441
- "name": "formatterParams",
1442
- "default": "{}",
1438
+ "kind": "field",
1439
+ "name": "rendererParams",
1443
1440
  "type": {
1444
- "text": "ActionFormatterParams<T>"
1441
+ "text": "CellRendererParams"
1445
1442
  },
1446
- "description": "Action formatter parameters"
1447
- }
1448
- ],
1449
- "description": "Formatter that displays an action button in the cell.\nStyled to match grid-pro action renderer.",
1450
- "privacy": "public"
1451
- }
1452
- ],
1453
- "exports": [
1454
- {
1455
- "kind": "js",
1456
- "name": "actionFormatter",
1457
- "declaration": {
1458
- "name": "actionFormatter",
1459
- "module": "src/cell-formatters/action.formatter.ts"
1460
- }
1461
- }
1462
- ]
1463
- },
1464
- {
1465
- "kind": "javascript-module",
1466
- "path": "src/cell-formatters/actions-menu.formatter.ts",
1467
- "declarations": [
1468
- {
1469
- "kind": "function",
1470
- "name": "actionsMenuFormatter",
1471
- "return": {
1472
- "type": {
1473
- "text": ""
1474
- }
1475
- },
1476
- "parameters": [
1443
+ "privacy": "public"
1444
+ },
1477
1445
  {
1478
- "name": "cell",
1446
+ "kind": "field",
1447
+ "name": "slottedRenderer",
1479
1448
  "type": {
1480
- "text": "any"
1449
+ "text": "HTMLElement[]"
1481
1450
  },
1482
- "description": "The cell component provided by Tabulator"
1451
+ "privacy": "public"
1483
1452
  },
1484
1453
  {
1485
- "name": "formatterParams",
1486
- "default": "{}",
1454
+ "kind": "method",
1455
+ "name": "init",
1456
+ "privacy": "public",
1457
+ "parameters": [
1458
+ {
1459
+ "name": "params",
1460
+ "type": {
1461
+ "text": "CellRendererParams"
1462
+ }
1463
+ }
1464
+ ]
1465
+ },
1466
+ {
1467
+ "kind": "method",
1468
+ "name": "getElement",
1469
+ "privacy": "public",
1470
+ "return": {
1471
+ "type": {
1472
+ "text": "HTMLElement"
1473
+ }
1474
+ }
1475
+ },
1476
+ {
1477
+ "kind": "method",
1478
+ "name": "destroy",
1479
+ "privacy": "public"
1480
+ },
1481
+ {
1482
+ "kind": "method",
1483
+ "name": "refresh",
1484
+ "privacy": "public",
1485
+ "return": {
1486
+ "type": {
1487
+ "text": "boolean"
1488
+ }
1489
+ },
1490
+ "parameters": [
1491
+ {
1492
+ "name": "params",
1493
+ "type": {
1494
+ "text": "CellRendererParams"
1495
+ }
1496
+ }
1497
+ ]
1498
+ },
1499
+ {
1500
+ "kind": "method",
1501
+ "name": "slottedRendererChanged",
1502
+ "privacy": "public"
1503
+ },
1504
+ {
1505
+ "kind": "field",
1506
+ "name": "_presentation",
1487
1507
  "type": {
1488
- "text": "ActionsMenuFormatterParams<T>"
1508
+ "text": "ComponentPresentation | null | undefined"
1489
1509
  },
1490
- "description": "Actions menu formatter parameters"
1510
+ "privacy": "private",
1511
+ "default": "void 0",
1512
+ "inheritedFrom": {
1513
+ "name": "FoundationElement",
1514
+ "module": "src/foundation-element/foundation-element.ts"
1515
+ }
1516
+ },
1517
+ {
1518
+ "kind": "field",
1519
+ "name": "$presentation",
1520
+ "type": {
1521
+ "text": "ComponentPresentation | null"
1522
+ },
1523
+ "privacy": "public",
1524
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1525
+ "inheritedFrom": {
1526
+ "name": "FoundationElement",
1527
+ "module": "src/foundation-element/foundation-element.ts"
1528
+ }
1529
+ },
1530
+ {
1531
+ "kind": "field",
1532
+ "name": "template",
1533
+ "type": {
1534
+ "text": "ElementViewTemplate | void | null"
1535
+ },
1536
+ "privacy": "public",
1537
+ "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.",
1538
+ "inheritedFrom": {
1539
+ "name": "FoundationElement",
1540
+ "module": "src/foundation-element/foundation-element.ts"
1541
+ }
1542
+ },
1543
+ {
1544
+ "kind": "method",
1545
+ "name": "templateChanged",
1546
+ "privacy": "protected",
1547
+ "return": {
1548
+ "type": {
1549
+ "text": "void"
1550
+ }
1551
+ },
1552
+ "inheritedFrom": {
1553
+ "name": "FoundationElement",
1554
+ "module": "src/foundation-element/foundation-element.ts"
1555
+ }
1556
+ },
1557
+ {
1558
+ "kind": "field",
1559
+ "name": "styles",
1560
+ "type": {
1561
+ "text": "ElementStyles | void | null"
1562
+ },
1563
+ "privacy": "public",
1564
+ "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.",
1565
+ "inheritedFrom": {
1566
+ "name": "FoundationElement",
1567
+ "module": "src/foundation-element/foundation-element.ts"
1568
+ }
1569
+ },
1570
+ {
1571
+ "kind": "method",
1572
+ "name": "stylesChanged",
1573
+ "privacy": "protected",
1574
+ "return": {
1575
+ "type": {
1576
+ "text": "void"
1577
+ }
1578
+ },
1579
+ "inheritedFrom": {
1580
+ "name": "FoundationElement",
1581
+ "module": "src/foundation-element/foundation-element.ts"
1582
+ }
1583
+ },
1584
+ {
1585
+ "kind": "method",
1586
+ "name": "compose",
1587
+ "privacy": "public",
1588
+ "static": true,
1589
+ "return": {
1590
+ "type": {
1591
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1592
+ }
1593
+ },
1594
+ "parameters": [
1595
+ {
1596
+ "name": "this",
1597
+ "type": {
1598
+ "text": "K"
1599
+ }
1600
+ },
1601
+ {
1602
+ "name": "elementDefinition",
1603
+ "type": {
1604
+ "text": "T"
1605
+ },
1606
+ "description": "The definition of the element to create the registry\nfunction for."
1607
+ }
1608
+ ],
1609
+ "description": "Defines an element registry function with a set of element definition defaults.",
1610
+ "inheritedFrom": {
1611
+ "name": "FoundationElement",
1612
+ "module": "src/foundation-element/foundation-element.ts"
1613
+ }
1491
1614
  }
1492
1615
  ],
1493
- "description": "Formatter that displays a dropdown menu of actions in the cell.\nStyled to match grid-pro actions-menu renderer.",
1494
- "privacy": "public"
1616
+ "superclass": {
1617
+ "name": "FoundationElement",
1618
+ "package": "@microsoft/fast-foundation"
1619
+ },
1620
+ "tagName": "grid-tabulator-cell",
1621
+ "customElement": true
1495
1622
  }
1496
1623
  ],
1497
1624
  "exports": [
1498
1625
  {
1499
1626
  "kind": "js",
1500
- "name": "actionsMenuFormatter",
1627
+ "name": "GridTabulatorCell",
1501
1628
  "declaration": {
1502
- "name": "actionsMenuFormatter",
1503
- "module": "src/cell-formatters/actions-menu.formatter.ts"
1629
+ "name": "GridTabulatorCell",
1630
+ "module": "src/cell/cell.ts"
1631
+ }
1632
+ },
1633
+ {
1634
+ "kind": "custom-element-definition",
1635
+ "name": "grid-tabulator-cell",
1636
+ "declaration": {
1637
+ "name": "GridTabulatorCell",
1638
+ "module": "src/cell/cell.ts"
1504
1639
  }
1505
1640
  }
1506
1641
  ]
1507
1642
  },
1508
1643
  {
1509
1644
  "kind": "javascript-module",
1510
- "path": "src/cell-formatters/boolean.formatter.ts",
1511
- "declarations": [
1512
- {
1513
- "kind": "function",
1514
- "name": "booleanFormatter",
1515
- "return": {
1516
- "type": {
1517
- "text": ""
1518
- }
1519
- },
1520
- "parameters": [
1521
- {
1522
- "name": "cell",
1523
- "type": {
1524
- "text": "any"
1525
- },
1526
- "description": "The cell component provided by Tabulator"
1527
- },
1528
- {
1529
- "name": "formatterParams",
1530
- "default": "{}",
1531
- "type": {
1532
- "text": "BooleanFormatterParams<T>"
1533
- },
1534
- "description": "Boolean formatter parameters"
1535
- }
1536
- ],
1537
- "description": "Formatter that displays boolean values using a checkbox component.\nStyled to match grid-pro boolean renderer.",
1538
- "privacy": "public"
1539
- }
1540
- ],
1541
- "exports": [
1645
+ "path": "src/cell/index.ts",
1646
+ "declarations": [],
1647
+ "exports": [
1542
1648
  {
1543
1649
  "kind": "js",
1544
- "name": "booleanFormatter",
1650
+ "name": "*",
1545
1651
  "declaration": {
1546
- "name": "booleanFormatter",
1547
- "module": "src/cell-formatters/boolean.formatter.ts"
1652
+ "name": "*",
1653
+ "package": "./cell"
1548
1654
  }
1549
1655
  }
1550
1656
  ]
1551
1657
  },
1552
1658
  {
1553
1659
  "kind": "javascript-module",
1554
- "path": "src/cell-formatters/constants.ts",
1555
- "declarations": [],
1556
- "exports": []
1557
- },
1558
- {
1559
- "kind": "javascript-module",
1560
- "path": "src/cell-formatters/editable.formatter.ts",
1660
+ "path": "src/cell-editors/date.editor.ts",
1561
1661
  "declarations": [
1562
1662
  {
1563
- "kind": "function",
1564
- "name": "editableFormatter",
1565
- "return": {
1566
- "type": {
1567
- "text": ""
1568
- }
1569
- },
1570
- "parameters": [
1663
+ "kind": "class",
1664
+ "description": "The date editor class for grid-tabulator",
1665
+ "name": "DateEditor",
1666
+ "members": [
1571
1667
  {
1572
- "name": "cell",
1668
+ "kind": "field",
1669
+ "name": "params",
1670
+ "type": {
1671
+ "text": "DateEditorParams"
1672
+ }
1673
+ },
1674
+ {
1675
+ "kind": "field",
1676
+ "name": "dateField",
1573
1677
  "type": {
1574
1678
  "text": "any"
1679
+ }
1680
+ },
1681
+ {
1682
+ "kind": "method",
1683
+ "name": "init",
1684
+ "parameters": [
1685
+ {
1686
+ "name": "params",
1687
+ "type": {
1688
+ "text": "DateEditorParams"
1689
+ }
1690
+ }
1691
+ ],
1692
+ "description": "Initialize the editor with parameters"
1693
+ },
1694
+ {
1695
+ "kind": "method",
1696
+ "name": "getValue",
1697
+ "description": "Get current value"
1698
+ },
1699
+ {
1700
+ "kind": "method",
1701
+ "name": "getFormattedValue",
1702
+ "description": "Format value for display"
1703
+ },
1704
+ {
1705
+ "kind": "method",
1706
+ "name": "focus",
1707
+ "description": "Set focus to the input"
1708
+ },
1709
+ {
1710
+ "kind": "method",
1711
+ "name": "handleKeyDown",
1712
+ "parameters": [
1713
+ {
1714
+ "name": "event",
1715
+ "type": {
1716
+ "text": "KeyboardEvent"
1717
+ }
1718
+ }
1719
+ ],
1720
+ "description": "Process key down events"
1721
+ },
1722
+ {
1723
+ "kind": "field",
1724
+ "name": "_presentation",
1725
+ "type": {
1726
+ "text": "ComponentPresentation | null | undefined"
1575
1727
  },
1576
- "description": "The cell component provided by Tabulator"
1728
+ "privacy": "private",
1729
+ "default": "void 0",
1730
+ "inheritedFrom": {
1731
+ "name": "FoundationElement",
1732
+ "module": "src/foundation-element/foundation-element.ts"
1733
+ }
1577
1734
  },
1578
1735
  {
1579
- "name": "formatterParams",
1580
- "default": "{}",
1736
+ "kind": "field",
1737
+ "name": "$presentation",
1581
1738
  "type": {
1582
- "text": "EditableFormatterParams<T>"
1739
+ "text": "ComponentPresentation | null"
1583
1740
  },
1584
- "description": "Editable formatter parameters"
1741
+ "privacy": "public",
1742
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
1743
+ "inheritedFrom": {
1744
+ "name": "FoundationElement",
1745
+ "module": "src/foundation-element/foundation-element.ts"
1746
+ }
1747
+ },
1748
+ {
1749
+ "kind": "field",
1750
+ "name": "template",
1751
+ "type": {
1752
+ "text": "ElementViewTemplate | void | null"
1753
+ },
1754
+ "privacy": "public",
1755
+ "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.",
1756
+ "inheritedFrom": {
1757
+ "name": "FoundationElement",
1758
+ "module": "src/foundation-element/foundation-element.ts"
1759
+ }
1760
+ },
1761
+ {
1762
+ "kind": "method",
1763
+ "name": "templateChanged",
1764
+ "privacy": "protected",
1765
+ "return": {
1766
+ "type": {
1767
+ "text": "void"
1768
+ }
1769
+ },
1770
+ "inheritedFrom": {
1771
+ "name": "FoundationElement",
1772
+ "module": "src/foundation-element/foundation-element.ts"
1773
+ }
1774
+ },
1775
+ {
1776
+ "kind": "field",
1777
+ "name": "styles",
1778
+ "type": {
1779
+ "text": "ElementStyles | void | null"
1780
+ },
1781
+ "privacy": "public",
1782
+ "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.",
1783
+ "inheritedFrom": {
1784
+ "name": "FoundationElement",
1785
+ "module": "src/foundation-element/foundation-element.ts"
1786
+ }
1787
+ },
1788
+ {
1789
+ "kind": "method",
1790
+ "name": "stylesChanged",
1791
+ "privacy": "protected",
1792
+ "return": {
1793
+ "type": {
1794
+ "text": "void"
1795
+ }
1796
+ },
1797
+ "inheritedFrom": {
1798
+ "name": "FoundationElement",
1799
+ "module": "src/foundation-element/foundation-element.ts"
1800
+ }
1801
+ },
1802
+ {
1803
+ "kind": "method",
1804
+ "name": "compose",
1805
+ "privacy": "public",
1806
+ "static": true,
1807
+ "return": {
1808
+ "type": {
1809
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
1810
+ }
1811
+ },
1812
+ "parameters": [
1813
+ {
1814
+ "name": "this",
1815
+ "type": {
1816
+ "text": "K"
1817
+ }
1818
+ },
1819
+ {
1820
+ "name": "elementDefinition",
1821
+ "type": {
1822
+ "text": "T"
1823
+ },
1824
+ "description": "The definition of the element to create the registry\nfunction for."
1825
+ }
1826
+ ],
1827
+ "description": "Defines an element registry function with a set of element definition defaults.",
1828
+ "inheritedFrom": {
1829
+ "name": "FoundationElement",
1830
+ "module": "src/foundation-element/foundation-element.ts"
1831
+ }
1585
1832
  }
1586
1833
  ],
1587
- "description": "Formatter that displays an editable cell with validation state",
1588
- "privacy": "public"
1589
- }
1590
- ],
1591
- "exports": [
1592
- {
1593
- "kind": "js",
1594
- "name": "editableFormatter",
1595
- "declaration": {
1596
- "name": "editableFormatter",
1597
- "module": "src/cell-formatters/editable.formatter.ts"
1598
- }
1599
- }
1600
- ]
1601
- },
1602
- {
1603
- "kind": "javascript-module",
1604
- "path": "src/cell-formatters/index.ts",
1605
- "declarations": [
1606
- {
1607
- "kind": "variable",
1608
- "name": "formatters",
1609
- "type": {
1610
- "text": "object"
1611
- },
1612
- "default": "{\n action: actionFormatter,\n actionsMenu: actionsMenuFormatter,\n boolean: booleanFormatter,\n editable: editableFormatter,\n select: selectFormatter,\n text: textFormatter,\n}",
1613
- "description": "Zero formatters for Tabulator grid"
1614
- }
1615
- ],
1616
- "exports": [
1617
- {
1618
- "kind": "js",
1619
- "name": "*",
1620
- "declaration": {
1621
- "name": "*",
1622
- "package": "./constants"
1623
- }
1624
- },
1625
- {
1626
- "kind": "js",
1627
- "name": "ActionFormatterParams",
1628
- "declaration": {
1629
- "name": "ActionFormatterParams",
1630
- "module": "src/cell-formatters/index.ts"
1834
+ "superclass": {
1835
+ "name": "FoundationElement",
1836
+ "package": "@microsoft/fast-foundation"
1631
1837
  }
1632
1838
  },
1633
1839
  {
1634
- "kind": "js",
1635
- "name": "actionFormatter",
1636
- "declaration": {
1637
- "name": "actionFormatter",
1638
- "module": "src/cell-formatters/index.ts"
1639
- }
1840
+ "kind": "variable",
1841
+ "name": "dateEditorStyles",
1842
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
1843
+ "description": "Styles for the date editor"
1640
1844
  },
1641
1845
  {
1642
- "kind": "js",
1643
- "name": "ActionsMenuFormatterParams",
1644
- "declaration": {
1645
- "name": "ActionsMenuFormatterParams",
1646
- "module": "src/cell-formatters/index.ts"
1647
- }
1846
+ "kind": "function",
1847
+ "name": "getDateEditorTemplate",
1848
+ "parameters": [
1849
+ {
1850
+ "name": "prefix",
1851
+ "default": "'foundation'",
1852
+ "description": "The design system prefix to use. Defaults to 'foundation'."
1853
+ }
1854
+ ],
1855
+ "description": "Get a Design System prefixed date field template.",
1856
+ "return": {
1857
+ "type": {
1858
+ "text": ""
1859
+ }
1860
+ },
1861
+ "privacy": "public"
1648
1862
  },
1649
1863
  {
1650
- "kind": "js",
1651
- "name": "actionsMenuFormatter",
1652
- "declaration": {
1653
- "name": "actionsMenuFormatter",
1654
- "module": "src/cell-formatters/index.ts"
1655
- }
1656
- },
1864
+ "kind": "variable",
1865
+ "name": "foundationDateEditor",
1866
+ "description": "Definition for the date editor component"
1867
+ }
1868
+ ],
1869
+ "exports": [
1657
1870
  {
1658
1871
  "kind": "js",
1659
- "name": "BooleanFormatterParams",
1872
+ "name": "DateEditor",
1660
1873
  "declaration": {
1661
- "name": "BooleanFormatterParams",
1662
- "module": "src/cell-formatters/index.ts"
1874
+ "name": "DateEditor",
1875
+ "module": "src/cell-editors/date.editor.ts"
1663
1876
  }
1664
1877
  },
1665
1878
  {
1666
1879
  "kind": "js",
1667
- "name": "booleanFormatter",
1880
+ "name": "dateEditorStyles",
1668
1881
  "declaration": {
1669
- "name": "booleanFormatter",
1670
- "module": "src/cell-formatters/index.ts"
1882
+ "name": "dateEditorStyles",
1883
+ "module": "src/cell-editors/date.editor.ts"
1671
1884
  }
1672
1885
  },
1673
1886
  {
1674
1887
  "kind": "js",
1675
- "name": "EditableFormatterParams",
1888
+ "name": "getDateEditorTemplate",
1676
1889
  "declaration": {
1677
- "name": "EditableFormatterParams",
1678
- "module": "src/cell-formatters/index.ts"
1890
+ "name": "getDateEditorTemplate",
1891
+ "module": "src/cell-editors/date.editor.ts"
1679
1892
  }
1680
1893
  },
1681
1894
  {
1682
1895
  "kind": "js",
1683
- "name": "editableFormatter",
1896
+ "name": "foundationDateEditor",
1684
1897
  "declaration": {
1685
- "name": "editableFormatter",
1686
- "module": "src/cell-formatters/index.ts"
1898
+ "name": "foundationDateEditor",
1899
+ "module": "src/cell-editors/date.editor.ts"
1687
1900
  }
1688
- },
1901
+ }
1902
+ ]
1903
+ },
1904
+ {
1905
+ "kind": "javascript-module",
1906
+ "path": "src/cell-editors/index.ts",
1907
+ "declarations": [],
1908
+ "exports": [
1689
1909
  {
1690
1910
  "kind": "js",
1691
- "name": "SelectFormatterParams",
1911
+ "name": "*",
1692
1912
  "declaration": {
1693
- "name": "SelectFormatterParams",
1694
- "module": "src/cell-formatters/index.ts"
1913
+ "name": "*",
1914
+ "package": "./date.editor"
1695
1915
  }
1696
1916
  },
1697
1917
  {
1698
1918
  "kind": "js",
1699
- "name": "selectFormatter",
1919
+ "name": "*",
1700
1920
  "declaration": {
1701
- "name": "selectFormatter",
1702
- "module": "src/cell-formatters/index.ts"
1921
+ "name": "*",
1922
+ "package": "./number.editor"
1703
1923
  }
1704
1924
  },
1705
1925
  {
1706
1926
  "kind": "js",
1707
- "name": "TextFormatterParams",
1927
+ "name": "*",
1708
1928
  "declaration": {
1709
- "name": "TextFormatterParams",
1710
- "module": "src/cell-formatters/index.ts"
1929
+ "name": "*",
1930
+ "package": "./select.editor"
1711
1931
  }
1712
1932
  },
1713
1933
  {
1714
1934
  "kind": "js",
1715
- "name": "textFormatter",
1935
+ "name": "*",
1716
1936
  "declaration": {
1717
- "name": "textFormatter",
1718
- "module": "src/cell-formatters/index.ts"
1937
+ "name": "*",
1938
+ "package": "./string.editor"
1719
1939
  }
1720
1940
  },
1721
1941
  {
1722
1942
  "kind": "js",
1723
- "name": "formatters",
1724
- "declaration": {
1725
- "name": "formatters",
1726
- "module": "src/cell-formatters/index.ts"
1727
- }
1728
- }
1729
- ]
1730
- },
1731
- {
1732
- "kind": "javascript-module",
1733
- "path": "src/cell-formatters/select.formatter.ts",
1734
- "declarations": [
1735
- {
1736
- "kind": "function",
1737
- "name": "selectFormatter",
1738
- "return": {
1739
- "type": {
1740
- "text": ""
1741
- }
1742
- },
1743
- "parameters": [
1744
- {
1745
- "name": "cell",
1746
- "type": {
1747
- "text": "any"
1748
- },
1749
- "description": "The cell component provided by Tabulator"
1750
- },
1751
- {
1752
- "name": "formatterParams",
1753
- "type": {
1754
- "text": "SelectFormatterParams<T>"
1755
- },
1756
- "description": "Select formatter parameters"
1757
- }
1758
- ],
1759
- "description": "Formatter that displays a select component with options.\nReturns a wrapped div containing the select, similar to boolean.formatter.",
1760
- "privacy": "public"
1761
- }
1762
- ],
1763
- "exports": [
1764
- {
1765
- "kind": "js",
1766
- "name": "selectFormatter",
1767
- "declaration": {
1768
- "name": "selectFormatter",
1769
- "module": "src/cell-formatters/select.formatter.ts"
1770
- }
1771
- }
1772
- ]
1773
- },
1774
- {
1775
- "kind": "javascript-module",
1776
- "path": "src/cell-formatters/text.formatter.ts",
1777
- "declarations": [
1778
- {
1779
- "kind": "function",
1780
- "name": "textFormatter",
1781
- "return": {
1782
- "type": {
1783
- "text": ""
1784
- }
1785
- },
1786
- "parameters": [
1787
- {
1788
- "name": "cell",
1789
- "type": {
1790
- "text": "any"
1791
- },
1792
- "description": "The cell component provided by Tabulator"
1793
- },
1794
- {
1795
- "name": "formatterParams",
1796
- "default": "{}",
1797
- "type": {
1798
- "text": "TextFormatterParams<T>"
1799
- },
1800
- "description": "Text formatter parameters"
1801
- }
1802
- ],
1803
- "description": "Text formatter for customized display of values.\nStyled to match grid-pro text renderer.",
1804
- "privacy": "public"
1805
- }
1806
- ],
1807
- "exports": [
1808
- {
1809
- "kind": "js",
1810
- "name": "textFormatter",
1943
+ "name": "*",
1811
1944
  "declaration": {
1812
- "name": "textFormatter",
1813
- "module": "src/cell-formatters/text.formatter.ts"
1945
+ "name": "*",
1946
+ "package": "./multiselect.editor"
1814
1947
  }
1815
1948
  }
1816
1949
  ]
1817
1950
  },
1818
1951
  {
1819
1952
  "kind": "javascript-module",
1820
- "path": "src/column/column.ts",
1953
+ "path": "src/cell-editors/multiselect.editor.ts",
1821
1954
  "declarations": [
1822
1955
  {
1823
1956
  "kind": "class",
1824
- "description": "The GridTabulator Column element.",
1825
- "name": "GridTabulatorColumn",
1826
- "members": [
1827
- {
1828
- "kind": "field",
1829
- "name": "slottedCell",
1830
- "type": {
1831
- "text": "HTMLElement[]"
1832
- },
1833
- "privacy": "public"
1834
- },
1835
- {
1836
- "kind": "field",
1837
- "name": "definition",
1838
- "type": {
1839
- "text": "Partial<ColumnDefinition>"
1840
- },
1841
- "default": "{}"
1842
- },
1843
- {
1844
- "kind": "method",
1845
- "name": "slottedCellChanged",
1846
- "privacy": "public"
1957
+ "description": "The multiselect editor class for grid-tabulator",
1958
+ "name": "MultiselectEditor",
1959
+ "members": [
1960
+ {
1961
+ "kind": "field",
1962
+ "name": "params",
1963
+ "type": {
1964
+ "text": "MultiselectEditorParams"
1965
+ }
1847
1966
  },
1848
1967
  {
1849
- "kind": "method",
1850
- "name": "deepClone",
1851
- "return": {
1852
- "type": {
1853
- "text": "Node"
1854
- }
1855
- },
1856
- "inheritedFrom": {
1857
- "name": "LifecycleMixin",
1858
- "module": "src/mixins/lifecycle/lifecycle.ts"
1968
+ "kind": "field",
1969
+ "name": "select",
1970
+ "type": {
1971
+ "text": "any"
1859
1972
  }
1860
1973
  },
1861
1974
  {
1862
1975
  "kind": "method",
1863
- "name": "cloneNode",
1864
- "return": {
1865
- "type": {
1866
- "text": "Node"
1867
- }
1868
- },
1976
+ "name": "init",
1869
1977
  "parameters": [
1870
1978
  {
1871
- "name": "deep",
1872
- "optional": true,
1979
+ "name": "params",
1873
1980
  "type": {
1874
- "text": "boolean"
1981
+ "text": "MultiselectEditorParams"
1875
1982
  }
1876
1983
  }
1877
1984
  ],
1878
- "inheritedFrom": {
1879
- "name": "LifecycleMixin",
1880
- "module": "src/mixins/lifecycle/lifecycle.ts"
1881
- }
1985
+ "description": "Initialize the editor with parameters"
1882
1986
  },
1883
1987
  {
1884
- "kind": "field",
1885
- "name": "shouldRunDisconnect",
1988
+ "kind": "method",
1989
+ "name": "getValues",
1886
1990
  "return": {
1887
1991
  "type": {
1888
- "text": ""
1992
+ "text": "(string | number)[]"
1889
1993
  }
1890
1994
  },
1891
- "readonly": true,
1892
- "inheritedFrom": {
1893
- "name": "LifecycleMixin",
1894
- "module": "src/mixins/lifecycle/lifecycle.ts"
1895
- }
1995
+ "description": "Get current values"
1896
1996
  },
1897
1997
  {
1898
- "kind": "field",
1899
- "name": "shouldRunConnect",
1900
- "return": {
1901
- "type": {
1902
- "text": ""
1903
- }
1904
- },
1905
- "readonly": true,
1906
- "inheritedFrom": {
1907
- "name": "LifecycleMixin",
1908
- "module": "src/mixins/lifecycle/lifecycle.ts"
1909
- }
1998
+ "kind": "method",
1999
+ "name": "focus",
2000
+ "description": "Set focus to the select"
1910
2001
  },
1911
2002
  {
1912
2003
  "kind": "method",
1913
- "name": "#_blockLifecycleDueToTokenChange",
2004
+ "name": "isSelected",
1914
2005
  "return": {
1915
2006
  "type": {
1916
2007
  "text": "boolean"
@@ -1918,16 +2009,31 @@
1918
2009
  },
1919
2010
  "parameters": [
1920
2011
  {
1921
- "name": "lifecycleType",
2012
+ "name": "value",
1922
2013
  "type": {
1923
- "text": "Lifecycletype"
2014
+ "text": "string | number"
1924
2015
  }
1925
2016
  }
1926
2017
  ],
1927
- "inheritedFrom": {
1928
- "name": "LifecycleMixin",
1929
- "module": "src/mixins/lifecycle/lifecycle.ts"
1930
- }
2018
+ "description": "Check if a value is selected"
2019
+ },
2020
+ {
2021
+ "kind": "method",
2022
+ "name": "handleKeyDown",
2023
+ "parameters": [
2024
+ {
2025
+ "name": "event",
2026
+ "type": {
2027
+ "text": "KeyboardEvent"
2028
+ }
2029
+ }
2030
+ ],
2031
+ "description": "Process key down events"
2032
+ },
2033
+ {
2034
+ "kind": "method",
2035
+ "name": "handleChange",
2036
+ "description": "Handle change event to save when selection changes"
1931
2037
  },
1932
2038
  {
1933
2039
  "kind": "field",
@@ -2041,73 +2147,94 @@
2041
2147
  }
2042
2148
  }
2043
2149
  ],
2044
- "mixins": [
2045
- {
2046
- "name": "LifecycleMixin",
2047
- "package": "@genesislcap/foundation-utils"
2048
- }
2049
- ],
2050
2150
  "superclass": {
2051
2151
  "name": "FoundationElement",
2052
2152
  "package": "@microsoft/fast-foundation"
2053
- },
2054
- "tagName": "grid-tabulator-column",
2055
- "customElement": true
2153
+ }
2154
+ },
2155
+ {
2156
+ "kind": "variable",
2157
+ "name": "multiselectEditorStyles",
2158
+ "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2159
+ "description": "Styles for the multiselect editor"
2160
+ },
2161
+ {
2162
+ "kind": "function",
2163
+ "name": "getMultiselectEditorTemplate",
2164
+ "parameters": [
2165
+ {
2166
+ "name": "prefix",
2167
+ "default": "'foundation'",
2168
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2169
+ }
2170
+ ],
2171
+ "description": "Get a Design System prefixed Select template.",
2172
+ "return": {
2173
+ "type": {
2174
+ "text": ""
2175
+ }
2176
+ }
2177
+ },
2178
+ {
2179
+ "kind": "variable",
2180
+ "name": "foundationMultiselectEditor",
2181
+ "description": "Definition for the multiselect editor component"
2056
2182
  }
2057
2183
  ],
2058
2184
  "exports": [
2059
2185
  {
2060
2186
  "kind": "js",
2061
- "name": "GridTabulatorColumn",
2187
+ "name": "MultiselectEditor",
2062
2188
  "declaration": {
2063
- "name": "GridTabulatorColumn",
2064
- "module": "src/column/column.ts"
2189
+ "name": "MultiselectEditor",
2190
+ "module": "src/cell-editors/multiselect.editor.ts"
2065
2191
  }
2066
2192
  },
2067
2193
  {
2068
- "kind": "custom-element-definition",
2069
- "name": "grid-tabulator-column",
2194
+ "kind": "js",
2195
+ "name": "multiselectEditorStyles",
2070
2196
  "declaration": {
2071
- "name": "GridTabulatorColumn",
2072
- "module": "src/column/column.ts"
2197
+ "name": "multiselectEditorStyles",
2198
+ "module": "src/cell-editors/multiselect.editor.ts"
2073
2199
  }
2074
- }
2075
- ]
2076
- },
2077
- {
2078
- "kind": "javascript-module",
2079
- "path": "src/column/index.ts",
2080
- "declarations": [],
2081
- "exports": [
2200
+ },
2082
2201
  {
2083
2202
  "kind": "js",
2084
- "name": "*",
2203
+ "name": "getMultiselectEditorTemplate",
2085
2204
  "declaration": {
2086
- "name": "*",
2087
- "package": "./column"
2205
+ "name": "getMultiselectEditorTemplate",
2206
+ "module": "src/cell-editors/multiselect.editor.ts"
2207
+ }
2208
+ },
2209
+ {
2210
+ "kind": "js",
2211
+ "name": "foundationMultiselectEditor",
2212
+ "declaration": {
2213
+ "name": "foundationMultiselectEditor",
2214
+ "module": "src/cell-editors/multiselect.editor.ts"
2088
2215
  }
2089
2216
  }
2090
2217
  ]
2091
2218
  },
2092
2219
  {
2093
2220
  "kind": "javascript-module",
2094
- "path": "src/cell-editors/date.editor.ts",
2221
+ "path": "src/cell-editors/number.editor.ts",
2095
2222
  "declarations": [
2096
2223
  {
2097
2224
  "kind": "class",
2098
- "description": "The date editor class for grid-tabulator",
2099
- "name": "DateEditor",
2225
+ "description": "The number editor class for grid-tabulator",
2226
+ "name": "NumberEditor",
2100
2227
  "members": [
2101
2228
  {
2102
2229
  "kind": "field",
2103
2230
  "name": "params",
2104
2231
  "type": {
2105
- "text": "DateEditorParams"
2232
+ "text": "NumberEditorParams"
2106
2233
  }
2107
2234
  },
2108
2235
  {
2109
2236
  "kind": "field",
2110
- "name": "dateField",
2237
+ "name": "numberField",
2111
2238
  "type": {
2112
2239
  "text": "any"
2113
2240
  }
@@ -2119,7 +2246,7 @@
2119
2246
  {
2120
2247
  "name": "params",
2121
2248
  "type": {
2122
- "text": "DateEditorParams"
2249
+ "text": "NumberEditorParams"
2123
2250
  }
2124
2251
  }
2125
2252
  ],
@@ -2130,11 +2257,6 @@
2130
2257
  "name": "getValue",
2131
2258
  "description": "Get current value"
2132
2259
  },
2133
- {
2134
- "kind": "method",
2135
- "name": "getFormattedValue",
2136
- "description": "Format value for display"
2137
- },
2138
2260
  {
2139
2261
  "kind": "method",
2140
2262
  "name": "focus",
@@ -2272,130 +2394,82 @@
2272
2394
  },
2273
2395
  {
2274
2396
  "kind": "variable",
2275
- "name": "dateEditorStyles",
2397
+ "name": "numberEditorStyles",
2276
2398
  "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2277
- "description": "Styles for the date editor"
2399
+ "description": "Styles for the number editor"
2278
2400
  },
2279
2401
  {
2280
2402
  "kind": "function",
2281
- "name": "getDateEditorTemplate",
2403
+ "name": "getNumberEditorTemplate",
2282
2404
  "parameters": [
2283
2405
  {
2284
2406
  "name": "prefix",
2285
- "default": "'foundation'",
2286
- "description": "The design system prefix to use. Defaults to 'foundation'."
2287
- }
2288
- ],
2289
- "description": "Get a Design System prefixed date field template.",
2290
- "return": {
2291
- "type": {
2292
- "text": ""
2293
- }
2294
- },
2295
- "privacy": "public"
2296
- },
2297
- {
2298
- "kind": "variable",
2299
- "name": "foundationDateEditor",
2300
- "description": "Definition for the date editor component"
2301
- }
2302
- ],
2303
- "exports": [
2304
- {
2305
- "kind": "js",
2306
- "name": "DateEditor",
2307
- "declaration": {
2308
- "name": "DateEditor",
2309
- "module": "src/cell-editors/date.editor.ts"
2310
- }
2311
- },
2312
- {
2313
- "kind": "js",
2314
- "name": "dateEditorStyles",
2315
- "declaration": {
2316
- "name": "dateEditorStyles",
2317
- "module": "src/cell-editors/date.editor.ts"
2318
- }
2319
- },
2320
- {
2321
- "kind": "js",
2322
- "name": "getDateEditorTemplate",
2323
- "declaration": {
2324
- "name": "getDateEditorTemplate",
2325
- "module": "src/cell-editors/date.editor.ts"
2326
- }
2327
- },
2328
- {
2329
- "kind": "js",
2330
- "name": "foundationDateEditor",
2331
- "declaration": {
2332
- "name": "foundationDateEditor",
2333
- "module": "src/cell-editors/date.editor.ts"
2334
- }
2335
- }
2336
- ]
2337
- },
2338
- {
2339
- "kind": "javascript-module",
2340
- "path": "src/cell-editors/index.ts",
2341
- "declarations": [],
2342
- "exports": [
2343
- {
2344
- "kind": "js",
2345
- "name": "*",
2346
- "declaration": {
2347
- "name": "*",
2348
- "package": "./date.editor"
2407
+ "default": "'foundation'",
2408
+ "description": "The design system prefix to use. Defaults to 'foundation'."
2409
+ }
2410
+ ],
2411
+ "description": "Get a Design System prefixed number field template.",
2412
+ "return": {
2413
+ "type": {
2414
+ "text": ""
2415
+ }
2349
2416
  }
2350
2417
  },
2418
+ {
2419
+ "kind": "variable",
2420
+ "name": "foundationNumberEditor",
2421
+ "description": "Definition for the number editor component"
2422
+ }
2423
+ ],
2424
+ "exports": [
2351
2425
  {
2352
2426
  "kind": "js",
2353
- "name": "*",
2427
+ "name": "NumberEditor",
2354
2428
  "declaration": {
2355
- "name": "*",
2356
- "package": "./number.editor"
2429
+ "name": "NumberEditor",
2430
+ "module": "src/cell-editors/number.editor.ts"
2357
2431
  }
2358
2432
  },
2359
2433
  {
2360
2434
  "kind": "js",
2361
- "name": "*",
2435
+ "name": "numberEditorStyles",
2362
2436
  "declaration": {
2363
- "name": "*",
2364
- "package": "./select.editor"
2437
+ "name": "numberEditorStyles",
2438
+ "module": "src/cell-editors/number.editor.ts"
2365
2439
  }
2366
2440
  },
2367
2441
  {
2368
2442
  "kind": "js",
2369
- "name": "*",
2443
+ "name": "getNumberEditorTemplate",
2370
2444
  "declaration": {
2371
- "name": "*",
2372
- "package": "./string.editor"
2445
+ "name": "getNumberEditorTemplate",
2446
+ "module": "src/cell-editors/number.editor.ts"
2373
2447
  }
2374
2448
  },
2375
2449
  {
2376
2450
  "kind": "js",
2377
- "name": "*",
2451
+ "name": "foundationNumberEditor",
2378
2452
  "declaration": {
2379
- "name": "*",
2380
- "package": "./multiselect.editor"
2453
+ "name": "foundationNumberEditor",
2454
+ "module": "src/cell-editors/number.editor.ts"
2381
2455
  }
2382
2456
  }
2383
2457
  ]
2384
2458
  },
2385
2459
  {
2386
2460
  "kind": "javascript-module",
2387
- "path": "src/cell-editors/multiselect.editor.ts",
2461
+ "path": "src/cell-editors/select.editor.ts",
2388
2462
  "declarations": [
2389
2463
  {
2390
2464
  "kind": "class",
2391
- "description": "The multiselect editor class for grid-tabulator",
2392
- "name": "MultiselectEditor",
2465
+ "description": "The select editor class for grid-tabulator",
2466
+ "name": "SelectEditor",
2393
2467
  "members": [
2394
2468
  {
2395
2469
  "kind": "field",
2396
2470
  "name": "params",
2397
2471
  "type": {
2398
- "text": "MultiselectEditorParams"
2472
+ "text": "SelectEditorParams"
2399
2473
  }
2400
2474
  },
2401
2475
  {
@@ -2412,7 +2486,7 @@
2412
2486
  {
2413
2487
  "name": "params",
2414
2488
  "type": {
2415
- "text": "MultiselectEditorParams"
2489
+ "text": "SelectEditorParams"
2416
2490
  }
2417
2491
  }
2418
2492
  ],
@@ -2420,37 +2494,14 @@
2420
2494
  },
2421
2495
  {
2422
2496
  "kind": "method",
2423
- "name": "getValues",
2424
- "return": {
2425
- "type": {
2426
- "text": "(string | number)[]"
2427
- }
2428
- },
2429
- "description": "Get current values"
2497
+ "name": "getValue",
2498
+ "description": "Get current value"
2430
2499
  },
2431
2500
  {
2432
2501
  "kind": "method",
2433
2502
  "name": "focus",
2434
2503
  "description": "Set focus to the select"
2435
2504
  },
2436
- {
2437
- "kind": "method",
2438
- "name": "isSelected",
2439
- "return": {
2440
- "type": {
2441
- "text": "boolean"
2442
- }
2443
- },
2444
- "parameters": [
2445
- {
2446
- "name": "value",
2447
- "type": {
2448
- "text": "string | number"
2449
- }
2450
- }
2451
- ],
2452
- "description": "Check if a value is selected"
2453
- },
2454
2505
  {
2455
2506
  "kind": "method",
2456
2507
  "name": "handleKeyDown",
@@ -2467,7 +2518,7 @@
2467
2518
  {
2468
2519
  "kind": "method",
2469
2520
  "name": "handleChange",
2470
- "description": "Handle change event to save when selection changes"
2521
+ "description": "Handle change event"
2471
2522
  },
2472
2523
  {
2473
2524
  "kind": "field",
@@ -2588,13 +2639,13 @@
2588
2639
  },
2589
2640
  {
2590
2641
  "kind": "variable",
2591
- "name": "multiselectEditorStyles",
2642
+ "name": "selectEditorStyles",
2592
2643
  "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2593
- "description": "Styles for the multiselect editor"
2644
+ "description": "Styles for the select editor"
2594
2645
  },
2595
2646
  {
2596
2647
  "kind": "function",
2597
- "name": "getMultiselectEditorTemplate",
2648
+ "name": "getSelectEditorTemplate",
2598
2649
  "parameters": [
2599
2650
  {
2600
2651
  "name": "prefix",
@@ -2607,68 +2658,69 @@
2607
2658
  "type": {
2608
2659
  "text": ""
2609
2660
  }
2610
- }
2661
+ },
2662
+ "privacy": "public"
2611
2663
  },
2612
2664
  {
2613
2665
  "kind": "variable",
2614
- "name": "foundationMultiselectEditor",
2615
- "description": "Definition for the multiselect editor component"
2666
+ "name": "foundationSelectEditor",
2667
+ "description": "Definition for the select editor component"
2616
2668
  }
2617
2669
  ],
2618
2670
  "exports": [
2619
2671
  {
2620
2672
  "kind": "js",
2621
- "name": "MultiselectEditor",
2673
+ "name": "SelectEditor",
2622
2674
  "declaration": {
2623
- "name": "MultiselectEditor",
2624
- "module": "src/cell-editors/multiselect.editor.ts"
2675
+ "name": "SelectEditor",
2676
+ "module": "src/cell-editors/select.editor.ts"
2625
2677
  }
2626
2678
  },
2627
2679
  {
2628
2680
  "kind": "js",
2629
- "name": "multiselectEditorStyles",
2681
+ "name": "selectEditorStyles",
2630
2682
  "declaration": {
2631
- "name": "multiselectEditorStyles",
2632
- "module": "src/cell-editors/multiselect.editor.ts"
2683
+ "name": "selectEditorStyles",
2684
+ "module": "src/cell-editors/select.editor.ts"
2633
2685
  }
2634
2686
  },
2635
2687
  {
2636
2688
  "kind": "js",
2637
- "name": "getMultiselectEditorTemplate",
2689
+ "name": "getSelectEditorTemplate",
2638
2690
  "declaration": {
2639
- "name": "getMultiselectEditorTemplate",
2640
- "module": "src/cell-editors/multiselect.editor.ts"
2691
+ "name": "getSelectEditorTemplate",
2692
+ "module": "src/cell-editors/select.editor.ts"
2641
2693
  }
2642
2694
  },
2643
2695
  {
2644
2696
  "kind": "js",
2645
- "name": "foundationMultiselectEditor",
2697
+ "name": "foundationSelectEditor",
2646
2698
  "declaration": {
2647
- "name": "foundationMultiselectEditor",
2648
- "module": "src/cell-editors/multiselect.editor.ts"
2699
+ "name": "foundationSelectEditor",
2700
+ "module": "src/cell-editors/select.editor.ts"
2649
2701
  }
2650
2702
  }
2651
2703
  ]
2652
2704
  },
2653
2705
  {
2654
2706
  "kind": "javascript-module",
2655
- "path": "src/cell-editors/number.editor.ts",
2707
+ "path": "src/cell-editors/string.editor.ts",
2656
2708
  "declarations": [
2657
2709
  {
2658
2710
  "kind": "class",
2659
- "description": "The number editor class for grid-tabulator",
2660
- "name": "NumberEditor",
2711
+ "description": "The string editor class for grid-tabulator",
2712
+ "name": "StringEditor",
2661
2713
  "members": [
2662
2714
  {
2663
2715
  "kind": "field",
2664
2716
  "name": "params",
2665
2717
  "type": {
2666
- "text": "NumberEditorParams"
2718
+ "text": "StringEditorParams"
2667
2719
  }
2668
2720
  },
2669
2721
  {
2670
2722
  "kind": "field",
2671
- "name": "numberField",
2723
+ "name": "textField",
2672
2724
  "type": {
2673
2725
  "text": "any"
2674
2726
  }
@@ -2680,7 +2732,7 @@
2680
2732
  {
2681
2733
  "name": "params",
2682
2734
  "type": {
2683
- "text": "NumberEditorParams"
2735
+ "text": "StringEditorParams"
2684
2736
  }
2685
2737
  }
2686
2738
  ],
@@ -2828,13 +2880,13 @@
2828
2880
  },
2829
2881
  {
2830
2882
  "kind": "variable",
2831
- "name": "numberEditorStyles",
2883
+ "name": "stringEditorStyles",
2832
2884
  "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
2833
- "description": "Styles for the number editor"
2885
+ "description": "Styles for the string editor"
2834
2886
  },
2835
2887
  {
2836
2888
  "kind": "function",
2837
- "name": "getNumberEditorTemplate",
2889
+ "name": "getStringEditorTemplate",
2838
2890
  "parameters": [
2839
2891
  {
2840
2892
  "name": "prefix",
@@ -2842,7 +2894,7 @@
2842
2894
  "description": "The design system prefix to use. Defaults to 'foundation'."
2843
2895
  }
2844
2896
  ],
2845
- "description": "Get a Design System prefixed number field template.",
2897
+ "description": "Get a Design System prefixed text field template.",
2846
2898
  "return": {
2847
2899
  "type": {
2848
2900
  "text": ""
@@ -2851,108 +2903,158 @@
2851
2903
  },
2852
2904
  {
2853
2905
  "kind": "variable",
2854
- "name": "foundationNumberEditor",
2855
- "description": "Definition for the number editor component"
2906
+ "name": "foundationStringEditor",
2907
+ "description": "Definition for the string editor component"
2856
2908
  }
2857
2909
  ],
2858
2910
  "exports": [
2859
2911
  {
2860
2912
  "kind": "js",
2861
- "name": "NumberEditor",
2913
+ "name": "StringEditor",
2862
2914
  "declaration": {
2863
- "name": "NumberEditor",
2864
- "module": "src/cell-editors/number.editor.ts"
2915
+ "name": "StringEditor",
2916
+ "module": "src/cell-editors/string.editor.ts"
2865
2917
  }
2866
2918
  },
2867
2919
  {
2868
2920
  "kind": "js",
2869
- "name": "numberEditorStyles",
2921
+ "name": "stringEditorStyles",
2870
2922
  "declaration": {
2871
- "name": "numberEditorStyles",
2872
- "module": "src/cell-editors/number.editor.ts"
2923
+ "name": "stringEditorStyles",
2924
+ "module": "src/cell-editors/string.editor.ts"
2873
2925
  }
2874
2926
  },
2875
2927
  {
2876
2928
  "kind": "js",
2877
- "name": "getNumberEditorTemplate",
2929
+ "name": "getStringEditorTemplate",
2878
2930
  "declaration": {
2879
- "name": "getNumberEditorTemplate",
2880
- "module": "src/cell-editors/number.editor.ts"
2931
+ "name": "getStringEditorTemplate",
2932
+ "module": "src/cell-editors/string.editor.ts"
2881
2933
  }
2882
2934
  },
2883
2935
  {
2884
2936
  "kind": "js",
2885
- "name": "foundationNumberEditor",
2937
+ "name": "foundationStringEditor",
2886
2938
  "declaration": {
2887
- "name": "foundationNumberEditor",
2888
- "module": "src/cell-editors/number.editor.ts"
2939
+ "name": "foundationStringEditor",
2940
+ "module": "src/cell-editors/string.editor.ts"
2889
2941
  }
2890
2942
  }
2891
2943
  ]
2892
2944
  },
2893
2945
  {
2894
2946
  "kind": "javascript-module",
2895
- "path": "src/cell-editors/select.editor.ts",
2947
+ "path": "src/column/column.ts",
2896
2948
  "declarations": [
2897
2949
  {
2898
2950
  "kind": "class",
2899
- "description": "The select editor class for grid-tabulator",
2900
- "name": "SelectEditor",
2951
+ "description": "The GridTabulator Column element.",
2952
+ "name": "GridTabulatorColumn",
2901
2953
  "members": [
2902
2954
  {
2903
2955
  "kind": "field",
2904
- "name": "params",
2956
+ "name": "slottedCell",
2905
2957
  "type": {
2906
- "text": "SelectEditorParams"
2907
- }
2958
+ "text": "HTMLElement[]"
2959
+ },
2960
+ "privacy": "public"
2908
2961
  },
2909
2962
  {
2910
2963
  "kind": "field",
2911
- "name": "select",
2964
+ "name": "definition",
2912
2965
  "type": {
2913
- "text": "any"
2966
+ "text": "Partial<ColumnDefinition>"
2967
+ },
2968
+ "default": "{}"
2969
+ },
2970
+ {
2971
+ "kind": "method",
2972
+ "name": "slottedCellChanged",
2973
+ "privacy": "public"
2974
+ },
2975
+ {
2976
+ "kind": "method",
2977
+ "name": "deepClone",
2978
+ "return": {
2979
+ "type": {
2980
+ "text": "Node"
2981
+ }
2982
+ },
2983
+ "inheritedFrom": {
2984
+ "name": "LifecycleMixin",
2985
+ "module": "src/mixins/lifecycle/lifecycle.ts"
2914
2986
  }
2915
2987
  },
2916
2988
  {
2917
2989
  "kind": "method",
2918
- "name": "init",
2990
+ "name": "cloneNode",
2991
+ "return": {
2992
+ "type": {
2993
+ "text": "Node"
2994
+ }
2995
+ },
2919
2996
  "parameters": [
2920
2997
  {
2921
- "name": "params",
2998
+ "name": "deep",
2999
+ "optional": true,
2922
3000
  "type": {
2923
- "text": "SelectEditorParams"
3001
+ "text": "boolean"
2924
3002
  }
2925
3003
  }
2926
3004
  ],
2927
- "description": "Initialize the editor with parameters"
3005
+ "inheritedFrom": {
3006
+ "name": "LifecycleMixin",
3007
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3008
+ }
2928
3009
  },
2929
3010
  {
2930
- "kind": "method",
2931
- "name": "getValue",
2932
- "description": "Get current value"
3011
+ "kind": "field",
3012
+ "name": "shouldRunDisconnect",
3013
+ "return": {
3014
+ "type": {
3015
+ "text": ""
3016
+ }
3017
+ },
3018
+ "readonly": true,
3019
+ "inheritedFrom": {
3020
+ "name": "LifecycleMixin",
3021
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3022
+ }
2933
3023
  },
2934
3024
  {
2935
- "kind": "method",
2936
- "name": "focus",
2937
- "description": "Set focus to the select"
3025
+ "kind": "field",
3026
+ "name": "shouldRunConnect",
3027
+ "return": {
3028
+ "type": {
3029
+ "text": ""
3030
+ }
3031
+ },
3032
+ "readonly": true,
3033
+ "inheritedFrom": {
3034
+ "name": "LifecycleMixin",
3035
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3036
+ }
2938
3037
  },
2939
3038
  {
2940
3039
  "kind": "method",
2941
- "name": "handleKeyDown",
3040
+ "name": "#_blockLifecycleDueToTokenChange",
3041
+ "return": {
3042
+ "type": {
3043
+ "text": "boolean"
3044
+ }
3045
+ },
2942
3046
  "parameters": [
2943
3047
  {
2944
- "name": "event",
3048
+ "name": "lifecycleType",
2945
3049
  "type": {
2946
- "text": "KeyboardEvent"
3050
+ "text": "Lifecycletype"
2947
3051
  }
2948
3052
  }
2949
3053
  ],
2950
- "description": "Process key down events"
2951
- },
2952
- {
2953
- "kind": "method",
2954
- "name": "handleChange",
2955
- "description": "Handle change event"
3054
+ "inheritedFrom": {
3055
+ "name": "LifecycleMixin",
3056
+ "module": "src/mixins/lifecycle/lifecycle.ts"
3057
+ }
2956
3058
  },
2957
3059
  {
2958
3060
  "kind": "field",
@@ -3066,550 +3168,565 @@
3066
3168
  }
3067
3169
  }
3068
3170
  ],
3171
+ "mixins": [
3172
+ {
3173
+ "name": "LifecycleMixin",
3174
+ "package": "@genesislcap/foundation-utils"
3175
+ }
3176
+ ],
3069
3177
  "superclass": {
3070
3178
  "name": "FoundationElement",
3071
3179
  "package": "@microsoft/fast-foundation"
3180
+ },
3181
+ "tagName": "grid-tabulator-column",
3182
+ "customElement": true
3183
+ }
3184
+ ],
3185
+ "exports": [
3186
+ {
3187
+ "kind": "js",
3188
+ "name": "GridTabulatorColumn",
3189
+ "declaration": {
3190
+ "name": "GridTabulatorColumn",
3191
+ "module": "src/column/column.ts"
3072
3192
  }
3073
3193
  },
3074
3194
  {
3075
- "kind": "variable",
3076
- "name": "selectEditorStyles",
3077
- "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
3078
- "description": "Styles for the select editor"
3079
- },
3195
+ "kind": "custom-element-definition",
3196
+ "name": "grid-tabulator-column",
3197
+ "declaration": {
3198
+ "name": "GridTabulatorColumn",
3199
+ "module": "src/column/column.ts"
3200
+ }
3201
+ }
3202
+ ]
3203
+ },
3204
+ {
3205
+ "kind": "javascript-module",
3206
+ "path": "src/column/index.ts",
3207
+ "declarations": [],
3208
+ "exports": [
3209
+ {
3210
+ "kind": "js",
3211
+ "name": "*",
3212
+ "declaration": {
3213
+ "name": "*",
3214
+ "package": "./column"
3215
+ }
3216
+ }
3217
+ ]
3218
+ },
3219
+ {
3220
+ "kind": "javascript-module",
3221
+ "path": "src/cell-formatters/action.formatter.ts",
3222
+ "declarations": [
3080
3223
  {
3081
3224
  "kind": "function",
3082
- "name": "getSelectEditorTemplate",
3225
+ "name": "actionFormatter",
3226
+ "return": {
3227
+ "type": {
3228
+ "text": ""
3229
+ }
3230
+ },
3083
3231
  "parameters": [
3084
3232
  {
3085
- "name": "prefix",
3086
- "default": "'foundation'",
3087
- "description": "The design system prefix to use. Defaults to 'foundation'."
3233
+ "name": "cell",
3234
+ "type": {
3235
+ "text": "any"
3236
+ },
3237
+ "description": "The cell component provided by Tabulator"
3238
+ },
3239
+ {
3240
+ "name": "formatterParams",
3241
+ "default": "{}",
3242
+ "type": {
3243
+ "text": "ActionFormatterParams<T>"
3244
+ },
3245
+ "description": "Action formatter parameters"
3088
3246
  }
3089
3247
  ],
3090
- "description": "Get a Design System prefixed Select template.",
3248
+ "description": "Formatter that displays an action button in the cell.\nStyled to match grid-pro action renderer.",
3249
+ "privacy": "public"
3250
+ }
3251
+ ],
3252
+ "exports": [
3253
+ {
3254
+ "kind": "js",
3255
+ "name": "actionFormatter",
3256
+ "declaration": {
3257
+ "name": "actionFormatter",
3258
+ "module": "src/cell-formatters/action.formatter.ts"
3259
+ }
3260
+ }
3261
+ ]
3262
+ },
3263
+ {
3264
+ "kind": "javascript-module",
3265
+ "path": "src/cell-formatters/actions-menu.formatter.ts",
3266
+ "declarations": [
3267
+ {
3268
+ "kind": "function",
3269
+ "name": "actionsMenuFormatter",
3270
+ "return": {
3271
+ "type": {
3272
+ "text": ""
3273
+ }
3274
+ },
3275
+ "parameters": [
3276
+ {
3277
+ "name": "cell",
3278
+ "type": {
3279
+ "text": "any"
3280
+ },
3281
+ "description": "The cell component provided by Tabulator"
3282
+ },
3283
+ {
3284
+ "name": "formatterParams",
3285
+ "default": "{}",
3286
+ "type": {
3287
+ "text": "ActionsMenuFormatterParams<T>"
3288
+ },
3289
+ "description": "Actions menu formatter parameters"
3290
+ }
3291
+ ],
3292
+ "description": "Formatter that displays a dropdown menu of actions in the cell.\nStyled to match grid-pro actions-menu renderer.",
3293
+ "privacy": "public"
3294
+ }
3295
+ ],
3296
+ "exports": [
3297
+ {
3298
+ "kind": "js",
3299
+ "name": "actionsMenuFormatter",
3300
+ "declaration": {
3301
+ "name": "actionsMenuFormatter",
3302
+ "module": "src/cell-formatters/actions-menu.formatter.ts"
3303
+ }
3304
+ }
3305
+ ]
3306
+ },
3307
+ {
3308
+ "kind": "javascript-module",
3309
+ "path": "src/cell-formatters/boolean.formatter.ts",
3310
+ "declarations": [
3311
+ {
3312
+ "kind": "function",
3313
+ "name": "booleanFormatter",
3314
+ "return": {
3315
+ "type": {
3316
+ "text": ""
3317
+ }
3318
+ },
3319
+ "parameters": [
3320
+ {
3321
+ "name": "cell",
3322
+ "type": {
3323
+ "text": "any"
3324
+ },
3325
+ "description": "The cell component provided by Tabulator"
3326
+ },
3327
+ {
3328
+ "name": "formatterParams",
3329
+ "default": "{}",
3330
+ "type": {
3331
+ "text": "BooleanFormatterParams<T>"
3332
+ },
3333
+ "description": "Boolean formatter parameters"
3334
+ }
3335
+ ],
3336
+ "description": "Formatter that displays boolean values using a checkbox component.\nStyled to match grid-pro boolean renderer.",
3337
+ "privacy": "public"
3338
+ }
3339
+ ],
3340
+ "exports": [
3341
+ {
3342
+ "kind": "js",
3343
+ "name": "booleanFormatter",
3344
+ "declaration": {
3345
+ "name": "booleanFormatter",
3346
+ "module": "src/cell-formatters/boolean.formatter.ts"
3347
+ }
3348
+ }
3349
+ ]
3350
+ },
3351
+ {
3352
+ "kind": "javascript-module",
3353
+ "path": "src/cell-formatters/constants.ts",
3354
+ "declarations": [],
3355
+ "exports": []
3356
+ },
3357
+ {
3358
+ "kind": "javascript-module",
3359
+ "path": "src/cell-formatters/editable.formatter.ts",
3360
+ "declarations": [
3361
+ {
3362
+ "kind": "function",
3363
+ "name": "editableFormatter",
3091
3364
  "return": {
3092
3365
  "type": {
3093
3366
  "text": ""
3094
3367
  }
3095
3368
  },
3369
+ "parameters": [
3370
+ {
3371
+ "name": "cell",
3372
+ "type": {
3373
+ "text": "any"
3374
+ },
3375
+ "description": "The cell component provided by Tabulator"
3376
+ },
3377
+ {
3378
+ "name": "formatterParams",
3379
+ "default": "{}",
3380
+ "type": {
3381
+ "text": "EditableFormatterParams<T>"
3382
+ },
3383
+ "description": "Editable formatter parameters"
3384
+ }
3385
+ ],
3386
+ "description": "Formatter that displays an editable cell with validation state",
3096
3387
  "privacy": "public"
3388
+ }
3389
+ ],
3390
+ "exports": [
3391
+ {
3392
+ "kind": "js",
3393
+ "name": "editableFormatter",
3394
+ "declaration": {
3395
+ "name": "editableFormatter",
3396
+ "module": "src/cell-formatters/editable.formatter.ts"
3397
+ }
3398
+ }
3399
+ ]
3400
+ },
3401
+ {
3402
+ "kind": "javascript-module",
3403
+ "path": "src/cell-formatters/index.ts",
3404
+ "declarations": [
3405
+ {
3406
+ "kind": "variable",
3407
+ "name": "formatters",
3408
+ "type": {
3409
+ "text": "object"
3410
+ },
3411
+ "default": "{\n action: actionFormatter,\n actionsMenu: actionsMenuFormatter,\n boolean: booleanFormatter,\n editable: editableFormatter,\n select: selectFormatter,\n text: textFormatter,\n}",
3412
+ "description": "Zero formatters for Tabulator grid"
3413
+ }
3414
+ ],
3415
+ "exports": [
3416
+ {
3417
+ "kind": "js",
3418
+ "name": "*",
3419
+ "declaration": {
3420
+ "name": "*",
3421
+ "package": "./constants"
3422
+ }
3097
3423
  },
3098
3424
  {
3099
- "kind": "variable",
3100
- "name": "foundationSelectEditor",
3101
- "description": "Definition for the select editor component"
3102
- }
3103
- ],
3104
- "exports": [
3425
+ "kind": "js",
3426
+ "name": "ActionFormatterParams",
3427
+ "declaration": {
3428
+ "name": "ActionFormatterParams",
3429
+ "module": "src/cell-formatters/index.ts"
3430
+ }
3431
+ },
3105
3432
  {
3106
3433
  "kind": "js",
3107
- "name": "SelectEditor",
3434
+ "name": "actionFormatter",
3108
3435
  "declaration": {
3109
- "name": "SelectEditor",
3110
- "module": "src/cell-editors/select.editor.ts"
3436
+ "name": "actionFormatter",
3437
+ "module": "src/cell-formatters/index.ts"
3111
3438
  }
3112
3439
  },
3113
3440
  {
3114
3441
  "kind": "js",
3115
- "name": "selectEditorStyles",
3442
+ "name": "ActionsMenuFormatterParams",
3116
3443
  "declaration": {
3117
- "name": "selectEditorStyles",
3118
- "module": "src/cell-editors/select.editor.ts"
3444
+ "name": "ActionsMenuFormatterParams",
3445
+ "module": "src/cell-formatters/index.ts"
3119
3446
  }
3120
3447
  },
3121
3448
  {
3122
3449
  "kind": "js",
3123
- "name": "getSelectEditorTemplate",
3450
+ "name": "actionsMenuFormatter",
3124
3451
  "declaration": {
3125
- "name": "getSelectEditorTemplate",
3126
- "module": "src/cell-editors/select.editor.ts"
3452
+ "name": "actionsMenuFormatter",
3453
+ "module": "src/cell-formatters/index.ts"
3127
3454
  }
3128
3455
  },
3129
3456
  {
3130
3457
  "kind": "js",
3131
- "name": "foundationSelectEditor",
3458
+ "name": "BooleanFormatterParams",
3132
3459
  "declaration": {
3133
- "name": "foundationSelectEditor",
3134
- "module": "src/cell-editors/select.editor.ts"
3460
+ "name": "BooleanFormatterParams",
3461
+ "module": "src/cell-formatters/index.ts"
3135
3462
  }
3136
- }
3137
- ]
3138
- },
3139
- {
3140
- "kind": "javascript-module",
3141
- "path": "src/cell-editors/string.editor.ts",
3142
- "declarations": [
3463
+ },
3143
3464
  {
3144
- "kind": "class",
3145
- "description": "The string editor class for grid-tabulator",
3146
- "name": "StringEditor",
3147
- "members": [
3148
- {
3149
- "kind": "field",
3150
- "name": "params",
3151
- "type": {
3152
- "text": "StringEditorParams"
3153
- }
3154
- },
3155
- {
3156
- "kind": "field",
3157
- "name": "textField",
3158
- "type": {
3159
- "text": "any"
3160
- }
3161
- },
3162
- {
3163
- "kind": "method",
3164
- "name": "init",
3165
- "parameters": [
3166
- {
3167
- "name": "params",
3168
- "type": {
3169
- "text": "StringEditorParams"
3170
- }
3171
- }
3172
- ],
3173
- "description": "Initialize the editor with parameters"
3174
- },
3175
- {
3176
- "kind": "method",
3177
- "name": "getValue",
3178
- "description": "Get current value"
3179
- },
3180
- {
3181
- "kind": "method",
3182
- "name": "focus",
3183
- "description": "Set focus to the input"
3184
- },
3185
- {
3186
- "kind": "method",
3187
- "name": "handleKeyDown",
3188
- "parameters": [
3189
- {
3190
- "name": "event",
3191
- "type": {
3192
- "text": "KeyboardEvent"
3193
- }
3194
- }
3195
- ],
3196
- "description": "Process key down events"
3197
- },
3198
- {
3199
- "kind": "field",
3200
- "name": "_presentation",
3201
- "type": {
3202
- "text": "ComponentPresentation | null | undefined"
3203
- },
3204
- "privacy": "private",
3205
- "default": "void 0",
3206
- "inheritedFrom": {
3207
- "name": "FoundationElement",
3208
- "module": "src/foundation-element/foundation-element.ts"
3209
- }
3210
- },
3211
- {
3212
- "kind": "field",
3213
- "name": "$presentation",
3214
- "type": {
3215
- "text": "ComponentPresentation | null"
3216
- },
3217
- "privacy": "public",
3218
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3219
- "inheritedFrom": {
3220
- "name": "FoundationElement",
3221
- "module": "src/foundation-element/foundation-element.ts"
3222
- }
3223
- },
3224
- {
3225
- "kind": "field",
3226
- "name": "template",
3227
- "type": {
3228
- "text": "ElementViewTemplate | void | null"
3229
- },
3230
- "privacy": "public",
3231
- "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.",
3232
- "inheritedFrom": {
3233
- "name": "FoundationElement",
3234
- "module": "src/foundation-element/foundation-element.ts"
3235
- }
3236
- },
3237
- {
3238
- "kind": "method",
3239
- "name": "templateChanged",
3240
- "privacy": "protected",
3241
- "return": {
3242
- "type": {
3243
- "text": "void"
3244
- }
3245
- },
3246
- "inheritedFrom": {
3247
- "name": "FoundationElement",
3248
- "module": "src/foundation-element/foundation-element.ts"
3249
- }
3250
- },
3251
- {
3252
- "kind": "field",
3253
- "name": "styles",
3254
- "type": {
3255
- "text": "ElementStyles | void | null"
3256
- },
3257
- "privacy": "public",
3258
- "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.",
3259
- "inheritedFrom": {
3260
- "name": "FoundationElement",
3261
- "module": "src/foundation-element/foundation-element.ts"
3262
- }
3263
- },
3264
- {
3265
- "kind": "method",
3266
- "name": "stylesChanged",
3267
- "privacy": "protected",
3268
- "return": {
3269
- "type": {
3270
- "text": "void"
3271
- }
3272
- },
3273
- "inheritedFrom": {
3274
- "name": "FoundationElement",
3275
- "module": "src/foundation-element/foundation-element.ts"
3276
- }
3277
- },
3278
- {
3279
- "kind": "method",
3280
- "name": "compose",
3281
- "privacy": "public",
3282
- "static": true,
3283
- "return": {
3284
- "type": {
3285
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3286
- }
3287
- },
3288
- "parameters": [
3289
- {
3290
- "name": "this",
3291
- "type": {
3292
- "text": "K"
3293
- }
3294
- },
3295
- {
3296
- "name": "elementDefinition",
3297
- "type": {
3298
- "text": "T"
3299
- },
3300
- "description": "The definition of the element to create the registry\nfunction for."
3301
- }
3302
- ],
3303
- "description": "Defines an element registry function with a set of element definition defaults.",
3304
- "inheritedFrom": {
3305
- "name": "FoundationElement",
3306
- "module": "src/foundation-element/foundation-element.ts"
3307
- }
3308
- }
3309
- ],
3310
- "superclass": {
3311
- "name": "FoundationElement",
3312
- "package": "@microsoft/fast-foundation"
3465
+ "kind": "js",
3466
+ "name": "booleanFormatter",
3467
+ "declaration": {
3468
+ "name": "booleanFormatter",
3469
+ "module": "src/cell-formatters/index.ts"
3313
3470
  }
3314
3471
  },
3315
3472
  {
3316
- "kind": "variable",
3317
- "name": "stringEditorStyles",
3318
- "default": "css`\n :host {\n display: block;\n width: 100%;\n height: 100%;\n }\n`",
3319
- "description": "Styles for the string editor"
3473
+ "kind": "js",
3474
+ "name": "EditableFormatterParams",
3475
+ "declaration": {
3476
+ "name": "EditableFormatterParams",
3477
+ "module": "src/cell-formatters/index.ts"
3478
+ }
3320
3479
  },
3321
3480
  {
3322
- "kind": "function",
3323
- "name": "getStringEditorTemplate",
3324
- "parameters": [
3325
- {
3326
- "name": "prefix",
3327
- "default": "'foundation'",
3328
- "description": "The design system prefix to use. Defaults to 'foundation'."
3329
- }
3330
- ],
3331
- "description": "Get a Design System prefixed text field template.",
3332
- "return": {
3333
- "type": {
3334
- "text": ""
3335
- }
3481
+ "kind": "js",
3482
+ "name": "editableFormatter",
3483
+ "declaration": {
3484
+ "name": "editableFormatter",
3485
+ "module": "src/cell-formatters/index.ts"
3336
3486
  }
3337
3487
  },
3338
3488
  {
3339
- "kind": "variable",
3340
- "name": "foundationStringEditor",
3341
- "description": "Definition for the string editor component"
3342
- }
3343
- ],
3344
- "exports": [
3489
+ "kind": "js",
3490
+ "name": "SelectFormatterParams",
3491
+ "declaration": {
3492
+ "name": "SelectFormatterParams",
3493
+ "module": "src/cell-formatters/index.ts"
3494
+ }
3495
+ },
3345
3496
  {
3346
3497
  "kind": "js",
3347
- "name": "StringEditor",
3498
+ "name": "selectFormatter",
3348
3499
  "declaration": {
3349
- "name": "StringEditor",
3350
- "module": "src/cell-editors/string.editor.ts"
3500
+ "name": "selectFormatter",
3501
+ "module": "src/cell-formatters/index.ts"
3351
3502
  }
3352
3503
  },
3353
3504
  {
3354
3505
  "kind": "js",
3355
- "name": "stringEditorStyles",
3506
+ "name": "TextFormatterParams",
3356
3507
  "declaration": {
3357
- "name": "stringEditorStyles",
3358
- "module": "src/cell-editors/string.editor.ts"
3508
+ "name": "TextFormatterParams",
3509
+ "module": "src/cell-formatters/index.ts"
3359
3510
  }
3360
3511
  },
3361
3512
  {
3362
3513
  "kind": "js",
3363
- "name": "getStringEditorTemplate",
3514
+ "name": "textFormatter",
3364
3515
  "declaration": {
3365
- "name": "getStringEditorTemplate",
3366
- "module": "src/cell-editors/string.editor.ts"
3516
+ "name": "textFormatter",
3517
+ "module": "src/cell-formatters/index.ts"
3367
3518
  }
3368
3519
  },
3369
3520
  {
3370
3521
  "kind": "js",
3371
- "name": "foundationStringEditor",
3522
+ "name": "formatters",
3372
3523
  "declaration": {
3373
- "name": "foundationStringEditor",
3374
- "module": "src/cell-editors/string.editor.ts"
3524
+ "name": "formatters",
3525
+ "module": "src/cell-formatters/index.ts"
3375
3526
  }
3376
3527
  }
3377
3528
  ]
3378
3529
  },
3379
3530
  {
3380
3531
  "kind": "javascript-module",
3381
- "path": "src/cell/cell.ts",
3532
+ "path": "src/cell-formatters/select.formatter.ts",
3382
3533
  "declarations": [
3383
3534
  {
3384
- "kind": "class",
3385
- "description": "The GridTabulator Cell element.",
3386
- "name": "GridTabulatorCell",
3387
- "members": [
3388
- {
3389
- "kind": "field",
3390
- "name": "renderer",
3391
- "type": {
3392
- "text": "CellRendererFunc"
3393
- },
3394
- "privacy": "public"
3395
- },
3396
- {
3397
- "kind": "field",
3398
- "name": "rendererParams",
3399
- "type": {
3400
- "text": "CellRendererParams"
3401
- },
3402
- "privacy": "public"
3403
- },
3404
- {
3405
- "kind": "field",
3406
- "name": "slottedRenderer",
3407
- "type": {
3408
- "text": "HTMLElement[]"
3409
- },
3410
- "privacy": "public"
3411
- },
3412
- {
3413
- "kind": "method",
3414
- "name": "init",
3415
- "privacy": "public",
3416
- "parameters": [
3417
- {
3418
- "name": "params",
3419
- "type": {
3420
- "text": "CellRendererParams"
3421
- }
3422
- }
3423
- ]
3424
- },
3425
- {
3426
- "kind": "method",
3427
- "name": "getElement",
3428
- "privacy": "public",
3429
- "return": {
3430
- "type": {
3431
- "text": "HTMLElement"
3432
- }
3433
- }
3434
- },
3435
- {
3436
- "kind": "method",
3437
- "name": "destroy",
3438
- "privacy": "public"
3439
- },
3440
- {
3441
- "kind": "method",
3442
- "name": "refresh",
3443
- "privacy": "public",
3444
- "return": {
3445
- "type": {
3446
- "text": "boolean"
3447
- }
3448
- },
3449
- "parameters": [
3450
- {
3451
- "name": "params",
3452
- "type": {
3453
- "text": "CellRendererParams"
3454
- }
3455
- }
3456
- ]
3457
- },
3458
- {
3459
- "kind": "method",
3460
- "name": "slottedRendererChanged",
3461
- "privacy": "public"
3462
- },
3463
- {
3464
- "kind": "field",
3465
- "name": "_presentation",
3466
- "type": {
3467
- "text": "ComponentPresentation | null | undefined"
3468
- },
3469
- "privacy": "private",
3470
- "default": "void 0",
3471
- "inheritedFrom": {
3472
- "name": "FoundationElement",
3473
- "module": "src/foundation-element/foundation-element.ts"
3474
- }
3475
- },
3476
- {
3477
- "kind": "field",
3478
- "name": "$presentation",
3479
- "type": {
3480
- "text": "ComponentPresentation | null"
3481
- },
3482
- "privacy": "public",
3483
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
3484
- "inheritedFrom": {
3485
- "name": "FoundationElement",
3486
- "module": "src/foundation-element/foundation-element.ts"
3487
- }
3488
- },
3535
+ "kind": "function",
3536
+ "name": "selectFormatter",
3537
+ "return": {
3538
+ "type": {
3539
+ "text": ""
3540
+ }
3541
+ },
3542
+ "parameters": [
3489
3543
  {
3490
- "kind": "field",
3491
- "name": "template",
3544
+ "name": "cell",
3492
3545
  "type": {
3493
- "text": "ElementViewTemplate | void | null"
3494
- },
3495
- "privacy": "public",
3496
- "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.",
3497
- "inheritedFrom": {
3498
- "name": "FoundationElement",
3499
- "module": "src/foundation-element/foundation-element.ts"
3500
- }
3501
- },
3502
- {
3503
- "kind": "method",
3504
- "name": "templateChanged",
3505
- "privacy": "protected",
3506
- "return": {
3507
- "type": {
3508
- "text": "void"
3509
- }
3546
+ "text": "any"
3510
3547
  },
3511
- "inheritedFrom": {
3512
- "name": "FoundationElement",
3513
- "module": "src/foundation-element/foundation-element.ts"
3514
- }
3548
+ "description": "The cell component provided by Tabulator"
3515
3549
  },
3516
3550
  {
3517
- "kind": "field",
3518
- "name": "styles",
3551
+ "name": "formatterParams",
3519
3552
  "type": {
3520
- "text": "ElementStyles | void | null"
3521
- },
3522
- "privacy": "public",
3523
- "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.",
3524
- "inheritedFrom": {
3525
- "name": "FoundationElement",
3526
- "module": "src/foundation-element/foundation-element.ts"
3527
- }
3528
- },
3529
- {
3530
- "kind": "method",
3531
- "name": "stylesChanged",
3532
- "privacy": "protected",
3533
- "return": {
3534
- "type": {
3535
- "text": "void"
3536
- }
3537
- },
3538
- "inheritedFrom": {
3539
- "name": "FoundationElement",
3540
- "module": "src/foundation-element/foundation-element.ts"
3541
- }
3542
- },
3543
- {
3544
- "kind": "method",
3545
- "name": "compose",
3546
- "privacy": "public",
3547
- "static": true,
3548
- "return": {
3549
- "type": {
3550
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
3551
- }
3553
+ "text": "SelectFormatterParams<T>"
3552
3554
  },
3553
- "parameters": [
3554
- {
3555
- "name": "this",
3556
- "type": {
3557
- "text": "K"
3558
- }
3559
- },
3560
- {
3561
- "name": "elementDefinition",
3562
- "type": {
3563
- "text": "T"
3564
- },
3565
- "description": "The definition of the element to create the registry\nfunction for."
3566
- }
3567
- ],
3568
- "description": "Defines an element registry function with a set of element definition defaults.",
3569
- "inheritedFrom": {
3570
- "name": "FoundationElement",
3571
- "module": "src/foundation-element/foundation-element.ts"
3572
- }
3555
+ "description": "Select formatter parameters"
3556
+ }
3557
+ ],
3558
+ "description": "Formatter that displays a select component with options.\nReturns a wrapped div containing the select, similar to boolean.formatter.",
3559
+ "privacy": "public"
3560
+ }
3561
+ ],
3562
+ "exports": [
3563
+ {
3564
+ "kind": "js",
3565
+ "name": "selectFormatter",
3566
+ "declaration": {
3567
+ "name": "selectFormatter",
3568
+ "module": "src/cell-formatters/select.formatter.ts"
3569
+ }
3570
+ }
3571
+ ]
3572
+ },
3573
+ {
3574
+ "kind": "javascript-module",
3575
+ "path": "src/cell-formatters/text.formatter.ts",
3576
+ "declarations": [
3577
+ {
3578
+ "kind": "function",
3579
+ "name": "textFormatter",
3580
+ "return": {
3581
+ "type": {
3582
+ "text": ""
3583
+ }
3584
+ },
3585
+ "parameters": [
3586
+ {
3587
+ "name": "cell",
3588
+ "type": {
3589
+ "text": "any"
3590
+ },
3591
+ "description": "The cell component provided by Tabulator"
3592
+ },
3593
+ {
3594
+ "name": "formatterParams",
3595
+ "default": "{}",
3596
+ "type": {
3597
+ "text": "TextFormatterParams<T>"
3598
+ },
3599
+ "description": "Text formatter parameters"
3573
3600
  }
3574
3601
  ],
3575
- "superclass": {
3576
- "name": "FoundationElement",
3577
- "package": "@microsoft/fast-foundation"
3602
+ "description": "Text formatter for customized display of values.\nStyled to match grid-pro text renderer.",
3603
+ "privacy": "public"
3604
+ }
3605
+ ],
3606
+ "exports": [
3607
+ {
3608
+ "kind": "js",
3609
+ "name": "textFormatter",
3610
+ "declaration": {
3611
+ "name": "textFormatter",
3612
+ "module": "src/cell-formatters/text.formatter.ts"
3613
+ }
3614
+ }
3615
+ ]
3616
+ },
3617
+ {
3618
+ "kind": "javascript-module",
3619
+ "path": "src/external/fonts.ts",
3620
+ "declarations": [
3621
+ {
3622
+ "kind": "variable",
3623
+ "name": "tabulatorDefaultFontFace",
3624
+ "default": "`\n @font-face {\n font-family: \"defaultFontFace\";\n }\n`"
3625
+ },
3626
+ {
3627
+ "kind": "variable",
3628
+ "name": "tabulatorRapidFontFace",
3629
+ "default": "`\n @font-face {\n font-family: \"rapidFontFace\";\n }\n`"
3630
+ },
3631
+ {
3632
+ "kind": "variable",
3633
+ "name": "gridThemeFontFaceMap",
3634
+ "type": {
3635
+ "text": "GridThemeFontFaceMap"
3578
3636
  },
3579
- "tagName": "grid-tabulator-cell",
3580
- "customElement": true
3637
+ "default": "{\n [GridTabulatorTheme.default]: tabulatorDefaultFontFace,\n [GridTabulatorTheme.rapid]: tabulatorRapidFontFace,\n}"
3638
+ },
3639
+ {
3640
+ "kind": "variable",
3641
+ "name": "defaultGridTabulatorFontFace",
3642
+ "default": "tabulatorDefaultFontFace"
3581
3643
  }
3582
3644
  ],
3583
3645
  "exports": [
3584
3646
  {
3585
3647
  "kind": "js",
3586
- "name": "GridTabulatorCell",
3648
+ "name": "tabulatorDefaultFontFace",
3587
3649
  "declaration": {
3588
- "name": "GridTabulatorCell",
3589
- "module": "src/cell/cell.ts"
3650
+ "name": "tabulatorDefaultFontFace",
3651
+ "module": "src/external/fonts.ts"
3590
3652
  }
3591
3653
  },
3592
3654
  {
3593
- "kind": "custom-element-definition",
3594
- "name": "grid-tabulator-cell",
3655
+ "kind": "js",
3656
+ "name": "tabulatorRapidFontFace",
3595
3657
  "declaration": {
3596
- "name": "GridTabulatorCell",
3597
- "module": "src/cell/cell.ts"
3658
+ "name": "tabulatorRapidFontFace",
3659
+ "module": "src/external/fonts.ts"
3660
+ }
3661
+ },
3662
+ {
3663
+ "kind": "js",
3664
+ "name": "gridThemeFontFaceMap",
3665
+ "declaration": {
3666
+ "name": "gridThemeFontFaceMap",
3667
+ "module": "src/external/fonts.ts"
3668
+ }
3669
+ },
3670
+ {
3671
+ "kind": "js",
3672
+ "name": "defaultGridTabulatorFontFace",
3673
+ "declaration": {
3674
+ "name": "defaultGridTabulatorFontFace",
3675
+ "module": "src/external/fonts.ts"
3598
3676
  }
3599
3677
  }
3600
3678
  ]
3601
3679
  },
3602
3680
  {
3603
3681
  "kind": "javascript-module",
3604
- "path": "src/cell/index.ts",
3605
- "declarations": [],
3682
+ "path": "src/external/index.ts",
3683
+ "declarations": [
3684
+ {
3685
+ "kind": "variable",
3686
+ "name": "tabulatorExternalStockStyles",
3687
+ "default": "css`\n ${tabulatorThemeSimpleCSS}\n`",
3688
+ "description": "External styles for the Tabulator grid.",
3689
+ "privacy": "public"
3690
+ }
3691
+ ],
3606
3692
  "exports": [
3607
3693
  {
3608
3694
  "kind": "js",
3609
- "name": "*",
3695
+ "name": "tabulatorExternalStockStyles",
3610
3696
  "declaration": {
3611
- "name": "*",
3612
- "package": "./cell"
3697
+ "name": "tabulatorExternalStockStyles",
3698
+ "module": "src/external/index.ts"
3699
+ }
3700
+ },
3701
+ {
3702
+ "kind": "js",
3703
+ "name": "tabulatorThemeSimpleCSS",
3704
+ "declaration": {
3705
+ "name": "tabulatorThemeSimpleCSS",
3706
+ "module": "src/external/index.ts"
3707
+ }
3708
+ }
3709
+ ]
3710
+ },
3711
+ {
3712
+ "kind": "javascript-module",
3713
+ "path": "src/external/tabulator-theme-simple-css.ts",
3714
+ "declarations": [
3715
+ {
3716
+ "kind": "variable",
3717
+ "name": "tabulatorThemeSimpleCSS",
3718
+ "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`",
3719
+ "description": "External styles for the Tabulator grid.",
3720
+ "privacy": "public"
3721
+ }
3722
+ ],
3723
+ "exports": [
3724
+ {
3725
+ "kind": "js",
3726
+ "name": "tabulatorThemeSimpleCSS",
3727
+ "declaration": {
3728
+ "name": "tabulatorThemeSimpleCSS",
3729
+ "module": "src/external/tabulator-theme-simple-css.ts"
3613
3730
  }
3614
3731
  }
3615
3732
  ]
@@ -4548,123 +4665,6 @@
4548
4665
  }
4549
4666
  ]
4550
4667
  },
4551
- {
4552
- "kind": "javascript-module",
4553
- "path": "src/external/fonts.ts",
4554
- "declarations": [
4555
- {
4556
- "kind": "variable",
4557
- "name": "tabulatorDefaultFontFace",
4558
- "default": "`\n @font-face {\n font-family: \"defaultFontFace\";\n }\n`"
4559
- },
4560
- {
4561
- "kind": "variable",
4562
- "name": "tabulatorRapidFontFace",
4563
- "default": "`\n @font-face {\n font-family: \"rapidFontFace\";\n }\n`"
4564
- },
4565
- {
4566
- "kind": "variable",
4567
- "name": "gridThemeFontFaceMap",
4568
- "type": {
4569
- "text": "GridThemeFontFaceMap"
4570
- },
4571
- "default": "{\n [GridTabulatorTheme.default]: tabulatorDefaultFontFace,\n [GridTabulatorTheme.rapid]: tabulatorRapidFontFace,\n}"
4572
- },
4573
- {
4574
- "kind": "variable",
4575
- "name": "defaultGridTabulatorFontFace",
4576
- "default": "tabulatorDefaultFontFace"
4577
- }
4578
- ],
4579
- "exports": [
4580
- {
4581
- "kind": "js",
4582
- "name": "tabulatorDefaultFontFace",
4583
- "declaration": {
4584
- "name": "tabulatorDefaultFontFace",
4585
- "module": "src/external/fonts.ts"
4586
- }
4587
- },
4588
- {
4589
- "kind": "js",
4590
- "name": "tabulatorRapidFontFace",
4591
- "declaration": {
4592
- "name": "tabulatorRapidFontFace",
4593
- "module": "src/external/fonts.ts"
4594
- }
4595
- },
4596
- {
4597
- "kind": "js",
4598
- "name": "gridThemeFontFaceMap",
4599
- "declaration": {
4600
- "name": "gridThemeFontFaceMap",
4601
- "module": "src/external/fonts.ts"
4602
- }
4603
- },
4604
- {
4605
- "kind": "js",
4606
- "name": "defaultGridTabulatorFontFace",
4607
- "declaration": {
4608
- "name": "defaultGridTabulatorFontFace",
4609
- "module": "src/external/fonts.ts"
4610
- }
4611
- }
4612
- ]
4613
- },
4614
- {
4615
- "kind": "javascript-module",
4616
- "path": "src/external/index.ts",
4617
- "declarations": [
4618
- {
4619
- "kind": "variable",
4620
- "name": "tabulatorExternalStockStyles",
4621
- "default": "css`\n ${tabulatorThemeSimpleCSS}\n`",
4622
- "description": "External styles for the Tabulator grid.",
4623
- "privacy": "public"
4624
- }
4625
- ],
4626
- "exports": [
4627
- {
4628
- "kind": "js",
4629
- "name": "tabulatorExternalStockStyles",
4630
- "declaration": {
4631
- "name": "tabulatorExternalStockStyles",
4632
- "module": "src/external/index.ts"
4633
- }
4634
- },
4635
- {
4636
- "kind": "js",
4637
- "name": "tabulatorThemeSimpleCSS",
4638
- "declaration": {
4639
- "name": "tabulatorThemeSimpleCSS",
4640
- "module": "src/external/index.ts"
4641
- }
4642
- }
4643
- ]
4644
- },
4645
- {
4646
- "kind": "javascript-module",
4647
- "path": "src/external/tabulator-theme-simple-css.ts",
4648
- "declarations": [
4649
- {
4650
- "kind": "variable",
4651
- "name": "tabulatorThemeSimpleCSS",
4652
- "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`",
4653
- "description": "External styles for the Tabulator grid.",
4654
- "privacy": "public"
4655
- }
4656
- ],
4657
- "exports": [
4658
- {
4659
- "kind": "js",
4660
- "name": "tabulatorThemeSimpleCSS",
4661
- "declaration": {
4662
- "name": "tabulatorThemeSimpleCSS",
4663
- "module": "src/external/tabulator-theme-simple-css.ts"
4664
- }
4665
- }
4666
- ]
4667
- },
4668
4668
  {
4669
4669
  "kind": "javascript-module",
4670
4670
  "path": "src/style/colors.ts",