@genesislcap/foundation-entity-management 14.79.1 → 14.79.2-alpha-ca658e8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -87,41 +87,6 @@
87
87
  }
88
88
  ]
89
89
  },
90
- {
91
- "kind": "javascript-module",
92
- "path": "src/components/components.ts",
93
- "declarations": [
94
- {
95
- "kind": "function",
96
- "name": "loadRemotes"
97
- }
98
- ],
99
- "exports": [
100
- {
101
- "kind": "js",
102
- "name": "loadRemotes",
103
- "declaration": {
104
- "name": "loadRemotes",
105
- "module": "src/components/components.ts"
106
- }
107
- }
108
- ]
109
- },
110
- {
111
- "kind": "javascript-module",
112
- "path": "src/components/index.ts",
113
- "declarations": [],
114
- "exports": [
115
- {
116
- "kind": "js",
117
- "name": "*",
118
- "declaration": {
119
- "name": "*",
120
- "package": "./components"
121
- }
122
- }
123
- ]
124
- },
125
90
  {
126
91
  "kind": "javascript-module",
127
92
  "path": "src/entities/entities.styles.ts",
@@ -151,7 +116,7 @@
151
116
  {
152
117
  "kind": "variable",
153
118
  "name": "template",
154
- "default": "html<EntityManagement>`\n <div class=\"container\">\n <slot name=\"header\" part=\"header\">${defaultHeader}</slot>\n <entity-list\n title=${(x) => x.title}\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n size-columns-to-fit=${(x) => x.sizeColumnsToFit}\n enable-filter-bar=${(x) => x.enableFilterBar}\n resourceName=${(x) => x.resourceName}\n :deleteEvent=${(x) => x.deleteEvent}\n :updateEvent=${(x) => x.updateEvent}\n :gridOptions=${(x) => x.gridOptions}\n :columns=${(x) => x.columns}\n :datasourceConfig=${(x) => x.datasourceConfig}\n data-test-id=\"entity-list\"\n hide-edit=${(x) => x.hideEdit}\n hide-delete=${(x) => x.hideDelete}\n >\n <slot name=\"header\" slot=\"header\">${defaultHeader}</slot>\n </entity-list>\n <zero-modal\n ${ref('editEntityModal')}\n position=${(x) => x.modalPosition}\n :onCloseCallback=${(x) => x.closeModal.bind(x)}\n data-test-id=\"edit-entity-modal\"\n >\n <div slot=\"top\" data-test-id=\"dialog-title\">${(x) => x.editDialogTitle}</div>\n\n <slot name=\"edit\">\n ${when(\n (x) => x.editModalVisible,\n html<EntityManagement>`\n <foundation-form\n part=\"form\"\n resourceName=${(x) => x.formResourceName}\n :data=${(x) => x.editedEntity}\n :uischema=${(x) => x.formUiSchema}\n readonly=${(x) => x.readonly}\n @submit-success=${(x, c) => x.submitEntityChanges(c.event as CustomEvent)}\n @submit-failure=${(x, c) =>\n x.errorSnack((c.event as CustomEvent<{ errors: MessageError[] }>).detail.errors)}\n ></foundation-form>\n `,\n )}\n </slot>\n </zero-modal>\n </div>\n`",
119
+ "default": "html<EntityManagement>`\n <div class=\"container\">\n <slot name=\"header\" part=\"header\">${defaultHeader}</slot>\n <entity-list\n title=${(x) => x.title}\n async-add=${(x) => x.asyncAdd}\n async-remove=${(x) => x.asyncRemove}\n async-update=${(x) => x.asyncUpdate}\n enable-cell-flashing=${(x) => x.enableCellFlashing}\n enable-row-flashing=${(x) => x.enableRowFlashing}\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n size-columns-to-fit=${(x) => x.sizeColumnsToFit}\n enable-filter-bar=${(x) => x.enableFilterBar}\n resourceName=${(x) => x.resourceName}\n :deleteEvent=${(x) => x.deleteEvent}\n :updateEvent=${(x) => x.updateEvent}\n :gridOptions=${(x) => x.gridOptions}\n :columns=${(x) => x.columns}\n :datasourceConfig=${(x) => x.datasourceConfig}\n data-test-id=\"entity-list\"\n hide-edit=${(x) => x.hideEdit}\n hide-delete=${(x) => x.hideDelete}\n >\n <slot name=\"header\" slot=\"header\">${defaultHeader}</slot>\n </entity-list>\n <zero-modal\n ${ref('editEntityModal')}\n position=${(x) => x.modalPosition}\n :onCloseCallback=${(x) => x.closeModal.bind(x)}\n data-test-id=\"edit-entity-modal\"\n >\n <div slot=\"top\" data-test-id=\"dialog-title\">${(x) => x.editDialogTitle}</div>\n\n <slot name=\"edit\">\n ${when(\n (x) => x.editModalVisible,\n html<EntityManagement>`\n <foundation-form\n part=\"form\"\n resourceName=${(x) => x.formResourceName}\n :data=${(x) => x.editedEntity}\n :uischema=${(x) => x.formUiSchema}\n readonly=${(x) => x.readonly}\n @submit-success=${(x, c) => x.submitEntityChanges(c.event as CustomEvent)}\n @submit-failure=${(x, c) =>\n x.errorSnack((c.event as CustomEvent<{ errors: MessageError[] }>).detail.errors)}\n ></foundation-form>\n `,\n )}\n </slot>\n </zero-modal>\n </div>\n`",
155
120
  "description": "Defines the html of the entity component as a ViewTemplate object"
156
121
  }
157
122
  ],
