@genesislcap/grid-pro 14.83.7 → 14.84.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.
Files changed (29) hide show
  1. package/dist/custom-elements.json +1292 -34
  2. package/dist/dts/column/column.d.ts +1 -1
  3. package/dist/dts/column/column.d.ts.map +1 -1
  4. package/dist/dts/column/column.template.d.ts +2 -2
  5. package/dist/dts/column/column.template.d.ts.map +1 -1
  6. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.d.ts +18 -7
  7. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.d.ts.map +1 -1
  8. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +7 -0
  9. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
  10. package/dist/dts/grid-pro.d.ts +1 -4
  11. package/dist/dts/grid-pro.d.ts.map +1 -1
  12. package/dist/dts/grid-pro.definitions.next.d.ts +53 -0
  13. package/dist/dts/grid-pro.definitions.next.d.ts.map +1 -0
  14. package/dist/esm/column/column.js +6 -6
  15. package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.js +131 -52
  16. package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +13 -0
  17. package/dist/esm/grid-pro.definitions.next.js +172 -0
  18. package/dist/esm/grid-pro.js +5 -4
  19. package/dist/grid-pro.api.json +162 -131
  20. package/dist/grid-pro.d.ts +51 -35
  21. package/docs/api/grid-pro.columntemplate.md +1 -1
  22. package/docs/api/grid-pro.gridproclientsidedatasource.md +19 -0
  23. package/docs/api/{grid-pro.gridcolumn.definition.md → grid-pro.gridprocolumn.definition.md} +2 -2
  24. package/docs/api/{grid-pro.gridcolumn.md → grid-pro.gridprocolumn.md} +6 -6
  25. package/docs/api/{grid-pro.gridcolumn.slottedagcell.md → grid-pro.gridprocolumn.slottedagcell.md} +2 -2
  26. package/docs/api/{grid-pro.gridcolumn.slottedagcellchanged.md → grid-pro.gridprocolumn.slottedagcellchanged.md} +2 -2
  27. package/docs/api/grid-pro.md +2 -1
  28. package/docs/api-report.md +35 -29
  29. package/package.json +8 -8
@@ -28,6 +28,185 @@
28
28
  }
29
29
  ]
30
30
  },
