@spartan-ng/cli 0.0.1-alpha.705 → 0.0.1-alpha.707

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/generators.json CHANGED
@@ -10,6 +10,11 @@
10
10
  "schema": "./src/generators/init/schema.json",
11
11
  "description": "Initialize a Spartan NG project with necessary configurations and dependencies."
12
12
  },
13
+ "info": {
14
+ "factory": "./src/generators/info/generator",
15
+ "schema": "./src/generators/info/schema.json",
16
+ "description": "Print the project context (config, versions, installed components) as JSON or text."
17
+ },
13
18
  "migrate-brain-accordion-trigger": {
14
19
  "factory": "./src/generators/migrate-brain-accordion-trigger/generator",
15
20
  "schema": "./src/generators/migrate-brain-accordion-trigger/schema.json",
@@ -127,6 +132,11 @@
127
132
  "schema": "./src/generators/init/schema.json",
128
133
  "description": "Initialize a Spartan NG project with necessary configurations and dependencies."
129
134
  },
135
+ "info": {
136
+ "factory": "./src/generators/info/compat",
137
+ "schema": "./src/generators/info/schema.json",
138
+ "description": "Print the project context (config, versions, installed components) as JSON or text."
139
+ },
130
140
  "migrate-brain-accordion-trigger": {
131
141
  "factory": "./src/generators/migrate-brain-accordion-trigger/compat",
132
142
  "schema": "./src/generators/migrate-brain-accordion-trigger/schema.json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spartan-ng/cli",
3
- "version": "0.0.1-alpha.705",
3
+ "version": "0.0.1-alpha.707",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/spartan-ng/spartan"
@@ -0,0 +1,5 @@
1
+ import type { InfoGeneratorSchema } from './schema';
2
+ declare const _default: (generatorOptions: InfoGeneratorSchema & {
3
+ angularCli?: boolean;
4
+ }) => (tree: any, context: any) => Promise<any>;
5
+ export default _default;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const devkit_1 = require("@nx/devkit");
4
+ const generator_1 = require("./generator");
5
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
6
+ exports.default = (0, devkit_1.convertNxGenerator)((tree, schema) => (0, generator_1.infoGenerator)(tree, { ...schema, angularCli: true }));
7
+ //# sourceMappingURL=compat.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"compat.js","sourceRoot":"","sources":["../../../../../../libs/cli/src/generators/info/compat.ts"],"names":[],"mappings":";;AAAA,uCAAgD;AAChD,2CAA4C;AAG5C,8DAA8D;AAC9D,kBAAe,IAAA,2BAAkB,EAAC,CAAC,IAAS,EAAE,MAAsD,EAAE,EAAE,CACvG,IAAA,yBAAa,EAAC,IAAI,EAAE,EAAE,GAAG,MAAM,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CACpD,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { type Tree } from '@nx/devkit';
2
+ import type { InfoGeneratorSchema } from './schema';
3
+ export declare function infoGenerator(tree: Tree, options: InfoGeneratorSchema & {
4
+ angularCli?: boolean;
5
+ }): Promise<void>;
6
+ export default infoGenerator;
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.infoGenerator = infoGenerator;
37
+ const devkit_1 = require("@nx/devkit");
38
+ const collect_info_1 = require("./lib/collect-info");
39
+ async function infoGenerator(tree, options) {
40
+ const availablePrimitives = await Promise.resolve().then(() => __importStar(require('../ui/supported-ui-libraries.json'))).then((m) => m.default);
41
+ const info = (0, collect_info_1.collectSpartanInfo)(tree, Object.keys(availablePrimitives), { angularCli: options.angularCli });
42
+ if (options.json) {
43
+ // Print machine-readable JSON only, so agents and tooling can parse stdout directly.
44
+ devkit_1.logger.info(JSON.stringify(info, null, 2));
45
+ }
46
+ else {
47
+ printHumanReadable(info);
48
+ }
49
+ // `info` is read-only: it never modifies the workspace, so there is no task to return.
50
+ }
51
+ function printHumanReadable(info) {
52
+ const lines = [];
53
+ lines.push('Spartan project info');
54
+ lines.push('');
55
+ lines.push(` Workspace: ${info.workspaceType}`);
56
+ lines.push(` Config found: ${info.config.found ? 'yes' : 'no (using defaults)'}`);
57
+ lines.push(` Components path: ${info.config.componentsPath}`);
58
+ lines.push(` Import alias: ${info.config.importAlias}`);
59
+ if (info.config.generateAs) {
60
+ lines.push(` Generate as: ${info.config.generateAs}`);
61
+ }
62
+ lines.push('');
63
+ lines.push(' Versions');
64
+ lines.push(` @angular/core: ${info.versions.angular ?? '-'}`);
65
+ lines.push(` @angular/cdk: ${info.versions.angularCdk ?? '-'}`);
66
+ lines.push(` tailwindcss: ${info.versions.tailwind ?? '-'}`);
67
+ lines.push(` @spartan-ng/brain: ${info.versions.spartanBrain ?? '-'}`);
68
+ lines.push(` @spartan-ng/cli: ${info.versions.spartanCli ?? '-'}`);
69
+ lines.push('');
70
+ lines.push(` Icon library: ${info.iconLibrary ?? '-'}`);
71
+ lines.push(` Styles file: ${info.tailwindCssFile ?? '-'}`);
72
+ lines.push('');
73
+ lines.push(` Installed (${info.installedComponents.length}/${info.availableComponents.length}): ${info.installedComponents.length ? info.installedComponents.join(', ') : '-'}`);
74
+ lines.push('');
75
+ lines.push(' Tip: run with --json to get machine-readable output for AI agents.');
76
+ devkit_1.logger.info(lines.join('\n'));
77
+ }
78
+ exports.default = infoGenerator;
79
+ //# sourceMappingURL=generator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../libs/cli/src/generators/info/generator.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,37 @@
1
+ import { type Tree } from '@nx/devkit';
2
+ export interface SpartanInfo {
3
+ /** The kind of workspace the project lives in. */
4
+ workspaceType: 'nx' | 'angular-cli' | 'unknown';
5
+ /** The resolved `components.json` configuration (defaults applied when missing). */
6
+ config: {
7
+ found: boolean;
8
+ componentsPath: string;
9
+ importAlias: string;
10
+ buildable?: boolean;
11
+ generateAs?: 'library' | 'entrypoint';
12
+ };
13
+ /** Versions of the relevant packages as declared in `package.json`. */
14
+ versions: {
15
+ angular: string | null;
16
+ angularCdk: string | null;
17
+ tailwind: string | null;
18
+ spartanBrain: string | null;
19
+ spartanHelm: string | null;
20
+ spartanCli: string | null;
21
+ };
22
+ /** The detected icon library family, if any (Spartan uses `@ng-icons`). */
23
+ iconLibrary: string | null;
24
+ /** Best-effort path to the global stylesheet that imports the Tailwind preset. */
25
+ tailwindCssFile: string | null;
26
+ /** Resolved filesystem destinations the CLI writes to. */
27
+ resolvedPaths: {
28
+ components: string;
29
+ };
30
+ /** Spartan components detected in the workspace (by import usage and directory layout). */
31
+ installedComponents: string[];
32
+ /** Every component the CLI can generate. */
33
+ availableComponents: string[];
34
+ }
35
+ export declare function collectSpartanInfo(tree: Tree, availableComponents: string[], options?: {
36
+ angularCli?: boolean;
37
+ }): SpartanInfo;
@@ -0,0 +1,110 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.collectSpartanInfo = collectSpartanInfo;
4
+ const devkit_1 = require("@nx/devkit");
5
+ const config_1 = require("../../../utils/config");
6
+ const DEFAULT_COMPONENTS_PATH = 'libs/ui';
7
+ const DEFAULT_IMPORT_ALIAS = '@spartan-ng/helm';
8
+ const STYLE_FILE_CANDIDATES = [
9
+ 'src/styles.css',
10
+ 'src/styles.scss',
11
+ 'src/styles.less',
12
+ 'src/tailwind.css',
13
+ 'src/global.css',
14
+ 'styles.css',
15
+ ];
16
+ const normalize = (value) => value.toLowerCase().replace(/[^a-z0-9]/g, '');
17
+ function readConfig(tree, angularCli) {
18
+ if (!tree.exists('components.json')) {
19
+ return { found: false, componentsPath: DEFAULT_COMPONENTS_PATH, importAlias: DEFAULT_IMPORT_ALIAS };
20
+ }
21
+ const raw = (0, devkit_1.readJson)(tree, 'components.json');
22
+ const schema = angularCli ? config_1.AngularCliConfigSchema : config_1.NXConfigSchema;
23
+ const parsed = schema.safeParse(raw);
24
+ // When validation succeeds use the parsed (defaulted) values, otherwise surface whatever we can read.
25
+ const source = parsed.success ? parsed.data : (raw ?? {});
26
+ return {
27
+ found: true,
28
+ componentsPath: typeof source.componentsPath === 'string' ? source.componentsPath : DEFAULT_COMPONENTS_PATH,
29
+ importAlias: typeof source.importAlias === 'string' ? source.importAlias : DEFAULT_IMPORT_ALIAS,
30
+ buildable: typeof source.buildable === 'boolean' ? source.buildable : undefined,
31
+ generateAs: source.generateAs === 'library' || source.generateAs === 'entrypoint' ? source.generateAs : undefined,
32
+ };
33
+ }
34
+ function readDependencies(tree) {
35
+ if (!tree.exists('package.json')) {
36
+ return {};
37
+ }
38
+ const packageJson = (0, devkit_1.readJson)(tree, 'package.json');
39
+ // `dependencies` last so a production version wins over a duplicate in `devDependencies`.
40
+ return { ...packageJson.devDependencies, ...packageJson.dependencies };
41
+ }
42
+ function detectIconLibrary(dependencies) {
43
+ return Object.keys(dependencies).some((dep) => dep.startsWith('@ng-icons/')) ? '@ng-icons' : null;
44
+ }
45
+ function detectStyleFile(tree) {
46
+ return STYLE_FILE_CANDIDATES.find((candidate) => tree.exists(candidate)) ?? null;
47
+ }
48
+ function detectInstalledComponents(tree, importAlias, availableComponents) {
49
+ // Map a normalized entrypoint name back to its canonical component name (e.g. "alertdialog" -> "alert-dialog").
50
+ const byNormalized = new Map(availableComponents.map((name) => [normalize(name), name]));
51
+ // Dedupe in case importAlias is the default `@spartan-ng/helm`.
52
+ const prefixes = [...new Set(['@spartan-ng/brain/', '@spartan-ng/helm/', `${importAlias}/`])];
53
+ const found = new Set();
54
+ const importRegex = /from\s*['"]([^'"]+)['"]/g;
55
+ // Only TypeScript files carry import statements; HTML templates never match this regex.
56
+ (0, devkit_1.visitNotIgnoredFiles)(tree, '.', (filePath) => {
57
+ if (!filePath.endsWith('.ts')) {
58
+ return;
59
+ }
60
+ const contents = tree.read(filePath, 'utf-8');
61
+ if (!contents) {
62
+ return;
63
+ }
64
+ for (const match of contents.matchAll(importRegex)) {
65
+ const moduleSpecifier = match[1];
66
+ const prefix = prefixes.find((p) => moduleSpecifier.startsWith(p) && moduleSpecifier.length > p.length);
67
+ if (!prefix) {
68
+ continue;
69
+ }
70
+ const subpath = moduleSpecifier.slice(prefix.length).split('/')[0];
71
+ const component = byNormalized.get(normalize(subpath));
72
+ if (component) {
73
+ found.add(component);
74
+ }
75
+ }
76
+ });
77
+ return [...found].sort();
78
+ }
79
+ function collectSpartanInfo(tree, availableComponents, options = {}) {
80
+ const angularCli = options.angularCli ?? false;
81
+ const config = readConfig(tree, angularCli);
82
+ const dependencies = readDependencies(tree);
83
+ const workspaceType = angularCli
84
+ ? 'angular-cli'
85
+ : tree.exists('nx.json')
86
+ ? 'nx'
87
+ : tree.exists('angular.json')
88
+ ? 'angular-cli'
89
+ : 'unknown';
90
+ return {
91
+ workspaceType,
92
+ config,
93
+ versions: {
94
+ angular: dependencies['@angular/core'] ?? null,
95
+ angularCdk: dependencies['@angular/cdk'] ?? null,
96
+ tailwind: dependencies['tailwindcss'] ?? null,
97
+ spartanBrain: dependencies['@spartan-ng/brain'] ?? null,
98
+ spartanHelm: dependencies['@spartan-ng/helm'] ?? null,
99
+ spartanCli: dependencies['@spartan-ng/cli'] ?? null,
100
+ },
101
+ iconLibrary: detectIconLibrary(dependencies),
102
+ tailwindCssFile: detectStyleFile(tree),
103
+ resolvedPaths: {
104
+ components: config.componentsPath,
105
+ },
106
+ installedComponents: detectInstalledComponents(tree, config.importAlias, availableComponents),
107
+ availableComponents: [...availableComponents].sort(),
108
+ };
109
+ }
110
+ //# sourceMappingURL=collect-info.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"collect-info.js","sourceRoot":"","sources":["../../../../../../../libs/cli/src/generators/info/lib/collect-info.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ export interface InfoGeneratorSchema {
2
+ json?: boolean;
3
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema",
3
+ "$id": "Info",
4
+ "title": "Spartan project info",
5
+ "type": "object",
6
+ "properties": {
7
+ "json": {
8
+ "type": "boolean",
9
+ "default": false,
10
+ "description": "Output the project context as machine-readable JSON (for AI agents and tooling)."
11
+ }
12
+ },
13
+ "required": []
14
+ }
@@ -33,7 +33,7 @@ export class HlmSelectTrigger {
33
33
  public readonly userClass = input<ClassValue>('', { alias: 'class' });
34
34
  protected readonly _computedClass = computed(() =>
35
35
  hlm(
36
- 'spartan-select-trigger flex w-fit justify-between whitespace-nowrap outline-none disabled:cursor-not-allowed disabled:opacity-50 *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center [&_ng-icon]:pointer-events-none [&_ng-icon]:shrink-0',
36
+ 'spartan-select-trigger flex w-fit items-center justify-between whitespace-nowrap outline-none disabled:cursor-not-allowed disabled:opacity-50 *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center [&_ng-icon]:pointer-events-none [&_ng-icon]:shrink-0',
37
37
  this.userClass(),
38
38
  ),
39
39
  );
@@ -3,7 +3,7 @@
3
3
  "name": "accordion",
4
4
  "peerDependencies": {
5
5
  "@angular/core": ">=20.0.0 <22.0.0",
6
- "@spartan-ng/brain": "0.0.1-alpha.705",
6
+ "@spartan-ng/brain": "0.0.1-alpha.707",
7
7
  "@ng-icons/core": ">=32.0.0 <34.0.0",
8
8
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
9
9
  "clsx": "^2.1.1"
@@ -20,7 +20,7 @@
20
20
  "name": "alert-dialog",
21
21
  "peerDependencies": {
22
22
  "@angular/core": ">=20.0.0 <22.0.0",
23
- "@spartan-ng/brain": "0.0.1-alpha.705",
23
+ "@spartan-ng/brain": "0.0.1-alpha.707",
24
24
  "clsx": "^2.1.1"
25
25
  }
26
26
  },
@@ -36,7 +36,7 @@
36
36
  "peerDependencies": {
37
37
  "@angular/core": ">=20.0.0 <22.0.0",
38
38
  "@angular/forms": ">=20.0.0 <22.0.0",
39
- "@spartan-ng/brain": "0.0.1-alpha.705",
39
+ "@spartan-ng/brain": "0.0.1-alpha.707",
40
40
  "@angular/cdk": ">=20.0.0 <22.0.0",
41
41
  "@ng-icons/core": ">=32.0.0 <34.0.0",
42
42
  "@ng-icons/lucide": ">=32.0.0 <34.0.0"
@@ -46,7 +46,7 @@
46
46
  "name": "avatar",
47
47
  "peerDependencies": {
48
48
  "@angular/core": ">=20.0.0 <22.0.0",
49
- "@spartan-ng/brain": "0.0.1-alpha.705"
49
+ "@spartan-ng/brain": "0.0.1-alpha.707"
50
50
  }
51
51
  },
52
52
  "badge": {
@@ -70,7 +70,7 @@
70
70
  "name": "button",
71
71
  "peerDependencies": {
72
72
  "@angular/core": ">=20.0.0 <22.0.0",
73
- "@spartan-ng/brain": "0.0.1-alpha.705",
73
+ "@spartan-ng/brain": "0.0.1-alpha.707",
74
74
  "class-variance-authority": "^0.7.0",
75
75
  "clsx": "^2.1.1"
76
76
  }
@@ -79,7 +79,7 @@
79
79
  "name": "button-group",
80
80
  "peerDependencies": {
81
81
  "@angular/core": ">=20.0.0 <22.0.0",
82
- "@spartan-ng/brain": "0.0.1-alpha.705",
82
+ "@spartan-ng/brain": "0.0.1-alpha.707",
83
83
  "class-variance-authority": "^0.7.0"
84
84
  }
85
85
  },
@@ -91,7 +91,7 @@
91
91
  "@angular/core": ">=20.0.0 <22.0.0",
92
92
  "@ng-icons/core": ">=32.0.0 <34.0.0",
93
93
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
94
- "@spartan-ng/brain": "0.0.1-alpha.705",
94
+ "@spartan-ng/brain": "0.0.1-alpha.707",
95
95
  "clsx": "^2.1.1"
96
96
  }