@@ -260,6 +225,56 @@
260
225
  "description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
261
226
  "privacy": "public"
262
227
  },
228
+ {
229
+ "kind": "field",
230
+ "name": "asyncAdd",
231
+ "type": {
232
+ "text": "boolean"
233
+ },
234
+ "default": "false",
235
+ "description": "Whether to use the `applyTransactionAsync` function for *add* transactions",
236
+ "privacy": "public"
237
+ },
238
+ {
239
+ "kind": "field",
240
+ "name": "asyncRemove",
241
+ "type": {
242
+ "text": "boolean"
243
+ },
244
+ "default": "false",
245
+ "description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
246
+ "privacy": "public"
247
+ },
248
+ {
249
+ "kind": "field",
250
+ "name": "asyncUpdate",
251
+ "type": {
252
+ "text": "boolean"
253
+ },
254
+ "default": "true",
255
+ "description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
256
+ "privacy": "public"
257
+ },
258
+ {
259
+ "kind": "field",
260
+ "name": "enableCellFlashing",
261
+ "type": {
262
+ "text": "boolean"
263
+ },
264
+ "default": "false",
265
+ "description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
266
+ "privacy": "public"
267
+ },
268
+ {
269
+ "kind": "field",
270
+ "name": "enableRowFlashing",
271
+ "type": {
272
+ "text": "boolean"
273
+ },
274
+ "default": "false",
275
+ "description": "If true, will enable row flashing for all rows for `add` async transactions",
276
+ "privacy": "public"
277
+ },
263
278
  {
264
279
  "kind": "field",
265
280
  "name": "persistColumnStateKey",
@@ -391,13 +406,6 @@
391
406
  "text": "boolean"
392
407
  }
393
408
  },
394
- {
395
- "kind": "field",
396
- "name": "enableCellFlashing",
397
- "type": {
398
- "text": "boolean"
399
- }
400
- },
401
409
  {
402
410
  "kind": "field",
403
411
  "name": "hideEdit",
@@ -554,6 +562,51 @@
554
562
  "description": "Label for the entity which has usages such as being shown in the title of the modal wen editing the entity",
555
563
  "fieldName": "entityLabel"
556
564
  },
