@genesislcap/grid-tabulator 14.445.0 → 14.445.2

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.
@@ -1417,6 +1417,244 @@
1417
1417
  "declarations": [],
1418
1418
  "exports": []
1419
1419
  },
1420
+ {
1421
+ "kind": "javascript-module",
1422
+ "path": "src/cell/cell.ts",
1423
+ "declarations": [
1424
+ {
1425
+ "kind": "class",
1426
+ "description": "The GridTabulator Cell element.",
1427
+ "name": "GridTabulatorCell",
1428
+ "members": [
1429
+ {
1430
+ "kind": "field",
1431
+ "name": "renderer",
1432
+ "type": {
1433
+ "text": "CellRendererFunc"
1434
+ },
1435
+ "privacy": "public"
1436
+ },
1437
+ {
1438
+ "kind": "field",
1439
+ "name": "rendererParams",
1440
+ "type": {
1441
+ "text": "CellRendererParams"
1442
+ },
1443
+ "privacy": "public"
1444
+ },
1445
+ {
1446
+ "kind": "field",
1447
+ "name": "slottedRenderer",
1448
+ "type": {
1449
+ "text": "HTMLElement[]"
1450
+ },
1451
+ "privacy": "public"
1452
+ },
1453
+ {
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",
1507
+ "type": {
1508
+ "text": "ComponentPresentation | null | undefined"
1509
+ },
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
+ }
1614
+ }
1615
+ ],
1616
+ "superclass": {
1617
+ "name": "FoundationElement",
1618
+ "package": "@microsoft/fast-foundation"
1619
+ },
1620
+ "tagName": "grid-tabulator-cell",
1621
+ "customElement": true
1622
+ }
1623
+ ],
1624
+ "exports": [
1625
+ {
1626
+ "kind": "js",
1627
+ "name": "GridTabulatorCell",
1628
+ "declaration": {
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"
1639
+ }
1640
+ }
1641
+ ]
1642
+ },
1643
+ {
1644
+ "kind": "javascript-module",
1645
+ "path": "src/cell/index.ts",
1646
+ "declarations": [],
1647
+ "exports": [
1648
+ {
1649
+ "kind": "js",
1650
+ "name": "*",
1651
+ "declaration": {
1652
+ "name": "*",
1653
+ "package": "./cell"
1654
+ }
1655
+ }
1656
+ ]
1657
+ },
1420
1658
  {
1421
1659
  "kind": "javascript-module",
1422
1660
  "path": "src/cell-editors/date.editor.ts",
@@ -3378,25 +3616,142 @@
3378
3616
  },
3379
3617
  {
3380
3618
  "kind": "javascript-module",
3381
- "path": "src/datasource/client-side.datasource.ts",
3619
+ "path": "src/external/fonts.ts",
3382
3620
  "declarations": [
3383
3621
  {
3384
3622
  "kind": "variable",
3385
- "name": "criteriaDelimiter",
3386
- "type": {
3387
- "text": "string"
3388
- },
3389
- "default": "';'",
3390
- "description": "Delimiter for criteria in the datasource"
3623
+ "name": "tabulatorDefaultFontFace",
3624
+ "default": "`\n @font-face {\n font-family: \"defaultFontFace\";\n }\n`"
3391
3625
  },
3392
3626
  {
3393
3627
  "kind": "variable",
3394
- "name": "criteriaJoin",
3395
- "type": {
3396
- "text": "string"
3397
- },
3398
- "default": "' && '",
3399
- "description": "Join operator for criteria in the datasource"
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"
3636
+ },
3637
+ "default": "{\n [GridTabulatorTheme.default]: tabulatorDefaultFontFace,\n [GridTabulatorTheme.rapid]: tabulatorRapidFontFace,\n}"
3638
+ },
3639
+ {
3640
+ "kind": "variable",
3641
+ "name": "defaultGridTabulatorFontFace",
3642
+ "default": "tabulatorDefaultFontFace"
3643
+ }
3644
+ ],
3645
+ "exports": [
3646
+ {
3647
+ "kind": "js",
3648
+ "name": "tabulatorDefaultFontFace",
3649
+ "declaration": {
3650
+ "name": "tabulatorDefaultFontFace",
3651
+ "module": "src/external/fonts.ts"
3652
+ }
3653
+ },
3654
+ {
3655
+ "kind": "js",
3656
+ "name": "tabulatorRapidFontFace",
3657
+ "declaration": {
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"
3676
+ }
3677
+ }
3678
+ ]
3679
+ },
3680
+ {
3681
+ "kind": "javascript-module",
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
+ ],
3692
+ "exports": [
3693
+ {
3694
+ "kind": "js",
3695
+ "name": "tabulatorExternalStockStyles",
3696
+ "declaration": {
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"
3730
+ }
3731
+ }
3732
+ ]
3733
+ },
3734
+ {
3735
+ "kind": "javascript-module",
3736
+ "path": "src/datasource/client-side.datasource.ts",
3737
+ "declarations": [
3738
+ {
3739
+ "kind": "variable",
3740
+ "name": "criteriaDelimiter",
3741
+ "type": {
3742
+ "text": "string"
3743
+ },
3744
+ "default": "';'",
3745
+ "description": "Delimiter for criteria in the datasource"
3746
+ },
3747
+ {
3748
+ "kind": "variable",
3749
+ "name": "criteriaJoin",
3750
+ "type": {
3751
+ "text": "string"
3752
+ },
3753
+ "default": "' && '",
3754
+ "description": "Join operator for criteria in the datasource"
3400
3755
  },
3401
3756
  {
3402
3757
  "kind": "class",
@@ -4310,361 +4665,6 @@
4310
4665
  }
4311
4666
  ]
4312
4667
  },
