@spartan-ng/cli 0.0.1-alpha.572 → 0.0.1-alpha.573
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/field/files/lib/hlm-field-content.ts.template +1 -1
- package/src/generators/ui/libs/field/files/lib/hlm-field-description.ts.template +1 -1
- package/src/generators/ui/libs/field/files/lib/hlm-field-error.ts.template +1 -1
- package/src/generators/ui/libs/field/files/lib/hlm-field-group.ts.template +1 -1
- package/src/generators/ui/libs/field/files/lib/hlm-field-label.ts.template +2 -2
- package/src/generators/ui/libs/field/files/lib/hlm-field-legend.ts.template +1 -1
- package/src/generators/ui/libs/field/files/lib/hlm-field-separator.ts.template +1 -1
- package/src/generators/ui/libs/field/files/lib/hlm-field-set.ts.template +3 -2
- package/src/generators/ui/libs/field/files/lib/hlm-field.ts.template +2 -2
- package/src/generators/ui/libs/sidebar/files/lib/hlm-sidebar-menu-sub-button.ts.template +1 -2
- package/src/generators/ui/libs/sidebar/files/lib/hlm-sidebar-trigger.ts.template +3 -3
- package/src/generators/ui/libs/sidebar/files/lib/hlm-sidebar.ts.template +3 -3
- package/src/generators/ui/supported-ui-libraries.json +38 -38
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { computed, Directive, input } from '@angular/core';
|
|
2
2
|
import { HlmLabel } from '<%- importAlias %>/label';
|
|
3
3
|
import { hlm } from '<%- importAlias %>/utils';
|
|
4
|
-
import { ClassValue } from 'clsx';
|
|
4
|
+
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
7
|
-
selector: '[hlmFieldLabel]',
|
|
7
|
+
selector: '[hlmFieldLabel],hlm-field-label',
|
|
8
8
|
hostDirectives: [HlmLabel],
|
|
9
9
|
host: {
|
|
10
10
|
'data-slot': 'field-label',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { HlmSeparator } from '<%- importAlias %>/separator';
|
|
3
3
|
import { hlm } from '<%- importAlias %>/utils';
|
|
4
|
-
import { ClassValue } from 'clsx';
|
|
4
|
+
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Component({
|
|
7
7
|
selector: 'hlm-field-separator',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, Directive, input } from '@angular/core';
|
|
2
2
|
import { hlm } from '<%- importAlias %>/utils';
|
|
3
|
-
import { ClassValue } from 'clsx';
|
|
3
|
+
import type { ClassValue } from 'clsx';
|
|
4
4
|
|
|
5
5
|
@Directive({
|
|
6
6
|
selector: 'fieldset[hlmFieldSet]',
|
|
@@ -14,7 +14,8 @@ export class HlmFieldSet {
|
|
|
14
14
|
|
|
15
15
|
protected readonly _computedClass = computed(() =>
|
|
16
16
|
hlm(
|
|
17
|
-
'flex flex-col gap-6
|
|
17
|
+
'flex flex-col gap-6',
|
|
18
|
+
'has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3',
|
|
18
19
|
this.userClass(),
|
|
19
20
|
),
|
|
20
21
|
);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { computed, Directive, input } from '@angular/core';
|
|
2
2
|
import { hlm } from '<%- importAlias %>/utils';
|
|
3
|
-
import { cva, VariantProps } from 'class-variance-authority';
|
|
4
|
-
import { ClassValue } from 'clsx';
|
|
3
|
+
import { cva, type VariantProps } from 'class-variance-authority';
|
|
4
|
+
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
const fieldVariants = cva('group/field data-[invalid=true]:text-destructive flex w-full gap-3', {
|
|
7
7
|
variants: {
|
|
@@ -21,8 +21,7 @@ export class HlmSidebarMenuSubButton {
|
|
|
21
21
|
hlm(
|
|
22
22
|
`text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground active:bg-sidebar-accent active:text-sidebar-accent-foreground [&>_ng-icon:not([class*='text-'])]:text-sidebar-accent-foreground flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 outline-none hover:cursor-pointer focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-50 disabled:hover:cursor-default aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>_ng-icon]:size-4 [&>_ng-icon]:shrink-0 [&>span:last-child]:truncate`,
|
|
23
23
|
'data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground',
|
|
24
|
-
|
|
25
|
-
this.size() === 'md' && 'text-sm',
|
|
24
|
+
'data-[size=md]:text-sm data-[size=sm]:text-xs',
|
|
26
25
|
'group-data-[collapsible=icon]:hidden',
|
|
27
26
|
this.userClass(),
|
|
28
27
|
),
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucidePanelLeft } from '@ng-icons/lucide';
|
|
4
4
|
import { HlmButton, provideBrnButtonConfig } from '<%- importAlias %>/button';
|
|
5
|
-
import {
|
|
5
|
+
import { HlmIconImports } from '<%- importAlias %>/icon';
|
|
6
6
|
import { HlmSidebarService } from './hlm-sidebar.service';
|
|
7
7
|
|
|
8
8
|
@Component({
|
|
9
9
|
// eslint-disable-next-line @angular-eslint/component-selector
|
|
10
10
|
selector: 'button[hlmSidebarTrigger]',
|
|
11
|
-
imports: [
|
|
11
|
+
imports: [HlmIconImports],
|
|
12
12
|
providers: [provideIcons({ lucidePanelLeft }), provideBrnButtonConfig({ variant: 'ghost', size: 'icon' })],
|
|
13
13
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
14
14
|
hostDirectives: [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NgTemplateOutlet } from '@angular/common';
|
|
2
2
|
import { ChangeDetectionStrategy, Component, computed, effect, inject, input } from '@angular/core';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { BrnSheetImports } from '@spartan-ng/brain/sheet';
|
|
4
|
+
import { HlmSheetImports } from '<%- importAlias %>/sheet';
|
|
5
5
|
import { hlm } from '<%- importAlias %>/utils';
|
|
6
6
|
import type { ClassValue } from 'clsx';
|
|
7
7
|
import { HlmSidebarService, type SidebarVariant } from './hlm-sidebar.service';
|
|
@@ -9,7 +9,7 @@ import { injectHlmSidebarConfig } from './hlm-sidebar.token';
|
|
|
9
9
|
|
|
10
10
|
@Component({
|
|
11
11
|
selector: 'hlm-sidebar',
|
|
12
|
-
imports: [
|
|
12
|
+
imports: [NgTemplateOutlet, HlmSheetImports, BrnSheetImports],
|
|
13
13
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
14
14
|
host: {
|
|
15
15
|
'[attr.data-slot]': '_dataSlot()',
|
|
@@ -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.573",
|
|
7
7
|
"clsx": "^2.1.1",
|
|
8
8
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
9
9
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"name": "alert-dialog",
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
24
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
24
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
25
25
|
"clsx": "^2.1.1"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
40
40
|
"clsx": "^2.1.1",
|
|
41
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
41
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
42
42
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
43
43
|
"@angular/common": ">=20.0.0 <22.0.0",
|
|
44
44
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"name": "avatar",
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
53
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
53
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
54
54
|
"clsx": "^2.1.1"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"name": "button",
|
|
77
77
|
"peerDependencies": {
|
|
78
78
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
79
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
79
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
80
80
|
"class-variance-authority": "^0.7.0",
|
|
81
81
|
"clsx": "^2.1.1"
|
|
82
82
|
}
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"name": "button-group",
|
|
86
86
|
"peerDependencies": {
|
|
87
87
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
88
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
88
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
89
89
|
"clsx": "^2.1.1",
|
|
90
90
|
"class-variance-authority": "^0.7.0"
|
|
91
91
|
}
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
99
99
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
100
100
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
101
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
101
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
102
102
|
"clsx": "^2.1.1"
|
|
103
103
|
}
|
|
104
104
|
},
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
129
129
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
130
130
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
131
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
131
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
132
132
|
"clsx": "^2.1.1"
|
|
133
133
|
}
|
|
134
134
|
},
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"name": "collapsible",
|
|
137
137
|
"peerDependencies": {
|
|
138
138
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
139
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
139
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
140
140
|
"clsx": "^2.1.1"
|
|
141
141
|
}
|
|
142
142
|
},
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"name": "command",
|
|
145
145
|
"peerDependencies": {
|
|
146
146
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
147
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
147
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
148
148
|
"clsx": "^2.1.1"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"name": "context-menu",
|
|
153
153
|
"peerDependencies": {
|
|
154
154
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
155
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
155
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
156
156
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
157
157
|
"rxjs": "^7.8.0"
|
|
158
158
|
}
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
166
166
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
167
167
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
168
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
168
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
169
169
|
"clsx": "^2.1.1"
|
|
170
170
|
}
|
|
171
171
|
},
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
"@angular/common": ">=20.0.0 <22.0.0",
|
|
178
178
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
179
179
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
180
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
180
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
181
181
|
"@angular/cdk": ">=20.0.0 <22.0.0"
|
|
182
182
|
}
|
|
183
183
|
},
|
|
@@ -190,7 +190,7 @@
|
|
|
190
190
|
"clsx": "^2.1.1",
|
|
191
191
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
192
192
|
"rxjs": "^7.8.0",
|
|
193
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
193
|
+
"@spartan-ng/brain": "0.0.1-alpha.573"
|
|
194
194
|
}
|
|
195
195
|
},
|
|
196
196
|
"empty": {
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"peerDependencies": {
|
|
215
215
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
216
216
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
217
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
217
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
218
218
|
"clsx": "^2.1.1"
|
|
219
219
|
}
|
|
220
220
|
},
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
"name": "hover-card",
|
|
223
223
|
"peerDependencies": {
|
|
224
224
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
225
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
225
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
226
226
|
"clsx": "^2.1.1"
|
|
227
227
|
}
|
|
228
228
|
},
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
"peerDependencies": {
|
|
240
240
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
241
241
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
242
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
242
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
243
243
|
"class-variance-authority": "^0.7.0",
|
|
244
244
|
"clsx": "^2.1.1"
|
|
245
245
|
}
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
261
261
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
262
262
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
263
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
263
|
+
"@spartan-ng/brain": "0.0.1-alpha.573"
|
|
264
264
|
}
|
|
265
265
|
},
|
|
266
266
|
"item": {
|
|
@@ -269,7 +269,7 @@
|
|
|
269
269
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
270
270
|
"clsx": "^2.1.1",
|
|
271
271
|
"class-variance-authority": "^0.7.0",
|
|
272
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
272
|
+
"@spartan-ng/brain": "0.0.1-alpha.573"
|
|
273
273
|
}
|
|
274
274
|
},
|
|
275
275
|
"kbd": {
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
"name": "label",
|
|
284
284
|
"peerDependencies": {
|
|
285
285
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
286
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
286
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
287
287
|
"clsx": "^2.1.1"
|
|
288
288
|
}
|
|
289
289
|
},
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
"name": "menubar",
|
|
292
292
|
"peerDependencies": {
|
|
293
293
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
294
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
294
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
295
295
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
296
296
|
"clsx": "^2.1.1",
|
|
297
297
|
"rxjs": "^7.8.0"
|
|
@@ -302,7 +302,7 @@
|
|
|
302
302
|
"peerDependencies": {
|
|
303
303
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
304
304
|
"clsx": "^2.1.1",
|
|
305
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
305
|
+
"@spartan-ng/brain": "0.0.1-alpha.573"
|
|
306
306
|
}
|
|
307
307
|
},
|
|
308
308
|
"pagination": {
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
312
312
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
313
313
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
314
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
314
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
315
315
|
"clsx": "^2.1.1",
|
|
316
316
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
317
317
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
@@ -323,14 +323,14 @@
|
|
|
323
323
|
"peerDependencies": {
|
|
324
324
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
325
325
|
"clsx": "^2.1.1",
|
|
326
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
326
|
+
"@spartan-ng/brain": "0.0.1-alpha.573"
|
|
327
327
|
}
|
|
328
328
|
},
|
|
329
329
|
"progress": {
|
|
330
330
|
"name": "progress",
|
|
331
331
|
"peerDependencies": {
|
|
332
332
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
333
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
333
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
334
334
|
"clsx": "^2.1.1"
|
|
335
335
|
}
|
|
336
336
|
},
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
"name": "radio-group",
|
|
339
339
|
"peerDependencies": {
|
|
340
340
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
341
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
341
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
342
342
|
"clsx": "^2.1.1",
|
|
343
343
|
"@angular/common": ">=20.0.0 <22.0.0"
|
|
344
344
|
}
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
"name": "resizable",
|
|
348
348
|
"peerDependencies": {
|
|
349
349
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
350
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
350
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
351
351
|
"clsx": "^2.1.1",
|
|
352
352
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
353
353
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0"
|
|
@@ -365,7 +365,7 @@
|
|
|
365
365
|
"peerDependencies": {
|
|
366
366
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
367
367
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
368
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
368
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
369
369
|
"clsx": "^2.1.1",
|
|
370
370
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
371
371
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
"name": "separator",
|
|
377
377
|
"peerDependencies": {
|
|
378
378
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
379
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
379
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
380
380
|
"clsx": "^2.1.1"
|
|
381
381
|
}
|
|
382
382
|
},
|
|
@@ -387,7 +387,7 @@
|
|
|
387
387
|
"clsx": "^2.1.1",
|
|
388
388
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
389
389
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
390
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
390
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
391
391
|
"class-variance-authority": "^0.7.0"
|
|
392
392
|
}
|
|
393
393
|
},
|
|
@@ -397,7 +397,7 @@
|
|
|
397
397
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
398
398
|
"clsx": "^2.1.1",
|
|
399
399
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
400
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
400
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
401
401
|
"class-variance-authority": "^0.7.0",
|
|
402
402
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
403
403
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
"name": "slider",
|
|
416
416
|
"peerDependencies": {
|
|
417
417
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
418
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
418
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
419
419
|
"clsx": "^2.1.1"
|
|
420
420
|
}
|
|
421
421
|
},
|
|
@@ -443,7 +443,7 @@
|
|
|
443
443
|
"clsx": "^2.1.1",
|
|
444
444
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
445
445
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
446
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
446
|
+
"@spartan-ng/brain": "0.0.1-alpha.573"
|
|
447
447
|
}
|
|
448
448
|
},
|
|
449
449
|
"table": {
|
|
@@ -457,7 +457,7 @@
|
|
|
457
457
|
"name": "tabs",
|
|
458
458
|
"peerDependencies": {
|
|
459
459
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
460
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
460
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
461
461
|
"clsx": "^2.1.1",
|
|
462
462
|
"class-variance-authority": "^0.7.0",
|
|
463
463
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
@@ -471,7 +471,7 @@
|
|
|
471
471
|
"peerDependencies": {
|
|
472
472
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
473
473
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
474
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
474
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
475
475
|
"class-variance-authority": "^0.7.0",
|
|
476
476
|
"clsx": "^2.1.1"
|
|
477
477
|
}
|
|
@@ -480,7 +480,7 @@
|
|
|
480
480
|
"name": "toggle",
|
|
481
481
|
"peerDependencies": {
|
|
482
482
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
483
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
483
|
+
"@spartan-ng/brain": "0.0.1-alpha.573",
|
|
484
484
|
"class-variance-authority": "^0.7.0",
|
|
485
485
|
"clsx": "^2.1.1"
|
|
486
486
|
}
|
|
@@ -489,7 +489,7 @@
|
|
|
489
489
|
"name": "toggle-group",
|
|
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.573",
|
|
493
493
|
"clsx": "^2.1.1",
|
|
494
494
|
"@angular/cdk": ">=20.0.0 <22.0.0"
|
|
495
495
|
}
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
"name": "tooltip",
|
|
499
499
|
"peerDependencies": {
|
|
500
500
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
501
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
501
|
+
"@spartan-ng/brain": "0.0.1-alpha.573"
|
|
502
502
|
}
|
|
503
503
|
},
|
|
504
504
|
"typography": {
|