@spartan-ng/cli 0.0.1-alpha.682 → 0.0.1-alpha.683

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.682",
3
+ "version": "0.0.1-alpha.683",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/spartan-ng/spartan"
@@ -16,7 +16,7 @@ export class HlmAlertDialogContent {
16
16
  constructor() {
17
17
  classes(
18
18
  () =>
19
- 'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 relative z-50 mx-auto grid w-full max-w-[calc(100%-2rem)] gap-4 rounded-lg border p-6 shadow-lg data-[state=closed]:duration-200 data-[state=open]:duration-200 sm:mx-0 sm:max-w-lg',
19
+ 'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 relative z-50 mx-auto grid w-[calc(100vw-2rem)] gap-4 rounded-lg border p-6 shadow-lg data-[state=closed]:duration-200 data-[state=open]:duration-200 sm:mx-0 sm:max-w-lg',
20
20
  );
21
21
  }
22
22
  }
@@ -46,7 +46,7 @@ export class HlmDialogContent {
46
46
 
47
47
  constructor() {
48
48
  classes(() => [
49
- 'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 relative z-50 mx-auto grid w-full max-w-[calc(100%-2rem)] gap-4 rounded-lg border p-6 shadow-lg data-[state=closed]:duration-200 data-[state=open]:duration-200 sm:mx-0 sm:max-w-lg',
49
+ 'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 relative z-50 mx-auto grid w-[calc(100vw-2rem)] gap-4 rounded-lg border p-6 shadow-lg data-[state=closed]:duration-200 data-[state=open]:duration-200 sm:mx-0 sm:max-w-lg',
50
50
  this._dynamicComponentClass,
51
51
  ]);
52
52
  }
@@ -3,12 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
3
3
 
4
4
  @Directive({
5
5
  selector: 'ul[hlmPaginationContent]',
6
- host: {
7
- 'data-slot': 'pagination-content',
8
- },
6
+ host: { 'data-slot': 'pagination-content' },
9
7
  })
10
8
  export class HlmPaginationContent {
11
9
  constructor() {
12
- classes(() => 'flex flex-row items-center gap-0.5');
10
+ classes(() => 'spartan-pagination-content flex items-center');
13
11
  }
14
12
  }
@@ -1,20 +1,16 @@
1
1
  import { ChangeDetectionStrategy, Component, input } from '@angular/core';
2
- import { provideIcons } from '@ng-icons/core';
2
+ import { NgIcon, provideIcons } from '@ng-icons/core';
3
3
  import { lucideEllipsis } from '@ng-icons/lucide';
4
- import { HlmIconImports } from '<%- importAlias %>/icon';
5
4
  import { classes } from '<%- importAlias %>/utils';
6
5
 
7
6
  @Component({
8
7
  selector: 'hlm-pagination-ellipsis',
9
- imports: [HlmIconImports],
8
+ imports: [NgIcon],
10
9
  providers: [provideIcons({ lucideEllipsis })],
11
10
  changeDetection: ChangeDetectionStrategy.OnPush,
12
- host: {
13
- 'data-slot': 'pagination-ellipsis',
14
- 'aria-hidden': 'true',
15
- },
11
+ host: { 'data-slot': 'pagination-ellipsis' },
16
12
  template: `
17
- <ng-icon hlm size="sm" name="lucideEllipsis" />
13
+ <ng-icon name="lucideEllipsis" />
18
14
  <span class="sr-only">{{ srOnlyText() }}</span>
19
15
  `,
20
16
  })
@@ -23,6 +19,6 @@ export class HlmPaginationEllipsis {
23
19
  public readonly srOnlyText = input<string>('More pages');
24
20
 
25
21
  constructor() {
26
- classes(() => 'flex size-9 items-center justify-center');
22
+ classes(() => 'spartan-pagination-ellipsis flex items-center justify-center');
27
23
  }
28
24
  }
@@ -1,14 +1,7 @@
1
1
  import { Directive } from '@angular/core';
2
- import { classes } from '<%- importAlias %>/utils';
3
2
 
4
3
  @Directive({
5
4
  selector: 'li[hlmPaginationItem]',
6
- host: {
7
- 'data-slot': 'pagination-item',
8
- },
5
+ host: { 'data-slot': 'pagination-item' },
9
6
  })
10
- export class HlmPaginationItem {
11
- constructor() {
12
- classes(() => '');
13
- }
14
- }
7
+ export class HlmPaginationItem {}
@@ -40,11 +40,12 @@ export class HlmPaginationLink {
40
40
 
41
41
  constructor() {
42
42
  classes(() => [
43
- this.link() === undefined ? 'cursor-pointer' : '',
43
+ 'spartan-pagination-link',
44
44
  buttonVariants({
45
45
  variant: this.isActive() ? 'outline' : 'ghost',
46
46
  size: this.size(),
47
47
  }),
48
+ this.link() === undefined && 'cursor-pointer',
48
49
  ]);
49
50
  }
50
51
  }
@@ -4,14 +4,13 @@ import type { RouterLink } from '@angular/router';
4
4
  import { NgIcon, provideIcons } from '@ng-icons/core';
5
5
  import { lucideChevronRight } from '@ng-icons/lucide';
6
6
  import type { ButtonVariants } from '<%- importAlias %>/button';
7
- import { HlmIcon } from '<%- importAlias %>/icon';
8
7
  import { hlm } from '<%- importAlias %>/utils';
9
8
  import type { ClassValue } from 'clsx';
10
9
  import { HlmPaginationLink } from './hlm-pagination-link';
11
10
 
12
11
  @Component({
13
12
  selector: 'hlm-pagination-next',
14
- imports: [HlmPaginationLink, NgIcon, HlmIcon],
13
+ imports: [HlmPaginationLink, NgIcon],
15
14
  providers: [provideIcons({ lucideChevronRight })],
16
15
  changeDetection: ChangeDetectionStrategy.OnPush,
17
16
  template: `
@@ -25,7 +24,7 @@ import { HlmPaginationLink } from './hlm-pagination-link';
25
24
  [attr.aria-label]="ariaLabel()"
26
25
  >
27
26
  <span [class]="_labelClass()">{{ text() }}</span>
28
- <ng-icon hlm size="sm" name="lucideChevronRight" />
27
+ <ng-icon name="lucideChevronRight" class="spartan-rtl-flip" />
29
28
  </a>
30
29
  `,
31
30
  })
@@ -51,6 +50,6 @@ export class HlmPaginationNext {
51
50
  protected readonly _size = computed<ButtonVariants['size']>(() => (this.iconOnly() ? 'icon' : 'default'));
52
51
 
53
52
  protected readonly _computedClass = computed(() =>
54
- hlm('gap-1 px-2.5', !this.iconOnly() ? 'pr-1.5! sm:pr-2.5' : '', this.userClass()),
53
+ hlm(!this.iconOnly() && 'spartan-pagination-next', this.userClass()),
55
54
  );
56
55
  }
@@ -4,14 +4,13 @@ import type { RouterLink } from '@angular/router';
4
4
  import { NgIcon, provideIcons } from '@ng-icons/core';
5
5
  import { lucideChevronLeft } from '@ng-icons/lucide';
6
6
  import type { ButtonVariants } from '<%- importAlias %>/button';
7
- import { HlmIcon } from '<%- importAlias %>/icon';
8
7
  import { hlm } from '<%- importAlias %>/utils';
9
8
  import type { ClassValue } from 'clsx';
10
9
  import { HlmPaginationLink } from './hlm-pagination-link';
11
10
 
12
11
  @Component({
13
12
  selector: 'hlm-pagination-previous',
14
- imports: [HlmPaginationLink, NgIcon, HlmIcon],
13
+ imports: [HlmPaginationLink, NgIcon],
15
14
  providers: [provideIcons({ lucideChevronLeft })],
16
15
  changeDetection: ChangeDetectionStrategy.OnPush,
17
16
  template: `
@@ -24,7 +23,7 @@ import { HlmPaginationLink } from './hlm-pagination-link';
24
23
  [size]="_size()"
25
24
  [attr.aria-label]="ariaLabel()"
26
25
  >
27
- <ng-icon hlm size="sm" name="lucideChevronLeft" />
26
+ <ng-icon name="lucideChevronLeft" class="spartan-rtl-flip" />
28
27
  <span [class]="_labelClass()">{{ text() }}</span>
29
28
  </a>
30
29
  `,
@@ -46,11 +45,13 @@ export class HlmPaginationPrevious {
46
45
  public readonly iconOnly = input<boolean, BooleanInput>(false, {
47
46
  transform: booleanAttribute,
48
47
  });
49
- protected readonly _labelClass = computed(() => (this.iconOnly() ? 'sr-only' : 'hidden sm:block'));
48
+ protected readonly _labelClass = computed(() =>
49
+ this.iconOnly() ? 'sr-only' : 'spartan-pagination-previous-text hidden sm:block',
50
+ );
50
51
 
51
52
  protected readonly _size = computed<ButtonVariants['size']>(() => (this.iconOnly() ? 'icon' : 'default'));
52
53
 
53
54
  protected readonly _computedClass = computed(() =>
54
- hlm('gap-1 px-2.5', !this.iconOnly() ? 'pl-1.5! sm:pl-2.5' : '', this.userClass()),
55
+ hlm(!this.iconOnly() && 'spartan-pagination-previous', this.userClass()),
55
56
  );
56
57
  }
@@ -14,6 +14,6 @@ export class HlmPagination {
14
14
  public readonly ariaLabel = input<string>('pagination', { alias: 'aria-label' });
15
15
 
16
16
  constructor() {
17
- classes(() => 'mx-auto flex w-full justify-center');
17
+ classes(() => 'spartan-pagination mx-auto flex w-full justify-center');
18
18
  }
19
19
  }
@@ -1,4 +1,8 @@
1
1
  .style-luma {
2
+ .spartan-rtl-flip {
3
+ @apply rtl:rotate-180;
4
+ }
5
+
2
6
  /* MARK: Accordion */
3
7
  .spartan-accordion {
4
8
  @apply overflow-hidden rounded-2xl border;
@@ -1,4 +1,8 @@
1
1
  .style-lyra {
2
+ .spartan-rtl-flip {
3
+ @apply rtl:rotate-180;
4
+ }
5
+
2
6
  /* MARK: Accordion */
3
7
  .spartan-accordion-item {
4
8
  @apply not-last:border-b;
@@ -1,4 +1,8 @@
1
1
  .style-maia {
2
+ .spartan-rtl-flip {
3
+ @apply rtl:rotate-180;
4
+ }
5
+
2
6
  /* MARK: Accordion */
3
7
  .spartan-accordion {
4
8
  @apply overflow-hidden rounded-2xl border;
@@ -1,4 +1,8 @@
1
1
  .style-mira {
2
+ .spartan-rtl-flip {
3
+ @apply rtl:rotate-180;
4
+ }
5
+
2
6
  /* MARK: Accordion */
3
7
  .spartan-accordion {
4
8
  @apply overflow-hidden rounded-md border;
@@ -1,4 +1,8 @@
1
1
  .style-nova {
2
+ .spartan-rtl-flip {
3
+ @apply rtl:rotate-180;
4
+ }
5
+
2
6
  /* MARK: Accordion */
3
7
  .spartan-accordion-item {
4
8
  @apply not-last:border-b;
@@ -1,4 +1,8 @@
1
1
  .style-vega :where(:not([class~='not-style-vega'], [class~='not-style-vega'] *)) {
2
+ &.spartan-rtl-flip {
3
+ @apply rtl:rotate-180;
4
+ }
5
+
2
6
  /* MARK: Accordion */
3
7
  &.spartan-accordion-item {
4
8
  @apply not-last:border-b;
@@ -871,11 +875,11 @@
871
875
  }
872
876
 
873
877
  &.spartan-pagination-previous {
874
- @apply pl-2!;
878
+ @apply ps-2!;
875
879
  }
876
880
 
877
881
  &.spartan-pagination-next {
878
- @apply pr-2!;
882
+ @apply pe-2!;
879
883
  }
880
884
 
881
885
  /* MARK: Popover */
@@ -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.682",
6
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
23
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
39
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682"
49
+ "@spartan-ng/brain": "0.0.1-alpha.683"
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.682",
73
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
82
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
94
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
122
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682"
130
+ "@spartan-ng/brain": "0.0.1-alpha.683"
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.682",
138
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
150
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
160
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
173
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
181
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682"
197
+ "@spartan-ng/brain": "0.0.1-alpha.683"
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.682",
211
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682"
221
+ "@spartan-ng/brain": "0.0.1-alpha.683"
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.682",
237
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682"
246
+ "@spartan-ng/brain": "0.0.1-alpha.683"
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.682"
256
+ "@spartan-ng/brain": "0.0.1-alpha.683"
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.682"
264
+ "@spartan-ng/brain": "0.0.1-alpha.683"
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.682"
277
+ "@spartan-ng/brain": "0.0.1-alpha.683"
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.682",
284
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682",
297
+ "@spartan-ng/brain": "0.0.1-alpha.683",
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.682"
305
+ "@spartan-ng/brain": "0.0.1-alpha.683"
306
306
  }
307
307
  },
308
308
  "pagination": {
@@ -321,14 +321,14 @@
321
321
  "name": "popover",
322
322
  "peerDependencies": {
323
323
  "@angular/core": ">=20.0.0 <22.0.0",
324
- "@spartan-ng/brain": "0.0.1-alpha.682"
324
+ "@spartan-ng/brain": "0.0.1-alpha.683"
325
325
  }
326
326
  },
327
327
  "progress": {
328
328
  "name": "progress",
329
329
  "peerDependencies": {
330
330
  "@angular/core": ">=20.0.0 <22.0.0",
331
- "@spartan-ng/brain": "0.0.1-alpha.682"
331
+ "@spartan-ng/brain": "0.0.1-alpha.683"
332
332
  }
333
333
  },
334
334
  "radio-group": {
@@ -336,7 +336,7 @@
336
336
  "peerDependencies": {
337
337
  "@angular/core": ">=20.0.0 <22.0.0",
338
338
  "@angular/forms": ">=20.0.0 <22.0.0",
339
- "@spartan-ng/brain": "0.0.1-alpha.682",
339
+ "@spartan-ng/brain": "0.0.1-alpha.683",
340
340
  "clsx": "^2.1.1",
341
341
  "@angular/cdk": ">=20.0.0 <22.0.0",
342
342
  "@angular/common": ">=20.0.0 <22.0.0"
@@ -346,7 +346,7 @@
346
346
  "name": "resizable",
347
347
  "peerDependencies": {
348
348
  "@angular/core": ">=20.0.0 <22.0.0",
349
- "@spartan-ng/brain": "0.0.1-alpha.682"
349
+ "@spartan-ng/brain": "0.0.1-alpha.683"
350
350
  }
351
351
  },
352
352
  "scroll-area": {
@@ -361,7 +361,7 @@
361
361
  "@angular/core": ">=20.0.0 <22.0.0",
362
362
  "@angular/forms": ">=20.0.0 <22.0.0",
363
363
  "@angular/cdk": ">=20.0.0 <22.0.0",
364
- "@spartan-ng/brain": "0.0.1-alpha.682",
364
+ "@spartan-ng/brain": "0.0.1-alpha.683",
365
365
  "@ng-icons/core": ">=32.0.0 <34.0.0",
366
366
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
367
367
  "clsx": "^2.1.1"
@@ -371,14 +371,14 @@
371
371
  "name": "separator",
372
372
  "peerDependencies": {
373
373
  "@angular/core": ">=20.0.0 <22.0.0",
374
- "@spartan-ng/brain": "0.0.1-alpha.682"
374
+ "@spartan-ng/brain": "0.0.1-alpha.683"
375
375
  }
376
376
  },
377
377
  "sheet": {
378
378
  "name": "sheet",
379
379
  "peerDependencies": {
380
380
  "@angular/core": ">=20.0.0 <22.0.0",
381
- "@spartan-ng/brain": "0.0.1-alpha.682",
381
+ "@spartan-ng/brain": "0.0.1-alpha.683",
382
382
  "@angular/cdk": ">=20.0.0 <22.0.0",
383
383
  "@ng-icons/core": ">=32.0.0 <34.0.0",
384
384
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -391,7 +391,7 @@
391
391
  "peerDependencies": {
392
392
  "@angular/core": ">=20.0.0 <22.0.0",
393
393
  "@angular/cdk": ">=20.0.0 <22.0.0",
394
- "@spartan-ng/brain": "0.0.1-alpha.682",
394
+ "@spartan-ng/brain": "0.0.1-alpha.683",
395
395
  "class-variance-authority": "^0.7.0",
396
396
  "@ng-icons/core": ">=32.0.0 <34.0.0",
397
397
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
@@ -410,7 +410,7 @@
410
410
  "peerDependencies": {
411
411
  "@angular/core": ">=20.0.0 <22.0.0",
412
412
  "@angular/forms": ">=20.0.0 <22.0.0",
413
- "@spartan-ng/brain": "0.0.1-alpha.682"
413
+ "@spartan-ng/brain": "0.0.1-alpha.683"
414
414
  }
415
415
  },
416
416
  "sonner": {
@@ -420,7 +420,7 @@
420
420
  "@angular/core": ">=20.0.0 <22.0.0",
421
421
  "@ng-icons/core": ">=32.0.0 <34.0.0",
422
422
  "@ng-icons/lucide": ">=32.0.0 <34.0.0",
423
- "@spartan-ng/brain": "0.0.1-alpha.682",
423
+ "@spartan-ng/brain": "0.0.1-alpha.683",
424
424
  "clsx": "^2.1.1"
425
425
  }
426
426
  },
@@ -438,7 +438,7 @@
438
438
  "@angular/core": ">=20.0.0 <22.0.0",
439
439
  "@angular/cdk": ">=20.0.0 <22.0.0",
440
440
  "@angular/forms": ">=20.0.0 <22.0.0",
441
- "@spartan-ng/brain": "0.0.1-alpha.682",
441
+ "@spartan-ng/brain": "0.0.1-alpha.683",
442
442
  "clsx": "^2.1.1"
443
443
  }
444
444
  },
@@ -452,7 +452,7 @@
452
452
  "name": "tabs",
453
453
  "peerDependencies": {
454
454
  "@angular/core": ">=20.0.0 <22.0.0",
455
- "@spartan-ng/brain": "0.0.1-alpha.682",
455
+ "@spartan-ng/brain": "0.0.1-alpha.683",
456
456
  "class-variance-authority": "^0.7.0",
457
457
  "@angular/cdk": ">=20.0.0 <22.0.0",
458
458
  "@ng-icons/core": ">=32.0.0 <34.0.0",
@@ -466,7 +466,7 @@
466
466
  "peerDependencies": {
467
467
  "@angular/core": ">=20.0.0 <22.0.0",
468
468
  "@angular/forms": ">=20.0.0 <22.0.0",
469
- "@spartan-ng/brain": "0.0.1-alpha.682",
469
+ "@spartan-ng/brain": "0.0.1-alpha.683",
470
470
  "class-variance-authority": "^0.7.0"
471
471
  }
472
472
  },
@@ -474,7 +474,7 @@
474
474
  "name": "toggle",
475
475
  "peerDependencies": {
476
476
  "@angular/core": ">=20.0.0 <22.0.0",
477
- "@spartan-ng/brain": "0.0.1-alpha.682",
477
+ "@spartan-ng/brain": "0.0.1-alpha.683",
478
478
  "class-variance-authority": "^0.7.0"
479
479
  }
480
480
  },
@@ -482,7 +482,7 @@
482
482
  "name": "toggle-group",
483
483
  "peerDependencies": {
484
484
  "@angular/core": ">=20.0.0 <22.0.0",
485
- "@spartan-ng/brain": "0.0.1-alpha.682",
485
+ "@spartan-ng/brain": "0.0.1-alpha.683",
486
486
  "@angular/cdk": ">=20.0.0 <22.0.0"
487
487
  }
488
488
  },
@@ -490,7 +490,7 @@
490
490
  "name": "tooltip",
491
491
  "peerDependencies": {
492
492
  "@angular/core": ">=20.0.0 <22.0.0",
493
- "@spartan-ng/brain": "0.0.1-alpha.682",
493
+ "@spartan-ng/brain": "0.0.1-alpha.683",
494
494
  "class-variance-authority": "^0.7.0"
495
495
  }
496
496
  },