@litigiovirtual/ius-design-components 1.0.170 → 1.0.171

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.
@@ -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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@litigiovirtual/ius-design-components",
3
- "version": "1.0.170",
3
+ "version": "1.0.171",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0 <20.0.0",
6
6
  "@angular/core": ">=17.0.0 <20.0.0",
package/public-api.d.ts CHANGED
@@ -86,4 +86,5 @@ 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/input-card';
89
90
  export * from './lib/directives/popover.directive';