@genesislcap/grid-pro 14.64.2 → 14.64.3
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.
- package/dist/custom-elements.json +7 -0
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts +10 -16
- package/dist/dts/grid-pro-genesis-datasource/grid-pro-genesis-datasource.d.ts.map +1 -1
- package/dist/esm/grid-pro-genesis-datasource/grid-pro-genesis-datasource.js +6 -2
- package/dist/grid-pro.api.json +31 -0
- package/dist/grid-pro.d.ts +10 -15
- package/docs/api/grid-pro.gridprogenesisdatasource.auth.md +11 -0
- package/docs/api/grid-pro.gridprogenesisdatasource.md +1 -0
- package/docs/api-report.md +3 -0
- package/package.json +7 -7
|
@@ -3162,6 +3162,13 @@
|
|
|
3162
3162
|
"description": "The Genesis Datasource element, for CSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
3163
3163
|
"name": "GridProGenesisDatasource",
|
|
3164
3164
|
"members": [
|
|
3165
|
+
{
|
|
3166
|
+
"kind": "field",
|
|
3167
|
+
"name": "auth",
|
|
3168
|
+
"type": {
|
|
3169
|
+
"text": "Auth"
|
|
3170
|
+
}
|
|
3171
|
+
},
|
|
3165
3172
|
{
|
|
3166
3173
|
"kind": "field",
|
|
3167
3174
|
"name": "connect",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { GridOptions } from '@ag-grid-community/core';
|
|
2
|
-
import { Connect, Datasource } from '@genesislcap/foundation-comms';
|
|
2
|
+
import { Auth, Connect, Datasource } from '@genesislcap/foundation-comms';
|
|
3
3
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
4
4
|
declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
5
5
|
"__#1@#_container": import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
|
@@ -72,21 +72,9 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
72
72
|
getBoundingClientRect(): DOMRect;
|
|
73
73
|
getClientRects(): DOMRectList;
|
|
74
74
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
75
|
-
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
* @deprecated Use `deinit` instead
|
|
79
|
-
*/
|
|
80
|
-
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>; /**
|
|
81
|
-
* Resets the datasource to its initial state.
|
|
82
|
-
* @public
|
|
83
|
-
* @deprecated Use `deinit` instead
|
|
84
|
-
*/
|
|
85
|
-
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>; /**
|
|
86
|
-
* Resets the datasource to its initial state.
|
|
87
|
-
* @public
|
|
88
|
-
* @deprecated Use `deinit` instead
|
|
89
|
-
*/
|
|
75
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
76
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
77
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
90
78
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
91
79
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
92
80
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
@@ -98,6 +86,11 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
98
86
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
99
87
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
100
88
|
matches(selectors: string): boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Sends a DATA_LOGOFF when the resource is an active stream
|
|
91
|
+
* @remarks Will only happen for streaming DATASERER resources.
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
101
94
|
releasePointerCapture(pointerId: number): void;
|
|
102
95
|
removeAttribute(qualifiedName: string): void;
|
|
103
96
|
removeAttributeNS(namespace: string, localName: string): void;
|
|
@@ -339,6 +332,7 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
339
332
|
* @public
|
|
340
333
|
*/
|
|
341
334
|
export declare class GridProGenesisDatasource extends GridProGenesisDatasource_base {
|
|
335
|
+
auth: Auth;
|
|
342
336
|
connect: Connect;
|
|
343
337
|
datasource: Datasource;
|
|
344
338
|
deferredGridOptions: GridOptions;
|
|
@@ -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":"AAAA,OAAO,EAAU,WAAW,EAAsB,MAAM,yBAAyB,CAAC;AAClF,OAAO,EACL,OAAO,EAEP,UAAU,EAYX,MAAM,+BAA+B,CAAC;AAGvC,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC
|
|
1
|
+
{"version":3,"file":"grid-pro-genesis-datasource.d.ts","sourceRoot":"","sources":["../../../src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __awaiter, __decorate } from "tslib";
|
|
2
|
-
import { Connect, dataServerResultFilter, Datasource, DatasourceDefaults, FieldTypeEnum, MessageType, normaliseCriteria, ResourceType, } from '@genesislcap/foundation-comms';
|
|
2
|
+
import { Auth, Connect, dataServerResultFilter, Datasource, DatasourceDefaults, FieldTypeEnum, MessageType, normaliseCriteria, ResourceType, } from '@genesislcap/foundation-comms';
|
|
3
3
|
import { LifecycleMixin } from '@genesislcap/foundation-utils';
|
|
4
4
|
import { attr, customElement, DOM, observable } from '@microsoft/fast-element';
|
|
5
5
|
import { FoundationElement } from '@microsoft/fast-foundation';
|
|
@@ -179,7 +179,8 @@ let GridProGenesisDatasource = class GridProGenesisDatasource extends LifecycleM
|
|
|
179
179
|
* @internal
|
|
180
180
|
*/
|
|
181
181
|
dataLogoff() {
|
|
182
|
-
|
|
182
|
+
const shouldPerformDataLogoff = this.sourceRef && !this.isRequestServer && !this.isSnapshot;
|
|
183
|
+
if (shouldPerformDataLogoff && this.auth.isLoggedIn) {
|
|
183
184
|
this.connect.dataLogoff(this.sourceRef);
|
|
184
185
|
}
|
|
185
186
|
this.sourceRef = undefined;
|
|
@@ -439,6 +440,9 @@ let GridProGenesisDatasource = class GridProGenesisDatasource extends LifecycleM
|
|
|
439
440
|
this.update.next(this.criteriaFromFilters);
|
|
440
441
|
}
|
|
441
442
|
};
|
|
443
|
+
__decorate([
|
|
444
|
+
Auth
|
|
445
|
+
], GridProGenesisDatasource.prototype, "auth", void 0);
|
|
442
446
|
__decorate([
|
|
443
447
|
Connect
|
|
444
448
|
], GridProGenesisDatasource.prototype, "connect", void 0);
|
package/dist/grid-pro.api.json
CHANGED
|
@@ -6527,6 +6527,37 @@
|
|
|
6527
6527
|
"name": "GridProGenesisDatasource",
|
|
6528
6528
|
"preserveMemberOrder": false,
|
|
6529
6529
|
"members": [
|
|
6530
|
+
{
|
|
6531
|
+
"kind": "Property",
|
|
6532
|
+
"canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasource#auth:member",
|
|
6533
|
+
"docComment": "",
|
|
6534
|
+
"excerptTokens": [
|
|
6535
|
+
{
|
|
6536
|
+
"kind": "Content",
|
|
6537
|
+
"text": "auth: "
|
|
6538
|
+
},
|
|
6539
|
+
{
|
|
6540
|
+
"kind": "Reference",
|
|
6541
|
+
"text": "Auth",
|
|
6542
|
+
"canonicalReference": "@genesislcap/foundation-comms!Auth:interface"
|
|
6543
|
+
},
|
|
6544
|
+
{
|
|
6545
|
+
"kind": "Content",
|
|
6546
|
+
"text": ";"
|
|
6547
|
+
}
|
|
6548
|
+
],
|
|
6549
|
+
"isReadonly": false,
|
|
6550
|
+
"isOptional": false,
|
|
6551
|
+
"releaseTag": "Public",
|
|
6552
|
+
"name": "auth",
|
|
6553
|
+
"propertyTypeTokenRange": {
|
|
6554
|
+
"startIndex": 1,
|
|
6555
|
+
"endIndex": 2
|
|
6556
|
+
},
|
|
6557
|
+
"isStatic": false,
|
|
6558
|
+
"isProtected": false,
|
|
6559
|
+
"isAbstract": false
|
|
6560
|
+
},
|
|
6530
6561
|
{
|
|
6531
6562
|
"kind": "Property",
|
|
6532
6563
|
"canonicalReference": "@genesislcap/grid-pro!GridProGenesisDatasource#connect:member",
|
package/dist/grid-pro.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ActionMenuItem } from '@genesislcap/foundation-ui';
|
|
2
|
+
import { Auth } from '@genesislcap/foundation-comms';
|
|
2
3
|
import { Binding } from '@microsoft/fast-element';
|
|
3
4
|
import { CaptureType } from '@microsoft/fast-element';
|
|
4
5
|
import { ColDef } from '@ag-grid-community/core';
|
|
@@ -1218,6 +1219,7 @@ export declare function gridProColumns<TSource = any>(itemsBinding: Binding<TSou
|
|
|
1218
1219
|
* @public
|
|
1219
1220
|
*/
|
|
1220
1221
|
export declare class GridProGenesisDatasource extends GridProGenesisDatasource_base {
|
|
1222
|
+
auth: Auth;
|
|
1221
1223
|
connect: Connect;
|
|
1222
1224
|
datasource: Datasource;
|
|
1223
1225
|
deferredGridOptions: GridOptions;
|
|
@@ -1413,21 +1415,9 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1413
1415
|
getBoundingClientRect(): DOMRect;
|
|
1414
1416
|
getClientRects(): DOMRectList;
|
|
1415
1417
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1416
|
-
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
* @deprecated Use `deinit` instead
|
|
1420
|
-
*/
|
|
1421
|
-
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>; /**
|
|
1422
|
-
* Resets the datasource to its initial state.
|
|
1423
|
-
* @public
|
|
1424
|
-
* @deprecated Use `deinit` instead
|
|
1425
|
-
*/
|
|
1426
|
-
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>; /**
|
|
1427
|
-
* Resets the datasource to its initial state.
|
|
1428
|
-
* @public
|
|
1429
|
-
* @deprecated Use `deinit` instead
|
|
1430
|
-
*/
|
|
1418
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
1419
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
1420
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1431
1421
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1432
1422
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
1433
1423
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
@@ -1439,6 +1429,11 @@ declare const GridProGenesisDatasource_base: (new (...args: any[]) => {
|
|
|
1439
1429
|
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
|
1440
1430
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
1441
1431
|
matches(selectors: string): boolean;
|
|
1432
|
+
/**
|
|
1433
|
+
* Sends a DATA_LOGOFF when the resource is an active stream
|
|
1434
|
+
* @remarks Will only happen for streaming DATASERER resources.
|
|
1435
|
+
* @internal
|
|
1436
|
+
*/
|
|
1442
1437
|
releasePointerCapture(pointerId: number): void;
|
|
1443
1438
|
removeAttribute(qualifiedName: string): void;
|
|
1444
1439
|
removeAttributeNS(namespace: string, localName: string): void;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [@genesislcap/grid-pro](./grid-pro.md) > [GridProGenesisDatasource](./grid-pro.gridprogenesisdatasource.md) > [auth](./grid-pro.gridprogenesisdatasource.auth.md)
|
|
4
|
+
|
|
5
|
+
## GridProGenesisDatasource.auth property
|
|
6
|
+
|
|
7
|
+
**Signature:**
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
auth: Auth;
|
|
11
|
+
```
|
|
@@ -21,6 +21,7 @@ Only supports Client-Side Row Model.
|
|
|
21
21
|
|
|
22
22
|
| Property | Modifiers | Type | Description |
|
|
23
23
|
| --- | --- | --- | --- |
|
|
24
|
+
| [auth](./grid-pro.gridprogenesisdatasource.auth.md) | | Auth | |
|
|
24
25
|
| [connect](./grid-pro.gridprogenesisdatasource.connect.md) | | Connect | |
|
|
25
26
|
| [criteria](./grid-pro.gridprogenesisdatasource.criteria.md) | | string | |
|
|
26
27
|
| [datasource](./grid-pro.gridprogenesisdatasource.datasource.md) | | Datasource | |
|
package/docs/api-report.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
```ts
|
|
6
6
|
|
|
7
7
|
import { ActionMenuItem } from '@genesislcap/foundation-ui';
|
|
8
|
+
import { Auth } from '@genesislcap/foundation-comms';
|
|
8
9
|
import { Binding } from '@microsoft/fast-element';
|
|
9
10
|
import { CaptureType } from '@microsoft/fast-element';
|
|
10
11
|
import { ColDef } from '@ag-grid-community/core';
|
|
@@ -628,6 +629,8 @@ export function gridProColumns<TSource = any>(itemsBinding: Binding<TSource, rea
|
|
|
628
629
|
//
|
|
629
630
|
// @public
|
|
630
631
|
export class GridProGenesisDatasource extends GridProGenesisDatasource_base {
|
|
632
|
+
// (undocumented)
|
|
633
|
+
auth: Auth;
|
|
631
634
|
// (undocumented)
|
|
632
635
|
connect: Connect;
|
|
633
636
|
// (undocumented)
|
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.64.
|
|
4
|
+
"version": "14.64.3",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"test:debug": "genx test --debug"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@genesislcap/foundation-testing": "14.64.
|
|
32
|
-
"@genesislcap/genx": "14.64.
|
|
31
|
+
"@genesislcap/foundation-testing": "14.64.3",
|
|
32
|
+
"@genesislcap/genx": "14.64.3",
|
|
33
33
|
"rimraf": "^3.0.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@genesislcap/foundation-comms": "14.64.
|
|
37
|
-
"@genesislcap/foundation-ui": "14.64.
|
|
38
|
-
"@genesislcap/foundation-utils": "14.64.
|
|
36
|
+
"@genesislcap/foundation-comms": "14.64.3",
|
|
37
|
+
"@genesislcap/foundation-ui": "14.64.3",
|
|
38
|
+
"@genesislcap/foundation-utils": "14.64.3",
|
|
39
39
|
"@microsoft/fast-colors": "^5.1.4",
|
|
40
40
|
"@microsoft/fast-components": "^2.21.3",
|
|
41
41
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"customElements": "dist/custom-elements.json",
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "7de5fa539938ec53549485836dc16288c78607a8"
|
|
62
62
|
}
|