4313
- {
4314
- "kind": "javascript-module",
4315
- "path": "src/external/fonts.ts",
4316
- "declarations": [
4317
- {
4318
- "kind": "variable",
4319
- "name": "tabulatorDefaultFontFace",
4320
- "default": "`\n @font-face {\n font-family: \"defaultFontFace\";\n }\n`"
4321
- },
4322
- {
4323
- "kind": "variable",
4324
- "name": "tabulatorRapidFontFace",
4325
- "default": "`\n @font-face {\n font-family: \"rapidFontFace\";\n }\n`"
4326
- },
4327
- {
4328
- "kind": "variable",
4329
- "name": "gridThemeFontFaceMap",
4330
- "type": {
4331
- "text": "GridThemeFontFaceMap"
4332
- },
4333
- "default": "{\n [GridTabulatorTheme.default]: tabulatorDefaultFontFace,\n [GridTabulatorTheme.rapid]: tabulatorRapidFontFace,\n}"
4334
- },
4335
- {
4336
- "kind": "variable",
4337
- "name": "defaultGridTabulatorFontFace",
4338
- "default": "tabulatorDefaultFontFace"
4339
- }
4340
- ],
4341
- "exports": [
4342
- {
4343
- "kind": "js",
4344
- "name": "tabulatorDefaultFontFace",
4345
- "declaration": {
4346
- "name": "tabulatorDefaultFontFace",
4347
- "module": "src/external/fonts.ts"
4348
- }
4349
- },
4350
- {
4351
- "kind": "js",
4352
- "name": "tabulatorRapidFontFace",
4353
- "declaration": {
4354
- "name": "tabulatorRapidFontFace",
4355
- "module": "src/external/fonts.ts"
4356
- }
4357
- },
4358
- {
4359
- "kind": "js",
4360
- "name": "gridThemeFontFaceMap",
4361
- "declaration": {
4362
- "name": "gridThemeFontFaceMap",
4363
- "module": "src/external/fonts.ts"
4364
- }
4365
- },
4366
- {
4367
- "kind": "js",
4368
- "name": "defaultGridTabulatorFontFace",
4369
- "declaration": {
4370
- "name": "defaultGridTabulatorFontFace",
4371
- "module": "src/external/fonts.ts"
4372
- }
4373
- }
4374
- ]
4375
- },
4376
- {
4377
- "kind": "javascript-module",
4378
- "path": "src/external/index.ts",
4379
- "declarations": [
4380
- {
4381
- "kind": "variable",
4382
- "name": "tabulatorExternalStockStyles",
4383
- "default": "css`\n ${tabulatorThemeSimpleCSS}\n`",
4384
- "description": "External styles for the Tabulator grid.",
4385
- "privacy": "public"
4386
- }
4387
- ],
4388
- "exports": [
4389
- {
4390
- "kind": "js",
4391
- "name": "tabulatorExternalStockStyles",
4392
- "declaration": {
4393
- "name": "tabulatorExternalStockStyles",
4394
- "module": "src/external/index.ts"
4395
- }
4396
- },
4397
- {
4398
- "kind": "js",
4399
- "name": "tabulatorThemeSimpleCSS",
4400
- "declaration": {
4401
- "name": "tabulatorThemeSimpleCSS",
4402
- "module": "src/external/index.ts"
4403
- }
4404
- }
4405
- ]
4406
- },
4407
- {
4408
- "kind": "javascript-module",
4409
- "path": "src/external/tabulator-theme-simple-css.ts",
4410
- "declarations": [
4411
- {
4412
- "kind": "variable",
4413
- "name": "tabulatorThemeSimpleCSS",
4414
- "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`",
4415
- "description": "External styles for the Tabulator grid.",
4416
- "privacy": "public"
4417
- }
4418
- ],
4419
- "exports": [
4420
- {
4421
- "kind": "js",
4422
- "name": "tabulatorThemeSimpleCSS",
4423
- "declaration": {
4424
- "name": "tabulatorThemeSimpleCSS",
4425
- "module": "src/external/tabulator-theme-simple-css.ts"
4426
- }
4427
- }
4428
- ]
4429
- },
4430
- {
4431
- "kind": "javascript-module",
4432
- "path": "src/cell/cell.ts",
4433
- "declarations": [
4434
- {
4435
- "kind": "class",
4436
- "description": "The GridTabulator Cell element.",
4437
- "name": "GridTabulatorCell",
4438
- "members": [
4439
- {
4440
- "kind": "field",
4441
- "name": "renderer",
4442
- "type": {
4443
- "text": "CellRendererFunc"
4444
- },
4445
- "privacy": "public"
4446
- },
4447
- {
4448
- "kind": "field",
4449
- "name": "rendererParams",
4450
- "type": {
4451
- "text": "CellRendererParams"
4452
- },
4453
- "privacy": "public"
4454
- },
4455
- {
4456
- "kind": "field",
4457
- "name": "slottedRenderer",
4458
- "type": {
4459
- "text": "HTMLElement[]"
4460
- },
4461
- "privacy": "public"
4462
- },
4463
- {
4464
- "kind": "method",
4465
- "name": "init",
4466
- "privacy": "public",
4467
- "parameters": [
4468
- {
4469
- "name": "params",
4470
- "type": {
4471
- "text": "CellRendererParams"
4472
- }
4473
- }
4474
- ]
4475
- },
4476
- {
4477
- "kind": "method",
4478
- "name": "getElement",
4479
- "privacy": "public",
4480
- "return": {
4481
- "type": {
4482
- "text": "HTMLElement"
4483
- }
4484
- }
4485
- },
4486
- {
4487
- "kind": "method",
4488
- "name": "destroy",
4489
- "privacy": "public"
4490
- },
4491
- {
4492
- "kind": "method",
4493
- "name": "refresh",
4494
- "privacy": "public",
4495
- "return": {
4496
- "type": {
4497
- "text": "boolean"
4498
- }
4499
- },
4500
- "parameters": [
4501
- {
4502
- "name": "params",
4503
- "type": {
4504
- "text": "CellRendererParams"
4505
- }
4506
- }
4507
- ]
4508
- },
4509
- {
4510
- "kind": "method",
4511
- "name": "slottedRendererChanged",
4512
- "privacy": "public"
4513
- },
4514
- {
4515
- "kind": "field",
4516
- "name": "_presentation",
4517
- "type": {
4518
- "text": "ComponentPresentation | null | undefined"
4519
- },
4520
- "privacy": "private",
4521
- "default": "void 0",
4522
- "inheritedFrom": {
4523
- "name": "FoundationElement",
4524
- "module": "src/foundation-element/foundation-element.ts"
4525
- }
4526
- },
4527
- {
4528
- "kind": "field",
4529
- "name": "$presentation",
4530
- "type": {
4531
- "text": "ComponentPresentation | null"
4532
- },
4533
- "privacy": "public",
4534
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
4535
- "inheritedFrom": {
4536
- "name": "FoundationElement",
4537
- "module": "src/foundation-element/foundation-element.ts"
4538
- }
4539
- },
4540
- {
4541
- "kind": "field",
4542
- "name": "template",
4543
- "type": {
4544
- "text": "ElementViewTemplate | void | null"
4545
- },
4546
- "privacy": "public",
4547
- "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.",
4548
- "inheritedFrom": {
4549
- "name": "FoundationElement",
4550
- "module": "src/foundation-element/foundation-element.ts"
4551
- }
4552
- },
4553
- {
4554
- "kind": "method",
4555
- "name": "templateChanged",
4556
- "privacy": "protected",
4557
- "return": {
4558
- "type": {
4559
- "text": "void"
4560
- }
4561
- },
4562
- "inheritedFrom": {
4563
- "name": "FoundationElement",
4564
- "module": "src/foundation-element/foundation-element.ts"
4565
- }
4566
- },
4567
- {
4568
- "kind": "field",
4569
- "name": "styles",
4570
- "type": {
4571
- "text": "ElementStyles | void | null"
4572
- },
4573
- "privacy": "public",
4574
- "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.",
4575
- "inheritedFrom": {
4576
- "name": "FoundationElement",
4577
- "module": "src/foundation-element/foundation-element.ts"
4578
- }
4579
- },
4580
- {
4581
- "kind": "method",
4582
- "name": "stylesChanged",
4583
- "privacy": "protected",
4584
- "return": {
4585
- "type": {
4586
- "text": "void"
4587
- }
4588
- },
4589
- "inheritedFrom": {
4590
- "name": "FoundationElement",
4591
- "module": "src/foundation-element/foundation-element.ts"
4592
- }
4593
- },
4594
- {
4595
- "kind": "method",
4596
- "name": "compose",
4597
- "privacy": "public",
4598
- "static": true,
4599
- "return": {
4600
- "type": {
4601
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
4602
- }
4603
- },
4604
- "parameters": [
4605
- {
4606
- "name": "this",
4607
- "type": {
4608
- "text": "K"
4609
- }
4610
- },
4611
- {
4612
- "name": "elementDefinition",
4613
- "type": {
4614
- "text": "T"
4615
- },
4616
- "description": "The definition of the element to create the registry\nfunction for."
4617
- }
4618
- ],
4619
- "description": "Defines an element registry function with a set of element definition defaults.",
4620
- "inheritedFrom": {
4621
- "name": "FoundationElement",
4622
- "module": "src/foundation-element/foundation-element.ts"
4623
- }
4624
- }
4625
- ],
4626
- "superclass": {
4627
- "name": "FoundationElement",
4628
- "package": "@microsoft/fast-foundation"
4629
- },
4630
- "tagName": "grid-tabulator-cell",
4631
- "customElement": true
4632
- }
4633
- ],
4634
- "exports": [
4635
- {
4636
- "kind": "js",
4637
- "name": "GridTabulatorCell",
4638
- "declaration": {
4639
- "name": "GridTabulatorCell",
4640
- "module": "src/cell/cell.ts"
4641
- }
4642
- },
4643
- {
4644
- "kind": "custom-element-definition",
4645
- "name": "grid-tabulator-cell",
4646
- "declaration": {
4647
- "name": "GridTabulatorCell",
4648
- "module": "src/cell/cell.ts"
4649
- }
4650
- }
4651
- ]
4652
- },
4653
- {
4654
- "kind": "javascript-module",
4655
- "path": "src/cell/index.ts",
4656
- "declarations": [],
4657
- "exports": [
4658
- {
4659
- "kind": "js",
4660
- "name": "*",
4661
- "declaration": {
4662
- "name": "*",
4663
- "package": "./cell"
4664
- }
4665
- }
4666
- ]
4667
- },
4668
4668
  {
4669
4669
  "kind": "javascript-module",
4670
4670
  "path": "src/style/colors.ts",
@@ -48,6 +48,15 @@ export declare const GridTabulator: React.ForwardRefExoticComponent<
48
48
  >;
49
49
  export type GridTabulatorRef = GridTabulatorWC;
50
50
 
51
+ export declare const GridTabulatorCell: React.ForwardRefExoticComponent<
52
+ React.PropsWithChildren<
53
+ Omit<PublicOf<GridTabulatorCellWC>, 'children' | 'style'> &
54
+ HTMLWCProps & {
55
+ }
56
+ > & React.RefAttributes<GridTabulatorCellWC>
57
+ >;
58
+ export type GridTabulatorCellRef = GridTabulatorCellWC;
59
+
51
60
  export declare const GridTabulatorColumn: React.ForwardRefExoticComponent<
52
61
  React.PropsWithChildren<
53
62
  Omit<PublicOf<GridTabulatorColumnWC>, 'children' | 'style'> &
@@ -69,13 +78,4 @@ export declare const GridTabulatorClientSideDatasource: React.ForwardRefExoticCo
69
78
  >;
70
79
  export type GridTabulatorClientSideDatasourceRef = GridTabulatorClientSideDatasourceWC;
71
80
 
72
- export declare const GridTabulatorCell: React.ForwardRefExoticComponent<
73
- React.PropsWithChildren<
74
- Omit<PublicOf<GridTabulatorCellWC>, 'children' | 'style'> &
75
- HTMLWCProps & {
76
- }
77
- > & React.RefAttributes<GridTabulatorCellWC>
78
- >;
79
- export type GridTabulatorCellRef = GridTabulatorCellWC;
80
-
81
81
  export {};
package/dist/react.cjs CHANGED
@@ -37,6 +37,11 @@ const GridTabulator = React.forwardRef(function GridTabulator(props, ref) {
37
37
  return React.createElement(customElements.getName(GridTabulatorWC) ?? '%%prefix%%-grid-tabulator', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
38
38
  });
39
39
 
40
+ const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
41
+ const { children, ...rest } = props;
42
+ return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
43
+ });
44
+
40
45
  const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
