@spartan-ng/cli 0.0.1-alpha.359 → 0.0.1-alpha.360
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/ui-accordion-helm/files/lib/hlm-accordion-icon.directive.ts.template +1 -1
- package/src/generators/ui/libs/ui-alert-dialog-helm/files/lib/hlm-alert-dialog-content.component.ts.template +1 -1
- package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-content.component.ts.template +1 -1
package/package.json
CHANGED
package/src/generators/ui/libs/ui-accordion-helm/files/lib/hlm-accordion-icon.directive.ts.template
CHANGED
|
@@ -17,7 +17,7 @@ export class HlmAccordionIconDirective {
|
|
|
17
17
|
|
|
18
18
|
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
19
19
|
protected _computedClass = computed(() =>
|
|
20
|
-
hlm('inline-block h-4 w-4 transition-transform duration
|
|
20
|
+
hlm('inline-block h-4 w-4 transition-transform [animation-duration:200]', this.userClass()),
|
|
21
21
|
);
|
|
22
22
|
|
|
23
23
|
constructor() {
|
|
@@ -22,7 +22,7 @@ export class HlmAlertDialogContentComponent {
|
|
|
22
22
|
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
23
23
|
protected readonly _computedClass = computed(() =>
|
|
24
24
|
hlm(
|
|
25
|
-
'relative grid w-full max-w-lg gap-4 border-border border bg-background p-6 shadow-lg duration
|
|
25
|
+
'relative grid w-full max-w-lg gap-4 border-border border bg-background p-6 shadow-lg [animation-duration:200] data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-top-[2%] data-[state=open]:slide-in-from-top-[2%] sm:rounded-lg md:w-full',
|
|
26
26
|
this.userClass(),
|
|
27
27
|
),
|
|
28
28
|
);
|
package/src/generators/ui/libs/ui-dialog-helm/files/lib/hlm-dialog-content.component.ts.template
CHANGED
|
@@ -43,7 +43,7 @@ export class HlmDialogContentComponent {
|
|
|
43
43
|
public readonly userClass = input<ClassValue>('', { alias: 'class' });
|
|
44
44
|
protected readonly _computedClass = computed(() =>
|
|
45
45
|
hlm(
|
|
46
|
-
'border-border grid w-full max-w-lg relative gap-4 border bg-background p-6 shadow-lg duration
|
|
46
|
+
'border-border grid w-full max-w-lg relative gap-4 border bg-background p-6 shadow-lg [animation-duration:200] data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-top-[2%] data-[state=open]:slide-in-from-top-[2%] sm:rounded-lg md:w-full',
|
|
47
47
|
this.userClass(),
|
|
48
48
|
this._dynamicComponentClass,
|
|
49
49
|
),
|