@genesislcap/grid-pro 14.294.0 → 14.295.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.
@@ -6399,6 +6399,14 @@
6399
6399
  "text": "number"
6400
6400
  }
6401
6401
  },
6402
+ {
6403
+ "kind": "field",
6404
+ "name": "pollTriggerEvents",
6405
+ "type": {
6406
+ "text": "string[]"
6407
+ },
6408
+ "default": "[]"
6409
+ },
6402
6410
  {
6403
6411
  "kind": "field",
6404
6412
  "name": "disablePolling",
@@ -7306,6 +7314,18 @@
7306
7314
  "module": "src/datasource/base.datasource.ts"
7307
7315
  }
7308
7316
  },
7317
+ {
7318
+ "kind": "field",
7319
+ "name": "pollTriggerEvents",
7320
+ "type": {
7321
+ "text": "string[]"
7322
+ },
7323
+ "default": "[]",
7324
+ "inheritedFrom": {
7325
+ "name": "GenesisGridDatasourceElement",
7326
+ "module": "src/datasource/base.datasource.ts"
7327
+ }
7328
+ },
7309
7329
  {
7310
7330
  "kind": "field",
7311
7331
  "name": "disablePolling",
@@ -9030,6 +9050,18 @@
9030
9050
  "module": "src/datasource/base.datasource.ts"
9031
9051
  }
9032
9052
  },
9053
+ {
9054
+ "kind": "field",
9055
+ "name": "pollTriggerEvents",
9056
+ "type": {
9057
+ "text": "string[]"
9058
+ },
9059
+ "default": "[]",
9060
+ "inheritedFrom": {
9061
+ "name": "GenesisGridDatasourceElement",
9062
+ "module": "src/datasource/base.datasource.ts"
9063
+ }
9064
+ },
9033
9065
  {
9034
9066
  "kind": "field",
9035
9067
  "name": "disablePolling",
@@ -10590,6 +10622,18 @@
10590
10622
  "module": "src/datasource/base.datasource.ts"
10591
10623
  }
10592
10624
  },
10625
+ {
10626
+ "kind": "field",
10627
+ "name": "pollTriggerEvents",
10628
+ "type": {
10629
+ "text": "string[]"
10630
+ },
10631
+ "default": "[]",
10632
+ "inheritedFrom": {
10633
+ "name": "GenesisGridDatasourceElement",
10634
+ "module": "src/datasource/base.datasource.ts"
10635
+ }
10636
+ },
10593
10637
  {
10594
10638
  "kind": "field",
10595
10639
  "name": "disablePolling",
@@ -13989,6 +14033,18 @@
13989
14033
  "module": "src/datasource/base.datasource.ts"
13990
14034
  }
13991
14035
  },