97
97
  },
@@ -119,7 +119,7 @@
119
119
  "@angular/cdk": ">=20.0.0 <22.0.0",
120
120
  "@ng-icons/core": ">=32.0.0 <34.0.0",
121
121
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
122
- "@spartan-ng/brain": "0.0.1-alpha.705",
122
+ "@spartan-ng/brain": "0.0.1-alpha.707",
123
123
  "clsx": "^2.1.1"
124
124
  }
125
125
  },
@@ -127,7 +127,7 @@
127
127
  "name": "collapsible",
128
128
  "peerDependencies": {
129
129
  "@angular/core": ">=20.0.0 <22.0.0",
130
- "@spartan-ng/brain": "0.0.1-alpha.705"
130
+ "@spartan-ng/brain": "0.0.1-alpha.707"
131
131
  }
132
132
  },
133
133
  "combobox": {
@@ -135,7 +135,7 @@
135
135
  "peerDependencies": {
136
136
  "@angular/core": ">=20.0.0 <22.0.0",
137
137
  "@angular/forms": ">=20.0.0 <22.0.0",
138
- "@spartan-ng/brain": "0.0.1-alpha.705",
138
+ "@spartan-ng/brain": "0.0.1-alpha.707",
139
139
  "@angular/cdk": ">=20.0.0 <22.0.0",
140
140
  "@ng-icons/core": ">=32.0.0 <34.0.0",
141
141
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -147,7 +147,7 @@
147
147
  "peerDependencies": {
148
148
  "@angular/cdk": ">=20.0.0 <22.0.0",
149
149
  "@angular/core": ">=20.0.0 <22.0.0",
150
- "@spartan-ng/brain": "0.0.1-alpha.705",
150
+ "@spartan-ng/brain": "0.0.1-alpha.707",
151
151
  "clsx": "^2.1.1",
152
152
  "@ng-icons/core": ">=32.0.0 <34.0.0",
153
153
  "@ng-icons/lucide": ">=32.0.0 <34.0.0"
@@ -157,7 +157,7 @@
157
157
  "name": "context-menu",
158
158
  "peerDependencies": {
159
159
  "@angular/core": ">=20.0.0 <22.0.0",
160
- "@spartan-ng/brain": "0.0.1-alpha.705",
160
+ "@spartan-ng/brain": "0.0.1-alpha.707",
161
161
  "@angular/cdk": ">=20.0.0 <22.0.0",
162
162
  "rxjs": "^7.8.0"
163
163
  }
@@ -170,7 +170,7 @@
170
170
  "@angular/cdk": ">=20.0.0 <22.0.0",
171
171
  "@ng-icons/core": ">=32.0.0 <34.0.0",
172
172
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
173
- "@spartan-ng/brain": "0.0.1-alpha.705",
173
+ "@spartan-ng/brain": "0.0.1-alpha.707",
174
174
  "clsx": "^2.1.1"
175
175
  }
176
176
  },
@@ -178,7 +178,7 @@
178
178
  "name": "dialog",
179
179
  "peerDependencies": {
180
180
  "@angular/core": ">=20.0.0 <22.0.0",
181
- "@spartan-ng/brain": "0.0.1-alpha.705",
181
+ "@spartan-ng/brain": "0.0.1-alpha.707",
182
182
  "@angular/cdk": ">=20.0.0 <22.0.0",
183
183
  "@angular/common": ">=20.0.0 <22.0.0",
184
184
  "@ng-icons/core": ">=32.0.0 <34.0.0",
@@ -194,7 +194,7 @@
194
194
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
195
195
  "@angular/cdk": ">=20.0.0 <22.0.0",
196
196
  "rxjs": "^7.8.0",
197
- "@spartan-ng/brain": "0.0.1-alpha.705"
197
+ "@spartan-ng/brain": "0.0.1-alpha.707"
198
198
  }
199
199
  },
