@spartan-ng/cli 0.0.1-alpha.611 → 0.0.1-alpha.613

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.611",
3
+ "version": "0.0.1-alpha.613",
4
4
  "type": "commonjs",
5
5
  "dependencies": {
6
6
  "@angular/core": ">=19.0.0",
@@ -1,9 +1,22 @@
1
- import { HlmAvatarFallback } from './lib/fallback';
2
1
  import { HlmAvatar } from './lib/hlm-avatar';
3
- import { HlmAvatarImage } from './lib/image';
2
+ import { HlmAvatarBadge } from './lib/hlm-avatar-badge';
3
+ import { HlmAvatarFallback } from './lib/hlm-avatar-fallback';
4
+ import { HlmAvatarGroup } from './lib/hlm-avatar-group';
5
+ import { HlmAvatarGroupCount } from './lib/hlm-avatar-group-count';
6
+ import { HlmAvatarImage } from './lib/hlm-avatar-image';
4
7
 
5
- export * from './lib/fallback';
6
8
  export * from './lib/hlm-avatar';
7
- export * from './lib/image';
9
+ export * from './lib/hlm-avatar-badge';
10
+ export * from './lib/hlm-avatar-fallback';
11
+ export * from './lib/hlm-avatar-group';
12
+ export * from './lib/hlm-avatar-group-count';
13
+ export * from './lib/hlm-avatar-image';
8
14
 
9
- export const HlmAvatarImports = [HlmAvatarFallback, HlmAvatarImage, HlmAvatar] as const;
15
+ export const HlmAvatarImports = [
16
+ HlmAvatar,
17
+ HlmAvatarBadge,
18
+ HlmAvatarFallback,
19
+ HlmAvatarGroup,
20
+ HlmAvatarGroupCount,
21
+ HlmAvatarImage,
22
+ ] as const;
@@ -0,0 +1,19 @@
1
+ import { Directive } from '@angular/core';
2
+ import { classes } from '<%- importAlias %>/utils';
3
+
4
+ @Directive({
5
+ selector: '[hlmAvatarBadge],hlm-avatar-badge',
6
+ host: {
7
+ 'data-slot': 'avatar-badge',
8
+ },
9
+ })
10
+ export class HlmAvatarBadge {
11
+ constructor() {
12
+ classes(() => [
13
+ 'bg-primary text-primary-foreground ring-background absolute right-0 bottom-0 z-10 inline-flex items-center justify-center rounded-full bg-blend-color ring-2 select-none',
14
+ 'group-data-[size=sm]/avatar:size-2 group-data-[size=sm]/avatar:[&>ng-icon]:hidden',
15
+ 'group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>ng-icon]:text-[0.5rem]',
16
+ 'group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>ng-icon]:text-[0.5rem]',
17
+ ]);
18
+ }
19
+ }
@@ -5,14 +5,16 @@ import { classes } from '<%- importAlias %>/utils';
5
5
  @Directive({
6
6
  selector: '[hlmAvatarFallback]',
7
7
  exportAs: 'avatarFallback',
8
- hostDirectives: [
9
- {
10
- directive: BrnAvatarFallback,
11
- },
12
- ],
8
+ hostDirectives: [BrnAvatarFallback],
9
+ host: {
10
+ 'data-slot': 'avatar-fallback',
11
+ },
13
12
  })
14
13
  export class HlmAvatarFallback {
15
14
  constructor() {
16
- classes(() => 'bg-muted flex size-full items-center justify-center rounded-full');
15
+ classes(
16
+ () =>
17
+ 'bg-muted text-muted-foreground flex size-full items-center justify-center rounded-full text-sm group-data-[size=sm]/avatar:text-xs',
18
+ );
17
19
  }
18
20
  }
@@ -0,0 +1,17 @@
1
+ import { Directive } from '@angular/core';
2
+ import { classes } from '<%- importAlias %>/utils';
3
+
4
+ @Directive({
5
+ selector: '[hlmAvatarGroupCount],hlm-avatar-group-count',
6
+ host: {
7
+ 'data-slot': 'avatar-group-count',
8
+ },
9
+ })
10
+ export class HlmAvatarGroupCount {
11
+ constructor() {
12
+ classes(
13
+ () =>
14
+ 'bg-muted text-muted-foreground ring-background relative flex size-8 shrink-0 items-center justify-center rounded-full text-sm ring-2 group-has-data-[size=lg]/avatar-group:size-10 group-has-data-[size=sm]/avatar-group:size-6 [&>ng-icon]:text-base group-has-data-[size=lg]/avatar-group:[&>ng-icon]:text-xl group-has-data-[size=sm]/avatar-group:[&>ng-icon]:text-xs',
15
+ );
16
+ }
17
+ }
@@ -0,0 +1,16 @@
1
+ import { Directive } from '@angular/core';
2
+ import { classes } from '<%- importAlias %>/utils';
3
+
4
+ @Directive({
5
+ selector: '[hlmAvatarGroup],hlm-avatar-group',
6
+ host: {
7
+ 'data-slot': 'avatar-group',
8
+ },
9
+ })
10
+ export class HlmAvatarGroup {
11
+ constructor() {
12
+ classes(
13
+ () => '*:data-[slot=avatar]:ring-background group/avatar-group flex -space-x-2 *:data-[slot=avatar]:ring-2',
14
+ );
15
+ }
16
+ }
@@ -6,11 +6,14 @@ import { classes } from '<%- importAlias %>/utils';
6
6
  selector: 'img[hlmAvatarImage]',
7
7
  exportAs: 'avatarImage',
8
8
  hostDirectives: [BrnAvatarImage],
9
+ host: {
10
+ 'data-slot': 'avatar-image',
11
+ },
9
12
  })
