duck-dev-lib 0.0.34 → 0.0.36
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/package.json
CHANGED
package/types/duck-dev-lib.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as _angular_core from '@angular/core';
|
|
|
2
2
|
import { ElementRef, OnInit, OnDestroy, TemplateRef } from '@angular/core';
|
|
3
3
|
import { Translation } from '@jsverse/transloco';
|
|
4
4
|
import { FormGroup } from '@angular/forms';
|
|
5
|
+
import { MaskitoOptions } from '@maskito/core';
|
|
5
6
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
6
7
|
|
|
7
8
|
declare enum AccentEnumColor {
|
|
@@ -165,8 +166,9 @@ declare class DuckDevInput {
|
|
|
165
166
|
type: _angular_core.InputSignal<string>;
|
|
166
167
|
formInputType: _angular_core.InputSignal<"input" | "textarea" | "checkbox">;
|
|
167
168
|
errorMessage: _angular_core.InputSignal<string>;
|
|
169
|
+
mask: _angular_core.InputSignal<MaskitoOptions | null>;
|
|
168
170
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DuckDevInput, never>;
|
|
169
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DuckDevInput, "duck-dev-input", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "controlName": { "alias": "controlName"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "formInputType": { "alias": "formInputType"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
171
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DuckDevInput, "duck-dev-input", never, { "form": { "alias": "form"; "required": true; "isSignal": true; }; "controlName": { "alias": "controlName"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "formInputType": { "alias": "formInputType"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "mask": { "alias": "mask"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
170
172
|
}
|
|
171
173
|
|
|
172
174
|
type NotificationType = 'success' | 'warning' | 'error';
|