pjc-fields 0.0.60 → 0.0.61
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 +17 -1
- package/fesm2022/pjc-fields.mjs.map +1 -1
- package/package.json +1 -1
- package/types/pjc-fields.d.ts +10 -1
package/package.json
CHANGED
package/types/pjc-fields.d.ts
CHANGED
|
@@ -340,6 +340,15 @@ declare class PjcDataHoraFieldComponent implements ControlValueAccessor, Validat
|
|
|
340
340
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PjcDataHoraFieldComponent, "pjc-data-hora-field", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "labelVariant": { "alias": "labelVariant"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "erros": { "alias": "erros"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
341
341
|
}
|
|
342
342
|
|
|
343
|
+
declare class PjcDetalhesComponent {
|
|
344
|
+
label: _angular_core.InputSignal<string>;
|
|
345
|
+
value: _angular_core.InputSignal<string | number | null | undefined>;
|
|
346
|
+
layout: _angular_core.InputSignal<"column" | "row">;
|
|
347
|
+
displayValue: _angular_core.Signal<string>;
|
|
348
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PjcDetalhesComponent, never>;
|
|
349
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PjcDetalhesComponent, "pjc-detalhes", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
350
|
+
}
|
|
351
|
+
|
|
343
352
|
declare class PjcEmailFieldComponent implements ControlValueAccessor, Validator, OnInit {
|
|
344
353
|
label: _angular_core.InputSignal<string>;
|
|
345
354
|
placeholder: _angular_core.InputSignal<string>;
|
|
@@ -882,5 +891,5 @@ declare class PjcValidators {
|
|
|
882
891
|
static dataHora(minDate?: Date, maxDate?: Date): ValidatorFn;
|
|
883
892
|
}
|
|
884
893
|
|
|
885
|
-
export { ESTADOS, PJC_CIDADE_SERVICE, PJC_ENUM_SERVICE, PjcCepFieldComponent, PjcChassiFieldComponent, PjcChassiInputDirective, PjcCidadeFieldComponent, PjcCidadeService, PjcCnhFieldComponent, PjcCnpjFieldComponent, PjcCpfCnpjFieldComponent, PjcCpfFieldComponent, PjcDataFieldComponent, PjcDataHoraFieldComponent, PjcEmailFieldComponent, PjcEnumFieldComponent, PjcEnumService, PjcErroValidacaoComponent, PjcFields, PjcHoraFieldComponent, PjcImeiFieldComponent, PjcIntegerFieldComponent, PjcMoedaFieldComponent, PjcNumeroCartaoFieldComponent, PjcPasswordFieldComponent, PjcPlacaFieldComponent, PjcRenavamFieldComponent, PjcTelefoneFieldComponent, PjcTipoPessoaFieldComponent, PjcUfFieldComponent, PjcUppercaseFieldComponent, PjcValidators, TIPOS_PESSOA };
|
|
894
|
+
export { ESTADOS, PJC_CIDADE_SERVICE, PJC_ENUM_SERVICE, PjcCepFieldComponent, PjcChassiFieldComponent, PjcChassiInputDirective, PjcCidadeFieldComponent, PjcCidadeService, PjcCnhFieldComponent, PjcCnpjFieldComponent, PjcCpfCnpjFieldComponent, PjcCpfFieldComponent, PjcDataFieldComponent, PjcDataHoraFieldComponent, PjcDetalhesComponent, PjcEmailFieldComponent, PjcEnumFieldComponent, PjcEnumService, PjcErroValidacaoComponent, PjcFields, PjcHoraFieldComponent, PjcImeiFieldComponent, PjcIntegerFieldComponent, PjcMoedaFieldComponent, PjcNumeroCartaoFieldComponent, PjcPasswordFieldComponent, PjcPlacaFieldComponent, PjcRenavamFieldComponent, PjcTelefoneFieldComponent, PjcTipoPessoaFieldComponent, PjcUfFieldComponent, PjcUppercaseFieldComponent, PjcValidators, TIPOS_PESSOA };
|
|
886
895
|
export type { PjcCidadeServiceContract, PjcEnumItem, PjcEnumServiceContract, PjcMunicipio, PjcTipoPessoa, PjcUf };
|