10
13
  export class HlmAvatarImage {
11
14
  public readonly canShow = inject(BrnAvatarImage).canShow;
12
15
 
13
16
  constructor() {
14
- classes(() => 'aspect-square size-full');
17
+ classes(() => 'aspect-square size-full rounded-full object-cover');
15
18
  }
16
19
  }
@@ -1,21 +1,31 @@
1
- import { ChangeDetectionStrategy, Component } from '@angular/core';
1
+ import { ChangeDetectionStrategy, Component, input } from '@angular/core';
2
2
  import { BrnAvatar } from '@spartan-ng/brain/avatar';
3
3
  import { classes } from '<%- importAlias %>/utils';
4
4
 
5
5
  @Component({
6
6
  selector: 'hlm-avatar',
7
7
  changeDetection: ChangeDetectionStrategy.OnPush,
8
+ host: {
9
+ 'data-slot': 'avatar',
10
+ '[attr.data-size]': 'size()',
11
+ },
8
12
  template: `
9
13
  @if (_image()?.canShow()) {
10
14
  <ng-content select="[hlmAvatarImage],[brnAvatarImage]" />
11
15
  } @else {
12
16
  <ng-content select="[hlmAvatarFallback],[brnAvatarFallback]" />
13
17
  }
18
+ <ng-content />
14
19
  `,
15
20
  })
16
21
  export class HlmAvatar extends BrnAvatar {
22
+ public readonly size = input<'default' | 'sm' | 'lg'>('default');
23
+
17
24
  constructor() {
18
25
  super();
19
- classes(() => 'relative flex size-8 shrink-0 overflow-hidden rounded-full');
26
+ classes(
27
+ () =>
28
+ 'after:border-border group/avatar relative flex size-8 shrink-0 rounded-full select-none after:absolute after:inset-0 after:rounded-full after:border after:mix-blend-darken data-[size=lg]:size-10 data-[size=sm]:size-6 dark:after:mix-blend-lighten',
29
+ );
20
30
  }
21
31
  }
@@ -3,15 +3,17 @@ import { classes } from '<%- importAlias %>/utils';
3
3
  import { type VariantProps, cva } from 'class-variance-authority';
4
4
 
