@genesislcap/grid-pro 14.168.0 → 14.170.0-genxgit.1

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 (47) hide show
  1. package/dist/custom-elements.json +126 -3
  2. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.config.d.ts +9 -0
  3. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.config.d.ts.map +1 -0
  4. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +14 -5
  5. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
  6. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.d.ts +25 -0
  7. package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.d.ts.map +1 -0
  8. package/dist/dts/grid-pro-genesis-datasource/index.d.ts +2 -0
  9. package/dist/dts/grid-pro-genesis-datasource/index.d.ts.map +1 -1
  10. package/dist/dts/grid-pro.d.ts +13 -15
  11. package/dist/dts/grid-pro.d.ts.map +1 -1
  12. package/dist/dts/grid-pro.definitions.d.ts +15 -0
  13. package/dist/dts/grid-pro.definitions.d.ts.map +1 -1
  14. package/dist/dts/grid-pro.styles.d.ts.map +1 -1
  15. package/dist/dts/grid-pro.template.d.ts +11 -1
  16. package/dist/dts/grid-pro.template.d.ts.map +1 -1
  17. package/dist/dts/grid-pro.types.d.ts +28 -0
  18. package/dist/dts/grid-pro.types.d.ts.map +1 -1
  19. package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.config.js +8 -0
  20. package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +10 -2
  21. package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.js +1 -0
  22. package/dist/esm/grid-pro-genesis-datasource/index.js +2 -0
  23. package/dist/esm/grid-pro.definitions.js +15 -0
  24. package/dist/esm/grid-pro.js +24 -2
  25. package/dist/esm/grid-pro.styles.js +35 -5
  26. package/dist/esm/grid-pro.template.js +41 -2
  27. package/dist/grid-pro.api.json +453 -1
  28. package/dist/grid-pro.d.ts +121 -20
  29. package/docs/api/grid-pro.getgridprotemplate.md +13 -0
  30. package/docs/api/grid-pro.gridpro.griderroritems.md +11 -0
  31. package/docs/api/grid-pro.gridpro.md +1 -0
  32. package/docs/api/grid-pro.gridproerrorevent.md +15 -0
  33. package/docs/api/grid-pro.gridproerroritem.detail.md +11 -0
  34. package/docs/api/grid-pro.gridproerroritem.md +21 -0
  35. package/docs/api/grid-pro.gridproerroritem.type.md +11 -0
  36. package/docs/api/grid-pro.gridproerrornames.md +16 -0
  37. package/docs/api/grid-pro.gridproerrortypes.md +15 -0
  38. package/docs/api/grid-pro.gridproeventnames.md +15 -0
  39. package/docs/api/grid-pro.gridprogenesisdatasourceerrorevent.md +15 -0
  40. package/docs/api/grid-pro.gridprogenesisdatasourceerroreventdetail.md +15 -0
  41. package/docs/api/grid-pro.gridprogenesisdatasourceeventnames.md +16 -0
  42. package/docs/api/grid-pro.gridprogenesisrowdatasetevent.md +15 -0
  43. package/docs/api/grid-pro.gridprogenesisrowdataseteventdetail.md +15 -0
  44. package/docs/api/grid-pro.gridprotemplate.md +5 -2
  45. package/docs/api/grid-pro.md +12 -1
  46. package/docs/api-report.md +61 -1
  47. package/package.json +13 -13
