appproject-components 0.0.11 → 0.0.13
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/esm2020/lib/appproject-components.component.mjs +3 -3
- package/esm2020/lib/appproject-components.module.mjs +4 -4
- package/esm2020/lib/appproject-components.service.mjs +3 -3
- package/esm2020/lib/baseInputComponent.mjs +3 -3
- package/esm2020/lib/input-area/input-area.component.mjs +3 -3
- package/esm2020/lib/input-cep/input-cep.component.mjs +3 -3
- package/esm2020/lib/input-format/input-format.component.mjs +3 -3
- package/esm2020/lib/input-pesquisa/input-pesquisa.component.mjs +3 -3
- package/esm2020/lib/input-select/input-select.component.mjs +3 -3
- package/esm2020/lib/input-text/input-text.component.mjs +10 -8
- package/esm2020/lib/input-valor/input-valor.component.mjs +3 -3
- package/esm2020/lib/model-treeview/model-treeview.component.mjs +3 -3
- package/fesm2015/appproject-components.mjs +43 -40
- package/fesm2015/appproject-components.mjs.map +1 -1
- package/fesm2020/appproject-components.mjs +43 -40
- package/fesm2020/appproject-components.mjs.map +1 -1
- package/lib/appproject-components.component.d.ts +1 -1
- package/lib/baseInputComponent.d.ts +1 -1
- package/lib/input-area/input-area.component.d.ts +1 -1
- package/lib/input-cep/input-cep.component.d.ts +1 -1
- package/lib/input-format/input-format.component.d.ts +1 -1
- package/lib/input-pesquisa/input-pesquisa.component.d.ts +1 -1
- package/lib/input-select/input-select.component.d.ts +1 -1
- package/lib/input-text/input-text.component.d.ts +2 -1
- package/lib/input-valor/input-valor.component.d.ts +1 -1
- package/lib/model-treeview/model-treeview.component.d.ts +1 -1
- package/package.json +4 -4
|
@@ -3,6 +3,7 @@ import { ControlValueAccessor } from '@angular/forms';
|
|
|
3
3
|
import { BaseInputComponent } from '../baseInputComponent';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class InputTextComponent extends BaseInputComponent implements OnInit, ControlValueAccessor {
|
|
6
|
+
iconInput?: string;
|
|
6
7
|
showSeePassword: boolean;
|
|
7
8
|
data: string | undefined;
|
|
8
9
|
private onChange;
|
|
@@ -20,5 +21,5 @@ export declare class InputTextComponent extends BaseInputComponent implements On
|
|
|
20
21
|
isReadonly(): boolean;
|
|
21
22
|
changeTypeOfInput(): void;
|
|
22
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "kb-input-text", never, {}, {}, never, never, false>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "kb-input-text", never, { "iconInput": "iconInput"; }, {}, never, never, false, never>;
|
|
24
25
|
}
|
|
@@ -21,5 +21,5 @@ export declare class InputValorComponent extends BaseInputComponent implements O
|
|
|
21
21
|
decimalToStringMil(number?: any): any;
|
|
22
22
|
stringOfChar(str: string, tam: number): string;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputValorComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputValorComponent, "kb-input-valor", never, {}, {}, never, never, false>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputValorComponent, "kb-input-valor", never, {}, {}, never, never, false, never>;
|
|
25
25
|
}
|
|
@@ -4,5 +4,5 @@ export declare class ModelTreeviewComponent implements OnInit {
|
|
|
4
4
|
constructor();
|
|
5
5
|
ngOnInit(): void;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModelTreeviewComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ModelTreeviewComponent, "kb-model-treeview", never, {}, {}, never, never, false>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModelTreeviewComponent, "kb-model-treeview", never, {}, {}, never, never, false, never>;
|
|
8
8
|
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appproject-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
7
|
-
"@ionic/angular": "^6.
|
|
5
|
+
"@angular/common": "^15.0.4",
|
|
6
|
+
"@angular/core": "^15.0.4",
|
|
7
|
+
"@ionic/angular": "^6.1.9"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"tslib": "^2.3.0"
|