5
5
  const badgeVariants = cva(
6
- 'focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive inline-flex w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-md border px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-[color,box-shadow] focus-visible:ring-[3px] [&_ng-icon]:pointer-events-none [&_ng-icon]:size-3',
6
+ 'focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-4xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:ring-[3px] has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&>ng-icon]:pointer-events-none [&>ng-icon]:text-xs',
7
7
  {
8
8
  variants: {
9
9
  variant: {
10
- default: 'bg-primary text-primary-foreground [a&]:hover:bg-primary/90 border-transparent',
11
- secondary: 'bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 border-transparent',
10
+ default: 'bg-primary text-primary-foreground [a]:hover:bg-primary/80',
11
+ secondary: 'bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80',
12
12
  destructive:
13
- 'bg-destructive [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60 border-transparent text-white',
14
- outline: 'text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground',
13
+ 'bg-destructive/10 [a]:hover:bg-destructive/20 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 text-destructive dark:bg-destructive/20',
14
+ outline: 'border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground',
15
+ ghost: 'hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50',
16
+ link: 'text-primary underline-offset-4 hover:underline',
15
17
  },
16
18
  },
17
19
  defaultVariants: {
@@ -23,9 +25,10 @@ const badgeVariants = cva(
23
25
  export type BadgeVariants = VariantProps<typeof badgeVariants>;
24
26
 
25
27
  @Directive({
26
- selector: '[hlmBadge]',
28
+ selector: '[hlmBadge],hlm-badge',
27
29
  host: {
28
30
  'data-slot': 'badge',
31
+ '[attr.data-variant]': 'variant()',
29
32
  },
30
33
  })
31
34
  export class HlmBadge {
@@ -21,10 +21,11 @@ export const buttonVariants = cva(
21
21
  },
22
22
  size: {
23
23
  default: 'h-9 px-4 py-2 has-[>ng-icon]:px-3',
24
+ xs: `h-6 gap-1 rounded-md px-2 text-xs has-[>ng-icon]:px-1.5 [&_ng-icon:not([class*='text-'])]:text-xs`,
24
25
  sm: 'h-8 gap-1.5 rounded-md px-3 has-[>ng-icon]:px-2.5',
25
26
  lg: 'h-10 rounded-md px-6 has-[>ng-icon]:px-4',
26
27
  icon: 'size-9',
27
- 'icon-xs': `size-6 [&_ng-icon:not([class*='text-'])]:text-xs`,
28
+ 'icon-xs': `size-6 rounded-md [&_ng-icon:not([class*='text-'])]:text-xs`,
28
29
  'icon-sm': 'size-8',
29
30
  'icon-lg': 'size-10',
30
31
  },
@@ -56,7 +56,7 @@ export class HlmRadio<T = unknown> {
56
56
  public readonly userClass = input<ClassValue>('', { alias: 'class' });
57
57
  protected readonly _computedClass = computed(() =>
58
58
  hlm(
59
- 'group flex items-center gap-x-3',
59
+ 'group relative flex items-center gap-x-3',
60
60
  'data-[disabled=true]:cursor-not-allowed data-[disabled=true]:opacity-50',
61
61
  this.userClass(),
62
62
  ),
@@ -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.611",
6
+ "@spartan-ng/brain": "0.0.1-alpha.613",
7
7
  "@ng-icons/core": ">=32.0.0 <34.0.0",
8
8
  "@ng-icons/lucide": ">=32.0.0 <34.0.0"
9
9
  }
@@ -19,7 +19,7 @@
19
19
  "name": "alert-dialog",
20
20
  "peerDependencies": {
21
21
  "@angular/core": ">=20.0.0 <22.0.0",
22
- "@spartan-ng/brain": "0.0.1-alpha.611",
22
+ "@spartan-ng/brain": "0.0.1-alpha.613",
23
23
  "clsx": "^2.1.1"
24
24
  }
25
25
  },
@@ -34,7 +34,7 @@
34
34
  "name": "autocomplete",
35
35
  "peerDependencies": {
36
36
  "@angular/core": ">=20.0.0 <22.0.0",
37
- "@spartan-ng/brain": "0.0.1-alpha.611",
37
+ "@spartan-ng/brain": "0.0.1-alpha.613",
38
38
  "@angular/cdk": ">=20.0.0 <22.0.0",
39
39
  "@ng-icons/core": ">=32.0.0 <34.0.0",
40
40
  "@ng-icons/lucide": ">=32.0.0 <34.0.0"
@@ -44,7 +44,7 @@
44
44
  "name": "avatar",
45
45
  "peerDependencies": {
46
46
  "@angular/core": ">=20.0.0 <22.0.0",
47
- "@spartan-ng/brain": "0.0.1-alpha.611"
47
+ "@spartan-ng/brain": "0.0.1-alpha.613"
48
48
  }
49
49
  },
50
50
  "badge": {
@@ -68,7 +68,7 @@
68
68
  "name": "button",
69
69
  "peerDependencies": {
70
70
  "@angular/core": ">=20.0.0 <22.0.0",
71
- "@spartan-ng/brain": "0.0.1-alpha.611",
71
+ "@spartan-ng/brain": "0.0.1-alpha.613",
72
72
  "class-variance-authority": "^0.7.0",
73
73
  "clsx": "^2.1.1"
74
74
  }
@@ -77,7 +77,7 @@
77
77
  "name": "button-group",
78
78
  "peerDependencies": {
79
79
  "@angular/core": ">=20.0.0 <22.0.0",
80
- "@spartan-ng/brain": "0.0.1-alpha.611",
80
+ "@spartan-ng/brain": "0.0.1-alpha.613",
81
81
  "class-variance-authority": "^0.7.0"
82
82
  }
83
83
  },
@@ -89,7 +89,7 @@
89
89
  "@angular/core": ">=20.0.0 <22.0.0",
90
90
  "@ng-icons/core": ">=32.0.0 <34.0.0",
91
91
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
92
- "@spartan-ng/brain": "0.0.1-alpha.611",
92
+ "@spartan-ng/brain": "0.0.1-alpha.613",
93
93
  "clsx": "^2.1.1"
94
94
  }
95
95
  },
@@ -117,7 +117,7 @@
117
117
  "@angular/cdk": ">=20.0.0 <22.0.0",
118
118
  "@ng-icons/core": ">=32.0.0 <34.0.0",
119
119
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
120
- "@spartan-ng/brain": "0.0.1-alpha.611",
120
+ "@spartan-ng/brain": "0.0.1-alpha.613",
121
121
  "clsx": "^2.1.1"
122
122
  }
123
123
  },
@@ -125,14 +125,14 @@
125
125
  "name": "collapsible",
126
126
  "peerDependencies": {
127
127
  "@angular/core": ">=20.0.0 <22.0.0",
128
- "@spartan-ng/brain": "0.0.1-alpha.611"
128
+ "@spartan-ng/brain": "0.0.1-alpha.613"
129
129
  }
130
130
  },
