@spartan-ng/cli 0.0.1-alpha.674 → 0.0.1-alpha.675

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spartan-ng/cli",
3
- "version": "0.0.1-alpha.674",
3
+ "version": "0.0.1-alpha.675",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/spartan-ng/spartan"
@@ -1,196 +1,123 @@
1
- // src/app/directives/hlm-table-directives.ts
2
- import { computed, Directive, inject, InjectionToken, input, type ValueProvider } from '@angular/core';
1
+ import { Directive } from '@angular/core';
3
2
  import { classes } from '<%- importAlias %>/utils';
4
3
 
5
- // Configuration Interface and InjectionToken
6
- export const HlmTableConfigToken = new InjectionToken<HlmTableVariant>('HlmTableConfig');
7
- export interface HlmTableVariant {
8
- tableContainer: string;
9
- table: string;
10
- thead: string;
11
- tbody: string;
12
- tfoot: string;
13
- tr: string;
14
- th: string;
15
- td: string;
16
- caption: string;
17
- }
18
-
19
- export const HlmTableVariantDefault: HlmTableVariant = {
20
- tableContainer: 'spartan-table-container',
21
- table: 'spartan-table',
22
- thead: 'spartan-table-header',
23
- tbody: 'spartan-table-body',
24
- tfoot: 'spartan-table-footer',
25
- tr: 'spartan-table-row has-aria-expanded:bg-muted/50',
26
- th: 'spartan-table-head',
27
- td: 'spartan-table-cell',
28
- caption: 'spartan-table-caption',
29
- };
30
-
31
- export function provideHlmTableConfig(config: Partial<HlmTableVariant>): ValueProvider {
32
- return {
33
- provide: HlmTableConfigToken,
34
- useValue: { ...HlmTableVariantDefault, ...config },
35
- };
36
- }
37
-
38
- export function injectHlmTableConfig(): HlmTableVariant {
39
- return inject(HlmTableConfigToken, { optional: true }) ?? HlmTableVariantDefault;
40
- }
41
-
42
4
  @Directive({
43
5
  selector: 'div[hlmTableContainer]',
44
6
  host: { 'data-slot': 'table-container' },
45
7
  })
46
8
  export class HlmTableContainer {
47
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
48
-
49
9
  constructor() {
50
- classes(() => (this._globalOrDefaultConfig ? this._globalOrDefaultConfig.tableContainer.trim() : ''));
10
+ classes(() => 'spartan-table-container');
51
11
  }
52
12
  }
53
13
 
54
14
  /**
55
15
  * Directive to apply Shadcn-like styling to a <table> element.
56
- * It resolves and provides base classes for its child table elements.
57
- * If a table has the `hlmTable` attribute, it will be styled with the provided variant.
58
- * The other table elements will check if a parent table has the `hlmTable` attribute and will be styled accordingly.
59
16
  */
60
17
  @Directive({
61
18
  selector: 'table[hlmTable]',
62
19
  host: { 'data-slot': 'table' },
63
20
  })
64
21
  export class HlmTable {
65
- /** Input to configure the variant of the table, this input has the highest priority. */
66
- public readonly userVariant = input<Partial<HlmTableVariant> | string>({}, { alias: 'hlmTable' });
67
-
68
- /** Global or default configuration provided by injectHlmTableConfig() */
69
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
70
-
71
- // Protected variant that resolves user input to a full HlmTableVariant
72
- protected readonly _variant = computed<HlmTableVariant>(() => {
73
- const globalOrDefaultConfig = this._globalOrDefaultConfig;
74
- const localInputConfig = this.userVariant();
75
-
76
- // Priority 1: Local input object
77
- if (typeof localInputConfig === 'object' && localInputConfig !== null && Object.keys(localInputConfig).length > 0) {
78
- // Merge local input with the baseline provided by injectHlmTableConfig()
79
- // This ensures that properties not in localInputConfig still fall back to global/default values.
80
- return { ...globalOrDefaultConfig, ...localInputConfig };
81
- }
82
- // If localInputConfig is not a non-empty object (e.g., it's undefined, an empty object, or a string),
83
- // then the globalOrDefaultConfig (which is already the result of injected OR default) is used.
84
- return globalOrDefaultConfig;
85
- });
86
-
87
22
  constructor() {
88
- classes(() => this._variant().table);
23
+ classes(() => 'spartan-table');
89
24
  }
90
25
  }