@@ -14,8 +14,8 @@ import { ActionRenderer, ActionsMenuRenderer, BooleanRenderer, EditableRenderer,
14
14
  import { GridProColumn } from './column';
15
15
  import { GridProClientSideDatasource, GridProServerSideDatasource } from './datasource';
16
16
  import { agThemeFontFaceMap, defaultAgGridFontFace } from './external';
17
- import { GridProGenesisDatasource } from './grid-pro-genesis-datasource';
18
- import { DEBOUNCED_RESIZE_TIME } from './grid-pro.definitions';
17
+ import { GridProGenesisDatasource, gridProGenesisDatasourceEventNames, } from './grid-pro-genesis-datasource';
18
+ import { DEBOUNCED_RESIZE_TIME, gridProEventNames, gridProErrorNames, } from './grid-pro.definitions';
19
19
  import { foundationGridProStyles as styles } from './grid-pro.styles';
20
20
  import { gridProTemplate as template } from './grid-pro.template';
21
21
  import { AgGridTheme, GridProRendererTypes, agThemeFontsId, agThemeTokenMapClassname, GRID_READY_EVENT, ERROR_COLUMN_FIELD, EDITED_COLUMN_FIELD, GridOptionsConfig, } from './grid-pro.types';
@@ -65,6 +65,7 @@ export class GridPro extends LifecycleMixin(FoundationElement) {
65
65
  }
66
66
  constructor() {
67
67
  super();
68
+ this.gridErrorItems = [];
68
69
  // Genesis-specific attrs
69
70
  this.autoCellRendererByType = false;
70
71
  this.onlyTemplateColDefs = false;
@@ -111,6 +112,7 @@ export class GridPro extends LifecycleMixin(FoundationElement) {
111
112
  this.columnComponentName = 'grid-pro-column';
112
113
  this.theme = AgGridTheme.alpine;
113
114
  this.rehydrationAttempted = false;
115
+ this.rootEventsListeners = [];
114
116
  this.gridEventsQueue = [];
115
117
  this._filterConfig = undefined;
116
118
  this.agAttributes = {};
@@ -119,6 +121,11 @@ export class GridPro extends LifecycleMixin(FoundationElement) {
119
121
  map[convertToKebabCase(property)] = property;
120
122
  return map;
121
123
  }, {});
124
+ const hideDataSourceError = this.hideDatasourceError.bind(this);
125
+ this.rootEventsListeners.push({ key: gridProGenesisDatasourceEventNames.rowDataSet, action: hideDataSourceError }, { key: gridProEventNames.datasourceErrorClose, action: hideDataSourceError }, {
126
+ key: gridProGenesisDatasourceEventNames.error,
127
+ action: this.handleError.bind(this, gridProErrorNames.datasource),
128
+ });
122
129
  }
123
130
  addEventListener(type, listener, options) {
124
131
  super.addEventListener(type, listener, options);
@@ -136,6 +143,12 @@ export class GridPro extends LifecycleMixin(FoundationElement) {
136
143
  this.$emit(type, e);
137
144
  });
138
145
  }
146
+ handleError(type, event) {
147
+ this.gridErrorItems = [...this.gridErrorItems, { detail: event.detail, type }];
148
+ }
149
+ hideDatasourceError() {
150
+ this.gridErrorItems = this.gridErrorItems.filter((item) => item.type !== gridProErrorNames.datasource);
151
+ }
139
152
  connectedCallback() {
140
153
  super.connectedCallback();
141
154
  if (this.gridAutosizingEnabled) {
@@ -157,11 +170,17 @@ export class GridPro extends LifecycleMixin(FoundationElement) {
157
170
  configurable: true,
158
171
  });
159
172
  });
173
+ this.rootEventsListeners.forEach(({ key, action }) => {
174
+ this.addEventListener(key, action);
175
+ });
160
176
  }