131
131
  "combobox": {
132
132
  "name": "combobox",
133
133
  "peerDependencies": {
134
134
  "@angular/core": ">=20.0.0 <22.0.0",
135
- "@spartan-ng/brain": "0.0.1-alpha.611",
135
+ "@spartan-ng/brain": "0.0.1-alpha.613",
136
136
  "@angular/cdk": ">=20.0.0 <22.0.0",
137
137
  "@ng-icons/core": ">=32.0.0 <34.0.0",
138
138
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -143,14 +143,14 @@
143
143
  "name": "command",
144
144
  "peerDependencies": {
145
145
  "@angular/core": ">=20.0.0 <22.0.0",
146
- "@spartan-ng/brain": "0.0.1-alpha.611"
146
+ "@spartan-ng/brain": "0.0.1-alpha.613"
147
147
  }
148
148
  },
149
149
  "context-menu": {
150
150
  "name": "context-menu",
151
151
  "peerDependencies": {
152
152
  "@angular/core": ">=20.0.0 <22.0.0",
153
- "@spartan-ng/brain": "0.0.1-alpha.611",
153
+ "@spartan-ng/brain": "0.0.1-alpha.613",
154
154
  "@angular/cdk": ">=20.0.0 <22.0.0",
155
155
  "rxjs": "^7.8.0"
156
156
  }
@@ -163,7 +163,7 @@
163
163
  "@angular/forms": ">=20.0.0 <22.0.0",
164
164
  "@ng-icons/core": ">=32.0.0 <34.0.0",
165
165
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
166
- "@spartan-ng/brain": "0.0.1-alpha.611",
166
+ "@spartan-ng/brain": "0.0.1-alpha.613",
167
167
  "clsx": "^2.1.1"
168
168
  }
169
169
  },
