@genesislcap/grid-pro 14.120.0 → 14.120.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5163,6 +5163,229 @@
5163
5163
  }
5164
5164
  ]
5165
5165
  },
5166
+ {
5167
+ "kind": "javascript-module",
5168
+ "path": "src/column/column.template.ts",
5169
+ "declarations": [
5170
+ {
5171
+ "kind": "variable",
5172
+ "name": "ColumnTemplate",
5173
+ "default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
5174
+ "description": "The Grid Pro Column Template.",
5175
+ "privacy": "public"
5176
+ }
5177
+ ],
5178
+ "exports": [
5179
+ {
5180
+ "kind": "js",
5181
+ "name": "ColumnTemplate",
5182
+ "declaration": {
5183
+ "name": "ColumnTemplate",
5184
+ "module": "src/column/column.template.ts"
5185
+ }
5186
+ }
5187
+ ]
5188
+ },
5189
+ {
5190
+ "kind": "javascript-module",
5191
+ "path": "src/column/column.ts",
5192
+ "declarations": [
5193
+ {
5194
+ "kind": "class",
5195
+ "description": "The Grid Pro Column element.",
5196
+ "name": "GridProColumn",
5197
+ "members": [
5198
+ {
5199
+ "kind": "field",
5200
+ "name": "slottedAgCell",
5201
+ "type": {
5202
+ "text": "HTMLElement[]"
5203
+ },
5204
+ "privacy": "public"
5205
+ },
5206
+ {
5207
+ "kind": "field",
5208
+ "name": "definition",
5209
+ "type": {
5210
+ "text": "ColDef"
5211
+ },
5212
+ "default": "{}"
5213
+ },
5214
+ {
5215
+ "kind": "method",
5216
+ "name": "slottedAgCellChanged",
5217
+ "privacy": "public"
5218
+ },
5219
+ {
5220
+ "kind": "field",
5221
+ "name": "_presentation",
5222
+ "type": {
5223
+ "text": "ComponentPresentation | null | undefined"
5224
+ },
5225
+ "privacy": "private",
5226
+ "default": "void 0",
5227
+ "inheritedFrom": {
5228
+ "name": "FoundationElement",
5229
+ "module": "src/foundation-element/foundation-element.ts"
5230
+ }
5231
+ },
5232
+ {
5233
+ "kind": "field",
5234
+ "name": "$presentation",
5235
+ "type": {
5236
+ "text": "ComponentPresentation | null"
5237
+ },
5238
+ "privacy": "public",
5239
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
5240
+ "inheritedFrom": {
5241
+ "name": "FoundationElement",
5242
+ "module": "src/foundation-element/foundation-element.ts"
5243
+ }
5244
+ },
5245
+ {
5246
+ "kind": "field",
5247
+ "name": "template",
5248
+ "type": {
5249
+ "text": "ElementViewTemplate | void | null"
5250
+ },
5251
+ "privacy": "public",
5252
+ "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
5253
+ "inheritedFrom": {
5254
+ "name": "FoundationElement",
5255
+ "module": "src/foundation-element/foundation-element.ts"
5256
+ }
5257
+ },
5258
+ {
5259
+ "kind": "method",
5260
+ "name": "templateChanged",
5261
+ "privacy": "protected",
5262
+ "return": {
5263
+ "type": {
5264
+ "text": "void"
5265
+ }
5266
+ },
5267
+ "inheritedFrom": {
5268
+ "name": "FoundationElement",
5269
+ "module": "src/foundation-element/foundation-element.ts"
5270
+ }
5271
+ },
5272
+ {
5273
+ "kind": "field",
5274
+ "name": "styles",
5275
+ "type": {
5276
+ "text": "ElementStyles | void | null"
5277
+ },
5278
+ "privacy": "public",
5279
+ "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
5280
+ "inheritedFrom": {
5281
+ "name": "FoundationElement",
5282
+ "module": "src/foundation-element/foundation-element.ts"
5283
+ }
5284
+ },
5285
+ {
5286
+ "kind": "method",
5287
+ "name": "stylesChanged",
5288
+ "privacy": "protected",
5289
+ "return": {
5290
+ "type": {
5291
+ "text": "void"
5292
+ }
5293
+ },
5294
+ "inheritedFrom": {
5295
+ "name": "FoundationElement",
5296
+ "module": "src/foundation-element/foundation-element.ts"
5297
+ }
5298
+ },
5299
+ {
5300
+ "kind": "method",
5301
+ "name": "compose",
5302
+ "privacy": "public",
5303
+ "static": true,
5304
+ "return": {
5305
+ "type": {
5306
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
5307
+ }
5308
+ },
5309
+ "parameters": [
5310
+ {
5311
+ "name": "this",
5312
+ "type": {
5313
+ "text": "K"
5314
+ }
5315
+ },
5316
+ {
5317
+ "name": "elementDefinition",
5318
+ "type": {
5319
+ "text": "T"
5320
+ },
5321
+ "description": "The definition of the element to create the registry\nfunction for."
5322
+ }
5323
+ ],
5324
+ "description": "Defines an element registry function with a set of element definition defaults.",
5325
+ "inheritedFrom": {
5326
+ "name": "FoundationElement",
5327
+ "module": "src/foundation-element/foundation-element.ts"
5328
+ }
5329
+ }
5330
+ ],
5331
+ "superclass": {
5332
+ "name": "FoundationElement",
5333
+ "package": "@microsoft/fast-foundation"
5334
+ },
5335
+ "tagName": "grid-pro-column",
5336
+ "customElement": true
5337
+ }
5338
+ ],
5339
+ "exports": [
5340
+ {
5341
+ "kind": "js",
5342
+ "name": "GridProColumn",
5343
+ "declaration": {
5344
+ "name": "GridProColumn",
5345
+ "module": "src/column/column.ts"
5346
+ }
5347
+ },
5348
+ {
5349
+ "kind": "custom-element-definition",
5350
+ "name": "grid-pro-column",
5351
+ "declaration": {
5352
+ "name": "GridProColumn",
5353
+ "module": "src/column/column.ts"
5354
+ }
5355
+ }
5356
+ ]
5357
+ },
5358
+ {
5359
+ "kind": "javascript-module",
5360
+ "path": "src/column/index.ts",
5361
+ "declarations": [],
5362
+ "exports": [
5363
+ {
5364
+ "kind": "js",
5365
+ "name": "*",
5366
+ "declaration": {
5367
+ "name": "*",
5368
+ "package": "./column.template"
5369
+ }
5370
+ },
5371
+ {
5372
+ "kind": "js",
5373
+ "name": "*",
5374
+ "declaration": {
5375
+ "name": "*",
5376
+ "package": "./column"
5377
+ }
5378
+ },
5379
+ {
5380
+ "kind": "js",
5381
+ "name": "*",
5382
+ "declaration": {
5383
+ "name": "*",
5384
+ "package": "./utils"
5385
+ }
5386
+ }
5387
+ ]
5388
+ },
5166
5389
  {
5167
5390
  "kind": "javascript-module",
5168
5391
  "path": "src/datasource/base.datasource.ts",
@@ -7603,229 +7826,6 @@
7603
7826
  }