565
+ {
566
+ "name": "async-add",
567
+ "type": {
568
+ "text": "boolean"
569
+ },
570
+ "default": "false",
571
+ "description": "Whether to use the `applyTransactionAsync` function for *add* transactions",
572
+ "fieldName": "asyncAdd"
573
+ },
574
+ {
575
+ "name": "async-remove",
576
+ "type": {
577
+ "text": "boolean"
578
+ },
579
+ "default": "false",
580
+ "description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
581
+ "fieldName": "asyncRemove"
582
+ },
583
+ {
584
+ "name": "async-update",
585
+ "type": {
586
+ "text": "boolean"
587
+ },
588
+ "default": "true",
589
+ "description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
590
+ "fieldName": "asyncUpdate"
591
+ },
592
+ {
593
+ "name": "enable-cell-flashing",
594
+ "type": {
595
+ "text": "boolean"
596
+ },
597
+ "default": "false",
598
+ "description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
599
+ "fieldName": "enableCellFlashing"
600
+ },
601
+ {
602
+ "name": "enable-row-flashing",
603
+ "type": {
604
+ "text": "boolean"
605
+ },
606
+ "default": "false",
607
+ "description": "If true, will enable row flashing for all rows for `add` async transactions",
608
+ "fieldName": "enableRowFlashing"
609
+ },
557
610
  {
558
611
  "name": "persist-column-state-key",
559
612
  "type": {
@@ -576,13 +629,6 @@
576
629
  },
577
630
  "fieldName": "enableFilterBar"
578
631
  },