@@ -171,7 +171,7 @@
171
171
  "name": "dialog",
172
172
  "peerDependencies": {
173
173
  "@angular/core": ">=20.0.0 <22.0.0",
174
- "@spartan-ng/brain": "0.0.1-alpha.611",
174
+ "@spartan-ng/brain": "0.0.1-alpha.613",
175
175
  "@angular/cdk": ">=20.0.0 <22.0.0",
176
176
  "@angular/common": ">=20.0.0 <22.0.0",
177
177
  "@ng-icons/core": ">=32.0.0 <34.0.0",
@@ -187,7 +187,7 @@
187
187
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
188
188
  "@angular/cdk": ">=20.0.0 <22.0.0",
189
189
  "rxjs": "^7.8.0",
190
- "@spartan-ng/brain": "0.0.1-alpha.611"
190
+ "@spartan-ng/brain": "0.0.1-alpha.613"
191
191
  }
192
192
  },
193
193
  "empty": {
@@ -210,14 +210,14 @@
210
210
  "peerDependencies": {
211
211
  "@angular/core": ">=20.0.0 <22.0.0",
212
212
  "@angular/forms": ">=20.0.0 <22.0.0",
213
- "@spartan-ng/brain": "0.0.1-alpha.611"
213
+ "@spartan-ng/brain": "0.0.1-alpha.613"
214
214
  }
215
215
  },
216
216
  "hover-card": {
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.611"
220
+ "@spartan-ng/brain": "0.0.1-alpha.613"
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.611",
236
+ "@spartan-ng/brain": "0.0.1-alpha.613",
237
237
  "class-variance-authority": "^0.7.0",
238
238
  "clsx": "^2.1.1"
239
239
  }
@@ -252,7 +252,7 @@
252
252
  "@ng-icons/core": ">=32.0.0 <34.0.0",
253
253
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
254
254
  "@angular/cdk": ">=20.0.0 <22.0.0",
255
- "@spartan-ng/brain": "0.0.1-alpha.611"
255
+ "@spartan-ng/brain": "0.0.1-alpha.613"
256
256
  }
257
257
  },
258
258
  "item": {
@@ -260,7 +260,7 @@
260
260
  "peerDependencies": {
261
261
  "@angular/core": ">=20.0.0 <22.0.0",
262
262
  "class-variance-authority": "^0.7.0",
263
- "@spartan-ng/brain": "0.0.1-alpha.611"
263
+ "@spartan-ng/brain": "0.0.1-alpha.613"
264
264
  }
265
265
  },
266
266
  "kbd": {
@@ -273,14 +273,14 @@
273
273
  "name": "label",
274
274
  "peerDependencies": {
275
275
  "@angular/core": ">=20.0.0 <22.0.0",
276
- "@spartan-ng/brain": "0.0.1-alpha.611"
276
+ "@spartan-ng/brain": "0.0.1-alpha.613"
277
277
  }
278
278
  },
