@spartan-ng/cli 0.0.1-alpha.484 → 0.0.1-alpha.486
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/migrate-helm-libraries/schema.json +1 -1
- package/src/generators/migrate-icon/schema.json +1 -1
- package/src/generators/migrate-radio/schema.json +1 -1
- package/src/generators/migrate-select/schema.json +1 -1
- package/src/generators/migrate-toggle-group/schema.json +1 -1
- package/src/generators/theme/__snapshots__/generator.spec.ts.snap +620 -0
- package/src/generators/theme/generator.js +3 -12
- package/src/generators/theme/generator.js.map +1 -1
- package/src/generators/theme/libs/add-theme-to-application-styles.d.ts +2 -3
- package/src/generators/theme/libs/add-theme-to-application-styles.js +14 -2
- package/src/generators/theme/libs/add-theme-to-application-styles.js.map +1 -1
- package/src/generators/theme/libs/colors.d.ts +14 -0
- package/src/generators/theme/libs/colors.js +451 -0
- package/src/generators/theme/libs/colors.js.map +1 -0
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-content.component.ts.template +1 -6
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-icon.directive.ts.template +4 -1
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-trigger.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-content.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-description.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-footer.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-header.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-overlay.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-helm/files/lib/hlm-alert-description.directive.ts.template +6 -7
- package/src/generators/ui/libs/ui-alert-helm/files/lib/hlm-alert-title.directive.ts.template +3 -7
- package/src/generators/ui/libs/ui-alert-helm/files/lib/hlm-alert.directive.ts.template +5 -4
- package/src/generators/ui/libs/ui-avatar-helm/files/lib/fallback/hlm-avatar-fallback.directive.ts.template +3 -18
- package/src/generators/ui/libs/ui-avatar-helm/files/lib/hlm-avatar.component.ts.template +1 -18
- package/src/generators/ui/libs/ui-avatar-helm/files/lib/image/hlm-avatar-image.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-badge-helm/files/index.ts.template +4 -2
- package/src/generators/ui/libs/ui-badge-helm/files/lib/hlm-badge.directive.ts.template +10 -37
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-ellipsis.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-link.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-list.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-separator.component.ts.template +4 -6
- package/src/generators/ui/libs/ui-button-helm/files/index.ts.template +1 -2
- package/src/generators/ui/libs/ui-button-helm/files/lib/hlm-button.directive.ts.template +14 -11
- package/src/generators/ui/libs/ui-calendar-helm/files/lib/hlm-calendar-multi.component.ts.template +3 -3
- package/src/generators/ui/libs/ui-calendar-helm/files/lib/hlm-calendar.component.ts.template +6 -6
- package/src/generators/ui/libs/ui-card-helm/files/index.ts.template +3 -0
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-action.directive.ts.template +17 -0
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-content.directive.ts.template +1 -8
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-description.directive.ts.template +1 -8
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-footer.directive.ts.template +1 -17
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-header.directive.ts.template +6 -17
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-title.directive.ts.template +1 -8
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card.directive.ts.template +4 -7
- package/src/generators/ui/libs/ui-checkbox-helm/files/lib/hlm-checkbox.component.ts.template +11 -10
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-dialog.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-group-label.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-group.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-icon.directive.ts.template +10 -3
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-item.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-list.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-search-input.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-search.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-separator.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-shortcut.component.ts.template +10 -3
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command.component.ts.template +1 -4
- package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-picker-multi.component.ts.template +2 -2
- package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-picker.component.ts.template +7 -7
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-overlay.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-error.directive.ts.template +10 -3
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-form-field.component.ts.template +14 -2
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-hint.directive.ts.template +8 -3
- package/src/generators/ui/libs/ui-input-helm/files/index.ts.template +2 -4
- package/src/generators/ui/libs/ui-input-helm/files/lib/hlm-input.directive.ts.template +10 -21
- package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp-separator.component.ts.template +4 -4
- package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp-slot.component.ts.template +2 -2
- package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-label-helm/files/lib/hlm-label.directive.ts.template +2 -47
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-bar-item.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-bar.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-sub-indicator.component.ts.template +3 -3
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item.directive.ts.template +16 -19
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-label.component.ts.template +9 -9
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-separator.component.ts.template +2 -2
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-shortcut.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu.component.ts.template +4 -8
- package/src/generators/ui/libs/ui-progress-helm/files/lib/hlm-progress-indicator.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-progress-helm/files/lib/hlm-progress.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-radio-group-helm/files/lib/hlm-radio-group.component.ts.template +2 -1
- package/src/generators/ui/libs/ui-radio-group-helm/files/lib/hlm-radio-indicator.component.ts.template +7 -8
- package/src/generators/ui/libs/ui-radio-group-helm/files/lib/hlm-radio.component.ts.template +2 -7
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-label.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-option.component.ts.template +4 -7
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-scroll-down.component.ts.template +10 -3
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-scroll-up.component.ts.template +10 -3
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-trigger.component.ts.template +8 -14
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-value.directive.ts.template +1 -4
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-close.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-content.component.ts.template +5 -5
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-description.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-footer.component.ts.template +1 -3
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-header.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-overlay.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-title.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-slider-helm/files/lib/hlm-slider.component.ts.template +3 -3
- package/src/generators/ui/libs/ui-switch-helm/files/lib/hlm-switch-thumb.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-switch-helm/files/lib/hlm-switch.component.ts.template +1 -2
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-list.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-trigger.directive.ts.template +2 -2
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs.component.ts.template +9 -1
- package/src/generators/ui/libs/ui-toggle-group-helm/files/lib/hlm-toggle-group.directive.ts.template +8 -8
- package/src/generators/ui/libs/ui-toggle-group-helm/files/lib/hlm-toggle-item.directive.ts.template +15 -14
- package/src/generators/ui/libs/ui-tooltip-helm/files/lib/hlm-tooltip-trigger.directive.ts.template +2 -2
- package/src/generators/ui/supported-ui-libraries.json +47 -47
- package/src/generators/theme/libs/supported-theme-generator-map.d.ts +0 -17
- package/src/generators/theme/libs/supported-theme-generator-map.js +0 -584
- package/src/generators/theme/libs/supported-theme-generator-map.js.map +0 -1
package/src/generators/ui/libs/ui-toggle-group-helm/files/lib/hlm-toggle-item.directive.ts.template
CHANGED
|
@@ -5,19 +5,17 @@ import type { ClassValue } from 'clsx';
|
|
|
5
5
|
import { injectHlmToggleGroup } from './hlm-toggle-group.token';
|
|
6
6
|
|
|
7
7
|
export const toggleGroupItemVariants = cva(
|
|
8
|
-
'inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground',
|
|
8
|
+
'inline-flex items-center justify-center rounded-md text-sm font-medium ring-offset-background transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_ng-icon]:pointer-events-none [&_ng-icon]:text-base [&_ng-icon]:shrink-0 gap-2',
|
|
9
9
|
{
|
|
10
10
|
variants: {
|
|
11
11
|
variant: {
|
|
12
12
|
default: 'bg-transparent',
|
|
13
13
|
outline: 'border border-input bg-transparent hover:bg-accent hover:text-accent-foreground',
|
|
14
|
-
merged:
|
|
15
|
-
'border border-l-0 first-of-type:border-l border-input bg-transparent hover:bg-accent hover:text-accent-foreground',
|
|
16
14
|
},
|
|
17
15
|
size: {
|
|
18
|
-
default: 'h-
|
|
19
|
-
sm: 'h-
|
|
20
|
-
lg: 'h-
|
|
16
|
+
default: 'h-10 px-3 min-w-10',
|
|
17
|
+
sm: 'h-9 px-2 min-w-9',
|
|
18
|
+
lg: 'h-11 px-5 min-w-11',
|
|
21
19
|
},
|
|
22
20
|
},
|
|
23
21
|
defaultVariants: {
|
|
@@ -26,29 +24,32 @@ export const toggleGroupItemVariants = cva(
|
|
|
26
24
|
},
|
|
27
25
|
},
|
|
28
26
|
);
|
|
27
|
+
|
|
29
28
|
type ToggleGroupItemVariants = VariantProps<typeof toggleGroupItemVariants>;
|
|
30
29
|
|
|
31
30
|
@Directive({
|
|
32
31
|
selector: '[hlmToggleGroupItem],[brnToggleGroupItem][hlm]',
|
|
33
32
|
host: {
|
|
34
33
|
'[class]': '_computedClass()',
|
|
34
|
+
'[attr.data-variant]': 'variant()',
|
|
35
35
|
},
|
|
36
36
|
})
|
|
37
37
|
export class HlmToggleGroupItemDirective {
|
|
38
38
|
private readonly _parentGroup = injectHlmToggleGroup();
|
|
39
|
-
public readonly variant = input<ToggleGroupItemVariants['variant']>('
|
|
40
|
-
public readonly size = input<ToggleGroupItemVariants['size']>('
|
|
39
|
+
public readonly variant = input<ToggleGroupItemVariants['variant']>('outline');
|
|
40
|
+
public readonly size = input<ToggleGroupItemVariants['size']>('sm');
|
|
41
41
|
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
42
42
|
protected readonly _computedClass = computed(() => {
|
|
43
|
-
const
|
|
44
|
-
const
|
|
45
|
-
|
|
43
|
+
const variant = this._parentGroup?.variant() ?? this.variant();
|
|
44
|
+
const size = this._parentGroup?.size() ?? this.size();
|
|
45
|
+
|
|
46
46
|
return hlm(
|
|
47
47
|
toggleGroupItemVariants({
|
|
48
|
-
variant
|
|
49
|
-
size
|
|
48
|
+
variant,
|
|
49
|
+
size,
|
|
50
50
|
}),
|
|
51
|
-
|
|
51
|
+
'min-w-0 flex-1 shrink-0 rounded-none shadow-none first:rounded-l-md last:rounded-r-md focus:z-10 focus-visible:z-10 data-[variant=outline]:border-l-0 data-[variant=outline]:first:border-l',
|
|
52
|
+
this.userClass(),
|
|
52
53
|
);
|
|
53
54
|
});
|
|
54
55
|
}
|
package/src/generators/ui/libs/ui-tooltip-helm/files/lib/hlm-tooltip-trigger.directive.ts.template
CHANGED
|
@@ -2,8 +2,8 @@ import { Directive } from '@angular/core';
|
|
|
2
2
|
import { BrnTooltipTriggerDirective, provideBrnTooltipDefaultOptions } from '@spartan-ng/brain/tooltip';
|
|
3
3
|
|
|
4
4
|
const DEFAULT_TOOLTIP_CONTENT_CLASSES =
|
|
5
|
-
'
|
|
6
|
-
|
|
5
|
+
'bg-primary text-primary-foreground animate-in fade-in-0 zoom-in-95 z-50 w-fit rounded-md px-3 py-1.5 text-xs text-balance';
|
|
6
|
+
'data-[state=open]:animate-in ' +
|
|
7
7
|
'data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 ' +
|
|
8
8
|
'data-[side=below]:slide-in-from-top-2 data-[side=above]:slide-in-from-bottom-2 ' +
|
|
9
9
|
'data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 ';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"internalName": "ui-accordion-helm",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/core": ">=19.0.0",
|
|
6
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
6
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
7
7
|
"clsx": "^2.1.1",
|
|
8
8
|
"@ng-icons/core": ">=29.0.0",
|
|
9
9
|
"@ng-icons/lucide": ">=29.0.0"
|
|
@@ -13,16 +13,16 @@
|
|
|
13
13
|
"internalName": "ui-alert-helm",
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"@angular/core": ">=19.0.0",
|
|
16
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
17
|
-
"
|
|
18
|
-
"
|
|
16
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
17
|
+
"clsx": "^2.1.1",
|
|
18
|
+
"class-variance-authority": "^0.7.0"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"alert-dialog": {
|
|
22
22
|
"internalName": "ui-alert-dialog-helm",
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@angular/core": ">=19.0.0",
|
|
25
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
25
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
26
26
|
"clsx": "^2.1.1"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@angular/core": ">=19.0.0",
|
|
33
33
|
"@angular/cdk": ">=19.0.0",
|
|
34
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
34
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
35
35
|
"clsx": "^2.1.1"
|
|
36
36
|
}
|
|
37
37
|
},
|
|
@@ -39,8 +39,7 @@
|
|
|
39
39
|
"internalName": "ui-avatar-helm",
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@angular/core": ">=19.0.0",
|
|
42
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
43
|
-
"class-variance-authority": "^0.7.0",
|
|
42
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
44
43
|
"clsx": "^2.1.1"
|
|
45
44
|
}
|
|
46
45
|
},
|
|
@@ -48,8 +47,7 @@
|
|
|
48
47
|
"internalName": "ui-badge-helm",
|
|
49
48
|
"peerDependencies": {
|
|
50
49
|
"@angular/core": ">=19.0.0",
|
|
51
|
-
"@
|
|
52
|
-
"@spartan-ng/brain": "0.0.1-alpha.484",
|
|
50
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
53
51
|
"class-variance-authority": "^0.7.0",
|
|
54
52
|
"clsx": "^2.1.1"
|
|
55
53
|
}
|
|
@@ -60,7 +58,7 @@
|
|
|
60
58
|
"@angular/core": ">=19.0.0",
|
|
61
59
|
"@ng-icons/core": ">=29.0.0",
|
|
62
60
|
"@ng-icons/lucide": ">=29.0.0",
|
|
63
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
61
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
64
62
|
"clsx": "^2.1.1",
|
|
65
63
|
"@angular/router": ">=19.0.0"
|
|
66
64
|
}
|
|
@@ -69,7 +67,7 @@
|
|
|
69
67
|
"internalName": "ui-button-helm",
|
|
70
68
|
"peerDependencies": {
|
|
71
69
|
"@angular/core": ">=19.0.0",
|
|
72
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
70
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
73
71
|
"class-variance-authority": "^0.7.0",
|
|
74
72
|
"clsx": "^2.1.1"
|
|
75
73
|
}
|
|
@@ -81,7 +79,7 @@
|
|
|
81
79
|
"@angular/cdk": ">=19.0.0",
|
|
82
80
|
"@ng-icons/core": ">=29.0.0",
|
|
83
81
|
"@ng-icons/lucide": ">=29.0.0",
|
|
84
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
82
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
85
83
|
"clsx": "^2.1.1"
|
|
86
84
|
}
|
|
87
85
|
},
|
|
@@ -89,16 +87,16 @@
|
|
|
89
87
|
"internalName": "ui-card-helm",
|
|
90
88
|
"peerDependencies": {
|
|
91
89
|
"@angular/core": ">=19.0.0",
|
|
92
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
93
|
-
"
|
|
94
|
-
"
|
|
90
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
91
|
+
"clsx": "^2.1.1",
|
|
92
|
+
"class-variance-authority": "^0.7.0"
|
|
95
93
|
}
|
|
96
94
|
},
|
|
97
95
|
"carousel": {
|
|
98
96
|
"internalName": "ui-carousel-helm",
|
|
99
97
|
"peerDependencies": {
|
|
100
98
|
"@angular/core": ">=19.0.0",
|
|
101
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
99
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
102
100
|
"clsx": "^2.1.1",
|
|
103
101
|
"@ng-icons/core": ">=29.0.0",
|
|
104
102
|
"@ng-icons/lucide": ">=29.0.0",
|
|
@@ -109,10 +107,11 @@
|
|
|
109
107
|
"internalName": "ui-checkbox-helm",
|
|
110
108
|
"peerDependencies": {
|
|
111
109
|
"@angular/core": ">=19.0.0",
|
|
110
|
+
"@angular/cdk": ">=19.0.0",
|
|
112
111
|
"@angular/forms": ">=19.0.0",
|
|
113
112
|
"@ng-icons/core": ">=29.0.0",
|
|
114
113
|
"@ng-icons/lucide": ">=29.0.0",
|
|
115
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
114
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
116
115
|
"clsx": "^2.1.1"
|
|
117
116
|
}
|
|
118
117
|
},
|
|
@@ -120,7 +119,7 @@
|
|
|
120
119
|
"internalName": "ui-command-helm",
|
|
121
120
|
"peerDependencies": {
|
|
122
121
|
"@angular/core": ">=19.0.0",
|
|
123
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
122
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
124
123
|
"clsx": "^2.1.1",
|
|
125
124
|
"@angular/cdk": ">=19.0.0"
|
|
126
125
|
}
|
|
@@ -133,7 +132,7 @@
|
|
|
133
132
|
"@angular/forms": ">=19.0.0",
|
|
134
133
|
"@ng-icons/core": ">=29.0.0",
|
|
135
134
|
"@ng-icons/lucide": ">=29.0.0",
|
|
136
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
135
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
137
136
|
"clsx": "^2.1.1"
|
|
138
137
|
}
|
|
139
138
|
},
|
|
@@ -141,7 +140,7 @@
|
|
|
141
140
|
"internalName": "ui-dialog-helm",
|
|
142
141
|
"peerDependencies": {
|
|
143
142
|
"@angular/core": ">=19.0.0",
|
|
144
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
143
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
145
144
|
"clsx": "^2.1.1",
|
|
146
145
|
"@angular/common": ">=19.0.0",
|
|
147
146
|
"@ng-icons/core": ">=29.0.0",
|
|
@@ -154,14 +153,15 @@
|
|
|
154
153
|
"peerDependencies": {
|
|
155
154
|
"@angular/core": ">=19.0.0",
|
|
156
155
|
"@angular/forms": ">=19.0.0",
|
|
157
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
156
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
157
|
+
"clsx": "^2.1.1"
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
160
|
"hover-card": {
|
|
161
161
|
"internalName": "ui-hover-card-helm",
|
|
162
162
|
"peerDependencies": {
|
|
163
163
|
"@angular/core": ">=19.0.0",
|
|
164
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
164
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
165
165
|
"clsx": "^2.1.1"
|
|
166
166
|
}
|
|
167
167
|
},
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
"internalName": "ui-input-helm",
|
|
178
178
|
"peerDependencies": {
|
|
179
179
|
"@angular/core": ">=19.0.0",
|
|
180
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
180
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
181
181
|
"class-variance-authority": "^0.7.0",
|
|
182
182
|
"clsx": "^2.1.1",
|
|
183
183
|
"@angular/forms": ">=19.0.0"
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
"internalName": "ui-input-otp-helm",
|
|
188
188
|
"peerDependencies": {
|
|
189
189
|
"@angular/core": ">=19.0.0",
|
|
190
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
190
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
191
191
|
"clsx": "^2.1.1",
|
|
192
192
|
"@ng-icons/core": ">=29.0.0",
|
|
193
193
|
"@ng-icons/lucide": ">=29.0.0",
|
|
@@ -198,8 +198,7 @@
|
|
|
198
198
|
"internalName": "ui-label-helm",
|
|
199
199
|
"peerDependencies": {
|
|
200
200
|
"@angular/core": ">=19.0.0",
|
|
201
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
202
|
-
"class-variance-authority": "^0.7.0",
|
|
201
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
203
202
|
"clsx": "^2.1.1"
|
|
204
203
|
}
|
|
205
204
|
},
|
|
@@ -207,10 +206,11 @@
|
|
|
207
206
|
"internalName": "ui-menu-helm",
|
|
208
207
|
"peerDependencies": {
|
|
209
208
|
"@angular/core": ">=19.0.0",
|
|
210
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
209
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
211
210
|
"clsx": "^2.1.1",
|
|
212
211
|
"@ng-icons/core": ">=29.0.0",
|
|
213
212
|
"@ng-icons/lucide": ">=29.0.0",
|
|
213
|
+
"@angular/cdk": ">=19.0.0",
|
|
214
214
|
"class-variance-authority": "^0.7.0"
|
|
215
215
|
}
|
|
216
216
|
},
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"@angular/core": ">=19.0.0",
|
|
221
221
|
"@angular/cdk": ">=19.0.0",
|
|
222
222
|
"@angular/forms": ">=19.0.0",
|
|
223
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
223
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
224
224
|
"class-variance-authority": "^0.7.0",
|
|
225
225
|
"clsx": "^2.1.1",
|
|
226
226
|
"@ng-icons/core": ">=29.0.0",
|
|
@@ -232,7 +232,7 @@
|
|
|
232
232
|
"internalName": "ui-popover-helm",
|
|
233
233
|
"peerDependencies": {
|
|
234
234
|
"@angular/core": ">=19.0.0",
|
|
235
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
235
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
236
236
|
"clsx": "^2.1.1"
|
|
237
237
|
}
|
|
238
238
|
},
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
"internalName": "ui-progress-helm",
|
|
241
241
|
"peerDependencies": {
|
|
242
242
|
"@angular/core": ">=19.0.0",
|
|
243
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
243
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
244
244
|
"clsx": "^2.1.1"
|
|
245
245
|
}
|
|
246
246
|
},
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"internalName": "ui-radio-group-helm",
|
|
249
249
|
"peerDependencies": {
|
|
250
250
|
"@angular/core": ">=19.0.0",
|
|
251
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
251
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
252
252
|
"clsx": "^2.1.1",
|
|
253
253
|
"@angular/common": ">=19.0.0"
|
|
254
254
|
}
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"internalName": "ui-scroll-area-helm",
|
|
258
258
|
"peerDependencies": {
|
|
259
259
|
"@angular/core": ">=19.0.0",
|
|
260
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
260
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
261
261
|
"clsx": "^2.1.1"
|
|
262
262
|
}
|
|
263
263
|
},
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
"internalName": "ui-select-helm",
|
|
266
266
|
"peerDependencies": {
|
|
267
267
|
"@angular/core": ">=19.0.0",
|
|
268
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
268
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
269
269
|
"clsx": "^2.1.1",
|
|
270
270
|
"@ng-icons/core": ">=29.0.0",
|
|
271
271
|
"@ng-icons/lucide": ">=29.0.0",
|
|
@@ -276,7 +276,7 @@
|
|
|
276
276
|
"internalName": "ui-separator-helm",
|
|
277
277
|
"peerDependencies": {
|
|
278
278
|
"@angular/core": ">=19.0.0",
|
|
279
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
279
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
280
280
|
"clsx": "^2.1.1"
|
|
281
281
|
}
|
|
282
282
|
},
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
"internalName": "ui-sheet-helm",
|
|
285
285
|
"peerDependencies": {
|
|
286
286
|
"@angular/core": ">=19.0.0",
|
|
287
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
287
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
288
288
|
"clsx": "^2.1.1",
|
|
289
289
|
"@ng-icons/core": ">=29.0.0",
|
|
290
290
|
"@ng-icons/lucide": ">=29.0.0",
|
|
@@ -295,7 +295,7 @@
|
|
|
295
295
|
"internalName": "ui-skeleton-helm",
|
|
296
296
|
"peerDependencies": {
|
|
297
297
|
"@angular/core": ">=19.0.0",
|
|
298
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
298
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
299
299
|
"clsx": "^2.1.1"
|
|
300
300
|
}
|
|
301
301
|
},
|
|
@@ -303,7 +303,7 @@
|
|
|
303
303
|
"internalName": "ui-slider-helm",
|
|
304
304
|
"peerDependencies": {
|
|
305
305
|
"@angular/core": ">=19.0.0",
|
|
306
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
306
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
307
307
|
"clsx": "^2.1.1"
|
|
308
308
|
}
|
|
309
309
|
},
|
|
@@ -311,7 +311,7 @@
|
|
|
311
311
|
"internalName": "ui-sonner-helm",
|
|
312
312
|
"peerDependencies": {
|
|
313
313
|
"@angular/core": ">=19.0.0",
|
|
314
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
314
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
315
315
|
"clsx": "^2.1.1",
|
|
316
316
|
"ngx-sonner": ">=3.0.0"
|
|
317
317
|
}
|
|
@@ -320,7 +320,7 @@
|
|
|
320
320
|
"internalName": "ui-spinner-helm",
|
|
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.486",
|
|
324
324
|
"class-variance-authority": "^0.7.0",
|
|
325
325
|
"clsx": "^2.1.1"
|
|
326
326
|
}
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"internalName": "ui-switch-helm",
|
|
330
330
|
"peerDependencies": {
|
|
331
331
|
"@angular/core": ">=19.0.0",
|
|
332
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
332
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
333
333
|
"clsx": "^2.1.1",
|
|
334
334
|
"@angular/cdk": ">=19.0.0",
|
|
335
335
|
"@angular/forms": ">=19.0.0"
|
|
@@ -339,7 +339,7 @@
|
|
|
339
339
|
"internalName": "ui-table-helm",
|
|
340
340
|
"peerDependencies": {
|
|
341
341
|
"@angular/core": ">=19.0.0",
|
|
342
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
342
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
343
343
|
"clsx": "^2.1.1"
|
|
344
344
|
}
|
|
345
345
|
},
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
"internalName": "ui-tabs-helm",
|
|
348
348
|
"peerDependencies": {
|
|
349
349
|
"@angular/core": ">=19.0.0",
|
|
350
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
350
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
351
351
|
"clsx": "^2.1.1",
|
|
352
352
|
"class-variance-authority": "^0.7.0",
|
|
353
353
|
"@angular/cdk": ">=19.0.0",
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"internalName": "ui-toggle-helm",
|
|
361
361
|
"peerDependencies": {
|
|
362
362
|
"@angular/core": ">=19.0.0",
|
|
363
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
363
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
364
364
|
"class-variance-authority": "^0.7.0",
|
|
365
365
|
"clsx": "^2.1.1"
|
|
366
366
|
}
|
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
"internalName": "ui-toggle-group-helm",
|
|
370
370
|
"peerDependencies": {
|
|
371
371
|
"@angular/core": ">=19.0.0",
|
|
372
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
372
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
373
373
|
"class-variance-authority": "^0.7.0",
|
|
374
374
|
"clsx": "^2.1.1"
|
|
375
375
|
}
|
|
@@ -378,14 +378,14 @@
|
|
|
378
378
|
"internalName": "ui-tooltip-helm",
|
|
379
379
|
"peerDependencies": {
|
|
380
380
|
"@angular/core": ">=19.0.0",
|
|
381
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
381
|
+
"@spartan-ng/brain": "0.0.1-alpha.486"
|
|
382
382
|
}
|
|
383
383
|
},
|
|
384
384
|
"typography": {
|
|
385
385
|
"internalName": "ui-typography-helm",
|
|
386
386
|
"peerDependencies": {
|
|
387
387
|
"@angular/core": ">=19.0.0",
|
|
388
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
388
|
+
"@spartan-ng/brain": "0.0.1-alpha.486",
|
|
389
389
|
"clsx": "^2.1.1"
|
|
390
390
|
}
|
|
391
391
|
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
export declare const SupportedThemeGeneratorMap: {
|
|
2
|
-
zinc: (radius: number, prefix?: string) => string;
|
|
3
|
-
slate: (radius: number, prefix?: string) => string;
|
|
4
|
-
stone: (radius: number, prefix?: string) => string;
|
|
5
|
-
gray: (radius: number, prefix?: string) => string;
|
|
6
|
-
neutral: (radius: number, prefix?: string) => string;
|
|
7
|
-
red: (radius: number, prefix?: string) => string;
|
|
8
|
-
rose: (radius: number, prefix?: string) => string;
|
|
9
|
-
blue: (radius: number, prefix?: string) => string;
|
|
10
|
-
green: (radius: number, prefix?: string) => string;
|
|
11
|
-
orange: (radius: number, prefix?: string) => string;
|
|
12
|
-
yellow: (radius: number, prefix?: string) => string;
|
|
13
|
-
violet: (radius: number, prefix?: string) => string;
|
|
14
|
-
};
|
|
15
|
-
export declare const SupportedThemes: string[];
|
|
16
|
-
export type SupportedTheme = keyof typeof SupportedThemeGeneratorMap;
|
|
17
|
-
export declare const SupportedRadii: readonly ["0", "0.3", "0.5", "0.75", "1.0"];
|