@spartan-ng/cli 0.0.1-alpha.506 → 0.0.1-alpha.508
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 +26 -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 +4 -0
- package/src/generators/healthcheck/generator.js.map +1 -1
- package/src/generators/healthcheck/healthchecks/brn-separator.d.ts +2 -0
- package/src/generators/healthcheck/healthchecks/brn-separator.js +34 -0
- package/src/generators/healthcheck/healthchecks/brn-separator.js.map +1 -0
- 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/migrate-separator/compat.d.ts +2 -0
- package/src/generators/migrate-separator/compat.js +7 -0
- package/src/generators/migrate-separator/compat.js.map +1 -0
- package/src/generators/migrate-separator/generator.d.ts +4 -0
- package/src/generators/migrate-separator/generator.js +78 -0
- package/src/generators/migrate-separator/generator.js.map +1 -0
- package/src/generators/migrate-separator/schema.d.ts +3 -0
- package/src/generators/migrate-separator/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 +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-trigger.ts.template +2 -2
- 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 +3 -2
- 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 +3 -2
- 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 +3 -3
- package/src/generators/ui/libs/ui-aspect-ratio-helm/files/lib/helm-aspect-ratio.ts.template +2 -2
- 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 +2 -2
- 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 +5 -5
- 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 +2 -2
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-page.ts.template +2 -2
- package/src/generators/ui/libs/ui-breadcrumb-helm/files/lib/hlm-breadcrumb-separator.ts.template +2 -2
- 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 +5 -5
- package/src/generators/ui/libs/ui-calendar-helm/files/lib/hlm-calendar-multi.ts.template +13 -11
- package/src/generators/ui/libs/ui-calendar-helm/files/lib/hlm-calendar-range.ts.template +13 -11
- package/src/generators/ui/libs/ui-calendar-helm/files/lib/hlm-calendar.ts.template +13 -11
- 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 +2 -2
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-header.ts.template +2 -2
- package/src/generators/ui/libs/ui-card-helm/files/lib/hlm-card-title.ts.template +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-dialog-close-button.ts.template +2 -2
- 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 +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-command-helm/files/lib/hlm-command-list.ts.template +2 -2
- 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 +2 -2
- 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 +3 -3
- package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-picker.ts.template +3 -3
- package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-range-picker.ts.template +3 -3
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-close.ts.template +2 -2
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-content.ts.template +2 -2
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-description.ts.template +2 -2
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-footer.ts.template +2 -2
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-header.ts.template +2 -4
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-overlay.ts.template +3 -2
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-title.ts.template +3 -5
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-error.ts.template +2 -2
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-form-field.ts.template +2 -2
- package/src/generators/ui/libs/ui-form-field-helm/files/lib/hlm-hint.ts.template +2 -2
- package/src/generators/ui/libs/ui-hover-card-helm/files/lib/hlm-hover-card-content.ts.template +3 -2
- 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 +2 -2
- 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 +3 -3
- package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp.ts.template +2 -2
- package/src/generators/ui/libs/ui-label-helm/files/lib/hlm-label.ts.template +2 -2
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-bar-item.ts.template +2 -2
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-bar.ts.template +2 -2
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-check.ts.template +2 -2
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-checkbox.ts.template +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-radio.ts.template +2 -2
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-sub-menu.ts.template +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-popover-helm/files/lib/hlm-popover-content.ts.template +3 -2
- 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 +2 -2
- 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 +2 -2
- 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 +3 -2
- 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 +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-select-helm/files/lib/hlm-select-value.ts.template +2 -2
- 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/index.ts.template +4 -2
- package/src/generators/ui/libs/ui-separator-helm/files/lib/hlm-separator.ts.template +6 -7
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-close.ts.template +2 -2
- package/src/generators/ui/libs/ui-sheet-helm/files/lib/hlm-sheet-content.ts.template +3 -2
- 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 +3 -2
- 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 +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-switch-helm/files/lib/hlm-switch-thumb.ts.template +2 -2
- package/src/generators/ui/libs/ui-switch-helm/files/lib/hlm-switch.ts.template +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-list.ts.template +3 -3
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-paginated-list.ts.template +2 -2
- package/src/generators/ui/libs/ui-tabs-helm/files/lib/hlm-tabs-trigger.ts.template +2 -2
- 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 +2 -2
- package/src/generators/ui/libs/ui-toggle-group-helm/files/lib/hlm-toggle-item.ts.template +6 -6
- package/src/generators/ui/libs/ui-toggle-helm/files/lib/hlm-toggle.ts.template +3 -3
- 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 +37 -44
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/
|
|
2
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
|
|
5
5
|
export const hlmBlockquote = 'mt-6 border-border border-l-2 pl-6 italic';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/
|
|
2
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
|
|
5
5
|
export const hlmCode = 'relative rounded bg-muted px-[0.3rem] py-[0.2rem] font-mono text-sm font-semibold';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/
|
|
2
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
|
|
5
5
|
export const hlmH1 = 'scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/
|
|
2
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
|
|
5
5
|
export const hlmH3 = 'scroll-m-20 text-2xl font-semibold tracking-tight';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/
|
|
2
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
3
3
|
import type { ClassValue } from 'clsx';
|
|
4
4
|
|
|
5
5
|
export const hlmH4 = 'scroll-m-20 text-xl font-semibold tracking-tight';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/hlm';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.generator = generator;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const generator_1 = tslib_1.__importDefault(require("../../../base/generator"));
|
|
6
|
+
async function generator(tree, options) {
|
|
7
|
+
return await (0, generator_1.default)(tree, {
|
|
8
|
+
...options,
|
|
9
|
+
primitiveName: 'utils',
|
|
10
|
+
internalName: 'ui-utils-helm',
|
|
11
|
+
publicName: 'ui-utils-helm',
|
|
12
|
+
});
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=generator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generator.js","sourceRoot":"","sources":["../../../../../../../../libs/cli/src/generators/ui/libs/ui-utils-helm/generator.ts"],"names":[],"mappings":";;AAIA,8BAOC;;AAVD,gFAAuD;AAGhD,KAAK,UAAU,SAAS,CAAC,IAAU,EAAE,OAA+B;IAC1E,OAAO,MAAM,IAAA,mBAAgB,EAAC,IAAI,EAAE;QACnC,GAAG,OAAO;QACV,aAAa,EAAE,OAAO;QACtB,YAAY,EAAE,eAAe;QAC7B,UAAU,EAAE,eAAe;KAC3B,CAAC,CAAC;AACJ,CAAC"}
|
|
@@ -2,47 +2,48 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getDependentPrimitives = exports.primitiveDependencies = void 0;
|
|
4
4
|
exports.primitiveDependencies = {
|
|
5
|
-
accordion: ['icon'],
|
|
6
|
-
alert: ['icon'],
|
|
7
|
-
'alert-dialog': ['button'],
|
|
8
|
-
'aspect-ratio': [],
|
|
9
|
-
avatar: [],
|
|
10
|
-
badge: [],
|
|
11
|
-
breadcrumb: ['icon'],
|
|
12
|
-
button: [],
|
|
13
|
-
calendar: ['button', 'icon'],
|
|
14
|
-
card: [],
|
|
15
|
-
carousel: [],
|
|
16
|
-
checkbox: ['icon'],
|
|
17
|
-
collapsible: [],
|
|
18
|
-
command: ['button', 'icon'],
|
|
19
|
-
'context-menu': [],
|
|
20
|
-
'date-picker': ['calendar', 'icon', 'popover'],
|
|
21
|
-
dialog: [],
|
|
22
|
-
'form-field': [],
|
|
23
|
-
'hover-card': [],
|
|
24
|
-
icon: [],
|
|
25
|
-
input: ['form-field'],
|
|
26
|
-
label: [],
|
|
27
|
-
menu: ['icon'],
|
|
28
|
-
menubar: [],
|
|
29
|
-
pagination: ['button', 'icon'],
|
|
30
|
-
popover: [],
|
|
31
|
-
progress: [],
|
|
32
|
-
'radio-group': [],
|
|
33
|
-
'scroll-area': [],
|
|
34
|
-
select: ['icon', 'form-field'],
|
|
35
|
-
separator: [],
|
|
36
|
-
sheet: [],
|
|
37
|
-
skeleton: [],
|
|
38
|
-
sonner: ['icon'],
|
|
39
|
-
spinner: [],
|
|
40
|
-
switch: [],
|
|
41
|
-
table: [],
|
|
42
|
-
tabs: [],
|
|
43
|
-
toggle: [],
|
|
44
|
-
'toggle-group': [],
|
|
45
|
-
tooltip: [],
|
|
5
|
+
accordion: ['utils', 'icon'],
|
|
6
|
+
alert: ['utils', 'icon'],
|
|
7
|
+
'alert-dialog': ['utils', 'button'],
|
|
8
|
+
'aspect-ratio': ['utils'],
|
|
9
|
+
avatar: ['utils'],
|
|
10
|
+
badge: ['utils'],
|
|
11
|
+
breadcrumb: ['utils', 'icon'],
|
|
12
|
+
button: ['utils'],
|
|
13
|
+
calendar: ['utils', 'button', 'icon'],
|
|
14
|
+
card: ['utils'],
|
|
15
|
+
carousel: ['utils'],
|
|
16
|
+
checkbox: ['utils', 'icon'],
|
|
17
|
+
collapsible: ['utils'],
|
|
18
|
+
command: ['utils', 'button', 'icon'],
|
|
19
|
+
'context-menu': ['utils'],
|
|
20
|
+
'date-picker': ['utils', 'calendar', 'icon', 'popover'],
|
|
21
|
+
dialog: ['utils'],
|
|
22
|
+
'form-field': ['utils'],
|
|
23
|
+
'hover-card': ['utils'],
|
|
24
|
+
icon: ['utils'],
|
|
25
|
+
input: ['utils', 'form-field'],
|
|
26
|
+
label: ['utils'],
|
|
27
|
+
menu: ['utils', 'icon'],
|
|
28
|
+
menubar: ['utils'],
|
|
29
|
+
pagination: ['utils', 'button', 'icon'],
|
|
30
|
+
popover: ['utils'],
|
|
31
|
+
progress: ['utils'],
|
|
32
|
+
'radio-group': ['utils'],
|
|
33
|
+
'scroll-area': ['utils'],
|
|
34
|
+
select: ['utils', 'icon', 'form-field'],
|
|
35
|
+
separator: ['utils'],
|
|
36
|
+
sheet: ['utils'],
|
|
37
|
+
skeleton: ['utils'],
|
|
38
|
+
sonner: ['utils', 'icon'],
|
|
39
|
+
spinner: ['utils'],
|
|
40
|
+
switch: ['utils'],
|
|
41
|
+
table: ['utils'],
|
|
42
|
+
tabs: ['utils'],
|
|
43
|
+
toggle: ['utils'],
|
|
44
|
+
'toggle-group': ['utils'],
|
|
45
|
+
tooltip: ['utils'],
|
|
46
|
+
utils: [],
|
|
46
47
|
};
|
|
47
48
|
const getDependentPrimitives = (primitives) => {
|
|
48
49
|
const dependentPrimitives = new Set();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"primitive-deps.js","sourceRoot":"","sources":["../../../../../../libs/cli/src/generators/ui/primitive-deps.ts"],"names":[],"mappings":";;;AAEa,QAAA,qBAAqB,GAAmC;IACpE,SAAS,EAAE,CAAC,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"primitive-deps.js","sourceRoot":"","sources":["../../../../../../libs/cli/src/generators/ui/primitive-deps.ts"],"names":[],"mappings":";;;AAEa,QAAA,qBAAqB,GAAmC;IACpE,SAAS,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;IAC5B,KAAK,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;IACxB,cAAc,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC;IACnC,cAAc,EAAE,CAAC,OAAO,CAAC;IACzB,MAAM,EAAE,CAAC,OAAO,CAAC;IACjB,KAAK,EAAE,CAAC,OAAO,CAAC;IAChB,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;IAC7B,MAAM,EAAE,CAAC,OAAO,CAAC;IACjB,QAAQ,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,CAAC;IACrC,IAAI,EAAE,CAAC,OAAO,CAAC;IACf,QAAQ,EAAE,CAAC,OAAO,CAAC;IACnB,QAAQ,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;IAC3B,WAAW,EAAE,CAAC,OAAO,CAAC;IACtB,OAAO,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,CAAC;IACpC,cAAc,EAAE,CAAC,OAAO,CAAC;IACzB,aAAa,EAAE,CAAC,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,SAAS,CAAC;IACvD,MAAM,EAAE,CAAC,OAAO,CAAC;IACjB,YAAY,EAAE,CAAC,OAAO,CAAC;IACvB,YAAY,EAAE,CAAC,OAAO,CAAC;IACvB,IAAI,EAAE,CAAC,OAAO,CAAC;IACf,KAAK,EAAE,CAAC,OAAO,EAAE,YAAY,CAAC;IAC9B,KAAK,EAAE,CAAC,OAAO,CAAC;IAChB,IAAI,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;IACvB,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,UAAU,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,CAAC;IACvC,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,QAAQ,EAAE,CAAC,OAAO,CAAC;IACnB,aAAa,EAAE,CAAC,OAAO,CAAC;IACxB,aAAa,EAAE,CAAC,OAAO,CAAC;IACxB,MAAM,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,YAAY,CAAC;IACvC,SAAS,EAAE,CAAC,OAAO,CAAC;IACpB,KAAK,EAAE,CAAC,OAAO,CAAC;IAChB,QAAQ,EAAE,CAAC,OAAO,CAAC;IACnB,MAAM,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,MAAM,EAAE,CAAC,OAAO,CAAC;IACjB,KAAK,EAAE,CAAC,OAAO,CAAC;IAChB,IAAI,EAAE,CAAC,OAAO,CAAC;IACf,MAAM,EAAE,CAAC,OAAO,CAAC;IACjB,cAAc,EAAE,CAAC,OAAO,CAAC;IACzB,OAAO,EAAE,CAAC,OAAO,CAAC;IAClB,KAAK,EAAE,EAAE;CACT,CAAC;AAEK,MAAM,sBAAsB,GAAG,CAAC,UAAuB,EAAe,EAAE;IAC9E,MAAM,mBAAmB,GAAG,IAAI,GAAG,EAAa,CAAC;IAEjD,KAAK,MAAM,SAAS,IAAI,UAAU,EAAE,CAAC;QACpC,MAAM,IAAI,GAAG,6BAAqB,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC;QACpD,KAAK,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC;YACxB,IAAI,CAAC,UAAU,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC;gBAC/B,2FAA2F;gBAC3F,mBAAmB,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;YAC9B,CAAC;QACF,CAAC;IACF,CAAC;IAED,OAAO,KAAK,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;AACxC,CAAC,CAAC;AAdW,QAAA,sBAAsB,0BAcjC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type Primitive = 'accordion' | 'alert' | 'alert-dialog' | 'aspect-ratio' | 'avatar' | 'badge' | 'breadcrumb' | 'button' | 'calendar' | 'card' | 'carousel' | 'checkbox' | 'collapsible' | 'command' | 'context-menu' | 'date-picker' | 'dialog' | 'form-field' | 'hover-card' | 'icon' | 'input' | 'label' | 'menu' | 'menubar' | 'pagination' | 'popover' | 'progress' | 'radio-group' | 'scroll-area' | 'select' | 'separator' | 'sheet' | 'skeleton' | 'sonner' | 'spinner' | 'switch' | 'table' | 'tabs' | 'toggle' | 'toggle-group' | 'tooltip';
|
|
1
|
+
export type Primitive = 'accordion' | 'alert' | 'alert-dialog' | 'aspect-ratio' | 'avatar' | 'badge' | 'breadcrumb' | 'button' | 'calendar' | 'card' | 'carousel' | 'checkbox' | 'collapsible' | 'command' | 'context-menu' | 'date-picker' | 'dialog' | 'form-field' | 'hover-card' | 'icon' | 'input' | 'label' | 'menu' | 'menubar' | 'pagination' | 'popover' | 'progress' | 'radio-group' | 'scroll-area' | 'select' | 'separator' | 'sheet' | 'skeleton' | 'sonner' | 'spinner' | 'switch' | 'table' | 'tabs' | 'toggle' | 'toggle-group' | 'tooltip' | 'utils';
|
|
@@ -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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508"
|
|
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.508"
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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.508"
|
|
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.508",
|
|
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.508",
|
|
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.508",
|
|
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,7 @@
|
|
|
277
270
|
"internalName": "ui-separator-helm",
|
|
278
271
|
"peerDependencies": {
|
|
279
272
|
"@angular/core": ">=19.0.0",
|
|
280
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
273
|
+
"@spartan-ng/brain": "0.0.1-alpha.508",
|
|
281
274
|
"clsx": "^2.1.1"
|
|
282
275
|
}
|
|
283
276
|
},
|
|
@@ -285,10 +278,10 @@
|
|
|
285
278
|
"internalName": "ui-sheet-helm",
|
|
286
279
|
"peerDependencies": {
|
|
287
280
|
"@angular/core": ">=19.0.0",
|
|
288
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
289
281
|
"clsx": "^2.1.1",
|
|
290
282
|
"@ng-icons/core": ">=29.0.0",
|
|
291
283
|
"@ng-icons/lucide": ">=29.0.0",
|
|
284
|
+
"@spartan-ng/brain": "0.0.1-alpha.508",
|
|
292
285
|
"class-variance-authority": "^0.7.0"
|
|
293
286
|
}
|
|
294
287
|
},
|
|
@@ -296,7 +289,6 @@
|
|
|
296
289
|
"internalName": "ui-skeleton-helm",
|
|
297
290
|
"peerDependencies": {
|
|
298
291
|
"@angular/core": ">=19.0.0",
|
|
299
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
300
292
|
"clsx": "^2.1.1"
|
|
301
293
|
}
|
|
302
294
|
},
|
|
@@ -304,7 +296,7 @@
|
|
|
304
296
|
"internalName": "ui-slider-helm",
|
|
305
297
|
"peerDependencies": {
|
|
306
298
|
"@angular/core": ">=19.0.0",
|
|
307
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
299
|
+
"@spartan-ng/brain": "0.0.1-alpha.508",
|
|
308
300
|
"clsx": "^2.1.1"
|
|
309
301
|
}
|
|
310
302
|
},
|
|
@@ -312,7 +304,6 @@
|
|
|
312
304
|
"internalName": "ui-sonner-helm",
|
|
313
305
|
"peerDependencies": {
|
|
314
306
|
"@angular/core": ">=19.0.0",
|
|
315
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
316
307
|
"clsx": "^2.1.1",
|
|
317
308
|
"ngx-sonner": ">=3.0.0"
|
|
318
309
|
}
|
|
@@ -321,7 +312,6 @@
|
|
|
321
312
|
"internalName": "ui-spinner-helm",
|
|
322
313
|
"peerDependencies": {
|
|
323
314
|
"@angular/core": ">=19.0.0",
|
|
324
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
325
315
|
"clsx": "^2.1.1"
|
|
326
316
|
}
|
|
327
317
|
},
|
|
@@ -329,17 +319,16 @@
|
|
|
329
319
|
"internalName": "ui-switch-helm",
|
|
330
320
|
"peerDependencies": {
|
|
331
321
|
"@angular/core": ">=19.0.0",
|
|
332
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
333
322
|
"clsx": "^2.1.1",
|
|
334
323
|
"@angular/cdk": ">=19.0.0",
|
|
335
|
-
"@angular/forms": ">=19.0.0"
|
|
324
|
+
"@angular/forms": ">=19.0.0",
|
|
325
|
+
"@spartan-ng/brain": "0.0.1-alpha.508"
|
|
336
326
|
}
|
|
337
327
|
},
|
|
338
328
|
"table": {
|
|
339
329
|
"internalName": "ui-table-helm",
|
|
340
330
|
"peerDependencies": {
|
|
341
331
|
"@angular/core": ">=19.0.0",
|
|
342
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
343
332
|
"clsx": "^2.1.1"
|
|
344
333
|
}
|
|
345
334
|
},
|
|
@@ -347,7 +336,7 @@
|
|
|
347
336
|
"internalName": "ui-tabs-helm",
|
|
348
337
|
"peerDependencies": {
|
|
349
338
|
"@angular/core": ">=19.0.0",
|
|
350
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
339
|
+
"@spartan-ng/brain": "0.0.1-alpha.508",
|
|
351
340
|
"clsx": "^2.1.1",
|
|
352
341
|
"class-variance-authority": "^0.7.0",
|
|
353
342
|
"@angular/cdk": ">=19.0.0",
|
|
@@ -360,7 +349,6 @@
|
|
|
360
349
|
"internalName": "ui-toggle-helm",
|
|
361
350
|
"peerDependencies": {
|
|
362
351
|
"@angular/core": ">=19.0.0",
|
|
363
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
364
352
|
"class-variance-authority": "^0.7.0",
|
|
365
353
|
"clsx": "^2.1.1"
|
|
366
354
|
}
|
|
@@ -369,7 +357,6 @@
|
|
|
369
357
|
"internalName": "ui-toggle-group-helm",
|
|
370
358
|
"peerDependencies": {
|
|
371
359
|
"@angular/core": ">=19.0.0",
|
|
372
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
373
360
|
"class-variance-authority": "^0.7.0",
|
|
374
361
|
"clsx": "^2.1.1"
|
|
375
362
|
}
|
|
@@ -378,15 +365,21 @@
|
|
|
378
365
|
"internalName": "ui-tooltip-helm",
|
|
379
366
|
"peerDependencies": {
|
|
380
367
|
"@angular/core": ">=19.0.0",
|
|
381
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
368
|
+
"@spartan-ng/brain": "0.0.1-alpha.508"
|
|
382
369
|
}
|
|
383
370
|
},
|
|
384
371
|
"typography": {
|
|
385
372
|
"internalName": "ui-typography-helm",
|
|
386
373
|
"peerDependencies": {
|
|
387
374
|
"@angular/core": ">=19.0.0",
|
|
388
|
-
"@spartan-ng/brain": "0.0.1-alpha.506",
|
|
389
375
|
"clsx": "^2.1.1"
|
|
390
376
|
}
|
|
377
|
+
},
|
|
378
|
+
"utils": {
|
|
379
|
+
"internalName": "ui-utils-helm",
|
|
380
|
+
"peerDependencies": {
|
|
381
|
+
"clsx": "^2.1.1",
|
|
382
|
+
"tailwind-merge": "^2.5.2"
|
|
383
|
+
}
|
|
391
384
|
}
|
|
392
385
|
}
|