@litigiovirtual/ius-design-components 1.0.87 → 1.0.89
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/esm2022/lib/custom-dropdown/custom-dropdown.component.mjs +5 -6
- package/esm2022/lib/date-hour-picker/date-hour-picker.component.mjs +1 -1
- package/esm2022/lib/icons/icons-map.mjs +21 -1
- package/esm2022/lib/input-select/input-select.component.mjs +8 -12
- package/esm2022/lib/input-textfield/input-textfield.component.mjs +7 -10
- package/esm2022/lib/option/option.component.mjs +1 -1
- package/fesm2022/litigiovirtual-ius-design-components.mjs +37 -25
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/custom-dropdown/custom-dropdown.component.d.ts +2 -2
- package/lib/input-select/input-select.component.d.ts +2 -3
- package/lib/input-textfield/input-textfield.component.d.ts +2 -3
- package/package.json +1 -1
|
@@ -20,7 +20,7 @@ export declare class CustomDropdownComponent {
|
|
|
20
20
|
textInput: string;
|
|
21
21
|
element: string;
|
|
22
22
|
onChangesValueEvent: EventEmitter<any>;
|
|
23
|
-
|
|
23
|
+
onEnterKey: EventEmitter<string>;
|
|
24
24
|
onAddElement: EventEmitter<string>;
|
|
25
25
|
onClickOutside(event: Event): void;
|
|
26
26
|
onInput(): void;
|
|
@@ -33,5 +33,5 @@ export declare class CustomDropdownComponent {
|
|
|
33
33
|
addText(): void;
|
|
34
34
|
onSelectOption(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomDropdownComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDropdownComponent, "ius-custom-dropdown", never, { "componentId": { "alias": "componentId"; "required": true; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "labelSuperior": { "alias": "labelSuperior"; "required": false; }; "labelInferior": { "alias": "labelInferior"; "required": false; }; "labelInput": { "alias": "labelInput"; "required": false; }; "iconInput": { "alias": "iconInput"; "required": false; }; "placeholderAddText": { "alias": "placeholderAddText"; "required": false; }; "iconBtnAdd": { "alias": "iconBtnAdd"; "required": false; }; "textBtnAdd": { "alias": "textBtnAdd"; "required": false; }; "textInput": { "alias": "textInput"; "required": false; }; "element": { "alias": "element"; "required": false; }; }, { "onChangesValueEvent": "onChangesValueEvent"; "
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomDropdownComponent, "ius-custom-dropdown", never, { "componentId": { "alias": "componentId"; "required": true; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "labelSuperior": { "alias": "labelSuperior"; "required": false; }; "labelInferior": { "alias": "labelInferior"; "required": false; }; "labelInput": { "alias": "labelInput"; "required": false; }; "iconInput": { "alias": "iconInput"; "required": false; }; "placeholderAddText": { "alias": "placeholderAddText"; "required": false; }; "iconBtnAdd": { "alias": "iconBtnAdd"; "required": false; }; "textBtnAdd": { "alias": "textBtnAdd"; "required": false; }; "textInput": { "alias": "textInput"; "required": false; }; "element": { "alias": "element"; "required": false; }; }, { "onChangesValueEvent": "onChangesValueEvent"; "onEnterKey": "onEnterKey"; "onAddElement": "onAddElement"; }, never, ["*"], true, never>;
|
|
37
37
|
}
|
|
@@ -18,17 +18,16 @@ export declare class InputSelectComponent {
|
|
|
18
18
|
maxlenght?: number;
|
|
19
19
|
inputType: string;
|
|
20
20
|
onChangesValueEvent: EventEmitter<any>;
|
|
21
|
-
|
|
21
|
+
onEnterKey: EventEmitter<string>;
|
|
22
22
|
onClickOutside(event: Event): void;
|
|
23
23
|
closeList(event?: Event): void;
|
|
24
24
|
onInput(): void;
|
|
25
25
|
onFocus(): void;
|
|
26
26
|
onBlur(): void;
|
|
27
27
|
onKeyPress(event: KeyboardEvent): void;
|
|
28
|
-
addText(): void;
|
|
29
28
|
onSelectOption(): void;
|
|
30
29
|
onDropBlock(event: DragEvent): void;
|
|
31
30
|
onDragOverBlock(event: DragEvent): void;
|
|
32
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputSelectComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputSelectComponent, "ius-input-select", never, { "componentId": { "alias": "componentId"; "required": true; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "labelSuperior": { "alias": "labelSuperior"; "required": false; }; "labelInferior": { "alias": "labelInferior"; "required": false; }; "labelInput": { "alias": "labelInput"; "required": false; }; "iconInput": { "alias": "iconInput"; "required": false; }; "textInput": { "alias": "textInput"; "required": false; }; "maxlenght": { "alias": "maxlenght"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; }, { "onChangesValueEvent": "onChangesValueEvent"; "
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSelectComponent, "ius-input-select", never, { "componentId": { "alias": "componentId"; "required": true; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "labelSuperior": { "alias": "labelSuperior"; "required": false; }; "labelInferior": { "alias": "labelInferior"; "required": false; }; "labelInput": { "alias": "labelInput"; "required": false; }; "iconInput": { "alias": "iconInput"; "required": false; }; "textInput": { "alias": "textInput"; "required": false; }; "maxlenght": { "alias": "maxlenght"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; }, { "onChangesValueEvent": "onChangesValueEvent"; "onEnterKey": "onEnterKey"; }, never, ["*"], true, never>;
|
|
34
33
|
}
|
|
@@ -16,16 +16,15 @@ export declare class InputTextfieldComponent {
|
|
|
16
16
|
maxlenght?: number;
|
|
17
17
|
initialText?: string;
|
|
18
18
|
onChangesValueEvent: EventEmitter<any>;
|
|
19
|
-
|
|
19
|
+
onEnterKey: EventEmitter<string>;
|
|
20
20
|
ngOnInit(): void;
|
|
21
21
|
clearSearch(): void;
|
|
22
22
|
onInput(): void;
|
|
23
23
|
onFocus(): void;
|
|
24
24
|
onBlur(): void;
|
|
25
25
|
onKeyPress(event: KeyboardEvent): void;
|
|
26
|
-
addText(): void;
|
|
27
26
|
onDropBlock(event: DragEvent): void;
|
|
28
27
|
onDragOverBlock(event: DragEvent): void;
|
|
29
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextfieldComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextfieldComponent, "ius-input-textfield", never, { "textInput": { "alias": "textInput"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isEnableClearText": { "alias": "isEnableClearText"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "labelSuperior": { "alias": "labelSuperior"; "required": false; }; "labelInferior": { "alias": "labelInferior"; "required": false; }; "labelInput": { "alias": "labelInput"; "required": false; }; "iconInput": { "alias": "iconInput"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; "maxlenght": { "alias": "maxlenght"; "required": false; }; "initialText": { "alias": "initialText"; "required": false; }; }, { "onChangesValueEvent": "onChangesValueEvent"; "
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextfieldComponent, "ius-input-textfield", never, { "textInput": { "alias": "textInput"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isEnableClearText": { "alias": "isEnableClearText"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "labelSuperior": { "alias": "labelSuperior"; "required": false; }; "labelInferior": { "alias": "labelInferior"; "required": false; }; "labelInput": { "alias": "labelInput"; "required": false; }; "iconInput": { "alias": "iconInput"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; "maxlenght": { "alias": "maxlenght"; "required": false; }; "initialText": { "alias": "initialText"; "required": false; }; }, { "onChangesValueEvent": "onChangesValueEvent"; "onEnterKey": "onEnterKey"; }, never, never, true, never>;
|
|
31
30
|
}
|