@genesislcap/rapid-grid-pro 14.449.0 → 14.449.1-alpha-c71262a.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.
- package/dist/custom-elements.json +60 -0
- package/package.json +11 -11
|
@@ -573,6 +573,31 @@
|
|
|
573
573
|
"module": "src/grid-pro-beta.ts"
|
|
574
574
|
}
|
|
575
575
|
},
|
|
576
|
+
{
|
|
577
|
+
"kind": "field",
|
|
578
|
+
"name": "userProvidedGridOptions",
|
|
579
|
+
"type": {
|
|
580
|
+
"text": "GridOptions | undefined"
|
|
581
|
+
},
|
|
582
|
+
"privacy": "protected",
|
|
583
|
+
"inheritedFrom": {
|
|
584
|
+
"name": "GridProBeta",
|
|
585
|
+
"module": "src/grid-pro-beta.ts"
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"kind": "field",
|
|
590
|
+
"name": "applyingDatasourceGridOptions",
|
|
591
|
+
"type": {
|
|
592
|
+
"text": "boolean"
|
|
593
|
+
},
|
|
594
|
+
"privacy": "private",
|
|
595
|
+
"default": "false",
|
|
596
|
+
"inheritedFrom": {
|
|
597
|
+
"name": "GridProBeta",
|
|
598
|
+
"module": "src/grid-pro-beta.ts"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
576
601
|
{
|
|
577
602
|
"kind": "field",
|
|
578
603
|
"name": "initialised",
|
|
@@ -1137,6 +1162,15 @@
|
|
|
1137
1162
|
"module": "src/grid-pro-beta.ts"
|
|
1138
1163
|
}
|
|
1139
1164
|
},
|
|
1165
|
+
{
|
|
1166
|
+
"kind": "method",
|
|
1167
|
+
"name": "resetGridOptionsState",
|
|
1168
|
+
"privacy": "private",
|
|
1169
|
+
"inheritedFrom": {
|
|
1170
|
+
"name": "GridProBeta",
|
|
1171
|
+
"module": "src/grid-pro-beta.ts"
|
|
1172
|
+
}
|
|
1173
|
+
},
|
|
1140
1174
|
{
|
|
1141
1175
|
"kind": "method",
|
|
1142
1176
|
"name": "initGrid",
|
|
@@ -2484,6 +2518,32 @@
|
|
|
2484
2518
|
"module": "src/grid-pro.ts"
|
|
2485
2519
|
}
|
|
2486
2520
|
},
|
|
2521
|
+
{
|
|
2522
|
+
"kind": "field",
|
|
2523
|
+
"name": "userProvidedGridOptions",
|
|
2524
|
+
"type": {
|
|
2525
|
+
"text": "GridOptions | undefined"
|
|
2526
|
+
},
|
|
2527
|
+
"privacy": "protected",
|
|
2528
|
+
"description": "Last grid options supplied via the public `gridOptions` setter (not datasource init).\nUsed as the merge base in `handleInitialize` so user options survive datasource restart.",
|
|
2529
|
+
"inheritedFrom": {
|
|
2530
|
+
"name": "GridPro",
|
|
2531
|
+
"module": "src/grid-pro.ts"
|
|
2532
|
+
}
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"kind": "field",
|
|
2536
|
+
"name": "applyingDatasourceGridOptions",
|
|
2537
|
+
"type": {
|
|
2538
|
+
"text": "boolean"
|
|
2539
|
+
},
|
|
2540
|
+
"privacy": "private",
|
|
2541
|
+
"default": "false",
|
|
2542
|
+
"inheritedFrom": {
|
|
2543
|
+
"name": "GridPro",
|
|
2544
|
+
"module": "src/grid-pro.ts"
|
|
2545
|
+
}
|
|
2546
|
+
},
|
|
2487
2547
|
{
|
|
2488
2548
|
"kind": "field",
|
|
2489
2549
|
"name": "initialised",
|
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.449.0",
|
|
4
|
+
"version": "14.449.1-alpha-c71262a.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@genesislcap/genx": "14.449.0",
|
|
41
|
-
"@genesislcap/rollup-builder": "14.449.0",
|
|
42
|
-
"@genesislcap/ts-builder": "14.449.0",
|
|
43
|
-
"@genesislcap/uvu-playwright-builder": "14.449.0",
|
|
44
|
-
"@genesislcap/vite-builder": "14.449.0",
|
|
45
|
-
"@genesislcap/webpack-builder": "14.449.0"
|
|
40
|
+
"@genesislcap/genx": "14.449.1-alpha-c71262a.0",
|
|
41
|
+
"@genesislcap/rollup-builder": "14.449.1-alpha-c71262a.0",
|
|
42
|
+
"@genesislcap/ts-builder": "14.449.1-alpha-c71262a.0",
|
|
43
|
+
"@genesislcap/uvu-playwright-builder": "14.449.1-alpha-c71262a.0",
|
|
44
|
+
"@genesislcap/vite-builder": "14.449.1-alpha-c71262a.0",
|
|
45
|
+
"@genesislcap/webpack-builder": "14.449.1-alpha-c71262a.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@genesislcap/foundation-ui": "14.449.0",
|
|
49
|
-
"@genesislcap/grid-pro": "14.449.0",
|
|
50
|
-
"@genesislcap/rapid-design-system": "14.449.0",
|
|
48
|
+
"@genesislcap/foundation-ui": "14.449.1-alpha-c71262a.0",
|
|
49
|
+
"@genesislcap/grid-pro": "14.449.1-alpha-c71262a.0",
|
|
50
|
+
"@genesislcap/rapid-design-system": "14.449.1-alpha-c71262a.0",
|
|
51
51
|
"@microsoft/fast-colors": "5.3.1",
|
|
52
52
|
"@microsoft/fast-components": "2.30.6",
|
|
53
53
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"require": "./dist/react.cjs"
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "89ebde619216d4d5f9681a884ec9bb77b4f90b8f"
|
|
84
84
|
}
|