91
26
 
92
27
  /**
93
28
  * Directive to apply Shadcn-like styling to a <thead> element
94
- * within an HlmTableDirective context.
29
+ * within an HlmTable context.
95
30
  */
96
31
  @Directive({
97
32
  selector: 'thead[hlmTHead],thead[hlmTableHeader]',
98
33
  host: { 'data-slot': 'table-header' },
99
34
  })
100
35
  export class HlmTHead {
101
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
102
-
103
36
  constructor() {
104
- classes(() => (this._globalOrDefaultConfig ? this._globalOrDefaultConfig.thead.trim() : ''));
37
+ classes(() => 'spartan-table-header');
105
38
  }
106
39
  }
107
40
 
108
41
  /**
109
42
  * Directive to apply Shadcn-like styling to a <tbody> element
110
- * within an HlmTableDirective context.
43
+ * within an HlmTable context.
111
44
  */
112
45
  @Directive({
113
46
  selector: 'tbody[hlmTBody],tbody[hlmTableBody]',
114
47
  host: { 'data-slot': 'table-body' },
115
48
  })
116
49
  export class HlmTBody {
117
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
118
50
  constructor() {
119
- classes(() => (this._globalOrDefaultConfig ? this._globalOrDefaultConfig.tbody.trim() : ''));
51
+ classes(() => 'spartan-table-body');
120
52
  }
121
53
  }
122
54
 
123
55
  /**
124
56
  * Directive to apply Shadcn-like styling to a <tfoot> element
125
- * within an HlmTableDirective context.
57
+ * within an HlmTable context.
126
58
  */
127
59
  @Directive({
128
60
  selector: 'tfoot[hlmTFoot],tfoot[hlmTableFooter]',
129
61
  host: { 'data-slot': 'table-footer' },
130
62
  })
131
63
  export class HlmTFoot {
132
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
133
64
  constructor() {
134
- classes(() => (this._globalOrDefaultConfig ? this._globalOrDefaultConfig.tfoot.trim() : ''));
65
+ classes(() => 'spartan-table-footer');
135
66
  }
136
67
  }
137
68
 
138
69
  /**
139
70
  * Directive to apply Shadcn-like styling to a <tr> element
140
- * within an HlmTableDirective context.
71
+ * within an HlmTable context.
141
72
  */
142
73
  @Directive({
143
74
  selector: 'tr[hlmTr],tr[hlmTableRow]',
144
75
  host: { 'data-slot': 'table-row' },
145
76
  })
146
77
  export class HlmTr {
147
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
148
78
  constructor() {
149
- classes(() => (this._globalOrDefaultConfig ? this._globalOrDefaultConfig.tr.trim() : ''));
79
+ classes(() => 'spartan-table-row has-aria-expanded:bg-muted/50');
150
80
  }
151
81
  }
152
82
 
153
83
  /**
154
84
  * Directive to apply Shadcn-like styling to a <th> element
155
- * within an HlmTableDirective context.
85
+ * within an HlmTable context.
156
86
  */
157
87
  @Directive({
158
88
  selector: 'th[hlmTh],th[hlmTableHead]',
159
89
  host: { 'data-slot': 'table-head' },
160
90
  })
161
91
  export class HlmTh {
162
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
163
92
  constructor() {
164
- classes(() => (this._globalOrDefaultConfig ? this._globalOrDefaultConfig.th.trim() : ''));
93
+ classes(() => 'spartan-table-head');
165
94
  }
166
95
  }
167
96
 
168
97
  /**
169
98
  * Directive to apply Shadcn-like styling to a <td> element
170
- * within an HlmTableDirective context.
99
+ * within an HlmTable context.
171
100
  */
172
101
  @Directive({
173
102
  selector: 'td[hlmTd],td[hlmTableCell]',
174
103
  host: { 'data-slot': 'table-cell' },
175
104
  })
176
105
  export class HlmTd {
177
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
178
106
  constructor() {
179
- classes(() => (this._globalOrDefaultConfig ? this._globalOrDefaultConfig.td.trim() : ''));
107
+ classes(() => 'spartan-table-cell');
180
108
  }
181
109
  }
