@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
package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-picker-multi.ts.template
CHANGED
|
@@ -14,13 +14,13 @@ import {
|
|
|
14
14
|
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
15
15
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
16
16
|
import { lucideCalendar } from '@ng-icons/lucide';
|
|
17
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
18
17
|
import { BrnDialogState } from '@spartan-ng/brain/dialog';
|
|
19
18
|
import { type ChangeFn, type TouchFn } from '@spartan-ng/brain/forms';
|
|
20
19
|
import { BrnPopover, BrnPopoverContent, BrnPopoverTrigger } from '@spartan-ng/brain/popover';
|
|
21
20
|
import { HlmCalendarMulti } from '@spartan-ng/helm/calendar';
|
|
22
21
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
23
22
|
import { HlmPopoverContent } from '@spartan-ng/helm/popover';
|
|
23
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
24
24
|
import type { ClassValue } from 'clsx';
|
|
25
25
|
import { injectHlmDatePickerMultiConfig } from './hlm-date-picker-multi.token';
|
|
26
26
|
|
|
@@ -13,13 +13,13 @@ import {
|
|
|
13
13
|
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
14
14
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
15
15
|
import { lucideChevronDown } from '@ng-icons/lucide';
|
|
16
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
17
16
|
import { BrnDialogState } from '@spartan-ng/brain/dialog';
|
|
18
17
|
import { type ChangeFn, type TouchFn } from '@spartan-ng/brain/forms';
|
|
19
18
|
import { BrnPopover, BrnPopoverContent, BrnPopoverTrigger } from '@spartan-ng/brain/popover';
|
|
20
19
|
import { HlmCalendar } from '@spartan-ng/helm/calendar';
|
|
21
20
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
22
21
|
import { HlmPopoverContent } from '@spartan-ng/helm/popover';
|
|
22
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
23
23
|
import type { ClassValue } from 'clsx';
|
|
24
24
|
import { injectHlmDatePickerConfig } from './hlm-date-picker.token';
|
|
25
25
|
|
package/src/generators/ui/libs/ui-date-picker-helm/files/lib/hlm-date-range-picker.ts.template
CHANGED
|
@@ -14,13 +14,13 @@ import {
|
|
|
14
14
|
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
15
15
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
16
16
|
import { lucideCalendar } from '@ng-icons/lucide';
|
|
17
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
18
17
|
import { BrnDialogState } from '@spartan-ng/brain/dialog';
|
|
19
18
|
import { type ChangeFn, type TouchFn } from '@spartan-ng/brain/forms';
|
|
20
19
|
import { BrnPopover, BrnPopoverContent, BrnPopoverTrigger } from '@spartan-ng/brain/popover';
|
|
21
20
|
import { HlmCalendarRange } from '@spartan-ng/helm/calendar';
|
|
22
21
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
23
22
|
import { HlmPopoverContent } from '@spartan-ng/helm/popover';
|
|
23
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
24
24
|
import type { ClassValue } from 'clsx';
|
|
25
25
|
import { injectHlmDateRangePickerConfig } from './hlm-date-range-picker.token';
|
|
26
26
|
|
|
@@ -2,9 +2,9 @@ import { NgComponentOutlet } from '@angular/common';
|
|
|
2
2
|
import { ChangeDetectionStrategy, Component, ViewEncapsulation, computed, inject, input } from '@angular/core';
|
|
3
3
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
4
4
|
import { lucideX } from '@ng-icons/lucide';
|
|
5
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
6
5
|
import { BrnDialogClose, BrnDialogRef, injectBrnDialogContext } from '@spartan-ng/brain/dialog';
|
|
7
6
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
7
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
8
8
|
import type { ClassValue } from 'clsx';
|
|
9
9
|
import { HlmDialogClose } from './hlm-dialog-close';
|
|
10
10
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnDialogDescription } from '@spartan-ng/brain/dialog';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, effect, input, untracked } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { injectCustomClassSettable } from '@spartan-ng/brain/core';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
3
4
|
import type { ClassValue } from 'clsx';
|
|
4
5
|
|
|
5
6
|
export const hlmDialogOverlayClass =
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnDialogTitle } from '@spartan-ng/brain/dialog';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
@@ -7,8 +7,8 @@ import {
|
|
|
7
7
|
effect,
|
|
8
8
|
input,
|
|
9
9
|
} from '@angular/core';
|
|
10
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
11
10
|
import { BrnFormFieldControl } from '@spartan-ng/brain/form-field';
|
|
11
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
12
12
|
import { ClassValue } from 'clsx';
|
|
13
13
|
import { HlmError } from './hlm-error';
|
|
14
14
|
|
package/src/generators/ui/libs/ui-hover-card-helm/files/lib/hlm-hover-card-content.ts.template
CHANGED
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
input,
|
|
10
10
|
signal,
|
|
11
11
|
} from '@angular/core';
|
|
12
|
-
import {
|
|
12
|
+
import { injectExposedSideProvider, injectExposesStateProvider } from '@spartan-ng/brain/core';
|
|
13
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
13
14
|
import type { ClassValue } from 'clsx';
|
|
14
15
|
|
|
15
16
|
@Component({
|
|
@@ -11,9 +11,9 @@ import {
|
|
|
11
11
|
untracked,
|
|
12
12
|
} from '@angular/core';
|
|
13
13
|
import { FormGroupDirective, NgControl, NgForm } from '@angular/forms';
|
|
14
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
15
14
|
import { BrnFormFieldControl } from '@spartan-ng/brain/form-field';
|
|
16
15
|
import { ErrorStateMatcher, ErrorStateTracker } from '@spartan-ng/brain/forms';
|
|
16
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
17
17
|
import { cva, VariantProps } from 'class-variance-authority';
|
|
18
18
|
import type { ClassValue } from 'clsx';
|
|
19
19
|
|
package/src/generators/ui/libs/ui-input-otp-helm/files/lib/hlm-input-otp-separator.ts.template
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideMinus } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
5
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
6
6
|
import { type ClassValue } from 'clsx';
|
|
7
7
|
|
|
8
8
|
@Component({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NumberInput } from '@angular/cdk/coercion';
|
|
2
2
|
import { ChangeDetectionStrategy, Component, computed, input, numberAttribute } from '@angular/core';
|
|
3
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
4
3
|
import { BrnInputOtpSlot } from '@spartan-ng/brain/input-otp';
|
|
4
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
5
5
|
import { type ClassValue } from 'clsx';
|
|
6
6
|
import { HlmInputOtpFakeCaret } from './hlm-input-otp-fake-caret';
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnLabel } from '@spartan-ng/brain/label';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnMenuItem } from '@spartan-ng/brain/menu';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnMenuBar } from '@spartan-ng/brain/menu';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Component({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideCheck } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
5
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
6
6
|
import type { ClassValue } from 'clsx';
|
|
7
7
|
|
|
8
8
|
@Component({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnMenuItemCheckbox } from '@spartan-ng/brain/menu';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { provideHlmIconConfig } from '@spartan-ng/helm/icon';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-radio-indicator.ts.template
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideCircle } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
5
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
6
6
|
import type { ClassValue } from 'clsx';
|
|
7
7
|
|
|
8
8
|
@Component({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnMenuItemRadio } from '@spartan-ng/brain/menu';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
package/src/generators/ui/libs/ui-menu-helm/files/lib/hlm-menu-item-sub-indicator.ts.template
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideChevronRight } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
5
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
6
6
|
import { ClassValue } from 'clsx';
|
|
7
7
|
|
|
8
8
|
@Component({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
2
|
import { booleanAttribute, computed, Directive, input } from '@angular/core';
|
|
3
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
4
3
|
import { BrnMenuItem } from '@spartan-ng/brain/menu';
|
|
4
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
5
5
|
import { ClassValue } from 'clsx';
|
|
6
6
|
|
|
7
7
|
@Directive({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
2
|
import { booleanAttribute, ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
3
|
-
import { hlm } from '@spartan-ng/
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Component({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnMenu } from '@spartan-ng/brain/menu';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import { type VariantProps, cva } from 'class-variance-authority';
|
|
5
5
|
import type { ClassValue } from 'clsx';
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnMenu } from '@spartan-ng/brain/menu';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Component({
|
package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-ellipsis.ts.template
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideEllipsis } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
5
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
6
6
|
import type { ClassValue } from 'clsx';
|
|
7
7
|
|
|
8
8
|
@Component({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
2
|
import { Directive, booleanAttribute, computed, input } from '@angular/core';
|
|
3
3
|
import { RouterLink } from '@angular/router';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { type ButtonVariants, buttonVariants } from '@spartan-ng/helm/button';
|
|
5
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
6
6
|
import { type VariantProps, cva } from 'class-variance-authority';
|
|
7
7
|
import type { ClassValue } from 'clsx';
|
|
8
8
|
|
|
@@ -3,9 +3,9 @@ import { booleanAttribute, ChangeDetectionStrategy, Component, computed, input }
|
|
|
3
3
|
import { RouterLink } from '@angular/router';
|
|
4
4
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
5
5
|
import { lucideChevronRight } from '@ng-icons/lucide';
|
|
6
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
7
6
|
import { ButtonVariants } from '@spartan-ng/helm/button';
|
|
8
7
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
8
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
9
9
|
import { ClassValue } from 'clsx';
|
|
10
10
|
import { HlmPaginationLink } from './hlm-pagination-link';
|
|
11
11
|
|
package/src/generators/ui/libs/ui-pagination-helm/files/lib/hlm-pagination-previous.ts.template
CHANGED
|
@@ -3,9 +3,9 @@ import { booleanAttribute, ChangeDetectionStrategy, Component, computed, input }
|
|
|
3
3
|
import { RouterLink } from '@angular/router';
|
|
4
4
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
5
5
|
import { lucideChevronLeft } from '@ng-icons/lucide';
|
|
6
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
7
6
|
import { ButtonVariants } from '@spartan-ng/helm/button';
|
|
8
7
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
8
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
9
9
|
import { ClassValue } from 'clsx';
|
|
10
10
|
import { HlmPaginationLink } from './hlm-pagination-link';
|
|
11
11
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Directive, ElementRef, Renderer2, computed, effect, inject, input, signal } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { injectExposesStateProvider } from '@spartan-ng/brain/core';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
3
4
|
import type { ClassValue } from 'clsx';
|
|
4
5
|
|
|
5
6
|
@Directive({
|
package/src/generators/ui/libs/ui-progress-helm/files/lib/hlm-progress-indicator.ts.template
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, Directive, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnProgressIndicator, injectBrnProgress } from '@spartan-ng/brain/progress';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, Directive, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnProgress } from '@spartan-ng/brain/progress';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnRadioGroup } from '@spartan-ng/brain/radio-group';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Component({
|
|
@@ -13,8 +13,8 @@ import {
|
|
|
13
13
|
Renderer2,
|
|
14
14
|
signal,
|
|
15
15
|
} from '@angular/core';
|
|
16
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
17
16
|
import { BrnRadio, BrnRadioChange } from '@spartan-ng/brain/radio-group';
|
|
17
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
18
18
|
import { ClassValue } from 'clsx';
|
|
19
19
|
|
|
20
20
|
@Component({
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
2
|
import { Directive, booleanAttribute, computed, input } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { injectExposedSideProvider, injectExposesStateProvider } from '@spartan-ng/brain/core';
|
|
4
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
5
|
import type { ClassValue } from 'clsx';
|
|
5
6
|
|
|
6
7
|
@Directive({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnSelectGroup } from '@spartan-ng/brain/select';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
|
|
6
6
|
@Directive({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Directive, computed, inject, input } from '@angular/core';
|
|
2
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
3
2
|
import { BrnSelectLabel } from '@spartan-ng/brain/select';
|
|
3
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
4
4
|
import type { ClassValue } from 'clsx';
|
|
5
5
|
import { HlmSelectContent } from './hlm-select-content';
|
|
6
6
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, inject, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideCheck } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { BrnSelectOption } from '@spartan-ng/brain/select';
|
|
6
5
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
6
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
7
7
|
import type { ClassValue } from 'clsx';
|
|
8
8
|
|
|
9
9
|
@Component({
|
|
@@ -30,7 +30,7 @@ export class HlmSelectOption {
|
|
|
30
30
|
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
31
31
|
protected readonly _computedClass = computed(() =>
|
|
32
32
|
hlm(
|
|
33
|
-
'data-[active]:bg-accent data-[active]:text-accent-foreground [&>ng-icon]:text-muted-foreground relative flex w-full cursor-default items-center gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm outline-
|
|
33
|
+
'data-[active]:bg-accent data-[active]:text-accent-foreground [&>ng-icon]:text-muted-foreground relative flex w-full cursor-default items-center gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm outline-none select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>ng-icon]:pointer-events-none [&>ng-icon]:shrink-0 [&>ng-icon]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2',
|
|
34
34
|
this.userClass(),
|
|
35
35
|
),
|
|
36
36
|
);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideChevronDown } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
5
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
6
6
|
import { ClassValue } from 'clsx';
|
|
7
7
|
|
|
8
8
|
@Component({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideChevronUp } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
5
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
6
6
|
import { ClassValue } from 'clsx';
|
|
7
7
|
|
|
8
8
|
@Component({
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, computed, contentChild, inject, input } from '@angular/core';
|
|
2
2
|
import { NgIcon, provideIcons } from '@ng-icons/core';
|
|
3
3
|
import { lucideChevronDown } from '@ng-icons/lucide';
|
|
4
|
-
import { hlm } from '@spartan-ng/brain/core';
|
|
5
4
|
import { BrnSelect, BrnSelectTrigger } from '@spartan-ng/brain/select';
|
|
6
5
|
import { HlmIcon } from '@spartan-ng/helm/icon';
|
|
6
|
+
import { hlm } from '@spartan-ng/helm/utils';
|
|
7
7
|
import { cva } from 'class-variance-authority';
|
|
8
8
|
import type { ClassValue } from 'clsx';
|
|
9
9
|
|