pjc-fields 0.0.19 → 0.0.21
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/fesm2022/pjc-fields.mjs +39 -38
- package/fesm2022/pjc-fields.mjs.map +1 -1
- package/package.json +1 -1
- package/types/pjc-fields.d.ts +2 -1
package/package.json
CHANGED
package/types/pjc-fields.d.ts
CHANGED
|
@@ -191,6 +191,7 @@ declare class PjcCepFieldComponent implements ControlValueAccessor, Validator {
|
|
|
191
191
|
id: _angular_core.InputSignal<string>;
|
|
192
192
|
labelVariant: _angular_core.InputSignal<"over" | "in" | "on">;
|
|
193
193
|
readonly: _angular_core.InputSignal<boolean>;
|
|
194
|
+
showSearchButton: _angular_core.InputSignal<boolean>;
|
|
194
195
|
busca: _angular_core.OutputEmitterRef<string>;
|
|
195
196
|
value: string;
|
|
196
197
|
disabled: boolean;
|
|
@@ -206,7 +207,7 @@ declare class PjcCepFieldComponent implements ControlValueAccessor, Validator {
|
|
|
206
207
|
onSearch(): void;
|
|
207
208
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
208
209
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PjcCepFieldComponent, never>;
|
|
209
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PjcCepFieldComponent, "pjc-cep-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "labelVariant": { "alias": "labelVariant"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "busca": "busca"; }, never, never, true, never>;
|
|
210
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PjcCepFieldComponent, "pjc-cep-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "labelVariant": { "alias": "labelVariant"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; "isSignal": true; }; }, { "busca": "busca"; }, never, never, true, never>;
|
|
210
211
|
}
|
|
211
212
|
|
|
212
213
|
interface PjcUf {
|