279
279
  "menubar": {
280
280
  "name": "menubar",
281
281
  "peerDependencies": {
282
282
  "@angular/core": ">=20.0.0 <22.0.0",
283
- "@spartan-ng/brain": "0.0.1-alpha.611",
283
+ "@spartan-ng/brain": "0.0.1-alpha.613",
284
284
  "@angular/cdk": ">=20.0.0 <22.0.0",
285
285
  "rxjs": "^7.8.0"
286
286
  }
@@ -289,7 +289,7 @@
289
289
  "name": "navigation-menu",
290
290
  "peerDependencies": {
291
291
  "@angular/core": ">=20.0.0 <22.0.0",
292
- "@spartan-ng/brain": "0.0.1-alpha.611"
292
+ "@spartan-ng/brain": "0.0.1-alpha.613"
293
293
  }
294
294
  },
295
295
  "pagination": {
@@ -298,7 +298,7 @@
298
298
  "@angular/cdk": ">=20.0.0 <22.0.0",
299
299
  "@angular/core": ">=20.0.0 <22.0.0",
300
300
  "@angular/forms": ">=20.0.0 <22.0.0",
301
- "@spartan-ng/brain": "0.0.1-alpha.611",
301
+ "@spartan-ng/brain": "0.0.1-alpha.613",
302
302
  "@ng-icons/core": ">=32.0.0 <34.0.0",
303
303
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
304
304
  "@angular/router": ">=20.0.0 <22.0.0"
@@ -308,21 +308,21 @@
308
308
  "name": "popover",
309
309
  "peerDependencies": {
310
310
  "@angular/core": ">=20.0.0 <22.0.0",
311
- "@spartan-ng/brain": "0.0.1-alpha.611"
311
+ "@spartan-ng/brain": "0.0.1-alpha.613"
312
312
  }
313
313
  },
314
314
  "progress": {
315
315
  "name": "progress",
316
316
  "peerDependencies": {
317
317
  "@angular/core": ">=20.0.0 <22.0.0",
318
- "@spartan-ng/brain": "0.0.1-alpha.611"
318
+ "@spartan-ng/brain": "0.0.1-alpha.613"
319
319
  }
320
320
  },
