@spartan-ng/cli 0.0.1-alpha.684 → 0.0.1-alpha.685
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 +1 -1
- package/src/generators/ui/libs/dialog/files/lib/hlm-dialog-content.ts.template +3 -1
- package/src/generators/ui/libs/dialog/files/lib/hlm-dialog.service.ts.template +2 -0
- package/src/generators/ui/libs/empty/files/lib/hlm-empty-content.ts.template +2 -4
- package/src/generators/ui/libs/empty/files/lib/hlm-empty-description.ts.template +3 -4
- package/src/generators/ui/libs/empty/files/lib/hlm-empty-header.ts.template +2 -4
- package/src/generators/ui/libs/empty/files/lib/hlm-empty-media.ts.template +6 -5
- package/src/generators/ui/libs/empty/files/lib/hlm-empty-title.ts.template +2 -4
- package/src/generators/ui/libs/empty/files/lib/hlm-empty.ts.template +2 -5
- package/src/generators/ui/libs/input-otp/files/lib/hlm-input-otp-fake-caret.ts.template +2 -2
- package/src/generators/ui/libs/input-otp/files/lib/hlm-input-otp-group.ts.template +3 -5
- package/src/generators/ui/libs/input-otp/files/lib/hlm-input-otp-separator.ts.template +1 -1
- package/src/generators/ui/libs/input-otp/files/lib/hlm-input-otp-slot.ts.template +5 -7
- package/src/generators/ui/libs/input-otp/files/lib/hlm-input-otp.ts.template +2 -4
- package/src/generators/ui/libs/label/files/lib/hlm-label.ts.template +3 -10
- package/src/generators/ui/style-luma.css +1 -1
- package/src/generators/ui/style-lyra.css +1 -1
- package/src/generators/ui/style-maia.css +1 -1
- package/src/generators/ui/style-mira.css +1 -1
- package/src/generators/ui/style-nova.css +1 -1
- package/src/generators/ui/style-vega.css +1 -1
- package/src/generators/ui/supported-ui-libraries.json +41 -41
package/package.json
CHANGED
|
@@ -37,7 +37,9 @@ export class HlmDialogContent {
|
|
|
37
37
|
private readonly _dialogRef = inject(BrnDialogRef);
|
|
38
38
|
private readonly _dialogContext = injectBrnDialogContext({ optional: true });
|
|
39
39
|
|
|
40
|
-
public readonly showCloseButton = input<boolean, BooleanInput>(true, {
|
|
40
|
+
public readonly showCloseButton = input<boolean, BooleanInput>(this._dialogContext?.$showCloseButton ?? true, {
|
|
41
|
+
transform: booleanAttribute,
|
|
42
|
+
});
|
|
41
43
|
|
|
42
44
|
public readonly state = computed(() => this._dialogRef?.state() ?? 'closed');
|
|
43
45
|
|
|
@@ -6,6 +6,7 @@ import { hlmDialogOverlayClass } from './hlm-dialog-overlay';
|
|
|
6
6
|
|
|
7
7
|
export type HlmDialogOptions<DialogContext = unknown> = BrnDialogOptions & {
|
|
8
8
|
contentClass?: string;
|
|
9
|
+
showCloseButton?: boolean;
|
|
9
10
|
context?: DialogContext;
|
|
10
11
|
};
|
|
11
12
|
|
|
@@ -23,6 +24,7 @@ export class HlmDialogService {
|
|
|
23
24
|
...(options?.context && typeof options.context === 'object' ? options.context : {}),
|
|
24
25
|
$component: component,
|
|
25
26
|
$dynamicComponentClass: options?.contentClass,
|
|
27
|
+
$showCloseButton: options?.showCloseButton,
|
|
26
28
|
},
|
|
27
29
|
};
|
|
28
30
|
|
|
@@ -3,12 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmEmptyContent],hlm-empty-content',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'empty-content',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'empty-content' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmEmptyContent {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(() => 'flex w-full max-w-sm min-w-0 flex-col items-center
|
|
10
|
+
classes(() => 'spartan-empty-content flex w-full max-w-sm min-w-0 flex-col items-center text-balance');
|
|
13
11
|
}
|
|
14
12
|
}
|
|
@@ -3,14 +3,13 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmEmptyDescription]',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'empty-description',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'empty-description' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmEmptyDescription {
|
|
11
9
|
constructor() {
|
|
12
10
|
classes(
|
|
13
|
-
() =>
|
|
11
|
+
() =>
|
|
12
|
+
'spartan-empty-description text-muted-foreground [&>a:hover]:text-primary [&>a]:underline [&>a]:underline-offset-4',
|
|
14
13
|
);
|
|
15
14
|
}
|
|
16
15
|
}
|
|
@@ -3,12 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmEmptyHeader],hlm-empty-header',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'empty-header',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'empty-header' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmEmptyHeader {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(() => 'flex max-w-sm flex-col items-center
|
|
10
|
+
classes(() => 'spartan-empty-header flex max-w-sm flex-col items-center');
|
|
13
11
|
}
|
|
14
12
|
}
|
|
@@ -3,12 +3,12 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
import { cva, VariantProps } from 'class-variance-authority';
|
|
4
4
|
|
|
5
5
|
const emptyMediaVariants = cva(
|
|
6
|
-
'
|
|
6
|
+
'spartan-empty-media flex shrink-0 items-center justify-center [&_ng-icon]:pointer-events-none [&_ng-icon]:shrink-0',
|
|
7
7
|
{
|
|
8
8
|
variants: {
|
|
9
9
|
variant: {
|
|
10
|
-
default: '
|
|
11
|
-
icon:
|
|
10
|
+
default: 'spartan-empty-media-default',
|
|
11
|
+
icon: 'spartan-empty-media-icon',
|
|
12
12
|
},
|
|
13
13
|
},
|
|
14
14
|
defaultVariants: {
|
|
@@ -23,12 +23,13 @@ export type EmptyMediaVariants = VariantProps<typeof emptyMediaVariants>;
|
|
|
23
23
|
selector: '[hlmEmptyMedia],hlm-empty-media',
|
|
24
24
|
host: {
|
|
25
25
|
'data-slot': 'empty-media',
|
|
26
|
+
'[attr.data-variant]': 'variant()',
|
|
26
27
|
},
|
|
27
28
|
})
|
|
28
29
|
export class HlmEmptyMedia {
|
|
30
|
+
public readonly variant = input<EmptyMediaVariants['variant']>();
|
|
31
|
+
|
|
29
32
|
constructor() {
|
|
30
33
|
classes(() => emptyMediaVariants({ variant: this.variant() }));
|
|
31
34
|
}
|
|
32
|
-
|
|
33
|
-
public readonly variant = input<EmptyMediaVariants['variant']>();
|
|
34
35
|
}
|
|
@@ -3,12 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmEmptyTitle]',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'empty-title',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'empty-title' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmEmptyTitle {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(() => '
|
|
10
|
+
classes(() => 'spartan-empty-title');
|
|
13
11
|
}
|
|
14
12
|
}
|
|
@@ -3,15 +3,12 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmEmpty],hlm-empty',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'empty',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'empty' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmEmpty {
|
|
11
9
|
constructor() {
|
|
12
10
|
classes(
|
|
13
|
-
() =>
|
|
14
|
-
'flex min-w-0 flex-1 flex-col items-center justify-center gap-6 rounded-lg border-dashed p-6 text-center text-balance md:p-12',
|
|
11
|
+
() => 'spartan-empty flex w-full min-w-0 flex-1 flex-col items-center justify-center text-center text-balance',
|
|
15
12
|
);
|
|
16
13
|
}
|
|
17
14
|
}
|
|
@@ -4,8 +4,8 @@ import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
|
4
4
|
selector: 'hlm-input-otp-fake-caret',
|
|
5
5
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6
6
|
template: `
|
|
7
|
-
<div class="pointer-events-none absolute inset-0 flex items-center justify-center">
|
|
8
|
-
<div class="
|
|
7
|
+
<div class="spartan-input-otp-caret pointer-events-none absolute inset-0 flex items-center justify-center">
|
|
8
|
+
<div class="spartan-input-otp-caret-line"></div>
|
|
9
9
|
</div>
|
|
10
10
|
`,
|
|
11
11
|
})
|
|
@@ -2,13 +2,11 @@ import { Directive } from '@angular/core';
|
|
|
2
2
|
import { classes } from '<%- importAlias %>/utils';
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
|
-
selector: '[hlmInputOtpGroup]',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'input-otp-group',
|
|
8
|
-
},
|
|
5
|
+
selector: '[hlmInputOtpGroup],hlm-input-otp-group',
|
|
6
|
+
host: { 'data-slot': 'input-otp-group' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmInputOtpGroup {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(() => 'flex items-center');
|
|
10
|
+
classes(() => 'spartan-input-otp-group flex items-center');
|
|
13
11
|
}
|
|
14
12
|
}
|
|
@@ -8,9 +8,7 @@ import { HlmInputOtpFakeCaret } from './hlm-input-otp-fake-caret';
|
|
|
8
8
|
selector: 'hlm-input-otp-slot',
|
|
9
9
|
imports: [BrnInputOtpSlot, HlmInputOtpFakeCaret],
|
|
10
10
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
11
|
-
host: {
|
|
12
|
-
'data-slot': 'input-otp-slot',
|
|
13
|
-
},
|
|
11
|
+
host: { 'data-slot': 'input-otp-slot' },
|
|
14
12
|
template: `
|
|
15
13
|
<brn-input-otp-slot [index]="index()">
|
|
16
14
|
<hlm-input-otp-fake-caret />
|
|
@@ -22,9 +20,9 @@ export class HlmInputOtpSlot {
|
|
|
22
20
|
public readonly index = input.required<number, NumberInput>({ transform: numberAttribute });
|
|
23
21
|
|
|
24
22
|
constructor() {
|
|
25
|
-
classes(
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
23
|
+
classes(
|
|
24
|
+
() =>
|
|
25
|
+
'spartan-input-otp-slot relative flex items-center justify-center has-[brn-input-otp-slot[data-active="true"]]:z-10',
|
|
26
|
+
);
|
|
29
27
|
}
|
|
30
28
|
}
|
|
@@ -3,12 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: 'brn-input-otp[hlmInputOtp], brn-input-otp[hlm]',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'input-otp',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'input-otp' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmInputOtp {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(() => 'flex items-center
|
|
10
|
+
classes(() => 'spartan-input-otp flex items-center has-disabled:opacity-50');
|
|
13
11
|
}
|
|
14
12
|
}
|
|
@@ -4,21 +4,14 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
4
4
|
|
|
5
5
|
@Directive({
|
|
6
6
|
selector: '[hlmLabel]',
|
|
7
|
-
hostDirectives: [
|
|
8
|
-
|
|
9
|
-
directive: BrnLabel,
|
|
10
|
-
inputs: ['id', 'for'],
|
|
11
|
-
},
|
|
12
|
-
],
|
|
13
|
-
host: {
|
|
14
|
-
'data-slot': 'label',
|
|
15
|
-
},
|
|
7
|
+
hostDirectives: [{ directive: BrnLabel, inputs: ['id', 'for'] }],
|
|
8
|
+
host: { 'data-slot': 'label' },
|
|
16
9
|
})
|
|
17
10
|
export class HlmLabel {
|
|
18
11
|
constructor() {
|
|
19
12
|
classes(
|
|
20
13
|
() =>
|
|
21
|
-
'flex items-center
|
|
14
|
+
'spartan-label flex items-center select-none group-data-[disabled=true]:pointer-events-none peer-disabled:cursor-not-allowed',
|
|
22
15
|
);
|
|
23
16
|
}
|
|
24
17
|
}
|
|
@@ -350,7 +350,7 @@
|
|
|
350
350
|
}
|
|
351
351
|
|
|
352
352
|
.spartan-input-otp-slot {
|
|
353
|
-
@apply bg-input/50 border-input data-
|
|
353
|
+
@apply bg-input/50 border-input has-[brn-input-otp-slot[data-active="true"]]:border-ring has-[brn-input-otp-slot[data-active="true"]]:ring-ring/30 has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/20 dark:has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive size-9 border-y border-e text-sm transition-all outline-none first:rounded-s-3xl first:border-s last:rounded-e-3xl has-[brn-input-otp-slot[data-active="true"]]:ring-3;
|
|
354
354
|
}
|
|
355
355
|
|
|
356
356
|
.spartan-input-otp-caret-line {
|
|
@@ -631,7 +631,7 @@
|
|
|
631
631
|
}
|
|
632
632
|
|
|
633
633
|
.spartan-input-otp-slot {
|
|
634
|
-
@apply dark:bg-input/30 border-input data-
|
|
634
|
+
@apply dark:bg-input/30 border-input has-[brn-input-otp-slot[data-active="true"]]:border-ring has-[brn-input-otp-slot[data-active="true"]]:ring-ring/50 has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/20 dark:has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:border-destructive size-8 border-y border-e text-xs transition-all outline-none first:rounded-none first:border-s last:rounded-none has-[brn-input-otp-slot[data-active="true"]]:ring-1;
|
|
635
635
|
}
|
|
636
636
|
|
|
637
637
|
.spartan-input-otp-caret-line {
|
|
@@ -656,7 +656,7 @@
|
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
.spartan-input-otp-slot {
|
|
659
|
-
@apply bg-input/30 border-input data-
|
|
659
|
+
@apply bg-input/30 border-input has-[brn-input-otp-slot[data-active="true"]]:border-ring has-[brn-input-otp-slot[data-active="true"]]:ring-ring/50 has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/20 dark:has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:border-destructive size-9 border-y border-e text-sm transition-all outline-none first:rounded-s-4xl first:border-s last:rounded-e-4xl has-[brn-input-otp-slot[data-active="true"]]:ring-[3px];
|
|
660
660
|
}
|
|
661
661
|
|
|
662
662
|
.spartan-input-otp-caret-line {
|
|
@@ -656,7 +656,7 @@
|
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
.spartan-input-otp-slot {
|
|
659
|
-
@apply bg-input/20 dark:bg-input/30 border-input data-
|
|
659
|
+
@apply bg-input/20 dark:bg-input/30 border-input has-[brn-input-otp-slot[data-active="true"]]:border-ring has-[brn-input-otp-slot[data-active="true"]]:ring-ring/30 has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/20 dark:has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:border-destructive size-7 border-y border-e text-xs/relaxed transition-all outline-none first:rounded-s-md first:border-s last:rounded-e-md has-[brn-input-otp-slot[data-active="true"]]:ring-2;
|
|
660
660
|
}
|
|
661
661
|
|
|
662
662
|
.spartan-input-otp-caret-line {
|
|
@@ -656,7 +656,7 @@
|
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
.spartan-input-otp-slot {
|
|
659
|
-
@apply dark:bg-input/30 border-input data-
|
|
659
|
+
@apply dark:bg-input/30 border-input has-[brn-input-otp-slot[data-active="true"]]:border-ring has-[brn-input-otp-slot[data-active="true"]]:ring-ring/50 has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/20 dark:has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:border-destructive size-8 border-y border-e text-sm transition-all outline-none first:rounded-s-lg first:border-s last:rounded-e-lg has-[brn-input-otp-slot[data-active="true"]]:ring-3;
|
|
660
660
|
}
|
|
661
661
|
|
|
662
662
|
.spartan-input-otp-caret-line {
|
|
@@ -652,7 +652,7 @@
|
|
|
652
652
|
}
|
|
653
653
|
|
|
654
654
|
&.spartan-input-otp-slot {
|
|
655
|
-
@apply dark:bg-input/30 border-input data-
|
|
655
|
+
@apply dark:bg-input/30 border-input has-[brn-input-otp-slot[data-active="true"]]:border-ring has-[brn-input-otp-slot[data-active="true"]]:ring-ring/50 has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/20 dark:has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive has-[brn-input-otp-slot[data-active="true"]]:data-[matches-spartan-invalid=true]:border-destructive size-9 border-y border-e text-sm shadow-xs transition-all outline-none first:rounded-s-md first:border-s last:rounded-e-md has-[brn-input-otp-slot[data-active="true"]]:ring-3;
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
&.spartan-input-otp-caret-line {
|
|
@@ -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.
|
|
6
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
23
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
39
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
49
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
73
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
82
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
94
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
122
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
130
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
138
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
150
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
160
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
173
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
181
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
197
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
211
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
221
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
237
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
246
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
256
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
264
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
277
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
284
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
297
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
305
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
324
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
331
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
339
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
349
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
364
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
374
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
381
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
394
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
413
|
+
"@spartan-ng/brain": "0.0.1-alpha.685"
|
|
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.
|
|
423
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
441
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
455
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
469
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
477
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
485
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
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.
|
|
493
|
+
"@spartan-ng/brain": "0.0.1-alpha.685",
|
|
494
494
|
"class-variance-authority": "^0.7.0"
|
|
495
495
|
}
|
|
496
496
|
},
|