182
110
 
183
111
  /**
184
112
  * Directive to apply Shadcn-like styling to a <caption> element
185
- * within an HlmTableDirective context.
113
+ * within an HlmTable context.
186
114
  */
187
115
  @Directive({
188
116
  selector: 'caption[hlmCaption],caption[hlmTableCaption]',
189
117
  host: { 'data-slot': 'table-caption' },
190
118
  })
191
119
  export class HlmCaption {
192
- private readonly _globalOrDefaultConfig = injectHlmTableConfig();
193
120
  constructor() {
194
- classes(() => (this._globalOrDefaultConfig ? this._globalOrDefaultConfig.caption.trim() : ''));
121
+ classes(() => 'spartan-table-caption');
195
122
  }
196
123
  }
@@ -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.674",
6
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
23
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
39
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674"
49
+ "@spartan-ng/brain": "0.0.1-alpha.675"
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.674",
73
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
82
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
94
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
122
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674"
130
+ "@spartan-ng/brain": "0.0.1-alpha.675"
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.674",
138
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
150
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
160
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
173
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674",
181
+ "@spartan-ng/brain": "0.0.1-alpha.675",
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.674"
197
+ "@spartan-ng/brain": "0.0.1-alpha.675"
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.674",
211
+ "@spartan-ng/brain": "0.0.1-alpha.675",
212
212
  "clsx": "^2.1.1",
213
213
  "@angular/cdk": ">=20.0.0 <22.0.0",
214
214
  "class-variance-authority": "^0.7.0"
@@ -218,7 +218,7 @@
218
218
  "name": "hover-card",
219
219
  "peerDependencies": {
220
220
  "@angular/core": ">=20.0.0 <22.0.0",
221
- "@spartan-ng/brain": "0.0.1-alpha.674"
221
+ "@spartan-ng/brain": "0.0.1-alpha.675"
222
222
  }
223
223
  },
224
224
  "icon": {
@@ -234,7 +234,7 @@
234
234
  "peerDependencies": {
235
235
  "@angular/core": ">=20.0.0 <22.0.0",
236
236
  "@angular/forms": ">=20.0.0 <22.0.0",
237
- "@spartan-ng/brain": "0.0.1-alpha.674",
237
+ "@spartan-ng/brain": "0.0.1-alpha.675",
238
238
  "class-variance-authority": "^0.7.0"
239
239
  }
240
240
  },
@@ -243,7 +243,7 @@
243
243
  "peerDependencies": {
244
244
  "@angular/core": ">=20.0.0 <22.0.0",
245
245
  "class-variance-authority": "^0.7.0",
246
- "@spartan-ng/brain": "0.0.1-alpha.674"
246
+ "@spartan-ng/brain": "0.0.1-alpha.675"
247
247
  }
248
248
  },
249
249
  "input-otp": {
@@ -253,7 +253,7 @@
253
253
  "@ng-icons/core": ">=32.0.0 <34.0.0",
254
254
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
255
255
  "@angular/cdk": ">=20.0.0 <22.0.0",
256
- "@spartan-ng/brain": "0.0.1-alpha.674"
256
+ "@spartan-ng/brain": "0.0.1-alpha.675"
257
257
  }
258
258
  },
259
259
  "item": {
@@ -261,7 +261,7 @@
261
261
  "peerDependencies": {
262
262
  "@angular/core": ">=20.0.0 <22.0.0",
263
263
  "class-variance-authority": "^0.7.0",
264
- "@spartan-ng/brain": "0.0.1-alpha.674"
264
+ "@spartan-ng/brain": "0.0.1-alpha.675"
265
265
  }
266
266
  },
267
267
  "kbd": {
@@ -274,14 +274,14 @@
274
274
  "name": "label",
275
275
  "peerDependencies": {
276
276
  "@angular/core": ">=20.0.0 <22.0.0",
277
- "@spartan-ng/brain": "0.0.1-alpha.674"
277
+ "@spartan-ng/brain": "0.0.1-alpha.675"
278
278
  }
279
279
  },
