@spartan-ng/cli 0.0.1-alpha.666 → 0.0.1-alpha.667
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/aspect-ratio/files/index.ts.template +2 -2
- package/src/generators/ui/libs/aspect-ratio/files/lib/{helm-aspect-ratio.ts.template → hlm-aspect-ratio.ts.template} +5 -5
- package/src/generators/ui/libs/avatar/files/lib/hlm-avatar-badge.ts.template +3 -3
- package/src/generators/ui/libs/avatar/files/lib/hlm-avatar-fallback.ts.template +1 -1
- package/src/generators/ui/libs/avatar/files/lib/hlm-avatar-image.ts.template +1 -1
- package/src/generators/ui/libs/avatar/files/lib/hlm-avatar.ts.template +1 -1
- package/src/generators/ui/libs/breadcrumb/files/index.ts.template +6 -1
- package/src/generators/ui/libs/breadcrumb/files/lib/hlm-breadcrumb-ellipsis.ts.template +4 -2
- package/src/generators/ui/libs/breadcrumb/files/lib/hlm-breadcrumb-item.ts.template +4 -1
- package/src/generators/ui/libs/breadcrumb/files/lib/hlm-breadcrumb-link.ts.template +7 -4
- package/src/generators/ui/libs/breadcrumb/files/lib/hlm-breadcrumb-list.ts.template +4 -1
- package/src/generators/ui/libs/breadcrumb/files/lib/hlm-breadcrumb-page.ts.template +2 -1
- package/src/generators/ui/libs/breadcrumb/files/lib/hlm-breadcrumb-separator.ts.template +2 -1
- package/src/generators/ui/libs/breadcrumb/files/lib/hlm-breadcrumb.ts.template +1 -0
- package/src/generators/ui/supported-ui-libraries.json +41 -41
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { HlmAspectRatio } from './lib/
|
|
1
|
+
import { HlmAspectRatio } from './lib/hlm-aspect-ratio';
|
|
2
2
|
|
|
3
|
-
export * from './lib/
|
|
3
|
+
export * from './lib/hlm-aspect-ratio';
|
|
4
4
|
|
|
5
5
|
export const HlmAspectRatioImports = [HlmAspectRatio] as const;
|
|
@@ -12,7 +12,10 @@ const parseDividedString = (value: NumberInput): NumberInput => {
|
|
|
12
12
|
|
|
13
13
|
@Directive({
|
|
14
14
|
selector: '[hlmAspectRatio]',
|
|
15
|
-
host: {
|
|
15
|
+
host: {
|
|
16
|
+
'data-slot': 'aspect-ratio',
|
|
17
|
+
'[style.--ratio]': 'ratio()',
|
|
18
|
+
},
|
|
16
19
|
})
|
|
17
20
|
export class HlmAspectRatio {
|
|
18
21
|
/**
|
|
@@ -27,9 +30,6 @@ export class HlmAspectRatio {
|
|
|
27
30
|
});
|
|
28
31
|
|
|
29
32
|
constructor() {
|
|
30
|
-
classes(
|
|
31
|
-
() =>
|
|
32
|
-
'relative w-full [&>*:first-child]:absolute [&>*:first-child]:h-full [&>*:first-child]:w-full [&>*:first-child]:object-cover',
|
|
33
|
-
);
|
|
33
|
+
classes(() => 'relative aspect-(--ratio)');
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -10,10 +10,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
10
10
|
export class HlmAvatarBadge {
|
|
11
11
|
constructor() {
|
|
12
12
|
classes(() => [
|
|
13
|
-
'
|
|
13
|
+
'spartan-avatar-badge absolute right-0 bottom-0 z-10 inline-flex items-center justify-center rounded-full bg-blend-color ring-2 select-none',
|
|
14
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-[
|
|
16
|
-
'group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>ng-icon]:text-[
|
|
15
|
+
'group-data-[size=default]/avatar:size-2.5 group-data-[size=default]/avatar:[&>ng-icon]:text-[calc(var(--spacing)*2)]',
|
|
16
|
+
'group-data-[size=lg]/avatar:size-3 group-data-[size=lg]/avatar:[&>ng-icon]:text-[calc(var(--spacing)*2)]',
|
|
17
17
|
]);
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -14,7 +14,7 @@ export class HlmAvatarFallback {
|
|
|
14
14
|
constructor() {
|
|
15
15
|
classes(
|
|
16
16
|
() =>
|
|
17
|
-
'
|
|
17
|
+
'spartan-avatar-fallback flex size-full items-center justify-center text-sm group-data-[size=sm]/avatar:text-xs',
|
|
18
18
|
);
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -14,6 +14,6 @@ export class HlmAvatarImage {
|
|
|
14
14
|
public readonly canShow = inject(BrnAvatarImage).canShow;
|
|
15
15
|
|
|
16
16
|
constructor() {
|
|
17
|
-
classes(() => 'aspect-square size-full
|
|
17
|
+
classes(() => 'spartan-avatar-image aspect-square size-full object-cover');
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -25,7 +25,7 @@ export class HlmAvatar extends BrnAvatar {
|
|
|
25
25
|
super();
|
|
26
26
|
classes(
|
|
27
27
|
() =>
|
|
28
|
-
'after:border-border
|
|
28
|
+
'spartan-avatar group/avatar after:border-border relative flex shrink-0 select-none after:absolute after:inset-0 after:border after:mix-blend-darken dark:after:mix-blend-lighten',
|
|
29
29
|
);
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -14,7 +14,7 @@ export * from './lib/hlm-breadcrumb-list';
|
|
|
14
14
|
export * from './lib/hlm-breadcrumb-page';
|
|
15
15
|
export * from './lib/hlm-breadcrumb-separator';
|
|
16
16
|
|
|
17
|
-
export const
|
|
17
|
+
export const HlmBreadcrumbImports = [
|
|
18
18
|
HlmBreadcrumb,
|
|
19
19
|
HlmBreadcrumbEllipsis,
|
|
20
20
|
HlmBreadcrumbSeparator,
|
|
@@ -23,3 +23,8 @@ export const HlmBreadCrumbImports = [
|
|
|
23
23
|
HlmBreadcrumbPage,
|
|
24
24
|
HlmBreadcrumbList,
|
|
25
25
|
] as const;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @deprecated Use `HlmBreadcrumbImports` instead.
|
|
29
|
+
*/
|
|
30
|
+
export const HlmBreadCrumbImports = HlmBreadcrumbImports;
|
|
@@ -11,7 +11,7 @@ import type { ClassValue } from 'clsx';
|
|
|
11
11
|
providers: [provideIcons({ lucideEllipsis })],
|
|
12
12
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
13
13
|
template: `
|
|
14
|
-
<span role="presentation" aria-hidden="true" [class]="_computedClass()">
|
|
14
|
+
<span data-slot="breadcrumb-ellipsis" role="presentation" aria-hidden="true" [class]="_computedClass()">
|
|
15
15
|
<ng-icon hlm size="sm" name="lucideEllipsis" />
|
|
16
16
|
<span class="sr-only">{{ srOnlyText() }}</span>
|
|
17
17
|
</span>
|
|
@@ -22,5 +22,7 @@ export class HlmBreadcrumbEllipsis {
|
|
|
22
22
|
/** Screen reader only text for the ellipsis */
|
|
23
23
|
public readonly srOnlyText = input<string>('More');
|
|
24
24
|
|
|
25
|
-
protected readonly _computedClass = computed(() =>
|
|
25
|
+
protected readonly _computedClass = computed(() =>
|
|
26
|
+
hlm('spartan-breadcrumb-ellipsis flex items-center justify-center', this.userClass()),
|
|
27
|
+
);
|
|
26
28
|
}
|
|
@@ -3,9 +3,12 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmBreadcrumbItem]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'breadcrumb-item',
|
|
8
|
+
},
|
|
6
9
|
})
|
|
7
10
|
export class HlmBreadcrumbItem {
|
|
8
11
|
constructor() {
|
|
9
|
-
classes(() => 'inline-flex items-center
|
|
12
|
+
classes(() => 'spartan-breadcrumb-item inline-flex items-center');
|
|
10
13
|
}
|
|
11
14
|
}
|
|
@@ -22,12 +22,15 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
22
22
|
],
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
|
+
host: {
|
|
26
|
+
'data-slot': 'breadcrumb-link',
|
|
27
|
+
},
|
|
25
28
|
})
|
|
26
29
|
export class HlmBreadcrumbLink {
|
|
27
|
-
constructor() {
|
|
28
|
-
classes(() => 'hover:text-foreground transition-colors');
|
|
29
|
-
}
|
|
30
|
-
|
|
31
30
|
/** The link to navigate to the page. */
|
|
32
31
|
public readonly link = input<RouterLink['routerLink']>();
|
|
32
|
+
|
|
33
|
+
constructor() {
|
|
34
|
+
classes(() => 'spartan-breadcrumb-link');
|
|
35
|
+
}
|
|
33
36
|
}
|
|
@@ -3,9 +3,12 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmBreadcrumbList]',
|
|
6
|
+
host: {
|
|
7
|
+
'data-slot': 'breadcrumb-list',
|
|
8
|
+
},
|
|
6
9
|
})
|
|
7
10
|
export class HlmBreadcrumbList {
|
|
8
11
|
constructor() {
|
|
9
|
-
classes(() => '
|
|
12
|
+
classes(() => 'spartan-breadcrumb-list flex flex-wrap items-center wrap-break-word');
|
|
10
13
|
}
|
|
11
14
|
}
|
|
@@ -4,6 +4,7 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmBreadcrumbPage]',
|
|
6
6
|
host: {
|
|
7
|
+
'data-slot': 'breadcrumb-page',
|
|
7
8
|
role: 'link',
|
|
8
9
|
'aria-disabled': 'true',
|
|
9
10
|
'aria-current': 'page',
|
|
@@ -11,6 +12,6 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
11
12
|
})
|
|
12
13
|
export class HlmBreadcrumbPage {
|
|
13
14
|
constructor() {
|
|
14
|
-
classes(() => '
|
|
15
|
+
classes(() => 'spartan-breadcrumb-page');
|
|
15
16
|
}
|
|
16
17
|
}
|
|
@@ -10,6 +10,7 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
10
10
|
providers: [provideIcons({ lucideChevronRight })],
|
|
11
11
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
12
12
|
host: {
|
|
13
|
+
'data-slot': 'breadcrumb-separator',
|
|
13
14
|
role: 'presentation',
|
|
14
15
|
'aria-hidden': 'true',
|
|
15
16
|
},
|
|
@@ -21,6 +22,6 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
21
22
|
})
|
|
22
23
|
export class HlmBreadcrumbSeparator {
|
|
23
24
|
constructor() {
|
|
24
|
-
classes(() => '
|
|
25
|
+
classes(() => 'spartan-breadcrumb-separator [&>ng-icon]:flex');
|
|
25
26
|
}
|
|
26
27
|
}
|
|
@@ -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.667",
|
|
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.667",
|
|
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.667",
|
|
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.667"
|
|
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.667",
|
|
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.667",
|
|
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.667",
|
|
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.667",
|
|
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.667"
|
|
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.667",
|
|
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.667",
|
|
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.667",
|
|
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.667",
|
|
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.667",
|
|
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.667"
|
|
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.667",
|
|
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.667"
|
|
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.667",
|
|
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.667"
|
|
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.667"
|
|
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.667"
|
|
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.667"
|
|
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.667",
|
|
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.667",
|
|
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.667"
|
|
306
306
|
}
|
|
307
307
|
},
|
|
308
308
|
"pagination": {
|
|
@@ -320,14 +320,14 @@
|
|
|
320
320
|
"name": "popover",
|
|
321
321
|
"peerDependencies": {
|
|
322
322
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
323
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
323
|
+
"@spartan-ng/brain": "0.0.1-alpha.667"
|
|
324
324
|
}
|
|
325
325
|
},
|
|
326
326
|
"progress": {
|
|
327
327
|
"name": "progress",
|
|
328
328
|
"peerDependencies": {
|
|
329
329
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
330
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
330
|
+
"@spartan-ng/brain": "0.0.1-alpha.667"
|
|
331
331
|
}
|
|
332
332
|
},
|
|
333
333
|
"radio-group": {
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
"peerDependencies": {
|
|
336
336
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
337
337
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
338
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
338
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
339
339
|
"clsx": "^2.1.1",
|
|
340
340
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
341
341
|
"@angular/common": ">=20.0.0 <22.0.0"
|
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
"name": "resizable",
|
|
346
346
|
"peerDependencies": {
|
|
347
347
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
348
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
348
|
+
"@spartan-ng/brain": "0.0.1-alpha.667"
|
|
349
349
|
}
|
|
350
350
|
},
|
|
351
351
|
"scroll-area": {
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
361
361
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
362
362
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
363
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
363
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
364
364
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
365
365
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
366
366
|
"clsx": "^2.1.1"
|
|
@@ -370,14 +370,14 @@
|
|
|
370
370
|
"name": "separator",
|
|
371
371
|
"peerDependencies": {
|
|
372
372
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
373
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
373
|
+
"@spartan-ng/brain": "0.0.1-alpha.667"
|
|
374
374
|
}
|
|
375
375
|
},
|
|
376
376
|
"sheet": {
|
|
377
377
|
"name": "sheet",
|
|
378
378
|
"peerDependencies": {
|
|
379
379
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
380
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
380
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
381
381
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
382
382
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
383
383
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
@@ -390,7 +390,7 @@
|
|
|
390
390
|
"peerDependencies": {
|
|
391
391
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
392
392
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
393
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
393
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
394
394
|
"class-variance-authority": "^0.7.0",
|
|
395
395
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
396
396
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
"peerDependencies": {
|
|
410
410
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
411
411
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
412
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
412
|
+
"@spartan-ng/brain": "0.0.1-alpha.667"
|
|
413
413
|
}
|
|
414
414
|
},
|
|
415
415
|
"sonner": {
|
|
@@ -419,7 +419,7 @@
|
|
|
419
419
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
420
420
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
421
421
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
422
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
422
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
423
423
|
"clsx": "^2.1.1"
|
|
424
424
|
}
|
|
425
425
|
},
|
|
@@ -437,7 +437,7 @@
|
|
|
437
437
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
438
438
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
439
439
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
440
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
440
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
441
441
|
"clsx": "^2.1.1"
|
|
442
442
|
}
|
|
443
443
|
},
|
|
@@ -451,7 +451,7 @@
|
|
|
451
451
|
"name": "tabs",
|
|
452
452
|
"peerDependencies": {
|
|
453
453
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
454
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
454
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
455
455
|
"class-variance-authority": "^0.7.0",
|
|
456
456
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
457
457
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
"peerDependencies": {
|
|
466
466
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
467
467
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
468
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
468
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
469
469
|
"class-variance-authority": "^0.7.0"
|
|
470
470
|
}
|
|
471
471
|
},
|
|
@@ -473,7 +473,7 @@
|
|
|
473
473
|
"name": "toggle",
|
|
474
474
|
"peerDependencies": {
|
|
475
475
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
476
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
476
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
477
477
|
"class-variance-authority": "^0.7.0"
|
|
478
478
|
}
|
|
479
479
|
},
|
|
@@ -481,7 +481,7 @@
|
|
|
481
481
|
"name": "toggle-group",
|
|
482
482
|
"peerDependencies": {
|
|
483
483
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
484
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
484
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
485
485
|
"@angular/cdk": ">=20.0.0 <22.0.0"
|
|
486
486
|
}
|
|
487
487
|
},
|
|
@@ -489,7 +489,7 @@
|
|
|
489
489
|
"name": "tooltip",
|
|
490
490
|
"peerDependencies": {
|
|
491
491
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
492
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
492
|
+
"@spartan-ng/brain": "0.0.1-alpha.667",
|
|
493
493
|
"class-variance-authority": "^0.7.0"
|
|
494
494
|
}
|
|
495
495
|
},
|