pjc-fields 0.0.54 → 0.0.56
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 +48 -10
- package/fesm2022/pjc-fields.mjs.map +1 -1
- package/package.json +1 -1
- package/types/pjc-fields.d.ts +4 -1
package/package.json
CHANGED
package/types/pjc-fields.d.ts
CHANGED
|
@@ -391,6 +391,8 @@ declare class PjcEnumFieldComponent implements ControlValueAccessor, OnInit {
|
|
|
391
391
|
optionValue: _angular_core.InputSignal<string | undefined>;
|
|
392
392
|
/** Whether the select should have a filter/search input. */
|
|
393
393
|
filter: _angular_core.InputSignal<boolean>;
|
|
394
|
+
/** Placeholder text for the filter input inside the dropdown. */
|
|
395
|
+
filterPlaceholder: _angular_core.InputSignal<string>;
|
|
394
396
|
/** Whether to show a clear button to reset the selection. */
|
|
395
397
|
showClear: _angular_core.InputSignal<boolean>;
|
|
396
398
|
private readonly injector;
|
|
@@ -418,7 +420,7 @@ declare class PjcEnumFieldComponent implements ControlValueAccessor, OnInit {
|
|
|
418
420
|
onModelTouched(): void;
|
|
419
421
|
private fetchItems;
|
|
420
422
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PjcEnumFieldComponent, never>;
|
|
421
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PjcEnumFieldComponent, "pjc-enum-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; }; "erros": { "alias": "erros"; "required": false; "isSignal": true; }; "url": { "alias": "url"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "optionLabel": { "alias": "optionLabel"; "required": false; "isSignal": true; }; "optionValue": { "alias": "optionValue"; "required": false; "isSignal": true; }; "filter": { "alias": "filter"; "required": false; "isSignal": true; }; "showClear": { "alias": "showClear"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
423
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PjcEnumFieldComponent, "pjc-enum-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; }; "erros": { "alias": "erros"; "required": false; "isSignal": true; }; "url": { "alias": "url"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "optionLabel": { "alias": "optionLabel"; "required": false; "isSignal": true; }; "optionValue": { "alias": "optionValue"; "required": false; "isSignal": true; }; "filter": { "alias": "filter"; "required": false; "isSignal": true; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; "isSignal": true; }; "showClear": { "alias": "showClear"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
422
424
|
}
|
|
423
425
|
|
|
424
426
|
interface PjcEnumServiceContract {
|
|
@@ -561,6 +563,7 @@ declare class PjcMoedaFieldComponent implements ControlValueAccessor, OnInit {
|
|
|
561
563
|
get invalid(): boolean;
|
|
562
564
|
get errorMessage(): string;
|
|
563
565
|
onKeyDown(event: KeyboardEvent): void;
|
|
566
|
+
private restoreCursor;
|
|
564
567
|
onPaste(event: ClipboardEvent): void;
|
|
565
568
|
private emitValue;
|
|
566
569
|
writeValue(val: number | null): void;
|