7604
7827
  ]
7605
7828
  },
7606
- {
7607
- "kind": "javascript-module",
7608
- "path": "src/column/column.template.ts",
7609
- "declarations": [
7610
- {
7611
- "kind": "variable",
7612
- "name": "ColumnTemplate",
7613
- "default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
7614
- "description": "The Grid Pro Column Template.",
7615
- "privacy": "public"
7616
- }
7617
- ],
7618
- "exports": [
7619
- {
7620
- "kind": "js",
7621
- "name": "ColumnTemplate",
7622
- "declaration": {
7623
- "name": "ColumnTemplate",
7624
- "module": "src/column/column.template.ts"
7625
- }
7626
- }
7627
- ]
7628
- },
7629
- {
7630
- "kind": "javascript-module",
7631
- "path": "src/column/column.ts",
7632
- "declarations": [
7633
- {
7634
- "kind": "class",
7635
- "description": "The Grid Pro Column element.",
7636
- "name": "GridProColumn",
7637
- "members": [
7638
- {
7639
- "kind": "field",
7640
- "name": "slottedAgCell",
7641
- "type": {
7642
- "text": "HTMLElement[]"
7643
- },
7644
- "privacy": "public"
7645
- },
7646
- {
7647
- "kind": "field",
7648
- "name": "definition",
7649
- "type": {
7650
- "text": "ColDef"
7651
- },
7652
- "default": "{}"
7653
- },
7654
- {
7655
- "kind": "method",
7656
- "name": "slottedAgCellChanged",
7657
- "privacy": "public"
7658
- },
7659
- {
7660
- "kind": "field",
7661
- "name": "_presentation",
7662
- "type": {
7663
- "text": "ComponentPresentation | null | undefined"
7664
- },
7665
- "privacy": "private",
7666
- "default": "void 0",
7667
- "inheritedFrom": {
7668
- "name": "FoundationElement",
7669
- "module": "src/foundation-element/foundation-element.ts"
7670
- }
7671
- },
7672
- {
7673
- "kind": "field",
7674
- "name": "$presentation",
7675
- "type": {
7676
- "text": "ComponentPresentation | null"
7677
- },
7678
- "privacy": "public",
7679
- "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
7680
- "inheritedFrom": {
7681
- "name": "FoundationElement",
7682
- "module": "src/foundation-element/foundation-element.ts"
7683
- }
7684
- },
7685
- {
7686
- "kind": "field",
7687
- "name": "template",
7688
- "type": {
7689
- "text": "ElementViewTemplate | void | null"
7690
- },
7691
- "privacy": "public",
7692
- "description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
7693
- "inheritedFrom": {
7694
- "name": "FoundationElement",
7695
- "module": "src/foundation-element/foundation-element.ts"
7696
- }
7697
- },
7698
- {
7699
- "kind": "method",
7700
- "name": "templateChanged",
7701
- "privacy": "protected",
7702
- "return": {
7703
- "type": {
7704
- "text": "void"
7705
- }
7706
- },
7707
- "inheritedFrom": {
7708
- "name": "FoundationElement",
7709
- "module": "src/foundation-element/foundation-element.ts"
7710
- }
7711
- },
7712
- {
7713
- "kind": "field",
7714
- "name": "styles",
7715
- "type": {
7716
- "text": "ElementStyles | void | null"
7717
- },
7718
- "privacy": "public",
7719
- "description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
7720
- "inheritedFrom": {
7721
- "name": "FoundationElement",
7722
- "module": "src/foundation-element/foundation-element.ts"
7723
- }
7724
- },
7725
- {
7726
- "kind": "method",
7727
- "name": "stylesChanged",
7728
- "privacy": "protected",
7729
- "return": {
7730
- "type": {
7731
- "text": "void"
7732
- }
7733
- },
7734
- "inheritedFrom": {
7735
- "name": "FoundationElement",
7736
- "module": "src/foundation-element/foundation-element.ts"
7737
- }
7738
- },
7739
- {
7740
- "kind": "method",
7741
- "name": "compose",
7742
- "privacy": "public",
7743
- "static": true,
7744
- "return": {
7745
- "type": {
7746
- "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
7747
- }
7748
- },
7749
- "parameters": [
7750
- {
7751
- "name": "this",
7752
- "type": {
7753
- "text": "K"
7754
- }
7755
- },
7756
- {
7757
- "name": "elementDefinition",
7758
- "type": {
7759
- "text": "T"
7760
- },
7761
- "description": "The definition of the element to create the registry\nfunction for."
7762
- }
7763
- ],
7764
- "description": "Defines an element registry function with a set of element definition defaults.",
7765
- "inheritedFrom": {
7766
- "name": "FoundationElement",
7767
- "module": "src/foundation-element/foundation-element.ts"
7768
- }
7769
- }
7770
- ],
7771
- "superclass": {
7772
- "name": "FoundationElement",
7773
- "package": "@microsoft/fast-foundation"
7774
- },
7775
- "tagName": "grid-pro-column",
7776
- "customElement": true
7777
- }
7778
- ],
7779
- "exports": [
7780
- {
7781
- "kind": "js",
7782
- "name": "GridProColumn",
7783
- "declaration": {
7784
- "name": "GridProColumn",
7785
- "module": "src/column/column.ts"
7786
- }
7787
- },
7788
- {
7789
- "kind": "custom-element-definition",
7790
- "name": "grid-pro-column",
7791
- "declaration": {
7792
- "name": "GridProColumn",
7793
- "module": "src/column/column.ts"
7794
- }
7795
- }
7796
- ]
7797
- },
7798
- {
7799
- "kind": "javascript-module",
7800
- "path": "src/column/index.ts",
7801
- "declarations": [],
7802
- "exports": [
7803
- {
7804
- "kind": "js",
7805
- "name": "*",
7806
- "declaration": {
7807
- "name": "*",
7808
- "package": "./column.template"
7809
- }
7810
- },
7811
- {
7812
- "kind": "js",
7813
- "name": "*",
7814
- "declaration": {
7815
- "name": "*",
7816
- "package": "./column"
7817
- }
7818
- },
7819
- {
7820
- "kind": "js",
7821
- "name": "*",
7822
- "declaration": {
7823
- "name": "*",
7824
- "package": "./utils"
7825
- }
7826
- }
7827
- ]
7828
- },
7829
7829
  {
7830
7830
  "kind": "javascript-module",
7831
7831
  "path": "src/external/ag-grid-css.ts",
@@ -1 +1 @@
1
- {"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"AACA,OAAO,EACL,IAAI,EACJ,UAAU,EAaX,MAAM,+BAA+B,CAAC;AAMvC,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAgBtE;;;GAGG;AACH,oBAAY,aAAa;IACvB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAkTC;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAoNH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA/gBL;;;;GAIG;AACH,qBAGa,wBAAyB,SAAQ,6BAAqC;IAC3E,IAAI,EAAG,IAAI,CAAC;IACN,UAAU,EAAG,UAAU,CAAC;IAGpC,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM;IASf,eAAe,EAAE,MAAM,CACf;IACQ,cAAc,EAAE,OAAO,CAAS;IAC7E,OAAO,EAAE,GAAG,CAAC;IAEzB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAKtD;;;;;OAKG;IAC4B,SAAS,MAAC;IAEwB,qBAAqB,UAAS;IAE/F;;OAEG;IACS,aAAa,EAAE,QAAQ,CAAC;IAEpC,OAAO,CAAC,OAAO,CAAe;IAC9B,OAAO,CAAC,SAAS,CAAe;IAChC,OAAO,CAAC,aAAa,CAAe;IAEpC,OAAO,CAAC,eAAe,CAAS;IAChC,OAAO,CAAC,6BAA6B,CAAQ;IAC7C,OAAO,CAAC,mBAAmB,CAAS;IAEpC,OAAO,CAAC,IAAI,CAA+B;IAC3C,OAAO,CAAC,aAAa,CAAqB;IAE1C,OAAO,CAAC,SAAS,CAAS;IAE1B,OAAO,CAAC,mBAAmB,CAAkC;IAC7D,OAAO,CAAC,MAAM,CAAwE;IAEtF,iBAAiB;IAuBjB,oBAAoB;IASX,SAAS,IAAI,IAAI;IAQ1B,OAAO,KAAK,MAAM,GAEjB;IAID;;;;OAIG;IACH,OAAO,KAAK,KAAK,GAIhB;IAED;;;;OAIG;IACG,IAAI;IAmDV;;;OAGG;IACH,MAAM;IAIN;;;;OAIG;IACH,KAAK;IA6BL;;;OAGG;IACH,OAAO;IAKP;;OAEG;IACH,WAAW;IAIX;;;;OAIG;IACH,OAAO,CAAC,UAAU;IAUlB;;;;;OAKG;IACH,OAAO,CAAC,YAAY;IAWpB;;;;OAIG;IACH,OAAO,CAAC,UAAU;IAgBlB;;;;;OAKG;YACW,kBAAkB;IAWhC;;;;;;OAMG;YACW,gBAAgB;IA4C9B,OAAO,CAAC,cAAc;IActB,OAAO,CAAC,iBAAiB;IAiBzB,OAAO,CAAC,kBAAkB;IAU1B,OAAO,CAAC,sBAAsB;IA2C9B,OAAO,CAAC,mBAAmB;IAqB3B,OAAO,CAAC,sBAAsB;IAmC9B,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,wBAAwB;IAqBhC;;;;;OAKG;IACH,OAAO,CAAC,cAAc;IAyBtB,OAAO,CAAC,mBAAmB;IAgB3B,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,mBAAmB;IAW3B,OAAO,CAAC,eAAe;IAkEvB,OAAO,CAAC,aAAa;IAMd,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM;IAK9C,YAAY,CAAC,SAAS,EAAE,MAAM;CAItC"}
1
+ {"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"AACA,OAAO,EACL,IAAI,EACJ,UAAU,EAaX,MAAM,+BAA+B,CAAC;AAMvC,OAAO,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAgBtE;;;GAGG;AACH,oBAAY,aAAa;IACvB,GAAG,QAAQ;IACX,MAAM,WAAW;IACjB,MAAM,WAAW;CAClB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAkTC;;;;;;OAMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oEAoNH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA/gBL;;;;GAIG;AACH,qBAGa,wBAAyB,SAAQ,6BAAqC;IAC3E,IAAI,EAAG,IAAI,CAAC;IACN,UAAU,EAAG,UAAU,CAAC;IAGpC,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM;IASf,eAAe,EAAE,MAAM,CACf;IACQ,cAAc,EAAE,OAAO,CAAS;IAC7E,OAAO,EAAE,GAAG,CAAC;IAEzB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM;IAKtD;;;;;OAKG;IAC4B,SAAS,MAAC;IAEwB,qBAAqB,UAAS;IAE/F;;OAEG;IACS,aAAa,EAAE,QAAQ,CAAC;IAEpC,OAAO,CAAC,OAAO,CAAe;IAC9B,OAAO,CAAC,SAAS,CAAe;IAChC,OAAO,CAAC,aAAa,CAAe;IAEpC,OAAO,CAAC,eAAe,CAAS;IAChC,OAAO,CAAC,6BAA6B,CAAQ;IAC7C,OAAO,CAAC,mBAAmB,CAAS;IAEpC,OAAO,CAAC,IAAI,CAA+B;IAC3C,OAAO,CAAC,aAAa,CAAqB;IAE1C,OAAO,CAAC,SAAS,CAAS;IAE1B,OAAO,CAAC,mBAAmB,CAAkC;IAC7D,OAAO,CAAC,MAAM,CAAwE;IAEtF,iBAAiB;IAuBjB,oBAAoB;IASX,SAAS,IAAI,IAAI;IAQ1B,OAAO,KAAK,MAAM,GAEjB;IAID;;;;OAIG;IACH,OAAO,KAAK,KAAK,GAIhB;IAED;;;;OAIG;IACG,IAAI;IAmDV;;;OAGG;IACH,MAAM;IAIN;;;;OAIG;IACH,KAAK;IA6BL;;;OAGG;IACH,OAAO;IAKP;;OAEG;IACH,WAAW;IAIX;;;;OAIG;IACH,OAAO,CAAC,UAAU;IAUlB;;;;;OAKG;IACH,OAAO,CAAC,YAAY;IAWpB;;;;OAIG;IACH,OAAO,CAAC,UAAU;IAgBlB;;;;;OAKG;YACW,kBAAkB;IAWhC;;;;;;OAMG;YACW,gBAAgB;IA4C9B,OAAO,CAAC,cAAc;IActB,OAAO,CAAC,iBAAiB;IAiBzB,OAAO,CAAC,kBAAkB;IAU1B,OAAO,CAAC,sBAAsB;IA2C9B,OAAO,CAAC,mBAAmB;IAqB3B,OAAO,CAAC,sBAAsB;IAmC9B,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,wBAAwB;IAqBhC;;;;;OAKG;IACH,OAAO,CAAC,cAAc;IAyBtB,OAAO,CAAC,mBAAmB;IAgB3B,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,mBAAmB;IAW3B,OAAO,CAAC,eAAe;IAwEvB,OAAO,CAAC,aAAa;IAMd,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM;IAK9C,YAAY,CAAC,SAAS,EAAE,MAAM;CAItC"}
@@ -494,12 +494,17 @@ let GridProGenesisDatasource = class GridProGenesisDatasource extends LifecycleM
494
494
  };
495
495
  break;
496
496
  case FieldTypeEnum.ENUM:
497
- colDefBase.cellEditor = GridProRendererTypes.selectEditor;
498
- colDefBase.cellEditorParams = {
499
- values: field.enumOptions.map((option) => ({ value: option, label: option })),
500
- valueField: 'value',
501
- labelField: 'label',
502
- };
497
+ if (field.enumOptions) {
498
+ colDefBase.cellEditor = GridProRendererTypes.selectEditor;
499
+ colDefBase.cellEditorParams = {
500
+ values: field.enumOptions.map((option) => ({ value: option, label: option })),
501
+ valueField: 'value',
502
+ labelField: 'label',
503
+ };
504
+ }
505
+ else {
506
+ logger.warn(`No enumOptions found for field ${field.name}. Default cell editor applied.`);
507
+ }
503
508
  break;
504
509
  default:
505
510
  break;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/grid-pro",
3
3
  "description": "Genesis Foundation AG Grid",
4
- "version": "14.120.0",
4
+ "version": "14.120.2",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -30,15 +30,15 @@
30
30
  "test:debug": "genx test --debug"
31
31
  },
32
32
  "devDependencies": {
33
- "@genesislcap/foundation-testing": "14.120.0",
34
- "@genesislcap/genx": "14.120.0",
33
+ "@genesislcap/foundation-testing": "14.120.2",
34
+ "@genesislcap/genx": "14.120.2",
35
35
  "rimraf": "^3.0.2"
36
36
  },
37
37
  "dependencies": {
38
- "@genesislcap/foundation-comms": "14.120.0",
39
- "@genesislcap/foundation-logger": "14.120.0",
40
- "@genesislcap/foundation-ui": "14.120.0",
41
- "@genesislcap/foundation-utils": "14.120.0",
38
+ "@genesislcap/foundation-comms": "14.120.2",
39
+ "@genesislcap/foundation-logger": "14.120.2",
40
+ "@genesislcap/foundation-ui": "14.120.2",
41
+ "@genesislcap/foundation-utils": "14.120.2",
42
42
  "@microsoft/fast-colors": "^5.1.4",
43
43
  "@microsoft/fast-components": "^2.21.3",
44
44
  "@microsoft/fast-element": "^1.7.0",
@@ -62,5 +62,5 @@
62
62
  "access": "public"
63
63
  },
64
64
  "customElements": "dist/custom-elements.json",
65
- "gitHead": "33db20d38203527970ea100cbe9399f7341649b7"
65
+ "gitHead": "eba2e50179b4df4d928164f4ad8776be0227b4d9"
66
66
  }