appproject-components 1.0.48 → 1.0.49
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/karma.conf.js +44 -0
- package/ng-package.json +7 -0
- package/package.json +15 -26
- package/src/lib/appproject-components.component.spec.ts +23 -0
- package/src/lib/appproject-components.component.ts +20 -0
- package/src/lib/appproject-components.module.ts +106 -0
- package/src/lib/appproject-components.service.spec.ts +16 -0
- package/src/lib/appproject-components.service.ts +9 -0
- package/src/lib/baseComponent.scss +162 -0
- package/src/lib/baseInputComponent.ts +35 -0
- package/src/lib/buttons/baseBtnComponent.ts +38 -0
- package/src/lib/buttons/btn-action/btn-action.component.html +11 -0
- package/src/lib/buttons/btn-action/btn-action.component.scss +7 -0
- package/src/lib/buttons/btn-action/btn-action.component.spec.ts +24 -0
- package/src/lib/buttons/btn-action/btn-action.component.ts +31 -0
- package/src/lib/buttons/btn-cancelar/btn-cancelar.component.html +14 -0
- package/src/lib/buttons/btn-cancelar/btn-cancelar.component.scss +5 -0
- package/src/lib/buttons/btn-cancelar/btn-cancelar.component.spec.ts +24 -0
- package/src/lib/buttons/btn-cancelar/btn-cancelar.component.ts +19 -0
- package/src/lib/buttons/btn-excluir/btn-excluir.component.html +6 -0
- package/src/lib/buttons/btn-excluir/btn-excluir.component.scss +5 -0
- package/src/lib/buttons/btn-excluir/btn-excluir.component.spec.ts +24 -0
- package/src/lib/buttons/btn-excluir/btn-excluir.component.ts +18 -0
- package/src/lib/buttons/btn-novo/btn-novo.component.html +14 -0
- package/src/lib/buttons/btn-novo/btn-novo.component.scss +8 -0
- package/src/lib/buttons/btn-novo/btn-novo.component.spec.ts +24 -0
- package/src/lib/buttons/btn-novo/btn-novo.component.ts +20 -0
- package/src/lib/buttons/btn-salvar/btn-salvar.component.html +8 -0
- package/src/lib/buttons/btn-salvar/btn-salvar.component.scss +5 -0
- package/src/lib/buttons/btn-salvar/btn-salvar.component.spec.ts +24 -0
- package/src/lib/buttons/btn-salvar/btn-salvar.component.ts +16 -0
- package/src/lib/entity-edit/entity-edit.component.html +143 -0
- package/src/lib/entity-edit/entity-edit.component.scss +4 -0
- package/src/lib/entity-edit/entity-edit.component.spec.ts +23 -0
- package/src/lib/entity-edit/entity-edit.component.ts +43 -0
- package/src/lib/grid-view/grid-view.component.html +116 -0
- package/src/lib/grid-view/grid-view.component.scss +47 -0
- package/src/lib/grid-view/grid-view.component.spec.ts +23 -0
- package/src/lib/grid-view/grid-view.component.ts +292 -0
- package/src/lib/input-area/input-area.component.html +30 -0
- package/src/lib/input-area/input-area.component.scss +68 -0
- package/src/lib/input-area/input-area.component.spec.ts +23 -0
- package/src/lib/input-area/input-area.component.ts +69 -0
- package/src/lib/input-arquivo/input-arquivo.component.html +11 -0
- package/src/lib/input-arquivo/input-arquivo.component.scss +0 -0
- package/src/lib/input-arquivo/input-arquivo.component.spec.ts +23 -0
- package/src/lib/input-arquivo/input-arquivo.component.ts +140 -0
- package/src/lib/input-cep/input-cep.component.html +38 -0
- package/src/lib/input-cep/input-cep.component.scss +0 -0
- package/src/lib/input-cep/input-cep.component.spec.ts +23 -0
- package/src/lib/input-cep/input-cep.component.ts +186 -0
- package/src/lib/input-checkbox/input-checkbox.component.html +12 -0
- package/src/lib/input-checkbox/input-checkbox.component.scss +11 -0
- package/src/lib/input-checkbox/input-checkbox.component.spec.ts +23 -0
- package/src/lib/input-checkbox/input-checkbox.component.ts +48 -0
- package/src/lib/input-format/input-format.component.html +32 -0
- package/src/lib/input-format/input-format.component.scss +47 -0
- package/src/lib/input-format/input-format.component.spec.ts +23 -0
- package/src/lib/input-format/input-format.component.ts +139 -0
- package/src/lib/input-pesquisa/input-pesquisa.component.html +77 -0
- package/src/lib/input-pesquisa/input-pesquisa.component.scss +127 -0
- package/src/lib/input-pesquisa/input-pesquisa.component.spec.ts +23 -0
- package/src/lib/input-pesquisa/input-pesquisa.component.ts +558 -0
- package/src/lib/input-radio/input-radio.component.html +21 -0
- package/src/lib/input-radio/input-radio.component.scss +3 -0
- package/src/lib/input-radio/input-radio.component.spec.ts +23 -0
- package/src/lib/input-radio/input-radio.component.ts +49 -0
- package/src/lib/input-select/input-select.component.html +29 -0
- package/src/lib/input-select/input-select.component.scss +62 -0
- package/src/lib/input-select/input-select.component.spec.ts +23 -0
- package/src/lib/input-select/input-select.component.ts +96 -0
- package/src/lib/input-text/input-text.component.html +48 -0
- package/src/lib/input-text/input-text.component.scss +63 -0
- package/src/lib/input-text/input-text.component.spec.ts +23 -0
- package/src/lib/input-text/input-text.component.ts +78 -0
- package/src/lib/input-valor/input-valor.component.html +32 -0
- package/src/lib/input-valor/input-valor.component.scss +47 -0
- package/src/lib/input-valor/input-valor.component.spec.ts +23 -0
- package/src/lib/input-valor/input-valor.component.ts +164 -0
- package/{lib/lib-config.d.ts → src/lib/lib-config.ts} +4 -3
- package/src/lib/model-treeview/model-treeview.component.html +20 -0
- package/src/lib/model-treeview/model-treeview.component.scss +0 -0
- package/src/lib/model-treeview/model-treeview.component.spec.ts +23 -0
- package/src/lib/model-treeview/model-treeview.component.ts +152 -0
- package/src/lib/tree-view/tree-view.component.html +96 -0
- package/src/lib/tree-view/tree-view.component.scss +50 -0
- package/src/lib/tree-view/tree-view.component.spec.ts +23 -0
- package/src/lib/tree-view/tree-view.component.ts +92 -0
- package/src/lib/tree-view-nivel/tree-view-nivel.component.html +17 -0
- package/src/lib/tree-view-nivel/tree-view-nivel.component.scss +8 -0
- package/src/lib/tree-view-nivel/tree-view-nivel.component.spec.ts +23 -0
- package/src/lib/tree-view-nivel/tree-view-nivel.component.ts +43 -0
- package/{public-api.d.ts → src/public-api.ts} +30 -24
- package/src/test.ts +15 -0
- package/tsconfig.lib.json +15 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/esm2022/appproject-components.mjs +0 -5
- package/esm2022/lib/appproject-components.component.mjs +0 -22
- package/esm2022/lib/appproject-components.module.mjs +0 -159
- package/esm2022/lib/appproject-components.service.mjs +0 -14
- package/esm2022/lib/baseInputComponent.mjs +0 -69
- package/esm2022/lib/buttons/baseBtnComponent.mjs +0 -63
- package/esm2022/lib/buttons/btn-action/btn-action.component.mjs +0 -55
- package/esm2022/lib/buttons/btn-cancelar/btn-cancelar.component.mjs +0 -25
- package/esm2022/lib/buttons/btn-excluir/btn-excluir.component.mjs +0 -29
- package/esm2022/lib/buttons/btn-novo/btn-novo.component.mjs +0 -33
- package/esm2022/lib/buttons/btn-salvar/btn-salvar.component.mjs +0 -19
- package/esm2022/lib/entity-edit/entity-edit.component.mjs +0 -53
- package/esm2022/lib/grid-view/grid-view.component.mjs +0 -275
- package/esm2022/lib/input-area/input-area.component.mjs +0 -72
- package/esm2022/lib/input-arquivo/input-arquivo.component.mjs +0 -154
- package/esm2022/lib/input-cep/input-cep.component.mjs +0 -180
- package/esm2022/lib/input-checkbox/input-checkbox.component.mjs +0 -51
- package/esm2022/lib/input-format/input-format.component.mjs +0 -138
- package/esm2022/lib/input-pesquisa/input-pesquisa.component.mjs +0 -557
- package/esm2022/lib/input-radio/input-radio.component.mjs +0 -58
- package/esm2022/lib/input-select/input-select.component.mjs +0 -110
- package/esm2022/lib/input-text/input-text.component.mjs +0 -88
- package/esm2022/lib/input-valor/input-valor.component.mjs +0 -161
- package/esm2022/lib/lib-config.mjs +0 -2
- package/esm2022/lib/model-treeview/model-treeview.component.mjs +0 -126
- package/esm2022/lib/tree-view/tree-view.component.mjs +0 -104
- package/esm2022/lib/tree-view-nivel/tree-view-nivel.component.mjs +0 -50
- package/esm2022/public-api.mjs +0 -30
- package/fesm2022/appproject-components.mjs +0 -2531
- package/fesm2022/appproject-components.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/appproject-components.component.d.ts +0 -8
- package/lib/appproject-components.module.d.ts +0 -36
- package/lib/appproject-components.service.d.ts +0 -6
- package/lib/baseInputComponent.d.ts +0 -28
- package/lib/buttons/baseBtnComponent.d.ts +0 -19
- package/lib/buttons/btn-action/btn-action.component.d.ts +0 -21
- package/lib/buttons/btn-cancelar/btn-cancelar.component.d.ts +0 -10
- package/lib/buttons/btn-excluir/btn-excluir.component.d.ts +0 -12
- package/lib/buttons/btn-novo/btn-novo.component.d.ts +0 -13
- package/lib/buttons/btn-salvar/btn-salvar.component.d.ts +0 -9
- package/lib/entity-edit/entity-edit.component.d.ts +0 -22
- package/lib/grid-view/grid-view.component.d.ts +0 -52
- package/lib/input-area/input-area.component.d.ts +0 -24
- package/lib/input-arquivo/input-arquivo.component.d.ts +0 -43
- package/lib/input-cep/input-cep.component.d.ts +0 -29
- package/lib/input-checkbox/input-checkbox.component.d.ts +0 -21
- package/lib/input-format/input-format.component.d.ts +0 -27
- package/lib/input-pesquisa/input-pesquisa.component.d.ts +0 -69
- package/lib/input-radio/input-radio.component.d.ts +0 -23
- package/lib/input-select/input-select.component.d.ts +0 -32
- package/lib/input-text/input-text.component.d.ts +0 -33
- package/lib/input-valor/input-valor.component.d.ts +0 -29
- package/lib/model-treeview/model-treeview.component.d.ts +0 -39
- package/lib/tree-view/tree-view.component.d.ts +0 -23
- package/lib/tree-view-nivel/tree-view-nivel.component.d.ts +0 -17
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AppprojectComponentsComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppprojectComponentsComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppprojectComponentsComponent, "kb-appproject-components", never, {}, {}, never, never, false, never>;
|
|
8
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { InjectionToken, ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { LibConfig } from './lib-config';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./appproject-components.component";
|
|
5
|
-
import * as i2 from "./input-text/input-text.component";
|
|
6
|
-
import * as i3 from "./input-format/input-format.component";
|
|
7
|
-
import * as i4 from "./input-select/input-select.component";
|
|
8
|
-
import * as i5 from "./input-pesquisa/input-pesquisa.component";
|
|
9
|
-
import * as i6 from "./model-treeview/model-treeview.component";
|
|
10
|
-
import * as i7 from "./input-valor/input-valor.component";
|
|
11
|
-
import * as i8 from "./input-area/input-area.component";
|
|
12
|
-
import * as i9 from "./input-cep/input-cep.component";
|
|
13
|
-
import * as i10 from "./input-arquivo/input-arquivo.component";
|
|
14
|
-
import * as i11 from "./buttons/btn-action/btn-action.component";
|
|
15
|
-
import * as i12 from "./buttons/btn-cancelar/btn-cancelar.component";
|
|
16
|
-
import * as i13 from "./buttons/btn-excluir/btn-excluir.component";
|
|
17
|
-
import * as i14 from "./buttons/btn-novo/btn-novo.component";
|
|
18
|
-
import * as i15 from "./buttons/btn-salvar/btn-salvar.component";
|
|
19
|
-
import * as i16 from "./entity-edit/entity-edit.component";
|
|
20
|
-
import * as i17 from "./input-checkbox/input-checkbox.component";
|
|
21
|
-
import * as i18 from "./input-radio/input-radio.component";
|
|
22
|
-
import * as i19 from "./tree-view/tree-view.component";
|
|
23
|
-
import * as i20 from "./tree-view-nivel/tree-view-nivel.component";
|
|
24
|
-
import * as i21 from "./grid-view/grid-view.component";
|
|
25
|
-
import * as i22 from "@angular/common";
|
|
26
|
-
import * as i23 from "@angular/common/http";
|
|
27
|
-
import * as i24 from "@ionic/angular";
|
|
28
|
-
import * as i25 from "@angular/forms";
|
|
29
|
-
import * as i26 from "appproject-lib";
|
|
30
|
-
export declare const LibConfigService: InjectionToken<LibConfig>;
|
|
31
|
-
export declare class AppprojectComponentsModule {
|
|
32
|
-
static forRoot(config: LibConfig): ModuleWithProviders<AppprojectComponentsModule>;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppprojectComponentsModule, never>;
|
|
34
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AppprojectComponentsModule, [typeof i1.AppprojectComponentsComponent, typeof i2.InputTextComponent, typeof i3.InputFormatComponent, typeof i4.InputSelectComponent, typeof i5.InputPesquisaComponent, typeof i6.ModelTreeviewComponent, typeof i7.InputValorComponent, typeof i8.InputAreaComponent, typeof i9.InputCepComponent, typeof i10.InputArquivoComponent, typeof i11.BtnActionComponent, typeof i12.BtnCancelarComponent, typeof i13.BtnExcluirComponent, typeof i14.BtnNovoComponent, typeof i15.BtnSalvarComponent, typeof i16.EntityEditComponent, typeof i17.InputCheckboxComponent, typeof i18.InputRadioComponent, typeof i19.TreeViewComponent, typeof i20.TreeViewNivelComponent, typeof i21.GridViewComponent], [typeof i22.CommonModule, typeof i23.HttpClientModule, typeof i24.IonicModule, typeof i25.FormsModule, typeof i25.ReactiveFormsModule, typeof i26.ValorFormatPipe, typeof i26.SafeHtmlPipe], [typeof i1.AppprojectComponentsComponent, typeof i2.InputTextComponent, typeof i3.InputFormatComponent, typeof i4.InputSelectComponent, typeof i5.InputPesquisaComponent, typeof i6.ModelTreeviewComponent, typeof i7.InputValorComponent, typeof i8.InputAreaComponent, typeof i9.InputCepComponent, typeof i10.InputArquivoComponent, typeof i11.BtnActionComponent, typeof i12.BtnCancelarComponent, typeof i13.BtnExcluirComponent, typeof i14.BtnNovoComponent, typeof i15.BtnSalvarComponent, typeof i16.EntityEditComponent, typeof i17.InputCheckboxComponent, typeof i18.InputRadioComponent, typeof i19.TreeViewComponent, typeof i20.TreeViewNivelComponent, typeof i21.GridViewComponent]>;
|
|
35
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AppprojectComponentsModule>;
|
|
36
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare abstract class BaseInputComponent implements OnInit {
|
|
5
|
-
label: string;
|
|
6
|
-
labelPosition: string;
|
|
7
|
-
nome: string;
|
|
8
|
-
placeholder: string;
|
|
9
|
-
form: FormGroup;
|
|
10
|
-
campo: string;
|
|
11
|
-
formControlName: string;
|
|
12
|
-
max: string;
|
|
13
|
-
validation_messages: any[];
|
|
14
|
-
type: string;
|
|
15
|
-
readonly: boolean;
|
|
16
|
-
leitura: boolean;
|
|
17
|
-
itemClass: string;
|
|
18
|
-
blur: EventEmitter<any>;
|
|
19
|
-
botaoLimpar: boolean;
|
|
20
|
-
labelColor: string;
|
|
21
|
-
inputBackgroungColor: string;
|
|
22
|
-
focusField: boolean;
|
|
23
|
-
blurArgs: any[];
|
|
24
|
-
constructor();
|
|
25
|
-
ngOnInit(): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseInputComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseInputComponent, "ng-component", never, { "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "nome": { "alias": "nome"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "form": { "alias": "form"; "required": false; }; "campo": { "alias": "campo"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "max": { "alias": "max"; "required": false; }; "validation_messages": { "alias": "validation_messages"; "required": false; }; "type": { "alias": "type"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "leitura": { "alias": "leitura"; "required": false; }; "itemClass": { "alias": "itemClass"; "required": false; }; "botaoLimpar": { "alias": "botaoLimpar"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "inputBackgroungColor": { "alias": "inputBackgroungColor"; "required": false; }; "focusField": { "alias": "focusField"; "required": false; }; "blurArgs": { "alias": "blurArgs"; "required": false; }; }, { "blur": "blur"; }, never, never, false, never>;
|
|
28
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare abstract class BaseBtnComponent implements OnInit {
|
|
4
|
-
disabled: boolean;
|
|
5
|
-
type: string;
|
|
6
|
-
icon: string;
|
|
7
|
-
iconSrc: string;
|
|
8
|
-
title: string;
|
|
9
|
-
fill: string;
|
|
10
|
-
expand: string;
|
|
11
|
-
btnClick: EventEmitter<any>;
|
|
12
|
-
size: string;
|
|
13
|
-
iconSlot: string;
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
onClick(): void;
|
|
16
|
-
resolveTheme(theme: string): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseBtnComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseBtnComponent, "ng-component", never, { "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSrc": { "alias": "iconSrc"; "required": false; }; "title": { "alias": "title"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "size": { "alias": "size"; "required": false; }; "iconSlot": { "alias": "iconSlot"; "required": false; }; }, { "btnClick": "btnClick"; }, never, never, false, never>;
|
|
19
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseBtnComponent } from '../baseBtnComponent';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BtnActionComponent extends BaseBtnComponent implements OnInit {
|
|
5
|
-
title: string;
|
|
6
|
-
color: string;
|
|
7
|
-
hidden: boolean;
|
|
8
|
-
icon: string;
|
|
9
|
-
iconSrc: string;
|
|
10
|
-
imgSrc: string;
|
|
11
|
-
boxColor: string;
|
|
12
|
-
btnMargin: string;
|
|
13
|
-
expand: string;
|
|
14
|
-
iconStyle: string;
|
|
15
|
-
titleStyle: string;
|
|
16
|
-
buttonStyle: string;
|
|
17
|
-
constructor();
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BtnActionComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BtnActionComponent, "kb-btn-action", never, { "title": { "alias": "title"; "required": false; }; "color": { "alias": "color"; "required": false; }; "hidden": { "alias": "hidden"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSrc": { "alias": "iconSrc"; "required": false; }; "imgSrc": { "alias": "imgSrc"; "required": false; }; "boxColor": { "alias": "boxColor"; "required": false; }; "btnMargin": { "alias": "btnMargin"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "iconStyle": { "alias": "iconStyle"; "required": false; }; "titleStyle": { "alias": "titleStyle"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseBtnComponent } from '../baseBtnComponent';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BtnCancelarComponent extends BaseBtnComponent implements OnInit {
|
|
5
|
-
icon: string;
|
|
6
|
-
title: string;
|
|
7
|
-
constructor();
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BtnCancelarComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BtnCancelarComponent, "kb-btn-cancelar", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, false, never>;
|
|
10
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseBtnComponent } from '../baseBtnComponent';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BtnExcluirComponent extends BaseBtnComponent implements OnInit {
|
|
5
|
-
type: string;
|
|
6
|
-
expand: string;
|
|
7
|
-
icon: string;
|
|
8
|
-
title: string;
|
|
9
|
-
constructor();
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BtnExcluirComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BtnExcluirComponent, "kb-btn-excluir", never, { "type": { "alias": "type"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseBtnComponent } from '../baseBtnComponent';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BtnNovoComponent extends BaseBtnComponent implements OnInit {
|
|
5
|
-
title: string;
|
|
6
|
-
icon: string;
|
|
7
|
-
iconSrc: string;
|
|
8
|
-
expand: string;
|
|
9
|
-
imgSrc: string;
|
|
10
|
-
constructor();
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BtnNovoComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BtnNovoComponent, "kb-btn-novo", never, { "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSrc": { "alias": "iconSrc"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "imgSrc": { "alias": "imgSrc"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseBtnComponent } from '../baseBtnComponent';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class BtnSalvarComponent extends BaseBtnComponent implements OnInit {
|
|
5
|
-
btnMargin: string;
|
|
6
|
-
constructor();
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BtnSalvarComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BtnSalvarComponent, "kb-btn-salvar", never, { "btnMargin": { "alias": "btnMargin"; "required": false; }; }, {}, never, never, false, never>;
|
|
9
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { NgZone, OnInit } from '@angular/core';
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { BaseModel, HtmlRow } from 'appproject-lib';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class EntityEditComponent<T extends BaseModel> implements OnInit {
|
|
6
|
-
private ngZone;
|
|
7
|
-
entidade: T | null;
|
|
8
|
-
/**
|
|
9
|
-
* Vai receber montado do base cadastro
|
|
10
|
-
*/
|
|
11
|
-
campos: HtmlRow[];
|
|
12
|
-
entidadeForm: FormGroup;
|
|
13
|
-
validation_messages: any;
|
|
14
|
-
itemClass: string;
|
|
15
|
-
rowClass: string;
|
|
16
|
-
constructor(ngZone: NgZone);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
getEntidadeCampos(): void;
|
|
19
|
-
emptyHandler(): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EntityEditComponent<any>, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EntityEditComponent<any>, "kb-entity-edit", never, { "entidade": { "alias": "entidade"; "required": false; }; "campos": { "alias": "campos"; "required": false; }; "entidadeForm": { "alias": "entidadeForm"; "required": false; }; "validation_messages": { "alias": "validation_messages"; "required": false; }; "itemClass": { "alias": "itemClass"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { GridColuna, GridTabela } from 'appproject-lib';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class GridViewComponent implements OnInit, OnChanges {
|
|
5
|
-
empresaId: number;
|
|
6
|
-
tabelaCampos: GridTabela;
|
|
7
|
-
dataSet: Array<any>;
|
|
8
|
-
minHeight: string;
|
|
9
|
-
inMemoryPagination: boolean;
|
|
10
|
-
selecionarItem: EventEmitter<any>;
|
|
11
|
-
excluirItem: EventEmitter<any>;
|
|
12
|
-
selecionarChecked: EventEmitter<any>;
|
|
13
|
-
selectedItem: any;
|
|
14
|
-
grupos: any[];
|
|
15
|
-
groups: any[];
|
|
16
|
-
filteredDataSet: any[];
|
|
17
|
-
pageDataSet: any[];
|
|
18
|
-
camposDisplay: any[];
|
|
19
|
-
isFiltroOpen: boolean;
|
|
20
|
-
selectedColuna: any;
|
|
21
|
-
todosSelecionados: boolean;
|
|
22
|
-
page: number;
|
|
23
|
-
pageOffset: number;
|
|
24
|
-
totalRec: number;
|
|
25
|
-
totalPages: number;
|
|
26
|
-
pages: number[];
|
|
27
|
-
start: number;
|
|
28
|
-
constructor();
|
|
29
|
-
valoresFiltro(): void;
|
|
30
|
-
ngOnInit(): void;
|
|
31
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
32
|
-
initPage(): void;
|
|
33
|
-
getRegistrosPage(): void;
|
|
34
|
-
proximo(): void;
|
|
35
|
-
anterior(): void;
|
|
36
|
-
gerarArrayPags(): void;
|
|
37
|
-
inicializaGrupo(): void;
|
|
38
|
-
agrupar(campo: string): void;
|
|
39
|
-
filtrarCampos(coluna?: string): void;
|
|
40
|
-
filtrar(col: GridColuna): void;
|
|
41
|
-
getPage(): void;
|
|
42
|
-
limpar(): void;
|
|
43
|
-
dataToString(data: string): string;
|
|
44
|
-
ordenar(col: GridColuna): void;
|
|
45
|
-
setFiltroOpen(col: any): void;
|
|
46
|
-
selecionarTodos(): void;
|
|
47
|
-
selecionarLinha(item: any): void;
|
|
48
|
-
excluirLinha(item: any): void;
|
|
49
|
-
selecionadoChecked(): void;
|
|
50
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GridViewComponent, never>;
|
|
51
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GridViewComponent, "kb-grid-view", never, { "empresaId": { "alias": "empresaId"; "required": false; }; "tabelaCampos": { "alias": "tabelaCampos"; "required": false; }; "dataSet": { "alias": "dataSet"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "inMemoryPagination": { "alias": "inMemoryPagination"; "required": false; }; "filteredDataSet": { "alias": "filteredDataSet"; "required": false; }; "pageOffset": { "alias": "pageOffset"; "required": false; }; }, { "selecionarItem": "selecionarItem"; "excluirItem": "excluirItem"; "selecionarChecked": "selecionarChecked"; }, never, never, false, never>;
|
|
52
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { OnInit, Renderer2 } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputAreaComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
private renderer;
|
|
7
|
-
linhas: number;
|
|
8
|
-
itemArea: any;
|
|
9
|
-
data: string | any;
|
|
10
|
-
private onChange;
|
|
11
|
-
private onTouch;
|
|
12
|
-
private disabled;
|
|
13
|
-
console: Console;
|
|
14
|
-
writeValue(value: string | any): void;
|
|
15
|
-
registerOnChange(fn: any): void;
|
|
16
|
-
registerOnTouched(fn: any): void;
|
|
17
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
18
|
-
constructor(renderer: Renderer2);
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
onBlur(): void;
|
|
21
|
-
entered(): void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputAreaComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputAreaComponent, "kb-input-area", never, { "linhas": { "alias": "linhas"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputArquivoComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
nomeArquivo: string;
|
|
7
|
-
caption: string;
|
|
8
|
-
pasta: string;
|
|
9
|
-
subir: boolean;
|
|
10
|
-
callback: EventEmitter<any>;
|
|
11
|
-
tipoArquivo: string;
|
|
12
|
-
fileSelected: EventEmitter<any>;
|
|
13
|
-
form: boolean;
|
|
14
|
-
showIcon: boolean;
|
|
15
|
-
icon: string;
|
|
16
|
-
iconSrc: string;
|
|
17
|
-
btnExpand: string;
|
|
18
|
-
btnColor: string;
|
|
19
|
-
btnFill: string;
|
|
20
|
-
iconSlot: string;
|
|
21
|
-
arquivoTipos: string;
|
|
22
|
-
readOnly: boolean;
|
|
23
|
-
myInput: any;
|
|
24
|
-
captureDataUrl: string;
|
|
25
|
-
formFile: any;
|
|
26
|
-
sucessoEvent: Subject<boolean>;
|
|
27
|
-
data: string;
|
|
28
|
-
filename: string;
|
|
29
|
-
private onChange;
|
|
30
|
-
private onTouch;
|
|
31
|
-
private disabled;
|
|
32
|
-
showImageBrowser(): void;
|
|
33
|
-
writeValue(value: string): void;
|
|
34
|
-
registerOnChange(fn: any): void;
|
|
35
|
-
registerOnTouched(fn: any): void;
|
|
36
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
37
|
-
constructor();
|
|
38
|
-
ngOnInit(): void;
|
|
39
|
-
loadImagem(): void;
|
|
40
|
-
getBase64FromFile(file: File): Promise<unknown>;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputArquivoComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputArquivoComponent, "kb-input-arquivo", never, { "nomeArquivo": { "alias": "nomeArquivo"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "pasta": { "alias": "pasta"; "required": false; }; "subir": { "alias": "subir"; "required": false; }; "callback": { "alias": "callback"; "required": false; }; "tipoArquivo": { "alias": "tipoArquivo"; "required": false; }; "form": { "alias": "form"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSrc": { "alias": "iconSrc"; "required": false; }; "btnExpand": { "alias": "btnExpand"; "required": false; }; "btnColor": { "alias": "btnColor"; "required": false; }; "btnFill": { "alias": "btnFill"; "required": false; }; "iconSlot": { "alias": "iconSlot"; "required": false; }; "arquivoTipos": { "alias": "arquivoTipos"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; }, { "fileSelected": "fileSelected"; }, never, never, false, never>;
|
|
43
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class InputCepComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
7
|
-
formato: string | null;
|
|
8
|
-
keyEnter: Function | null;
|
|
9
|
-
getResultados: EventEmitter<any>;
|
|
10
|
-
data: string | any;
|
|
11
|
-
private onChange;
|
|
12
|
-
private onTouch;
|
|
13
|
-
private disabled;
|
|
14
|
-
constructor();
|
|
15
|
-
writeValue(value: string | any): void;
|
|
16
|
-
registerOnChange(fn: any): void;
|
|
17
|
-
registerOnTouched(fn: any): void;
|
|
18
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
digitarFormatado(event: any): boolean;
|
|
21
|
-
onKeyEnter(): void;
|
|
22
|
-
onBlur(): void;
|
|
23
|
-
formataCampoValor(valor: string, Mascara: string, evento: any): string;
|
|
24
|
-
pesquisarClick(): void;
|
|
25
|
-
converteCaracteresEspeciais(nome: string): string;
|
|
26
|
-
getEnderecoPeloCep(cep: any): Observable<any>;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputCepComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputCepComponent, "kb-input-cep", never, { "formato": { "alias": "formato"; "required": false; }; "keyEnter": { "alias": "keyEnter"; "required": false; }; }, { "getResultados": "getResultados"; }, never, never, false, never>;
|
|
29
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputCheckboxComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
justify: string;
|
|
7
|
-
labelPlacement: string;
|
|
8
|
-
data: boolean | undefined;
|
|
9
|
-
private onChange;
|
|
10
|
-
private onTouch;
|
|
11
|
-
private disabled;
|
|
12
|
-
console: Console;
|
|
13
|
-
writeValue(value?: any): void;
|
|
14
|
-
registerOnChange(fn: any): void;
|
|
15
|
-
registerOnTouched(fn: any): void;
|
|
16
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
17
|
-
constructor();
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputCheckboxComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputCheckboxComponent, "kb-input-checkbox", never, { "justify": { "alias": "justify"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputFormatComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
formato: string | null;
|
|
7
|
-
keyEnter: EventEmitter<any>;
|
|
8
|
-
inputFormatEdit: any;
|
|
9
|
-
data: string | any;
|
|
10
|
-
private onChange;
|
|
11
|
-
private onTouch;
|
|
12
|
-
private disabled;
|
|
13
|
-
console: Console;
|
|
14
|
-
writeValue(value: string | any): void;
|
|
15
|
-
registerOnChange(fn: any): void;
|
|
16
|
-
registerOnTouched(fn: any): void;
|
|
17
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
18
|
-
constructor();
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
digitarFormatado(event: any): boolean;
|
|
21
|
-
onKeyEnter(): void;
|
|
22
|
-
onBlur(): void;
|
|
23
|
-
setFocus(): void;
|
|
24
|
-
formataCampoValor(valor: string, Mascara: string, evento: any): string;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputFormatComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputFormatComponent, "kb-input-format", never, { "formato": { "alias": "formato"; "required": false; }; "keyEnter": { "alias": "keyEnter"; "required": false; }; }, {}, never, never, false, never>;
|
|
27
|
-
}
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { EventEmitter, OnInit, Predicate } from '@angular/core';
|
|
3
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
4
|
-
import { IonSelect, ModalController } from '@ionic/angular';
|
|
5
|
-
import { Subject, Subscription } from 'rxjs';
|
|
6
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
7
|
-
import { LibConfig } from '../lib-config';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class InputPesquisaComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
10
|
-
private config;
|
|
11
|
-
private httpClient;
|
|
12
|
-
private modalCtrl;
|
|
13
|
-
podePesquisar: boolean;
|
|
14
|
-
textoPesquisa: string;
|
|
15
|
-
selectElementVisivel: boolean;
|
|
16
|
-
listaPesquisa: any[];
|
|
17
|
-
selectedItem: any;
|
|
18
|
-
max: string;
|
|
19
|
-
private pesquisaSubject;
|
|
20
|
-
filterFunction: Predicate<any> | null;
|
|
21
|
-
selectId: string;
|
|
22
|
-
campoId: string;
|
|
23
|
-
campoPaiId: string;
|
|
24
|
-
campoDisplay: string;
|
|
25
|
-
tipo: string;
|
|
26
|
-
selectElement: IonSelect | null;
|
|
27
|
-
pesquisaChange: EventEmitter<any>;
|
|
28
|
-
pesquisaAction?: Function;
|
|
29
|
-
limpar?: Function;
|
|
30
|
-
url: string;
|
|
31
|
-
urlItem: string;
|
|
32
|
-
urlTree: string;
|
|
33
|
-
empresa: number;
|
|
34
|
-
loadInit: boolean;
|
|
35
|
-
treeTitulo: string;
|
|
36
|
-
data: number | any;
|
|
37
|
-
private onChange;
|
|
38
|
-
private onTouch;
|
|
39
|
-
private disabled;
|
|
40
|
-
console: Console;
|
|
41
|
-
modelChanged: Subject<any>;
|
|
42
|
-
modelChangeSubscription?: Subscription;
|
|
43
|
-
writeValue(value: number | any): void;
|
|
44
|
-
registerOnChange(fn: any): void;
|
|
45
|
-
registerOnTouched(fn: any): void;
|
|
46
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
47
|
-
BASE_API: string;
|
|
48
|
-
constructor(config: LibConfig, httpClient: HttpClient, modalCtrl: ModalController);
|
|
49
|
-
onBlur(event: any): void;
|
|
50
|
-
ngOnInit(): void;
|
|
51
|
-
writePesquisa(value: string | any): void;
|
|
52
|
-
showPesquisa(e: any): void;
|
|
53
|
-
highlight(texto: string): string;
|
|
54
|
-
selecionarComboClick(item: any): void;
|
|
55
|
-
selecionarComboChange(e: any): void;
|
|
56
|
-
dropDownPesquisa(length: number): void;
|
|
57
|
-
pesquisarEntidade(filtro: string): void;
|
|
58
|
-
pesquisarEntidadeOld(filtro: string): void;
|
|
59
|
-
existeNaLista(id: number, setRegistro?: boolean): boolean;
|
|
60
|
-
existeNaListaTexto(texto: string, setRegistro?: boolean): boolean;
|
|
61
|
-
validarItemSelecionado(setarRegistro?: boolean): boolean;
|
|
62
|
-
carregaItemIdParaLista(id: number): void;
|
|
63
|
-
limparClick(): void;
|
|
64
|
-
verificarPesquisa(): void;
|
|
65
|
-
pesquisarClick(): Promise<void>;
|
|
66
|
-
isEmpty(valor: string | any): boolean;
|
|
67
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputPesquisaComponent, never>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputPesquisaComponent, "kb-input-pesquisa", never, { "textoPesquisa": { "alias": "textoPesquisa"; "required": false; }; "max": { "alias": "max"; "required": false; }; "filterFunction": { "alias": "filterFunction"; "required": false; }; "selectId": { "alias": "selectId"; "required": false; }; "campoId": { "alias": "campoId"; "required": false; }; "campoPaiId": { "alias": "campoPaiId"; "required": false; }; "campoDisplay": { "alias": "campoDisplay"; "required": false; }; "tipo": { "alias": "tipo"; "required": false; }; "pesquisaChange": { "alias": "pesquisaChange"; "required": false; }; "pesquisaAction": { "alias": "pesquisaAction"; "required": false; }; "limpar": { "alias": "limpar"; "required": false; }; "url": { "alias": "url"; "required": false; }; "urlItem": { "alias": "urlItem"; "required": false; }; "urlTree": { "alias": "urlTree"; "required": false; }; "empresa": { "alias": "empresa"; "required": false; }; "loadInit": { "alias": "loadInit"; "required": false; }; "treeTitulo": { "alias": "treeTitulo"; "required": false; }; }, {}, never, never, false, never>;
|
|
69
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputRadioComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
itens: any[];
|
|
7
|
-
itemId: string;
|
|
8
|
-
itemNome: string;
|
|
9
|
-
color: string;
|
|
10
|
-
data: string | undefined;
|
|
11
|
-
private onChange;
|
|
12
|
-
private onTouch;
|
|
13
|
-
private disabled;
|
|
14
|
-
console: Console;
|
|
15
|
-
writeValue(value?: any): void;
|
|
16
|
-
registerOnChange(fn: any): void;
|
|
17
|
-
registerOnTouched(fn: any): void;
|
|
18
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
19
|
-
constructor();
|
|
20
|
-
ngOnInit(): void;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputRadioComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputRadioComponent, "kb-input-radio", never, { "itens": { "alias": "itens"; "required": false; }; "itemId": { "alias": "itemId"; "required": false; }; "itemNome": { "alias": "itemNome"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputSelectComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
private renderer;
|
|
7
|
-
selectChange: EventEmitter<any>;
|
|
8
|
-
selectChangeEntity: EventEmitter<any>;
|
|
9
|
-
itens: any[];
|
|
10
|
-
itemId: string;
|
|
11
|
-
itemNome: string;
|
|
12
|
-
showNovo: boolean;
|
|
13
|
-
itemNull: boolean;
|
|
14
|
-
opcaoDefault: string;
|
|
15
|
-
itemSelect: any;
|
|
16
|
-
data: string | any;
|
|
17
|
-
private onChange;
|
|
18
|
-
private onTouch;
|
|
19
|
-
private disabled;
|
|
20
|
-
console: Console;
|
|
21
|
-
writeValue(value: string | any): void;
|
|
22
|
-
registerOnChange(fn: any): void;
|
|
23
|
-
registerOnTouched(fn: any): void;
|
|
24
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
25
|
-
constructor(renderer: Renderer2);
|
|
26
|
-
ngOnInit(): void;
|
|
27
|
-
onSelectChange(value: any): void;
|
|
28
|
-
onBlur(): void;
|
|
29
|
-
onEnter(): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputSelectComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputSelectComponent, "kb-input-select", never, { "itens": { "alias": "itens"; "required": false; }; "itemId": { "alias": "itemId"; "required": false; }; "itemNome": { "alias": "itemNome"; "required": false; }; "showNovo": { "alias": "showNovo"; "required": false; }; "itemNull": { "alias": "itemNull"; "required": false; }; "opcaoDefault": { "alias": "opcaoDefault"; "required": false; }; }, { "selectChange": "selectChange"; "selectChangeEntity": "selectChangeEntity"; }, never, never, false, never>;
|
|
32
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputTextComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
iconInput?: string;
|
|
7
|
-
inputSpanAfter: string;
|
|
8
|
-
inputTextEdit: any;
|
|
9
|
-
campoFoco: string;
|
|
10
|
-
showSeePassword: boolean;
|
|
11
|
-
showCustomAction: boolean;
|
|
12
|
-
customActionIcon: string;
|
|
13
|
-
customActionClick: EventEmitter<any>;
|
|
14
|
-
data: string | undefined;
|
|
15
|
-
private onChange;
|
|
16
|
-
private onTouch;
|
|
17
|
-
private disabled;
|
|
18
|
-
console: Console;
|
|
19
|
-
writeValue(value?: any): void;
|
|
20
|
-
registerOnChange(fn: any): void;
|
|
21
|
-
registerOnTouched(fn: any): void;
|
|
22
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
23
|
-
constructor();
|
|
24
|
-
ngOnInit(): void;
|
|
25
|
-
onBlur(): void;
|
|
26
|
-
limparClick(): void;
|
|
27
|
-
isReadonly(): boolean;
|
|
28
|
-
changeTypeOfInput(): void;
|
|
29
|
-
setFocus(): void;
|
|
30
|
-
customClick(): void;
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "kb-input-text", never, { "iconInput": { "alias": "iconInput"; "required": false; }; "inputSpanAfter": { "alias": "inputSpanAfter"; "required": false; }; "campoFoco": { "alias": "campoFoco"; "required": false; }; "showCustomAction": { "alias": "showCustomAction"; "required": false; }; "customActionIcon": { "alias": "customActionIcon"; "required": false; }; }, { "customActionClick": "customActionClick"; }, never, never, false, never>;
|
|
33
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import { BaseInputComponent } from '../baseInputComponent';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class InputValorComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
maxValor: number;
|
|
7
|
-
inputValorEdit: any;
|
|
8
|
-
data: string | any;
|
|
9
|
-
private onChange;
|
|
10
|
-
private onTouch;
|
|
11
|
-
private disabled;
|
|
12
|
-
console: Console;
|
|
13
|
-
writeValue(value: string | any): void;
|
|
14
|
-
registerOnChange(fn: any): void;
|
|
15
|
-
registerOnTouched(fn: any): void;
|
|
16
|
-
setDisabledState?(isDisabled: boolean): void;
|
|
17
|
-
constructor();
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
onBlur(): void;
|
|
20
|
-
digitarValor(event: any): boolean;
|
|
21
|
-
isEmpty(str: string | any): boolean;
|
|
22
|
-
converterValorDecimalMil(campo: string, casas?: number): string;
|
|
23
|
-
decimalToStringMil(number?: any): any;
|
|
24
|
-
stringOfChar(str: string, tam: number): string;
|
|
25
|
-
strToFloatZero(str: any): number;
|
|
26
|
-
setFocus(): void;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputValorComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputValorComponent, "kb-input-valor", never, { "maxValor": { "alias": "maxValor"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
|
-
}
|