14036
+ {
14037
+ "kind": "field",
14038
+ "name": "pollTriggerEvents",
14039
+ "type": {
14040
+ "text": "string[]"
14041
+ },
14042
+ "default": "[]",
14043
+ "inheritedFrom": {
14044
+ "name": "GenesisGridDatasourceElement",
14045
+ "module": "src/datasource/base.datasource.ts"
14046
+ }
14047
+ },
13992
14048
  {
13993
14049
  "kind": "field",
13994
14050
  "name": "disablePolling",
@@ -45,11 +45,7 @@ declare const GenesisGridDatasourceElement_base: new () => {
45
45
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
46
46
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
47
47
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
48
- readonly attributes: NamedNodeMap; /**
49
- * Returns the `row-id` attribute, depending on the resource type.
50
- * @remarks Will favour the `row-id` attribute if set.
51
- * @internal
52
- */
48
+ readonly attributes: NamedNodeMap;
53
49
  readonly classList: DOMTokenList;
54
50
  className: string;
55
51
  readonly clientHeight: number;
@@ -101,7 +97,12 @@ declare const GenesisGridDatasourceElement_base: new () => {
101
97
  releasePointerCapture(pointerId: number): void;
102
98
  removeAttribute(qualifiedName: string): void;
103
99
  removeAttributeNS(namespace: string, localName: string): void;
104
- removeAttributeNode(attr: Attr): Attr;
100
+ removeAttributeNode(attr: Attr): Attr; /**
101
+ * Handles errors and emits appropriate error events.
102
+ * @param errors - The error message or array of error messages
103
+ * @param type - The type of error that occurred
104
+ * @public
105
+ */
105
106
  requestFullscreen(options?: FullscreenOptions): Promise<void>;
106
107
  requestPointerLock(): void;
107
108
  scroll(options?: ScrollToOptions): void;
@@ -123,14 +124,14 @@ declare const GenesisGridDatasourceElement_base: new () => {
123
124
  readonly firstChild: ChildNode;
124
125
  readonly isConnected: boolean;
125
126
  readonly lastChild: ChildNode;
127
+ /**
128
+ * Clears error state and emits connected event.
129
+ * @public
130
+ */
126
131
  readonly nextSibling: ChildNode;
127
132
  readonly nodeName: string;
128
133
  readonly nodeType: number;
129
134
  nodeValue: string;
130
- /**
131
- * Override datasource initialization to handle errors properly.
132
- * @internal
133
- */
134
135
  readonly parentElement: HTMLElement;
135
136
  readonly parentNode: ParentNode;
136
137
  readonly previousSibling: ChildNode;
@@ -183,10 +184,7 @@ declare const GenesisGridDatasourceElement_base: new () => {
183
184
  ariaHasPopup: string;
184
185
  ariaHidden: string;
185
186
  ariaInvalid: string;
186
- ariaKeyShortcuts: string; /**
187
- * The operation type for the {@link GridProBaseDatasource.mapTransaction} method.
188
- * @internal
189
- */
187
+ ariaKeyShortcuts: string;
190
188
  ariaLabel: string;
191
189
  ariaLevel: string;
192
190
  ariaLive: string;
@@ -368,6 +366,7 @@ export declare class GenesisGridDatasourceElement extends GenesisGridDatasourceE
368
366
  reverse: boolean;
369
367
  viewNumber: number;
370
368
  pollingInterval: number;
369
+ pollTriggerEvents: string[];
371
370
  disablePolling: boolean;
372
371
  request: any;
373
372
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"base.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.datasource.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"base.datasource.d.ts","sourceRoot":"","sources":["../../../src/datasource/base.datasource.ts"],"names":[],"mappings":"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"}
@@ -30,6 +30,7 @@ export class GenesisGridDatasourceElement extends DatasourceEventHandler(Foundat
30
30
  this.movingView = false;
31
31
  this.reverse = false;
32
32
  this.pollingInterval = DatasourceDefaults.REQ_REP_POLLING_INTERVAL_MS;
33
+ this.pollTriggerEvents = [];
33
34
  this.disablePolling = false;
34
35
  /**
35
36
  * Attribute to set whether the REQUEST object should be automatically set up.
@@ -89,6 +90,7 @@ export class GenesisGridDatasourceElement extends DatasourceEventHandler(Foundat
89
90
  // REQUEST_SERVER only
90
91
  disablePolling: this.disablePolling,
91
92
  pollingInterval: this.pollingInterval,
93
+ pollTriggerEvents: this.pollTriggerEvents,
92
94
  request: this.request,
93
95
  requestAutoSetup: this.requestAutoSetup,
94
96
  };
@@ -277,6 +279,9 @@ __decorate([
277
279
  __decorate([
278
280
  attr({ attribute: 'polling-interval' })
279
281
  ], GenesisGridDatasourceElement.prototype, "pollingInterval", void 0);
282
+ __decorate([
283
+ observable
284
+ ], GenesisGridDatasourceElement.prototype, "pollTriggerEvents", void 0);
280
285
  __decorate([
281
286
  attr({ mode: 'boolean', attribute: 'disable-polling' })
282
287
  ], GenesisGridDatasourceElement.prototype, "disablePolling", void 0);
@@ -7875,6 +7875,36 @@
7875
7875
  "isProtected": false,
7876
7876
  "isAbstract": false
7877
7877
  },
7878
+ {
7879
+ "kind": "Property",
7880
+ "canonicalReference": "@genesislcap/grid-pro!GenesisGridDatasourceElement#pollTriggerEvents:member",
7881
+ "docComment": "",
7882
+ "excerptTokens": [
7883
+ {
7884
+ "kind": "Content",
7885
+ "text": "pollTriggerEvents: "
7886
+ },
7887
+ {
7888
+ "kind": "Content",
7889
+ "text": "string[]"
7890
+ },
7891
+ {
7892
+ "kind": "Content",
7893
+ "text": ";"
7894
+ }
7895
+ ],
7896
+ "isReadonly": false,
7897
+ "isOptional": false,
7898
+ "releaseTag": "Public",
7899
+ "name": "pollTriggerEvents",
7900
+ "propertyTypeTokenRange": {
7901
+ "startIndex": 1,
7902
+ "endIndex": 2
7903
+ },
7904
+ "isStatic": false,
7905
+ "isProtected": false,
7906
+ "isAbstract": false
7907
+ },
7878
7908
  {
7879
7909
  "kind": "Method",
7880
7910
  "canonicalReference": "@genesislcap/grid-pro!GenesisGridDatasourceElement#removeFilter:member(1)",
@@ -1067,6 +1067,7 @@ export declare class GenesisGridDatasourceElement extends GenesisGridDatasourceE
1067
1067
  reverse: boolean;
1068
1068
  viewNumber: number;
1069
1069
  pollingInterval: number;
1070
+ pollTriggerEvents: string[];
1070
1071
  disablePolling: boolean;
1071
1072
  request: any;
1072
1073
  /**
@@ -1159,11 +1160,7 @@ declare const GenesisGridDatasourceElement_base: new () => {
1159
1160
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1160
1161
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
1161
1162
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
1162
- readonly attributes: NamedNodeMap; /**
1163
- * Returns the `row-id` attribute, depending on the resource type.
1164
- * @remarks Will favour the `row-id` attribute if set.
1165
- * @internal
1166
- */
1163
+ readonly attributes: NamedNodeMap;
1167
1164
  readonly classList: DOMTokenList;
1168
1165
  className: string;
1169
1166
  readonly clientHeight: number;
@@ -1215,7 +1212,12 @@ declare const GenesisGridDatasourceElement_base: new () => {
1215
1212
  releasePointerCapture(pointerId: number): void;
1216
1213
  removeAttribute(qualifiedName: string): void;
1217
1214
  removeAttributeNS(namespace: string, localName: string): void;
1218
- removeAttributeNode(attr: Attr): Attr;
1215
+ removeAttributeNode(attr: Attr): Attr; /**
1216
+ * Handles errors and emits appropriate error events.
1217
+ * @param errors - The error message or array of error messages
1218
+ * @param type - The type of error that occurred
1219
+ * @public
1220
+ */
1219
1221
  requestFullscreen(options?: FullscreenOptions): Promise<void>;
1220
1222
  requestPointerLock(): void;
1221
1223
  scroll(options?: ScrollToOptions): void;
@@ -1237,14 +1239,14 @@ declare const GenesisGridDatasourceElement_base: new () => {
1237
1239
  readonly firstChild: ChildNode;
1238
1240
  readonly isConnected: boolean;
1239
1241
  readonly lastChild: ChildNode;
1242
+ /**
1243
+ * Clears error state and emits connected event.
1244
+ * @public
1245
+ */
1240
1246
  readonly nextSibling: ChildNode;
1241
1247
  readonly nodeName: string;
1242
1248
  readonly nodeType: number;
1243
1249
  nodeValue: string;
1244
- /**
1245
- * Override datasource initialization to handle errors properly.
1246
- * @internal
1247
- */
1248
1250
  readonly parentElement: HTMLElement;
1249
1251
  readonly parentNode: ParentNode;
1250
1252
  readonly previousSibling: ChildNode;
@@ -1297,10 +1299,7 @@ declare const GenesisGridDatasourceElement_base: new () => {
1297
1299
  ariaHasPopup: string;
1298
1300
  ariaHidden: string;
1299
1301
  ariaInvalid: string;
1300
- ariaKeyShortcuts: string; /**
1301
- * The operation type for the {@link GridProBaseDatasource.mapTransaction} method.
1302
- * @internal
1303
- */
1302
+ ariaKeyShortcuts: string;
1304
1303
  ariaLabel: string;
1305
1304
  ariaLevel: string;
1306
1305
  ariaLive: string;
@@ -34,6 +34,7 @@ export declare class GenesisGridDatasourceElement extends GenesisGridDatasourceE
34
34
  | [movingView](./grid-pro.genesisgriddatasourceelement.movingview.md) | | boolean | |
35
35
  | [orderBy](./grid-pro.genesisgriddatasourceelement.orderby.md) | | string | |
36
36
  | [pollingInterval](./grid-pro.genesisgriddatasourceelement.pollinginterval.md) | | number | |
37
+ | [pollTriggerEvents](./grid-pro.genesisgriddatasourceelement.polltriggerevents.md) | | string\[\] | |
37
38
  | [request](./grid-pro.genesisgriddatasourceelement.request.md) | | any | |
38
39
  | [requestAutoSetup](./grid-pro.genesisgriddatasourceelement.requestautosetup.md) | | boolean | Attribute to set whether the REQUEST object should be automatically set up. |
39
40
  | [resourceName](./grid-pro.genesisgriddatasourceelement.resourcename.md) | | string | |
@@ -0,0 +1,11 @@
1
+ <!-- Do not edit this file. It is automatically generated by API Documenter. -->
2
+
3
+ [Home](./index.md) &gt; [@genesislcap/grid-pro](./grid-pro.md) &gt; [GenesisGridDatasourceElement](./grid-pro.genesisgriddatasourceelement.md) &gt; [pollTriggerEvents](./grid-pro.genesisgriddatasourceelement.polltriggerevents.md)
4
+
5
+ ## GenesisGridDatasourceElement.pollTriggerEvents property
6
+
7
+ **Signature:**
8
+
9
+ ```typescript
10
+ pollTriggerEvents: string[];
11
+ ```
@@ -824,6 +824,8 @@ export class GenesisGridDatasourceElement extends GenesisGridDatasourceElement_b
824
824
  // (undocumented)
825
825
  pollingInterval: number;
826
826
  // (undocumented)
827
+ pollTriggerEvents: string[];
828
+ // (undocumented)
827
829
  removeFilter(fieldName: string): void;
828
830
  // (undocumented)
829
831
  request: any;
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.294.0",
4
+ "version": "14.295.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -38,20 +38,20 @@
38
38
  }
39
39
  },
40
40
  "devDependencies": {
41
- "@genesislcap/foundation-testing": "14.294.0",
42
- "@genesislcap/genx": "14.294.0",
43
- "@genesislcap/rollup-builder": "14.294.0",
44
- "@genesislcap/ts-builder": "14.294.0",
45
- "@genesislcap/uvu-playwright-builder": "14.294.0",
46
- "@genesislcap/vite-builder": "14.294.0",
47
- "@genesislcap/webpack-builder": "14.294.0",
41
+ "@genesislcap/foundation-testing": "14.295.0",
42
+ "@genesislcap/genx": "14.295.0",
43
+ "@genesislcap/rollup-builder": "14.295.0",
44
+ "@genesislcap/ts-builder": "14.295.0",
45
+ "@genesislcap/uvu-playwright-builder": "14.295.0",
46
+ "@genesislcap/vite-builder": "14.295.0",
47
+ "@genesislcap/webpack-builder": "14.295.0",
48
48
  "rimraf": "^5.0.0"
49
49
  },
50
50
  "dependencies": {
51
- "@genesislcap/foundation-comms": "14.294.0",
52
- "@genesislcap/foundation-logger": "14.294.0",
53
- "@genesislcap/foundation-ui": "14.294.0",
54
- "@genesislcap/foundation-utils": "14.294.0",
51
+ "@genesislcap/foundation-comms": "14.295.0",
52
+ "@genesislcap/foundation-logger": "14.295.0",
53
+ "@genesislcap/foundation-ui": "14.295.0",
54
+ "@genesislcap/foundation-utils": "14.295.0",
55
55
  "@microsoft/fast-colors": "5.3.1",
56
56
  "@microsoft/fast-components": "2.30.6",
57
57
  "@microsoft/fast-element": "1.14.0",
@@ -77,5 +77,5 @@
77
77
  "access": "public"
78
78
  },
79
79
  "customElements": "dist/custom-elements.json",
80
- "gitHead": "f7e3720d6f7bd3810a4a8350e4a3e9f436edb078"
80
+ "gitHead": "2fbc580036b886f22f2da3803ce33672202f3214"
81
81
  }