keevo-components 1.5.137 → 1.5.138

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,8 +9,9 @@ import * as i7 from "./picklist/kvpicklist.module";
9
9
  import * as i8 from "./tree-table/kv-treetable.module";
10
10
  import * as i9 from "./workspace/kvworkspace.module";
11
11
  import * as i10 from "./orgchart/orgchart.module";
12
+ import * as i11 from "./login/kvlogin.module";
12
13
  export declare class KeevoComponentsModule {
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<KeevoComponentsModule, never>;
14
- static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule], [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule]>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KeevoComponentsModule, never, [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule, typeof i11.KvLoginModule], [typeof i1.KvInputsModule, typeof i2.KvButtonsModule, typeof i3.KvTableModule, typeof i4.KvtreeViewModule, typeof i5.KvChartModule, typeof i6.KvMenuModule, typeof i7.KvPickListModule, typeof i8.KVTreeTableModule, typeof i9.KvWorkspaceModule, typeof i10.OrgchartModule, typeof i11.KvLoginModule]>;
15
16
  static ɵinj: i0.ɵɵInjectorDeclaration<KeevoComponentsModule>;
16
17
  }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./login.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../api/modules/primeng.module";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../inputs/kvinputs.module";
7
+ import * as i6 from "../buttons/kvbutton.module";
8
+ import * as i7 from "primeng/progressspinner";
9
+ export declare class KvLoginModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<KvLoginModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KvLoginModule, [typeof i1.LoginComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule, typeof i7.ProgressSpinnerModule], [typeof i1.LoginComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<KvLoginModule>;
13
+ }
@@ -0,0 +1,17 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { FormGroup, FormBuilder } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LoginComponent implements OnInit {
5
+ private formBuilder;
6
+ Background: any;
7
+ SystemLogo: any;
8
+ SystemColorPrimary: string;
9
+ SystemColorSecondary: string;
10
+ onLogin: EventEmitter<any>;
11
+ loginForm: FormGroup;
12
+ constructor(formBuilder: FormBuilder);
13
+ ngOnInit(): void;
14
+ login(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "kv-login", never, { "Background": "Background"; "SystemLogo": "SystemLogo"; "SystemColorPrimary": "SystemColorPrimary"; "SystemColorSecondary": "SystemColorSecondary"; }, { "onLogin": "onLogin"; }, never, never, false, never>;
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "1.5.137",
3
+ "version": "1.5.138",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",
package/public-api.d.ts CHANGED
@@ -61,3 +61,5 @@ export * from './lib/tree-table/kv-treetable.component';
61
61
  export * from './lib/tree-table/kv-treetable.module';
62
62
  export * from './lib/orgchart/orgchart.component';
63
63
  export * from './lib/orgchart/orgchart.module';
64
+ export * from './lib/login/login.component';
65
+ export * from './lib/login/kvlogin.module';