@genesislcap/foundation-zero-grid-pro 14.79.1 → 14.79.2-alpha-9debc2e.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.
@@ -269,11 +269,64 @@
269
269
  },
270
270
  {
271
271
  "kind": "field",
272
- "name": "enabledRowFlashing",
272
+ "name": "gridAutosizingEnabled",
273
+ "type": {
274
+ "text": "boolean"
275
+ },
276
+ "default": "false",
277
+ "description": "Boolean attribute to control whether the grid autosizes the columns upon interaction.\nThis will disable the column widths from being manually set, and doesn't save the widths\nin local storage if you are using `persist-column-state-key`.",
278
+ "inheritedFrom": {
279
+ "name": "GridPro",
280
+ "module": "src/grid-pro.ts"
281
+ }
282
+ },
283
+ {
284
+ "kind": "field",
285
+ "name": "addIndex",
286
+ "type": {
287
+ "text": "number"
288
+ },
289
+ "default": "0",
290
+ "description": "The index to add new rows to when using `applyTransaction` or `applyTransactionAsync`",
291
+ "inheritedFrom": {
292
+ "name": "GridPro",
293
+ "module": "src/grid-pro.ts"
294
+ }
295
+ },
296
+ {
297
+ "kind": "field",
298
+ "name": "asyncAdd",
273
299
  "type": {
274
300
  "text": "boolean"
275
301
  },
276
302
  "default": "false",
303
+ "description": "Whether to use the `applyTransactionAsync` function for *add* transactions",
304
+ "inheritedFrom": {
305
+ "name": "GridPro",
306
+ "module": "src/grid-pro.ts"
307
+ }
308
+ },
309
+ {
310
+ "kind": "field",
311
+ "name": "asyncRemove",
312
+ "type": {
313
+ "text": "boolean"
314
+ },
315
+ "default": "false",
316
+ "description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
317
+ "inheritedFrom": {
318
+ "name": "GridPro",
319
+ "module": "src/grid-pro.ts"
320
+ }
321
+ },
322
+ {
323
+ "kind": "field",
324
+ "name": "asyncUpdate",
325
+ "type": {
326
+ "text": "boolean"
327
+ },
328
+ "default": "true",
329
+ "description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
277
330
  "inheritedFrom": {
278
331
  "name": "GridPro",
279
332
  "module": "src/grid-pro.ts"
@@ -286,7 +339,7 @@
286
339
  "text": "boolean"
287
340
  },
288
341
  "default": "false",
289
- "description": "If true, will enable cell flashing for all cell renderers, unless otherwise defined in custom colDef",
342
+ "description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
290
343
  "inheritedFrom": {
291
344
  "name": "GridPro",
292
345
  "module": "src/grid-pro.ts"
@@ -294,10 +347,12 @@
294
347
  },
295
348
  {
296
349
  "kind": "field",
297
- "name": "persistColumnStateKey",
350
+ "name": "enabledRowFlashing",
298
351
  "type": {
299
- "text": "string"
352
+ "text": "boolean"
300
353
  },
354
+ "default": "false",
355
+ "deprecated": "- use `enableRowFlashing` instead.",
301
356
  "inheritedFrom": {
302
357
  "name": "GridPro",
303
358
  "module": "src/grid-pro.ts"
@@ -305,12 +360,24 @@
305
360
  },
306
361
  {
307
362
  "kind": "field",
308
- "name": "gridAutosizingEnabled",
363
+ "name": "enableRowFlashing",
309
364
  "type": {
310
365
  "text": "boolean"
311
366
  },
312
367
  "default": "false",
313
- "description": "Boolean attribute to control whether the grid autosizes the columns upon interaction.\nThis will disable the column widths from being manually set, and doesn't save the widths\nin local storage if you are using `persist-column-state-key`.",
368
+ "description": "If true, will enable row flashing for all rows for `add` async transactions",
369
+ "inheritedFrom": {
370
+ "name": "GridPro",
371
+ "module": "src/grid-pro.ts"
372
+ }
373
+ },
374
+ {
375
+ "kind": "field",
376
+ "name": "persistColumnStateKey",
377
+ "type": {
378
+ "text": "string"
379
+ },
380
+ "description": "The key to use for persisting the column state in local storage.",
314
381
  "inheritedFrom": {
315
382
  "name": "GridPro",
316
383
  "module": "src/grid-pro.ts"
@@ -852,11 +919,65 @@
852
919
  }
853
920
  },
854
921
  {
922
+ "name": "grid-autosizing",
855
923
  "type": {
856
924
  "text": "boolean"
857
925
  },
858
926
  "default": "false",
859
- "fieldName": "enabledRowFlashing",
927
+ "description": "Boolean attribute to control whether the grid autosizes the columns upon interaction.\nThis will disable the column widths from being manually set, and doesn't save the widths\nin local storage if you are using `persist-column-state-key`.",
928
+ "fieldName": "gridAutosizingEnabled",
929
+ "inheritedFrom": {
930
+ "name": "GridPro",
931
+ "module": "src/grid-pro.ts"
932
+ }
933
+ },
934
+ {
935
+ "name": "add-index",
936
+ "type": {
937
+ "text": "number"
938
+ },
939
+ "default": "0",
940
+ "description": "The index to add new rows to when using `applyTransaction` or `applyTransactionAsync`",
941
+ "fieldName": "addIndex",
942
+ "inheritedFrom": {
943
+ "name": "GridPro",
944
+ "module": "src/grid-pro.ts"
945
+ }
946
+ },
947
+ {
948
+ "name": "async-add",
949
+ "type": {
950
+ "text": "boolean"
951
+ },
952
+ "default": "false",
953
+ "description": "Whether to use the `applyTransactionAsync` function for *add* transactions",
954
+ "fieldName": "asyncAdd",
955
+ "inheritedFrom": {
956
+ "name": "GridPro",
957
+ "module": "src/grid-pro.ts"
958
+ }
959
+ },
960
+ {
961
+ "name": "async-remove",
962
+ "type": {
963
+ "text": "boolean"
964
+ },
965
+ "default": "false",
966
+ "description": "Whether to use the `applyTransactionAsync` function for *remove* transactions",
967
+ "fieldName": "asyncRemove",
968
+ "inheritedFrom": {
969
+ "name": "GridPro",
970
+ "module": "src/grid-pro.ts"
971
+ }
972
+ },
973
+ {
974
+ "name": "async-update",
975
+ "type": {
976
+ "text": "boolean"
977
+ },
978
+ "default": "true",
979
+ "description": "Whether to use the `applyTransactionAsync` function for *update* transactions",
980
+ "fieldName": "asyncUpdate",
860
981
  "inheritedFrom": {
861
982
  "name": "GridPro",
862
983
  "module": "src/grid-pro.ts"
@@ -868,7 +989,7 @@
868
989
  "text": "boolean"
869
990
  },
870
991
  "default": "false",
871
- "description": "If true, will enable cell flashing for all cell renderers, unless otherwise defined in custom colDef",
992
+ "description": "If false, will disable cell flashing for all cells by default, unless otherwise defined in custom colDef",
872
993
  "fieldName": "enableCellFlashing",
873
994
  "inheritedFrom": {
874
995
  "name": "GridPro",
@@ -876,24 +997,38 @@
876
997
  }
877
998
  },
878
999
  {
879
- "name": "persist-column-state-key",
1000
+ "name": "enabled-row-flashing",
880
1001
  "type": {
881
- "text": "string"
1002
+ "text": "boolean"
882
1003
  },
883
- "fieldName": "persistColumnStateKey",
1004
+ "default": "false",
1005
+ "deprecated": "- use `enableRowFlashing` instead.",
1006
+ "fieldName": "enabledRowFlashing",
884
1007
  "inheritedFrom": {
885
1008
  "name": "GridPro",
886
1009
  "module": "src/grid-pro.ts"
887
1010
  }
888
1011
  },
889
1012
  {
890
- "name": "grid-autosizing",
1013
+ "name": "enable-row-flashing",
891
1014
  "type": {
892
1015
  "text": "boolean"
893
1016
  },
894
1017
  "default": "false",
895
- "description": "Boolean attribute to control whether the grid autosizes the columns upon interaction.\nThis will disable the column widths from being manually set, and doesn't save the widths\nin local storage if you are using `persist-column-state-key`.",
896
- "fieldName": "gridAutosizingEnabled",
1018
+ "description": "If true, will enable row flashing for all rows for `add` async transactions",
1019
+ "fieldName": "enableRowFlashing",
1020
+ "inheritedFrom": {
1021
+ "name": "GridPro",
1022
+ "module": "src/grid-pro.ts"
1023
+ }
1024
+ },
1025
+ {
1026
+ "name": "persist-column-state-key",
1027
+ "type": {
1028
+ "text": "string"
1029
+ },
1030
+ "description": "The key to use for persisting the column state in local storage.",
1031
+ "fieldName": "persistColumnStateKey",
897
1032
  "inheritedFrom": {
898
1033
  "name": "GridPro",
899
1034
  "module": "src/grid-pro.ts"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-zero-grid-pro",
3
3
  "description": "Genesis Foundation Zero Grid Pro",
4
- "version": "14.79.1",
4
+ "version": "14.79.2-alpha-9debc2e.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -24,15 +24,15 @@
24
24
  "serve": "genx serve"
25
25
  },
26
26
  "devDependencies": {
27
- "@genesislcap/genx": "14.79.1",
27
+ "@genesislcap/genx": "14.79.2-alpha-9debc2e.0",
28
28
  "rimraf": "^3.0.2"
29
29
  },
30
30
  "dependencies": {
31
- "@genesislcap/foundation-comms": "14.79.1",
32
- "@genesislcap/foundation-ui": "14.79.1",
33
- "@genesislcap/foundation-utils": "14.79.1",
34
- "@genesislcap/foundation-zero": "14.79.1",
35
- "@genesislcap/grid-pro": "14.79.1",
31
+ "@genesislcap/foundation-comms": "14.79.2-alpha-9debc2e.0",
32
+ "@genesislcap/foundation-ui": "14.79.2-alpha-9debc2e.0",
33
+ "@genesislcap/foundation-utils": "14.79.2-alpha-9debc2e.0",
34
+ "@genesislcap/foundation-zero": "14.79.2-alpha-9debc2e.0",
35
+ "@genesislcap/grid-pro": "14.79.2-alpha-9debc2e.0",
36
36
  "@microsoft/fast-colors": "^5.1.4",
37
37
  "@microsoft/fast-components": "^2.21.3",
38
38
  "@microsoft/fast-element": "^1.7.0",
@@ -54,5 +54,5 @@
54
54
  "access": "public"
55
55
  },
56
56
  "customElements": "dist/custom-elements.json",
57
- "gitHead": "f6631dc2350244ee9f1ea5fe24ef0eaadca32c1a"
57
+ "gitHead": "ec3885e8c184ec6ff0234a716ddece0ee6e066e1"
58
58
  }