@genesislcap/rapid-grid-pro 14.155.1 → 14.155.2-alpha-d9bfff1.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.
@@ -53,8 +53,7 @@
53
53
  "declarations": [
54
54
  {
55
55
  "kind": "variable",
56
- "name": "rapidGridProTemplate",
57
- "default": "gridProTemplate"
56
+ "name": "rapidGridProTemplate"
58
57
  }
59
58
  ],
60
59
  "exports": [
@@ -231,6 +230,17 @@
231
230
  "module": "src/grid-pro.ts"
232
231
  }
233
232
  },
233
+ {
234
+ "kind": "field",
235
+ "name": "gridDSErrorMessage",
236
+ "type": {
237
+ "text": "string"
238
+ },
239
+ "inheritedFrom": {
240
+ "name": "GridPro",
241
+ "module": "src/grid-pro.ts"
242
+ }
243
+ },
234
244
  {
235
245
  "kind": "field",
236
246
  "name": "statePersistence",
@@ -567,6 +577,19 @@
567
577
  "module": "src/grid-pro.ts"
568
578
  }
569
579
  },
580
+ {
581
+ "kind": "field",
582
+ "name": "rootEventsListeners",
583
+ "type": {
584
+ "text": "GirProEventsListeners"
585
+ },
586
+ "privacy": "private",
587
+ "default": "[]",
588
+ "inheritedFrom": {
589
+ "name": "GridPro",
590
+ "module": "src/grid-pro.ts"
591
+ }
592
+ },
570
593
  {
571
594
  "kind": "field",
572
595
  "name": "gridEventsQueue",
@@ -648,6 +671,29 @@
648
671
  "module": "src/grid-pro.ts"
649
672
  }
650
673
  },
674
+ {
675
+ "kind": "method",
676
+ "name": "handleDataSourceError",
677
+ "privacy": "private",
678
+ "parameters": [
679
+ {
680
+ "name": "e"
681
+ }
682
+ ],
683
+ "inheritedFrom": {
684
+ "name": "GridPro",
685
+ "module": "src/grid-pro.ts"
686
+ }
687
+ },
688
+ {
689
+ "kind": "method",
690
+ "name": "hideDataSourceError",
691
+ "privacy": "private",
692
+ "inheritedFrom": {
693
+ "name": "GridPro",
694
+ "module": "src/grid-pro.ts"
695
+ }
696
+ },
651
697
  {
652
698
  "kind": "method",
653
699
  "name": "combineAllGridComponents",
@@ -100,12 +100,12 @@ export declare const rapidGridComponents: {
100
100
  rapidGridPro: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
101
101
  shadowOptions: any;
102
102
  baseName: string;
103
- template: import("@microsoft/fast-element").ViewTemplate<any, any>;
103
+ template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").GridPro, any>;
104
104
  styles: import("@microsoft/fast-element").ElementStyles;
105
105
  }>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
106
106
  shadowOptions: any;
107
107
  baseName: string;
108
- template: import("@microsoft/fast-element").ViewTemplate<any, any>;
108
+ template: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").GridPro, any>;
109
109
  styles: import("@microsoft/fast-element").ElementStyles;
110
110
  }, typeof import("./grid-pro").RapidGridPro>;
111
111
  register(container?: Container, ...rest: any[]): void;
