@spartan-ng/cli 0.0.1-alpha.506 → 0.0.1-alpha.507
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/generators.json +20 -0
- package/package.json +1 -1
- package/src/generators/base/lib/build-dependency-array.d.ts +0 -1
- package/src/generators/base/lib/build-dependency-array.js +1 -1
- package/src/generators/base/lib/build-dependency-array.js.map +1 -1
- package/src/generators/healthcheck/generator.js +2 -0
- package/src/generators/healthcheck/generator.js.map +1 -1
- package/src/generators/healthcheck/healthchecks/hlm.d.ts +2 -0
- package/src/generators/healthcheck/healthchecks/hlm.js +32 -0
- package/src/generators/healthcheck/healthchecks/hlm.js.map +1 -0
- package/src/generators/healthcheck/healthchecks.d.ts +1 -1
- package/src/generators/healthcheck/healthchecks.js.map +1 -1
- package/src/generators/migrate-hlm/compat.d.ts +2 -0
- package/src/generators/migrate-hlm/compat.js +7 -0
- package/src/generators/migrate-hlm/compat.js.map +1 -0
- package/src/generators/migrate-hlm/generator.d.ts +4 -0
- package/src/generators/migrate-hlm/generator.js +102 -0
- package/src/generators/migrate-hlm/generator.js.map +1 -0
- package/src/generators/migrate-hlm/schema.d.ts +4 -0
- package/src/generators/migrate-hlm/schema.json +14 -0
- package/src/generators/theme/__snapshots__/generator.spec.ts.snap +40 -20
- package/src/generators/theme/libs/add-theme-to-application-styles.js +7 -7
- package/src/generators/theme/libs/add-theme-to-application-styles.js.map +1 -1
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-content.ts.template +1 -1
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-icon.ts.template +1 -1
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-item.ts.template +1 -1
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-trigger.ts.template +1 -1
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-content.ts.template +2 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-description.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-footer.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-header.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-overlay.ts.template +2 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-title.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-helm/files/lib/hlm-alert-description.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-helm/files/lib/hlm-alert-title.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-helm/files/lib/hlm-alert.ts.template +1 -1
- package/src/generators/ui/libs/ui-aspect-ratio-helm/files/lib/helm-aspect-ratio.ts.template +1 -1
- package/src/generators/ui/libs/ui-avatar-helm/files/lib/fallback/hlm-avatar-fallback.ts.template +1 -1
- package/src/generators/ui/libs/ui-avatar-helm/files/lib/hlm-avatar.ts.template +1 -1
- package/src/generators/ui/libs/ui-avatar-helm/files/lib/image/hlm-avatar-image.ts.template +1 -1
- package/src/generators/ui/libs/ui-badge-helm/files/lib/hlm-badge.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-ellipsis.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-item.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-link.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-list.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-page.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-separator.ts.template +1 -1
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb.ts.template +1 -1
- package/src/generators/ui/libs/ui-button-helm/files/lib/hlm-button.ts.template +1 -1
- package/src/generators/ui/libs/ui-calendar-helm/files/lib/hlm-calendar-multi.ts.template +12 -10
- package/src/generators/ui/libs/ui-calendar-helm/files/lib/hlm-calendar-range.ts.template +12 -10
- package/src/generators/ui/libs/ui-calendar-helm/files/lib/hlm-calendar.ts.template +12 -10
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-action.ts.template +1 -1
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-content.ts.template +1 -1
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-description.ts.template +1 -1
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-footer.ts.template +1 -1
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-header.ts.template +1 -1
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-title.ts.template +1 -1
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card.ts.template +1 -1
- package/src/generators/ui/libs/ui-carousel-helm/files/lib/hlm-carousel-content.ts.template +1 -1
- package/src/generators/ui/libs/ui-carousel-helm/files/lib/hlm-carousel-item.ts.template +1 -1
- package/src/generators/ui/libs/ui-carousel-helm/files/lib/hlm-carousel-next.ts.template +1 -1
- package/src/generators/ui/libs/ui-carousel-helm/files/lib/hlm-carousel-previous.ts.template +1 -1
- package/src/generators/ui/libs/ui-carousel-helm/files/lib/hlm-carousel-slide-display.ts.template +1 -1
- package/src/generators/ui/libs/ui-carousel-helm/files/lib/hlm-carousel.ts.template +1 -1
- package/src/generators/ui/libs/ui-checkbox-helm/files/lib/hlm-checkbox.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-dialog-close-button.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-dialog.ts.template +2 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-empty.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-group-label.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-group.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-icon.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-item.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-list.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-search-input.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-search.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-separator.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-shortcut.ts.template +1 -1
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command.ts.template +1 -1
- package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-picker-multi.ts.template +1 -1
- package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-picker.ts.template +1 -1
- package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-range-picker.ts.template +1 -1
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-close.ts.template +1 -1
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-content.ts.template +1 -1
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-description.ts.template +1 -1
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-footer.ts.template +1 -1
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-header.ts.template +1 -1
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-overlay.ts.template +2 -1
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-title.ts.template +1 -1
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-error.ts.template +1 -1
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-form-field.ts.template +1 -1
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-hint.ts.template +1 -1
- package/src/generators/ui/libs/ui-hover-card-helm/files/lib/hlm-hover-card-content.ts.template +2 -1
- package/src/generators/ui/libs/ui-input-helm/files/lib/hlm-input-error.ts.template +1 -1
- package/src/generators/ui/libs/ui-input-helm/files/lib/hlm-input.ts.template +1 -1
- package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp-group.ts.template +1 -1
- package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp-separator.ts.template +1 -1
- package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp-slot.ts.template +1 -1
- package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp.ts.template +1 -1
- package/src/generators/ui/libs/ui-label-helm/files/lib/hlm-label.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-bar-item.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-bar.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-check.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-checkbox.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-icon.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-radio-indicator.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-radio.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-sub-indicator.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-label.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-separator.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-shortcut.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu.ts.template +1 -1
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-sub-menu.ts.template +1 -1
- package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-content.ts.template +1 -1
- package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-ellipsis.ts.template +1 -1
- package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-item.ts.template +1 -1
- package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-link.ts.template +1 -1
- package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-next.ts.template +1 -1
- package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-previous.ts.template +1 -1
- package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination.ts.template +1 -1
- package/src/generators/ui/libs/ui-popover-helm/files/lib/hlm-popover-close.ts.template +1 -1
- package/src/generators/ui/libs/ui-popover-helm/files/lib/hlm-popover-content.ts.template +2 -1
- package/src/generators/ui/libs/ui-progress-helm/files/lib/hlm-progress-indicator.ts.template +1 -1
- package/src/generators/ui/libs/ui-progress-helm/files/lib/hlm-progress.ts.template +1 -1
- package/src/generators/ui/libs/ui-radio-group-helm/files/lib/hlm-radio-group.ts.template +1 -1
- package/src/generators/ui/libs/ui-radio-group-helm/files/lib/hlm-radio-indicator.ts.template +1 -1
- package/src/generators/ui/libs/ui-radio-group-helm/files/lib/hlm-radio.ts.template +1 -1
- package/src/generators/ui/libs/ui-scroll-area-helm/files/lib/hlm-scroll-area.ts.template +1 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-content.ts.template +2 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-group.ts.template +1 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-label.ts.template +1 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-option.ts.template +2 -2
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-scroll-down.ts.template +1 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-scroll-up.ts.template +1 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-trigger.ts.template +1 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-value.ts.template +1 -1
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select.ts.template +1 -1
- package/src/generators/ui/libs/ui-separator-helm/files/lib/hlm-separator.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-close.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-content.ts.template +2 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-description.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-footer.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-header.ts.template +1 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-overlay.ts.template +2 -1
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-title.ts.template +1 -1
- package/src/generators/ui/libs/ui-skeleton-helm/files/lib/hlm-skeleton.ts.template +1 -1
- package/src/generators/ui/libs/ui-slider-helm/files/lib/hlm-slider.ts.template +1 -1
- package/src/generators/ui/libs/ui-sonner-helm/files/lib/hlm-toaster.ts.template +1 -1
- package/src/generators/ui/libs/ui-spinner-helm/files/lib/hlm-spinner.ts.template +1 -1
- package/src/generators/ui/libs/ui-switch-helm/files/lib/hlm-switch-thumb.ts.template +1 -1
- package/src/generators/ui/libs/ui-switch-helm/files/lib/hlm-switch.ts.template +1 -1
- package/src/generators/ui/libs/ui-table-helm/files/lib/hlm-table.ts.template +1 -1
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-content.ts.template +1 -1
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-list.ts.template +1 -1
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-paginated-list.ts.template +1 -1
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-trigger.ts.template +1 -1
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs.ts.template +1 -1
- package/src/generators/ui/libs/ui-toggle-group-helm/files/lib/hlm-toggle-group.ts.template +1 -1
- package/src/generators/ui/libs/ui-toggle-group-helm/files/lib/hlm-toggle-item.ts.template +1 -1
- package/src/generators/ui/libs/ui-toggle-helm/files/lib/hlm-toggle.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-blockquote.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-code.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-h1.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-h2.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-h3.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-h4.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-large.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-lead.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-muted.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-p.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-small.ts.template +1 -1
- package/src/generators/ui/libs/ui-typography-helm/files/lib/hlm-ul.ts.template +1 -1
- package/src/generators/ui/libs/ui-utils-helm/files/index.ts.template +1 -0
- package/src/generators/ui/libs/ui-utils-helm/files/lib/hlm.ts.template +6 -0
- package/src/generators/ui/libs/ui-utils-helm/generator.d.ts +3 -0
- package/src/generators/ui/libs/ui-utils-helm/generator.js +14 -0
- package/src/generators/ui/libs/ui-utils-helm/generator.js.map +1 -0
- package/src/generators/ui/primitive-deps.js +42 -41
- package/src/generators/ui/primitive-deps.js.map +1 -1
- package/src/generators/ui/primitives.d.ts +1 -1
- package/src/generators/ui/supported-ui-libraries.json +36 -44
|
@@ -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.507",
|
|
7
7
|
"clsx": "^2.1.1",
|
|
8
8
|
"@ng-icons/core": ">=29.0.0",
|
|
9
9
|
"@ng-icons/lucide": ">=29.0.0"
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"internalName": "ui-alert-helm",
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"@angular/core": ">=19.0.0",
|
|
16
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
17
16
|
"clsx": "^2.1.1",
|
|
18
17
|
"class-variance-authority": "^0.7.0"
|
|
19
18
|
}
|
|
@@ -22,7 +21,7 @@
|
|
|
22
21
|
"internalName": "ui-alert-dialog-helm",
|
|
23
22
|
"peerDependencies": {
|
|
24
23
|
"@angular/core": ">=19.0.0",
|
|
25
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
24
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
26
25
|
"clsx": "^2.1.1"
|
|
27
26
|
}
|
|
28
27
|
},
|
|
@@ -31,7 +30,6 @@
|
|
|
31
30
|
"peerDependencies": {
|
|
32
31
|
"@angular/core": ">=19.0.0",
|
|
33
32
|
"@angular/cdk": ">=19.0.0",
|
|
34
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
35
33
|
"clsx": "^2.1.1"
|
|
36
34
|
}
|
|
37
35
|
},
|
|
@@ -39,7 +37,7 @@
|
|
|
39
37
|
"internalName": "ui-avatar-helm",
|
|
40
38
|
"peerDependencies": {
|
|
41
39
|
"@angular/core": ">=19.0.0",
|
|
42
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
40
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
43
41
|
"clsx": "^2.1.1"
|
|
44
42
|
}
|
|
45
43
|
},
|
|
@@ -47,7 +45,6 @@
|
|
|
47
45
|
"internalName": "ui-badge-helm",
|
|
48
46
|
"peerDependencies": {
|
|
49
47
|
"@angular/core": ">=19.0.0",
|
|
50
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
51
48
|
"class-variance-authority": "^0.7.0",
|
|
52
49
|
"clsx": "^2.1.1"
|
|
53
50
|
}
|
|
@@ -58,7 +55,6 @@
|
|
|
58
55
|
"@angular/core": ">=19.0.0",
|
|
59
56
|
"@ng-icons/core": ">=29.0.0",
|
|
60
57
|
"@ng-icons/lucide": ">=29.0.0",
|
|
61
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
62
58
|
"clsx": "^2.1.1",
|
|
63
59
|
"@angular/router": ">=19.0.0"
|
|
64
60
|
}
|
|
@@ -67,7 +63,7 @@
|
|
|
67
63
|
"internalName": "ui-button-helm",
|
|
68
64
|
"peerDependencies": {
|
|
69
65
|
"@angular/core": ">=19.0.0",
|
|
70
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
66
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
71
67
|
"class-variance-authority": "^0.7.0",
|
|
72
68
|
"clsx": "^2.1.1"
|
|
73
69
|
}
|
|
@@ -79,7 +75,7 @@
|
|
|
79
75
|
"@angular/cdk": ">=19.0.0",
|
|
80
76
|
"@ng-icons/core": ">=29.0.0",
|
|
81
77
|
"@ng-icons/lucide": ">=29.0.0",
|
|
82
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
78
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
83
79
|
"clsx": "^2.1.1"
|
|
84
80
|
}
|
|
85
81
|
},
|
|
@@ -87,7 +83,6 @@
|
|
|
87
83
|
"internalName": "ui-card-helm",
|
|
88
84
|
"peerDependencies": {
|
|
89
85
|
"@angular/core": ">=19.0.0",
|
|
90
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
91
86
|
"clsx": "^2.1.1",
|
|
92
87
|
"class-variance-authority": "^0.7.0"
|
|
93
88
|
}
|
|
@@ -96,7 +91,6 @@
|
|
|
96
91
|
"internalName": "ui-carousel-helm",
|
|
97
92
|
"peerDependencies": {
|
|
98
93
|
"@angular/core": ">=19.0.0",
|
|
99
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
100
94
|
"clsx": "^2.1.1",
|
|
101
95
|
"@ng-icons/core": ">=29.0.0",
|
|
102
96
|
"@ng-icons/lucide": ">=29.0.0",
|
|
@@ -111,7 +105,7 @@
|
|
|
111
105
|
"@angular/forms": ">=19.0.0",
|
|
112
106
|
"@ng-icons/core": ">=29.0.0",
|
|
113
107
|
"@ng-icons/lucide": ">=29.0.0",
|
|
114
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
108
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
115
109
|
"clsx": "^2.1.1"
|
|
116
110
|
}
|
|
117
111
|
},
|
|
@@ -119,7 +113,7 @@
|
|
|
119
113
|
"internalName": "ui-command-helm",
|
|
120
114
|
"peerDependencies": {
|
|
121
115
|
"@angular/core": ">=19.0.0",
|
|
122
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
116
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
123
117
|
"clsx": "^2.1.1",
|
|
124
118
|
"@angular/cdk": ">=19.0.0"
|
|
125
119
|
}
|
|
@@ -132,7 +126,7 @@
|
|
|
132
126
|
"@angular/forms": ">=19.0.0",
|
|
133
127
|
"@ng-icons/core": ">=29.0.0",
|
|
134
128
|
"@ng-icons/lucide": ">=29.0.0",
|
|
135
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
129
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
136
130
|
"clsx": "^2.1.1"
|
|
137
131
|
}
|
|
138
132
|
},
|
|
@@ -140,11 +134,11 @@
|
|
|
140
134
|
"internalName": "ui-dialog-helm",
|
|
141
135
|
"peerDependencies": {
|
|
142
136
|
"@angular/core": ">=19.0.0",
|
|
143
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
144
137
|
"clsx": "^2.1.1",
|
|
145
138
|
"@angular/common": ">=19.0.0",
|
|
146
139
|
"@ng-icons/core": ">=29.0.0",
|
|
147
140
|
"@ng-icons/lucide": ">=29.0.0",
|
|
141
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
148
142
|
"@angular/cdk": ">=19.0.0"
|
|
149
143
|
}
|
|
150
144
|
},
|
|
@@ -153,7 +147,7 @@
|
|
|
153
147
|
"peerDependencies": {
|
|
154
148
|
"@angular/core": ">=19.0.0",
|
|
155
149
|
"@angular/forms": ">=19.0.0",
|
|
156
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
150
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
157
151
|
"clsx": "^2.1.1"
|
|
158
152
|
}
|
|
159
153
|
},
|
|
@@ -161,7 +155,7 @@
|
|
|
161
155
|
"internalName": "ui-hover-card-helm",
|
|
162
156
|
"peerDependencies": {
|
|
163
157
|
"@angular/core": ">=19.0.0",
|
|
164
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
158
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
165
159
|
"clsx": "^2.1.1"
|
|
166
160
|
}
|
|
167
161
|
},
|
|
@@ -177,28 +171,28 @@
|
|
|
177
171
|
"internalName": "ui-input-helm",
|
|
178
172
|
"peerDependencies": {
|
|
179
173
|
"@angular/core": ">=19.0.0",
|
|
180
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
181
174
|
"class-variance-authority": "^0.7.0",
|
|
182
175
|
"clsx": "^2.1.1",
|
|
183
|
-
"@angular/forms": ">=19.0.0"
|
|
176
|
+
"@angular/forms": ">=19.0.0",
|
|
177
|
+
"@spartan-ng/brain": "0.0.1-alpha.507"
|
|
184
178
|
}
|
|
185
179
|
},
|
|
186
180
|
"input-otp": {
|
|
187
181
|
"internalName": "ui-input-otp-helm",
|
|
188
182
|
"peerDependencies": {
|
|
189
183
|
"@angular/core": ">=19.0.0",
|
|
190
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
191
184
|
"clsx": "^2.1.1",
|
|
192
185
|
"@ng-icons/core": ">=29.0.0",
|
|
193
186
|
"@ng-icons/lucide": ">=29.0.0",
|
|
194
|
-
"@angular/cdk": ">=19.0.0"
|
|
187
|
+
"@angular/cdk": ">=19.0.0",
|
|
188
|
+
"@spartan-ng/brain": "0.0.1-alpha.507"
|
|
195
189
|
}
|
|
196
190
|
},
|
|
197
191
|
"label": {
|
|
198
192
|
"internalName": "ui-label-helm",
|
|
199
193
|
"peerDependencies": {
|
|
200
194
|
"@angular/core": ">=19.0.0",
|
|
201
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
195
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
202
196
|
"clsx": "^2.1.1"
|
|
203
197
|
}
|
|
204
198
|
},
|
|
@@ -206,7 +200,7 @@
|
|
|
206
200
|
"internalName": "ui-menu-helm",
|
|
207
201
|
"peerDependencies": {
|
|
208
202
|
"@angular/core": ">=19.0.0",
|
|
209
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
203
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
210
204
|
"clsx": "^2.1.1",
|
|
211
205
|
"@ng-icons/core": ">=29.0.0",
|
|
212
206
|
"@ng-icons/lucide": ">=29.0.0",
|
|
@@ -220,7 +214,7 @@
|
|
|
220
214
|
"@angular/core": ">=19.0.0",
|
|
221
215
|
"@angular/cdk": ">=19.0.0",
|
|
222
216
|
"@angular/forms": ">=19.0.0",
|
|
223
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
217
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
224
218
|
"class-variance-authority": "^0.7.0",
|
|
225
219
|
"clsx": "^2.1.1",
|
|
226
220
|
"@ng-icons/core": ">=29.0.0",
|
|
@@ -232,15 +226,15 @@
|
|
|
232
226
|
"internalName": "ui-popover-helm",
|
|
233
227
|
"peerDependencies": {
|
|
234
228
|
"@angular/core": ">=19.0.0",
|
|
235
|
-
"
|
|
236
|
-
"
|
|
229
|
+
"clsx": "^2.1.1",
|
|
230
|
+
"@spartan-ng/brain": "0.0.1-alpha.507"
|
|
237
231
|
}
|
|
238
232
|
},
|
|
239
233
|
"progress": {
|
|
240
234
|
"internalName": "ui-progress-helm",
|
|
241
235
|
"peerDependencies": {
|
|
242
236
|
"@angular/core": ">=19.0.0",
|
|
243
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
237
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
244
238
|
"clsx": "^2.1.1"
|
|
245
239
|
}
|
|
246
240
|
},
|
|
@@ -248,7 +242,7 @@
|
|
|
248
242
|
"internalName": "ui-radio-group-helm",
|
|
249
243
|
"peerDependencies": {
|
|
250
244
|
"@angular/core": ">=19.0.0",
|
|
251
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
245
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
252
246
|
"clsx": "^2.1.1",
|
|
253
247
|
"@angular/common": ">=19.0.0"
|
|
254
248
|
}
|
|
@@ -257,7 +251,6 @@
|
|
|
257
251
|
"internalName": "ui-scroll-area-helm",
|
|
258
252
|
"peerDependencies": {
|
|
259
253
|
"@angular/core": ">=19.0.0",
|
|
260
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
261
254
|
"clsx": "^2.1.1"
|
|
262
255
|
}
|
|
263
256
|
},
|
|
@@ -266,7 +259,7 @@
|
|
|
266
259
|
"peerDependencies": {
|
|
267
260
|
"@angular/core": ">=19.0.0",
|
|
268
261
|
"@angular/cdk": ">=19.0.0",
|
|
269
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
262
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
270
263
|
"clsx": "^2.1.1",
|
|
271
264
|
"@ng-icons/core": ">=29.0.0",
|
|
272
265
|
"@ng-icons/lucide": ">=29.0.0",
|
|
@@ -277,7 +270,6 @@
|
|
|
277
270
|
"internalName": "ui-separator-helm",
|
|
278
271
|
"peerDependencies": {
|
|
279
272
|
"@angular/core": ">=19.0.0",
|
|
280
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
281
273
|
"clsx": "^2.1.1"
|
|
282
274
|
}
|
|
283
275
|
},
|
|
@@ -285,10 +277,10 @@
|
|
|
285
277
|
"internalName": "ui-sheet-helm",
|
|
286
278
|
"peerDependencies": {
|
|
287
279
|
"@angular/core": ">=19.0.0",
|
|
288
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
289
280
|
"clsx": "^2.1.1",
|
|
290
281
|
"@ng-icons/core": ">=29.0.0",
|
|
291
282
|
"@ng-icons/lucide": ">=29.0.0",
|
|
283
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
292
284
|
"class-variance-authority": "^0.7.0"
|
|
293
285
|
}
|
|
294
286
|
},
|
|
@@ -296,7 +288,6 @@
|
|
|
296
288
|
"internalName": "ui-skeleton-helm",
|
|
297
289
|
"peerDependencies": {
|
|
298
290
|
"@angular/core": ">=19.0.0",
|
|
299
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
300
291
|
"clsx": "^2.1.1"
|
|
301
292
|
}
|
|
302
293
|
},
|
|
@@ -304,7 +295,7 @@
|
|
|
304
295
|
"internalName": "ui-slider-helm",
|
|
305
296
|
"peerDependencies": {
|
|
306
297
|
"@angular/core": ">=19.0.0",
|
|
307
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
298
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
308
299
|
"clsx": "^2.1.1"
|
|
309
300
|
}
|
|
310
301
|
},
|
|
@@ -312,7 +303,6 @@
|
|
|
312
303
|
"internalName": "ui-sonner-helm",
|
|
313
304
|
"peerDependencies": {
|
|
314
305
|
"@angular/core": ">=19.0.0",
|
|
315
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
316
306
|
"clsx": "^2.1.1",
|
|
317
307
|
"ngx-sonner": ">=3.0.0"
|
|
318
308
|
}
|
|
@@ -321,7 +311,6 @@
|
|
|
321
311
|
"internalName": "ui-spinner-helm",
|
|
322
312
|
"peerDependencies": {
|
|
323
313
|
"@angular/core": ">=19.0.0",
|
|
324
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
325
314
|
"clsx": "^2.1.1"
|
|
326
315
|
}
|
|
327
316
|
},
|
|
@@ -329,17 +318,16 @@
|
|
|
329
318
|
"internalName": "ui-switch-helm",
|
|
330
319
|
"peerDependencies": {
|
|
331
320
|
"@angular/core": ">=19.0.0",
|
|
332
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
333
321
|
"clsx": "^2.1.1",
|
|
334
322
|
"@angular/cdk": ">=19.0.0",
|
|
335
|
-
"@angular/forms": ">=19.0.0"
|
|
323
|
+
"@angular/forms": ">=19.0.0",
|
|
324
|
+
"@spartan-ng/brain": "0.0.1-alpha.507"
|
|
336
325
|
}
|
|
337
326
|
},
|
|
338
327
|
"table": {
|
|
339
328
|
"internalName": "ui-table-helm",
|
|
340
329
|
"peerDependencies": {
|
|
341
330
|
"@angular/core": ">=19.0.0",
|
|
342
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
343
331
|
"clsx": "^2.1.1"
|
|
344
332
|
}
|
|
345
333
|
},
|
|
@@ -347,7 +335,7 @@
|
|
|
347
335
|
"internalName": "ui-tabs-helm",
|
|
348
336
|
"peerDependencies": {
|
|
349
337
|
"@angular/core": ">=19.0.0",
|
|
350
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
338
|
+
"@spartan-ng/brain": "0.0.1-alpha.507",
|
|
351
339
|
"clsx": "^2.1.1",
|
|
352
340
|
"class-variance-authority": "^0.7.0",
|
|
353
341
|
"@angular/cdk": ">=19.0.0",
|
|
@@ -360,7 +348,6 @@
|
|
|
360
348
|
"internalName": "ui-toggle-helm",
|
|
361
349
|
"peerDependencies": {
|
|
362
350
|
"@angular/core": ">=19.0.0",
|
|
363
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
364
351
|
"class-variance-authority": "^0.7.0",
|
|
365
352
|
"clsx": "^2.1.1"
|
|
366
353
|
}
|
|
@@ -369,7 +356,6 @@
|
|
|
369
356
|
"internalName": "ui-toggle-group-helm",
|
|
370
357
|
"peerDependencies": {
|
|
371
358
|
"@angular/core": ">=19.0.0",
|
|
372
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
373
359
|
"class-variance-authority": "^0.7.0",
|
|
374
360
|
"clsx": "^2.1.1"
|
|
375
361
|
}
|
|
@@ -378,15 +364,21 @@
|
|
|
378
364
|
"internalName": "ui-tooltip-helm",
|
|
379
365
|
"peerDependencies": {
|
|
380
366
|
"@angular/core": ">=19.0.0",
|
|
381
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
367
|
+
"@spartan-ng/brain": "0.0.1-alpha.507"
|
|
382
368
|
}
|
|
383
369
|
},
|
|
384
370
|
"typography": {
|
|
385
371
|
"internalName": "ui-typography-helm",
|
|
386
372
|
"peerDependencies": {
|
|
387
373
|
"@angular/core": ">=19.0.0",
|
|
388
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
389
374
|
"clsx": "^2.1.1"
|
|
390
375
|
}
|
|
376
|
+
},
|
|
377
|
+
"utils": {
|
|
378
|
+
"internalName": "ui-utils-helm",
|
|
379
|
+
"peerDependencies": {
|
|
380
|
+
"clsx": "^2.1.1",
|
|
381
|
+
"tailwind-merge": "^2.5.2"
|
|
382
|
+
}
|
|
391
383
|
}
|
|
392
384
|
}
|