@spartan-ng/cli 0.0.1-alpha.556 → 0.0.1-alpha.557
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/accordion/files/lib/hlm-accordion-content.ts.template +1 -2
- package/src/generators/ui/libs/alert-dialog/files/lib/hlm-alert-dialog-content.ts.template +1 -2
- package/src/generators/ui/libs/alert-dialog/files/lib/hlm-alert-dialog-footer.ts.template +1 -2
- package/src/generators/ui/libs/alert-dialog/files/lib/hlm-alert-dialog-header.ts.template +1 -2
- package/src/generators/ui/libs/alert-dialog/files/lib/hlm-alert-dialog.ts.template +1 -2
- package/src/generators/ui/libs/avatar/files/lib/hlm-avatar.ts.template +1 -2
- package/src/generators/ui/libs/carousel/files/lib/hlm-carousel-content.ts.template +1 -2
- package/src/generators/ui/libs/carousel/files/lib/hlm-carousel-item.ts.template +1 -2
- package/src/generators/ui/libs/carousel/files/lib/hlm-carousel-next.ts.template +1 -11
- package/src/generators/ui/libs/carousel/files/lib/hlm-carousel-previous.ts.template +1 -11
- package/src/generators/ui/libs/carousel/files/lib/hlm-carousel.ts.template +0 -2
- package/src/generators/ui/libs/dialog/files/lib/hlm-dialog-content.ts.template +1 -2
- package/src/generators/ui/libs/dialog/files/lib/hlm-dialog.ts.template +1 -2
- package/src/generators/ui/libs/sheet/files/lib/hlm-sheet.ts.template +1 -2
- package/src/generators/ui/libs/tooltip/files/lib/hlm-tooltip.ts.template +1 -2
- package/src/generators/ui/supported-ui-libraries.json +36 -36
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component,
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { BrnAccordionContent } from '@spartan-ng/brain/accordion';
|
|
3
3
|
import { hlm } from '<%- importAlias %>/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
@@ -6,7 +6,6 @@ import type { ClassValue } from 'clsx';
|
|
|
6
6
|
@Component({
|
|
7
7
|
selector: 'hlm-accordion-content',
|
|
8
8
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9
|
-
encapsulation: ViewEncapsulation.None,
|
|
10
9
|
host: {
|
|
11
10
|
'[class]': '_computedClass()',
|
|
12
11
|
},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component,
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, input, signal } from '@angular/core';
|
|
2
2
|
import { injectExposesStateProvider } from '@spartan-ng/brain/core';
|
|
3
3
|
import { hlm } from '<%- importAlias %>/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
@@ -13,7 +13,6 @@ import type { ClassValue } from 'clsx';
|
|
|
13
13
|
<ng-content />
|
|
14
14
|
`,
|
|
15
15
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
16
|
-
encapsulation: ViewEncapsulation.None,
|
|
17
16
|
})
|
|
18
17
|
export class HlmAlertDialogContent {
|
|
19
18
|
private readonly _stateProvider = injectExposesStateProvider({ optional: true, host: true });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component,
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { hlm } from '<%- importAlias %>/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
|
|
@@ -11,7 +11,6 @@ import type { ClassValue } from 'clsx';
|
|
|
11
11
|
'[class]': '_computedClass()',
|
|
12
12
|
},
|
|
13
13
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
14
|
-
encapsulation: ViewEncapsulation.None,
|
|
15
14
|
})
|
|
16
15
|
export class HlmAlertDialogFooter {
|
|
17
16
|
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component,
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { hlm } from '<%- importAlias %>/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
|
|
@@ -11,7 +11,6 @@ import type { ClassValue } from 'clsx';
|
|
|
11
11
|
'[class]': '_computedClass()',
|
|
12
12
|
},
|
|
13
13
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
14
|
-
encapsulation: ViewEncapsulation.None,
|
|
15
14
|
})
|
|
16
15
|
export class HlmAlertDialogHeader {
|
|
17
16
|
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, forwardRef
|
|
1
|
+
import { ChangeDetectionStrategy, Component, forwardRef } from '@angular/core';
|
|
2
2
|
import {
|
|
3
3
|
BRN_ALERT_DIALOG_DEFAULT_OPTIONS,
|
|
4
4
|
BrnAlertDialog,
|
|
@@ -23,7 +23,6 @@ import { HlmAlertDialogOverlay } from './hlm-alert-dialog-overlay';
|
|
|
23
23
|
}),
|
|
24
24
|
],
|
|
25
25
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
26
|
-
encapsulation: ViewEncapsulation.None,
|
|
27
26
|
exportAs: 'hlmAlertDialog',
|
|
28
27
|
imports: [BrnAlertDialogOverlay, HlmAlertDialogOverlay],
|
|
29
28
|
})
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component,
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { BrnAvatar } from '@spartan-ng/brain/avatar';
|
|
3
3
|
import { hlm } from '<%- importAlias %>/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
@@ -6,7 +6,6 @@ import type { ClassValue } from 'clsx';
|
|
|
6
6
|
@Component({
|
|
7
7
|
selector: 'hlm-avatar',
|
|
8
8
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9
|
-
encapsulation: ViewEncapsulation.None,
|
|
10
9
|
host: {
|
|
11
10
|
'[class]': '_computedClass()',
|
|
12
11
|
},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component,
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, inject, input } from '@angular/core';
|
|
2
2
|
import { hlm } from '<%- importAlias %>/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
import { HlmCarousel } from './hlm-carousel';
|
|
@@ -6,7 +6,6 @@ import { HlmCarousel } from './hlm-carousel';
|
|
|
6
6
|
@Component({
|
|
7
7
|
selector: 'hlm-carousel-content',
|
|
8
8
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9
|
-
encapsulation: ViewEncapsulation.None,
|
|
10
9
|
host: {
|
|
11
10
|
'[class]': '_computedClass()',
|
|
12
11
|
},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component,
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, inject, input } from '@angular/core';
|
|
2
2
|
import { hlm } from '<%- importAlias %>/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
import { HlmCarousel } from './hlm-carousel';
|
|
@@ -6,7 +6,6 @@ import { HlmCarousel } from './hlm-carousel';
|
|
|
6
6
|
@Component({
|
|
7
7
|
selector: 'hlm-carousel-item',
|
|
8
8
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9
|
-
encapsulation: ViewEncapsulation.None,
|
|
10
9
|
host: {
|
|
11
10
|
'[class]': '_computedClass()',
|
|
12
11
|
role: 'group',
|
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ChangeDetectionStrategy,
|
|
3
|
-
Component,
|
|
4
|
-
ViewEncapsulation,
|
|
5
|
-
computed,
|
|
6
|
-
effect,
|
|
7
|
-
inject,
|
|
8
|
-
input,
|
|
9
|
-
untracked,
|
|
10
|
-
} from '@angular/core';
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, effect, inject, input, untracked } from '@angular/core';
|
|
11
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
12
3
|
import { lucideArrowRight } from '@ng-icons/lucide';
|
|
13
4
|
import { HlmButton, provideBrnButtonConfig } from '<%- importAlias %>/button';
|
|
@@ -19,7 +10,6 @@ import { HlmCarousel } from './hlm-carousel';
|
|
|
19
10
|
@Component({
|
|
20
11
|
selector: 'button[hlm-carousel-next], button[hlmCarouselNext]',
|
|
21
12
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
22
|
-
encapsulation: ViewEncapsulation.None,
|
|
23
13
|
host: {
|
|
24
14
|
'[disabled]': 'isDisabled()',
|
|
25
15
|
'(click)': '_carousel.scrollNext()',
|
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ChangeDetectionStrategy,
|
|
3
|
-
Component,
|
|
4
|
-
ViewEncapsulation,
|
|
5
|
-
computed,
|
|
6
|
-
effect,
|
|
7
|
-
inject,
|
|
8
|
-
input,
|
|
9
|
-
untracked,
|
|
10
|
-
} from '@angular/core';
|
|
1
|
+
import { ChangeDetectionStrategy, Component, computed, effect, inject, input, untracked } from '@angular/core';
|
|
11
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
12
3
|
import { lucideArrowLeft } from '@ng-icons/lucide';
|
|
13
4
|
import { HlmButton, provideBrnButtonConfig } from '<%- importAlias %>/button';
|
|
@@ -19,7 +10,6 @@ import { HlmCarousel } from './hlm-carousel';
|
|
|
19
10
|
@Component({
|
|
20
11
|
selector: 'button[hlm-carousel-previous], button[hlmCarouselPrevious]',
|
|
21
12
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
22
|
-
encapsulation: ViewEncapsulation.None,
|
|
23
13
|
host: {
|
|
24
14
|
'[disabled]': 'isDisabled()',
|
|
25
15
|
'(click)': '_carousel.scrollPrev()',
|
|
@@ -3,7 +3,6 @@ import {
|
|
|
3
3
|
Component,
|
|
4
4
|
type InputSignal,
|
|
5
5
|
type Signal,
|
|
6
|
-
ViewEncapsulation,
|
|
7
6
|
computed,
|
|
8
7
|
input,
|
|
9
8
|
signal,
|
|
@@ -21,7 +20,6 @@ import {
|
|
|
21
20
|
@Component({
|
|
22
21
|
selector: 'hlm-carousel',
|
|
23
22
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
24
|
-
encapsulation: ViewEncapsulation.None,
|
|
25
23
|
host: {
|
|
26
24
|
'[class]': '_computedClass()',
|
|
27
25
|
role: 'region',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NgComponentOutlet } from '@angular/common';
|
|
2
|
-
import { ChangeDetectionStrategy, Component,
|
|
2
|
+
import { ChangeDetectionStrategy, Component, computed, inject, input } from '@angular/core';
|
|
3
3
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
4
4
|
import { lucideX } from '@ng-icons/lucide';
|
|
5
5
|
import { BrnDialogClose, BrnDialogRef, injectBrnDialogContext } from '@spartan-ng/brain/dialog';
|
|
@@ -29,7 +29,6 @@ import { HlmDialogClose } from './hlm-dialog-close';
|
|
|
29
29
|
</button>
|
|
30
30
|
`,
|
|
31
31
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
32
|
-
encapsulation: ViewEncapsulation.None,
|
|
33
32
|
})
|
|
34
33
|
export class HlmDialogContent {
|
|
35
34
|
private readonly _dialogRef = inject(BrnDialogRef);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, forwardRef
|
|
1
|
+
import { ChangeDetectionStrategy, Component, forwardRef } from '@angular/core';
|
|
2
2
|
import { BrnDialog, BrnDialogOverlay, provideBrnDialogDefaultOptions } from '@spartan-ng/brain/dialog';
|
|
3
3
|
import { HlmDialogOverlay } from './hlm-dialog-overlay';
|
|
4
4
|
|
|
@@ -19,7 +19,6 @@ import { HlmDialogOverlay } from './hlm-dialog-overlay';
|
|
|
19
19
|
<ng-content />
|
|
20
20
|
`,
|
|
21
21
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
22
|
-
encapsulation: ViewEncapsulation.None,
|
|
23
22
|
exportAs: 'hlmDialog',
|
|
24
23
|
})
|
|
25
24
|
export class HlmDialog extends BrnDialog {}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, forwardRef
|
|
1
|
+
import { ChangeDetectionStrategy, Component, forwardRef } from '@angular/core';
|
|
2
2
|
import { BrnDialog, provideBrnDialogDefaultOptions } from '@spartan-ng/brain/dialog';
|
|
3
3
|
import { BrnSheet, BrnSheetOverlay } from '@spartan-ng/brain/sheet';
|
|
4
4
|
import { HlmSheetOverlay } from './hlm-sheet-overlay';
|
|
@@ -23,7 +23,6 @@ import { HlmSheetOverlay } from './hlm-sheet-overlay';
|
|
|
23
23
|
<brn-sheet-overlay hlm />
|
|
24
24
|
<ng-content />
|
|
25
25
|
`,
|
|
26
|
-
encapsulation: ViewEncapsulation.None,
|
|
27
26
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
28
27
|
exportAs: 'hlmSheet',
|
|
29
28
|
})
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component
|
|
1
|
+
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
2
2
|
import { BrnTooltip } from '@spartan-ng/brain/tooltip';
|
|
3
3
|
|
|
4
4
|
@Component({
|
|
5
5
|
selector: 'hlm-tooltip',
|
|
6
|
-
encapsulation: ViewEncapsulation.None,
|
|
7
6
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
8
7
|
host: {
|
|
9
8
|
'[style]': '{display: "contents"}',
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "accordion",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/core": "^19.0.0",
|
|
6
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
6
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
7
7
|
"clsx": "^2.1.1",
|
|
8
8
|
"@ng-icons/core": "^31.4.0",
|
|
9
9
|
"@ng-icons/lucide": "^31.4.0"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"name": "alert-dialog",
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@angular/core": "^19.0.0",
|
|
24
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
24
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
25
25
|
"clsx": "^2.1.1"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@angular/core": "^19.0.0",
|
|
40
40
|
"clsx": "^2.1.1",
|
|
41
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
41
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
42
42
|
"@angular/cdk": "^19.0.0",
|
|
43
43
|
"@angular/common": "^19.0.0",
|
|
44
44
|
"@angular/forms": "^19.0.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"name": "avatar",
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@angular/core": "^19.0.0",
|
|
53
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
53
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
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": "^19.0.0",
|
|
79
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
79
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
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": "^19.0.0",
|
|
88
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
88
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
89
89
|
"clsx": "^2.1.1",
|
|
90
90
|
"class-variance-authority": "^0.7.0"
|
|
91
91
|
}
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"@angular/core": "^19.0.0",
|
|
99
99
|
"@ng-icons/core": "^31.4.0",
|
|
100
100
|
"@ng-icons/lucide": "^31.4.0",
|
|
101
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
101
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
102
102
|
"clsx": "^2.1.1"
|
|
103
103
|
}
|
|
104
104
|
},
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"@angular/cdk": "^19.0.0",
|
|
129
129
|
"@ng-icons/core": "^31.4.0",
|
|
130
130
|
"@ng-icons/lucide": "^31.4.0",
|
|
131
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
131
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
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": "^19.0.0",
|
|
139
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
139
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
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": "^19.0.0",
|
|
147
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
147
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
148
148
|
"clsx": "^2.1.1"
|
|
149
149
|
}
|
|
150
150
|
},
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"@angular/forms": "^19.0.0",
|
|
157
157
|
"@ng-icons/core": "^31.4.0",
|
|
158
158
|
"@ng-icons/lucide": "^31.4.0",
|
|
159
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
159
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
160
160
|
"clsx": "^2.1.1"
|
|
161
161
|
}
|
|
162
162
|
},
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
"@angular/common": "^19.0.0",
|
|
169
169
|
"@ng-icons/core": "^31.4.0",
|
|
170
170
|
"@ng-icons/lucide": "^31.4.0",
|
|
171
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
171
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
172
172
|
"@angular/cdk": "^19.0.0"
|
|
173
173
|
}
|
|
174
174
|
},
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"peerDependencies": {
|
|
194
194
|
"@angular/core": "^19.0.0",
|
|
195
195
|
"@angular/forms": "^19.0.0",
|
|
196
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
196
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
197
197
|
"clsx": "^2.1.1"
|
|
198
198
|
}
|
|
199
199
|
},
|
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
"name": "hover-card",
|
|
202
202
|
"peerDependencies": {
|
|
203
203
|
"@angular/core": "^19.0.0",
|
|
204
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
204
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
205
205
|
"clsx": "^2.1.1"
|
|
206
206
|
}
|
|
207
207
|
},
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
"peerDependencies": {
|
|
219
219
|
"@angular/core": "^19.0.0",
|
|
220
220
|
"@angular/forms": "^19.0.0",
|
|
221
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
221
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
222
222
|
"class-variance-authority": "^0.7.0",
|
|
223
223
|
"clsx": "^2.1.1"
|
|
224
224
|
}
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
"@ng-icons/core": "^31.4.0",
|
|
240
240
|
"@ng-icons/lucide": "^31.4.0",
|
|
241
241
|
"@angular/cdk": "^19.0.0",
|
|
242
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
242
|
+
"@spartan-ng/brain": "0.0.1-alpha.557"
|
|
243
243
|
}
|
|
244
244
|
},
|
|
245
245
|
"item": {
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"@angular/core": "^19.0.0",
|
|
249
249
|
"clsx": "^2.1.1",
|
|
250
250
|
"class-variance-authority": "^0.7.0",
|
|
251
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
251
|
+
"@spartan-ng/brain": "0.0.1-alpha.557"
|
|
252
252
|
}
|
|
253
253
|
},
|
|
254
254
|
"kbd": {
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
"name": "label",
|
|
263
263
|
"peerDependencies": {
|
|
264
264
|
"@angular/core": "^19.0.0",
|
|
265
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
265
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
266
266
|
"clsx": "^2.1.1"
|
|
267
267
|
}
|
|
268
268
|
},
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"name": "menu",
|
|
271
271
|
"peerDependencies": {
|
|
272
272
|
"@angular/core": "^19.0.0",
|
|
273
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
273
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
274
274
|
"clsx": "^2.1.1",
|
|
275
275
|
"@ng-icons/core": "^31.4.0",
|
|
276
276
|
"@ng-icons/lucide": "^31.4.0",
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
"peerDependencies": {
|
|
284
284
|
"@angular/core": "^19.0.0",
|
|
285
285
|
"clsx": "^2.1.1",
|
|
286
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
286
|
+
"@spartan-ng/brain": "0.0.1-alpha.557"
|
|
287
287
|
}
|
|
288
288
|
},
|
|
289
289
|
"pagination": {
|
|
@@ -292,7 +292,7 @@
|
|
|
292
292
|
"@angular/cdk": "^19.0.0",
|
|
293
293
|
"@angular/core": "^19.0.0",
|
|
294
294
|
"@angular/forms": "^19.0.0",
|
|
295
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
295
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
296
296
|
"class-variance-authority": "^0.7.0",
|
|
297
297
|
"clsx": "^2.1.1",
|
|
298
298
|
"@ng-icons/core": "^31.4.0",
|
|
@@ -305,14 +305,14 @@
|
|
|
305
305
|
"peerDependencies": {
|
|
306
306
|
"@angular/core": "^19.0.0",
|
|
307
307
|
"clsx": "^2.1.1",
|
|
308
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
308
|
+
"@spartan-ng/brain": "0.0.1-alpha.557"
|
|
309
309
|
}
|
|
310
310
|
},
|
|
311
311
|
"progress": {
|
|
312
312
|
"name": "progress",
|
|
313
313
|
"peerDependencies": {
|
|
314
314
|
"@angular/core": "^19.0.0",
|
|
315
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
315
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
316
316
|
"clsx": "^2.1.1"
|
|
317
317
|
}
|
|
318
318
|
},
|
|
@@ -320,7 +320,7 @@
|
|
|
320
320
|
"name": "radio-group",
|
|
321
321
|
"peerDependencies": {
|
|
322
322
|
"@angular/core": "^19.0.0",
|
|
323
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
323
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
324
324
|
"clsx": "^2.1.1",
|
|
325
325
|
"@angular/common": "^19.0.0"
|
|
326
326
|
}
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"name": "resizable",
|
|
330
330
|
"peerDependencies": {
|
|
331
331
|
"@angular/core": "^19.0.0",
|
|
332
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
332
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
333
333
|
"clsx": "^2.1.1",
|
|
334
334
|
"@ng-icons/core": "^31.4.0",
|
|
335
335
|
"@ng-icons/lucide": "^31.4.0"
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
"peerDependencies": {
|
|
348
348
|
"@angular/cdk": "^19.0.0",
|
|
349
349
|
"@angular/core": "^19.0.0",
|
|
350
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
350
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
351
351
|
"clsx": "^2.1.1",
|
|
352
352
|
"@ng-icons/core": "^31.4.0",
|
|
353
353
|
"@ng-icons/lucide": "^31.4.0",
|
|
@@ -358,7 +358,7 @@
|
|
|
358
358
|
"name": "separator",
|
|
359
359
|
"peerDependencies": {
|
|
360
360
|
"@angular/core": "^19.0.0",
|
|
361
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
361
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
362
362
|
"clsx": "^2.1.1"
|
|
363
363
|
}
|
|
364
364
|
},
|
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
"clsx": "^2.1.1",
|
|
370
370
|
"@ng-icons/core": "^31.4.0",
|
|
371
371
|
"@ng-icons/lucide": "^31.4.0",
|
|
372
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
372
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
373
373
|
"class-variance-authority": "^0.7.0"
|
|
374
374
|
}
|
|
375
375
|
},
|
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
"peerDependencies": {
|
|
379
379
|
"@angular/core": "^19.0.0",
|
|
380
380
|
"clsx": "^2.1.1",
|
|
381
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
381
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
382
382
|
"class-variance-authority": "^0.7.0",
|
|
383
383
|
"@ng-icons/core": "^31.4.0",
|
|
384
384
|
"@ng-icons/lucide": "^31.4.0",
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
"name": "slider",
|
|
397
397
|
"peerDependencies": {
|
|
398
398
|
"@angular/core": "^19.0.0",
|
|
399
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
399
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
400
400
|
"clsx": "^2.1.1"
|
|
401
401
|
}
|
|
402
402
|
},
|
|
@@ -424,7 +424,7 @@
|
|
|
424
424
|
"clsx": "^2.1.1",
|
|
425
425
|
"@angular/cdk": "^19.0.0",
|
|
426
426
|
"@angular/forms": "^19.0.0",
|
|
427
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
427
|
+
"@spartan-ng/brain": "0.0.1-alpha.557"
|
|
428
428
|
}
|
|
429
429
|
},
|
|
430
430
|
"table": {
|
|
@@ -438,7 +438,7 @@
|
|
|
438
438
|
"name": "tabs",
|
|
439
439
|
"peerDependencies": {
|
|
440
440
|
"@angular/core": "^19.0.0",
|
|
441
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
441
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
442
442
|
"clsx": "^2.1.1",
|
|
443
443
|
"class-variance-authority": "^0.7.0",
|
|
444
444
|
"@angular/cdk": "^19.0.0",
|
|
@@ -452,7 +452,7 @@
|
|
|
452
452
|
"peerDependencies": {
|
|
453
453
|
"@angular/core": "^19.0.0",
|
|
454
454
|
"@angular/forms": "^19.0.0",
|
|
455
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
455
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
456
456
|
"class-variance-authority": "^0.7.0",
|
|
457
457
|
"clsx": "^2.1.1"
|
|
458
458
|
}
|
|
@@ -461,7 +461,7 @@
|
|
|
461
461
|
"name": "toggle",
|
|
462
462
|
"peerDependencies": {
|
|
463
463
|
"@angular/core": "^19.0.0",
|
|
464
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
464
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
465
465
|
"class-variance-authority": "^0.7.0",
|
|
466
466
|
"clsx": "^2.1.1"
|
|
467
467
|
}
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
"name": "toggle-group",
|
|
471
471
|
"peerDependencies": {
|
|
472
472
|
"@angular/core": "^19.0.0",
|
|
473
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
473
|
+
"@spartan-ng/brain": "0.0.1-alpha.557",
|
|
474
474
|
"clsx": "^2.1.1",
|
|
475
475
|
"@angular/cdk": "^19.0.0"
|
|
476
476
|
}
|
|
@@ -479,7 +479,7 @@
|
|
|
479
479
|
"name": "tooltip",
|
|
480
480
|
"peerDependencies": {
|
|
481
481
|
"@angular/core": "^19.0.0",
|
|
482
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
482
|
+
"@spartan-ng/brain": "0.0.1-alpha.557"
|
|
483
483
|
}
|
|
484
484
|
},
|
|
485
485
|
"typography": {
|