@litigiovirtual/ius-design-components 1.0.170 → 1.0.172
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/alert/alert.component.mjs +76 -0
- package/esm2022/lib/alert/index.mjs +2 -0
- package/esm2022/lib/input-card/index.mjs +2 -0
- package/esm2022/lib/input-card/input-card.component.mjs +158 -0
- package/esm2022/lib/simple-card-contador/simple-card-contador.component.mjs +30 -16
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/litigiovirtual-ius-design-components.mjs +249 -17
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/alert/alert.component.d.ts +22 -0
- package/lib/alert/index.d.ts +1 -0
- package/lib/input-card/index.d.ts +1 -0
- package/lib/input-card/input-card.component.d.ts +43 -0
- package/lib/simple-card-contador/simple-card-contador.component.d.ts +5 -3
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
2
|
+
import { EventEmitter, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AlertComponent {
|
|
5
|
+
private overlay;
|
|
6
|
+
private vcr;
|
|
7
|
+
modalTpl: TemplateRef<any>;
|
|
8
|
+
title: string;
|
|
9
|
+
text: string;
|
|
10
|
+
leftButtonName: string;
|
|
11
|
+
rightButtonName: string;
|
|
12
|
+
onRightButtonClick: EventEmitter<void>;
|
|
13
|
+
onLeftButtonClick: EventEmitter<void>;
|
|
14
|
+
private overlayRef?;
|
|
15
|
+
constructor(overlay: Overlay, vcr: ViewContainerRef);
|
|
16
|
+
ngAfterViewInit(): void;
|
|
17
|
+
onClickLeftButton(): void;
|
|
18
|
+
onClickRightButton(): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "ius-alert", never, { "title": { "alias": "title"; "required": false; }; "text": { "alias": "text"; "required": false; }; "leftButtonName": { "alias": "leftButtonName"; "required": false; }; "rightButtonName": { "alias": "rightButtonName"; "required": false; }; }, { "onRightButtonClick": "onRightButtonClick"; "onLeftButtonClick": "onLeftButtonClick"; }, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './alert.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './input-card.component';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InputCardComponent {
|
|
4
|
+
yearInput?: ElementRef<HTMLInputElement>;
|
|
5
|
+
textInputCvv: string;
|
|
6
|
+
textInputMonth: string;
|
|
7
|
+
textInputYear: string;
|
|
8
|
+
isFocused: boolean;
|
|
9
|
+
isAlertText: boolean;
|
|
10
|
+
required: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
isEnableClearText: boolean;
|
|
13
|
+
showHelpText: boolean;
|
|
14
|
+
labelSuperior?: string;
|
|
15
|
+
labelInferior?: string;
|
|
16
|
+
iconInput?: string;
|
|
17
|
+
initialTextCvv?: string;
|
|
18
|
+
initialTextMonth?: string;
|
|
19
|
+
initialTextYear?: string;
|
|
20
|
+
onChangesValueMonth: EventEmitter<string>;
|
|
21
|
+
onChangesValueYear: EventEmitter<string>;
|
|
22
|
+
onChangesValueCVV: EventEmitter<string>;
|
|
23
|
+
onEnterKey: EventEmitter<string>;
|
|
24
|
+
month: string;
|
|
25
|
+
year: string;
|
|
26
|
+
numeroCVV: string;
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
clearSearch(): void;
|
|
29
|
+
onChangeCVV(event: any): void;
|
|
30
|
+
onChangeMonth(e: any): void;
|
|
31
|
+
onChangeYear(e: any): void;
|
|
32
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
33
|
+
/**
|
|
34
|
+
* Bloquea el drop de contenido
|
|
35
|
+
*/
|
|
36
|
+
onDropBlock(event: DragEvent): void;
|
|
37
|
+
/**
|
|
38
|
+
* Bloquea el dragover para evitar drop
|
|
39
|
+
*/
|
|
40
|
+
onDragOverBlock(event: DragEvent): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputCardComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputCardComponent, "ius-input-card", never, { "textInputCvv": { "alias": "textInputCvv"; "required": false; }; "textInputMonth": { "alias": "textInputMonth"; "required": false; }; "textInputYear": { "alias": "textInputYear"; "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; }; "iconInput": { "alias": "iconInput"; "required": false; }; "initialTextCvv": { "alias": "initialTextCvv"; "required": false; }; "initialTextMonth": { "alias": "initialTextMonth"; "required": false; }; "initialTextYear": { "alias": "initialTextYear"; "required": false; }; }, { "onChangesValueMonth": "onChangesValueMonth"; "onChangesValueYear": "onChangesValueYear"; "onChangesValueCVV": "onChangesValueCVV"; "onEnterKey": "onEnterKey"; }, never, never, true, never>;
|
|
43
|
+
}
|
|
@@ -3,10 +3,12 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class SimpleCardContadorComponent {
|
|
4
4
|
title?: string;
|
|
5
5
|
value: number;
|
|
6
|
+
maxValue: number;
|
|
6
7
|
valueChange: EventEmitter<number>;
|
|
8
|
+
errorMaxValue: EventEmitter<string>;
|
|
7
9
|
step(el: HTMLInputElement, dir: 1 | -1): void;
|
|
8
|
-
onTyped(
|
|
9
|
-
private
|
|
10
|
+
onTyped(el: HTMLInputElement): void;
|
|
11
|
+
private applyLimitsAndEmit;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleCardContadorComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleCardContadorComponent, "ius-simple-card-contador", never, { "title": { "alias": "title"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleCardContadorComponent, "ius-simple-card-contador", never, { "title": { "alias": "title"; "required": false; }; "value": { "alias": "value"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; }, { "valueChange": "valueChange"; "errorMaxValue": "errorMaxValue"; }, never, never, true, never>;
|
|
12
14
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -86,4 +86,6 @@ export * from './lib/card-actividad-evento';
|
|
|
86
86
|
export * from './lib/card-etapa-subetapa';
|
|
87
87
|
export * from './lib/card-impulso-procesal';
|
|
88
88
|
export * from './lib/calification';
|
|
89
|
+
export * from './lib/alert';
|
|
90
|
+
export * from './lib/input-card';
|
|
89
91
|
export * from './lib/directives/popover.directive';
|