579
- {
580
- "name": "enable-cell-flashing",
581
- "type": {
582
- "text": "boolean"
583
- },
584
- "fieldName": "enableCellFlashing"
585
- },
586
632
  {
587
633
  "name": "hide-edit",
588
634
  "type": {
@@ -675,41 +721,27 @@
675
721
  },
676
722
  {
677
723
  "kind": "javascript-module",
678
- "path": "src/layouts/default.ts",
724
+ "path": "src/components/components.ts",
679
725
  "declarations": [
680
726
  {
681
- "kind": "variable",
682
- "name": "loginLayout",
683
- "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
684
- },
685
- {
686
- "kind": "variable",
687
- "name": "defaultLayout",
688
- "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)"
727
+ "kind": "function",
728
+ "name": "loadRemotes"
689
729
  }
690
730
  ],
691
731
  "exports": [
692
732
  {
693
733
  "kind": "js",
694
- "name": "loginLayout",
695
- "declaration": {
696
- "name": "loginLayout",
697
- "module": "src/layouts/default.ts"
698
- }
699
- },
700
- {
701
- "kind": "js",
702
- "name": "defaultLayout",
734
+ "name": "loadRemotes",
703
735
  "declaration": {
704
- "name": "defaultLayout",
705
- "module": "src/layouts/default.ts"
736
+ "name": "loadRemotes",
737
+ "module": "src/components/components.ts"
706
738
  }
707
739
  }
708
740
  ]
709
741
  },
710
742
  {
711
743
  "kind": "javascript-module",
712
- "path": "src/layouts/index.ts",
744
+ "path": "src/components/index.ts",
713
745
  "declarations": [],
714
746
  "exports": [
715
747
  {
@@ -717,7 +749,7 @@
717
749
  "name": "*",
718
750
  "declaration": {
719
751
  "name": "*",
720
- "package": "./default"
752
+ "package": "./components"
721
753
  }
722
754
  }
723
755
  ]
@@ -765,7 +797,7 @@
765
797
  {
766
798
  "kind": "variable",
767
799
  "name": "listTemplate",
768
- "default": "html<List>`\n <div class=\"container\">\n ${when(\n (x) => x.enableFilterBar,\n html<List>`\n <zero-filter-bar\n resource=${(x) => x.resourceName}\n only=${(x) => x.columns?.map((colDef) => colDef.field).filter((field) => !!field)}\n labels=${(x) => x.columns?.map((colDef) => colDef.headerName || '')}\n target=\"datasource\"\n ></zero-filter-bar>\n `,\n )}\n <zero-grid-pro\n ${ref('grid')}\n auto-cell-renderer-by-type\n rowSelection=\"single\"\n rowHeight=\"36\"\n headerHeight=\"36\"\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n ?only-template-col-defs=${(x) => !!x.columns}\n suppressCellFocus=\"true\"\n suppressRowDeselection=\"true\"\n enable-cell-flashing=${(x) => x.enableCellFlashing}\n >\n <grid-pro-genesis-datasource\n ${ref('datasource')}\n :deferredGridOptions=${(x) => x.gridOptions}\n criteria=${(x) => x.datasourceConfig?.criteria}\n fields=${(x) => x.datasourceConfig?.fields}\n is-snapshot=${(x) => x.datasourceConfig?.isSnapshot}\n max-rows=${(x) => x.datasourceConfig?.maxRows}\n max-view=${(x) => x.datasourceConfig?.maxView}\n moving-view=${(x) => x.datasourceConfig?.movingView}\n order-by=${(x) => x.datasourceConfig?.orderBy}\n polling-interval=${(x) => x.datasourceConfig?.pollingInterval}\n resource-name=${(x) => x.resourceName}\n reverse=${(x) => x.datasourceConfig?.reverse}\n ></grid-pro-genesis-datasource>\n ${repeat(\n (x) => x.columns,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `,\n )}\n ${repeat(\n (x) => x.actionButtonsConfig,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `,\n )}\n </zero-grid-pro>\n </div>\n`"
800
+ "default": "html<List>`\n <div class=\"container\">\n ${when(\n (x) => x.enableFilterBar,\n html<List>`\n <zero-filter-bar\n resource=${(x) => x.resourceName}\n only=${(x) => x.columns?.map((colDef) => colDef.field).filter((field) => !!field)}\n labels=${(x) => x.columns?.map((colDef) => colDef.headerName || '')}\n target=\"datasource\"\n ></zero-filter-bar>\n `,\n )}\n <zero-grid-pro\n ${ref('grid')}\n auto-cell-renderer-by-type\n rowSelection=\"single\"\n rowHeight=\"36\"\n headerHeight=\"36\"\n persist-column-state-key=${(x) => x.persistColumnStateKey}\n ?only-template-col-defs=${(x) => !!x.columns}\n suppressCellFocus=\"true\"\n suppressRowDeselection=\"true\"\n async-add=${(x) => x.asyncAdd}\n async-remove=${(x) => x.asyncRemove}\n async-update=${(x) => x.asyncUpdate}\n enable-cell-flashing=${(x) => x.enableCellFlashing}\n enable-row-flashing=${(x) => x.enableRowFlashing}\n >\n <grid-pro-genesis-datasource\n ${ref('datasource')}\n :deferredGridOptions=${(x) => x.gridOptions}\n criteria=${(x) => x.datasourceConfig?.criteria}\n fields=${(x) => x.datasourceConfig?.fields}\n is-snapshot=${(x) => x.datasourceConfig?.isSnapshot}\n max-rows=${(x) => x.datasourceConfig?.maxRows}\n max-view=${(x) => x.datasourceConfig?.maxView}\n moving-view=${(x) => x.datasourceConfig?.movingView}\n order-by=${(x) => x.datasourceConfig?.orderBy}\n polling-interval=${(x) => x.datasourceConfig?.pollingInterval}\n resource-name=${(x) => x.resourceName}\n reverse=${(x) => x.datasourceConfig?.reverse}\n ></grid-pro-genesis-datasource>\n ${repeat(\n (x) => x.columns,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `,\n )}\n ${repeat(\n (x) => x.actionButtonsConfig,\n html`\n <grid-pro-column :definition=${(x) => x}></grid-pro-column>\n `,\n )}\n </zero-grid-pro>\n </div>\n`"
769
801
  }
770
802
  ],
771
803
  "exports": [
@@ -825,12 +857,45 @@
825
857
  "text": "boolean"
826
858
  }
827
859
  },