161
177
  disconnectedCallback() {
162
178
  super.disconnectedCallback();
163
179
  this.rehydrationAttempted = false;
164
180
  const shouldRunDisconnect = this.shouldRunDisconnect;
181
+ this.rootEventsListeners.forEach(({ key, action }) => {
182
+ this.removeEventListener(key, action);
183
+ });
165
184
  DOM.queueUpdate(() => {
166
185
  var _a;
167
186
  if (!shouldRunDisconnect)
@@ -495,6 +514,9 @@ __decorate([
495
514
  __decorate([
496
515
  observable
497
516
  ], GridPro.prototype, "gridApi", void 0);
517
+ __decorate([
518
+ observable
519
+ ], GridPro.prototype, "gridErrorItems", void 0);
498
520
  __decorate([
499
521
  StatePersistence
500
522
  ], GridPro.prototype, "statePersistence", void 0);
@@ -8,19 +8,23 @@ import { agExternalStockStyles } from './external';
8
8
  export const foundationGridProStyles = css `
9
9
  ${agExternalStockStyles}
10
10
  :host {
11
+ --datasource-error-background-color: var(--neutral-layer-4);
12
+ --datasource-error-background-opacity: 0.5;
13
+ --datasource-error-dialog-max-width: 50%;
14
+ --datasource-error-dialog-min-width: auto;
15
+
16
+ position: relative;
11
17
  width: 100%;
12
18
  height: 100%;
13
19
  }
14
20
 
15
21
  :host([ds-disconnected]) {
16
- opacity: 40%;
22
+ display: block;
17
23
  }
18
24
 
19
- :host([ds-disconnected]) > * {
25
+ :host([ds-disconnected])::part(grid) {
20
26
  cursor: not-allowed;
21
- }
22
-
23
- :host([ds-disconnected]) > * > * {
27
+ opacity: 40%;
24
28
  pointer-events: none;
25
29
  }
26
30
 
@@ -33,4 +37,30 @@ export const foundationGridProStyles = css `
33
37
  .ag-cell-inline-editing {
34
38
  height: inherit !important;
35
39
  }
40
+
41
+ .hidden {
42
+ display: none;
43
+ }
44
+
45
+ .grid-datasource-error-dialog::part(dialog) {
46
+ position: absolute;
47
+ z-index: 2;
48
+ max-width: var(--datasource-error-dialog-max-width);
49
+
50
+ --dialog-min-width: var(--datasource-error-dialog-min-width);
51
+ }
52
+
53
+ .grid-datasource-error-dialog::before {
54
+ content: '';
55
+ position: absolute;
56
+ top: 50%;
57
+ transform: translateY(-50%);
58
+ left: 0;
59
+ height: 100%;
60
+ width: 100%;
61
+ border-radius: 2px;
62
+ background-color: var(--datasource-error-background-color);
63
+ opacity: var(--datasource-error-background-opacity);
64
+ z-index: 1;
65
+ }
36
66
  `;
@@ -1,13 +1,52 @@
1
1
  import { html, ref } from '@microsoft/fast-element';
2
+ import { gridProErrorNames } from './grid-pro.definitions';
2
3
  /**
3
- * The Grid Pro Template.
4
+ * Get a Design System prefixed The Grid Pro template.
5
+ * @param prefix - The design system prefix to use. Defaults to 'foundation'.
6
+ * @returns A grid Pro template prefixed with the correct design system.
4
7
  * @public
5
8
  */
6
- export const gridProTemplate = html `
9
+ export const getGridProTemplate = (prefix = 'foundation') => html `
7
10
  <template>
8
11
  <span part="grid" class="${(x) => x.classNames}">
9
12
  <slot name="grid" ${ref('gridSlot')}></slot>
10
13
  <slot></slot>
11
14
  </span>
15
+ <slot
16
+ name="grid-datasource-error"
17
+ part="grid-datasource-error"
18
+ class="${(x) => (x.gridErrorItems.filter(({ type }) => type === gridProErrorNames.datasource).length > 0 ? '' : 'hidden')}"
19
+ >
20
+ <${prefix}-dialog
21
+ class="grid-datasource-error-dialog"
22
+ type="error"
23
+ show-close-icon="false"
24
+ open
25
+ >
26
+ <h2 slot="top" class="title">Component unavailable</h2>
27
+ <p>
28
+ Please refresh to reconnect.
29
+ It is recommended that you save your data before refreshing.
30
+ Data is not current and may be incomplete.
31
+ </p>
32
+ <div slot="bottom">
33
+ <${prefix}-button
34
+ appearance="lightweight"
35
+ @click=${() => {
36
+ window.location.reload();
37
+ }}
38
+ >
39
+ Refresh
40
+ </${prefix}-button>
41
+ </div>
42
+ </${prefix}-dialog>
43
+ </slot>
12
44
  </template>
13
45
  `;
46
+ /**
47
+ *
48
+ * @public
49
+ * @remarks
50
+ * HTML Element: \<foundation-grid-pro\>
51
+ */
52
+ export const gridProTemplate = getGridProTemplate();
@@ -7020,6 +7020,47 @@
7020
7020
  "endIndex": 6
7021
7021
  }
7022
7022
  },
7023
+ {
7024
+ "kind": "Variable",
7025
+ "canonicalReference": "@genesislcap/grid-pro!getGridProTemplate:var",
7026
+ "docComment": "/**\n * Get a Design System prefixed The Grid Pro template.\n *\n * @param prefix - The design system prefix to use. Defaults to 'foundation'.\n *\n * @returns A grid Pro template prefixed with the correct design system.\n *\n * @public\n */\n",
7027
+ "excerptTokens": [
7028
+ {
7029
+ "kind": "Content",
7030
+ "text": "getGridProTemplate: "
7031
+ },
7032
+ {
7033
+ "kind": "Content",
7034
+ "text": "(prefix?: string) => "
7035
+ },
7036
+ {
7037
+ "kind": "Reference",
7038
+ "text": "ViewTemplate",
7039
+ "canonicalReference": "@microsoft/fast-element!ViewTemplate:class"
7040
+ },
7041
+ {
7042
+ "kind": "Content",
7043
+ "text": "<"
7044
+ },
7045
+ {
7046
+ "kind": "Reference",
7047
+ "text": "GridPro",
7048
+ "canonicalReference": "@genesislcap/grid-pro!GridPro:class"
7049
+ },
7050
+ {
7051
+ "kind": "Content",
7052
+ "text": ", any>"
7053
+ }
7054
+ ],
7055
+ "fileUrlPath": "src/grid-pro.template.ts",
7056
+ "isReadonly": true,
7057
+ "releaseTag": "Public",
7058
+ "name": "getGridProTemplate",
7059
+ "variableTypeTokenRange": {
7060
+ "startIndex": 1,
7061
+ "endIndex": 6
7062
+ }
7063
+ },
7023
7064
  {
7024
7065
  "kind": "Variable",
7025
7066
  "canonicalReference": "@genesislcap/grid-pro!getMultiselectEditorTemplate:var",
@@ -8511,6 +8552,50 @@
8511
8552
  "isProtected": false,
8512
8553
  "isAbstract": false
8513
8554
  },
8555
+ {
8556
+ "kind": "Property",
8557
+ "canonicalReference": "@genesislcap/grid-pro!GridPro#gridErrorItems:member",
8558
+ "docComment": "",
8559
+ "excerptTokens": [
8560
+ {
8561
+ "kind": "Content",
8562
+ "text": "gridErrorItems: "
8563
+ },
8564
+ {
8565
+ "kind": "Reference",
8566
+ "text": "GridProErrorItem",
8567
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorItem:interface"
8568
+ },
8569
+ {
8570
+ "kind": "Content",
8571
+ "text": "<"
8572
+ },
8573
+ {
8574
+ "kind": "Reference",
8575
+ "text": "GridProErrorEvent",
8576
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorEvent:type"
8577
+ },
8578
+ {
8579
+ "kind": "Content",
8580
+ "text": "['detail']>[]"
8581
+ },
8582
+ {
8583
+ "kind": "Content",
8584
+ "text": ";"
8585
+ }
8586
+ ],
8587
+ "isReadonly": false,
8588
+ "isOptional": false,
8589
+ "releaseTag": "Public",
8590
+ "name": "gridErrorItems",
8591
+ "propertyTypeTokenRange": {
8592
+ "startIndex": 1,
8593
+ "endIndex": 5
8594
+ },
8595
+ "isStatic": false,
8596
+ "isProtected": false,
8597
+ "isAbstract": false
8598
+ },
8514
8599
  {
8515
8600
  "kind": "Property",
8516
8601
  "canonicalReference": "@genesislcap/grid-pro!GridPro#gridFontFace:member",
@@ -10145,6 +10230,218 @@
10145
10230
  ],
10146
10231
  "name": "gridProColumns"
10147
10232
  },
10233
+ {
10234
+ "kind": "TypeAlias",
10235
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorEvent:type",
10236
+ "docComment": "/**\n * Grid Pro possible error events\n *\n * @public\n */\n",
10237
+ "excerptTokens": [
10238
+ {
10239
+ "kind": "Content",
10240
+ "text": "export type GridProErrorEvent = "
10241
+ },
10242
+ {
10243
+ "kind": "Reference",
10244
+ "text": "GridProGenesisDatasourceErrorEvent",
10245
+ "canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasourceErrorEvent:type"
10246
+ },
10247
+ {
10248
+ "kind": "Content",
10249
+ "text": " | "
10250
+ },
10251
+ {
10252
+ "kind": "Reference",
10253
+ "text": "CustomEvent",
10254
+ "canonicalReference": "!CustomEvent:interface"
10255
+ },
10256
+ {
10257
+ "kind": "Content",
10258
+ "text": "<"
10259
+ },
10260
+ {
10261
+ "kind": "Reference",
10262
+ "text": "GridProErrorItem",
10263
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorItem:interface"
10264
+ },
10265
+ {
10266
+ "kind": "Content",
10267
+ "text": "<any>>"
10268
+ },
10269
+ {
10270
+ "kind": "Content",
10271
+ "text": ";"
10272
+ }
10273
+ ],
10274
+ "fileUrlPath": "src/grid-pro.types.ts",
10275
+ "releaseTag": "Public",
10276
+ "name": "GridProErrorEvent",
10277
+ "typeTokenRange": {
10278
+ "startIndex": 1,
10279
+ "endIndex": 7
10280
+ }
10281
+ },
10282
+ {
10283
+ "kind": "Interface",
10284
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorItem:interface",
10285
+ "docComment": "/**\n * Grid Pro Error Item\n *\n * @public\n */\n",
10286
+ "excerptTokens": [
10287
+ {
10288
+ "kind": "Content",
10289
+ "text": "export interface GridProErrorItem<GridProErrorItemDetailType> "
10290
+ }
10291
+ ],
10292
+ "fileUrlPath": "src/grid-pro.types.ts",
10293
+ "releaseTag": "Public",
10294
+ "typeParameters": [
10295
+ {
10296
+ "typeParameterName": "GridProErrorItemDetailType",
10297
+ "constraintTokenRange": {
10298
+ "startIndex": 0,
10299
+ "endIndex": 0
10300
+ },
10301
+ "defaultTypeTokenRange": {
10302
+ "startIndex": 0,
10303
+ "endIndex": 0
10304
+ }
10305
+ }
10306
+ ],
10307
+ "name": "GridProErrorItem",
10308
+ "preserveMemberOrder": false,
10309
+ "members": [
10310
+ {
10311
+ "kind": "PropertySignature",
10312
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorItem#detail:member",
10313
+ "docComment": "",
10314
+ "excerptTokens": [
10315
+ {
10316
+ "kind": "Content",
10317
+ "text": "detail: "
10318
+ },
10319
+ {
10320
+ "kind": "Content",
10321
+ "text": "GridProErrorItemDetailType"
10322
+ },
10323
+ {
10324
+ "kind": "Content",
10325
+ "text": ";"
10326
+ }
10327
+ ],
10328
+ "isReadonly": false,
10329
+ "isOptional": false,
10330
+ "releaseTag": "Public",
10331
+ "name": "detail",
10332
+ "propertyTypeTokenRange": {
10333
+ "startIndex": 1,
10334
+ "endIndex": 2
10335
+ }
10336
+ },
10337
+ {
10338
+ "kind": "PropertySignature",
10339
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorItem#type:member",
10340
+ "docComment": "",
10341
+ "excerptTokens": [
10342
+ {
10343
+ "kind": "Content",
10344
+ "text": "type: "
10345
+ },
10346
+ {
10347
+ "kind": "Reference",
10348
+ "text": "GridProErrorTypes",
10349
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorTypes:type"
10350
+ },
10351
+ {
10352
+ "kind": "Content",
10353
+ "text": ";"
10354
+ }
10355
+ ],
10356
+ "isReadonly": false,
10357
+ "isOptional": false,
10358
+ "releaseTag": "Public",
10359
+ "name": "type",
10360
+ "propertyTypeTokenRange": {
10361
+ "startIndex": 1,
10362
+ "endIndex": 2
10363
+ }
10364
+ }
10365
+ ],
10366
+ "extendsTokenRanges": []
10367
+ },
10368
+ {
10369
+ "kind": "Variable",
10370
+ "canonicalReference": "@genesislcap/grid-pro!gridProErrorNames:var",
10371
+ "docComment": "/**\n * The error names for the Grid Pro component.\n *\n * @public\n */\n",
10372
+ "excerptTokens": [
10373
+ {
10374
+ "kind": "Content",
10375
+ "text": "gridProErrorNames: "
10376
+ },
10377
+ {
10378
+ "kind": "Content",
10379
+ "text": "{\n readonly datasource: \"datasource\";\n readonly unknown: \"unknown\";\n}"
10380
+ }
10381
+ ],
10382
+ "fileUrlPath": "src/grid-pro.definitions.ts",
10383
+ "isReadonly": true,
10384
+ "releaseTag": "Public",
10385
+ "name": "gridProErrorNames",
10386
+ "variableTypeTokenRange": {
10387
+ "startIndex": 1,
10388
+ "endIndex": 2
10389
+ }
10390
+ },
10391
+ {
10392
+ "kind": "TypeAlias",
10393
+ "canonicalReference": "@genesislcap/grid-pro!GridProErrorTypes:type",
10394
+ "docComment": "/**\n * Grid Pro Error Types\n *\n * @public\n */\n",
10395
+ "excerptTokens": [
10396
+ {
10397
+ "kind": "Content",
10398
+ "text": "export type GridProErrorTypes = "
10399
+ },
10400
+ {
10401
+ "kind": "Content",
10402
+ "text": "keyof typeof "
10403
+ },
10404
+ {
10405
+ "kind": "Reference",
10406
+ "text": "gridProErrorNames",
10407
+ "canonicalReference": "@genesislcap/grid-pro!gridProErrorNames:var"
10408
+ },
10409
+ {
10410
+ "kind": "Content",
10411
+ "text": ";"
10412
+ }
10413
+ ],
10414
+ "fileUrlPath": "src/grid-pro.types.ts",
10415
+ "releaseTag": "Public",
10416
+ "name": "GridProErrorTypes",
10417
+ "typeTokenRange": {
10418
+ "startIndex": 1,
10419
+ "endIndex": 3
10420
+ }
10421
+ },
10422
+ {
10423
+ "kind": "Variable",
10424
+ "canonicalReference": "@genesislcap/grid-pro!gridProEventNames:var",
10425
+ "docComment": "/**\n * The event names for the Grid Pro component.\n *\n * @public\n */\n",
10426
+ "excerptTokens": [
10427
+ {
10428
+ "kind": "Content",
10429
+ "text": "gridProEventNames: "
10430
+ },
10431
+ {
10432
+ "kind": "Content",
10433
+ "text": "{\n datasourceErrorClose: string;\n}"
10434
+ }
10435
+ ],
10436
+ "fileUrlPath": "src/grid-pro.definitions.ts",
10437
+ "isReadonly": true,
10438
+ "releaseTag": "Public",
10439
+ "name": "gridProEventNames",
10440
+ "variableTypeTokenRange": {
10441
+ "startIndex": 1,
10442
+ "endIndex": 2
10443
+ }
10444
+ },
10148
10445
  {
10149
10446
  "kind": "Class",
10150
10447
  "canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasource:class",
@@ -11162,6 +11459,161 @@
11162
11459
  },
11163
11460
  "implementsTokenRanges": []
11164
11461
  },
11462
+ {
11463
+ "kind": "TypeAlias",
11464
+ "canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasourceErrorEvent:type",
11465
+ "docComment": "/**\n * The error event grid pro genesis datasource.\n *\n * @public\n */\n",
11466
+ "excerptTokens": [
11467
+ {
11468
+ "kind": "Content",
11469
+ "text": "export type GridProGenesisDatasourceErrorEvent = "
11470
+ },
11471
+ {
11472
+ "kind": "Reference",
11473
+ "text": "CustomEvent",
11474
+ "canonicalReference": "!CustomEvent:interface"
11475
+ },
11476
+ {
11477
+ "kind": "Content",
11478
+ "text": "<"
11479
+ },
11480
+ {
11481
+ "kind": "Reference",
11482
+ "text": "GridProGenesisDatasourceErrorEventDetail",
11483
+ "canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasourceErrorEventDetail:type"
11484
+ },
11485
+ {
11486
+ "kind": "Content",
11487
+ "text": ">"
11488
+ },
11489
+ {
11490
+ "kind": "Content",
11491
+ "text": ";"
11492
+ }
11493
+ ],
11494
+ "fileUrlPath": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.ts",
11495
+ "releaseTag": "Public",
11496
+ "name": "GridProGenesisDatasourceErrorEvent",
11497
+ "typeTokenRange": {
11498
+ "startIndex": 1,
11499
+ "endIndex": 5
11500
+ }
11501
+ },
11502
+ {
11503
+ "kind": "TypeAlias",
11504
+ "canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasourceErrorEventDetail:type",
11505
+ "docComment": "/**\n * The event detail for the grid pro genesis datasource `error` event.\n *\n * @public\n */\n",
11506
+ "excerptTokens": [
11507
+ {
11508
+ "kind": "Content",
11509
+ "text": "export type GridProGenesisDatasourceErrorEventDetail = "
11510
+ },
11511
+ {
11512
+ "kind": "Content",
11513
+ "text": "{\n message: string;\n}"
11514
+ },
11515
+ {
11516
+ "kind": "Content",
11517
+ "text": ";"
11518
+ }
11519
+ ],
11520
+ "fileUrlPath": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.ts",
11521
+ "releaseTag": "Public",
11522
+ "name": "GridProGenesisDatasourceErrorEventDetail",
11523
+ "typeTokenRange": {
11524
+ "startIndex": 1,
11525
+ "endIndex": 2
11526
+ }
11527
+ },
11528
+ {
11529
+ "kind": "Variable",
11530
+ "canonicalReference": "@genesislcap/grid-pro!gridProGenesisDatasourceEventNames:var",
11531
+ "docComment": "/**\n * The Genesis Datasource events names.\n *\n * @public\n */\n",
11532
+ "excerptTokens": [
11533
+ {
11534
+ "kind": "Content",
11535
+ "text": "gridProGenesisDatasourceEventNames: "
11536
+ },
11537
+ {
11538
+ "kind": "Content",
11539
+ "text": "{\n error: string;\n rowDataSet: string;\n}"
11540
+ }
11541
+ ],
11542
+ "fileUrlPath": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.config.ts",
11543
+ "isReadonly": true,
11544
+ "releaseTag": "Public",
11545
+ "name": "gridProGenesisDatasourceEventNames",
11546
+ "variableTypeTokenRange": {
11547
+ "startIndex": 1,
11548
+ "endIndex": 2
11549
+ }
11550
+ },
11551
+ {
11552
+ "kind": "TypeAlias",
11553
+ "canonicalReference": "@genesislcap/grid-pro!GridProGenesisRowDataSetEvent:type",
11554
+ "docComment": "/**\n * The rowDataSet event grid pro genesis datasource.\n *\n * @public\n */\n",
11555
+ "excerptTokens": [
11556
+ {
11557
+ "kind": "Content",
11558
+ "text": "export type GridProGenesisRowDataSetEvent = "
11559
+ },
11560
+ {
11561
+ "kind": "Reference",
11562
+ "text": "CustomEvent",
11563
+ "canonicalReference": "!CustomEvent:interface"
11564
+ },
11565
+ {
11566
+ "kind": "Content",
11567
+ "text": "<"
11568
+ },
11569
+ {
11570
+ "kind": "Reference",
11571
+ "text": "GridProGenesisRowDataSetEventDetail",
11572
+ "canonicalReference": "@genesislcap/grid-pro!GridProGenesisRowDataSetEventDetail:type"
11573
+ },
11574
+ {
11575
+ "kind": "Content",
11576
+ "text": ">"
11577
+ },
11578
+ {
11579
+ "kind": "Content",
11580
+ "text": ";"
11581
+ }
11582
+ ],
11583
+ "fileUrlPath": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.ts",
11584
+ "releaseTag": "Public",
11585
+ "name": "GridProGenesisRowDataSetEvent",
11586
+ "typeTokenRange": {
11587
+ "startIndex": 1,
11588
+ "endIndex": 5
11589
+ }
11590
+ },
11591
+ {
11592
+ "kind": "TypeAlias",
11593
+ "canonicalReference": "@genesislcap/grid-pro!GridProGenesisRowDataSetEventDetail:type",
11594
+ "docComment": "/**\n * The event detail for the grid pro genesis datasource `rowDataSet` event.\n *\n * @public\n */\n",
11595
+ "excerptTokens": [
11596
+ {
11597
+ "kind": "Content",
11598
+ "text": "export type GridProGenesisRowDataSetEventDetail = "
11599
+ },
11600
+ {
11601
+ "kind": "Content",
11602
+ "text": "{\n data: any[];\n}"
11603
+ },
11604
+ {
11605
+ "kind": "Content",
11606
+ "text": ";"
11607
+ }
11608
+ ],
11609
+ "fileUrlPath": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.ts",
11610
+ "releaseTag": "Public",
11611
+ "name": "GridProGenesisRowDataSetEventDetail",
11612
+ "typeTokenRange": {
11613
+ "startIndex": 1,
11614
+ "endIndex": 2
11615
+ }
11616
+ },
11165
11617
  {
11166
11618
  "kind": "Enum",
11167
11619
  "canonicalReference": "@genesislcap/grid-pro!GridProRendererTypes:enum",
@@ -11413,7 +11865,7 @@
11413
11865
  {
11414
11866
  "kind": "Variable",
11415
11867
  "canonicalReference": "@genesislcap/grid-pro!gridProTemplate:var",
11416
- "docComment": "/**\n * The Grid Pro Template.\n *\n * @public\n */\n",
11868
+ "docComment": "/**\n * @remarks\n *\n * HTML Element: \\<foundation-grid-pro\\>\n *\n * @public\n */\n",
11417
11869
  "excerptTokens": [
11418
11870
  {
11419
11871
  "kind": "Content",