@spartan-ng/cli 0.0.1-alpha.701 → 0.0.1-alpha.702
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/generators/ui/libs/field/files/lib/hlm-field-content.ts.template +2 -4
- package/src/generators/ui/libs/field/files/lib/hlm-field-description.ts.template +2 -5
- package/src/generators/ui/libs/field/files/lib/hlm-field-error.ts.template +1 -5
- package/src/generators/ui/libs/field/files/lib/hlm-field-group.ts.template +2 -7
- package/src/generators/ui/libs/field/files/lib/hlm-field-label.ts.template +3 -7
- package/src/generators/ui/libs/field/files/lib/hlm-field-legend.ts.template +1 -1
- package/src/generators/ui/libs/field/files/lib/hlm-field-separator.ts.template +3 -5
- package/src/generators/ui/libs/field/files/lib/hlm-field-set.ts.template +2 -7
- package/src/generators/ui/libs/field/files/lib/hlm-field-title.ts.template +2 -7
- package/src/generators/ui/libs/field/files/lib/hlm-field.ts.template +4 -4
- package/src/generators/ui/libs/native-select/files/lib/hlm-native-select-opt-group.ts.template +1 -3
- package/src/generators/ui/libs/native-select/files/lib/hlm-native-select-option.ts.template +1 -3
- package/src/generators/ui/libs/native-select/files/lib/hlm-native-select.ts.template +8 -9
- package/src/generators/ui/libs/select/files/lib/hlm-select-trigger.ts.template +1 -1
- package/src/generators/ui/libs/sonner/files/lib/hlm-toaster.ts.template +12 -1
- package/src/generators/ui/style-luma.css +5 -5
- package/src/generators/ui/style-lyra.css +4 -4
- package/src/generators/ui/style-maia.css +5 -5
- package/src/generators/ui/style-mira.css +4 -4
- package/src/generators/ui/style-nova.css +5 -5
- package/src/generators/ui/style-vega.css +6 -6
- package/src/generators/ui/supported-ui-libraries.json +40 -41
package/package.json
CHANGED
|
@@ -3,12 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmFieldContent],hlm-field-content',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'field-content',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'field-content' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmFieldContent {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(() => 'group/field-content flex flex-1 flex-col
|
|
10
|
+
classes(() => 'spartan-field-content group/field-content flex flex-1 flex-col leading-snug');
|
|
13
11
|
}
|
|
14
12
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Directive, effect, EffectRef, inject, input, OnDestroy } from '@angular/core';
|
|
2
2
|
import { BrnFieldA11yService } from '@spartan-ng/brain/field';
|
|
3
3
|
import { classes } from '<%- importAlias %>/utils';
|
|
4
|
-
import type { ClassValue } from 'clsx';
|
|
5
4
|
|
|
6
5
|
@Directive({
|
|
7
6
|
selector: '[hlmFieldDescription],hlm-field-description',
|
|
@@ -15,7 +14,6 @@ export class HlmFieldDescription implements OnDestroy {
|
|
|
15
14
|
|
|
16
15
|
private readonly _a11y = inject(BrnFieldA11yService, { optional: true, host: true });
|
|
17
16
|
|
|
18
|
-
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
19
17
|
public readonly id = input<string>(`hlm-field-description-${HlmFieldDescription._id++}`);
|
|
20
18
|
|
|
21
19
|
private _registeredId?: string;
|
|
@@ -39,10 +37,9 @@ export class HlmFieldDescription implements OnDestroy {
|
|
|
39
37
|
|
|
40
38
|
constructor() {
|
|
41
39
|
classes(() => [
|
|
42
|
-
'
|
|
43
|
-
'last:mt-0 nth-last-2:-mt-1
|
|
40
|
+
'spartan-field-description leading-normal font-normal group-has-data-horizontal/field:text-balance',
|
|
41
|
+
'last:mt-0 nth-last-2:-mt-1',
|
|
44
42
|
'[&>a:hover]:text-primary [&>a]:underline [&>a]:underline-offset-4',
|
|
45
|
-
this.userClass(),
|
|
46
43
|
]);
|
|
47
44
|
}
|
|
48
45
|
|
|
@@ -12,7 +12,6 @@ import {
|
|
|
12
12
|
} from '@angular/core';
|
|
13
13
|
import { BrnField, BrnFieldA11yService } from '@spartan-ng/brain/field';
|
|
14
14
|
import { classes } from '<%- importAlias %>/utils';
|
|
15
|
-
import { ClassValue } from 'clsx';
|
|
16
15
|
|
|
17
16
|
@Component({
|
|
18
17
|
selector: 'hlm-field-error',
|
|
@@ -42,9 +41,6 @@ export class HlmFieldError implements OnDestroy {
|
|
|
42
41
|
/** The unique ID for the field error. If none is supplied, it will be auto-generated. */
|
|
43
42
|
public readonly id = input<string>(`hlm-field-error-${HlmFieldError._id++}`);
|
|
44
43
|
|
|
45
|
-
/** Additional CSS classes to apply to the field error element. */
|
|
46
|
-
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
47
|
-
|
|
48
44
|
/**
|
|
49
45
|
* The name of the specific validator error key to match (e.g. 'required').
|
|
50
46
|
* When omitted, the error is shown if any validation error is present.
|
|
@@ -89,7 +85,7 @@ export class HlmFieldError implements OnDestroy {
|
|
|
89
85
|
: null;
|
|
90
86
|
|
|
91
87
|
constructor() {
|
|
92
|
-
classes(() =>
|
|
88
|
+
classes(() => 'spartan-field-error font-normal');
|
|
93
89
|
}
|
|
94
90
|
|
|
95
91
|
ngOnDestroy() {
|
|
@@ -3,15 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmFieldGroup],hlm-field-group',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'field-group',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'field-group' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmFieldGroup {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(
|
|
13
|
-
() =>
|
|
14
|
-
'group/field-group @container/field-group flex w-full flex-col gap-7 data-[slot=checkbox-group]:gap-3 *:data-[slot=field-group]:gap-4',
|
|
15
|
-
);
|
|
10
|
+
classes(() => 'spartan-field-group group/field-group @container/field-group flex w-full flex-col');
|
|
16
11
|
}
|
|
17
12
|
}
|
|
@@ -5,17 +5,13 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
5
5
|
@Directive({
|
|
6
6
|
selector: '[hlmFieldLabel],hlm-field-label',
|
|
7
7
|
hostDirectives: [HlmLabel],
|
|
8
|
-
host: {
|
|
9
|
-
'data-slot': 'field-label',
|
|
10
|
-
},
|
|
8
|
+
host: { 'data-slot': 'field-label' },
|
|
11
9
|
})
|
|
12
10
|
export class HlmFieldLabel {
|
|
13
11
|
constructor() {
|
|
14
12
|
classes(() => [
|
|
15
|
-
'group/field-label peer/field-label flex w-fit
|
|
16
|
-
'has-[>[data-slot=field]]:w-full has-[>[data-slot=field]]:flex-col
|
|
17
|
-
'has-data-[checked=true]:bg-primary/5 has-data-[checked=true]:border-primary dark:has-data-[checked=true]:bg-primary/10',
|
|
18
|
-
'has-data-[state=checked]:bg-primary/5 has-data-[state=checked]:border-primary dark:has-data-[state=checked]:bg-primary/10',
|
|
13
|
+
'spartan-field-label group/field-label peer/field-label flex w-fit',
|
|
14
|
+
'has-[>[data-slot=field]]:w-full has-[>[data-slot=field]]:flex-col',
|
|
19
15
|
]);
|
|
20
16
|
}
|
|
21
17
|
}
|
|
@@ -12,6 +12,6 @@ export class HlmFieldLegend {
|
|
|
12
12
|
public readonly variant = input<'label' | 'legend'>('legend');
|
|
13
13
|
|
|
14
14
|
constructor() {
|
|
15
|
-
classes(() => '
|
|
15
|
+
classes(() => 'spartan-field-legend');
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -6,14 +6,12 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
6
6
|
selector: 'hlm-field-separator',
|
|
7
7
|
imports: [HlmSeparator],
|
|
8
8
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
9
|
-
host: {
|
|
10
|
-
'data-slot': 'field-separator',
|
|
11
|
-
},
|
|
9
|
+
host: { 'data-slot': 'field-separator' },
|
|
12
10
|
template: `
|
|
13
11
|
<hlm-separator class="absolute inset-0 top-1/2" />
|
|
14
12
|
<span
|
|
15
13
|
data-slot="field-separator-content"
|
|
16
|
-
class="bg-background
|
|
14
|
+
class="spartan-field-separator-content bg-background relative mx-auto block w-fit"
|
|
17
15
|
>
|
|
18
16
|
<ng-content />
|
|
19
17
|
</span>
|
|
@@ -21,6 +19,6 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
21
19
|
})
|
|
22
20
|
export class HlmFieldSeparator {
|
|
23
21
|
constructor() {
|
|
24
|
-
classes(() => '
|
|
22
|
+
classes(() => 'spartan-field-separator relative');
|
|
25
23
|
}
|
|
26
24
|
}
|
|
@@ -3,15 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: 'fieldset[hlmFieldSet]',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'field-set',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'field-set' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmFieldSet {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(() =>
|
|
13
|
-
'flex flex-col gap-6',
|
|
14
|
-
'has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3',
|
|
15
|
-
]);
|
|
10
|
+
classes(() => 'spartan-field-set flex flex-col');
|
|
16
11
|
}
|
|
17
12
|
}
|
|
@@ -3,15 +3,10 @@ import { classes } from '<%- importAlias %>/utils';
|
|
|
3
3
|
|
|
4
4
|
@Directive({
|
|
5
5
|
selector: '[hlmFieldTitle],hlm-field-title',
|
|
6
|
-
host: {
|
|
7
|
-
'data-slot': 'field-label',
|
|
8
|
-
},
|
|
6
|
+
host: { 'data-slot': 'field-label' },
|
|
9
7
|
})
|
|
10
8
|
export class HlmFieldTitle {
|
|
11
9
|
constructor() {
|
|
12
|
-
classes(
|
|
13
|
-
() =>
|
|
14
|
-
'flex w-fit items-center gap-2 text-sm leading-snug font-medium group-data-[disabled=true]/field:opacity-50',
|
|
15
|
-
);
|
|
10
|
+
classes(() => 'spartan-field-title flex w-fit items-center');
|
|
16
11
|
}
|
|
17
12
|
}
|
|
@@ -3,17 +3,17 @@ import { BrnField } from '@spartan-ng/brain/field';
|
|
|
3
3
|
import { classes } from '<%- importAlias %>/utils';
|
|
4
4
|
import { cva, VariantProps } from 'class-variance-authority';
|
|
5
5
|
|
|
6
|
-
const fieldVariants = cva('group/field
|
|
6
|
+
const fieldVariants = cva('spartan-field group/field flex w-full', {
|
|
7
7
|
variants: {
|
|
8
8
|
orientation: {
|
|
9
|
-
vertical: 'flex-col *:w-full [&>.sr-only]:w-auto',
|
|
9
|
+
vertical: 'spartan-field-orientation-vertical flex-col *:w-full [&>.sr-only]:w-auto',
|
|
10
10
|
horizontal: [
|
|
11
|
-
'flex-row items-center',
|
|
11
|
+
'spartan-field-orientation-horizontal flex-row items-center',
|
|
12
12
|
'*:data-[slot=field-label]:flex-auto',
|
|
13
13
|
'has-[>[data-slot=field-content]]:items-start has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px',
|
|
14
14
|
],
|
|
15
15
|
responsive: [
|
|
16
|
-
'flex-col *:w-full @md/field-group:flex-row @md/field-group:items-center @md/field-group:*:w-auto [&>.sr-only]:w-auto',
|
|
16
|
+
'spartan-field-orientation-responsive flex-col *:w-full @md/field-group:flex-row @md/field-group:items-center @md/field-group:*:w-auto [&>.sr-only]:w-auto',
|
|
17
17
|
'@md/field-group:*:data-[slot=field-label]:flex-auto',
|
|
18
18
|
'@md/field-group:has-[>[data-slot=field-content]]:items-start @md/field-group:has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px',
|
|
19
19
|
],
|
|
@@ -49,7 +49,7 @@ export const HLM_NATIVE_SELECT_VALUE_ACCESSOR = {
|
|
|
49
49
|
[attr.data-invalid]="_ariaInvalid() ? 'true' : null"
|
|
50
50
|
[attr.data-dirty]="_dirty?.() ? 'true' : null"
|
|
51
51
|
[attr.data-touched]="_touched?.() ? 'true' : null"
|
|
52
|
-
[attr.data-matches-spartan-invalid]="_spartanInvalid
|
|
52
|
+
[attr.data-matches-spartan-invalid]="_spartanInvalid() ? 'true' : null"
|
|
53
53
|
[value]="value()"
|
|
54
54
|
[disabled]="_disabled()"
|
|
55
55
|
(change)="_valueChanged($event)"
|
|
@@ -77,8 +77,7 @@ export class HlmNativeSelect implements ControlValueAccessor {
|
|
|
77
77
|
|
|
78
78
|
protected readonly _computedSelectClass = computed(() =>
|
|
79
79
|
hlm(
|
|
80
|
-
'
|
|
81
|
-
'data-[matches-spartan-invalid=true]:ring-destructive/20 dark:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive dark:data-[matches-spartan-invalid=true]:border-destructive/50 data-[matches-spartan-invalid=true]:ring-3',
|
|
80
|
+
'spartan-native-select outline-none disabled:pointer-events-none disabled:cursor-not-allowed',
|
|
82
81
|
this.selectClass(),
|
|
83
82
|
),
|
|
84
83
|
);
|
|
@@ -86,10 +85,7 @@ export class HlmNativeSelect implements ControlValueAccessor {
|
|
|
86
85
|
public readonly selectIconClass = input<ClassValue>('');
|
|
87
86
|
|
|
88
87
|
protected readonly _computedSelectIconClass = computed(() =>
|
|
89
|
-
hlm(
|
|
90
|
-
'text-muted-foreground pointer-events-none absolute top-1/2 right-2.5 -translate-y-1/2 text-base select-none',
|
|
91
|
-
this.selectIconClass(),
|
|
92
|
-
),
|
|
88
|
+
hlm('spartan-native-select-icon pointer-events-none absolute select-none', this.selectIconClass()),
|
|
93
89
|
);
|
|
94
90
|
|
|
95
91
|
public readonly size = input<'sm' | 'default'>('default');
|
|
@@ -98,6 +94,9 @@ export class HlmNativeSelect implements ControlValueAccessor {
|
|
|
98
94
|
|
|
99
95
|
protected readonly _disabled = linkedSignal(this.disabled);
|
|
100
96
|
|
|
97
|
+
/** Whether to force the input into an invalid state. */
|
|
98
|
+
public readonly forceInvalid = input<boolean, BooleanInput>(false, { transform: booleanAttribute });
|
|
99
|
+
|
|
101
100
|
/** Manual override for aria-invalid. When not set, auto-detects from the parent autocomplete error state. */
|
|
102
101
|
public readonly ariaInvalidOverride = input<boolean | undefined, BooleanInput>(undefined, {
|
|
103
102
|
transform: (v: BooleanInput) => (v === '' || v === undefined ? undefined : booleanAttribute(v)),
|
|
@@ -118,10 +117,10 @@ export class HlmNativeSelect implements ControlValueAccessor {
|
|
|
118
117
|
protected readonly _invalid = this._fieldControl?.invalid;
|
|
119
118
|
protected readonly _touched = this._fieldControl?.touched;
|
|
120
119
|
protected readonly _dirty = this._fieldControl?.dirty;
|
|
121
|
-
protected readonly _spartanInvalid = this._fieldControl?.spartanInvalid;
|
|
120
|
+
protected readonly _spartanInvalid = computed(() => this.forceInvalid() || this._fieldControl?.spartanInvalid());
|
|
122
121
|
|
|
123
122
|
constructor() {
|
|
124
|
-
classes(() => 'group/native-select relative w-fit has-[select:disabled]:opacity-50');
|
|
123
|
+
classes(() => 'spartan-native-select-wrapper group/native-select relative w-fit has-[select:disabled]:opacity-50');
|
|
125
124
|
}
|
|
126
125
|
|
|
127
126
|
protected _valueChanged(event: Event): void {
|
|
@@ -21,7 +21,7 @@ import type { ClassValue } from 'clsx';
|
|
|
21
21
|
data-slot="select-trigger"
|
|
22
22
|
>
|
|
23
23
|
<ng-content />
|
|
24
|
-
<ng-icon name="lucideChevronDown" class="text-muted-foreground pointer-events-none text-base" />
|
|
24
|
+
<ng-icon name="lucideChevronDown" class="text-muted-foreground pointer-events-none ms-auto text-base" />
|
|
25
25
|
</button>
|
|
26
26
|
`,
|
|
27
27
|
})
|
|
@@ -23,7 +23,7 @@ import type { ClassValue } from 'clsx';
|
|
|
23
23
|
[duration]="duration()"
|
|
24
24
|
[visibleToasts]="visibleToasts()"
|
|
25
25
|
[closeButton]="closeButton()"
|
|
26
|
-
[toastOptions]="
|
|
26
|
+
[toastOptions]="_computedToastOptions()"
|
|
27
27
|
[offset]="offset()"
|
|
28
28
|
[style]="userStyle()"
|
|
29
29
|
>
|
|
@@ -68,6 +68,17 @@ export class HlmToaster {
|
|
|
68
68
|
transform: booleanAttribute,
|
|
69
69
|
});
|
|
70
70
|
public readonly toastOptions = input<ToasterProps['toastOptions']>({});
|
|
71
|
+
|
|
72
|
+
protected readonly _computedToastOptions = computed(() => {
|
|
73
|
+
const options = this.toastOptions();
|
|
74
|
+
return {
|
|
75
|
+
...options,
|
|
76
|
+
classes: {
|
|
77
|
+
...options?.classes,
|
|
78
|
+
toast: hlm('spartan-toast', options?.classes?.toast),
|
|
79
|
+
},
|
|
80
|
+
};
|
|
81
|
+
});
|
|
71
82
|
public readonly offset = input<ToasterProps['offset']>(null);
|
|
72
83
|
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
73
84
|
public readonly userStyle = input<Record<string, string>>(
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
.spartan-native-select-icon {
|
|
230
|
-
@apply text-muted-foreground end-2.5 top-1/2
|
|
230
|
+
@apply text-muted-foreground end-2.5 top-1/2 -translate-y-1/2 text-[calc(var(--spacing)*4)];
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
/* MARK: Combobox */
|
|
@@ -375,7 +375,7 @@
|
|
|
375
375
|
}
|
|
376
376
|
|
|
377
377
|
.spartan-field {
|
|
378
|
-
@apply data-[invalid=true]:text-destructive gap-3;
|
|
378
|
+
@apply data-[matches-spartan-invalid=true]:text-destructive gap-3;
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
.spartan-field-content {
|
|
@@ -383,11 +383,11 @@
|
|
|
383
383
|
}
|
|
384
384
|
|
|
385
385
|
.spartan-field-label {
|
|
386
|
-
@apply has-data-checked:bg-input/30 gap-2 group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-2xl has-[>[data-slot=field]]:border *:data-[slot=field]:p-4;
|
|
386
|
+
@apply has-data-checked:bg-input/30 gap-2 leading-snug group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-2xl has-[>[data-slot=field]]:border *:data-[slot=field]:p-4;
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
.spartan-field-title {
|
|
390
|
-
@apply gap-2 text-sm font-medium group-data-[disabled=true]/field:opacity-50;
|
|
390
|
+
@apply gap-2 text-sm leading-snug font-medium group-data-[disabled=true]/field:opacity-50;
|
|
391
391
|
}
|
|
392
392
|
|
|
393
393
|
.spartan-field-description {
|
|
@@ -1202,7 +1202,7 @@
|
|
|
1202
1202
|
|
|
1203
1203
|
/* MARK: Sonner */
|
|
1204
1204
|
.spartan-toast {
|
|
1205
|
-
@apply rounded-2xl
|
|
1205
|
+
@apply rounded-2xl!;
|
|
1206
1206
|
}
|
|
1207
1207
|
|
|
1208
1208
|
/* MARK: Table */
|
|
@@ -576,7 +576,7 @@
|
|
|
576
576
|
}
|
|
577
577
|
|
|
578
578
|
.spartan-field {
|
|
579
|
-
@apply data-[invalid=true]:text-destructive gap-2;
|
|
579
|
+
@apply data-[matches-spartan-invalid=true]:text-destructive gap-2;
|
|
580
580
|
}
|
|
581
581
|
|
|
582
582
|
.spartan-field-content {
|
|
@@ -584,7 +584,7 @@
|
|
|
584
584
|
}
|
|
585
585
|
|
|
586
586
|
.spartan-field-label {
|
|
587
|
-
@apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-none has-[>[data-slot=field]]:border *:data-[slot=field]:p-2;
|
|
587
|
+
@apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 leading-snug group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-none has-[>[data-slot=field]]:border *:data-[slot=field]:p-2;
|
|
588
588
|
}
|
|
589
589
|
|
|
590
590
|
.spartan-field-title {
|
|
@@ -841,7 +841,7 @@
|
|
|
841
841
|
}
|
|
842
842
|
|
|
843
843
|
.spartan-native-select-icon {
|
|
844
|
-
@apply text-muted-foreground end-2.5 top-1/2
|
|
844
|
+
@apply text-muted-foreground end-2.5 top-1/2 -translate-y-1/2 text-[calc(var(--spacing)*4)];
|
|
845
845
|
}
|
|
846
846
|
|
|
847
847
|
/* MARK: Pagination */
|
|
@@ -1162,7 +1162,7 @@
|
|
|
1162
1162
|
|
|
1163
1163
|
/* MARK: Sonner */
|
|
1164
1164
|
.spartan-toast {
|
|
1165
|
-
@apply rounded-none
|
|
1165
|
+
@apply rounded-none!;
|
|
1166
1166
|
}
|
|
1167
1167
|
|
|
1168
1168
|
/* MARK: Switch */
|
|
@@ -601,7 +601,7 @@
|
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
.spartan-field {
|
|
604
|
-
@apply data-[invalid=true]:text-destructive gap-3;
|
|
604
|
+
@apply data-[matches-spartan-invalid=true]:text-destructive gap-3;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
.spartan-field-content {
|
|
@@ -609,11 +609,11 @@
|
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
.spartan-field-label {
|
|
612
|
-
@apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-xl has-[>[data-slot=field]]:border *:data-[slot=field]:p-4;
|
|
612
|
+
@apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 leading-snug group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-xl has-[>[data-slot=field]]:border *:data-[slot=field]:p-4;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
615
|
.spartan-field-title {
|
|
616
|
-
@apply gap-2 text-sm font-medium group-data-[disabled=true]/field:opacity-50;
|
|
616
|
+
@apply gap-2 text-sm leading-snug font-medium group-data-[disabled=true]/field:opacity-50;
|
|
617
617
|
}
|
|
618
618
|
|
|
619
619
|
.spartan-field-description {
|
|
@@ -866,7 +866,7 @@
|
|
|
866
866
|
}
|
|
867
867
|
|
|
868
868
|
.spartan-native-select-icon {
|
|
869
|
-
@apply text-muted-foreground end-3.5 top-1/2
|
|
869
|
+
@apply text-muted-foreground end-3.5 top-1/2 -translate-y-1/2 text-[calc(var(--spacing)*4)];
|
|
870
870
|
}
|
|
871
871
|
|
|
872
872
|
/* MARK: Pagination */
|
|
@@ -1187,7 +1187,7 @@
|
|
|
1187
1187
|
|
|
1188
1188
|
/* MARK: Sonner */
|
|
1189
1189
|
.spartan-toast {
|
|
1190
|
-
@apply rounded-2xl
|
|
1190
|
+
@apply rounded-2xl!;
|
|
1191
1191
|
}
|
|
1192
1192
|
|
|
1193
1193
|
/* MARK: Switch */
|
|
@@ -601,7 +601,7 @@
|
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
.spartan-field {
|
|
604
|
-
@apply data-[invalid=true]:text-destructive gap-2;
|
|
604
|
+
@apply data-[matches-spartan-invalid=true]:text-destructive gap-2;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
.spartan-field-content {
|
|
@@ -609,7 +609,7 @@
|
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
.spartan-field-label {
|
|
612
|
-
@apply has-data-checked:bg-primary/5 dark:has-data-checked:bg-primary/10 gap-2 group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-md has-[>[data-slot=field]]:border *:data-[slot=field]:p-2;
|
|
612
|
+
@apply has-data-checked:bg-primary/5 dark:has-data-checked:bg-primary/10 gap-2 leading-snug group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-md has-[>[data-slot=field]]:border *:data-[slot=field]:p-2;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
615
|
.spartan-field-title {
|
|
@@ -866,7 +866,7 @@
|
|
|
866
866
|
}
|
|
867
867
|
|
|
868
868
|
.spartan-native-select-icon {
|
|
869
|
-
@apply text-muted-foreground end-1.5 top-1/2
|
|
869
|
+
@apply text-muted-foreground end-1.5 top-1/2 -translate-y-1.5 text-[calc(var(--spacing)*3.5)] group-data-[size=sm]/native-select:-translate-y-1.25 group-data-[size=sm]/native-select:text-[calc(var(--spacing)*3)];
|
|
870
870
|
}
|
|
871
871
|
|
|
872
872
|
/* MARK: Pagination */
|
|
@@ -1189,7 +1189,7 @@
|
|
|
1189
1189
|
|
|
1190
1190
|
/* MARK: Sonner */
|
|
1191
1191
|
.spartan-toast {
|
|
1192
|
-
@apply rounded-md
|
|
1192
|
+
@apply rounded-md!;
|
|
1193
1193
|
}
|
|
1194
1194
|
|
|
1195
1195
|
/* MARK: Switch */
|
|
@@ -601,7 +601,7 @@
|
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
.spartan-field {
|
|
604
|
-
@apply data-[invalid=true]:text-destructive gap-2;
|
|
604
|
+
@apply data-[matches-spartan-invalid=true]:text-destructive gap-2;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
.spartan-field-content {
|
|
@@ -609,11 +609,11 @@
|
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
.spartan-field-label {
|
|
612
|
-
@apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-lg has-[>[data-slot=field]]:border *:data-[slot=field]:p-2.5;
|
|
612
|
+
@apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 leading-snug group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-lg has-[>[data-slot=field]]:border *:data-[slot=field]:p-2.5;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
615
|
.spartan-field-title {
|
|
616
|
-
@apply gap-2 text-sm font-medium group-data-[disabled=true]/field:opacity-50;
|
|
616
|
+
@apply gap-2 text-sm leading-snug font-medium group-data-[disabled=true]/field:opacity-50;
|
|
617
617
|
}
|
|
618
618
|
|
|
619
619
|
.spartan-field-description {
|
|
@@ -866,7 +866,7 @@
|
|
|
866
866
|
}
|
|
867
867
|
|
|
868
868
|
.spartan-native-select-icon {
|
|
869
|
-
@apply text-muted-foreground end-2.5 top-1/2
|
|
869
|
+
@apply text-muted-foreground end-2.5 top-1/2 -translate-y-1/2 text-[calc(var(--spacing)*4)];
|
|
870
870
|
}
|
|
871
871
|
|
|
872
872
|
/* MARK: Pagination */
|
|
@@ -1187,7 +1187,7 @@
|
|
|
1187
1187
|
|
|
1188
1188
|
/* MARK: Sonner */
|
|
1189
1189
|
.spartan-toast {
|
|
1190
|
-
@apply rounded-2xl
|
|
1190
|
+
@apply rounded-2xl!;
|
|
1191
1191
|
}
|
|
1192
1192
|
|
|
1193
1193
|
/* MARK: Switch */
|
|
@@ -597,7 +597,7 @@
|
|
|
597
597
|
}
|
|
598
598
|
|
|
599
599
|
&.spartan-field {
|
|
600
|
-
@apply data-[invalid=true]:text-destructive gap-3;
|
|
600
|
+
@apply data-[matches-spartan-invalid=true]:text-destructive gap-3;
|
|
601
601
|
}
|
|
602
602
|
|
|
603
603
|
&.spartan-field-content {
|
|
@@ -605,11 +605,11 @@
|
|
|
605
605
|
}
|
|
606
606
|
|
|
607
607
|
&.spartan-field-label {
|
|
608
|
-
@apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-md has-[>[data-slot=field]]:border *:data-[slot=field]:p-3;
|
|
608
|
+
@apply has-data-checked:bg-primary/5 has-data-checked:border-primary/30 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10 gap-2 leading-snug group-data-[disabled=true]/field:opacity-50 has-[>[data-slot=field]]:rounded-md has-[>[data-slot=field]]:border *:data-[slot=field]:p-3;
|
|
609
609
|
}
|
|
610
610
|
|
|
611
611
|
&.spartan-field-title {
|
|
612
|
-
@apply gap-2 text-sm font-medium group-data-[disabled=true]/field:opacity-50;
|
|
612
|
+
@apply gap-2 text-sm leading-snug font-medium group-data-[disabled=true]/field:opacity-50;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
615
|
&.spartan-field-description {
|
|
@@ -858,11 +858,11 @@
|
|
|
858
858
|
|
|
859
859
|
/* MARK: Native Select */
|
|
860
860
|
&.spartan-native-select {
|
|
861
|
-
@apply border-input placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 dark:hover:bg-input/50 focus-visible:border-ring focus-visible:ring-ring/50 data-[matches-spartan-invalid=true]:ring-destructive/20 dark:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive dark:data-[matches-spartan-invalid=true]:border-destructive/50 h-9 w-full min-w-0 appearance-none rounded-md border bg-transparent py-1
|
|
861
|
+
@apply border-input placeholder:text-muted-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 dark:hover:bg-input/50 focus-visible:border-ring focus-visible:ring-ring/50 data-[matches-spartan-invalid=true]:ring-destructive/20 dark:data-[matches-spartan-invalid=true]:ring-destructive/40 data-[matches-spartan-invalid=true]:border-destructive dark:data-[matches-spartan-invalid=true]:border-destructive/50 h-9 w-full min-w-0 appearance-none rounded-md border bg-transparent py-1 ps-2.5 pe-8 text-sm shadow-xs transition-[color,box-shadow] select-none focus-visible:ring-3 data-[matches-spartan-invalid=true]:ring-3 data-[size=sm]:h-8;
|
|
862
862
|
}
|
|
863
863
|
|
|
864
864
|
&.spartan-native-select-icon {
|
|
865
|
-
@apply text-muted-foreground end-2.5 top-1/2
|
|
865
|
+
@apply text-muted-foreground end-2.5 top-1/2 -translate-y-1/2 text-[calc(var(--spacing)*4)];
|
|
866
866
|
}
|
|
867
867
|
|
|
868
868
|
/* MARK: Pagination */
|
|
@@ -1183,7 +1183,7 @@
|
|
|
1183
1183
|
|
|
1184
1184
|
/* MARK: Sonner */
|
|
1185
1185
|
&.spartan-toast {
|
|
1186
|
-
@apply rounded-2xl
|
|
1186
|
+
@apply rounded-2xl!;
|
|
1187
1187
|
}
|
|
1188
1188
|
|
|
1189
1189
|
/* MARK: Switch */
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "accordion",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
6
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
6
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
7
7
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
8
8
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
9
9
|
"clsx": "^2.1.1"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"name": "alert-dialog",
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
23
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
23
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
24
24
|
"clsx": "^2.1.1"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
38
38
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
39
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
39
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
40
40
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
41
41
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
42
42
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "avatar",
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
49
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
49
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"badge": {
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"name": "button",
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
73
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
73
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
74
74
|
"class-variance-authority": "^0.7.0",
|
|
75
75
|
"clsx": "^2.1.1"
|
|
76
76
|
}
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"name": "button-group",
|
|
80
80
|
"peerDependencies": {
|
|
81
81
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
82
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
82
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
83
83
|
"class-variance-authority": "^0.7.0"
|
|
84
84
|
}
|
|
85
85
|
},
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
92
92
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
93
93
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
94
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
94
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
95
95
|
"clsx": "^2.1.1"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
120
120
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
121
121
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
122
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
122
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
123
123
|
"clsx": "^2.1.1"
|
|
124
124
|
}
|
|
125
125
|
},
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"name": "collapsible",
|
|
128
128
|
"peerDependencies": {
|
|
129
129
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
130
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
130
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
133
|
"combobox": {
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"peerDependencies": {
|
|
136
136
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
137
137
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
138
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
138
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
139
139
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
140
140
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
141
141
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"peerDependencies": {
|
|
148
148
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
149
149
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
150
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
150
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
151
151
|
"clsx": "^2.1.1",
|
|
152
152
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
153
153
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0"
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"name": "context-menu",
|
|
158
158
|
"peerDependencies": {
|
|
159
159
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
160
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
160
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
161
161
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
162
162
|
"rxjs": "^7.8.0"
|
|
163
163
|
}
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
171
171
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
172
172
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
173
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
173
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
174
174
|
"clsx": "^2.1.1"
|
|
175
175
|
}
|
|
176
176
|
},
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
"name": "dialog",
|
|
179
179
|
"peerDependencies": {
|
|
180
180
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
181
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
181
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
182
182
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
183
183
|
"@angular/common": ">=20.0.0 <22.0.0",
|
|
184
184
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
195
195
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
196
196
|
"rxjs": "^7.8.0",
|
|
197
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
197
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
198
198
|
}
|
|
199
199
|
},
|
|
200
200
|
"empty": {
|
|
@@ -208,8 +208,7 @@
|
|
|
208
208
|
"name": "field",
|
|
209
209
|
"peerDependencies": {
|
|
210
210
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
211
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
212
|
-
"clsx": "^2.1.1",
|
|
211
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
213
212
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
214
213
|
"class-variance-authority": "^0.7.0"
|
|
215
214
|
}
|
|
@@ -218,7 +217,7 @@
|
|
|
218
217
|
"name": "hover-card",
|
|
219
218
|
"peerDependencies": {
|
|
220
219
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
221
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
220
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
222
221
|
}
|
|
223
222
|
},
|
|
224
223
|
"icon": {
|
|
@@ -234,7 +233,7 @@
|
|
|
234
233
|
"peerDependencies": {
|
|
235
234
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
236
235
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
237
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
236
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
238
237
|
}
|
|
239
238
|
},
|
|
240
239
|
"input-group": {
|
|
@@ -251,7 +250,7 @@
|
|
|
251
250
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
252
251
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
253
252
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
254
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
253
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
255
254
|
}
|
|
256
255
|
},
|
|
257
256
|
"item": {
|
|
@@ -259,7 +258,7 @@
|
|
|
259
258
|
"peerDependencies": {
|
|
260
259
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
261
260
|
"class-variance-authority": "^0.7.0",
|
|
262
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
261
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
263
262
|
}
|
|
264
263
|
},
|
|
265
264
|
"kbd": {
|
|
@@ -272,14 +271,14 @@
|
|
|
272
271
|
"name": "label",
|
|
273
272
|
"peerDependencies": {
|
|
274
273
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
275
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
274
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
276
275
|
}
|
|
277
276
|
},
|
|
278
277
|
"menubar": {
|
|
279
278
|
"name": "menubar",
|
|
280
279
|
"peerDependencies": {
|
|
281
280
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
282
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
281
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
283
282
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
284
283
|
"rxjs": "^7.8.0"
|
|
285
284
|
}
|
|
@@ -292,7 +291,7 @@
|
|
|
292
291
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
293
292
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
294
293
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
295
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
294
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
296
295
|
"clsx": "^2.1.1"
|
|
297
296
|
}
|
|
298
297
|
},
|
|
@@ -300,7 +299,7 @@
|
|
|
300
299
|
"name": "navigation-menu",
|
|
301
300
|
"peerDependencies": {
|
|
302
301
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
303
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
302
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
304
303
|
}
|
|
305
304
|
},
|
|
306
305
|
"pagination": {
|
|
@@ -319,14 +318,14 @@
|
|
|
319
318
|
"name": "popover",
|
|
320
319
|
"peerDependencies": {
|
|
321
320
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
322
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
321
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
323
322
|
}
|
|
324
323
|
},
|
|
325
324
|
"progress": {
|
|
326
325
|
"name": "progress",
|
|
327
326
|
"peerDependencies": {
|
|
328
327
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
329
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
328
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
330
329
|
}
|
|
331
330
|
},
|
|
332
331
|
"radio-group": {
|
|
@@ -334,7 +333,7 @@
|
|
|
334
333
|
"peerDependencies": {
|
|
335
334
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
336
335
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
337
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
336
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
338
337
|
"clsx": "^2.1.1",
|
|
339
338
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
340
339
|
"@angular/common": ">=20.0.0 <22.0.0"
|
|
@@ -344,7 +343,7 @@
|
|
|
344
343
|
"name": "resizable",
|
|
345
344
|
"peerDependencies": {
|
|
346
345
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
347
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
346
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
348
347
|
}
|
|
349
348
|
},
|
|
350
349
|
"scroll-area": {
|
|
@@ -359,7 +358,7 @@
|
|
|
359
358
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
360
359
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
361
360
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
362
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
361
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
363
362
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
364
363
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
365
364
|
"clsx": "^2.1.1"
|
|
@@ -369,14 +368,14 @@
|
|
|
369
368
|
"name": "separator",
|
|
370
369
|
"peerDependencies": {
|
|
371
370
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
372
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
371
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
373
372
|
}
|
|
374
373
|
},
|
|
375
374
|
"sheet": {
|
|
376
375
|
"name": "sheet",
|
|
377
376
|
"peerDependencies": {
|
|
378
377
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
379
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
378
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
380
379
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
381
380
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
382
381
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
@@ -389,7 +388,7 @@
|
|
|
389
388
|
"peerDependencies": {
|
|
390
389
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
391
390
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
392
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
391
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
393
392
|
"class-variance-authority": "^0.7.0",
|
|
394
393
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
395
394
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
@@ -408,7 +407,7 @@
|
|
|
408
407
|
"peerDependencies": {
|
|
409
408
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
410
409
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
411
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
410
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
412
411
|
}
|
|
413
412
|
},
|
|
414
413
|
"sonner": {
|
|
@@ -418,7 +417,7 @@
|
|
|
418
417
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
419
418
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
420
419
|
"@ng-icons/lucide": ">=32.0.0 <34.0.0",
|
|
421
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
420
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
422
421
|
"clsx": "^2.1.1"
|
|
423
422
|
}
|
|
424
423
|
},
|
|
@@ -436,7 +435,7 @@
|
|
|
436
435
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
437
436
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
438
437
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
439
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
438
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
440
439
|
"clsx": "^2.1.1"
|
|
441
440
|
}
|
|
442
441
|
},
|
|
@@ -450,7 +449,7 @@
|
|
|
450
449
|
"name": "tabs",
|
|
451
450
|
"peerDependencies": {
|
|
452
451
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
453
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
452
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
454
453
|
"class-variance-authority": "^0.7.0",
|
|
455
454
|
"@angular/cdk": ">=20.0.0 <22.0.0",
|
|
456
455
|
"@ng-icons/core": ">=32.0.0 <34.0.0",
|
|
@@ -464,14 +463,14 @@
|
|
|
464
463
|
"peerDependencies": {
|
|
465
464
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
466
465
|
"@angular/forms": ">=20.0.0 <22.0.0",
|
|
467
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
466
|
+
"@spartan-ng/brain": "0.0.1-alpha.702"
|
|
468
467
|
}
|
|
469
468
|
},
|
|
470
469
|
"toggle": {
|
|
471
470
|
"name": "toggle",
|
|
472
471
|
"peerDependencies": {
|
|
473
472
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
474
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
473
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
475
474
|
"class-variance-authority": "^0.7.0"
|
|
476
475
|
}
|
|
477
476
|
},
|
|
@@ -479,7 +478,7 @@
|
|
|
479
478
|
"name": "toggle-group",
|
|
480
479
|
"peerDependencies": {
|
|
481
480
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
482
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
481
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
483
482
|
"@angular/cdk": ">=20.0.0 <22.0.0"
|
|
484
483
|
}
|
|
485
484
|
},
|
|
@@ -487,7 +486,7 @@
|
|
|
487
486
|
"name": "tooltip",
|
|
488
487
|
"peerDependencies": {
|
|
489
488
|
"@angular/core": ">=20.0.0 <22.0.0",
|
|
490
|
-
"@spartan-ng/brain": "0.0.1-alpha.
|
|
489
|
+
"@spartan-ng/brain": "0.0.1-alpha.702",
|
|
491
490
|
"class-variance-authority": "^0.7.0"
|
|
492
491
|
}
|
|
493
492
|
},
|