31
+ {
32
+ "kind": "javascript-module",
33
+ "path": "src/grid-pro.definitions.next.ts",
34
+ "declarations": [
35
+ {
36
+ "kind": "function",
37
+ "name": "getFilterByFieldType",
38
+ "return": {
39
+ "type": {
40
+ "text": ""
41
+ }
42
+ },
43
+ "parameters": [
44
+ {
45
+ "name": "type",
46
+ "type": {
47
+ "text": "string"
48
+ },
49
+ "description": "The type of the field/column"
50
+ }
51
+ ],
52
+ "description": "Returns a filter type based on the Grid Pro field/column type."
53
+ },
54
+ {
55
+ "kind": "function",
56
+ "name": "getColumnType",
57
+ "return": {
58
+ "type": {
59
+ "text": ""
60
+ }
61
+ },
62
+ "parameters": [
63
+ {
64
+ "name": "metadataType",
65
+ "type": {
66
+ "text": "string"
67
+ },
68
+ "description": "The type of the field/column"
69
+ }
70
+ ],
71
+ "description": "Return a column type base on each field's metadata from the selected resource."
72
+ },
73
+ {
74
+ "kind": "function",
75
+ "name": "getFilterParamsByFieldType",
76
+ "return": {
77
+ "type": {
78
+ "text": ""
79
+ }
80
+ },
81
+ "parameters": [
82
+ {
83
+ "name": "type",
84
+ "type": {
85
+ "text": "string"
86
+ },
87
+ "description": "The type of the field/column"
88
+ }
89
+ ],
90
+ "description": "Returns the filter params based on the Grid Pro field/column type."
91
+ },
92
+ {
93
+ "kind": "function",
94
+ "name": "dateValueFormatter",
95
+ "return": {
96
+ "type": {
97
+ "text": ""
98
+ }
99
+ },
100
+ "parameters": [
101
+ {
102
+ "name": "{ value }",
103
+ "type": {
104
+ "text": "ValueFormatterParams"
105
+ }
106
+ },
107
+ {
108
+ "description": "A ValueFormatterParams object.",
109
+ "name": "param"
110
+ }
111
+ ],
112
+ "description": "Returns a formatted date value from the Grid Pro cell value.",
113
+ "privacy": "public"
114
+ },
115
+ {
116
+ "kind": "function",
117
+ "name": "dateTimeValueFormatter",
118
+ "return": {
119
+ "type": {
120
+ "text": ""
121
+ }
122
+ },
123
+ "parameters": [
124
+ {
125
+ "name": "{ value }",
126
+ "type": {
127
+ "text": "ValueFormatterParams"
128
+ }
129
+ },
130
+ {
131
+ "description": "A ValueFormatterParams object.",
132
+ "name": "param"
133
+ }
134
+ ],
135
+ "description": "Returns a formatted date time value from the Grid Pro cell value.",
136
+ "privacy": "public"
137
+ },
138
+ {
139
+ "kind": "function",
140
+ "name": "formatDateExtra",
141
+ "return": {
142
+ "type": {
143
+ "text": ""
144
+ }
145
+ },
146
+ "parameters": [
147
+ {
148
+ "name": "epoch",
149
+ "type": {
150
+ "text": "number"
151
+ },
152
+ "description": "A number representing the number of milliseconds since the Unix epoch (1 January 1970 00:00:00 UTC)."
153
+ }
154
+ ],
155
+ "description": "Returns a formatted date value from an epoch number.",
156
+ "deprecated": "No longer used in the Grid Pro package."
157
+ }
158
+ ],
159
+ "exports": [
160
+ {
161
+ "kind": "js",
162
+ "name": "getFilterByFieldType",
163
+ "declaration": {
164
+ "name": "getFilterByFieldType",
165
+ "module": "src/grid-pro.definitions.next.ts"
166
+ }
167
+ },
168
+ {
169
+ "kind": "js",
170
+ "name": "getColumnType",
171
+ "declaration": {
172
+ "name": "getColumnType",
173
+ "module": "src/grid-pro.definitions.next.ts"
174
+ }
175
+ },
176
+ {
177
+ "kind": "js",
178
+ "name": "getFilterParamsByFieldType",
179
+ "declaration": {
180
+ "name": "getFilterParamsByFieldType",
181
+ "module": "src/grid-pro.definitions.next.ts"
182
+ }
183
+ },
184
+ {
185
+ "kind": "js",
186
+ "name": "dateValueFormatter",
187
+ "declaration": {
188
+ "name": "dateValueFormatter",
189
+ "module": "src/grid-pro.definitions.next.ts"
190
+ }
191
+ },
192
+ {
193
+ "kind": "js",
194
+ "name": "dateTimeValueFormatter",
195
+ "declaration": {
196
+ "name": "dateTimeValueFormatter",
197
+ "module": "src/grid-pro.definitions.next.ts"
198
+ }
199
+ },
200
+ {
201
+ "kind": "js",
202
+ "name": "formatDateExtra",
203
+ "declaration": {
204
+ "name": "formatDateExtra",
205
+ "module": "src/grid-pro.definitions.next.ts"
206
+ }
207
+ }
208
+ ]
209
+ },
31
210
  {
32
211
  "kind": "javascript-module",
33
212
  "path": "src/grid-pro.definitions.ts",
@@ -3258,7 +3437,7 @@
3258
3437
  {
3259
3438
  "kind": "variable",
3260
3439
  "name": "ColumnTemplate",
3261
- "default": "html<GridColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
3440
+ "default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
3262
3441
  "description": "The Grid Pro Column Template.",
3263
3442
  "privacy": "public"
3264
3443
  }
@@ -3281,7 +3460,7 @@
3281
3460
  {
3282
3461
  "kind": "class",
3283
3462
  "description": "The Grid Pro Column element.",
3284
- "name": "GridColumn",
3463
+ "name": "GridProColumn",
3285
3464
  "members": [
3286
3465
  {
3287
3466
  "kind": "field",
@@ -3427,9 +3606,9 @@
3427
3606
  "exports": [
3428
3607
  {
3429
3608
  "kind": "js",
3430
- "name": "GridColumn",
3609
+ "name": "GridProColumn",
3431
3610
  "declaration": {
3432
- "name": "GridColumn",
3611
+ "name": "GridProColumn",
3433
3612
  "module": "src/column/column.ts"
3434
3613
  }
3435
3614
  },
@@ -3437,7 +3616,7 @@
3437
3616
  "kind": "custom-element-definition",
3438
3617
  "name": "grid-pro-column",
3439
3618
  "declaration": {
3440
- "name": "GridColumn",
3619
+ "name": "GridProColumn",
3441
3620
  "module": "src/column/column.ts"
3442
3621
  }
3443
3622
  }
@@ -3755,6 +3934,13 @@
3755
3934
  "description": "The IServerSideDatasource implementation, used for SSRM (Server-Side Row Model) in the grid.",
3756
3935
  "name": "StreamDatasource",
3757
3936
  "members": [
3937
+ {
3938
+ "kind": "field",
3939
+ "name": "auth",
3940
+ "type": {
3941
+ "text": "Auth"
3942
+ }
3943
+ },
3758
3944
  {
3759
3945
  "kind": "field",
3760
3946
  "name": "connect",
@@ -3831,15 +4017,6 @@
3831
4017
  "text": "string"
3832
4018
  }
3833
4019
  },
3834
- {
3835
- "kind": "field",
3836
- "name": "rowCount",
3837
- "type": {
3838
- "text": "number"
3839
- },
3840
- "privacy": "private",
3841
- "default": "0"
3842
- },
3843
4020
  {
3844
4021
  "kind": "field",
3845
4022
  "name": "moreRows",
@@ -3928,6 +4105,11 @@
3928
4105
  }
3929
4106
  ]
3930
4107
  },
4108
+ {
4109
+ "kind": "method",
4110
+ "name": "dataLogoff",
4111
+ "privacy": "private"
4112
+ },
3931
4113
  {
3932
4114
  "kind": "method",
3933
4115
  "name": "restartSubscription",
@@ -4001,8 +4183,8 @@
4001
4183
  },
4002
4184
  {
4003
4185
  "kind": "class",
4004
- "description": "The Genesis Datasource (Next) element, for SSRM-compatible data fetching and used exclusively by the GridPro element.",
4005
- "name": "GridProGenesisDatasourceNext",
4186
+ "description": "A Genesis Datasource element, for server-side | SSRM-compatible data fetching and used exclusively by the GridPro element.",
4187
+ "name": "GridProServerSideDatasource",
4006
4188
  "members": [
4007
4189
  {
4008
4190
  "kind": "field",
@@ -4524,7 +4706,7 @@
4524
4706
  "name": "FoundationElement",
4525
4707
  "package": "@microsoft/fast-foundation"
4526
4708
  },
4527
- "tagName": "grid-pro-genesis-datasource-next",
4709
+ "tagName": "grid-pro-server-side-datasource",
4528
4710
  "customElement": true
4529
4711
  }
4530
4712
  ],
@@ -4539,17 +4721,17 @@
4539
4721
  },
4540
4722
  {
4541
4723
  "kind": "js",
4542
- "name": "GridProGenesisDatasourceNext",
4724
+ "name": "GridProServerSideDatasource",
4543
4725
  "declaration": {
4544
- "name": "GridProGenesisDatasourceNext",
4726
+ "name": "GridProServerSideDatasource",
4545
4727
  "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.ts"
4546
4728
  }
4547
4729
  },
4548
4730
  {
4549
4731
  "kind": "custom-element-definition",
4550
- "name": "grid-pro-genesis-datasource-next",
4732
+ "name": "grid-pro-server-side-datasource",
4551
4733
  "declaration": {
4552
- "name": "GridProGenesisDatasourceNext",
4734
+ "name": "GridProServerSideDatasource",
4553
4735
  "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource-next.ts"
4554
4736
  }
4555
4737
  }
@@ -5368,23 +5550,1099 @@
5368
5550
  },
