@genesislcap/foundation-entity-management 14.243.0 → 14.244.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +240 -167
- package/dist/dts/entities/entities.d.ts +19 -11
- package/dist/dts/entities/entities.d.ts.map +1 -1
- package/dist/dts/entities/entities.template.d.ts.map +1 -1
- package/dist/dts/list/list.d.ts +1 -0
- package/dist/dts/list/list.d.ts.map +1 -1
- package/dist/dts/list/list.template.d.ts.map +1 -1
- package/dist/dts/users/users.d.ts +17 -3
- package/dist/dts/users/users.d.ts.map +1 -1
- package/dist/dts/users/users.template.d.ts.map +1 -1
- package/dist/esm/entities/entities.js +3 -0
- package/dist/esm/entities/entities.template.js +1 -0
- package/dist/esm/list/list.js +3 -0
- package/dist/esm/list/list.template.js +1 -0
- package/dist/esm/users/users.js +5 -0
- package/dist/esm/users/users.template.js +1 -0
- package/dist/foundation-entity-management.api.json +61 -1
- package/dist/foundation-entity-management.d.ts +37 -15
- package/docs/api/foundation-entity-management.entitymanagement.md +1 -0
- package/docs/api/foundation-entity-management.entitymanagement.persistfiltermodelkey.md +18 -0
- package/docs/api/foundation-entity-management.users.md +1 -0
- package/docs/api/foundation-entity-management.users.persistcolumnstatekey.md +2 -0
- package/docs/api/foundation-entity-management.users.persistfiltermodelkey.md +18 -0
- package/docs/api-report.md +2 -0
- package/package.json +21 -21
|
@@ -339,6 +339,15 @@
|
|
|
339
339
|
"description": "This attribute controls whether and how the entity manager stores the state of the columns when the user edits them. Omit this attribute to disable the functionality, set it to a unique value to enable it.",
|
|
340
340
|
"privacy": "public"
|
|
341
341
|
},
|
|
342
|
+
{
|
|
343
|
+
"kind": "field",
|
|
344
|
+
"name": "persistFilterModelKey",
|
|
345
|
+
"type": {
|
|
346
|
+
"text": "string"
|
|
347
|
+
},
|
|
348
|
+
"description": "The key to use for persisting the filter model in local browser or KV storage.",
|
|
349
|
+
"privacy": "public"
|
|
350
|
+
},
|
|
342
351
|
{
|
|
343
352
|
"kind": "field",
|
|
344
353
|
"name": "gridOptions",
|
|
@@ -763,6 +772,14 @@
|
|
|
763
772
|
"description": "This attribute controls whether and how the entity manager stores the state of the columns when the user edits them. Omit this attribute to disable the functionality, set it to a unique value to enable it.",
|
|
764
773
|
"fieldName": "persistColumnStateKey"
|
|
765
774
|
},
|
|
775
|
+
{
|
|
776
|
+
"name": "persist-filter-model-key",
|
|
777
|
+
"type": {
|
|
778
|
+
"text": "string"
|
|
779
|
+
},
|
|
780
|
+
"description": "The key to use for persisting the filter model in local browser or KV storage.",
|
|
781
|
+
"fieldName": "persistFilterModelKey"
|
|
782
|
+
},
|
|
766
783
|
{
|
|
767
784
|
"name": "size-columns-to-fit",
|
|
768
785
|
"type": {
|
|
@@ -913,6 +930,55 @@
|
|
|
913
930
|
}
|
|
914
931
|
]
|
|
915
932
|
},
|
|
933
|
+
{
|
|
934
|
+
"kind": "javascript-module",
|
|
935
|
+
"path": "src/layouts/default.ts",
|
|
936
|
+
"declarations": [
|
|
937
|
+
{
|
|
938
|
+
"kind": "variable",
|
|
939
|
+
"name": "loginLayout",
|
|
940
|
+
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"kind": "variable",
|
|
944
|
+
"name": "defaultLayout",
|
|
945
|
+
"default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n css`\n ${baseLayoutCss}\n `,\n)"
|
|
946
|
+
}
|
|
947
|
+
],
|
|
948
|
+
"exports": [
|
|
949
|
+
{
|
|
950
|
+
"kind": "js",
|
|
951
|
+
"name": "loginLayout",
|
|
952
|
+
"declaration": {
|
|
953
|
+
"name": "loginLayout",
|
|
954
|
+
"module": "src/layouts/default.ts"
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"kind": "js",
|
|
959
|
+
"name": "defaultLayout",
|
|
960
|
+
"declaration": {
|
|
961
|
+
"name": "defaultLayout",
|
|
962
|
+
"module": "src/layouts/default.ts"
|
|
963
|
+
}
|
|
964
|
+
}
|
|
965
|
+
]
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"kind": "javascript-module",
|
|
969
|
+
"path": "src/layouts/index.ts",
|
|
970
|
+
"declarations": [],
|
|
971
|
+
"exports": [
|
|
972
|
+
{
|
|
973
|
+
"kind": "js",
|
|
974
|
+
"name": "*",
|
|
975
|
+
"declaration": {
|
|
976
|
+
"name": "*",
|
|
977
|
+
"package": "./default"
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
]
|
|
981
|
+
},
|
|
916
982
|
{
|
|
917
983
|
"kind": "javascript-module",
|
|
918
984
|
"path": "src/list/index.ts",
|
|
@@ -1016,6 +1082,13 @@
|
|
|
1016
1082
|
"text": "string"
|
|
1017
1083
|
}
|
|
1018
1084
|
},
|
|
1085
|
+
{
|
|
1086
|
+
"kind": "field",
|
|
1087
|
+
"name": "persistFilterModelKey",
|
|
1088
|
+
"type": {
|
|
1089
|
+
"text": "string"
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1019
1092
|
{
|
|
1020
1093
|
"kind": "field",
|
|
1021
1094
|
"name": "sizeColumnsToFit",
|
|
@@ -1388,6 +1461,13 @@
|
|
|
1388
1461
|
},
|
|
1389
1462
|
"fieldName": "persistColumnStateKey"
|
|
1390
1463
|
},
|
|
1464
|
+
{
|
|
1465
|
+
"name": "persist-filter-model-key",
|
|
1466
|
+
"type": {
|
|
1467
|
+
"text": "string"
|
|
1468
|
+
},
|
|
1469
|
+
"fieldName": "persistFilterModelKey"
|
|
1470
|
+
},
|
|
1391
1471
|
{
|
|
1392
1472
|
"name": "size-columns-to-fit",
|
|
1393
1473
|
"type": {
|
|
@@ -1516,49 +1596,145 @@
|
|
|
1516
1596
|
},
|
|
1517
1597
|
{
|
|
1518
1598
|
"kind": "javascript-module",
|
|
1519
|
-
"path": "src/
|
|
1520
|
-
"declarations": [
|
|
1599
|
+
"path": "src/main/index.ts",
|
|
1600
|
+
"declarations": [],
|
|
1601
|
+
"exports": [
|
|
1521
1602
|
{
|
|
1522
|
-
"kind": "
|
|
1523
|
-
"name": "
|
|
1524
|
-
"
|
|
1603
|
+
"kind": "js",
|
|
1604
|
+
"name": "*",
|
|
1605
|
+
"declaration": {
|
|
1606
|
+
"name": "*",
|
|
1607
|
+
"package": "./main.template"
|
|
1608
|
+
}
|
|
1525
1609
|
},
|
|
1610
|
+
{
|
|
1611
|
+
"kind": "js",
|
|
1612
|
+
"name": "*",
|
|
1613
|
+
"declaration": {
|
|
1614
|
+
"name": "*",
|
|
1615
|
+
"package": "./main"
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
]
|
|
1619
|
+
},
|
|
1620
|
+
{
|
|
1621
|
+
"kind": "javascript-module",
|
|
1622
|
+
"path": "src/main/main.styles.ts",
|
|
1623
|
+
"declarations": [
|
|
1526
1624
|
{
|
|
1527
1625
|
"kind": "variable",
|
|
1528
|
-
"name": "
|
|
1529
|
-
"default": "
|
|
1626
|
+
"name": "MainStyles",
|
|
1627
|
+
"default": "css`\n ${mixinRobotoFont()}\n :host {\n contain: content;\n }\n\n :host,\n zero-design-system-provider,\n .dynamic-template,\n foundation-router {\n display: flex;\n width: 100%;\n height: 100%;\n }\n\n fast-progress {\n --accent-foreground-rest: #654df9;\n\n height: calc(var(--design-unit) * 1px);\n margin: 0;\n width: 100%;\n }\n`"
|
|
1530
1628
|
}
|
|
1531
1629
|
],
|
|
1532
1630
|
"exports": [
|
|
1533
1631
|
{
|
|
1534
1632
|
"kind": "js",
|
|
1535
|
-
"name": "
|
|
1536
|
-
"declaration": {
|
|
1537
|
-
"name": "loginLayout",
|
|
1538
|
-
"module": "src/layouts/default.ts"
|
|
1539
|
-
}
|
|
1540
|
-
},
|
|
1541
|
-
{
|
|
1542
|
-
"kind": "js",
|
|
1543
|
-
"name": "defaultLayout",
|
|
1633
|
+
"name": "MainStyles",
|
|
1544
1634
|
"declaration": {
|
|
1545
|
-
"name": "
|
|
1546
|
-
"module": "src/
|
|
1635
|
+
"name": "MainStyles",
|
|
1636
|
+
"module": "src/main/main.styles.ts"
|
|
1547
1637
|
}
|
|
1548
1638
|
}
|
|
1549
1639
|
]
|
|
1550
1640
|
},
|
|
1551
1641
|
{
|
|
1552
1642
|
"kind": "javascript-module",
|
|
1553
|
-
"path": "src/
|
|
1643
|
+
"path": "src/main/main.template.ts",
|
|
1554
1644
|
"declarations": [],
|
|
1645
|
+
"exports": []
|
|
1646
|
+
},
|
|
1647
|
+
{
|
|
1648
|
+
"kind": "javascript-module",
|
|
1649
|
+
"path": "src/main/main.ts",
|
|
1650
|
+
"declarations": [
|
|
1651
|
+
{
|
|
1652
|
+
"kind": "class",
|
|
1653
|
+
"description": "",
|
|
1654
|
+
"name": "MainApplication",
|
|
1655
|
+
"members": [
|
|
1656
|
+
{
|
|
1657
|
+
"kind": "field",
|
|
1658
|
+
"name": "config",
|
|
1659
|
+
"type": {
|
|
1660
|
+
"text": "MainRouterConfig"
|
|
1661
|
+
}
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"kind": "field",
|
|
1665
|
+
"name": "connect",
|
|
1666
|
+
"type": {
|
|
1667
|
+
"text": "Connect"
|
|
1668
|
+
}
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
"kind": "field",
|
|
1672
|
+
"name": "session",
|
|
1673
|
+
"type": {
|
|
1674
|
+
"text": "Session"
|
|
1675
|
+
}
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
"kind": "field",
|
|
1679
|
+
"name": "container",
|
|
1680
|
+
"type": {
|
|
1681
|
+
"text": "Container"
|
|
1682
|
+
}
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"kind": "field",
|
|
1686
|
+
"name": "provider",
|
|
1687
|
+
"type": {
|
|
1688
|
+
"text": "HTMLElement"
|
|
1689
|
+
}
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"kind": "field",
|
|
1693
|
+
"name": "ready",
|
|
1694
|
+
"type": {
|
|
1695
|
+
"text": "boolean"
|
|
1696
|
+
},
|
|
1697
|
+
"default": "false"
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
"kind": "method",
|
|
1701
|
+
"name": "onLuminanceToggle"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"kind": "method",
|
|
1705
|
+
"name": "loadRemotes"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"kind": "method",
|
|
1709
|
+
"name": "selectTemplate"
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"kind": "method",
|
|
1713
|
+
"name": "registerDIDependencies",
|
|
1714
|
+
"privacy": "private"
|
|
1715
|
+
}
|
|
1716
|
+
],
|
|
1717
|
+
"superclass": {
|
|
1718
|
+
"name": "FASTElement",
|
|
1719
|
+
"package": "@microsoft/fast-element"
|
|
1720
|
+
},
|
|
1721
|
+
"customElement": true
|
|
1722
|
+
}
|
|
1723
|
+
],
|
|
1555
1724
|
"exports": [
|
|
1556
1725
|
{
|
|
1557
1726
|
"kind": "js",
|
|
1558
|
-
"name": "
|
|
1727
|
+
"name": "MainApplication",
|
|
1559
1728
|
"declaration": {
|
|
1560
|
-
"name": "
|
|
1561
|
-
"
|
|
1729
|
+
"name": "MainApplication",
|
|
1730
|
+
"module": "src/main/main.ts"
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
"kind": "custom-element-definition",
|
|
1735
|
+
"declaration": {
|
|
1736
|
+
"name": "MainApplication",
|
|
1737
|
+
"module": "src/main/main.ts"
|
|
1562
1738
|
}
|
|
1563
1739
|
}
|
|
1564
1740
|
]
|
|
@@ -1840,6 +2016,19 @@
|
|
|
1840
2016
|
"module": "src/entities/entities.ts"
|
|
1841
2017
|
}
|
|
1842
2018
|
},
|
|
2019
|
+
{
|
|
2020
|
+
"kind": "field",
|
|
2021
|
+
"name": "persistFilterModelKey",
|
|
2022
|
+
"type": {
|
|
2023
|
+
"text": "string"
|
|
2024
|
+
},
|
|
2025
|
+
"description": "The key to use for persisting the filter model in local browser or KV storage.",
|
|
2026
|
+
"privacy": "public",
|
|
2027
|
+
"inheritedFrom": {
|
|
2028
|
+
"name": "EntityManagement",
|
|
2029
|
+
"module": "src/entities/entities.ts"
|
|
2030
|
+
}
|
|
2031
|
+
},
|
|
1843
2032
|
{
|
|
1844
2033
|
"kind": "field",
|
|
1845
2034
|
"name": "gridOptions",
|
|
@@ -2359,6 +2548,18 @@
|
|
|
2359
2548
|
"module": "src/entities/entities.ts"
|
|
2360
2549
|
}
|
|
2361
2550
|
},
|
|
2551
|
+
{
|
|
2552
|
+
"name": "persist-filter-model-key",
|
|
2553
|
+
"type": {
|
|
2554
|
+
"text": "string"
|
|
2555
|
+
},
|
|
2556
|
+
"description": "The key to use for persisting the filter model in local browser or KV storage.",
|
|
2557
|
+
"fieldName": "persistFilterModelKey",
|
|
2558
|
+
"inheritedFrom": {
|
|
2559
|
+
"name": "EntityManagement",
|
|
2560
|
+
"module": "src/entities/entities.ts"
|
|
2561
|
+
}
|
|
2562
|
+
},
|
|
2362
2563
|
{
|
|
2363
2564
|
"name": "size-columns-to-fit",
|
|
2364
2565
|
"type": {
|
|
@@ -2617,151 +2818,6 @@
|
|
|
2617
2818
|
}
|
|
2618
2819
|
]
|
|
2619
2820
|
},
|
|
2620
|
-
{
|
|
2621
|
-
"kind": "javascript-module",
|
|
2622
|
-
"path": "src/main/index.ts",
|
|
2623
|
-
"declarations": [],
|
|
2624
|
-
"exports": [
|
|
2625
|
-
{
|
|
2626
|
-
"kind": "js",
|
|
2627
|
-
"name": "*",
|
|
2628
|
-
"declaration": {
|
|
2629
|
-
"name": "*",
|
|
2630
|
-
"package": "./main.template"
|
|
2631
|
-
}
|
|
2632
|
-
},
|
|
2633
|
-
{
|
|
2634
|
-
"kind": "js",
|
|
2635
|
-
"name": "*",
|
|
2636
|
-
"declaration": {
|
|
2637
|
-
"name": "*",
|
|
2638
|
-
"package": "./main"
|
|
2639
|
-
}
|
|
2640
|
-
}
|
|
2641
|
-
]
|
|
2642
|
-
},
|
|
2643
|
-
{
|
|
2644
|
-
"kind": "javascript-module",
|
|
2645
|
-
"path": "src/main/main.styles.ts",
|
|
2646
|
-
"declarations": [
|
|
2647
|
-
{
|
|
2648
|
-
"kind": "variable",
|
|
2649
|
-
"name": "MainStyles",
|
|
2650
|
-
"default": "css`\n ${mixinRobotoFont()}\n :host {\n contain: content;\n }\n\n :host,\n zero-design-system-provider,\n .dynamic-template,\n foundation-router {\n display: flex;\n width: 100%;\n height: 100%;\n }\n\n fast-progress {\n --accent-foreground-rest: #654df9;\n\n height: calc(var(--design-unit) * 1px);\n margin: 0;\n width: 100%;\n }\n`"
|
|
2651
|
-
}
|
|
2652
|
-
],
|
|
2653
|
-
"exports": [
|
|
2654
|
-
{
|
|
2655
|
-
"kind": "js",
|
|
2656
|
-
"name": "MainStyles",
|
|
2657
|
-
"declaration": {
|
|
2658
|
-
"name": "MainStyles",
|
|
2659
|
-
"module": "src/main/main.styles.ts"
|
|
2660
|
-
}
|
|
2661
|
-
}
|
|
2662
|
-
]
|
|
2663
|
-
},
|
|
2664
|
-
{
|
|
2665
|
-
"kind": "javascript-module",
|
|
2666
|
-
"path": "src/main/main.template.ts",
|
|
2667
|
-
"declarations": [],
|
|
2668
|
-
"exports": []
|
|
2669
|
-
},
|
|
2670
|
-
{
|
|
2671
|
-
"kind": "javascript-module",
|
|
2672
|
-
"path": "src/main/main.ts",
|
|
2673
|
-
"declarations": [
|
|
2674
|
-
{
|
|
2675
|
-
"kind": "class",
|
|
2676
|
-
"description": "",
|
|
2677
|
-
"name": "MainApplication",
|
|
2678
|
-
"members": [
|
|
2679
|
-
{
|
|
2680
|
-
"kind": "field",
|
|
2681
|
-
"name": "config",
|
|
2682
|
-
"type": {
|
|
2683
|
-
"text": "MainRouterConfig"
|
|
2684
|
-
}
|
|
2685
|
-
},
|
|
2686
|
-
{
|
|
2687
|
-
"kind": "field",
|
|
2688
|
-
"name": "connect",
|
|
2689
|
-
"type": {
|
|
2690
|
-
"text": "Connect"
|
|
2691
|
-
}
|
|
2692
|
-
},
|
|
2693
|
-
{
|
|
2694
|
-
"kind": "field",
|
|
2695
|
-
"name": "session",
|
|
2696
|
-
"type": {
|
|
2697
|
-
"text": "Session"
|
|
2698
|
-
}
|
|
2699
|
-
},
|
|
2700
|
-
{
|
|
2701
|
-
"kind": "field",
|
|
2702
|
-
"name": "container",
|
|
2703
|
-
"type": {
|
|
2704
|
-
"text": "Container"
|
|
2705
|
-
}
|
|
2706
|
-
},
|
|
2707
|
-
{
|
|
2708
|
-
"kind": "field",
|
|
2709
|
-
"name": "provider",
|
|
2710
|
-
"type": {
|
|
2711
|
-
"text": "HTMLElement"
|
|
2712
|
-
}
|
|
2713
|
-
},
|
|
2714
|
-
{
|
|
2715
|
-
"kind": "field",
|
|
2716
|
-
"name": "ready",
|
|
2717
|
-
"type": {
|
|
2718
|
-
"text": "boolean"
|
|
2719
|
-
},
|
|
2720
|
-
"default": "false"
|
|
2721
|
-
},
|
|
2722
|
-
{
|
|
2723
|
-
"kind": "method",
|
|
2724
|
-
"name": "onLuminanceToggle"
|
|
2725
|
-
},
|
|
2726
|
-
{
|
|
2727
|
-
"kind": "method",
|
|
2728
|
-
"name": "loadRemotes"
|
|
2729
|
-
},
|
|
2730
|
-
{
|
|
2731
|
-
"kind": "method",
|
|
2732
|
-
"name": "selectTemplate"
|
|
2733
|
-
},
|
|
2734
|
-
{
|
|
2735
|
-
"kind": "method",
|
|
2736
|
-
"name": "registerDIDependencies",
|
|
2737
|
-
"privacy": "private"
|
|
2738
|
-
}
|
|
2739
|
-
],
|
|
2740
|
-
"superclass": {
|
|
2741
|
-
"name": "FASTElement",
|
|
2742
|
-
"package": "@microsoft/fast-element"
|
|
2743
|
-
},
|
|
2744
|
-
"customElement": true
|
|
2745
|
-
}
|
|
2746
|
-
],
|
|
2747
|
-
"exports": [
|
|
2748
|
-
{
|
|
2749
|
-
"kind": "js",
|
|
2750
|
-
"name": "MainApplication",
|
|
2751
|
-
"declaration": {
|
|
2752
|
-
"name": "MainApplication",
|
|
2753
|
-
"module": "src/main/main.ts"
|
|
2754
|
-
}
|
|
2755
|
-
},
|
|
2756
|
-
{
|
|
2757
|
-
"kind": "custom-element-definition",
|
|
2758
|
-
"declaration": {
|
|
2759
|
-
"name": "MainApplication",
|
|
2760
|
-
"module": "src/main/main.ts"
|
|
2761
|
-
}
|
|
2762
|
-
}
|
|
2763
|
-
]
|
|
2764
|
-
},
|
|
2765
2821
|
{
|
|
2766
2822
|
"kind": "javascript-module",
|
|
2767
2823
|
"path": "src/users/users.template.ts",
|
|
@@ -2826,6 +2882,15 @@
|
|
|
2826
2882
|
"description": "This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.",
|
|
2827
2883
|
"privacy": "public"
|
|
2828
2884
|
},
|
|
2885
|
+
{
|
|
2886
|
+
"kind": "field",
|
|
2887
|
+
"name": "persistFilterModelKey",
|
|
2888
|
+
"type": {
|
|
2889
|
+
"text": "string"
|
|
2890
|
+
},
|
|
2891
|
+
"description": "The key to use for persisting the filter model in local browser or KV storage.",
|
|
2892
|
+
"privacy": "public"
|
|
2893
|
+
},
|
|
2829
2894
|
{
|
|
2830
2895
|
"kind": "field",
|
|
2831
2896
|
"name": "enableSearchBar",
|
|
@@ -2956,6 +3021,14 @@
|
|
|
2956
3021
|
"description": "This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.",
|
|
2957
3022
|
"fieldName": "persistColumnStateKey"
|
|
2958
3023
|
},
|
|
3024
|
+
{
|
|
3025
|
+
"name": "persist-filter-model-key",
|
|
3026
|
+
"type": {
|
|
3027
|
+
"text": "string"
|
|
3028
|
+
},
|
|
3029
|
+
"description": "The key to use for persisting the filter model in local browser or KV storage.",
|
|
3030
|
+
"fieldName": "persistFilterModelKey"
|
|
3031
|
+
},
|
|
2959
3032
|
{
|
|
2960
3033
|
"name": "enable-search-bar",
|
|
2961
3034
|
"type": {
|
|
@@ -158,9 +158,6 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
158
158
|
readonly previousSibling: ChildNode;
|
|
159
159
|
textContent: string;
|
|
160
160
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
161
|
-
/**
|
|
162
|
-
* @internal
|
|
163
|
-
*/
|
|
164
161
|
compareDocumentPosition(other: Node): number;
|
|
165
162
|
contains(other: Node): boolean;
|
|
166
163
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
@@ -192,9 +189,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
192
189
|
readonly NOTATION_NODE: number;
|
|
193
190
|
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
194
191
|
readonly TEXT_NODE: number;
|
|
195
|
-
dispatchEvent(event: Event): boolean;
|
|
196
|
-
|
|
197
|
-
*
|
|
192
|
+
dispatchEvent(event: Event): boolean;
|
|
193
|
+
/**
|
|
194
|
+
* Allows configuration of the search bar component, if not provided it would build configuration based on columns in the grid
|
|
195
|
+
* * @public
|
|
198
196
|
*/
|
|
199
197
|
ariaAtomic: string;
|
|
200
198
|
ariaAutoComplete: string;
|
|
@@ -246,6 +244,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
246
244
|
readonly nextElementSibling: Element;
|
|
247
245
|
readonly previousElementSibling: Element;
|
|
248
246
|
readonly childElementCount: number;
|
|
247
|
+
/**
|
|
248
|
+
* Determines whether the button edit should be hidden in the column
|
|
249
|
+
* @internal
|
|
250
|
+
*/
|
|
249
251
|
readonly children: HTMLCollection;
|
|
250
252
|
readonly firstElementChild: Element;
|
|
251
253
|
readonly lastElementChild: Element;
|
|
@@ -320,11 +322,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
320
322
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
321
323
|
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
322
324
|
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
323
|
-
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
324
|
-
* Show the entity create form
|
|
325
|
-
* Sets the initial value on the form to be defaultEntityValues if present.
|
|
326
|
-
* @internal
|
|
327
|
-
*/
|
|
325
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
328
326
|
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
329
327
|
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
330
328
|
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
@@ -536,6 +534,16 @@ export declare class EntityManagement extends EntityManagement_base {
|
|
|
536
534
|
* @public
|
|
537
535
|
*/
|
|
538
536
|
persistColumnStateKey: string;
|
|
537
|
+
/**
|
|
538
|
+
* The key to use for persisting the filter model in local browser or KV storage.
|
|
539
|
+
*
|
|
540
|
+
* @remarks
|
|
541
|
+
*
|
|
542
|
+
* Default behaviour when unset is to not save the filter config.
|
|
543
|
+
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
544
|
+
* @public
|
|
545
|
+
*/
|
|
546
|
+
persistFilterModelKey: string;
|
|
539
547
|
/**
|
|
540
548
|
* GridOptions to be passed down from application
|
|
541
549
|
* @public
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AACrF,OAAO,EACL,OAAO,EACP,iBAAiB,EAEjB,YAAY,EAEb,MAAM,+BAA+B,CAAC;AACvC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAa,MAAM,+BAA+B,CAAC;AAEzE,OAAO,EAAE,KAAK,EAAe,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAE7E,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAIL,WAAW,EAGZ,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAMzF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,MAAM,uBAAuB,GAAG,IAAI,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAyG5E;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAkDH;;;OAGG
|
|
1
|
+
{"version":3,"file":"entities.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AACrF,OAAO,EACL,OAAO,EACP,iBAAiB,EAEjB,YAAY,EAEb,MAAM,+BAA+B,CAAC;AACvC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAa,MAAM,+BAA+B,CAAC;AAEzE,OAAO,EAAE,KAAK,EAAe,MAAM,4BAA4B,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAE7E,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAIL,WAAW,EAGZ,MAAM,yBAAyB,CAAC;AAEjC,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAMzF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,MAAM,uBAAuB,GAAG,IAAI,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAyG5E;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAkDH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAoKH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4DH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AArYL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,qBAKa,gBAAiB,SAAQ,qBAA2B;IAC/D;;;;;;;;OAQG;IACM,SAAS,CAAC,OAAO,EAAG,OAAO,CAAC;IAErC;;;OAGG;IAC0C,MAAM,EAAE,MAAM,CAAU;IAErE;;;OAGG;IACG,YAAY,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACG,SAAS,EAAE,MAAM,CAAC;IACxB;;;;;;OAMG;IACS,WAAW,EAAE,CAAC,MAAM,KAAA,KAAK,GAAG,CAAC;IACzC;;OAEG;IACwB,QAAQ,EAAE,OAAO,CAAC;IAE7C;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAC;IAE1B;;;OAGG;IACG,KAAK,EAAE,MAAM,CAAC;IAEpB;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAC;IAE1B;;;;OAIG;IACgD,QAAQ,UAAS;IAEpE;;;;OAIG;IACmD,WAAW,UAAS;IAE1E;;;;OAIG;IACmD,WAAW,UAAQ;IAEzE;;;;OAIG;IACmC,YAAY,SAAY;IAE9D;;;;OAIG;IAC2D,kBAAkB,UAAS;IAEzF;;;OAGG;IAC0D,iBAAiB,UAAS;IAEvF;;;;OAIG;IACqC,cAAc,EAAE,cAAc,CAAY;IAElF;;;;;;;;;;OAUG;IAC8C,qBAAqB,EAAE,MAAM,CAAC;IAE/E;;;;;;;;OAQG;IAC8C,qBAAqB,EAAE,MAAM,CAAC;IAE/E;;;OAGG;IACS,WAAW,EAAE,WAAW,CAAC;IAErC;;;OAGG;IACS,OAAO,EAAE,MAAM,EAAE,CAAC;IAE9B;;;;;;;OAOG;IACS,gBAAgB,EAAE,uBAAuB,CAAmC;IACxF;;OAEG;IACS,YAAY,EAAE,QAAQ,CAAC;IACnC;;;OAGG;IACS,kBAAkB,EAAE,QAAQ,CAAC;IACzC;;;OAGG;IACS,kBAAkB,EAAE,QAAQ,CAAC;IAEzC;;;OAGG;IACS,gBAAgB,EAAE,MAAM,CAAC;IAErC;;;OAGG;IACS,aAAa,EAAE,aAAa,EAAE,CAAa;IAEvD;;;;;;;OAOG;IACS,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAEpD;;;OAGG;IACS,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAElD;;;OAGG;IACS,mBAAmB,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACzD;;OAEG;IACS,UAAU,EAAE,OAAO,CAAC;IAEhC;;;OAGG;IACS,aAAa,EAAE,aAAa,CAAC;IACzC;;OAEG;IACS,gBAAgB,EAAE,OAAO,CAAS;IAC9C,OAAO,CAAC,uBAAuB;IAS/B;;OAEG;IACI,eAAe,EAAE,KAAK,CAAC;IAE9B;;;OAGG;IAC0D,gBAAgB,EAAE,OAAO,CAAC;IACvF;;;OAGG;IACwD,eAAe,EAAE,OAAO,CAAC;IACpF;;;OAGG;IACgD,QAAQ,EAAE,OAAO,CAAS;IAC7E;;;OAGG;IACkD,UAAU,EAAE,OAAO,CAAS;IACjF;;;OAGG;IACwD,eAAe,EAAE,OAAO,CAAS;IAE5F;;;;OAIG;IACsC,cAAc,EAAE,eAAe,CAAC;IAEzE;;;OAGG;IACS,eAAe,EAAE,eAAe,EAAE,CAAC;IAE/C;;;OAGG;IACoC,aAAa,EAAE,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAW;IAE5F;;;OAGG;IACwC,gBAAgB,EAAE,gBAAgB,CACnD;IAE1B;;;OAGG;IACqC,aAAa,EAAE,gBAAgB,CAC5C;IAE3B;;OAEG;IAC2C,kBAAkB,EAAE,MAAM,CAAO;IAE/E;;;OAGG;IACI,eAAe,MAAC;IAEvB;;;;OAIG;IACI,2BAA2B,CAAC,YAAY,EAAE,UAAU,GAAG,aAAa;IAa3E;;;OAGG;IACH,IAAI,cAAc,WAEjB;IAED;;;OAGG;IACH,IAAI,sBAAsB,IAAI,OAAO,CAEpC;IAED;;;OAGG;IACH,IAAI,wBAAwB,IAAI,OAAO,CAEtC;IAED;;;OAGG;IACH,IAAI,iBAAiB,IAAI,OAAO,CAE/B;IAED;;;;;;OAMG;IACI,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO;IAKlD;;;OAGG;IACG,iBAAiB;IAqBvB;;OAEG;IACG,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;IAmB3C;;;OAGG;YACW,yBAAyB;IAkBvC;;;OAGG;IACM,SAAS,IAAI,IAAI;IA4B1B;;;;OAIG;IACU,mBAAmB;IAKhC;;;;;OAKG;IACH,OAAO,CAAC,YAAY,CAElB;IAEF;;;;OAIG;IACI,YAAY;IASnB;;;;;OAKG;IACU,UAAU,CAAC,EAAE,MAAM,EAAE,EAAE,WAAW;IA4B/C,OAAO,CAAC,UAAU;IAMlB;;OAEG;IACI,UAAU;IAMjB;;OAEG;IACH,IACI,eAAe,0EAElB;IAGD;;OAEG;IACH,IAAI,sBAAsB,IAAI,OAAO,CAEpC;IAED;;OAEG;IACI,aAAa,CAAC,KAAK,EAAE,WAAW,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;IAe9D,OAAO,CAAC,kBAAkB;IAQ1B,OAAO,CAAC,mBAAmB;IAiB3B,OAAO,CAAC,cAAc;IAItB,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,yBAAyB;IAgCjC,OAAO,CAAC,kBAAkB;IAiB1B;;;;;OAKG;IACG,YAAY,CAAC,CAAC,EAAE,WAAW;IAKjC;;OAEG;IACG,aAAa;IAwBnB,OAAO,CAAC,sBAAsB;IAc9B;;;;OAIG;IACI,QAAQ,CAAC,MAAM,EAAE,QAAQ,GAAG,MAAM,GAAG,QAAQ;IAIpD;;;OAGG;IACI,YAAY,CAAC,IAAI,EAAE,aAAa,GAAG,UAAU,CAAC,MAAM,EAAE,YAAY,CAAC,EAAE,YAAY,EAAE;IA8C1F;;;OAGG;IACH,OAAO,CAAC,mBAAmB;IAI3B;;;;OAIG;IACH,OAAO,CAAC,uBAAuB;IAkC/B;;;OAGG;IACI,gBAAgB,CAAC,KAAK,EAAE,WAAW,CAAC,qBAAqB,CAAC;CASlE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entities.template.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.template.ts"],"names":[],"mappings":"AAKA,OAAO,EAAiB,gBAAgB,EAAc,MAAM,UAAU,CAAC;AACvE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAoBnD;;GAEG;AACH,eAAO,MAAM,mBAAmB,0BAAsB,gBAAgB,0EAkDrE,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,sBAAsB,wFAgBlC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,wFAQzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe,wFAc3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"entities.template.d.ts","sourceRoot":"","sources":["../../../src/entities/entities.template.ts"],"names":[],"mappings":"AAKA,OAAO,EAAiB,gBAAgB,EAAc,MAAM,UAAU,CAAC;AACvE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAoBnD;;GAEG;AACH,eAAO,MAAM,mBAAmB,0BAAsB,gBAAgB,0EAkDrE,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,sBAAsB,wFAgBlC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,wFAQzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe,wFAc3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,wFA0D/B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,QAAQ,uEAEpB,CAAC"}
|
package/dist/dts/list/list.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/list/list.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAyB,MAAM,yBAAyB,CAAC;AAE1F,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AAExD,OAAO,EAEL,wBAAwB,EACxB,WAAW,EACZ,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAAE,cAAc,EAA2C,MAAM,uBAAuB,CAAC;AAChG,OAAO,EAIL,WAAW,EAIZ,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKpE,qBAKa,IAAK,SAAQ,SAA2B;IACnD;;;OAGG;IAC0C,MAAM,EAAE,MAAM,CAAU;IAE/D,YAAY,EAAE,MAAM,CAAM;IAC1B,KAAK,EAAE,MAAM,CAAM;IACwB,qBAAqB,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,OAAO,CAAC;IACjD,YAAY,EAAE,MAAM,CAAC;IACA,eAAe,EAAE,OAAO,CAAC;IACjC,QAAQ,UAAS;IACd,WAAW,UAAS;IACpB,WAAW,UAAQ;IACX,kBAAkB,UAAS;IAC5B,iBAAiB,UAAS;IACpC,QAAQ,UAAS;IACf,UAAU,UAAS;IAChC,cAAc,EAAE,cAAc,CAAY;IACzC,cAAc,EAAE,eAAe,CAAC;IAClE,IAAI,EAAG,WAAW,CAAC;IACnB,UAAU,EAAG,wBAAwB,CAAC;IACjC,WAAW,EAAE,WAAW,CAAC;IACzB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,gBAAgB,EAAE,uBAAuB,CAAC;IAC1C,mBAAmB,QAAM;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IAEvB,SAAS,CAAC,OAAO,EAAG,OAAO,CAAC;IAErC,IAAI,sBAAsB,IAAI,OAAO,CAEpC;IAED,iBAAiB;YAgEH,oBAAoB;IA+C5B,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;IAa3C,IACI,QAAQ,WAEX;IAED,IACI,MAAM,WAET;IAED,IACI,UAAU,YAEb;IAED,IACI,OAAO,WAEV;IAED,IACI,OAAO,WAEV;IAED,IACI,UAAU,YAEb;IAED,IACI,OAAO,WAEV;IAED,IACI,eAAe,WAElB;IAED,IACI,OAAO,QAEV;IAED,IACI,OAAO,YAEV;IAED,gBAAgB,CAAC,CAAC,EAAE,WAAW,GAAG,IAAI;IAItC,mBAAmB,CAAC,CAAC,EAAE,WAAW,GAAG,IAAI;IAIzC,oBAAoB,CAAC,CAAC,EAAE,WAAW,GAAG,IAAI;IAI1C,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,mBAAmB;IAK3B,OAAO,CAAC,MAAM;IAId,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,IAAI,CAEV;IAEI,MAAM,CAAC,CAAC,KAAA;CAGf"}
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/list/list.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAyB,MAAM,yBAAyB,CAAC;AAE1F,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AAExD,OAAO,EAEL,wBAAwB,EACxB,WAAW,EACZ,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAC7D,OAAO,EAAE,cAAc,EAA2C,MAAM,uBAAuB,CAAC;AAChG,OAAO,EAIL,WAAW,EAIZ,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKpE,qBAKa,IAAK,SAAQ,SAA2B;IACnD;;;OAGG;IAC0C,MAAM,EAAE,MAAM,CAAU;IAE/D,YAAY,EAAE,MAAM,CAAM;IAC1B,KAAK,EAAE,MAAM,CAAM;IACwB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,qBAAqB,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,OAAO,CAAC;IACjD,YAAY,EAAE,MAAM,CAAC;IACA,eAAe,EAAE,OAAO,CAAC;IACjC,QAAQ,UAAS;IACd,WAAW,UAAS;IACpB,WAAW,UAAQ;IACX,kBAAkB,UAAS;IAC5B,iBAAiB,UAAS;IACpC,QAAQ,UAAS;IACf,UAAU,UAAS;IAChC,cAAc,EAAE,cAAc,CAAY;IACzC,cAAc,EAAE,eAAe,CAAC;IAClE,IAAI,EAAG,WAAW,CAAC;IACnB,UAAU,EAAG,wBAAwB,CAAC;IACjC,WAAW,EAAE,WAAW,CAAC;IACzB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,gBAAgB,EAAE,uBAAuB,CAAC;IAC1C,mBAAmB,QAAM;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IAEvB,SAAS,CAAC,OAAO,EAAG,OAAO,CAAC;IAErC,IAAI,sBAAsB,IAAI,OAAO,CAEpC;IAED,iBAAiB;YAgEH,oBAAoB;IA+C5B,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;IAa3C,IACI,QAAQ,WAEX;IAED,IACI,MAAM,WAET;IAED,IACI,UAAU,YAEb;IAED,IACI,OAAO,WAEV;IAED,IACI,OAAO,WAEV;IAED,IACI,UAAU,YAEb;IAED,IACI,OAAO,WAEV;IAED,IACI,eAAe,WAElB;IAED,IACI,OAAO,QAEV;IAED,IACI,OAAO,YAEV;IAED,gBAAgB,CAAC,CAAC,EAAE,WAAW,GAAG,IAAI;IAItC,mBAAmB,CAAC,CAAC,EAAE,WAAW,GAAG,IAAI;IAIzC,oBAAoB,CAAC,CAAC,EAAE,WAAW,GAAG,IAAI;IAI1C,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,mBAAmB;IAK3B,OAAO,CAAC,MAAM;IAId,OAAO,CAAC,gBAAgB;IAIxB,OAAO,CAAC,IAAI,CAEV;IAEI,MAAM,CAAC,CAAC,KAAA;CAGf"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.template.d.ts","sourceRoot":"","sources":["../../../src/list/list.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAyCnC,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"list.template.d.ts","sourceRoot":"","sources":["../../../src/list/list.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAyCnC,eAAO,MAAM,eAAe,4EAkD3B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,YAAY,2DAExB,CAAC"}
|
|
@@ -81,9 +81,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
81
81
|
readonly part: DOMTokenList;
|
|
82
82
|
readonly prefix: string;
|
|
83
83
|
readonly scrollHeight: number;
|
|
84
|
-
/**
|
|
85
|
-
* Column definition, default to the UsersColumnConfig
|
|
86
|
-
*/
|
|
87
84
|
scrollLeft: number;
|
|
88
85
|
scrollTop: number;
|
|
89
86
|
readonly scrollWidth: number;
|
|
@@ -112,6 +109,10 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
112
109
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
113
110
|
hasAttributes(): boolean;
|
|
114
111
|
hasPointerCapture(pointerId: number): boolean;
|
|
112
|
+
/**
|
|
113
|
+
* Definition of the `DATASERVER` query which is used when managing Counterpartys
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
115
116
|
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
116
117
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
117
118
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
@@ -443,9 +444,22 @@ export declare class Users extends Users_base {
|
|
|
443
444
|
* Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns.
|
|
444
445
|
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
445
446
|
* There is an option on the grid for the user to reset the table to the default layout if they wish.
|
|
447
|
+
*
|
|
448
|
+
* This does *not* store the filter state, to store that use the separate `persisted-filter-model-key` attribute
|
|
446
449
|
* @public
|
|
447
450
|
*/
|
|
448
451
|
persistColumnStateKey: string;
|
|
452
|
+
/**
|
|
453
|
+
* The key to use for persisting the filter model in local browser or KV storage.
|
|
454
|
+
*
|
|
455
|
+
* @remarks
|
|
456
|
+
*
|
|
457
|
+
* Default behaviour when unset is to not save the filter config.
|
|
458
|
+
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
459
|
+
*
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
462
|
+
persistFilterModelKey: string;
|
|
449
463
|
/**
|
|
450
464
|
* This attribute controls whether to enable the search-bar.
|
|
451
465
|
* @public
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAIhF,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7F,OAAO,EAAiC,WAAW,EAAc,MAAM,yBAAyB,CAAC;AACjG,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAQ3C;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;IAoC7B,CAAC
|
|
1
|
+
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/users/users.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAIhF,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7F,OAAO,EAAiC,WAAW,EAAc,MAAM,yBAAyB,CAAC;AACjG,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAQ3C;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;IAoC7B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAgOA;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAjOL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,qBASa,KAAM,SAAQ,UAA2B;IACpD;;;;;;;;OAQG;IACM,OAAO,CAAC,OAAO,CAAU;IAElC;;;;;;;;OAQG;IACG,OAAO,CAAC,IAAI,CAAO;IAEzB;;;;;;;OAOG;IACS,gBAAgB,EAAE,uBAAuB,CAAmC;IAExF;;;OAGG;IAC0C,MAAM,EAAE,MAAM,CAAU;IAErE;;;OAGG;IACG,YAAY,SAAe;IAEjC;;;;;;;;;;;OAWG;IAC8C,qBAAqB,EAAE,MAAM,CAClD;IAE5B;;;;;;;;;OASG;IAC8C,qBAAqB,EAAE,MAAM,CAAC;IAE/E;;;OAGG;IACwD,eAAe,EAAE,OAAO,CAAS;IAE5F;;;;OAIG;IACqC,cAAc,EAAE,cAAc,CAAY;IAElF,IAAI,sBAAsB,IAAI,OAAO,CAEpC;IAED;;;OAGG;IACS,WAAW,EAAE,WAAW,CAAC;IAErC;;;;;OAKG;IACI,YAAY;;;;;;;;;IAYnB;;;;;OAKG;IACI,YAAY;;;;;IAYnB;;OAEG;IACS,OAAO,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,WAAW,CAAC,GAAG,CAAC,CAAC,EAAE,CAAqB;IAEhE,sBAAsB,EAAE,eAAe,EAAE,CAAM;IAC/C,sBAAsB,EAAE,eAAe,EAAE,CAAM;IAE/C,aAAa,EAAE,OAAO,CAAC;IACnC,OAAO,CAAC,aAAa,CAAS;IAE9B;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACS,WAAW,EAAE,MAAM,CAAC;IAEhC;;;OAGG;IACG,QAAQ,EAAE,MAAM,CAAqB;IAE3C;;;OAGG;IACG,cAAc,EAAE,MAAM,CAAU;IAEtC;;;OAGG;IACG,WAAW,EAAE,MAAM,CAAkB;IAE3C;;;OAGG;IACG,yBAAyB,EAAE,MAAM,CAAuB;IAE9D;;OAEG;;IAaG,iBAAiB;IAgBjB,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;IASlC,SAAS,IAAI,IAAI;IAe1B;;;OAGG;IACH,sBAAsB,CAAC,MAAM,KAAA;;;;;;;;IAW7B;;;;;;;;OAQG;IACG,YAAY,CAAC,MAAM,KAAA;IAoCzB;;OAEG;IACG,YAAY,CAAC,IAAI,KAAA;;;;;;;;;;;;;;;CAwBxB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"users.template.d.ts","sourceRoot":"","sources":["../../../src/users/users.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAoFrC,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"users.template.d.ts","sourceRoot":"","sources":["../../../src/users/users.template.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAoFrC,eAAO,MAAM,gBAAgB,6EAsC5B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,aAAa,4DAEzB,CAAC"}
|
|
@@ -709,6 +709,9 @@ __decorate([
|
|
|
709
709
|
__decorate([
|
|
710
710
|
attr({ attribute: 'persist-column-state-key' })
|
|
711
711
|
], EntityManagement.prototype, "persistColumnStateKey", void 0);
|
|
712
|
+
__decorate([
|
|
713
|
+
attr({ attribute: 'persist-filter-model-key' })
|
|
714
|
+
], EntityManagement.prototype, "persistFilterModelKey", void 0);
|
|
712
715
|
__decorate([
|
|
713
716
|
observable
|
|
714
717
|
], EntityManagement.prototype, "gridOptions", void 0);
|
|
@@ -113,6 +113,7 @@ export const getPrefixedEntities = (prefix) => html `
|
|
|
113
113
|
enable-cell-flashing=${(x) => x.enableCellFlashing}
|
|
114
114
|
enable-row-flashing=${(x) => x.enableRowFlashing}
|
|
115
115
|
persist-column-state-key=${(x) => x.persistColumnStateKey}
|
|
116
|
+
persist-filter-model-key=${(x) => x.persistFilterModelKey}
|
|
116
117
|
row-selection=${(x) => x.rowSelection}
|
|
117
118
|
size-columns-to-fit=${(x) => x.sizeColumnsToFit}
|
|
118
119
|
enable-filter-bar=${(x) => x.enableFilterBar}
|
package/dist/esm/list/list.js
CHANGED
|
@@ -207,6 +207,9 @@ __decorate([
|
|
|
207
207
|
__decorate([
|
|
208
208
|
attr({ attribute: 'persist-column-state-key' })
|
|
209
209
|
], List.prototype, "persistColumnStateKey", void 0);
|
|
210
|
+
__decorate([
|
|
211
|
+
attr({ attribute: 'persist-filter-model-key' })
|
|
212
|
+
], List.prototype, "persistFilterModelKey", void 0);
|
|
210
213
|
__decorate([
|
|
211
214
|
attr({ mode: 'boolean', attribute: 'size-columns-to-fit' })
|
|
212
215
|
], List.prototype, "sizeColumnsToFit", void 0);
|
|
@@ -53,6 +53,7 @@ export const getPrefixedList = (prefix) => html `
|
|
|
53
53
|
auto-cell-renderer-by-type
|
|
54
54
|
rowSelection="${(x) => x.rowSelection}"
|
|
55
55
|
persist-column-state-key=${(x) => x.persistColumnStateKey}
|
|
56
|
+
persist-filter-model-key=${(x) => x.persistFilterModelKey}
|
|
56
57
|
?only-template-col-defs=${(x) => !!x.columns}
|
|
57
58
|
readOnlyEdit="true"
|
|
58
59
|
tooltipMouseTrack="true"
|
package/dist/esm/users/users.js
CHANGED
|
@@ -128,6 +128,8 @@ let Users = class Users extends LifecycleMixin(FASTElement) {
|
|
|
128
128
|
* Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns.
|
|
129
129
|
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
130
130
|
* There is an option on the grid for the user to reset the table to the default layout if they wish.
|
|
131
|
+
*
|
|
132
|
+
* This does *not* store the filter state, to store that use the separate `persisted-filter-model-key` attribute
|
|
131
133
|
* @public
|
|
132
134
|
*/
|
|
133
135
|
this.persistColumnStateKey = 'entity_users_management';
|
|
@@ -311,6 +313,9 @@ __decorate([
|
|
|
311
313
|
__decorate([
|
|
312
314
|
attr({ attribute: 'persist-column-state-key' })
|
|
313
315
|
], Users.prototype, "persistColumnStateKey", void 0);
|
|
316
|
+
__decorate([
|
|
317
|
+
attr({ attribute: 'persist-filter-model-key' })
|
|
318
|
+
], Users.prototype, "persistFilterModelKey", void 0);
|
|
314
319
|
__decorate([
|
|
315
320
|
attr({ mode: 'boolean', attribute: 'enable-search-bar' })
|
|
316
321
|
], Users.prototype, "enableSearchBar", void 0);
|
|
@@ -84,6 +84,7 @@ export const getPrefixedUsers = (prefix) => html `
|
|
|
84
84
|
:updateFormUiSchema=${(x) => editUserSchema(true, x.allAccessType, x.entityID, x.entityLabel, x.entityLabelKey, x.availableEntitiesEndpoint, x.additionalUpdateFields)}
|
|
85
85
|
:createFormUiSchema=${(x) => editUserSchema(false, x.allAccessType, x.entityID, x.entityLabel, x.entityLabelKey, x.availableEntitiesEndpoint, x.additionalCreateFields)}
|
|
86
86
|
persist-column-state-key=${(x) => x.persistColumnStateKey}
|
|
87
|
+
persist-filter-model-key=${(x) => x.persistFilterModelKey}
|
|
87
88
|
:columns=${(x) => [...x.columns, ...x.entityColumn(), x.statusColumn()]}
|
|
88
89
|
:datasourceConfig=${(x) => x.datasourceConfig}
|
|
89
90
|
design-system-prefix=${prefix}
|
|
@@ -953,6 +953,36 @@
|
|
|
953
953
|
"isProtected": false,
|
|
954
954
|
"isAbstract": false
|
|
955
955
|
},
|
|
956
|
+
{
|
|
957
|
+
"kind": "Property",
|
|
958
|
+
"canonicalReference": "@genesislcap/foundation-entity-management!EntityManagement#persistFilterModelKey:member",
|
|
959
|
+
"docComment": "/**\n * The key to use for persisting the filter model in local browser or KV storage.\n *\n * @remarks\n *\n * Default behaviour when unset is to not save the filter config. This value must be unique for each table in your app otherwise the persisted data will be corrupted.\n *\n * @public\n */\n",
|
|
960
|
+
"excerptTokens": [
|
|
961
|
+
{
|
|
962
|
+
"kind": "Content",
|
|
963
|
+
"text": "persistFilterModelKey: "
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"kind": "Content",
|
|
967
|
+
"text": "string"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"kind": "Content",
|
|
971
|
+
"text": ";"
|
|
972
|
+
}
|
|
973
|
+
],
|
|
974
|
+
"isReadonly": false,
|
|
975
|
+
"isOptional": false,
|
|
976
|
+
"releaseTag": "Public",
|
|
977
|
+
"name": "persistFilterModelKey",
|
|
978
|
+
"propertyTypeTokenRange": {
|
|
979
|
+
"startIndex": 1,
|
|
980
|
+
"endIndex": 2
|
|
981
|
+
},
|
|
982
|
+
"isStatic": false,
|
|
983
|
+
"isProtected": false,
|
|
984
|
+
"isAbstract": false
|
|
985
|
+
},
|
|
956
986
|
{
|
|
957
987
|
"kind": "Property",
|
|
958
988
|
"canonicalReference": "@genesislcap/foundation-entity-management!EntityManagement#prefix:member",
|
|
@@ -2294,7 +2324,7 @@
|
|
|
2294
2324
|
{
|
|
2295
2325
|
"kind": "Property",
|
|
2296
2326
|
"canonicalReference": "@genesislcap/foundation-entity-management!Users#persistColumnStateKey:member",
|
|
2297
|
-
"docComment": "/**\n * This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.\n *\n * @remarks\n *\n * Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns. This value must be unique for each table in your app otherwise the persisted data will be corrupted. There is an option on the grid for the user to reset the table to the default layout if they wish.\n *\n * @public\n */\n",
|
|
2327
|
+
"docComment": "/**\n * This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to `entity_users_management`.\n *\n * @remarks\n *\n * Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns. This value must be unique for each table in your app otherwise the persisted data will be corrupted. There is an option on the grid for the user to reset the table to the default layout if they wish.\n *\n * This does *not* store the filter state, to store that use the separate `persisted-filter-model-key` attribute\n *\n * @public\n */\n",
|
|
2298
2328
|
"excerptTokens": [
|
|
2299
2329
|
{
|
|
2300
2330
|
"kind": "Content",
|
|
@@ -2321,6 +2351,36 @@
|
|
|
2321
2351
|
"isProtected": false,
|
|
2322
2352
|
"isAbstract": false
|
|
2323
2353
|
},
|
|
2354
|
+
{
|
|
2355
|
+
"kind": "Property",
|
|
2356
|
+
"canonicalReference": "@genesislcap/foundation-entity-management!Users#persistFilterModelKey:member",
|
|
2357
|
+
"docComment": "/**\n * The key to use for persisting the filter model in local browser or KV storage.\n *\n * @remarks\n *\n * Default behaviour when unset is to not save the filter config. This value must be unique for each table in your app otherwise the persisted data will be corrupted.\n *\n * @public\n */\n",
|
|
2358
|
+
"excerptTokens": [
|
|
2359
|
+
{
|
|
2360
|
+
"kind": "Content",
|
|
2361
|
+
"text": "persistFilterModelKey: "
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"kind": "Content",
|
|
2365
|
+
"text": "string"
|
|
2366
|
+
},
|
|
2367
|
+
{
|
|
2368
|
+
"kind": "Content",
|
|
2369
|
+
"text": ";"
|
|
2370
|
+
}
|
|
2371
|
+
],
|
|
2372
|
+
"isReadonly": false,
|
|
2373
|
+
"isOptional": false,
|
|
2374
|
+
"releaseTag": "Public",
|
|
2375
|
+
"name": "persistFilterModelKey",
|
|
2376
|
+
"propertyTypeTokenRange": {
|
|
2377
|
+
"startIndex": 1,
|
|
2378
|
+
"endIndex": 2
|
|
2379
|
+
},
|
|
2380
|
+
"isStatic": false,
|
|
2381
|
+
"isProtected": false,
|
|
2382
|
+
"isAbstract": false
|
|
2383
|
+
},
|
|
2324
2384
|
{
|
|
2325
2385
|
"kind": "Property",
|
|
2326
2386
|
"canonicalReference": "@genesislcap/foundation-entity-management!Users#prefix:member",
|
|
@@ -259,6 +259,16 @@ export declare class EntityManagement extends EntityManagement_base {
|
|
|
259
259
|
* @public
|
|
260
260
|
*/
|
|
261
261
|
persistColumnStateKey: string;
|
|
262
|
+
/**
|
|
263
|
+
* The key to use for persisting the filter model in local browser or KV storage.
|
|
264
|
+
*
|
|
265
|
+
* @remarks
|
|
266
|
+
*
|
|
267
|
+
* Default behaviour when unset is to not save the filter config.
|
|
268
|
+
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
persistFilterModelKey: string;
|
|
262
272
|
/**
|
|
263
273
|
* GridOptions to be passed down from application
|
|
264
274
|
* @public
|
|
@@ -672,9 +682,6 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
672
682
|
readonly previousSibling: ChildNode;
|
|
673
683
|
textContent: string;
|
|
674
684
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
|
675
|
-
/**
|
|
676
|
-
* @internal
|
|
677
|
-
*/
|
|
678
685
|
compareDocumentPosition(other: Node): number;
|
|
679
686
|
contains(other: Node): boolean;
|
|
680
687
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
@@ -706,10 +713,11 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
706
713
|
readonly NOTATION_NODE: number;
|
|
707
714
|
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
708
715
|
readonly TEXT_NODE: number;
|
|
709
|
-
dispatchEvent(event: Event): boolean;
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
716
|
+
dispatchEvent(event: Event): boolean;
|
|
717
|
+
/**
|
|
718
|
+
* Allows configuration of the search bar component, if not provided it would build configuration based on columns in the grid
|
|
719
|
+
* * @public
|
|
720
|
+
*/
|
|
713
721
|
ariaAtomic: string;
|
|
714
722
|
ariaAutoComplete: string;
|
|
715
723
|
ariaBusy: string;
|
|
@@ -760,6 +768,10 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
760
768
|
readonly nextElementSibling: Element;
|
|
761
769
|
readonly previousElementSibling: Element;
|
|
762
770
|
readonly childElementCount: number;
|
|
771
|
+
/**
|
|
772
|
+
* Determines whether the button edit should be hidden in the column
|
|
773
|
+
* @internal
|
|
774
|
+
*/
|
|
763
775
|
readonly children: HTMLCollection;
|
|
764
776
|
readonly firstElementChild: Element;
|
|
765
777
|
readonly lastElementChild: Element;
|
|
@@ -834,11 +846,7 @@ declare const EntityManagement_base: (new (...args: any[]) => {
|
|
|
834
846
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
835
847
|
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
836
848
|
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
837
|
-
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
838
|
-
* Show the entity create form
|
|
839
|
-
* Sets the initial value on the form to be defaultEntityValues if present.
|
|
840
|
-
* @internal
|
|
841
|
-
*/
|
|
849
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
842
850
|
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
843
851
|
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
844
852
|
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
|
@@ -1098,9 +1106,22 @@ export declare class Users extends Users_base {
|
|
|
1098
1106
|
* Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns.
|
|
1099
1107
|
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
1100
1108
|
* There is an option on the grid for the user to reset the table to the default layout if they wish.
|
|
1109
|
+
*
|
|
1110
|
+
* This does *not* store the filter state, to store that use the separate `persisted-filter-model-key` attribute
|
|
1101
1111
|
* @public
|
|
1102
1112
|
*/
|
|
1103
1113
|
persistColumnStateKey: string;
|
|
1114
|
+
/**
|
|
1115
|
+
* The key to use for persisting the filter model in local browser or KV storage.
|
|
1116
|
+
*
|
|
1117
|
+
* @remarks
|
|
1118
|
+
*
|
|
1119
|
+
* Default behaviour when unset is to not save the filter config.
|
|
1120
|
+
* This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
1121
|
+
*
|
|
1122
|
+
* @public
|
|
1123
|
+
*/
|
|
1124
|
+
persistFilterModelKey: string;
|
|
1104
1125
|
/**
|
|
1105
1126
|
* This attribute controls whether to enable the search-bar.
|
|
1106
1127
|
* @public
|
|
@@ -1291,9 +1312,6 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1291
1312
|
readonly part: DOMTokenList;
|
|
1292
1313
|
readonly prefix: string;
|
|
1293
1314
|
readonly scrollHeight: number;
|
|
1294
|
-
/**
|
|
1295
|
-
* Column definition, default to the UsersColumnConfig
|
|
1296
|
-
*/
|
|
1297
1315
|
scrollLeft: number;
|
|
1298
1316
|
scrollTop: number;
|
|
1299
1317
|
readonly scrollWidth: number;
|
|
@@ -1322,6 +1340,10 @@ declare const Users_base: (new (...args: any[]) => {
|
|
|
1322
1340
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
1323
1341
|
hasAttributes(): boolean;
|
|
1324
1342
|
hasPointerCapture(pointerId: number): boolean;
|
|
1343
|
+
/**
|
|
1344
|
+
* Definition of the `DATASERVER` query which is used when managing Counterpartys
|
|
1345
|
+
* @internal
|
|
1346
|
+
*/
|
|
1325
1347
|
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
|
1326
1348
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
1327
1349
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
@@ -58,6 +58,7 @@ Where:<br /> - the title of the grid is `Counterparty Management`<br /> - the na
|
|
|
58
58
|
| [hideEdit](./foundation-entity-management.entitymanagement.hideedit.md) | | boolean | Hides edit button |
|
|
59
59
|
| [modalPosition](./foundation-entity-management.entitymanagement.modalposition.md) | | 'centre' \| 'left' \| 'right' | Determines where the modal dialog will appear on screen |
|
|
60
60
|
| [persistColumnStateKey](./foundation-entity-management.entitymanagement.persistcolumnstatekey.md) | | string | This attribute controls whether and how the entity manager stores the state of the columns when the user edits them. Omit this attribute to disable the functionality, set it to a unique value to enable it. |
|
|
61
|
+
| [persistFilterModelKey](./foundation-entity-management.entitymanagement.persistfiltermodelkey.md) | | string | The key to use for persisting the filter model in local browser or KV storage. |
|
|
61
62
|
| [prefix](./foundation-entity-management.entitymanagement.prefix.md) | | string | Name of the design system prefix that will be used in renderers. |
|
|
62
63
|
| [readEvent](./foundation-entity-management.entitymanagement.readevent.md) | | string | Name of the request on the Genesis server which fetches data for the form, example usage could include fetching additional data that is not available in the grid but required for the selected entity |
|
|
63
64
|
| [readEventFn](./foundation-entity-management.entitymanagement.readeventfn.md) | | (entity: any) => any | Similar to readEvent but allows to provide function that will be executed before opening the form and yields data to the form |
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-entity-management](./foundation-entity-management.md) > [EntityManagement](./foundation-entity-management.entitymanagement.md) > [persistFilterModelKey](./foundation-entity-management.entitymanagement.persistfiltermodelkey.md)
|
|
4
|
+
|
|
5
|
+
## EntityManagement.persistFilterModelKey property
|
|
6
|
+
|
|
7
|
+
The key to use for persisting the filter model in local browser or KV storage.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
persistFilterModelKey: string;
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Remarks
|
|
16
|
+
|
|
17
|
+
Default behaviour when unset is to not save the filter config. This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
18
|
+
|
|
@@ -68,6 +68,7 @@ const userColumns = [
|
|
|
68
68
|
| [gridOptions](./foundation-entity-management.users.gridoptions.md) | | GridOptions | GridOptions to be passed down from application |
|
|
69
69
|
| [isServerSideDatasource](./foundation-entity-management.users.isserversidedatasource.md) | <code>readonly</code> | boolean | |
|
|
70
70
|
| [persistColumnStateKey](./foundation-entity-management.users.persistcolumnstatekey.md) | | string | This attribute controls whether and how the user manager stores the state of the columns when the user edits them. Defaulted to <code>entity_users_management</code>. |
|
|
71
|
+
| [persistFilterModelKey](./foundation-entity-management.users.persistfiltermodelkey.md) | | string | The key to use for persisting the filter model in local browser or KV storage. |
|
|
71
72
|
| [prefix](./foundation-entity-management.users.prefix.md) | | string | Name of the design system prefix that will be used for components. |
|
|
72
73
|
| [updateEvent](./foundation-entity-management.users.updateevent.md) | | string | String which contains event if we have permission to update user of empty string if not |
|
|
73
74
|
|
|
@@ -16,3 +16,5 @@ persistColumnStateKey: string;
|
|
|
16
16
|
|
|
17
17
|
Setting this value will set the entity manager to persist the column states through page refreshes etc. An example of what is stored is when the user resizes or reorders columns. This value must be unique for each table in your app otherwise the persisted data will be corrupted. There is an option on the grid for the user to reset the table to the default layout if they wish.
|
|
18
18
|
|
|
19
|
+
This does \*not\* store the filter state, to store that use the separate `persisted-filter-model-key` attribute
|
|
20
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-entity-management](./foundation-entity-management.md) > [Users](./foundation-entity-management.users.md) > [persistFilterModelKey](./foundation-entity-management.users.persistfiltermodelkey.md)
|
|
4
|
+
|
|
5
|
+
## Users.persistFilterModelKey property
|
|
6
|
+
|
|
7
|
+
The key to use for persisting the filter model in local browser or KV storage.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
persistFilterModelKey: string;
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Remarks
|
|
16
|
+
|
|
17
|
+
Default behaviour when unset is to not save the filter config. This value must be unique for each table in your app otherwise the persisted data will be corrupted.
|
|
18
|
+
|
package/docs/api-report.md
CHANGED
|
@@ -135,6 +135,7 @@ export class EntityManagement extends EntityManagement_base {
|
|
|
135
135
|
modalFormType: ModalFormType;
|
|
136
136
|
modalPosition: 'centre' | 'left' | 'right';
|
|
137
137
|
persistColumnStateKey: string;
|
|
138
|
+
persistFilterModelKey: string;
|
|
138
139
|
prefix: string;
|
|
139
140
|
readEvent: string;
|
|
140
141
|
readEventFn: (entity: any) => any;
|
|
@@ -272,6 +273,7 @@ export class Users extends Users_base {
|
|
|
272
273
|
// (undocumented)
|
|
273
274
|
get isServerSideDatasource(): boolean;
|
|
274
275
|
persistColumnStateKey: string;
|
|
276
|
+
persistFilterModelKey: string;
|
|
275
277
|
prefix: string;
|
|
276
278
|
// @internal (undocumented)
|
|
277
279
|
readUserData(user: any): Promise<{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-entity-management",
|
|
3
3
|
"description": "Genesis Foundation Entity Management",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.244.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -52,29 +52,29 @@
|
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@genesislcap/foundation-testing": "14.
|
|
56
|
-
"@genesislcap/genx": "14.
|
|
57
|
-
"@genesislcap/rollup-builder": "14.
|
|
58
|
-
"@genesislcap/ts-builder": "14.
|
|
59
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
60
|
-
"@genesislcap/vite-builder": "14.
|
|
61
|
-
"@genesislcap/webpack-builder": "14.
|
|
55
|
+
"@genesislcap/foundation-testing": "14.244.1",
|
|
56
|
+
"@genesislcap/genx": "14.244.1",
|
|
57
|
+
"@genesislcap/rollup-builder": "14.244.1",
|
|
58
|
+
"@genesislcap/ts-builder": "14.244.1",
|
|
59
|
+
"@genesislcap/uvu-playwright-builder": "14.244.1",
|
|
60
|
+
"@genesislcap/vite-builder": "14.244.1",
|
|
61
|
+
"@genesislcap/webpack-builder": "14.244.1",
|
|
62
62
|
"rimraf": "^5.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@ag-grid-community/core": "29.2.0",
|
|
66
|
-
"@genesislcap/foundation-comms": "14.
|
|
67
|
-
"@genesislcap/foundation-errors": "14.
|
|
68
|
-
"@genesislcap/foundation-events": "14.
|
|
69
|
-
"@genesislcap/foundation-forms": "14.
|
|
70
|
-
"@genesislcap/foundation-logger": "14.
|
|
71
|
-
"@genesislcap/foundation-login": "14.
|
|
72
|
-
"@genesislcap/foundation-notifications": "14.
|
|
73
|
-
"@genesislcap/foundation-ui": "14.
|
|
74
|
-
"@genesislcap/foundation-utils": "14.
|
|
75
|
-
"@genesislcap/foundation-zero": "14.
|
|
76
|
-
"@genesislcap/foundation-zero-grid-pro": "14.
|
|
77
|
-
"@genesislcap/grid-pro": "14.
|
|
66
|
+
"@genesislcap/foundation-comms": "14.244.1",
|
|
67
|
+
"@genesislcap/foundation-errors": "14.244.1",
|
|
68
|
+
"@genesislcap/foundation-events": "14.244.1",
|
|
69
|
+
"@genesislcap/foundation-forms": "14.244.1",
|
|
70
|
+
"@genesislcap/foundation-logger": "14.244.1",
|
|
71
|
+
"@genesislcap/foundation-login": "14.244.1",
|
|
72
|
+
"@genesislcap/foundation-notifications": "14.244.1",
|
|
73
|
+
"@genesislcap/foundation-ui": "14.244.1",
|
|
74
|
+
"@genesislcap/foundation-utils": "14.244.1",
|
|
75
|
+
"@genesislcap/foundation-zero": "14.244.1",
|
|
76
|
+
"@genesislcap/foundation-zero-grid-pro": "14.244.1",
|
|
77
|
+
"@genesislcap/grid-pro": "14.244.1",
|
|
78
78
|
"@microsoft/fast-components": "2.30.6",
|
|
79
79
|
"@microsoft/fast-element": "1.14.0",
|
|
80
80
|
"@microsoft/fast-foundation": "2.49.6",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"access": "public"
|
|
92
92
|
},
|
|
93
93
|
"customElements": "dist/custom-elements.json",
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "538c19faaf0ec3a5f8034516c74bf8083009485b"
|
|
95
95
|
}
|