@@ -23,12 +23,12 @@ export declare const rapidDefaultGridProConfig: {
23
23
  export declare const rapidGridPro: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{
24
24
  shadowOptions: any;
25
25
  baseName: string;
26
- template: import("@microsoft/fast-element").ViewTemplate<any, any>;
26
+ template: import("@microsoft/fast-element").ViewTemplate<GridPro, any>;
27
27
  styles: import("@microsoft/fast-element").ElementStyles;
28
28
  }>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{
29
29
  shadowOptions: any;
30
30
  baseName: string;
31
- template: import("@microsoft/fast-element").ViewTemplate<any, any>;
31
+ template: import("@microsoft/fast-element").ViewTemplate<GridPro, any>;
32
32
  styles: import("@microsoft/fast-element").ElementStyles;
33
33
  }, typeof RapidGridPro>;
34
34
  //# sourceMappingURL=grid-pro.d.ts.map
@@ -1,2 +1,2 @@
1
- export declare const rapidGridProTemplate: import("@microsoft/fast-element").ViewTemplate<any, any>;
1
+ export declare const rapidGridProTemplate: import("@microsoft/fast-element").ViewTemplate<import("@genesislcap/grid-pro").GridPro, any>;
2
2
  //# sourceMappingURL=grid-pro.template.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"grid-pro.template.d.ts","sourceRoot":"","sources":["../../src/grid-pro.template.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB,0DAAkB,CAAC"}
1
+ {"version":3,"file":"grid-pro.template.d.ts","sourceRoot":"","sources":["../../src/grid-pro.template.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB,8FAA8B,CAAC"}
@@ -1,2 +1,2 @@
1
- import { gridProTemplate } from '@genesislcap/grid-pro';
2
- export const rapidGridProTemplate = gridProTemplate;
1
+ import { getGridProTemplate } from '@genesislcap/grid-pro';
2
+ export const rapidGridProTemplate = getGridProTemplate('rapid');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/rapid-grid-pro",
3
3
  "description": "Genesis Rapid Grid Pro",
4
- "version": "14.155.1",
4
+ "version": "14.155.2-alpha-d9bfff1.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,19 +27,19 @@
27
27
  "serve": "genx serve"
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/genx": "14.155.1",
31
- "@genesislcap/rollup-builder": "14.155.1",
32
- "@genesislcap/ts-builder": "14.155.1",
33
- "@genesislcap/uvu-playwright-builder": "14.155.1",
34
- "@genesislcap/vite-builder": "14.155.1",
35
- "@genesislcap/webpack-builder": "14.155.1",
30
+ "@genesislcap/genx": "14.155.2-alpha-d9bfff1.0",
31
+ "@genesislcap/rollup-builder": "14.155.2-alpha-d9bfff1.0",
32
+ "@genesislcap/ts-builder": "14.155.2-alpha-d9bfff1.0",
33
+ "@genesislcap/uvu-playwright-builder": "14.155.2-alpha-d9bfff1.0",
34
+ "@genesislcap/vite-builder": "14.155.2-alpha-d9bfff1.0",
35
+ "@genesislcap/webpack-builder": "14.155.2-alpha-d9bfff1.0",
36
36
  "rimraf": "^3.0.2"
37
37
  },
38
38
  "dependencies": {
39
- "@genesislcap/foundation-ui": "14.155.1",
40
- "@genesislcap/foundation-zero": "14.155.1",
41
- "@genesislcap/grid-pro": "14.155.1",
42
- "@genesislcap/rapid-design-system": "14.155.1",
39
+ "@genesislcap/foundation-ui": "14.155.2-alpha-d9bfff1.0",
40
+ "@genesislcap/foundation-zero": "14.155.2-alpha-d9bfff1.0",
41
+ "@genesislcap/grid-pro": "14.155.2-alpha-d9bfff1.0",
42
+ "@genesislcap/rapid-design-system": "14.155.2-alpha-d9bfff1.0",
43
43
  "@microsoft/fast-colors": "^5.3.1",
44
44
  "@microsoft/fast-components": "^2.30.6",
45
45
  "@microsoft/fast-element": "^1.12.0",
@@ -60,5 +60,5 @@
60
60
  "access": "public"
61
61
  },
62
62
  "customElements": "dist/custom-elements.json",
63
- "gitHead": "5ba3bac4288b0bb0823d668fc5d3ab9744a52e4c"
63
+ "gitHead": "e438f9d706092a1c8b11c3a78f084b1f3c3ac091"
64
64
  }