41
46
  const { children, ...rest } = props;
42
47
  return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
@@ -69,14 +74,9 @@ const GridTabulatorClientSideDatasource = React.forwardRef(function GridTabulato
69
74
  return React.createElement(customElements.getName(GridTabulatorClientSideDatasourceWC) ?? 'grid-tabulator-client-side-datasource', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
70
75
  });
71
76
 
72
- const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
73
- const { children, ...rest } = props;
74
- return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
75
- });
76
-
77
77
  module.exports = {
78
78
  GridTabulator,
79
+ GridTabulatorCell,
79
80
  GridTabulatorColumn,
80
81
  GridTabulatorClientSideDatasource,
81
- GridTabulatorCell,
82
82
  };
package/dist/react.mjs CHANGED
@@ -35,6 +35,11 @@ export const GridTabulator = React.forwardRef(function GridTabulator(props, ref)
35
35
  return React.createElement(customElements.getName(GridTabulatorWC) ?? '%%prefix%%-grid-tabulator', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
36
36
  });
37
37
 
38
+ export const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
39
+ const { children, ...rest } = props;
40
+ return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
41
+ });
42
+
38
43
  export const GridTabulatorColumn = React.forwardRef(function GridTabulatorColumn(props, ref) {
39
44
  const { children, ...rest } = props;
40
45
  return React.createElement(customElements.getName(GridTabulatorColumnWC) ?? 'grid-tabulator-column', { ...rest, ref }, children);
@@ -66,8 +71,3 @@ export const GridTabulatorClientSideDatasource = React.forwardRef(function GridT
66
71
  }, []);
67
72
  return React.createElement(customElements.getName(GridTabulatorClientSideDatasourceWC) ?? 'grid-tabulator-client-side-datasource', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
68
73
  });
