keevo-components 1.5.140 → 1.5.142
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.
- package/README.md +24 -24
- package/esm2020/keevo-components.mjs +4 -4
- package/esm2020/lib/api/base-components/base-component-button.mjs +36 -36
- package/esm2020/lib/api/base-components/base-component-chart.mjs +92 -92
- package/esm2020/lib/api/base-components/base-component-crud-form.mjs +278 -278
- package/esm2020/lib/api/base-components/base-component-crud-list.mjs +67 -67
- package/esm2020/lib/api/base-components/base-component-crud.mjs +65 -65
- package/esm2020/lib/api/base-components/base-component-dropdown.mjs +161 -161
- package/esm2020/lib/api/base-components/base-component-input.mjs +93 -93
- package/esm2020/lib/api/base-components/base-component-multi-select.mjs +128 -128
- package/esm2020/lib/api/base-components/base-component.mjs +49 -49
- package/esm2020/lib/api/components/chart/chart.config.mjs +2 -2
- package/esm2020/lib/api/components/chart/chart.model.mjs +2 -2
- package/esm2020/lib/api/components/chart/orchart.config.mjs +2 -2
- package/esm2020/lib/api/components/chart/orchart.item.mjs +2 -2
- package/esm2020/lib/api/components/dropdown/filtro.combo.mjs +2 -2
- package/esm2020/lib/api/components/error/error.component.mjs +26 -26
- package/esm2020/lib/api/components/error/kverror.module.mjs +35 -35
- package/esm2020/lib/api/components/table/action-item.mjs +2 -2
- package/esm2020/lib/api/components/table/kv-menuitem.mjs +3 -3
- package/esm2020/lib/api/components/table/table.config.column.mjs +2 -2
- package/esm2020/lib/api/components/table/table.config.mjs +2 -2
- package/esm2020/lib/api/components/table/table.paginate.mjs +9 -9
- package/esm2020/lib/api/helpers/component-providers.mjs +16 -16
- package/esm2020/lib/api/helpers/translate-primeng.mjs +23 -23
- package/esm2020/lib/api/models/menu/master.model.mjs +2 -2
- package/esm2020/lib/api/models/menu/menu.model.mjs +2 -2
- package/esm2020/lib/api/models/menu/menucompleto.model.mjs +2 -2
- package/esm2020/lib/api/models/menu/sistemamenu.model.mjs +2 -2
- package/esm2020/lib/api/modules/primeng.module.mjs +247 -247
- package/esm2020/lib/api/services/base.api.service.mjs +74 -0
- package/esm2020/lib/api/services/component.service.mjs +27 -27
- package/esm2020/lib/api/services/form.service.mjs +102 -102
- package/esm2020/lib/api/services/imagens.service.mjs +22 -22
- package/esm2020/lib/api/services/notification.service.mjs +67 -67
- package/esm2020/lib/api/services/object.service.mjs +26 -26
- package/esm2020/lib/buttons/button-personalize/button-personalize.component.mjs +17 -17
- package/esm2020/lib/buttons/button-popup/button-popup.component.mjs +30 -0
- package/esm2020/lib/buttons/button-secondary/button-secondary.component.mjs +17 -17
- package/esm2020/lib/buttons/button-success/button-success.component.mjs +17 -17
- package/esm2020/lib/buttons/kvbutton.module.mjs +39 -34
- package/esm2020/lib/chart/chart.component.mjs +145 -145
- package/esm2020/lib/chart/kvchart.module.mjs +32 -32
- package/esm2020/lib/directives/template.directive.mjs +24 -24
- package/esm2020/lib/inputs/check/check.component.mjs +26 -26
- package/esm2020/lib/inputs/dropdown/dropdown.component.mjs +36 -36
- package/esm2020/lib/inputs/input-calendar/input-calendar.component.mjs +88 -88
- package/esm2020/lib/inputs/input-mask/input-mask.component.mjs +22 -22
- package/esm2020/lib/inputs/input-number/input-number.component.mjs +56 -56
- package/esm2020/lib/inputs/input-password/input-password.component.mjs +32 -32
- package/esm2020/lib/inputs/input-text/input-text.component.mjs +20 -20
- package/esm2020/lib/inputs/input-text-checkbox/input-text-checkbox.component.mjs +37 -37
- package/esm2020/lib/inputs/input-textarea/input-textarea.component.mjs +42 -42
- package/esm2020/lib/inputs/input-time/input-time.component.mjs +23 -23
- package/esm2020/lib/inputs/kvinputs.module.mjs +99 -99
- package/esm2020/lib/inputs/multi-select/multi-select.component.mjs +37 -37
- package/esm2020/lib/inputs/radio-group/radio-group.component.mjs +49 -49
- package/esm2020/lib/inputs/switch/switch.component.mjs +32 -32
- package/esm2020/lib/keevo-components.module.mjs +91 -91
- package/esm2020/lib/login/kvlogin.module.mjs +47 -47
- package/esm2020/lib/login/login.component.mjs +38 -38
- package/esm2020/lib/menu/kvmenu.module.mjs +43 -43
- package/esm2020/lib/menu/menu.component.mjs +212 -212
- package/esm2020/lib/orgchart/orgchart.component.mjs +100 -100
- package/esm2020/lib/orgchart/orgchart.module.mjs +24 -24
- package/esm2020/lib/picklist/kvpicklist.module.mjs +32 -32
- package/esm2020/lib/picklist/picklist.component.mjs +48 -48
- package/esm2020/lib/pipes/codigofile.pipe.mjs +19 -19
- package/esm2020/lib/pipes/cpfcnpj.pipe.mjs +25 -25
- package/esm2020/lib/pipes/pipes.module.mjs +34 -34
- package/esm2020/lib/pipes/telefone.pipe.mjs +45 -45
- package/esm2020/lib/table/kvtable.module.mjs +32 -32
- package/esm2020/lib/table/table.component.mjs +476 -476
- package/esm2020/lib/tree-table/kv-treetable.component.mjs +290 -290
- package/esm2020/lib/tree-table/kv-treetable.module.mjs +32 -32
- package/esm2020/lib/tree-view/kvtree-view.module.mjs +28 -28
- package/esm2020/lib/tree-view/tree-view.component.mjs +29 -29
- package/esm2020/lib/workspace/kvworkspace.module.mjs +47 -47
- package/esm2020/lib/workspace/workspace.component.mjs +77 -77
- package/esm2020/public-api.mjs +124 -70
- package/fesm2015/keevo-components.mjs +3838 -3737
- package/fesm2015/keevo-components.mjs.map +1 -1
- package/fesm2020/keevo-components.mjs +3829 -3728
- package/fesm2020/keevo-components.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/api/base-components/base-component-button.d.ts +14 -14
- package/lib/api/base-components/base-component-chart.d.ts +40 -40
- package/lib/api/base-components/base-component-crud-form.d.ts +134 -134
- package/lib/api/base-components/base-component-crud-list.d.ts +63 -63
- package/lib/api/base-components/base-component-crud.d.ts +36 -36
- package/lib/api/base-components/base-component-dropdown.d.ts +42 -42
- package/lib/api/base-components/base-component-input.d.ts +31 -31
- package/lib/api/base-components/base-component-multi-select.d.ts +35 -35
- package/lib/api/base-components/base-component.d.ts +21 -21
- package/lib/api/components/chart/chart.config.d.ts +11 -11
- package/lib/api/components/chart/chart.model.d.ts +9 -9
- package/lib/api/components/chart/orchart.config.d.ts +35 -35
- package/lib/api/components/chart/orchart.item.d.ts +26 -26
- package/lib/api/components/dropdown/filtro.combo.d.ts +4 -4
- package/lib/api/components/error/error.component.d.ts +12 -12
- package/lib/api/components/error/kverror.module.d.ts +10 -10
- package/lib/api/components/table/action-item.d.ts +5 -5
- package/lib/api/components/table/kv-menuitem.d.ts +9 -9
- package/lib/api/components/table/table.config.column.d.ts +21 -21
- package/lib/api/components/table/table.config.d.ts +17 -17
- package/lib/api/components/table/table.paginate.d.ts +6 -6
- package/lib/api/helpers/component-providers.d.ts +2 -2
- package/lib/api/helpers/translate-primeng.d.ts +4 -4
- package/lib/api/models/menu/master.model.d.ts +6 -6
- package/lib/api/models/menu/menu.model.d.ts +10 -10
- package/lib/api/models/menu/menucompleto.model.d.ts +6 -6
- package/lib/api/models/menu/sistemamenu.model.d.ts +8 -8
- package/lib/api/modules/primeng.module.d.ts +60 -60
- package/lib/api/services/base.api.service.d.ts +25 -0
- package/lib/api/services/component.service.d.ts +11 -11
- package/lib/api/services/form.service.d.ts +27 -27
- package/lib/api/services/imagens.service.d.ts +8 -8
- package/lib/api/services/notification.service.d.ts +25 -25
- package/lib/api/services/object.service.d.ts +8 -8
- package/lib/buttons/button-personalize/button-personalize.component.d.ts +7 -7
- package/lib/buttons/button-popup/button-popup.component.d.ts +13 -0
- package/lib/buttons/button-secondary/button-secondary.component.d.ts +7 -7
- package/lib/buttons/button-success/button-success.component.d.ts +7 -7
- package/lib/buttons/kvbutton.module.d.ts +11 -10
- package/lib/chart/chart.component.d.ts +56 -56
- package/lib/chart/kvchart.module.d.ts +10 -10
- package/lib/directives/template.directive.d.ts +11 -11
- package/lib/inputs/check/check.component.d.ts +11 -11
- package/lib/inputs/dropdown/dropdown.component.d.ts +14 -14
- package/lib/inputs/input-calendar/input-calendar.component.d.ts +27 -27
- package/lib/inputs/input-mask/input-mask.component.d.ts +10 -10
- package/lib/inputs/input-number/input-number.component.d.ts +18 -18
- package/lib/inputs/input-password/input-password.component.d.ts +13 -13
- package/lib/inputs/input-text/input-text.component.d.ts +9 -9
- package/lib/inputs/input-text-checkbox/input-text-checkbox.component.d.ts +15 -15
- package/lib/inputs/input-textarea/input-textarea.component.d.ts +16 -16
- package/lib/inputs/input-time/input-time.component.d.ts +10 -10
- package/lib/inputs/kvinputs.module.d.ts +23 -23
- package/lib/inputs/multi-select/multi-select.component.d.ts +12 -12
- package/lib/inputs/radio-group/radio-group.component.d.ts +17 -17
- package/lib/inputs/switch/switch.component.d.ts +13 -13
- package/lib/keevo-components.module.d.ts +17 -17
- package/lib/login/kvlogin.module.d.ts +13 -13
- package/lib/login/login.component.d.ts +17 -17
- package/lib/menu/kvmenu.module.d.ts +12 -12
- package/lib/menu/menu.component.d.ts +67 -67
- package/lib/orgchart/orgchart.component.d.ts +27 -27
- package/lib/orgchart/orgchart.module.d.ts +9 -9
- package/lib/picklist/kvpicklist.module.d.ts +10 -10
- package/lib/picklist/picklist.component.d.ts +20 -20
- package/lib/pipes/codigofile.pipe.d.ts +7 -7
- package/lib/pipes/cpfcnpj.pipe.d.ts +7 -7
- package/lib/pipes/pipes.module.d.ts +10 -10
- package/lib/pipes/telefone.pipe.d.ts +7 -7
- package/lib/table/kvtable.module.d.ts +10 -10
- package/lib/table/table.component.d.ts +103 -103
- package/lib/tree-table/kv-treetable.component.d.ts +69 -69
- package/lib/tree-table/kv-treetable.module.d.ts +11 -11
- package/lib/tree-view/kvtree-view.module.d.ts +9 -9
- package/lib/tree-view/tree-view.component.d.ts +14 -14
- package/lib/workspace/kvworkspace.module.d.ts +13 -13
- package/lib/workspace/workspace.component.d.ts +28 -28
- package/package.json +1 -1
- package/public-api.d.ts +120 -66
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class CheckComponent extends BaseComponentInput<boolean> implements OnInit {
|
|
6
|
-
onCheckChange: EventEmitter<any>;
|
|
7
|
-
constructor(componentService: ComponentService);
|
|
8
|
-
emitOnCheckChange(event: any): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CheckComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckComponent, "kv-check", never, {}, { "onCheckChange": "onCheckChange"; }, never, never, false, never>;
|
|
11
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CheckComponent extends BaseComponentInput<boolean> implements OnInit {
|
|
6
|
+
onCheckChange: EventEmitter<any>;
|
|
7
|
+
constructor(componentService: ComponentService);
|
|
8
|
+
emitOnCheckChange(event: any): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckComponent, "kv-check", never, {}, { "onCheckChange": "onCheckChange"; }, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import { DialogService } from 'primeng/dynamicdialog';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import { BaseComponentDropDown } from '../../api/base-components/base-component-dropdown';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class DropdownComponent extends BaseComponentDropDown implements OnInit {
|
|
7
|
-
constructor(componentService: ComponentService, dialogService: DialogService);
|
|
8
|
-
dropDowValue: any;
|
|
9
|
-
itemTemplate: TemplateRef<any>;
|
|
10
|
-
selectedItemTemplate: TemplateRef<any>;
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "kv-dropdown", never, { "dropDowValue": "dropDowValue"; "itemTemplate": "itemTemplate"; "selectedItemTemplate": "selectedItemTemplate"; }, {}, never, ["*"], false, never>;
|
|
14
|
-
}
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { DialogService } from 'primeng/dynamicdialog';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import { BaseComponentDropDown } from '../../api/base-components/base-component-dropdown';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DropdownComponent extends BaseComponentDropDown implements OnInit {
|
|
7
|
+
constructor(componentService: ComponentService, dialogService: DialogService);
|
|
8
|
+
dropDowValue: any;
|
|
9
|
+
itemTemplate: TemplateRef<any>;
|
|
10
|
+
selectedItemTemplate: TemplateRef<any>;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "kv-dropdown", never, { "dropDowValue": "dropDowValue"; "itemTemplate": "itemTemplate"; "selectedItemTemplate": "selectedItemTemplate"; }, {}, never, ["*"], false, never>;
|
|
14
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { CalendarTypeView } from 'primeng/calendar';
|
|
3
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
4
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InputCalendarComponent extends BaseComponentInput<Date> implements OnInit {
|
|
7
|
-
isYear: boolean;
|
|
8
|
-
isMonthYear: boolean;
|
|
9
|
-
minDate: Date;
|
|
10
|
-
maxDate: Date;
|
|
11
|
-
showButtonBar: boolean;
|
|
12
|
-
showIcon: boolean;
|
|
13
|
-
showTime: boolean;
|
|
14
|
-
selectionMode: 'single' | 'multiple' | 'range';
|
|
15
|
-
onSelectionChange: EventEmitter<any>;
|
|
16
|
-
onSelectionValue: EventEmitter<any>;
|
|
17
|
-
private dateFilter;
|
|
18
|
-
typeView: CalendarTypeView;
|
|
19
|
-
dateFormat: string;
|
|
20
|
-
constructor(componentService: ComponentService);
|
|
21
|
-
writeValue(value: Date): void;
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
protected onInputChange(event: any): void;
|
|
24
|
-
hideOnRangeMode(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputCalendarComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputCalendarComponent, "kv-input-calendar", never, { "isYear": "isYear"; "isMonthYear": "isMonthYear"; "minDate": "minDate"; "maxDate": "maxDate"; "showButtonBar": "showButtonBar"; "showIcon": "showIcon"; "showTime": "showTime"; "selectionMode": "selectionMode"; }, { "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; }, never, ["*"], false, never>;
|
|
27
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CalendarTypeView } from 'primeng/calendar';
|
|
3
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
4
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class InputCalendarComponent extends BaseComponentInput<Date> implements OnInit {
|
|
7
|
+
isYear: boolean;
|
|
8
|
+
isMonthYear: boolean;
|
|
9
|
+
minDate: Date;
|
|
10
|
+
maxDate: Date;
|
|
11
|
+
showButtonBar: boolean;
|
|
12
|
+
showIcon: boolean;
|
|
13
|
+
showTime: boolean;
|
|
14
|
+
selectionMode: 'single' | 'multiple' | 'range';
|
|
15
|
+
onSelectionChange: EventEmitter<any>;
|
|
16
|
+
onSelectionValue: EventEmitter<any>;
|
|
17
|
+
private dateFilter;
|
|
18
|
+
typeView: CalendarTypeView;
|
|
19
|
+
dateFormat: string;
|
|
20
|
+
constructor(componentService: ComponentService);
|
|
21
|
+
writeValue(value: Date): void;
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
protected onInputChange(event: any): void;
|
|
24
|
+
hideOnRangeMode(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputCalendarComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputCalendarComponent, "kv-input-calendar", never, { "isYear": "isYear"; "isMonthYear": "isMonthYear"; "minDate": "minDate"; "maxDate": "maxDate"; "showButtonBar": "showButtonBar"; "showIcon": "showIcon"; "showTime": "showTime"; "selectionMode": "selectionMode"; }, { "onSelectionChange": "onSelectionChange"; "onSelectionValue": "onSelectionValue"; }, never, ["*"], false, never>;
|
|
27
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputMaskComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
mask: string;
|
|
7
|
-
constructor(componentService: ComponentService);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputMaskComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputMaskComponent, "kv-input-mask", never, { "mask": "mask"; }, {}, never, ["*"], false, never>;
|
|
10
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class InputMaskComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
+
mask: string;
|
|
7
|
+
constructor(componentService: ComponentService);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputMaskComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputMaskComponent, "kv-input-mask", never, { "mask": "mask"; }, {}, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { InputNumber } from 'primeng/inputnumber';
|
|
3
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
4
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InputNumberComponent extends BaseComponentInput<string> implements OnInit {
|
|
7
|
-
mode: 'currency' | 'decimal';
|
|
8
|
-
digits: number;
|
|
9
|
-
min: number;
|
|
10
|
-
max: number;
|
|
11
|
-
inputNumber: InputNumber;
|
|
12
|
-
constructor(componentService: ComponentService);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
private configDecimal;
|
|
15
|
-
private configCurrency;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "kv-input-number", never, { "mode": "mode"; "digits": "digits"; "min": "min"; "max": "max"; }, {}, never, ["*"], false, never>;
|
|
18
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { InputNumber } from 'primeng/inputnumber';
|
|
3
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
4
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class InputNumberComponent extends BaseComponentInput<string> implements OnInit {
|
|
7
|
+
mode: 'currency' | 'decimal';
|
|
8
|
+
digits: number;
|
|
9
|
+
min: number;
|
|
10
|
+
max: number;
|
|
11
|
+
inputNumber: InputNumber;
|
|
12
|
+
constructor(componentService: ComponentService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
private configDecimal;
|
|
15
|
+
private configCurrency;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "kv-input-number", never, { "mode": "mode"; "digits": "digits"; "min": "min"; "max": "max"; }, {}, never, ["*"], false, never>;
|
|
18
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputPasswordComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
feedback: boolean;
|
|
7
|
-
mediumRegex: string;
|
|
8
|
-
strongRegex: string;
|
|
9
|
-
toggleMask: boolean;
|
|
10
|
-
constructor(componentService: ComponentService);
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordComponent, "kv-input-password", never, { "feedback": "feedback"; "mediumRegex": "mediumRegex"; "strongRegex": "strongRegex"; "toggleMask": "toggleMask"; }, {}, never, ["*"], false, never>;
|
|
13
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class InputPasswordComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
+
feedback: boolean;
|
|
7
|
+
mediumRegex: string;
|
|
8
|
+
strongRegex: string;
|
|
9
|
+
toggleMask: boolean;
|
|
10
|
+
constructor(componentService: ComponentService);
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordComponent, "kv-input-password", never, { "feedback": "feedback"; "mediumRegex": "mediumRegex"; "strongRegex": "strongRegex"; "toggleMask": "toggleMask"; }, {}, never, ["*"], false, never>;
|
|
13
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTextComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
constructor(componentService: ComponentService);
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "kv-input-text", never, {}, {}, never, ["*"], false, never>;
|
|
9
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class InputTextComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
+
constructor(componentService: ComponentService);
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "kv-input-text", never, {}, {}, never, ["*"], false, never>;
|
|
9
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTextCheckboxComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
constructor(componentService: ComponentService);
|
|
7
|
-
checkBoxEmit: EventEmitter<boolean>;
|
|
8
|
-
tooltipCheckbox: string;
|
|
9
|
-
private _checkBoxValue;
|
|
10
|
-
set checkBoxValue(value: boolean);
|
|
11
|
-
get checkBoxValue(): boolean;
|
|
12
|
-
emitCheckBoxValue(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextCheckboxComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": "tooltipCheckbox"; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
|
|
15
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class InputTextCheckboxComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
+
constructor(componentService: ComponentService);
|
|
7
|
+
checkBoxEmit: EventEmitter<boolean>;
|
|
8
|
+
tooltipCheckbox: string;
|
|
9
|
+
private _checkBoxValue;
|
|
10
|
+
set checkBoxValue(value: boolean);
|
|
11
|
+
get checkBoxValue(): boolean;
|
|
12
|
+
emitCheckBoxValue(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextCheckboxComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextCheckboxComponent, "kv-input-text-checkbox", never, { "tooltipCheckbox": "tooltipCheckbox"; }, { "checkBoxEmit": "checkBoxEmit"; }, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTextareaComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
multiline: boolean;
|
|
7
|
-
rows: number;
|
|
8
|
-
cols: number;
|
|
9
|
-
autoResize: boolean;
|
|
10
|
-
maxValueLength: number;
|
|
11
|
-
counterValueLength: number;
|
|
12
|
-
constructor(componentService: ComponentService);
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaComponent, "kv-input-textarea", never, { "multiline": "multiline"; "rows": "rows"; "cols": "cols"; "autoResize": "autoResize"; "maxValueLength": "maxValueLength"; }, {}, never, ["*"], false, never>;
|
|
16
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class InputTextareaComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
+
multiline: boolean;
|
|
7
|
+
rows: number;
|
|
8
|
+
cols: number;
|
|
9
|
+
autoResize: boolean;
|
|
10
|
+
maxValueLength: number;
|
|
11
|
+
counterValueLength: number;
|
|
12
|
+
constructor(componentService: ComponentService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaComponent, "kv-input-textarea", never, { "multiline": "multiline"; "rows": "rows"; "cols": "cols"; "autoResize": "autoResize"; "maxValueLength": "maxValueLength"; }, {}, never, ["*"], false, never>;
|
|
16
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTimeComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
-
showIcon: boolean;
|
|
7
|
-
constructor(componentService: ComponentService);
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTimeComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTimeComponent, "kv-input-time", never, { "showIcon": "showIcon"; }, {}, never, ["*"], false, never>;
|
|
10
|
-
}
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class InputTimeComponent extends BaseComponentInput<string> implements OnInit {
|
|
6
|
+
showIcon: boolean;
|
|
7
|
+
constructor(componentService: ComponentService);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTimeComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTimeComponent, "kv-input-time", never, { "showIcon": "showIcon"; }, {}, never, ["*"], false, never>;
|
|
10
|
+
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./check/check.component";
|
|
3
|
-
import * as i2 from "./dropdown/dropdown.component";
|
|
4
|
-
import * as i3 from "./input-calendar/input-calendar.component";
|
|
5
|
-
import * as i4 from "./input-mask/input-mask.component";
|
|
6
|
-
import * as i5 from "./input-number/input-number.component";
|
|
7
|
-
import * as i6 from "./input-password/input-password.component";
|
|
8
|
-
import * as i7 from "./input-text/input-text.component";
|
|
9
|
-
import * as i8 from "./input-textarea/input-textarea.component";
|
|
10
|
-
import * as i9 from "./input-time/input-time.component";
|
|
11
|
-
import * as i10 from "./multi-select/multi-select.component";
|
|
12
|
-
import * as i11 from "./switch/switch.component";
|
|
13
|
-
import * as i12 from "./radio-group/radio-group.component";
|
|
14
|
-
import * as i13 from "./input-text-checkbox/input-text-checkbox.component";
|
|
15
|
-
import * as i14 from "@angular/common";
|
|
16
|
-
import * as i15 from "@angular/forms";
|
|
17
|
-
import * as i16 from "../api/components/error/kverror.module";
|
|
18
|
-
import * as i17 from "../api/modules/primeng.module";
|
|
19
|
-
export declare class KvInputsModule {
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvInputsModule, never>;
|
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent, typeof i12.RadioGroupComponent, typeof i13.InputTextCheckboxComponent], [typeof i14.CommonModule, typeof i15.FormsModule, typeof i16.kvErrorModule, typeof i17.PrimeNgModule, typeof i15.ReactiveFormsModule], [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent, typeof i12.RadioGroupComponent, typeof i13.InputTextCheckboxComponent]>;
|
|
22
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvInputsModule>;
|
|
23
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./check/check.component";
|
|
3
|
+
import * as i2 from "./dropdown/dropdown.component";
|
|
4
|
+
import * as i3 from "./input-calendar/input-calendar.component";
|
|
5
|
+
import * as i4 from "./input-mask/input-mask.component";
|
|
6
|
+
import * as i5 from "./input-number/input-number.component";
|
|
7
|
+
import * as i6 from "./input-password/input-password.component";
|
|
8
|
+
import * as i7 from "./input-text/input-text.component";
|
|
9
|
+
import * as i8 from "./input-textarea/input-textarea.component";
|
|
10
|
+
import * as i9 from "./input-time/input-time.component";
|
|
11
|
+
import * as i10 from "./multi-select/multi-select.component";
|
|
12
|
+
import * as i11 from "./switch/switch.component";
|
|
13
|
+
import * as i12 from "./radio-group/radio-group.component";
|
|
14
|
+
import * as i13 from "./input-text-checkbox/input-text-checkbox.component";
|
|
15
|
+
import * as i14 from "@angular/common";
|
|
16
|
+
import * as i15 from "@angular/forms";
|
|
17
|
+
import * as i16 from "../api/components/error/kverror.module";
|
|
18
|
+
import * as i17 from "../api/modules/primeng.module";
|
|
19
|
+
export declare class KvInputsModule {
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvInputsModule, never>;
|
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvInputsModule, [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent, typeof i12.RadioGroupComponent, typeof i13.InputTextCheckboxComponent], [typeof i14.CommonModule, typeof i15.FormsModule, typeof i16.kvErrorModule, typeof i17.PrimeNgModule, typeof i15.ReactiveFormsModule], [typeof i1.CheckComponent, typeof i2.DropdownComponent, typeof i3.InputCalendarComponent, typeof i4.InputMaskComponent, typeof i5.InputNumberComponent, typeof i6.InputPasswordComponent, typeof i7.InputTextComponent, typeof i8.InputTextareaComponent, typeof i9.InputTimeComponent, typeof i10.MultiSelectComponent, typeof i11.SwitchComponent, typeof i12.RadioGroupComponent, typeof i13.InputTextCheckboxComponent]>;
|
|
22
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvInputsModule>;
|
|
23
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
2
|
-
import { BaseComponentMultiSelect } from '../../api/base-components/base-component-multi-select';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MultiSelectComponent extends BaseComponentMultiSelect {
|
|
5
|
-
optionInactive: boolean;
|
|
6
|
-
group: boolean;
|
|
7
|
-
inactiveOptions: string;
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
constructor(componentService: ComponentService);
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kv-multi-select", never, { "optionInactive": "optionInactive"; "group": "group"; }, {}, never, ["*"], false, never>;
|
|
12
|
-
}
|
|
1
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
2
|
+
import { BaseComponentMultiSelect } from '../../api/base-components/base-component-multi-select';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MultiSelectComponent extends BaseComponentMultiSelect {
|
|
5
|
+
optionInactive: boolean;
|
|
6
|
+
group: boolean;
|
|
7
|
+
inactiveOptions: string;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
constructor(componentService: ComponentService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent, "kv-multi-select", never, { "optionInactive": "optionInactive"; "group": "group"; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { DoCheck, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class RadioGroupComponent extends BaseComponentInput<any> implements OnInit, DoCheck {
|
|
6
|
-
options: any[];
|
|
7
|
-
optionValueDefault: any;
|
|
8
|
-
onSelectedOption: EventEmitter<any>;
|
|
9
|
-
selectedOpt: any;
|
|
10
|
-
constructor(componentService: ComponentService);
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
ngDoCheck(): void;
|
|
13
|
-
selectedDefault(): void;
|
|
14
|
-
selectedOption(event: any): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "kv-radio-group", never, { "options": "options"; "optionValueDefault": "optionValueDefault"; }, { "onSelectedOption": "onSelectedOption"; }, never, never, false, never>;
|
|
17
|
-
}
|
|
1
|
+
import { DoCheck, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RadioGroupComponent extends BaseComponentInput<any> implements OnInit, DoCheck {
|
|
6
|
+
options: any[];
|
|
7
|
+
optionValueDefault: any;
|
|
8
|
+
onSelectedOption: EventEmitter<any>;
|
|
9
|
+
selectedOpt: any;
|
|
10
|
+
constructor(componentService: ComponentService);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
ngDoCheck(): void;
|
|
13
|
+
selectedDefault(): void;
|
|
14
|
+
selectedOption(event: any): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "kv-radio-group", never, { "options": "options"; "optionValueDefault": "optionValueDefault"; }, { "onSelectedOption": "onSelectedOption"; }, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
-
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SwitchComponent extends BaseComponentInput<boolean> implements OnInit {
|
|
6
|
-
switchValue: boolean;
|
|
7
|
-
onSwitchChange: EventEmitter<any>;
|
|
8
|
-
constructor(componentService: ComponentService);
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
emitOnSwitchChange(event: any): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "kv-switch", never, { "switchValue": "switchValue"; }, { "onSwitchChange": "onSwitchChange"; }, never, never, false, never>;
|
|
13
|
-
}
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { BaseComponentInput } from '../../api/base-components/base-component-input';
|
|
3
|
+
import { ComponentService } from '../../api/services/component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SwitchComponent extends BaseComponentInput<boolean> implements OnInit {
|
|
6
|
+
switchValue: boolean;
|
|
7
|
+
onSwitchChange: EventEmitter<any>;
|
|
8
|
+
constructor(componentService: ComponentService);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
emitOnSwitchChange(event: any): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "kv-switch", never, { "switchValue": "switchValue"; }, { "onSwitchChange": "onSwitchChange"; }, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./inputs/kvinputs.module";
|
|
3
|
-
import * as i2 from "./buttons/kvbutton.module";
|
|
4
|
-
import * as i3 from "./table/kvtable.module";
|
|
5
|
-
import * as i4 from "./tree-view/kvtree-view.module";
|
|
6
|
-
import * as i5 from "./chart/kvchart.module";
|
|
7
|
-
import * as i6 from "./menu/kvmenu.module";
|
|
8
|
-
import * as i7 from "./picklist/kvpicklist.module";
|
|
9
|
-
import * as i8 from "./tree-table/kv-treetable.module";
|
|
10
|
-
import * as i9 from "./workspace/kvworkspace.module";
|
|
11
|
-
import * as i10 from "./orgchart/orgchart.module";
|
|
12
|
-
import * as i11 from "./login/kvlogin.module";
|
|
13
|
-
export declare class KeevoComponentsModule {
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KeevoComponentsModule, never>;
|
|
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]>;
|
|
16
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KeevoComponentsModule>;
|
|
17
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./inputs/kvinputs.module";
|
|
3
|
+
import * as i2 from "./buttons/kvbutton.module";
|
|
4
|
+
import * as i3 from "./table/kvtable.module";
|
|
5
|
+
import * as i4 from "./tree-view/kvtree-view.module";
|
|
6
|
+
import * as i5 from "./chart/kvchart.module";
|
|
7
|
+
import * as i6 from "./menu/kvmenu.module";
|
|
8
|
+
import * as i7 from "./picklist/kvpicklist.module";
|
|
9
|
+
import * as i8 from "./tree-table/kv-treetable.module";
|
|
10
|
+
import * as i9 from "./workspace/kvworkspace.module";
|
|
11
|
+
import * as i10 from "./orgchart/orgchart.module";
|
|
12
|
+
import * as i11 from "./login/kvlogin.module";
|
|
13
|
+
export declare class KeevoComponentsModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeevoComponentsModule, never>;
|
|
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]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KeevoComponentsModule>;
|
|
17
|
+
}
|
|
@@ -1,13 +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
|
-
}
|
|
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
|
+
}
|
|
@@ -1,17 +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
|
-
}
|
|
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
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./menu.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
|
-
export declare class KvMenuModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KvMenuModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvMenuModule, [typeof i1.MenuComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule], [typeof i1.MenuComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KvMenuModule>;
|
|
12
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./menu.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
|
+
export declare class KvMenuModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvMenuModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvMenuModule, [typeof i1.MenuComponent], [typeof i2.CommonModule, typeof i3.PrimeNgModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.KvInputsModule, typeof i6.KvButtonsModule], [typeof i1.MenuComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvMenuModule>;
|
|
12
|
+
}
|