@comet/admin-generator 9.0.0-canary-20251209140438 → 9.0.0-canary-20251211112608

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.
@@ -306,6 +306,7 @@ export type GridConfig<T extends {
306
306
  * @default false
307
307
  */
308
308
  scopeAsProp?: boolean;
309
+ density?: "comfortable" | "compact" | "standard";
309
310
  };
310
311
  export type GeneratorConfig<T extends {
311
312
  __typename?: string;
@@ -805,6 +805,7 @@ function generateGrid({ exportName, baseOutputFilename, targetDirectory, gqlIntr
805
805
  onRowOrderChange={handleRowOrderChange}
806
806
  hideFooterPagination`
807
807
  : ""}
808
+ ${config.density ? `density="${config.density}"` : ""}
808
809
  />
809
810
  );
810
811
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/admin-generator",
3
- "version": "9.0.0-canary-20251209140438",
3
+ "version": "9.0.0-canary-20251211112608",
4
4
  "description": "Comet Admin Generator CLI tool",
5
5
  "repository": {
6
6
  "directory": "packages/admin/admin-generator",
@@ -50,10 +50,10 @@
50
50
  "rimraf": "^6.1.2",
51
51
  "ts-jest": "^29.4.0",
52
52
  "typescript": "5.9.3",
53
- "@comet/admin": "9.0.0-canary-20251209140438",
54
- "@comet/admin-icons": "9.0.0-canary-20251209140438",
55
- "@comet/cms-admin": "9.0.0-canary-20251209140438",
56
- "@comet/eslint-config": "9.0.0-canary-20251209140438"
53
+ "@comet/admin": "9.0.0-canary-20251211112608",
54
+ "@comet/admin-icons": "9.0.0-canary-20251211112608",
55
+ "@comet/cms-admin": "9.0.0-canary-20251211112608",
56
+ "@comet/eslint-config": "9.0.0-canary-20251211112608"
57
57
  },
58
58
  "engines": {
59
59
  "node": ">=22.0.0"