321
321
  "radio-group": {
322
322
  "name": "radio-group",
323
323
  "peerDependencies": {
324
324
  "@angular/core": ">=20.0.0 <22.0.0",
325
- "@spartan-ng/brain": "0.0.1-alpha.611",
325
+ "@spartan-ng/brain": "0.0.1-alpha.613",
326
326
  "@angular/cdk": ">=20.0.0 <22.0.0",
327
327
  "@angular/common": ">=20.0.0 <22.0.0",
328
328
  "clsx": "^2.1.1"
@@ -332,7 +332,7 @@
332
332
  "name": "resizable",
333
333
  "peerDependencies": {
334
334
  "@angular/core": ">=20.0.0 <22.0.0",
335
- "@spartan-ng/brain": "0.0.1-alpha.611"
335
+ "@spartan-ng/brain": "0.0.1-alpha.613"
336
336
  }
337
337
  },
338
338
  "scroll-area": {
@@ -346,7 +346,7 @@
346
346
  "peerDependencies": {
347
347
  "@angular/cdk": ">=20.0.0 <22.0.0",
348
348
  "@angular/core": ">=20.0.0 <22.0.0",
349
- "@spartan-ng/brain": "0.0.1-alpha.611",
349
+ "@spartan-ng/brain": "0.0.1-alpha.613",
350
350
  "@ng-icons/core": ">=32.0.0 <34.0.0",
351
351
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
352
352
  "class-variance-authority": "^0.7.0",
@@ -357,14 +357,14 @@
357
357
  "name": "separator",
358
358
  "peerDependencies": {
359
359
  "@angular/core": ">=20.0.0 <22.0.0",
360
- "@spartan-ng/brain": "0.0.1-alpha.611"
360
+ "@spartan-ng/brain": "0.0.1-alpha.613"
361
361
  }
362
362
  },
363
363
  "sheet": {
364
364
  "name": "sheet",
365
365
  "peerDependencies": {
366
366
  "@angular/core": ">=20.0.0 <22.0.0",
367
- "@spartan-ng/brain": "0.0.1-alpha.611",
367
+ "@spartan-ng/brain": "0.0.1-alpha.613",
368
368
  "@ng-icons/core": ">=32.0.0 <34.0.0",
369
369
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
370
370
  "class-variance-authority": "^0.7.0",
@@ -376,7 +376,7 @@
376
376
  "peerDependencies": {
377
377
  "@angular/core": ">=20.0.0 <22.0.0",
378
378
  "@angular/cdk": ">=20.0.0 <22.0.0",
379
- "@spartan-ng/brain": "0.0.1-alpha.611",
379
+ "@spartan-ng/brain": "0.0.1-alpha.613",
380
380
  "class-variance-authority": "^0.7.0",
381
381
  "@ng-icons/core": ">=32.0.0 <34.0.0",
382
382
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -394,7 +394,7 @@
394
394
  "name": "slider",
395
395
  "peerDependencies": {
396
396
  "@angular/core": ">=20.0.0 <22.0.0",
397
- "@spartan-ng/brain": "0.0.1-alpha.611"
397
+ "@spartan-ng/brain": "0.0.1-alpha.613"
398
398
  }
399
399
  },
400
400
  "sonner": {
@@ -419,7 +419,7 @@
419
419
  "@angular/core": ">=20.0.0 <22.0.0",
420
420
  "@angular/cdk": ">=20.0.0 <22.0.0",
421
421
  "@angular/forms": ">=20.0.0 <22.0.0",
422
- "@spartan-ng/brain": "0.0.1-alpha.611",
422
+ "@spartan-ng/brain": "0.0.1-alpha.613",
423
423
  "clsx": "^2.1.1"
424
424
  }
425
425
  },
@@ -433,7 +433,7 @@
433
433
  "name": "tabs",
434
434
  "peerDependencies": {
435
435
  "@angular/core": ">=20.0.0 <22.0.0",
436
- "@spartan-ng/brain": "0.0.1-alpha.611",
436
+ "@spartan-ng/brain": "0.0.1-alpha.613",
437
437
  "class-variance-authority": "^0.7.0",
438
438
  "@angular/cdk": ">=20.0.0 <22.0.0",
439
439
  "@ng-icons/core": ">=32.0.0 <34.0.0",
@@ -447,7 +447,7 @@
447
447
  "peerDependencies": {
448
448
  "@angular/core": ">=20.0.0 <22.0.0",
449
449
  "@angular/forms": ">=20.0.0 <22.0.0",
450
- "@spartan-ng/brain": "0.0.1-alpha.611",
450
+ "@spartan-ng/brain": "0.0.1-alpha.613",
451
451
  "class-variance-authority": "^0.7.0",
452
452
  "clsx": "^2.1.1"
453
453
  }
@@ -456,7 +456,7 @@
456
456
  "name": "toggle",
457
457
  "peerDependencies": {
458
458
  "@angular/core": ">=20.0.0 <22.0.0",
459
- "@spartan-ng/brain": "0.0.1-alpha.611",
459
+ "@spartan-ng/brain": "0.0.1-alpha.613",
460
460
  "class-variance-authority": "^0.7.0"
461
461
  }
462
462
  },
@@ -464,7 +464,7 @@
464
464
  "name": "toggle-group",
465
465
  "peerDependencies": {
466
466
  "@angular/core": ">=20.0.0 <22.0.0",
467
- "@spartan-ng/brain": "0.0.1-alpha.611",
467
+ "@spartan-ng/brain": "0.0.1-alpha.613",
468
468
  "@angular/cdk": ">=20.0.0 <22.0.0"
469
469
  }
470
470
  },
@@ -472,7 +472,7 @@
472
472
  "name": "tooltip",
473
473
  "peerDependencies": {
474
474
  "@angular/core": ">=20.0.0 <22.0.0",
475
- "@spartan-ng/brain": "0.0.1-alpha.611"
475
+ "@spartan-ng/brain": "0.0.1-alpha.613"
476
476
  }
477
477
  },
478
478
  "typography": {
@@ -1 +0,0 @@
1
- export * from './hlm-avatar-fallback';
@@ -1 +0,0 @@
1
- export * from './hlm-avatar-image';