@spartan-ng/cli 0.0.1-alpha.487 → 0.0.1-alpha.489

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.
Files changed (19) hide show
  1. package/package.json +1 -1
  2. package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-item.component.ts.template +1 -1
  3. package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-list.component.ts.template +1 -1
  4. package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-search-input.component.ts.template +2 -1
  5. package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-search.component.ts.template +2 -1
  6. package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command.component.ts.template +2 -1
  7. package/src/generators/ui/libs/ui-label-helm/files/lib/hlm-label.directive.ts.template +1 -1
  8. package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-content.directive.ts.template +1 -1
  9. package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-ellipsis.component.ts.template +5 -3
  10. package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-item.directive.ts.template +1 -1
  11. package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-link.directive.ts.template +1 -1
  12. package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-next.component.ts.template +2 -2
  13. package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-previous.component.ts.template +2 -2
  14. package/src/generators/ui/libs/ui-radio-group-helm/files/lib/hlm-radio.component.ts.template +14 -1
  15. package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-content.directive.ts.template +5 -2
  16. package/src/generators/ui/libs/ui-skeleton-helm/files/index.ts.template +4 -2
  17. package/src/generators/ui/libs/ui-spinner-helm/files/index.ts.template +4 -2
  18. package/src/generators/ui/libs/ui-spinner-helm/files/lib/hlm-spinner.component.ts.template +11 -25
  19. package/src/generators/ui/supported-ui-libraries.json +41 -41
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spartan-ng/cli",
3
- "version": "0.0.1-alpha.487",
3
+ "version": "0.0.1-alpha.489",
4
4
  "type": "commonjs",