200
200
  "empty": {
@@ -208,7 +208,7 @@
208
208
  "name": "field",
209
209
  "peerDependencies": {
210
210
  "@angular/core": ">=20.0.0 <22.0.0",
211
- "@spartan-ng/brain": "0.0.1-alpha.705",
211
+ "@spartan-ng/brain": "0.0.1-alpha.707",
212
212
  "@angular/cdk": ">=20.0.0 <22.0.0",
213
213
  "class-variance-authority": "^0.7.0"
214
214
  }
@@ -217,7 +217,7 @@
217
217
  "name": "hover-card",
218
218
  "peerDependencies": {
219
219
  "@angular/core": ">=20.0.0 <22.0.0",
220
- "@spartan-ng/brain": "0.0.1-alpha.705"
220
+ "@spartan-ng/brain": "0.0.1-alpha.707"
221
221
  }
222
222
  },
223
223
  "icon": {
@@ -233,7 +233,7 @@
233
233
  "peerDependencies": {
234
234
  "@angular/core": ">=20.0.0 <22.0.0",
235
235
  "@angular/forms": ">=20.0.0 <22.0.0",
236
- "@spartan-ng/brain": "0.0.1-alpha.705"
236
+ "@spartan-ng/brain": "0.0.1-alpha.707"
237
237
  }
238
238
  },