860
+ {
861
+ "kind": "field",
862
+ "name": "asyncAdd",
863
+ "type": {
864
+ "text": "boolean"
865
+ },
866
+ "default": "false"
867
+ },
868
+ {
869
+ "kind": "field",
870
+ "name": "asyncRemove",
871
+ "type": {
872
+ "text": "boolean"
873
+ },
874
+ "default": "false"
875
+ },
876
+ {
877
+ "kind": "field",
878
+ "name": "asyncUpdate",
879
+ "type": {
880
+ "text": "boolean"
881
+ },
882
+ "default": "true"
883
+ },
828
884
  {
829
885
  "kind": "field",
830
886
  "name": "enableCellFlashing",
831
887
  "type": {
832
888
  "text": "boolean"
833
- }
889
+ },
890
+ "default": "false"
891
+ },
892
+ {
893
+ "kind": "field",
894
+ "name": "enableRowFlashing",
895
+ "type": {
896
+ "text": "boolean"
897
+ },
898
+ "default": "false"
834
899
  },
835
900
  {
836
901
  "kind": "field",
@@ -990,13 +1055,46 @@
990
1055
  },
991
1056
  "fieldName": "enableFilterBar"
992
1057
  },
1058
+ {
1059
+ "name": "async-add",
1060
+ "type": {
1061
+ "text": "boolean"
1062
+ },
1063
+ "default": "false",
1064
+ "fieldName": "asyncAdd"
1065
+ },
1066
+ {
1067
+ "name": "async-remove",
1068
+ "type": {
1069
+ "text": "boolean"
1070
+ },
1071
+ "default": "false",
1072
+ "fieldName": "asyncRemove"
1073
+ },
1074
+ {
1075
+ "name": "async-update",
1076
+ "type": {
1077
+ "text": "boolean"
1078
+ },
1079
+ "default": "true",
1080
+ "fieldName": "asyncUpdate"
1081
+ },
993
1082
  {
994
1083
  "name": "enable-cell-flashing",
995
1084
  "type": {
996
1085
  "text": "boolean"
997
1086
  },
1087
+ "default": "false",
998
1088
  "fieldName": "enableCellFlashing"
999
1089
  },
1090
+ {
1091
+ "name": "enable-row-flashing",
1092
+ "type": {
1093
+ "text": "boolean"
1094
+ },
1095
+ "default": "false",
1096
+ "fieldName": "enableRowFlashing"
1097
+ },
1000
1098
  {
1001
1099
  "name": "hide-edit",
1002
1100
  "type": {
@@ -1041,6 +1139,55 @@
1041
1139
  }
1042
1140
  ]
1043
1141
  },
1142
+ {
1143
+ "kind": "javascript-module",
1144
+ "path": "src/layouts/default.ts",
1145
+ "declarations": [
1146
+ {
1147
+ "kind": "variable",
1148
+ "name": "loginLayout",
1149
+ "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
1150
+ },
1151
+ {
1152
+ "kind": "variable",
1153
+ "name": "defaultLayout",
1154
+ "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)"
1155
+ }
1156
+ ],
1157
+ "exports": [
1158
+ {
1159
+ "kind": "js",
1160
+ "name": "loginLayout",
1161
+ "declaration": {
1162
+ "name": "loginLayout",
1163
+ "module": "src/layouts/default.ts"
1164
+ }
1165
+ },
1166
+ {
1167
+ "kind": "js",
1168
+ "name": "defaultLayout",
1169
+ "declaration": {
1170
+ "name": "defaultLayout",
1171
+ "module": "src/layouts/default.ts"
1172
+ }
1173
+ }
1174
+ ]
1175
+ },
1176
+ {
1177
+ "kind": "javascript-module",
1178
+ "path": "src/layouts/index.ts",
1179
+ "declarations": [],
1180
+ "exports": [
1181
+ {
1182
+ "kind": "js",
1183
+ "name": "*",
1184
+ "declaration": {
1185
+ "name": "*",
1186
+ "package": "./default"
1187
+ }
1188
+ }
1189
+ ]
1190
+ },
1044
1191
  {
1045
1192
  "kind": "javascript-module",
1046
1193
  "path": "src/main/index.ts",
@@ -1410,6 +1557,76 @@
1410
1557
  "module": "src/entities/entities.ts"
1411
1558
  }
