ngx-vector-components 4.112.0 → 4.113.0

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.
@@ -10,4 +10,5 @@ export * from './generic-modal';
10
10
  export * from './menu';
11
11
  export * from './panel';
12
12
  export * from './score';
13
+ export * from './stepper';
13
14
  export * from './top-bar';
@@ -0,0 +1,2 @@
1
+ export * from './stepper.component';
2
+ export * from './stepper.module';
@@ -0,0 +1,15 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
2
+ import { MenuItem } from 'primeng/api';
3
+ import * as i0 from "@angular/core";
4
+ export declare class StepperComponent implements AfterViewInit {
5
+ private elementRef;
6
+ steps: MenuItem[];
7
+ navigable: boolean;
8
+ activeIndex: number;
9
+ onActiveIndexChange: EventEmitter<number>;
10
+ constructor(elementRef: ElementRef);
11
+ ngAfterViewInit(): void;
12
+ activeIndexChange(index: number): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "vector-stepper", never, { "steps": "steps"; "navigable": "navigable"; "activeIndex": "activeIndex"; "onActiveIndexChange": "onActiveIndexChange"; }, {}, never, never>;
15
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./stepper.component";
3
+ import * as i2 from "../../shared/shared.module";
4
+ import * as i3 from "primeng/steps";
5
+ export declare class StepperModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepperModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<StepperModule, [typeof i1.StepperComponent], [typeof i2.SharedModule, typeof i3.StepsModule], [typeof i1.StepperComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<StepperModule>;
9
+ }
@@ -1,4 +1,6 @@
1
1
  export declare class StringUtil {
2
2
  static getInitials(nameString?: string): string;
3
3
  static revertString(str: string): string;
4
+ static convertTimeToMinutes(timeText: string): number;
5
+ static convertMinutesToTime(minutesTotal: number): string;
4
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-vector-components",
3
- "version": "4.112.0",
3
+ "version": "4.113.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~13.2.3",
6
6
  "@angular/cdk": "^13.3.9",