5
5
  "dependencies": {
6
6
  "@nx/angular": ">=20.0.0",
@@ -38,7 +38,7 @@ export class HlmCommandItemComponent {
38
38
  /*** The styles to apply */
39
39
  protected readonly _computedClass = computed(() =>
40
40
  hlm(
41
- 'data-[selected]:bg-accent data-[selected=true]:text-accent-foreground [&>ng-icon]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>ng-icon]:pointer-events-none [&>ng-icon]:shrink-0 [&>ng-icon]:text-base w-full',
41
+ 'data-[selected]:bg-accent data-[selected=true]:text-accent-foreground [&>ng-icon]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>ng-icon]:pointer-events-none [&>ng-icon]:shrink-0 [&>ng-icon]:text-base w-full data-[hidden]:hidden',
42
42
  this.userClass(),
43
43
  ),
44
44
  );
@@ -22,6 +22,6 @@ export class HlmCommandListComponent {
22
22
 
23
23
  /** The styles to apply */
24
24
  protected readonly _computedClass = computed(() =>
25
- hlm('flex flex-col max-h-[300px] scroll-py-1 overflow-x-hidden overflow-y-auto', this.userClass()),
25
+ hlm('max-h-[300px] overflow-x-hidden overflow-y-auto', this.userClass()),
26
26
  );
27
27
  }
@@ -1,6 +1,7 @@
1
1
  import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
2
2
  import { BrnCommandSearchInputDirective } from '@spartan-ng/brain/command';
3
3
  import { hlm } from '@spartan-ng/brain/core';
4
+ import type { ClassValue } from 'clsx';
4
5
 
5
6
  @Component({
6
7
  selector: 'input[hlm-command-search-input]',
@@ -13,7 +14,7 @@ import { hlm } from '@spartan-ng/brain/core';
13
14
  })
14
15
  export class HlmCommandSearchInputComponent {
15
16
  /*** The user defined class */
16
- public readonly userClass = input<string>('', { alias: 'class' });
17
+ public readonly userClass = input<ClassValue>('', { alias: 'class' });
17
18
 
18
19
  /*** The styles to apply */
19
20
  protected readonly _computedClass = computed(() =>
@@ -1,6 +1,7 @@
1
1
  import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
2
2
  import { hlm } from '@spartan-ng/brain/core';
3
3
  import { provideHlmIconConfig } from '@spartan-ng/helm/icon';
4
+ import type { ClassValue } from 'clsx';
4
5
 
5
6
  @Component({
6
7
  selector: 'hlm-command-search',
@@ -15,7 +16,7 @@ import { provideHlmIconConfig } from '@spartan-ng/helm/icon';
15
16
  })
16
17
  export class HlmCommandSearchComponent {
17
18
  /*** The user defined class */
18
- public readonly userClass = input<string>('', { alias: 'class' });
19
+ public readonly userClass = input<ClassValue>('', { alias: 'class' });
19
20
 
20
21
  /*** The styles to apply */
21
22
  protected readonly _computedClass = computed(() =>
@@ -1,6 +1,7 @@
1
1
  import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
2
2
  import { BrnCommandDirective } from '@spartan-ng/brain/command';
3
3
  import { hlm } from '@spartan-ng/brain/core';
4
+ import type { ClassValue } from 'clsx';
4
5
 
5
6
  @Component({
6
7
  selector: 'hlm-command',
@@ -21,7 +22,7 @@ import { hlm } from '@spartan-ng/brain/core';
21
22
  })
22
23
  export class HlmCommandComponent {
23
24
  /*** The user defined class */
24
- public readonly userClass = input<string>('', { alias: 'class' });
25
+ public readonly userClass = input<ClassValue>('', { alias: 'class' });
25
26
 
26
27
  /*** The styles to apply */
27
28
  protected readonly _computedClass = computed(() =>
@@ -20,7 +20,7 @@ export class HlmLabelDirective {
20
20
 
21
21
  protected readonly _computedClass = computed(() =>
22
22
  hlm(
23
- 'flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50 peer-data-[disabled]:cursor-not-allowed peer-data-[disabled]:opacity-50',
23
+ 'flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50 peer-data-[disabled]:cursor-not-allowed peer-data-[disabled]:opacity-50 has-[[disabled]]:cursor-not-allowed has-[[disabled]]:opacity-50',
24
24
  this.userClass(),
25
25
  ),
26
26
  );
@@ -1,7 +1,7 @@
1
1
  import { Directive, computed, input } from '@angular/core';
2
2
  import { hlm } from '@spartan-ng/brain/core';
3
3
  import { type VariantProps, cva } from 'class-variance-authority';
4
- import { ClassValue } from 'clsx';
4
+ import type { ClassValue } from 'clsx';
5
5
 
6
6
  export const paginationContentVariants = cva('flex flex-row items-center gap-1', {
7
7
  variants: {},
@@ -3,7 +3,7 @@ import { NgIcon, provideIcons } from '@ng-icons/core';
3
3
  import { lucideEllipsis } from '@ng-icons/lucide';
4
4
  import { hlm } from '@spartan-ng/brain/core';
5
5
  import { HlmIconDirective } from '@spartan-ng/helm/icon';
6
- import { ClassValue } from 'clsx';
6
+ import type { ClassValue } from 'clsx';
7
7
 
8
8
  @Component({
9
9
  selector: 'hlm-pagination-ellipsis',
@@ -12,13 +12,15 @@ import { ClassValue } from 'clsx';
12
12
  template: `
13
13
  <span [class]="_computedClass()">
14
14
  <ng-icon hlm size="sm" name="lucideEllipsis" />
15
- <span class="sr-only">More pages</span>
15
+ <span class="sr-only">{{ srOnlyText() }}</span>
16
16
  </span>
17
17
  `,
18
18
  changeDetection: ChangeDetectionStrategy.OnPush,
19
19
  })
20
20
  export class HlmPaginationEllipsisComponent {
21
21
  public readonly userClass = input<ClassValue>('', { alias: 'class' });
22
+ /** Screen reader only text for the ellipsis */
23
+ public readonly srOnlyText = input<string>('More pages');
22
24
 
23
- protected readonly _computedClass = computed(() => hlm('flex h-9 w-9 items-center justify-center', this.userClass()));
25
+ protected readonly _computedClass = computed(() => hlm('flex size-9 items-center justify-center', this.userClass()));
24
26
  }
@@ -1,7 +1,7 @@
1
1
  import { Directive, computed, input } from '@angular/core';
2
2
  import { hlm } from '@spartan-ng/brain/core';
3
3
  import { type VariantProps, cva } from 'class-variance-authority';
4
- import { ClassValue } from 'clsx';
4
+ import type { ClassValue } from 'clsx';
5
5
 
6
6
  export const paginationItemVariants = cva('', {
7
7
  variants: {},
@@ -4,7 +4,7 @@ import { RouterLink } from '@angular/router';
4
4
  import { hlm } from '@spartan-ng/brain/core';
5
5
  import { type ButtonVariants, buttonVariants } from '@spartan-ng/helm/button';
6
6
  import { type VariantProps, cva } from 'class-variance-authority';
7
- import { ClassValue } from 'clsx';
7
+ import type { ClassValue } from 'clsx';
8
8
 
9
9
  export const paginationLinkVariants = cva('', {
10
10
  variants: {},
@@ -4,9 +4,9 @@ import { RouterLink } from '@angular/router';
4
4
  import { NgIcon, provideIcons } from '@ng-icons/core';
5
5
  import { lucideChevronRight } from '@ng-icons/lucide';
6
6
  import { hlm } from '@spartan-ng/brain/core';
7
- import { ButtonVariants } from '@spartan-ng/helm/button';
7
+ import type { ButtonVariants } from '@spartan-ng/helm/button';
8
8
  import { HlmIconDirective } from '@spartan-ng/helm/icon';
9
- import { ClassValue } from 'clsx';
9
+ import type { ClassValue } from 'clsx';
10
10
  import { HlmPaginationLinkDirective } from './hlm-pagination-link.directive';
11
11
 
12
12
  @Component({
@@ -4,9 +4,9 @@ import { RouterLink } from '@angular/router';
4
4
  import { NgIcon, provideIcons } from '@ng-icons/core';
5
5
  import { lucideChevronLeft } from '@ng-icons/lucide';
6
6
  import { hlm } from '@spartan-ng/brain/core';
7
- import { ButtonVariants } from '@spartan-ng/helm/button';
7
+ import type { ButtonVariants } from '@spartan-ng/helm/button';
8
8
  import { HlmIconDirective } from '@spartan-ng/helm/icon';
9
- import { ClassValue } from 'clsx';
9
+ import type { ClassValue } from 'clsx';
10
10
  import { HlmPaginationLinkDirective } from './hlm-pagination-link.directive';
11
11
 
12
12
  @Component({
@@ -37,6 +37,13 @@ import { ClassValue } from 'clsx';
37
37
  </brn-radio>
38
38
  `,
39
39
  changeDetection: ChangeDetectionStrategy.OnPush,
40
+ host: {
41
+ '[attr.id]': 'null',
42
+ '[attr.aria-label]': 'null',
43
+ '[attr.aria-labelledby]': 'null',
44
+ '[attr.aria-describedby]': 'null',
45
+ '[attr.data-disabled]': 'state().disabled() ? "" : null',
46
+ },
40
47
  })
41
48
  export class HlmRadioComponent<T = unknown> {
42
49
  private readonly _document = inject(DOCUMENT);
@@ -45,7 +52,13 @@ export class HlmRadioComponent<T = unknown> {
45
52
  private readonly _isBrowser = isPlatformBrowser(inject(PLATFORM_ID));
46
53
 
47
54
  public readonly userClass = input<ClassValue>('', { alias: 'class' });
48
- protected readonly _computedClass = computed(() => hlm('group flex items-center gap-x-3', this.userClass()));
55
+ protected readonly _computedClass = computed(() =>
56
+ hlm(
57
+ 'group flex items-center gap-x-3',
58
+ this.userClass(),
59
+ this.state().disabled() ? 'cursor-not-allowed opacity-50' : '',
60
+ ),
61
+ );
49
62
 
50
63
  /** Used to set the id on the underlying brn element. */
51
64
  public readonly id = input<string | undefined>(undefined);
@@ -1,4 +1,5 @@
1
- import { Directive, computed, input } from '@angular/core';
1
+ import { BooleanInput } from '@angular/cdk/coercion';
2
+ import { Directive, booleanAttribute, computed, input } from '@angular/core';
2
3
  import { hlm, injectExposedSideProvider, injectExposesStateProvider } from '@spartan-ng/brain/core';
3
4
  import type { ClassValue } from 'clsx';
4
5
 
@@ -12,7 +13,9 @@ import type { ClassValue } from 'clsx';
12
13
  })
13
14
  export class HlmSelectContentDirective {
14
15
  public readonly userClass = input<ClassValue>('', { alias: 'class' });
15
- public readonly stickyLabels = input<boolean>(false);
16
+ public readonly stickyLabels = input<boolean, BooleanInput>(false, {
17
+ transform: booleanAttribute,
18
+ });
16
19
  protected readonly _stateProvider = injectExposesStateProvider({ optional: true });
17
20
  protected readonly _sideProvider = injectExposedSideProvider({ optional: true });
18
21
 
@@ -3,8 +3,10 @@ import { HlmSkeletonComponent } from './lib/hlm-skeleton.component';
3
3
 
4
4
  export * from './lib/hlm-skeleton.component';
5
5
 
6
+ export const HlmSkeletonImports = [HlmSkeletonComponent] as const;
7
+
6
8
  @NgModule({
7
- imports: [HlmSkeletonComponent],
8
- exports: [HlmSkeletonComponent],
9
+ imports: [...HlmSkeletonImports],
10
+ exports: [...HlmSkeletonImports],
9
11
  })
10
12
  export class HlmSkeletonModule {}
@@ -3,8 +3,10 @@ import { HlmSpinnerComponent } from './lib/hlm-spinner.component';
3
3
 
4
4
  export * from './lib/hlm-spinner.component';
5
5
 
6
+ export const HlmSpinnerImports = [HlmSpinnerComponent] as const;
7
+
6
8
  @NgModule({
7
- imports: [HlmSpinnerComponent],
8
- exports: [HlmSpinnerComponent],
9
+ imports: [...HlmSpinnerImports],
10
+ exports: [...HlmSpinnerImports],
9
11
  })
10
12
  export class HlmSpinnerModule {}
@@ -1,28 +1,7 @@
1
1
  import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
2
2
  import { hlm } from '@spartan-ng/brain/core';
3
- import { type VariantProps, cva } from 'class-variance-authority';
4
3
  import type { ClassValue } from 'clsx';
5
4
 
6
- export const spinnerVariants = cva('inline-block', {
7
- variants: {
8
- variant: {
9
- default: 'animate-spin [&>svg]:text-foreground/30 [&>svg]:fill-accent',
10
- },
11
- size: {
12
- xs: 'h-4 w-4',
13
- sm: 'h-6 w-6',
14
- default: 'w-8 h-8 ',
15
- lg: 'w-12 h-12',
16
- xl: 'w-16 h-16',
17
- },
18
- },
19
- defaultVariants: {
20
- variant: 'default',
21
- size: 'default',
22
- },
23
- });
24
- export type SpinnerVariants = VariantProps<typeof spinnerVariants>;
25
-
26
5
  @Component({
27
6
  selector: 'hlm-spinner',
28
7
  host: {
@@ -30,7 +9,13 @@ export type SpinnerVariants = VariantProps<typeof spinnerVariants>;
30
9
  role: 'status',
31
10
  },
32
11
  template: `
33
- <svg aria-hidden="true" class="animate-spin" viewBox="0 0 100 101" fill="none" xmlns="http://www.w3.org/2000/svg">
12
+ <svg
13
+ aria-hidden="true"
14
+ class="motion-safe:animate-spin"
15
+ viewBox="0 0 100 101"
16
+ fill="none"
17
+ xmlns="http://www.w3.org/2000/svg"
18
+ >
34
19
  <path
35
20
  d="M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z"
36
21
  fill="currentColor"
@@ -45,7 +30,8 @@ export type SpinnerVariants = VariantProps<typeof spinnerVariants>;
45
30
  changeDetection: ChangeDetectionStrategy.OnPush,
46
31
  })
47
32
  export class HlmSpinnerComponent {
48
- public readonly size = input<SpinnerVariants['size']>('default');
49
- public readonly userClass = input<ClassValue>('', { alias: 'class' });
50
- protected _computedClass = computed(() => hlm(spinnerVariants({ size: this.size() }), this.userClass()));
33
+ public readonly userClass = input<ClassValue>('size-8', { alias: 'class' });
34
+ protected _computedClass = computed(() =>
35
+ hlm('inline-block [&>svg]:text-foreground/30 [&>svg]:fill-accent', this.userClass()),
36
+ );
51
37
  }
@@ -3,7 +3,7 @@
3
3
  "internalName": "ui-accordion-helm",
4
4
  "peerDependencies": {
5
5
  "@angular/core": ">=19.0.0",
6
- "@spartan-ng/brain": "0.0.1-alpha.487",
6
+ "@spartan-ng/brain": "0.0.1-alpha.489",
7
7
  "clsx": "^2.1.1",
8
8
  "@ng-icons/core": ">=29.0.0",
9
9
  "@ng-icons/lucide": ">=29.0.0"
@@ -13,7 +13,7 @@
13
13
  "internalName": "ui-alert-helm",
14
14
  "peerDependencies": {
15
15
  "@angular/core": ">=19.0.0",
16
- "@spartan-ng/brain": "0.0.1-alpha.487",
16
+ "@spartan-ng/brain": "0.0.1-alpha.489",
17
17
  "clsx": "^2.1.1",
18
18
  "class-variance-authority": "^0.7.0"
19
19
  }
@@ -22,7 +22,7 @@
22
22
  "internalName": "ui-alert-dialog-helm",
23
23
  "peerDependencies": {
24
24
  "@angular/core": ">=19.0.0",
25
- "@spartan-ng/brain": "0.0.1-alpha.487",
25
+ "@spartan-ng/brain": "0.0.1-alpha.489",
26
26
  "clsx": "^2.1.1"
27
27
  }
28
28
  },
@@ -31,7 +31,7 @@
31
31
  "peerDependencies": {
32
32
  "@angular/core": ">=19.0.0",
33
33
  "@angular/cdk": ">=19.0.0",
34
- "@spartan-ng/brain": "0.0.1-alpha.487",
34
+ "@spartan-ng/brain": "0.0.1-alpha.489",
35
35
  "clsx": "^2.1.1"
36
36
  }
37
37
  },
@@ -39,7 +39,7 @@
39
39
  "internalName": "ui-avatar-helm",
40
40
  "peerDependencies": {
41
41
  "@angular/core": ">=19.0.0",
42
- "@spartan-ng/brain": "0.0.1-alpha.487",
42
+ "@spartan-ng/brain": "0.0.1-alpha.489",
43
43
  "clsx": "^2.1.1"
44
44
  }
45
45
  },
@@ -47,7 +47,7 @@
47
47
  "internalName": "ui-badge-helm",
48
48
  "peerDependencies": {
49
49
  "@angular/core": ">=19.0.0",
50
- "@spartan-ng/brain": "0.0.1-alpha.487",
50
+ "@spartan-ng/brain": "0.0.1-alpha.489",
51
51
  "class-variance-authority": "^0.7.0",
52
52
  "clsx": "^2.1.1"
53
53
  }
@@ -58,7 +58,7 @@
58
58
  "@angular/core": ">=19.0.0",
59
59
  "@ng-icons/core": ">=29.0.0",
60
60
  "@ng-icons/lucide": ">=29.0.0",
61
- "@spartan-ng/brain": "0.0.1-alpha.487",
61
+ "@spartan-ng/brain": "0.0.1-alpha.489",
62
62
  "clsx": "^2.1.1",
63
63
  "@angular/router": ">=19.0.0"
64
64
  }
@@ -67,7 +67,7 @@
67
67
  "internalName": "ui-button-helm",
68
68
  "peerDependencies": {
69
69
  "@angular/core": ">=19.0.0",
70
- "@spartan-ng/brain": "0.0.1-alpha.487",
70
+ "@spartan-ng/brain": "0.0.1-alpha.489",
71
71
  "class-variance-authority": "^0.7.0",
72
72
  "clsx": "^2.1.1"
73
73
  }
@@ -79,7 +79,7 @@
79
79
  "@angular/cdk": ">=19.0.0",
80
80
  "@ng-icons/core": ">=29.0.0",
81
81
  "@ng-icons/lucide": ">=29.0.0",
82
- "@spartan-ng/brain": "0.0.1-alpha.487",
82
+ "@spartan-ng/brain": "0.0.1-alpha.489",
83
83
  "clsx": "^2.1.1"
84
84
  }
85
85
  },
@@ -87,7 +87,7 @@
87
87
  "internalName": "ui-card-helm",
88
88
  "peerDependencies": {
89
89
  "@angular/core": ">=19.0.0",
90
- "@spartan-ng/brain": "0.0.1-alpha.487",
90
+ "@spartan-ng/brain": "0.0.1-alpha.489",
91
91
  "clsx": "^2.1.1",
92
92
  "class-variance-authority": "^0.7.0"
93
93
  }
@@ -96,7 +96,7 @@
96
96
  "internalName": "ui-carousel-helm",
97
97
  "peerDependencies": {
98
98
  "@angular/core": ">=19.0.0",
99
- "@spartan-ng/brain": "0.0.1-alpha.487",
99
+ "@spartan-ng/brain": "0.0.1-alpha.489",
100
100
  "clsx": "^2.1.1",
101
101
  "@ng-icons/core": ">=29.0.0",
102
102
  "@ng-icons/lucide": ">=29.0.0",
@@ -111,7 +111,7 @@
111
111
  "@angular/forms": ">=19.0.0",
112
112
  "@ng-icons/core": ">=29.0.0",
113
113
  "@ng-icons/lucide": ">=29.0.0",
114
- "@spartan-ng/brain": "0.0.1-alpha.487",
114
+ "@spartan-ng/brain": "0.0.1-alpha.489",
115
115
  "clsx": "^2.1.1"
116
116
  }
117
117
  },
@@ -119,7 +119,7 @@
119
119
  "internalName": "ui-command-helm",
120
120
  "peerDependencies": {
121
121
  "@angular/core": ">=19.0.0",
122
- "@spartan-ng/brain": "0.0.1-alpha.487",
122
+ "@spartan-ng/brain": "0.0.1-alpha.489",
123
123
  "clsx": "^2.1.1",
124
124
  "@angular/cdk": ">=19.0.0"
125
125
  }
@@ -132,7 +132,7 @@
132
132
  "@angular/forms": ">=19.0.0",
133
133
  "@ng-icons/core": ">=29.0.0",
134
134
  "@ng-icons/lucide": ">=29.0.0",
135
- "@spartan-ng/brain": "0.0.1-alpha.487",
135
+ "@spartan-ng/brain": "0.0.1-alpha.489",
136
136
  "clsx": "^2.1.1"
137
137
  }
138
138
  },
@@ -140,7 +140,7 @@
140
140
  "internalName": "ui-dialog-helm",
141
141
  "peerDependencies": {
142
142
  "@angular/core": ">=19.0.0",
143
- "@spartan-ng/brain": "0.0.1-alpha.487",
143
+ "@spartan-ng/brain": "0.0.1-alpha.489",
144
144
  "clsx": "^2.1.1",
145
145
  "@angular/common": ">=19.0.0",
146
146
  "@ng-icons/core": ">=29.0.0",
@@ -153,7 +153,7 @@
153
153
  "peerDependencies": {
154
154
  "@angular/core": ">=19.0.0",
155
155
  "@angular/forms": ">=19.0.0",
156
- "@spartan-ng/brain": "0.0.1-alpha.487",
156
+ "@spartan-ng/brain": "0.0.1-alpha.489",
157
157
  "clsx": "^2.1.1"
158
158
  }
159
159
  },
@@ -161,7 +161,7 @@
161
161
  "internalName": "ui-hover-card-helm",
162
162
  "peerDependencies": {
163
163
  "@angular/core": ">=19.0.0",
164
- "@spartan-ng/brain": "0.0.1-alpha.487",
164
+ "@spartan-ng/brain": "0.0.1-alpha.489",
165
165
  "clsx": "^2.1.1"
166
166
  }
167
167
  },
@@ -177,7 +177,7 @@
177
177
  "internalName": "ui-input-helm",
178
178
  "peerDependencies": {
179
179
  "@angular/core": ">=19.0.0",
180
- "@spartan-ng/brain": "0.0.1-alpha.487",
180
+ "@spartan-ng/brain": "0.0.1-alpha.489",
181
181
  "class-variance-authority": "^0.7.0",
182
182
  "clsx": "^2.1.1",
183
183
  "@angular/forms": ">=19.0.0"
@@ -187,7 +187,7 @@
187
187
  "internalName": "ui-input-otp-helm",
188
188
  "peerDependencies": {
189
189
  "@angular/core": ">=19.0.0",
190
- "@spartan-ng/brain": "0.0.1-alpha.487",
190
+ "@spartan-ng/brain": "0.0.1-alpha.489",
191
191
  "clsx": "^2.1.1",
192
192
  "@ng-icons/core": ">=29.0.0",
193
193
  "@ng-icons/lucide": ">=29.0.0",
@@ -198,7 +198,7 @@
198
198
  "internalName": "ui-label-helm",
199
199
  "peerDependencies": {
200
200
  "@angular/core": ">=19.0.0",
201
- "@spartan-ng/brain": "0.0.1-alpha.487",
201
+ "@spartan-ng/brain": "0.0.1-alpha.489",
202
202
  "clsx": "^2.1.1"
203
203
  }
204
204
  },
@@ -206,7 +206,7 @@
206
206
  "internalName": "ui-menu-helm",
207
207
  "peerDependencies": {
208
208
  "@angular/core": ">=19.0.0",
209
- "@spartan-ng/brain": "0.0.1-alpha.487",
209
+ "@spartan-ng/brain": "0.0.1-alpha.489",
210
210
  "clsx": "^2.1.1",
211
211
  "@ng-icons/core": ">=29.0.0",
212
212
  "@ng-icons/lucide": ">=29.0.0",
@@ -220,7 +220,7 @@
220
220
  "@angular/core": ">=19.0.0",
221
221
  "@angular/cdk": ">=19.0.0",
222
222
  "@angular/forms": ">=19.0.0",
223
- "@spartan-ng/brain": "0.0.1-alpha.487",
223
+ "@spartan-ng/brain": "0.0.1-alpha.489",
224
224
  "class-variance-authority": "^0.7.0",
225
225
  "clsx": "^2.1.1",
226
226
  "@ng-icons/core": ">=29.0.0",
@@ -232,7 +232,7 @@
232
232
  "internalName": "ui-popover-helm",
233
233
  "peerDependencies": {
234
234
  "@angular/core": ">=19.0.0",
235
- "@spartan-ng/brain": "0.0.1-alpha.487",
235
+ "@spartan-ng/brain": "0.0.1-alpha.489",
236
236
  "clsx": "^2.1.1"
237
237
  }
238
238
  },
@@ -240,7 +240,7 @@
240
240
  "internalName": "ui-progress-helm",
241
241
  "peerDependencies": {
242
242
  "@angular/core": ">=19.0.0",
243
- "@spartan-ng/brain": "0.0.1-alpha.487",
243
+ "@spartan-ng/brain": "0.0.1-alpha.489",
244
244
  "clsx": "^2.1.1"
245
245
  }
246
246
  },
@@ -248,7 +248,7 @@
248
248
  "internalName": "ui-radio-group-helm",
249
249
  "peerDependencies": {
250
250
  "@angular/core": ">=19.0.0",
251
- "@spartan-ng/brain": "0.0.1-alpha.487",
251
+ "@spartan-ng/brain": "0.0.1-alpha.489",
252
252
  "clsx": "^2.1.1",
253
253
  "@angular/common": ">=19.0.0"
254
254
  }
@@ -257,7 +257,7 @@
257
257
  "internalName": "ui-scroll-area-helm",
258
258
  "peerDependencies": {
259
259
  "@angular/core": ">=19.0.0",
260
- "@spartan-ng/brain": "0.0.1-alpha.487",
260
+ "@spartan-ng/brain": "0.0.1-alpha.489",
261
261
  "clsx": "^2.1.1"
262
262
  }
263
263
  },
@@ -265,7 +265,8 @@
265
265
  "internalName": "ui-select-helm",
266
266
  "peerDependencies": {
267
267
  "@angular/core": ">=19.0.0",
268
- "@spartan-ng/brain": "0.0.1-alpha.487",
268
+ "@angular/cdk": ">=19.0.0",
269
+ "@spartan-ng/brain": "0.0.1-alpha.489",
269
270
  "clsx": "^2.1.1",
270
271
  "@ng-icons/core": ">=29.0.0",
271
272
  "@ng-icons/lucide": ">=29.0.0",
@@ -276,7 +277,7 @@
276
277
  "internalName": "ui-separator-helm",
277
278
  "peerDependencies": {
278
279
  "@angular/core": ">=19.0.0",
279
- "@spartan-ng/brain": "0.0.1-alpha.487",
280
+ "@spartan-ng/brain": "0.0.1-alpha.489",
280
281
  "clsx": "^2.1.1"
281
282
  }
282
283
  },
@@ -284,7 +285,7 @@
284
285
  "internalName": "ui-sheet-helm",
285
286
  "peerDependencies": {
286
287
  "@angular/core": ">=19.0.0",
287
- "@spartan-ng/brain": "0.0.1-alpha.487",
288
+ "@spartan-ng/brain": "0.0.1-alpha.489",
288
289
  "clsx": "^2.1.1",
289
290
  "@ng-icons/core": ">=29.0.0",
290
291
  "@ng-icons/lucide": ">=29.0.0",
@@ -295,7 +296,7 @@
295
296
  "internalName": "ui-skeleton-helm",
296
297
  "peerDependencies": {
297
298
  "@angular/core": ">=19.0.0",
298
- "@spartan-ng/brain": "0.0.1-alpha.487",
299
+ "@spartan-ng/brain": "0.0.1-alpha.489",
299
300
  "clsx": "^2.1.1"
300
301
  }
301
302
  },
@@ -303,7 +304,7 @@
303
304
  "internalName": "ui-slider-helm",
304
305
  "peerDependencies": {
305
306
  "@angular/core": ">=19.0.0",
306
- "@spartan-ng/brain": "0.0.1-alpha.487",
307
+ "@spartan-ng/brain": "0.0.1-alpha.489",
307
308
  "clsx": "^2.1.1"
308
309
  }
309
310
  },
@@ -311,7 +312,7 @@
311
312
  "internalName": "ui-sonner-helm",
312
313
  "peerDependencies": {
313
314
  "@angular/core": ">=19.0.0",
314
- "@spartan-ng/brain": "0.0.1-alpha.487",
315
+ "@spartan-ng/brain": "0.0.1-alpha.489",
315
316
  "clsx": "^2.1.1",
316
317
  "ngx-sonner": ">=3.0.0"
317
318
  }
@@ -320,8 +321,7 @@
320
321
  "internalName": "ui-spinner-helm",
321
322
  "peerDependencies": {
322
323
  "@angular/core": ">=19.0.0",
323
- "@spartan-ng/brain": "0.0.1-alpha.487",
324
- "class-variance-authority": "^0.7.0",
324
+ "@spartan-ng/brain": "0.0.1-alpha.489",
325
325
  "clsx": "^2.1.1"
326
326
  }
327
327
  },
@@ -329,7 +329,7 @@
329
329
  "internalName": "ui-switch-helm",
330
330
  "peerDependencies": {
331
331
  "@angular/core": ">=19.0.0",
332
- "@spartan-ng/brain": "0.0.1-alpha.487",
332
+ "@spartan-ng/brain": "0.0.1-alpha.489",
333
333
  "clsx": "^2.1.1",
334
334
  "@angular/cdk": ">=19.0.0",
335
335
  "@angular/forms": ">=19.0.0"
@@ -339,7 +339,7 @@
339
339
  "internalName": "ui-table-helm",
340
340
  "peerDependencies": {
341
341
  "@angular/core": ">=19.0.0",
342
- "@spartan-ng/brain": "0.0.1-alpha.487",
342
+ "@spartan-ng/brain": "0.0.1-alpha.489",
343
343
  "clsx": "^2.1.1"
344
344
  }
345
345
  },
@@ -347,7 +347,7 @@
347
347
  "internalName": "ui-tabs-helm",
348
348
  "peerDependencies": {
349
349
  "@angular/core": ">=19.0.0",
350
- "@spartan-ng/brain": "0.0.1-alpha.487",
350
+ "@spartan-ng/brain": "0.0.1-alpha.489",
351
351
  "clsx": "^2.1.1",
352
352
  "class-variance-authority": "^0.7.0",
353
353
  "@angular/cdk": ">=19.0.0",
@@ -360,7 +360,7 @@
360
360
  "internalName": "ui-toggle-helm",
361
361
  "peerDependencies": {
362
362
  "@angular/core": ">=19.0.0",
363
- "@spartan-ng/brain": "0.0.1-alpha.487",
363
+ "@spartan-ng/brain": "0.0.1-alpha.489",
364
364
  "class-variance-authority": "^0.7.0",
365
365
  "clsx": "^2.1.1"
366
366
  }
@@ -369,7 +369,7 @@
369
369
  "internalName": "ui-toggle-group-helm",
370
370
  "peerDependencies": {
371
371
  "@angular/core": ">=19.0.0",
372
- "@spartan-ng/brain": "0.0.1-alpha.487",
372
+ "@spartan-ng/brain": "0.0.1-alpha.489",
373
373
  "class-variance-authority": "^0.7.0",
374
374
  "clsx": "^2.1.1"
375
375
  }
@@ -378,14 +378,14 @@
378
378
  "internalName": "ui-tooltip-helm",
379
379
  "peerDependencies": {
380
380
  "@angular/core": ">=19.0.0",
381
- "@spartan-ng/brain": "0.0.1-alpha.487"
381
+ "@spartan-ng/brain": "0.0.1-alpha.489"
382
382
  }
383
383
  },
384
384
  "typography": {
385
385
  "internalName": "ui-typography-helm",
386
386
  "peerDependencies": {
387
387
  "@angular/core": ">=19.0.0",
388
- "@spartan-ng/brain": "0.0.1-alpha.487",
388
+ "@spartan-ng/brain": "0.0.1-alpha.489",
389
389
  "clsx": "^2.1.1"
390
390
  }
391
391
  }