@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spartan-ng/cli",
3
- "version": "0.0.1-alpha.359",
3
+ "version": "0.0.1-alpha.360",
4
4
  "type": "commonjs",
5
5
  "dependencies": {
6
6
  "@nx/js": "^19.1.0",
@@ -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-200', this.userClass()),
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-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',
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
  );
@@ -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-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',
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
  ),