280
280
  "menubar": {
281
281
  "name": "menubar",
282
282
  "peerDependencies": {
283
283
  "@angular/core": ">=20.0.0 <22.0.0",
284
- "@spartan-ng/brain": "0.0.1-alpha.674",
284
+ "@spartan-ng/brain": "0.0.1-alpha.675",
285
285
  "@angular/cdk": ">=20.0.0 <22.0.0",
286
286
  "rxjs": "^7.8.0"
287
287
  }
@@ -294,7 +294,7 @@
294
294
  "@angular/forms": ">=20.0.0 <22.0.0",
295
295
  "@ng-icons/core": ">=32.0.0 <34.0.0",
296
296
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
297
- "@spartan-ng/brain": "0.0.1-alpha.674",
297
+ "@spartan-ng/brain": "0.0.1-alpha.675",
298
298
  "clsx": "^2.1.1"
299
299
  }
300
300
  },
@@ -302,7 +302,7 @@
302
302
  "name": "navigation-menu",
303
303
  "peerDependencies": {
304
304
  "@angular/core": ">=20.0.0 <22.0.0",
305
- "@spartan-ng/brain": "0.0.1-alpha.674"
305
+ "@spartan-ng/brain": "0.0.1-alpha.675"
306
306
  }
307
307
  },
308
308
  "pagination": {
@@ -320,14 +320,14 @@
320
320
  "name": "popover",
321
321
  "peerDependencies": {
322
322
  "@angular/core": ">=20.0.0 <22.0.0",
323
- "@spartan-ng/brain": "0.0.1-alpha.674"
323
+ "@spartan-ng/brain": "0.0.1-alpha.675"
324
324
  }
325
325
  },
326
326
  "progress": {
327
327
  "name": "progress",
328
328
  "peerDependencies": {
329
329
  "@angular/core": ">=20.0.0 <22.0.0",
330
- "@spartan-ng/brain": "0.0.1-alpha.674"
330
+ "@spartan-ng/brain": "0.0.1-alpha.675"
331
331
  }
332
332
  },
333
333
  "radio-group": {
@@ -335,7 +335,7 @@
335
335
  "peerDependencies": {
336
336
  "@angular/core": ">=20.0.0 <22.0.0",
337
337
  "@angular/forms": ">=20.0.0 <22.0.0",
338
- "@spartan-ng/brain": "0.0.1-alpha.674",
338
+ "@spartan-ng/brain": "0.0.1-alpha.675",
339
339
  "clsx": "^2.1.1",
340
340
  "@angular/cdk": ">=20.0.0 <22.0.0",
341
341
  "@angular/common": ">=20.0.0 <22.0.0"
@@ -345,7 +345,7 @@
345
345
  "name": "resizable",
346
346
  "peerDependencies": {
347
347
  "@angular/core": ">=20.0.0 <22.0.0",
348
- "@spartan-ng/brain": "0.0.1-alpha.674"
348
+ "@spartan-ng/brain": "0.0.1-alpha.675"
349
349
  }
350
350
  },
351
351
  "scroll-area": {
@@ -360,7 +360,7 @@
360
360
  "@angular/core": ">=20.0.0 <22.0.0",
361
361
  "@angular/forms": ">=20.0.0 <22.0.0",
362
362
  "@angular/cdk": ">=20.0.0 <22.0.0",
363
- "@spartan-ng/brain": "0.0.1-alpha.674",
363
+ "@spartan-ng/brain": "0.0.1-alpha.675",
364
364
  "@ng-icons/core": ">=32.0.0 <34.0.0",
365
365
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
366
366
  "clsx": "^2.1.1"
@@ -370,14 +370,14 @@
370
370
  "name": "separator",
371
371
  "peerDependencies": {
372
372
  "@angular/core": ">=20.0.0 <22.0.0",
373
- "@spartan-ng/brain": "0.0.1-alpha.674"
373
+ "@spartan-ng/brain": "0.0.1-alpha.675"
374
374
  }
375
375
  },
376
376
  "sheet": {
377
377
  "name": "sheet",
378
378
  "peerDependencies": {
379
379
  "@angular/core": ">=20.0.0 <22.0.0",
380
- "@spartan-ng/brain": "0.0.1-alpha.674",
380
+ "@spartan-ng/brain": "0.0.1-alpha.675",
381
381
  "@angular/cdk": ">=20.0.0 <22.0.0",
382
382
  "@ng-icons/core": ">=32.0.0 <34.0.0",
383
383
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -390,7 +390,7 @@
390
390
  "peerDependencies": {
391
391
  "@angular/core": ">=20.0.0 <22.0.0",
392
392
  "@angular/cdk": ">=20.0.0 <22.0.0",
393
- "@spartan-ng/brain": "0.0.1-alpha.674",
393
+ "@spartan-ng/brain": "0.0.1-alpha.675",
394
394
  "class-variance-authority": "^0.7.0",
395
395
  "@ng-icons/core": ">=32.0.0 <34.0.0",
396
396
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -409,7 +409,7 @@
409
409
  "peerDependencies": {
410
410
  "@angular/core": ">=20.0.0 <22.0.0",
411
411
  "@angular/forms": ">=20.0.0 <22.0.0",
412
- "@spartan-ng/brain": "0.0.1-alpha.674"
412
+ "@spartan-ng/brain": "0.0.1-alpha.675"
413
413
  }
414
414
  },
415
415
  "sonner": {
@@ -419,7 +419,7 @@
419
419
  "@angular/core": ">=20.0.0 <22.0.0",
420
420
  "@ng-icons/core": ">=32.0.0 <34.0.0",
421
421
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
422
- "@spartan-ng/brain": "0.0.1-alpha.674",
422
+ "@spartan-ng/brain": "0.0.1-alpha.675",
423
423
  "clsx": "^2.1.1"
424
424
  }
425
425
  },
@@ -437,7 +437,7 @@
437
437
  "@angular/core": ">=20.0.0 <22.0.0",
438
438
  "@angular/cdk": ">=20.0.0 <22.0.0",
439
439
  "@angular/forms": ">=20.0.0 <22.0.0",
440
- "@spartan-ng/brain": "0.0.1-alpha.674",
440
+ "@spartan-ng/brain": "0.0.1-alpha.675",
441
441
  "clsx": "^2.1.1"
442
442
  }
443
443
  },
