@dev-tcloud/tcloud-ui 0.0.30 → 0.0.32

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.
@@ -9,9 +9,15 @@ declare class Step {
9
9
  }
10
10
  export declare class TCloudUiLineStepCircleComponent implements OnInit {
11
11
  step: number;
12
- active: number;
13
- inactives: number[] | undefined;
14
- complete: boolean;
12
+ private _active;
13
+ set active(active: number);
14
+ get active(): number;
15
+ private _inactives;
16
+ set inactives(inactives: number[] | undefined);
17
+ get inactives(): number[] | undefined;
18
+ private _complete;
19
+ set complete(complete: boolean);
20
+ get complete(): boolean;
15
21
  trilha: Step[];
16
22
  constructor();
17
23
  ngOnInit(): void;
@@ -9,15 +9,21 @@ declare class Step {
9
9
  }
10
10
  export declare class TCloudUiNumberStepComponent implements OnInit {
11
11
  step: number;
12
- active: number;
13
- inactives: number[] | undefined;
14
- complete: boolean;
15
12
  useIconCheck: boolean;
13
+ private _active;
14
+ set active(active: number);
15
+ get active(): number;
16
+ private _inactives;
17
+ set inactives(inactives: number[] | undefined);
18
+ get inactives(): number[] | undefined;
19
+ private _complete;
20
+ set complete(complete: boolean);
21
+ get complete(): boolean;
16
22
  trilha: Step[];
17
23
  constructor();
18
24
  ngOnInit(): void;
19
25
  build_steps(): void;
20
26
  static ɵfac: i0.ɵɵFactoryDeclaration<TCloudUiNumberStepComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiNumberStepComponent, "tcloud-ui-number-step", never, { "step": "step"; "active": "active"; "inactives": "inactives"; "complete": "complete"; "useIconCheck": "useIconCheck"; }, {}, never, never, false>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<TCloudUiNumberStepComponent, "tcloud-ui-number-step", never, { "step": "step"; "useIconCheck": "useIconCheck"; "active": "active"; "inactives": "inactives"; "complete": "complete"; }, {}, never, never, false>;
22
28
  }
23
29
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-tcloud/tcloud-ui",
3
- "version": "0.0.30",
3
+ "version": "0.0.32",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.1.0",
6
6
  "@angular/core": "^14.1.0"