@comet/admin-generator 8.10.0-canary-20251204084621 → 8.10.0-canary-20251204113847
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.
|
@@ -687,7 +687,9 @@ function generateGrid({ exportName, baseOutputFilename, targetDirectory, gqlIntr
|
|
|
687
687
|
</>
|
|
688
688
|
)`
|
|
689
689
|
: undefined,
|
|
690
|
-
headerName:
|
|
690
|
+
headerName: column.headerName === ""
|
|
691
|
+
? `""`
|
|
692
|
+
: `intl.formatMessage({ id: "${instanceGqlType}.${column.name}", defaultMessage: "${column.headerName || (0, camelCaseToHumanReadable_1.camelCaseToHumanReadable)(column.name)}" })`,
|
|
691
693
|
type: column.gridType ? `"${column.gridType}"` : undefined,
|
|
692
694
|
filterable: (!column.filterOperators && !filterFields.includes(column.name)) || allowRowReordering ? `false` : undefined,
|
|
693
695
|
sortable: (!sortFields.includes(column.name) || allowRowReordering) && !column.sortBy ? `false` : undefined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comet/admin-generator",
|
|
3
|
-
"version": "8.10.0-canary-
|
|
3
|
+
"version": "8.10.0-canary-20251204113847",
|
|
4
4
|
"description": "Comet Admin Generator CLI tool",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/admin/admin-generator",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"rimraf": "^6.0.1",
|
|
49
49
|
"ts-jest": "^29.4.0",
|
|
50
50
|
"typescript": "5.9.3",
|
|
51
|
-
"@comet/admin": "8.10.0-canary-
|
|
52
|
-
"@comet/admin-icons": "8.10.0-canary-
|
|
53
|
-
"@comet/cms-admin": "8.10.0-canary-
|
|
54
|
-
"@comet/eslint-config": "8.10.0-canary-
|
|
51
|
+
"@comet/admin": "8.10.0-canary-20251204113847",
|
|
52
|
+
"@comet/admin-icons": "8.10.0-canary-20251204113847",
|
|
53
|
+
"@comet/cms-admin": "8.10.0-canary-20251204113847",
|
|
54
|
+
"@comet/eslint-config": "8.10.0-canary-20251204113847"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=22.0.0"
|