@genesislcap/foundation-zero-grid-pro 14.23.1-alpha-bf28a25.0 → 14.24.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 +4 -21
- package/genx.config.json +11 -0
- package/package.json +16 -24
|
@@ -396,10 +396,10 @@
|
|
|
396
396
|
{
|
|
397
397
|
"kind": "field",
|
|
398
398
|
"name": "agAttributes",
|
|
399
|
+
"privacy": "protected",
|
|
399
400
|
"type": {
|
|
400
|
-
"text": "
|
|
401
|
+
"text": "object"
|
|
401
402
|
},
|
|
402
|
-
"privacy": "protected",
|
|
403
403
|
"default": "{}",
|
|
404
404
|
"inheritedFrom": {
|
|
405
405
|
"name": "GridPro",
|
|
@@ -409,9 +409,6 @@
|
|
|
409
409
|
{
|
|
410
410
|
"kind": "field",
|
|
411
411
|
"name": "agPropertiesMap",
|
|
412
|
-
"type": {
|
|
413
|
-
"text": "Record<string, string>"
|
|
414
|
-
},
|
|
415
412
|
"privacy": "protected",
|
|
416
413
|
"inheritedFrom": {
|
|
417
414
|
"name": "GridPro",
|
|
@@ -491,7 +488,7 @@
|
|
|
491
488
|
},
|
|
492
489
|
{
|
|
493
490
|
"kind": "method",
|
|
494
|
-
"name": "
|
|
491
|
+
"name": "serialiseStoreTableConfig",
|
|
495
492
|
"privacy": "private",
|
|
496
493
|
"return": {
|
|
497
494
|
"type": {
|
|
@@ -503,23 +500,9 @@
|
|
|
503
500
|
"module": "src/grid-pro.ts"
|
|
504
501
|
}
|
|
505
502
|
},
|
|
506
|
-
{
|
|
507
|
-
"kind": "field",
|
|
508
|
-
"name": "savedColumnState",
|
|
509
|
-
"type": {
|
|
510
|
-
"text": "ColDef[]"
|
|
511
|
-
},
|
|
512
|
-
"description": "Gets the saved grid ColDefs from local storage",
|
|
513
|
-
"privacy": "public",
|
|
514
|
-
"readonly": true,
|
|
515
|
-
"inheritedFrom": {
|
|
516
|
-
"name": "GridPro",
|
|
517
|
-
"module": "src/grid-pro.ts"
|
|
518
|
-
}
|
|
519
|
-
},
|
|
520
503
|
{
|
|
521
504
|
"kind": "method",
|
|
522
|
-
"name": "
|
|
505
|
+
"name": "rehydrateTableConfig",
|
|
523
506
|
"privacy": "private",
|
|
524
507
|
"return": {
|
|
525
508
|
"type": {
|
package/genx.config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"externals": {
|
|
3
|
+
"@ag-grid-community/client-side-row-model": "clientSideRowModel",
|
|
4
|
+
"@ag-grid-community/core": "agGrid",
|
|
5
|
+
"@ag-grid-community/csv-export": "csvExport",
|
|
6
|
+
"@ag-grid-community/styles": "agGridStyles",
|
|
7
|
+
"@ag-grid-enterprise/core": "agGridEnterprise",
|
|
8
|
+
"@ag-grid-enterprise/excel-export": "excelExport",
|
|
9
|
+
"@ag-grid-enterprise/server-side-row-model": "serverSideRowModel"
|
|
10
|
+
}
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-zero-grid-pro",
|
|
3
3
|
"description": "Genesis Foundation Zero Grid Pro",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.24.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -12,29 +12,24 @@
|
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "genx build",
|
|
15
|
-
"build:rollup": "
|
|
16
|
-
"build:rollup:stats": "
|
|
15
|
+
"build:rollup": "genx build -b rollup",
|
|
16
|
+
"build:rollup:stats": "genx analyze -b rollup",
|
|
17
17
|
"build:webpack": "cross-env NODE_ENV=production webpack",
|
|
18
18
|
"build:webpack:make-federated-types": "make-federated-types",
|
|
19
19
|
"build:webpack:stats": "cross-env ANALYZE=1 npm run build:webpack",
|
|
20
20
|
"clean": "genx clean",
|
|
21
21
|
"dev": "npm run dev:tsc",
|
|
22
|
-
"dev:rollup": "
|
|
22
|
+
"dev:rollup": "genx dev -b rollup",
|
|
23
23
|
"dev:tsc": "genx dev",
|
|
24
24
|
"dev:webpack": "cross-env NODE_ENV=development webpack serve",
|
|
25
25
|
"serve": "genx serve",
|
|
26
26
|
"test": "echo \"Error: no test specified\""
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@
|
|
30
|
-
"@genesislcap/genx": "14.23.1-alpha-bf28a25.0",
|
|
29
|
+
"@genesislcap/genx": "^14.24.0",
|
|
31
30
|
"@module-federation/dashboard-plugin": "2.3.0",
|
|
32
31
|
"@pixability-ui/federated-types": "^0.2.0",
|
|
33
32
|
"@playwright/test": "^1.18.1",
|
|
34
|
-
"@rollup/plugin-commonjs": "^21.0.1",
|
|
35
|
-
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
36
|
-
"@rollup/plugin-terser": "^0.4.0",
|
|
37
|
-
"@rollup/plugin-typescript": "^8.3.0",
|
|
38
33
|
"c8": "^7.11.0",
|
|
39
34
|
"camel-case": "^4.1.2",
|
|
40
35
|
"circular-dependency-plugin": "^5.2.2",
|
|
@@ -56,13 +51,6 @@
|
|
|
56
51
|
"postcss-import": "^14.0.0",
|
|
57
52
|
"postcss-loader": "^6.2.1",
|
|
58
53
|
"postcss-preset-env": "^7.0.1",
|
|
59
|
-
"rollup": "^2.7.6",
|
|
60
|
-
"rollup-plugin-copy": "^3.4.0",
|
|
61
|
-
"rollup-plugin-filesize": "^9.1.2",
|
|
62
|
-
"rollup-plugin-lit-css": "^3.2.1",
|
|
63
|
-
"rollup-plugin-styles": "^4.0.0",
|
|
64
|
-
"rollup-plugin-transform-tagged-template": "^0.0.3",
|
|
65
|
-
"rollup-plugin-visualizer": "^5.6.0",
|
|
66
54
|
"sass": "^1.49.7",
|
|
67
55
|
"terser-webpack-plugin": "^5.3.1",
|
|
68
56
|
"to-string-loader": "^1.2.0",
|
|
@@ -79,11 +67,11 @@
|
|
|
79
67
|
"webpack-merge": "^5.7.3"
|
|
80
68
|
},
|
|
81
69
|
"dependencies": {
|
|
82
|
-
"@genesislcap/foundation-comms": "14.
|
|
83
|
-
"@genesislcap/foundation-ui": "14.
|
|
84
|
-
"@genesislcap/foundation-utils": "14.
|
|
85
|
-
"@genesislcap/foundation-zero": "14.
|
|
86
|
-
"@genesislcap/grid-pro": "14.
|
|
70
|
+
"@genesislcap/foundation-comms": "^14.24.0",
|
|
71
|
+
"@genesislcap/foundation-ui": "^14.24.0",
|
|
72
|
+
"@genesislcap/foundation-utils": "^14.24.0",
|
|
73
|
+
"@genesislcap/foundation-zero": "^14.24.0",
|
|
74
|
+
"@genesislcap/grid-pro": "^14.24.0",
|
|
87
75
|
"@microsoft/fast-colors": "^5.1.4",
|
|
88
76
|
"@microsoft/fast-components": "^2.21.3",
|
|
89
77
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -100,10 +88,14 @@
|
|
|
100
88
|
"@ag-grid-enterprise/excel-export": "^29.0.0",
|
|
101
89
|
"@ag-grid-enterprise/server-side-row-model": "^29.0.0"
|
|
102
90
|
},
|
|
103
|
-
"repository":
|
|
91
|
+
"repository": {
|
|
92
|
+
"type": "git",
|
|
93
|
+
"url": "git+https://github.com/genesislcap/foundation-ui.git",
|
|
94
|
+
"directory": "packages/foundation/foundation-ds/foundation-zero-grid-pro"
|
|
95
|
+
},
|
|
104
96
|
"publishConfig": {
|
|
105
97
|
"access": "public"
|
|
106
98
|
},
|
|
107
99
|
"customElements": "dist/custom-elements.json",
|
|
108
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "94a3b388d39d65f0376bb347238a4151b3cfdd09"
|
|
109
101
|
}
|