@coreui/angular-pro 5.2.15 → 5.2.16

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.
@@ -1,3 +1,4 @@
1
+ import { InputSignal } from '@angular/core';
1
2
  import { Positions } from '../coreui.types';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class FooterComponent {
@@ -5,14 +6,14 @@ export declare class FooterComponent {
5
6
  * Place footer in non-static positions. [docs]
6
7
  * @type Positions
7
8
  */
8
- position?: Positions;
9
+ readonly position: InputSignal<Positions | undefined>;
9
10
  /**
10
11
  * Default role for footer. [docs]
11
12
  * @type string
12
13
  * @default 'contentinfo'
13
14
  */
14
- role: string;
15
- get getClasses(): any;
15
+ readonly role: InputSignal<string>;
16
+ readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "c-footer, [cFooter]", never, { "position": { "alias": "position"; "required": false; }; "role": { "alias": "role"; "required": false; }; }, {}, never, ["*"], true, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "c-footer, [cFooter]", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
18
19
  }
@@ -1,17 +1,17 @@
1
- import { AfterContentInit } from '@angular/core';
1
+ import { InputSignal } from '@angular/core';
2
2
  import { PlaceholderDirective } from './placeholder.directive';
3
3
  import * as i0 from "@angular/core";
4
- export declare class PlaceholderAnimationDirective implements AfterContentInit {
5
- #private;
4
+ export declare class PlaceholderAnimationDirective {
6
5
  /**
7
6
  * Animation type for placeholder
8
7
  * @type 'glow' | 'wave'
9
8
  * @default undefined
10
9
  */
11
- animation?: 'glow' | 'wave';
12
- placeholder: PlaceholderDirective;
13
- get hostClasses(): any;
14
- ngAfterContentInit(): void;
10
+ readonly animation: InputSignal<'glow' | 'wave' | undefined>;
11
+ readonly placeholder: import("@angular/core").Signal<PlaceholderDirective | undefined>;
12
+ readonly hostClasses: import("@angular/core").Signal<{
13
+ [x: string]: boolean | undefined;
14
+ }>;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<PlaceholderAnimationDirective, never>;
16
- static ɵdir: i0.ɵɵDirectiveDeclaration<PlaceholderAnimationDirective, "[cPlaceholderAnimation]", never, { "animation": { "alias": "cPlaceholderAnimation"; "required": false; }; }, {}, ["placeholder"], never, true, never>;
16
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PlaceholderAnimationDirective, "[cPlaceholderAnimation]", never, { "animation": { "alias": "cPlaceholderAnimation"; "required": false; "isSignal": true; }; }, {}, ["placeholder"], never, true, never>;
17
17
  }
@@ -1,3 +1,4 @@
1
+ import { InputSignalWithTransform } from '@angular/core';
1
2
  import * as i0 from "@angular/core";
2
3
  export declare class PlaceholderDirective {
3
4
  /**
@@ -5,14 +6,16 @@ export declare class PlaceholderDirective {
5
6
  * @type boolean
6
7
  * @default false
7
8
  */
8
- visible: boolean;
9
+ readonly visible: InputSignalWithTransform<boolean, unknown>;
9
10
  /**
10
11
  * Size the placeholder xs, small, large.
11
12
  */
12
- size?: 'xs' | 'sm' | 'lg';
13
- get ariaHidden(): boolean | null;
14
- get hostClasses(): any;
13
+ readonly size: import("@angular/core").InputSignal<"xs" | "sm" | "lg" | undefined>;
14
+ readonly ariaHidden: import("@angular/core").Signal<true | null>;
15
+ readonly hostClasses: import("@angular/core").Signal<{
16
+ [x: string]: boolean;
17
+ placeholder: boolean;
18
+ }>;
15
19
  static ɵfac: i0.ɵɵFactoryDeclaration<PlaceholderDirective, never>;
16
- static ɵdir: i0.ɵɵDirectiveDeclaration<PlaceholderDirective, "[cPlaceholder]", ["cPlaceholder"], { "visible": { "alias": "cPlaceholder"; "required": false; }; "size": { "alias": "cPlaceholderSize"; "required": false; }; }, {}, never, never, true, never>;
17
- static ngAcceptInputType_visible: unknown;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PlaceholderDirective, "[cPlaceholder]", ["cPlaceholder"], { "visible": { "alias": "cPlaceholder"; "required": false; "isSignal": true; }; "size": { "alias": "cPlaceholderSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
18
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/angular-pro",
3
- "version": "5.2.15",
3
+ "version": "5.2.16",
4
4
  "description": "CoreUI Pro Components Library for Angular",
5
5
  "copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
6
6
  "homepage": "https://coreui.io/angular",
@@ -29,7 +29,7 @@
29
29
  "@angular/forms": "^18.2.0",
30
30
  "@angular/router": "^18.2.0",
31
31
  "@coreui/coreui-pro": "^5.4.0",
32
- "@coreui/icons-angular": "~5.2.15",
32
+ "@coreui/icons-angular": "~5.2.16",
33
33
  "rxjs": "^7.8.1"
34
34
  },
35
35
  "repository": {