239
239
  "input-group": {
@@ -250,7 +250,7 @@
250
250
  "@ng-icons/core": ">=32.0.0 <34.0.0",
251
251
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
252
252
  "@angular/cdk": ">=20.0.0 <22.0.0",
253
- "@spartan-ng/brain": "0.0.1-alpha.705"
253
+ "@spartan-ng/brain": "0.0.1-alpha.707"
254
254
  }
255
255
  },
256
256
  "item": {
@@ -258,7 +258,7 @@
258
258
  "peerDependencies": {
259
259
  "@angular/core": ">=20.0.0 <22.0.0",
260
260
  "class-variance-authority": "^0.7.0",
261
- "@spartan-ng/brain": "0.0.1-alpha.705"
261
+ "@spartan-ng/brain": "0.0.1-alpha.707"
262
262
  }
263
263
  },
264
264
  "kbd": {
@@ -271,14 +271,14 @@
271
271
  "name": "label",
272
272
  "peerDependencies": {
273
273
  "@angular/core": ">=20.0.0 <22.0.0",
274
- "@spartan-ng/brain": "0.0.1-alpha.705"
274
+ "@spartan-ng/brain": "0.0.1-alpha.707"
275
275
  }
276
276
  },
277
277
  "menubar": {
278
278
  "name": "menubar",
279
279
  "peerDependencies": {
280
280
  "@angular/core": ">=20.0.0 <22.0.0",
281
- "@spartan-ng/brain": "0.0.1-alpha.705",
281
+ "@spartan-ng/brain": "0.0.1-alpha.707",
282
282
  "@angular/cdk": ">=20.0.0 <22.0.0",
283
283
  "rxjs": "^7.8.0"
284
284
  }
@@ -291,7 +291,7 @@
291
291
  "@angular/forms": ">=20.0.0 <22.0.0",
292
292
  "@ng-icons/core": ">=32.0.0 <34.0.0",
293
293
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
294
- "@spartan-ng/brain": "0.0.1-alpha.705",
294
+ "@spartan-ng/brain": "0.0.1-alpha.707",
295
295
  "clsx": "^2.1.1"
296
296
  }
