pdm-ui-kit 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/input/input.component.mjs +10 -3
- package/esm2020/src/input/input.component.mjs +10 -3
- package/fesm2015/pdm-ui-kit-src-input.mjs +8 -2
- package/fesm2015/pdm-ui-kit-src-input.mjs.map +1 -1
- package/fesm2015/pdm-ui-kit.mjs +8 -2
- package/fesm2015/pdm-ui-kit.mjs.map +1 -1
- package/fesm2020/pdm-ui-kit-src-input.mjs +8 -2
- package/fesm2020/pdm-ui-kit-src-input.mjs.map +1 -1
- package/fesm2020/pdm-ui-kit.mjs +8 -2
- package/fesm2020/pdm-ui-kit.mjs.map +1 -1
- package/input/input.component.d.ts +4 -1
- package/package.json +1 -1
- package/src/input/input.component.d.ts +4 -1
|
@@ -2,6 +2,7 @@ import { EventEmitter } from "@angular/core";
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare type PdmInputSize = "mini" | "small" | "regular" | "large";
|
|
4
4
|
export declare type PdmInputRoundness = "default" | "round";
|
|
5
|
+
export declare type PdmInputIconPosition = "left" | "right";
|
|
5
6
|
export declare class PdmInputComponent {
|
|
6
7
|
id: string;
|
|
7
8
|
type: string;
|
|
@@ -13,6 +14,8 @@ export declare class PdmInputComponent {
|
|
|
13
14
|
invalid: boolean;
|
|
14
15
|
size: PdmInputSize;
|
|
15
16
|
roundness: PdmInputRoundness;
|
|
17
|
+
icon: string;
|
|
18
|
+
iconPosition: PdmInputIconPosition;
|
|
16
19
|
className: string;
|
|
17
20
|
inputClassName: string;
|
|
18
21
|
label: string;
|
|
@@ -27,5 +30,5 @@ export declare class PdmInputComponent {
|
|
|
27
30
|
get errorAttrId(): string | null;
|
|
28
31
|
get descriptionAttrId(): string | null;
|
|
29
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmInputComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PdmInputComponent, "pdm-input", never, { "id": "id"; "type": "type"; "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "invalid": "invalid"; "size": "size"; "roundness": "roundness"; "className": "className"; "inputClassName": "inputClassName"; "label": "label"; "helperText": "helperText"; "errorText": "errorText"; }, { "valueChange": "valueChange"; "blurred": "blurred"; }, never, never, false>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmInputComponent, "pdm-input", never, { "id": "id"; "type": "type"; "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "invalid": "invalid"; "size": "size"; "roundness": "roundness"; "icon": "icon"; "iconPosition": "iconPosition"; "className": "className"; "inputClassName": "inputClassName"; "label": "label"; "helperText": "helperText"; "errorText": "errorText"; }, { "valueChange": "valueChange"; "blurred": "blurred"; }, never, never, false>;
|
|
31
34
|
}
|
package/package.json
CHANGED
|
@@ -2,6 +2,7 @@ import { EventEmitter } from "@angular/core";
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare type PdmInputSize = "mini" | "small" | "regular" | "large";
|
|
4
4
|
export declare type PdmInputRoundness = "default" | "round";
|
|
5
|
+
export declare type PdmInputIconPosition = "left" | "right";
|
|
5
6
|
export declare class PdmInputComponent {
|
|
6
7
|
id: string;
|
|
7
8
|
type: string;
|
|
@@ -13,6 +14,8 @@ export declare class PdmInputComponent {
|
|
|
13
14
|
invalid: boolean;
|
|
14
15
|
size: PdmInputSize;
|
|
15
16
|
roundness: PdmInputRoundness;
|
|
17
|
+
icon: string;
|
|
18
|
+
iconPosition: PdmInputIconPosition;
|
|
16
19
|
className: string;
|
|
17
20
|
inputClassName: string;
|
|
18
21
|
label: string;
|
|
@@ -27,5 +30,5 @@ export declare class PdmInputComponent {
|
|
|
27
30
|
get errorAttrId(): string | null;
|
|
28
31
|
get descriptionAttrId(): string | null;
|
|
29
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdmInputComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PdmInputComponent, "pdm-input", never, { "id": "id"; "type": "type"; "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "invalid": "invalid"; "size": "size"; "roundness": "roundness"; "className": "className"; "inputClassName": "inputClassName"; "label": "label"; "helperText": "helperText"; "errorText": "errorText"; }, { "valueChange": "valueChange"; "blurred": "blurred"; }, never, never, false>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PdmInputComponent, "pdm-input", never, { "id": "id"; "type": "type"; "value": "value"; "placeholder": "placeholder"; "disabled": "disabled"; "readonly": "readonly"; "required": "required"; "invalid": "invalid"; "size": "size"; "roundness": "roundness"; "icon": "icon"; "iconPosition": "iconPosition"; "className": "className"; "inputClassName": "inputClassName"; "label": "label"; "helperText": "helperText"; "errorText": "errorText"; }, { "valueChange": "valueChange"; "blurred": "blurred"; }, never, never, false>;
|
|
31
34
|
}
|