1412
1559
  },
1560
+ {
1561
+ "kind": "field",
1562
+ "name": "asyncAdd",
1563
+ "type": {
1564
+ "text": "boolean"
1565
+ },
1566
+ "default": "false",
1567
+ "description": "Whether to use the `applyTransactionAsync` function for *add* transactions",
1568
+ "privacy": "public",
1569
+ "inheritedFrom": {
1570
+ "name": "EntityManagement",
1571
+ "module": "src/entities/entities.ts"
1572
+ }
1573
+ },
1574
+ {
1575
+ "kind": "field",
1576
+ "name": "asyncRemove",
1577
+ "type": {
1578
+ "text": "boolean"
1579
+ },
1580
+ "default": "false",
1581
+ "description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
1582
+ "privacy": "public",
1583
+ "inheritedFrom": {
1584
+ "name": "EntityManagement",
1585
+ "module": "src/entities/entities.ts"
1586
+ }
1587
+ },
1588
+ {
1589
+ "kind": "field",
1590
+ "name": "asyncUpdate",
1591
+ "type": {
1592
+ "text": "boolean"
1593
+ },
1594
+ "default": "true",
1595
+ "description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
1596
+ "privacy": "public",
1597
+ "inheritedFrom": {
1598
+ "name": "EntityManagement",
1599
+ "module": "src/entities/entities.ts"
1600
+ }
1601
+ },
1602
+ {
1603
+ "kind": "field",
1604
+ "name": "enableCellFlashing",
1605
+ "type": {
1606
+ "text": "boolean"
1607
+ },
1608
+ "default": "false",
1609
+ "description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
1610
+ "privacy": "public",
1611
+ "inheritedFrom": {
1612
+ "name": "EntityManagement",
1613
+ "module": "src/entities/entities.ts"
1614
+ }
1615
+ },
1616
+ {
1617
+ "kind": "field",
1618
+ "name": "enableRowFlashing",
1619
+ "type": {
1620
+ "text": "boolean"
1621
+ },
1622
+ "default": "false",
1623
+ "description": "If true, will enable row flashing for all rows for `add` async transactions",
1624
+ "privacy": "public",
1625
+ "inheritedFrom": {
1626
+ "name": "EntityManagement",
1627
+ "module": "src/entities/entities.ts"
1628
+ }
1629
+ },
1413
1630
  {
1414
1631
  "kind": "field",
1415
1632
  "name": "gridOptions",
@@ -1574,17 +1791,6 @@
1574
1791
  "module": "src/entities/entities.ts"
1575
1792
  }
1576
1793
  },
1577
- {
1578
- "kind": "field",
1579
- "name": "enableCellFlashing",
1580
- "type": {
1581
- "text": "boolean"
1582
- },
1583
- "inheritedFrom": {
1584
- "name": "EntityManagement",
1585
- "module": "src/entities/entities.ts"
1586
- }
1587
- },
1588
1794
  {
1589
1795
  "kind": "field",
1590
1796
  "name": "hideEdit",
@@ -1812,34 +2018,39 @@
1812
2018
  }
1813
2019
  },
