@coreui/angular-pro 4.0.0-alpha.13 → 4.0.0-alpha.14

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.
@@ -2,6 +2,7 @@ import { BooleanInput, NumberInput } from '@angular/cdk/coercion';
2
2
  import { ColOrder, ICol } from './col.type';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class ColDirective implements ICol {
5
+ static ngAcceptInputType_cCol: (BooleanInput | NumberInput);
5
6
  static ngAcceptInputType_xs: (BooleanInput | NumberInput);
6
7
  static ngAcceptInputType_sm: (BooleanInput | NumberInput);
7
8
  static ngAcceptInputType_md: (BooleanInput | NumberInput);
@@ -12,6 +13,7 @@ export declare class ColDirective implements ICol {
12
13
  * The number of columns/offset/order on extra small devices (<576px).
13
14
  * @type { 'auto' | number | boolean }
14
15
  */
16
+ set cCol(value: (BooleanInput | NumberInput));
15
17
  set xs(value: (BooleanInput | NumberInput));
16
18
  get xs(): (BooleanInput | NumberInput);
17
19
  private _xs;
@@ -69,5 +71,5 @@ export declare class ColDirective implements ICol {
69
71
  get hostClasses(): any;
70
72
  coerceInput(value: (BooleanInput | NumberInput)): number | boolean | "auto";
71
73
  static ɵfac: i0.ɵɵFactoryDeclaration<ColDirective, never>;
72
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColDirective, "[cCol]", never, { "xs": "xs"; "sm": "sm"; "md": "md"; "lg": "lg"; "xl": "xl"; "xxl": "xxl"; "offset": "offset"; "order": "order"; }, {}, never>;
74
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColDirective, "[cCol]", never, { "cCol": "cCol"; "xs": "xs"; "sm": "sm"; "md": "md"; "lg": "lg"; "xl": "xl"; "xxl": "xxl"; "offset": "offset"; "order": "order"; }, {}, never>;
73
75
  }
@@ -0,0 +1 @@
1
+ export * from './public_api';
@@ -0,0 +1,18 @@
1
+ import { AfterContentInit } from '@angular/core';
2
+ import { PlaceholderDirective } from './placeholder.directive';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PlaceholderAnimationDirective implements AfterContentInit {
5
+ constructor();
6
+ /**
7
+ * Animation type for placeholder
8
+ * @type 'glow' | 'wave'
9
+ * @default undefined
10
+ */
11
+ animation?: 'glow' | 'wave';
12
+ get hostClasses(): any;
13
+ placeholder: PlaceholderDirective;
14
+ private animate;
15
+ ngAfterContentInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlaceholderAnimationDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PlaceholderAnimationDirective, "[cPlaceholderAnimation]", never, { "animation": "cPlaceholderAnimation"; }, {}, ["placeholder"]>;
18
+ }
@@ -0,0 +1,22 @@
1
+ import { BooleanInput } from '@angular/cdk/coercion';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PlaceholderDirective {
4
+ static ngAcceptInputType_visible: BooleanInput;
5
+ constructor();
6
+ /**
7
+ * placeholder toggler
8
+ * @type boolean
9
+ * @default true
10
+ */
11
+ set visible(value: boolean);
12
+ get visible(): boolean;
13
+ private _visible;
14
+ /**
15
+ * Size the placeholder extra small, small, large.
16
+ */
17
+ size?: 'xs' | 'sm' | 'lg';
18
+ get ariaHidden(): boolean | null;
19
+ get hostClasses(): any;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlaceholderDirective, never>;
21
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PlaceholderDirective, "[cPlaceholder]", ["cPlaceholder"], { "visible": "cPlaceholder"; "size": "cPlaceholderSize"; }, {}, never>;
22
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./placeholder.directive";
3
+ import * as i2 from "./placeholder-animation.directive";
4
+ import * as i3 from "@angular/common";
5
+ export declare class PlaceholderModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<PlaceholderModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PlaceholderModule, [typeof i1.PlaceholderDirective, typeof i2.PlaceholderAnimationDirective], [typeof i3.CommonModule], [typeof i1.PlaceholderDirective, typeof i2.PlaceholderAnimationDirective]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<PlaceholderModule>;
9
+ }
@@ -0,0 +1,3 @@
1
+ export { PlaceholderAnimationDirective } from './placeholder-animation.directive';
2
+ export { PlaceholderDirective } from './placeholder.directive';
3
+ export { PlaceholderModule } from './placeholder.module';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/angular-pro",
3
- "version": "4.0.0-alpha.13",
3
+ "version": "4.0.0-alpha.14",
4
4
  "description": "CoreUI Pro Components Library for Angular",
5
5
  "homepage": "https://coreui.io/pro/angular",
6
6
  "author": {
package/public-api.d.ts CHANGED
@@ -26,6 +26,7 @@ export * from './lib/navbar';
26
26
  export * from './lib/modal';
27
27
  export * from './lib/offcanvas';
28
28
  export * from './lib/pagination';
29
+ export * from './lib/placeholder';
29
30
  export * from './lib/popover';
30
31
  export * from './lib/progress';
31
32
  export * from './lib/services';