@genesislcap/foundation-entity-management 14.78.2 → 14.78.4-alpha-b87d7d2.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": {
@@ -673,6 +719,90 @@
673
719
  }
674
720
  ]
675
721
  },
722
+ {
723
+ "kind": "javascript-module",
724
+ "path": "src/components/components.ts",
725
+ "declarations": [
726
+ {
727
+ "kind": "function",
728
+ "name": "loadRemotes"
729
+ }
730
+ ],
731
+ "exports": [
732
+ {
733
+ "kind": "js",
734
+ "name": "loadRemotes",
735
+ "declaration": {
736
+ "name": "loadRemotes",
737
+ "module": "src/components/components.ts"
738
+ }
739
+ }
740
+ ]
741
+ },
742
+ {
743
+ "kind": "javascript-module",
744
+ "path": "src/components/index.ts",
745
+ "declarations": [],
746
+ "exports": [
747
+ {
748
+ "kind": "js",
749
+ "name": "*",
750
+ "declaration": {
751
+ "name": "*",
752
+ "package": "./components"
753
+ }
754
+ }
755
+ ]
756
+ },
757
+ {
758
+ "kind": "javascript-module",
759
+ "path": "src/layouts/default.ts",
760
+ "declarations": [
761
+ {
762
+ "kind": "variable",
763
+ "name": "loginLayout",
764
+ "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
765
+ },
766
+ {
767
+ "kind": "variable",
768
+ "name": "defaultLayout",
769
+ "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)"
770
+ }
771
+ ],
772
+ "exports": [
773
+ {
774
+ "kind": "js",
775
+ "name": "loginLayout",
776
+ "declaration": {
777
+ "name": "loginLayout",
778
+ "module": "src/layouts/default.ts"
779
+ }
780
+ },
781
+ {
782
+ "kind": "js",
783
+ "name": "defaultLayout",
784
+ "declaration": {
785
+ "name": "defaultLayout",
786
+ "module": "src/layouts/default.ts"
787
+ }
788
+ }
789
+ ]
790
+ },
791
+ {
792
+ "kind": "javascript-module",
793
+ "path": "src/layouts/index.ts",
794
+ "declarations": [],
795
+ "exports": [
796
+ {
797
+ "kind": "js",
798
+ "name": "*",
799
+ "declaration": {
800
+ "name": "*",
801
+ "package": "./default"
802
+ }
803
+ }
804
+ ]
805
+ },
676
806
  {
677
807
  "kind": "javascript-module",
678
808
  "path": "src/list/index.ts",
@@ -716,7 +846,7 @@
716
846
  {
717
847
  "kind": "variable",
718
848
  "name": "listTemplate",
719
- "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`"
849
+ "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`"
720
850
  }
721
851
  ],
722
852
  "exports": [
@@ -776,12 +906,45 @@
776
906
  "text": "boolean"
777
907
  }
778
908
  },
909
+ {
910
+ "kind": "field",
911
+ "name": "asyncAdd",
912
+ "type": {
913
+ "text": "boolean"
914
+ },
915
+ "default": "false"
916
+ },
917
+ {
918
+ "kind": "field",
919
+ "name": "asyncRemove",
920
+ "type": {
921
+ "text": "boolean"
922
+ },
923
+ "default": "false"
924
+ },
925
+ {
926
+ "kind": "field",
927
+ "name": "asyncUpdate",
928
+ "type": {
929
+ "text": "boolean"
930
+ },
931
+ "default": "true"
932
+ },
779
933
  {
780
934
  "kind": "field",
781
935
  "name": "enableCellFlashing",
782
936
  "type": {
783
937
  "text": "boolean"
784
- }
938
+ },
939
+ "default": "false"
940
+ },
941
+ {
942
+ "kind": "field",
943
+ "name": "enableRowFlashing",
944
+ "type": {
945
+ "text": "boolean"
946
+ },
947
+ "default": "false"
785
948
  },
786
949
  {
787
950
  "kind": "field",
@@ -941,13 +1104,46 @@
941
1104
  },
942
1105
  "fieldName": "enableFilterBar"
943
1106
  },
1107
+ {
1108
+ "name": "async-add",
1109
+ "type": {
1110
+ "text": "boolean"
1111
+ },
1112
+ "default": "false",
1113
+ "fieldName": "asyncAdd"
1114
+ },
1115
+ {
1116
+ "name": "async-remove",
1117
+ "type": {
1118
+ "text": "boolean"
1119
+ },
1120
+ "default": "false",
1121
+ "fieldName": "asyncRemove"
1122
+ },
1123
+ {
1124
+ "name": "async-update",
1125
+ "type": {
1126
+ "text": "boolean"
1127
+ },
1128
+ "default": "true",
1129
+ "fieldName": "asyncUpdate"
1130
+ },
944
1131
  {
945
1132
  "name": "enable-cell-flashing",
946
1133
  "type": {
947
1134
  "text": "boolean"
948
1135
  },
1136
+ "default": "false",
949
1137
  "fieldName": "enableCellFlashing"
950
1138
  },
1139
+ {
1140
+ "name": "enable-row-flashing",
1141
+ "type": {
1142
+ "text": "boolean"
1143
+ },
1144
+ "default": "false",
1145
+ "fieldName": "enableRowFlashing"
1146
+ },
951
1147
  {
952
1148
  "name": "hide-edit",
953
1149
  "type": {
@@ -992,55 +1188,6 @@
992
1188
  }
993
1189
  ]
994
1190
  },
995
- {
996
- "kind": "javascript-module",
997
- "path": "src/layouts/default.ts",
998
- "declarations": [
999
- {
1000
- "kind": "variable",
1001
- "name": "loginLayout",
1002
- "default": "new FASTElementLayout(\n html`\n <div class=\"container\">\n <div class=\"content\">\n <slot></slot>\n </div>\n </div>\n `,\n baseLayoutCss,\n)"
1003
- },
1004
- {
1005
- "kind": "variable",
1006
- "name": "defaultLayout",
1007
- "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)"
1008
- }
1009
- ],
1010
- "exports": [
1011
- {
1012
- "kind": "js",
1013
- "name": "loginLayout",
1014
- "declaration": {
1015
- "name": "loginLayout",
1016
- "module": "src/layouts/default.ts"
1017
- }
1018
- },
1019
- {
1020
- "kind": "js",
1021
- "name": "defaultLayout",
1022
- "declaration": {
1023
- "name": "defaultLayout",
1024
- "module": "src/layouts/default.ts"
1025
- }
1026
- }
1027
- ]
1028
- },
1029
- {
1030
- "kind": "javascript-module",
1031
- "path": "src/layouts/index.ts",
1032
- "declarations": [],
1033
- "exports": [
1034
- {
1035
- "kind": "js",
1036
- "name": "*",
1037
- "declaration": {
1038
- "name": "*",
1039
- "package": "./default"
1040
- }
1041
- }
1042
- ]
1043
- },
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": {