1814
2020
  {
1815
- "name": "persist-column-state-key",
2021
+ "name": "async-add",
1816
2022
  "type": {
1817
- "text": "string"
2023
+ "text": "boolean"
1818
2024
  },
1819
- "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.",
1820
- "fieldName": "persistColumnStateKey",
2025
+ "default": "false",
2026
+ "description": "Whether to use the `applyTransactionAsync` function for *add* transactions",
2027
+ "fieldName": "asyncAdd",
1821
2028
  "inheritedFrom": {
1822
2029
  "name": "EntityManagement",
1823
2030
  "module": "src/entities/entities.ts"
1824
2031
  }
1825
2032
  },
1826
2033
  {
1827
- "name": "size-columns-to-fit",
2034
+ "name": "async-remove",
1828
2035
  "type": {
1829
2036
  "text": "boolean"
1830
2037
  },
1831
- "fieldName": "sizeColumnsToFit",
2038
+ "default": "false",
2039
+ "description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
2040
+ "fieldName": "asyncRemove",
1832
2041
  "inheritedFrom": {
1833
2042
  "name": "EntityManagement",
1834
2043
  "module": "src/entities/entities.ts"
1835
2044
  }
1836
2045
  },
1837
2046
  {
1838
- "name": "enable-filter-bar",
2047
+ "name": "async-update",
1839
2048
  "type": {
1840
2049
  "text": "boolean"
1841
2050
  },
1842
- "fieldName": "enableFilterBar",
2051
+ "default": "true",
2052
+ "description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
2053
+ "fieldName": "asyncUpdate",
1843
2054
  "inheritedFrom": {
1844
2055
  "name": "EntityManagement",
1845
2056
  "module": "src/entities/entities.ts"
@@ -1850,12 +2061,61 @@
1850
2061
  "type": {
1851
2062
  "text": "boolean"
1852
2063
  },
2064
+ "default": "false",
2065
+ "description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
1853
2066
  "fieldName": "enableCellFlashing",
1854
2067
  "inheritedFrom": {
1855
2068
  "name": "EntityManagement",
1856
2069
  "module": "src/entities/entities.ts"
1857
2070
  }
1858
2071
  },
2072
+ {
2073
+ "name": "enable-row-flashing",
2074
+ "type": {
2075
+ "text": "boolean"
2076
+ },
2077
+ "default": "false",
2078
+ "description": "If true, will enable row flashing for all rows for `add` async transactions",
2079
+ "fieldName": "enableRowFlashing",
2080
+ "inheritedFrom": {
2081
+ "name": "EntityManagement",
2082
+ "module": "src/entities/entities.ts"
2083
+ }
2084
+ },
2085
+ {
2086
+ "name": "persist-column-state-key",
2087
+ "type": {
2088
+ "text": "string"
2089
+ },
2090
+ "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.",
2091
+ "fieldName": "persistColumnStateKey",
2092
+ "inheritedFrom": {
2093
+ "name": "EntityManagement",
2094
+ "module": "src/entities/entities.ts"
2095
+ }
2096
+ },
2097
+ {
2098
+ "name": "size-columns-to-fit",
2099
+ "type": {
2100
+ "text": "boolean"
2101
+ },
2102
+ "fieldName": "sizeColumnsToFit",
2103
+ "inheritedFrom": {
2104
+ "name": "EntityManagement",
2105
+ "module": "src/entities/entities.ts"
2106
+ }
2107
+ },
2108
+ {
2109
+ "name": "enable-filter-bar",
2110
+ "type": {
2111
+ "text": "boolean"
2112
+ },
2113
+ "fieldName": "enableFilterBar",
2114
+ "inheritedFrom": {
2115
+ "name": "EntityManagement",
2116
+ "module": "src/entities/entities.ts"
2117
+ }
2118
+ },
1859
2119
  {
1860
2120
  "name": "hide-edit",
1861
2121
  "type": {