69
-
70
- export const GridTabulatorCell = React.forwardRef(function GridTabulatorCell(props, ref) {
71
- const { children, ...rest } = props;
72
- return React.createElement(customElements.getName(GridTabulatorCellWC) ?? 'grid-tabulator-cell', { ...rest, ref }, children);
73
- });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/grid-tabulator",
3
3
  "description": "Genesis Foundation Grid Tabulator",
4
- "version": "14.445.0",
4
+ "version": "14.445.2",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -41,20 +41,20 @@
41
41
  }
42
42
  },
43
43
  "devDependencies": {
44
- "@genesislcap/foundation-testing": "14.445.0",
45
- "@genesislcap/genx": "14.445.0",
46
- "@genesislcap/rollup-builder": "14.445.0",
47
- "@genesislcap/ts-builder": "14.445.0",
48
- "@genesislcap/uvu-playwright-builder": "14.445.0",
49
- "@genesislcap/vite-builder": "14.445.0",
50
- "@genesislcap/webpack-builder": "14.445.0",
44
+ "@genesislcap/foundation-testing": "14.445.2",
45
+ "@genesislcap/genx": "14.445.2",
46
+ "@genesislcap/rollup-builder": "14.445.2",
47
+ "@genesislcap/ts-builder": "14.445.2",
48
+ "@genesislcap/uvu-playwright-builder": "14.445.2",
49
+ "@genesislcap/vite-builder": "14.445.2",
50
+ "@genesislcap/webpack-builder": "14.445.2",
51
51
  "@types/tabulator-tables": "6.2.6"
52
52
  },
53
53
  "dependencies": {
54
- "@genesislcap/foundation-comms": "14.445.0",
55
- "@genesislcap/foundation-logger": "14.445.0",
56
- "@genesislcap/foundation-ui": "14.445.0",
57
- "@genesislcap/foundation-utils": "14.445.0",
54
+ "@genesislcap/foundation-comms": "14.445.2",
55
+ "@genesislcap/foundation-logger": "14.445.2",
56
+ "@genesislcap/foundation-ui": "14.445.2",
57
+ "@genesislcap/foundation-utils": "14.445.2",
58
58
  "@microsoft/fast-colors": "5.3.1",
59
59
  "@microsoft/fast-components": "2.30.6",
60
60
  "@microsoft/fast-element": "1.14.0",
@@ -86,5 +86,5 @@
86
86
  "require": "./dist/react.cjs"
87
87
  }
88
88
  },
89
- "gitHead": "ab4f2ce242dedb41dcd82795abf7e0acaf14979c"
89
+ "gitHead": "bc0c48b46bdb022bfb6f8b88c0daca6beae97a4b"
90
90
  }