@@ -451,7 +451,7 @@
451
451
  "name": "tabs",
452
452
  "peerDependencies": {
453
453
  "@angular/core": ">=20.0.0 <22.0.0",
454
- "@spartan-ng/brain": "0.0.1-alpha.674",
454
+ "@spartan-ng/brain": "0.0.1-alpha.675",
455
455
  "class-variance-authority": "^0.7.0",
456
456
  "@angular/cdk": ">=20.0.0 <22.0.0",
457
457
  "@ng-icons/core": ">=32.0.0 <34.0.0",
@@ -465,7 +465,7 @@
465
465
  "peerDependencies": {
466
466
  "@angular/core": ">=20.0.0 <22.0.0",
467
467
  "@angular/forms": ">=20.0.0 <22.0.0",
468
- "@spartan-ng/brain": "0.0.1-alpha.674",
468
+ "@spartan-ng/brain": "0.0.1-alpha.675",
469
469
  "class-variance-authority": "^0.7.0"
470
470
  }
471
471
  },
@@ -473,7 +473,7 @@
473
473
  "name": "toggle",
474
474
  "peerDependencies": {
475
475
  "@angular/core": ">=20.0.0 <22.0.0",
476
- "@spartan-ng/brain": "0.0.1-alpha.674",
476
+ "@spartan-ng/brain": "0.0.1-alpha.675",
477
477
  "class-variance-authority": "^0.7.0"
478
478
  }
479
479
  },
@@ -481,7 +481,7 @@
481
481
  "name": "toggle-group",
482
482
  "peerDependencies": {
483
483
  "@angular/core": ">=20.0.0 <22.0.0",
484
- "@spartan-ng/brain": "0.0.1-alpha.674",
484
+ "@spartan-ng/brain": "0.0.1-alpha.675",
485
485
  "@angular/cdk": ">=20.0.0 <22.0.0"
486
486
  }
487
487
  },
@@ -489,7 +489,7 @@
489
489
  "name": "tooltip",
490
490
  "peerDependencies": {
491
491
  "@angular/core": ">=20.0.0 <22.0.0",
492
- "@spartan-ng/brain": "0.0.1-alpha.674",
492
+ "@spartan-ng/brain": "0.0.1-alpha.675",
493
493
  "class-variance-authority": "^0.7.0"
494
494
  }
495
495
  },