297
297
  },
@@ -299,7 +299,7 @@
299
299
  "name": "navigation-menu",
300
300
  "peerDependencies": {
301
301
  "@angular/core": ">=20.0.0 <22.0.0",
302
- "@spartan-ng/brain": "0.0.1-alpha.705"
302
+ "@spartan-ng/brain": "0.0.1-alpha.707"
303
303
  }
304
304
  },
305
305
  "pagination": {
@@ -318,14 +318,14 @@
318
318
  "name": "popover",
319
319
  "peerDependencies": {
320
320
  "@angular/core": ">=20.0.0 <22.0.0",
321
- "@spartan-ng/brain": "0.0.1-alpha.705"
321
+ "@spartan-ng/brain": "0.0.1-alpha.707"
322
322
  }
323
323
  },
324
324
  "progress": {
325
325
  "name": "progress",
326
326
  "peerDependencies": {
327
327
  "@angular/core": ">=20.0.0 <22.0.0",
328
- "@spartan-ng/brain": "0.0.1-alpha.705"
328
+ "@spartan-ng/brain": "0.0.1-alpha.707"
329
329
  }
330
330
  },
331
331
  "radio-group": {
@@ -333,7 +333,7 @@
333
333
  "peerDependencies": {
334
334
  "@angular/core": ">=20.0.0 <22.0.0",
335
335
  "@angular/forms": ">=20.0.0 <22.0.0",
336
- "@spartan-ng/brain": "0.0.1-alpha.705",
336
+ "@spartan-ng/brain": "0.0.1-alpha.707",
337
337
  "clsx": "^2.1.1",
338
338
  "@angular/cdk": ">=20.0.0 <22.0.0",
339
339
  "@angular/common": ">=20.0.0 <22.0.0"
@@ -343,7 +343,7 @@
343
343
  "name": "resizable",
344
344
  "peerDependencies": {
345
345
  "@angular/core": ">=20.0.0 <22.0.0",
346
- "@spartan-ng/brain": "0.0.1-alpha.705"
346
+ "@spartan-ng/brain": "0.0.1-alpha.707"
347
347
  }
348
348
  },
349
349
  "scroll-area": {
@@ -358,7 +358,7 @@
358
358
  "@angular/core": ">=20.0.0 <22.0.0",
359
359
  "@angular/forms": ">=20.0.0 <22.0.0",
360
360
  "@angular/cdk": ">=20.0.0 <22.0.0",
361
- "@spartan-ng/brain": "0.0.1-alpha.705",
361
+ "@spartan-ng/brain": "0.0.1-alpha.707",
362
362
  "@ng-icons/core": ">=32.0.0 <34.0.0",
363
363
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
364
364
  "clsx": "^2.1.1"
@@ -368,14 +368,14 @@
368
368
  "name": "separator",
369
369
  "peerDependencies": {
370
370
  "@angular/core": ">=20.0.0 <22.0.0",
371
- "@spartan-ng/brain": "0.0.1-alpha.705"
371
+ "@spartan-ng/brain": "0.0.1-alpha.707"
372
372
  }
373
373
  },
374
374
  "sheet": {
375
375
  "name": "sheet",
376
376
  "peerDependencies": {
377
377
  "@angular/core": ">=20.0.0 <22.0.0",
378
- "@spartan-ng/brain": "0.0.1-alpha.705",
378
+ "@spartan-ng/brain": "0.0.1-alpha.707",
379
379
  "@angular/cdk": ">=20.0.0 <22.0.0",
380
380
  "@ng-icons/core": ">=32.0.0 <34.0.0",
381
381
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -388,7 +388,7 @@
388
388
  "peerDependencies": {
389
389
  "@angular/core": ">=20.0.0 <22.0.0",
390
390
  "@angular/cdk": ">=20.0.0 <22.0.0",
391
- "@spartan-ng/brain": "0.0.1-alpha.705",
391
+ "@spartan-ng/brain": "0.0.1-alpha.707",
392
392
  "class-variance-authority": "^0.7.0",
393
393
  "@ng-icons/core": ">=32.0.0 <34.0.0",
394
394
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -407,7 +407,7 @@
407
407
  "peerDependencies": {
408
408
  "@angular/core": ">=20.0.0 <22.0.0",
409
409
  "@angular/forms": ">=20.0.0 <22.0.0",
410
- "@spartan-ng/brain": "0.0.1-alpha.705"
410
+ "@spartan-ng/brain": "0.0.1-alpha.707"
411
411
  }
412
412
  },
413
413
  "sonner": {
@@ -417,7 +417,7 @@
417
417
  "@angular/core": ">=20.0.0 <22.0.0",
418
418
  "@ng-icons/core": ">=32.0.0 <34.0.0",
419
419
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
420
- "@spartan-ng/brain": "0.0.1-alpha.705",
420
+ "@spartan-ng/brain": "0.0.1-alpha.707",
421
421
  "clsx": "^2.1.1"
422
422
  }
423
423
  },
@@ -435,7 +435,7 @@
435
435
  "@angular/core": ">=20.0.0 <22.0.0",
436
436
  "@angular/cdk": ">=20.0.0 <22.0.0",
437
437
  "@angular/forms": ">=20.0.0 <22.0.0",
438
- "@spartan-ng/brain": "0.0.1-alpha.705",
438
+ "@spartan-ng/brain": "0.0.1-alpha.707",
439
439
  "clsx": "^2.1.1"
440
440
  }
441
441
  },