5369
5551
  "tagName": "grid-pro-genesis-datasource",
5370
5552
  "customElement": true
5371
- }
5372
- ],
5373
- "exports": [
5374
- {
5375
- "kind": "js",
5376
- "name": "GridProGenesisDatasource",
5377
- "declaration": {
5378
- "name": "GridProGenesisDatasource",
5379
- "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5380
- }
5381
5553
  },
5382
5554
  {
5383
- "kind": "custom-element-definition",
5384
- "name": "grid-pro-genesis-datasource",
5385
- "declaration": {
5555
+ "kind": "class",
5556
+ "description": "The Genesis Datasource element, for client-side | CSRM-compatible data fetching and used exclusively by the GridPro element.",
5557
+ "name": "GridProClientSideDatasource",
5558
+ "superclass": {
5386
5559
  "name": "GridProGenesisDatasource",
5387
5560
  "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5561
+ },
5562
+ "tagName": "grid-pro-genesis-datasource",
5563
+ "customElement": true,
5564
+ "members": [
5565
+ {
5566
+ "kind": "method",
5567
+ "name": "cloneNode",
5568
+ "return": {
5569
+ "type": {
5570
+ "text": "Node"
5571
+ }
5572
+ },
5573
+ "parameters": [
5574
+ {
5575
+ "name": "deep",
5576
+ "optional": true,
5577
+ "type": {
5578
+ "text": "boolean"
5579
+ }
5580
+ }
5581
+ ],
5582
+ "inheritedFrom": {
5583
+ "name": "LifecycleMixin",
5584
+ "module": "src/mixins/lifecycle/lifecycle.ts"
5585
+ }
5586
+ },
5587
+ {
5588
+ "kind": "method",
5589
+ "name": "deepClone",
5590
+ "return": {
5591
+ "type": {
5592
+ "text": "Node"
5593
+ }
5594
+ },
5595
+ "inheritedFrom": {
5596
+ "name": "LifecycleMixin",
5597
+ "module": "src/mixins/lifecycle/lifecycle.ts"
5598
+ }
5599
+ },
5600
+ {
5601
+ "kind": "field",
5602
+ "name": "shouldRunDisconnect",
5603
+ "return": {
5604
+ "type": {
5605
+ "text": ""
5606
+ }
5607
+ },
5608
+ "readonly": true,
5609
+ "inheritedFrom": {
5610
+ "name": "LifecycleMixin",
5611
+ "module": "src/mixins/lifecycle/lifecycle.ts"
5612
+ }
5613
+ },
5614
+ {
5615
+ "kind": "field",
5616
+ "name": "shouldRunConnect",
5617
+ "return": {
5618
+ "type": {
5619
+ "text": ""
5620
+ }
5621
+ },
5622
+ "readonly": true,
5623
+ "inheritedFrom": {
5624
+ "name": "LifecycleMixin",
5625
+ "module": "src/mixins/lifecycle/lifecycle.ts"
5626
+ }
5627
+ },
5628
+ {
5629
+ "kind": "method",
5630
+ "name": "#_blockLifecycleDueToTokenChange",
5631
+ "return": {
5632
+ "type": {
5633
+ "text": "boolean"
5634
+ }
5635
+ },
5636
+ "parameters": [
5637
+ {
5638
+ "name": "lifecycleType",
5639
+ "type": {
5640
+ "text": "Lifecycletype"
5641
+ }
5642
+ }
5643
+ ],
5644
+ "inheritedFrom": {
5645
+ "name": "LifecycleMixin",
5646
+ "module": "src/mixins/lifecycle/lifecycle.ts"
5647
+ }
5648
+ },
5649
+ {
5650
+ "kind": "field",
5651
+ "name": "auth",
5652
+ "type": {
5653
+ "text": "Auth"
5654
+ },
5655
+ "inheritedFrom": {
5656
+ "name": "GridProGenesisDatasource",
5657
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5658
+ }
5659
+ },
5660
+ {
5661
+ "kind": "field",
5662
+ "name": "connect",
5663
+ "type": {
5664
+ "text": "Connect"
5665
+ },
5666
+ "inheritedFrom": {
5667
+ "name": "GridProGenesisDatasource",
5668
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5669
+ }
5670
+ },
5671
+ {
5672
+ "kind": "field",
5673
+ "name": "datasource",
5674
+ "type": {
5675
+ "text": "Datasource"
5676
+ },
5677
+ "inheritedFrom": {
5678
+ "name": "GridProGenesisDatasource",
5679
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5680
+ }
5681
+ },
5682
+ {
5683
+ "kind": "field",
5684
+ "name": "deferredGridOptions",
5685
+ "type": {
5686
+ "text": "GridOptions"
5687
+ },
5688
+ "inheritedFrom": {
5689
+ "name": "GridProGenesisDatasource",
5690
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5691
+ }
5692
+ },
5693
+ {
5694
+ "kind": "field",
5695
+ "name": "criteria",
5696
+ "type": {
5697
+ "text": "string"
5698
+ },
5699
+ "inheritedFrom": {
5700
+ "name": "GridProGenesisDatasource",
5701
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5702
+ }
5703
+ },
5704
+ {
5705
+ "kind": "method",
5706
+ "name": "criteriaChanged",
5707
+ "parameters": [
5708
+ {
5709
+ "name": "oldCriteria",
5710
+ "type": {
5711
+ "text": "string"
5712
+ }
5713
+ },
5714
+ {
5715
+ "name": "newCriteria",
5716
+ "type": {
5717
+ "text": "string"
5718
+ }
5719
+ }
5720
+ ],
5721
+ "inheritedFrom": {
5722
+ "name": "GridProGenesisDatasource",
5723
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5724
+ }
5725
+ },
5726
+ {
5727
+ "kind": "field",
5728
+ "name": "fields",
5729
+ "type": {
5730
+ "text": "string"
5731
+ },
5732
+ "inheritedFrom": {
5733
+ "name": "GridProGenesisDatasource",
5734
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5735
+ }
5736
+ },
5737
+ {
5738
+ "kind": "field",
5739
+ "name": "isSnapshot",
5740
+ "type": {
5741
+ "text": "boolean"
5742
+ },
5743
+ "default": "false",
5744
+ "inheritedFrom": {
5745
+ "name": "GridProGenesisDatasource",
5746
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5747
+ }
5748
+ },
5749
+ {
5750
+ "kind": "field",
5751
+ "name": "maxRows",
5752
+ "type": {
5753
+ "text": "number"
5754
+ },
5755
+ "inheritedFrom": {
5756
+ "name": "GridProGenesisDatasource",
5757
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5758
+ }
5759
+ },
5760
+ {
5761
+ "kind": "field",
5762
+ "name": "maxView",
5763
+ "type": {
5764
+ "text": "number"
5765
+ },
5766
+ "inheritedFrom": {
5767
+ "name": "GridProGenesisDatasource",
5768
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5769
+ }
5770
+ },
5771
+ {
5772
+ "kind": "field",
5773
+ "name": "movingView",
5774
+ "type": {
5775
+ "text": "boolean"
5776
+ },
5777
+ "default": "false",
5778
+ "inheritedFrom": {
5779
+ "name": "GridProGenesisDatasource",
5780
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5781
+ }
5782
+ },
5783
+ {
5784
+ "kind": "field",
5785
+ "name": "orderBy",
5786
+ "type": {
5787
+ "text": "string"
5788
+ },
5789
+ "inheritedFrom": {
5790
+ "name": "GridProGenesisDatasource",
5791
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5792
+ }
5793
+ },
5794
+ {
5795
+ "kind": "field",
5796
+ "name": "pollingInterval",
5797
+ "type": {
5798
+ "text": "number"
5799
+ },
5800
+ "inheritedFrom": {
5801
+ "name": "GridProGenesisDatasource",
5802
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5803
+ }
5804
+ },
5805
+ {
5806
+ "kind": "field",
5807
+ "name": "request",
5808
+ "type": {
5809
+ "text": "any"
5810
+ },
5811
+ "inheritedFrom": {
5812
+ "name": "GridProGenesisDatasource",
5813
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5814
+ }
5815
+ },
5816
+ {
5817
+ "kind": "field",
5818
+ "name": "resourceName",
5819
+ "type": {
5820
+ "text": "string"
5821
+ },
5822
+ "inheritedFrom": {
5823
+ "name": "GridProGenesisDatasource",
5824
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5825
+ }
5826
+ },
5827
+ {
5828
+ "kind": "method",
5829
+ "name": "resourceNameChanged",
5830
+ "parameters": [
5831
+ {
5832
+ "name": "oldValue",
5833
+ "type": {
5834
+ "text": "string"
5835
+ }
5836
+ },
5837
+ {
5838
+ "name": "newValue",
5839
+ "type": {
5840
+ "text": "string"
5841
+ }
5842
+ }
5843
+ ],
5844
+ "inheritedFrom": {
5845
+ "name": "GridProGenesisDatasource",
5846
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5847
+ }
5848
+ },
5849
+ {
5850
+ "kind": "field",
5851
+ "name": "reverse",
5852
+ "type": {
5853
+ "text": "boolean"
5854
+ },
5855
+ "default": "false",
5856
+ "inheritedFrom": {
5857
+ "name": "GridProGenesisDatasource",
5858
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5859
+ }
5860
+ },
5861
+ {
5862
+ "kind": "field",
5863
+ "name": "rowIdAttr",
5864
+ "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
5865
+ "inheritedFrom": {
5866
+ "name": "GridProGenesisDatasource",
5867
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5868
+ }
5869
+ },
5870
+ {
5871
+ "kind": "field",
5872
+ "name": "restartOnReconnection",
5873
+ "type": {
5874
+ "text": "boolean"
5875
+ },
5876
+ "default": "false",
5877
+ "inheritedFrom": {
5878
+ "name": "GridProGenesisDatasource",
5879
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5880
+ }
5881
+ },
5882
+ {
5883
+ "kind": "field",
5884
+ "name": "rowDataMapper",
5885
+ "type": {
5886
+ "text": "Function"
5887
+ },
5888
+ "description": "Allows grid data updates to be processed via and external function before applying in grid",
5889
+ "inheritedFrom": {
5890
+ "name": "GridProGenesisDatasource",
5891
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5892
+ }
5893
+ },
5894
+ {
5895
+ "kind": "field",
5896
+ "name": "dataSub",
5897
+ "type": {
5898
+ "text": "Subscription"
5899
+ },
5900
+ "privacy": "private",
5901
+ "inheritedFrom": {
5902
+ "name": "GridProGenesisDatasource",
5903
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5904
+ }
5905
+ },
5906
+ {
5907
+ "kind": "field",
5908
+ "name": "updateSub",
5909
+ "type": {
5910
+ "text": "Subscription"
5911
+ },
5912
+ "privacy": "private",
5913
+ "inheritedFrom": {
5914
+ "name": "GridProGenesisDatasource",
5915
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5916
+ }
5917
+ },
5918
+ {
5919
+ "kind": "field",
5920
+ "name": "connectionSub",
5921
+ "type": {
5922
+ "text": "Subscription"
5923
+ },
5924
+ "privacy": "private",
5925
+ "inheritedFrom": {
5926
+ "name": "GridProGenesisDatasource",
5927
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5928
+ }
5929
+ },
5930
+ {
5931
+ "kind": "field",
5932
+ "name": "isRequestServer",
5933
+ "type": {
5934
+ "text": "boolean"
5935
+ },
5936
+ "privacy": "private",
5937
+ "default": "false",
5938
+ "inheritedFrom": {
5939
+ "name": "GridProGenesisDatasource",
5940
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5941
+ }
5942
+ },
5943
+ {
5944
+ "kind": "field",
5945
+ "name": "requiresFullRowDataAndColDefs",
5946
+ "type": {
5947
+ "text": "boolean"
5948
+ },
5949
+ "privacy": "private",
5950
+ "default": "true",
5951
+ "inheritedFrom": {
5952
+ "name": "GridProGenesisDatasource",
5953
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5954
+ }
5955
+ },
5956
+ {
5957
+ "kind": "field",
5958
+ "name": "dataSubWasLoggedOff",
5959
+ "type": {
5960
+ "text": "boolean"
5961
+ },
5962
+ "privacy": "private",
5963
+ "default": "false",
5964
+ "inheritedFrom": {
5965
+ "name": "GridProGenesisDatasource",
5966
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5967
+ }
5968
+ },
5969
+ {
5970
+ "kind": "field",
5971
+ "name": "rows",
5972
+ "type": {
5973
+ "text": "Map<string, any>"
5974
+ },
5975
+ "privacy": "private",
5976
+ "default": "new Map()",
5977
+ "inheritedFrom": {
5978
+ "name": "GridProGenesisDatasource",
5979
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5980
+ }
5981
+ },
5982
+ {
5983
+ "kind": "field",
5984
+ "name": "agTransaction",
5985
+ "type": {
5986
+ "text": "RowDataTransaction"
5987
+ },
5988
+ "privacy": "private",
5989
+ "inheritedFrom": {
5990
+ "name": "GridProGenesisDatasource",
5991
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5992
+ }
5993
+ },
5994
+ {
5995
+ "kind": "field",
5996
+ "name": "sourceRef",
5997
+ "type": {
5998
+ "text": "string"
5999
+ },
6000
+ "privacy": "private",
6001
+ "inheritedFrom": {
6002
+ "name": "GridProGenesisDatasource",
6003
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6004
+ }
6005
+ },
6006
+ {
6007
+ "kind": "field",
6008
+ "name": "criteriaFromFilters",
6009
+ "type": {
6010
+ "text": "Map<string, string>"
6011
+ },
6012
+ "privacy": "private",
6013
+ "default": "new Map()",
6014
+ "inheritedFrom": {
6015
+ "name": "GridProGenesisDatasource",
6016
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6017
+ }
6018
+ },
6019
+ {
6020
+ "kind": "field",
6021
+ "name": "update",
6022
+ "type": {
6023
+ "text": "BehaviorSubject<Map<string, string>>"
6024
+ },
6025
+ "privacy": "private",
6026
+ "default": "new BehaviorSubject(new Map())",
6027
+ "inheritedFrom": {
6028
+ "name": "GridProGenesisDatasource",
6029
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6030
+ }
6031
+ },
6032
+ {
6033
+ "kind": "field",
6034
+ "name": "agGrid",
6035
+ "type": {
6036
+ "text": "GridPro | null"
6037
+ },
6038
+ "privacy": "private",
6039
+ "readonly": true,
6040
+ "inheritedFrom": {
6041
+ "name": "GridProGenesisDatasource",
6042
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6043
+ }
6044
+ },
6045
+ {
6046
+ "kind": "method",
6047
+ "name": "init",
6048
+ "description": "Initializes the datasource.",
6049
+ "privacy": "public",
6050
+ "inheritedFrom": {
6051
+ "name": "GridProGenesisDatasource",
6052
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6053
+ }
6054
+ },
6055
+ {
6056
+ "kind": "method",
6057
+ "name": "deinit",
6058
+ "description": "Deinitialises the datasource, resetting it to its initial state.",
6059
+ "privacy": "public",
6060
+ "inheritedFrom": {
6061
+ "name": "GridProGenesisDatasource",
6062
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6063
+ }
6064
+ },
6065
+ {
6066
+ "kind": "method",
6067
+ "name": "reset",
6068
+ "description": "Resets the datasource to its initial state.",
6069
+ "privacy": "public",
6070
+ "deprecated": "Use `deinit` instead",
6071
+ "inheritedFrom": {
6072
+ "name": "GridProGenesisDatasource",
6073
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6074
+ }
6075
+ },
6076
+ {
6077
+ "kind": "method",
6078
+ "name": "restart",
6079
+ "description": "Restarts the datasource, uses `deinit` and `init` in sequence.",
6080
+ "privacy": "public",
6081
+ "inheritedFrom": {
6082
+ "name": "GridProGenesisDatasource",
6083
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6084
+ }
6085
+ },
6086
+ {
6087
+ "kind": "method",
6088
+ "name": "refreshRows",
6089
+ "description": "Force the grid to redispatch the current rows",
6090
+ "inheritedFrom": {
6091
+ "name": "GridProGenesisDatasource",
6092
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6093
+ }
6094
+ },
6095
+ {
6096
+ "kind": "method",
6097
+ "name": "handleSnapshot",
6098
+ "privacy": "private",
6099
+ "parameters": [
6100
+ {
6101
+ "name": "result"
6102
+ }
6103
+ ],
6104
+ "inheritedFrom": {
6105
+ "name": "GridProGenesisDatasource",
6106
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6107
+ }
6108
+ },
6109
+ {
6110
+ "kind": "method",
6111
+ "name": "datasourceOptions",
6112
+ "privacy": "private",
6113
+ "return": {
6114
+ "type": {
6115
+ "text": "DatasourceOptions"
6116
+ }
6117
+ },
6118
+ "inheritedFrom": {
6119
+ "name": "GridProGenesisDatasource",
6120
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6121
+ }
6122
+ },
6123
+ {
6124
+ "kind": "method",
6125
+ "name": "handleStreamResult",
6126
+ "privacy": "private",
6127
+ "parameters": [
6128
+ {
6129
+ "name": "result",
6130
+ "type": {
6131
+ "text": "FilteredDataServerResult | RequestServerResult"
6132
+ }
6133
+ }
6134
+ ],
6135
+ "inheritedFrom": {
6136
+ "name": "GridProGenesisDatasource",
6137
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6138
+ }
6139
+ },
6140
+ {
6141
+ "kind": "method",
6142
+ "name": "applyRequestServerData",
6143
+ "privacy": "private",
6144
+ "parameters": [
6145
+ {
6146
+ "name": "requestServerResult",
6147
+ "type": {
6148
+ "text": "RequestServerResult"
6149
+ }
6150
+ }
6151
+ ],
6152
+ "inheritedFrom": {
6153
+ "name": "GridProGenesisDatasource",
6154
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6155
+ }
6156
+ },
6157
+ {
6158
+ "kind": "method",
6159
+ "name": "applyDataserverData",
6160
+ "privacy": "private",
6161
+ "parameters": [
6162
+ {
6163
+ "name": "dataServerResult",
6164
+ "type": {
6165
+ "text": "FilteredDataServerResult"
6166
+ }
6167
+ }
6168
+ ],
6169
+ "inheritedFrom": {
6170
+ "name": "GridProGenesisDatasource",
6171
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6172
+ }
6173
+ },
6174
+ {
6175
+ "kind": "method",
6176
+ "name": "applyAllAgTransactions",
6177
+ "privacy": "private",
6178
+ "inheritedFrom": {
6179
+ "name": "GridProGenesisDatasource",
6180
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6181
+ }
6182
+ },
6183
+ {
6184
+ "kind": "method",
6185
+ "name": "applyMappedAgTransaction",
6186
+ "privacy": "private",
6187
+ "parameters": [
6188
+ {
6189
+ "name": "agTransaction",
6190
+ "type": {
6191
+ "text": "RowDataTransaction"
6192
+ }
6193
+ },
6194
+ {
6195
+ "name": "operation",
6196
+ "type": {
6197
+ "text": "OperationType"
6198
+ }
6199
+ },
6200
+ {
6201
+ "name": "isAsync",
6202
+ "type": {
6203
+ "text": "boolean"
6204
+ }
6205
+ }
6206
+ ],
6207
+ "inheritedFrom": {
6208
+ "name": "GridProGenesisDatasource",
6209
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6210
+ }
6211
+ },
6212
+ {
6213
+ "kind": "method",
6214
+ "name": "mapTransaction",
6215
+ "privacy": "private",
6216
+ "parameters": [
6217
+ {
6218
+ "name": "transaction",
6219
+ "type": {
6220
+ "text": "RowDataTransaction"
6221
+ },
6222
+ "description": "The transaction data to be mapped."
6223
+ },
6224
+ {
6225
+ "name": "operations",
6226
+ "default": "Object.values(OperationType)",
6227
+ "type": {
6228
+ "text": "OperationType[]"
6229
+ },
6230
+ "description": "The operations to be mapped. Can be 'add', 'update' or 'remove'."
6231
+ }
6232
+ ],
6233
+ "description": "Maps the transaction data to the row data mapper function, if it exists.",
6234
+ "return": {
6235
+ "type": {
6236
+ "text": ""
6237
+ }
6238
+ },
6239
+ "inheritedFrom": {
6240
+ "name": "GridProGenesisDatasource",
6241
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6242
+ }
6243
+ },
6244
+ {
6245
+ "kind": "method",
6246
+ "name": "handleStreamInserts",
6247
+ "privacy": "private",
6248
+ "parameters": [
6249
+ {
6250
+ "name": "insertedRows",
6251
+ "type": {
6252
+ "text": "any[]"
6253
+ }
6254
+ }
6255
+ ],
6256
+ "inheritedFrom": {
6257
+ "name": "GridProGenesisDatasource",
6258
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6259
+ }
6260
+ },
6261
+ {
6262
+ "kind": "method",
6263
+ "name": "handleStreamDeletes",
6264
+ "privacy": "private",
6265
+ "parameters": [
6266
+ {
6267
+ "name": "deletedRows",
6268
+ "type": {
6269
+ "text": "any[]"
6270
+ }
6271
+ }
6272
+ ],
6273
+ "inheritedFrom": {
6274
+ "name": "GridProGenesisDatasource",
6275
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6276
+ }
6277
+ },
6278
+ {
6279
+ "kind": "method",
6280
+ "name": "handleStreamUpdates",
6281
+ "privacy": "private",
6282
+ "parameters": [
6283
+ {
6284
+ "name": "updatedRows",
6285
+ "type": {
6286
+ "text": "any[]"
6287
+ }
6288
+ }
6289
+ ],
6290
+ "inheritedFrom": {
6291
+ "name": "GridProGenesisDatasource",
6292
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6293
+ }
6294
+ },
6295
+ {
6296
+ "kind": "method",
6297
+ "name": "getAgColumnDefs",
6298
+ "privacy": "private",
6299
+ "parameters": [
6300
+ {
6301
+ "name": "fieldsMetadata",
6302
+ "type": {
6303
+ "text": "FieldMetadata[]"
6304
+ }
6305
+ }
6306
+ ],
6307
+ "inheritedFrom": {
6308
+ "name": "GridProGenesisDatasource",
6309
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6310
+ }
6311
+ },
6312
+ {
6313
+ "kind": "method",
6314
+ "name": "buildCriteria",
6315
+ "privacy": "private",
6316
+ "return": {
6317
+ "type": {
6318
+ "text": "string"
6319
+ }
6320
+ },
6321
+ "inheritedFrom": {
6322
+ "name": "GridProGenesisDatasource",
6323
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6324
+ }
6325
+ },
6326
+ {
6327
+ "kind": "method",
6328
+ "name": "setFilter",
6329
+ "privacy": "public",
6330
+ "parameters": [
6331
+ {
6332
+ "name": "fieldName",
6333
+ "type": {
6334
+ "text": "string"
6335
+ }
6336
+ },
6337
+ {
6338
+ "name": "newFilter",
6339
+ "type": {
6340
+ "text": "string"
6341
+ }
6342
+ }
6343
+ ],
6344
+ "inheritedFrom": {
6345
+ "name": "GridProGenesisDatasource",
6346
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6347
+ }
6348
+ },
6349
+ {
6350
+ "kind": "method",
6351
+ "name": "removeFilter",
6352
+ "privacy": "public",
6353
+ "parameters": [
6354
+ {
6355
+ "name": "fieldName",
6356
+ "type": {
6357
+ "text": "string"
6358
+ }
6359
+ }
6360
+ ],
6361
+ "inheritedFrom": {
6362
+ "name": "GridProGenesisDatasource",
6363
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6364
+ }
6365
+ },
6366
+ {
6367
+ "kind": "field",
6368
+ "name": "_presentation",
6369
+ "type": {
6370
+ "text": "ComponentPresentation | null | undefined"
6371
+ },
6372
+ "privacy": "private",
6373
+ "default": "void 0",
6374
+ "inheritedFrom": {
6375
+ "name": "FoundationElement",
6376
+ "module": "src/foundation-element/foundation-element.ts"
6377
+ }
6378
+ },
6379
+ {
6380
+ "kind": "field",
6381
+ "name": "$presentation",
6382
+ "type": {
6383
+ "text": "ComponentPresentation | null"
6384
+ },
6385
+ "privacy": "public",
6386
+ "description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
6387
+ "inheritedFrom": {
6388
+ "name": "FoundationElement",
6389
+ "module": "src/foundation-element/foundation-element.ts"
6390
+ }
6391
+ },
6392
+ {
6393
+ "kind": "field",
6394
+ "name": "template",
6395
+ "type": {
6396
+ "text": "ElementViewTemplate | void | null"
6397
+ },
6398
+ "privacy": "public",
6399
+ "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.",
6400
+ "inheritedFrom": {
6401
+ "name": "FoundationElement",
6402
+ "module": "src/foundation-element/foundation-element.ts"
6403
+ }
6404
+ },
6405
+ {
6406
+ "kind": "method",
6407
+ "name": "templateChanged",
6408
+ "privacy": "protected",
6409
+ "return": {
6410
+ "type": {
6411
+ "text": "void"
6412
+ }
6413
+ },
6414
+ "inheritedFrom": {
6415
+ "name": "FoundationElement",
6416
+ "module": "src/foundation-element/foundation-element.ts"
6417
+ }
6418
+ },
6419
+ {
6420
+ "kind": "field",
6421
+ "name": "styles",
6422
+ "type": {
6423
+ "text": "ElementStyles | void | null"
6424
+ },
6425
+ "privacy": "public",
6426
+ "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.",
6427
+ "inheritedFrom": {
6428
+ "name": "FoundationElement",
6429
+ "module": "src/foundation-element/foundation-element.ts"
6430
+ }
6431
+ },
6432
+ {
6433
+ "kind": "method",
6434
+ "name": "stylesChanged",
6435
+ "privacy": "protected",
6436
+ "return": {
6437
+ "type": {
6438
+ "text": "void"
6439
+ }
6440
+ },
6441
+ "inheritedFrom": {
6442
+ "name": "FoundationElement",
6443
+ "module": "src/foundation-element/foundation-element.ts"
6444
+ }
6445
+ },
6446
+ {
6447
+ "kind": "method",
6448
+ "name": "compose",
6449
+ "privacy": "public",
6450
+ "static": true,
6451
+ "return": {
6452
+ "type": {
6453
+ "text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
6454
+ }
6455
+ },
6456
+ "parameters": [
6457
+ {
6458
+ "name": "this",
6459
+ "type": {
6460
+ "text": "K"
6461
+ }
6462
+ },
6463
+ {
6464
+ "name": "elementDefinition",
6465
+ "type": {
6466
+ "text": "T"
6467
+ },
6468
+ "description": "The definition of the element to create the registry\nfunction for."
6469
+ }
6470
+ ],
6471
+ "description": "Defines an element registry function with a set of element definition defaults.",
6472
+ "inheritedFrom": {
6473
+ "name": "FoundationElement",
6474
+ "module": "src/foundation-element/foundation-element.ts"
6475
+ }
6476
+ }
6477
+ ],
6478
+ "attributes": [
6479
+ {
6480
+ "name": "criteria",
6481
+ "type": {
6482
+ "text": "string"
6483
+ },
6484
+ "fieldName": "criteria",
6485
+ "inheritedFrom": {
6486
+ "name": "GridProGenesisDatasource",
6487
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6488
+ }
6489
+ },
6490
+ {
6491
+ "name": "fields",
6492
+ "type": {
6493
+ "text": "string"
6494
+ },
6495
+ "fieldName": "fields",
6496
+ "inheritedFrom": {
6497
+ "name": "GridProGenesisDatasource",
6498
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6499
+ }
6500
+ },
6501
+ {
6502
+ "name": "is-snapshot",
6503
+ "type": {
6504
+ "text": "boolean"
6505
+ },
6506
+ "default": "false",
6507
+ "fieldName": "isSnapshot",
6508
+ "inheritedFrom": {
6509
+ "name": "GridProGenesisDatasource",
6510
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6511
+ }
6512
+ },
6513
+ {
6514
+ "name": "max-rows",
6515
+ "type": {
6516
+ "text": "number"
6517
+ },
6518
+ "fieldName": "maxRows",
6519
+ "inheritedFrom": {
6520
+ "name": "GridProGenesisDatasource",
6521
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6522
+ }
6523
+ },
6524
+ {
6525
+ "name": "max-view",
6526
+ "type": {
6527
+ "text": "number"
6528
+ },
6529
+ "fieldName": "maxView",
6530
+ "inheritedFrom": {
6531
+ "name": "GridProGenesisDatasource",
6532
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6533
+ }
6534
+ },
6535
+ {
6536
+ "name": "moving-view",
6537
+ "type": {
6538
+ "text": "boolean"
6539
+ },
6540
+ "default": "false",
6541
+ "fieldName": "movingView",
6542
+ "inheritedFrom": {
6543
+ "name": "GridProGenesisDatasource",
6544
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6545
+ }
6546
+ },
6547
+ {
6548
+ "name": "order-by",
6549
+ "type": {
6550
+ "text": "string"
6551
+ },
6552
+ "fieldName": "orderBy",
6553
+ "inheritedFrom": {
6554
+ "name": "GridProGenesisDatasource",
6555
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6556
+ }
6557
+ },
6558
+ {
6559
+ "name": "polling-interval",
6560
+ "type": {
6561
+ "text": "number"
6562
+ },
6563
+ "fieldName": "pollingInterval",
6564
+ "inheritedFrom": {
6565
+ "name": "GridProGenesisDatasource",
6566
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6567
+ }
6568
+ },
6569
+ {
6570
+ "name": "resource-name",
6571
+ "type": {
6572
+ "text": "string"
6573
+ },
6574
+ "fieldName": "resourceName",
6575
+ "inheritedFrom": {
6576
+ "name": "GridProGenesisDatasource",
6577
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6578
+ }
6579
+ },
6580
+ {
6581
+ "type": {
6582
+ "text": "boolean"
6583
+ },
6584
+ "default": "false",
6585
+ "fieldName": "reverse",
6586
+ "inheritedFrom": {
6587
+ "name": "GridProGenesisDatasource",
6588
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6589
+ }
6590
+ },
6591
+ {
6592
+ "name": "row-id",
6593
+ "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
6594
+ "fieldName": "rowIdAttr",
6595
+ "inheritedFrom": {
6596
+ "name": "GridProGenesisDatasource",
6597
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6598
+ }
6599
+ },
6600
+ {
6601
+ "name": "restart-on-reconnection",
6602
+ "type": {
6603
+ "text": "boolean"
6604
+ },
6605
+ "default": "false",
6606
+ "fieldName": "restartOnReconnection",
6607
+ "inheritedFrom": {
6608
+ "name": "GridProGenesisDatasource",
6609
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6610
+ }
6611
+ }
6612
+ ]
6613
+ }
6614
+ ],
6615
+ "exports": [
6616
+ {
6617
+ "kind": "js",
6618
+ "name": "GridProGenesisDatasource",
6619
+ "declaration": {
6620
+ "name": "GridProGenesisDatasource",
6621
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6622
+ }
6623
+ },
6624
+ {
6625
+ "kind": "custom-element-definition",
6626
+ "name": "grid-pro-genesis-datasource",
6627
+ "declaration": {
6628
+ "name": "GridProGenesisDatasource",
6629
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6630
+ }
6631
+ },
6632
+ {
6633
+ "kind": "js",
6634
+ "name": "GridProClientSideDatasource",
6635
+ "declaration": {
6636
+ "name": "GridProClientSideDatasource",
6637
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
6638
+ }
6639
+ },
6640
+ {
6641
+ "kind": "custom-element-definition",
6642
+ "name": "grid-pro-genesis-datasource",
6643
+ "declaration": {
6644
+ "name": "GridProClientSideDatasource",
6645
+ "module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
5388
6646
  }
5389
6647
  }
5390
6648
  ]