@@ -449,7 +449,7 @@
449
449
  "name": "tabs",
450
450
  "peerDependencies": {
451
451
  "@angular/core": ">=20.0.0 <22.0.0",
452
- "@spartan-ng/brain": "0.0.1-alpha.705",
452
+ "@spartan-ng/brain": "0.0.1-alpha.707",
453
453
  "class-variance-authority": "^0.7.0",
454
454
  "@angular/cdk": ">=20.0.0 <22.0.0",
455
455
  "@ng-icons/core": ">=32.0.0 <34.0.0",
@@ -463,14 +463,14 @@
463
463
  "peerDependencies": {
464
464
  "@angular/core": ">=20.0.0 <22.0.0",
465
465
  "@angular/forms": ">=20.0.0 <22.0.0",
466
- "@spartan-ng/brain": "0.0.1-alpha.705"
466
+ "@spartan-ng/brain": "0.0.1-alpha.707"
467
467
  }
468
468
  },
469
469
  "toggle": {
470
470
  "name": "toggle",
471
471
  "peerDependencies": {
472
472
  "@angular/core": ">=20.0.0 <22.0.0",
473
- "@spartan-ng/brain": "0.0.1-alpha.705",
473
+ "@spartan-ng/brain": "0.0.1-alpha.707",
474
474
  "class-variance-authority": "^0.7.0"
475
475
  }
476
476
  },
@@ -478,7 +478,7 @@
478
478
  "name": "toggle-group",
479
479
  "peerDependencies": {
480
480
  "@angular/core": ">=20.0.0 <22.0.0",
481
- "@spartan-ng/brain": "0.0.1-alpha.705",
481
+ "@spartan-ng/brain": "0.0.1-alpha.707",
482
482
  "@angular/cdk": ">=20.0.0 <22.0.0"
483
483
  }
484
484
  },
@@ -486,7 +486,7 @@
486
486
  "name": "tooltip",
487
487
  "peerDependencies": {
488
488
  "@angular/core": ">=20.0.0 <22.0.0",
489
- "@spartan-ng/brain": "0.0.1-alpha.705",
489
+ "@spartan-ng/brain": "0.0.1-alpha.707",
490
490
  "class-variance-authority": "^0.7.0"
491
491
  }
492
492
  },