@paperless/angular 2.0.1-beta.220 → 2.0.1-beta.222
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/esm2020/lib/stencil/components.mjs +5 -5
- package/fesm2015/paperless-angular.mjs +4 -4
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +4 -4
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/stencil/components.d.ts +5 -1
- package/package.json +1 -1
|
@@ -304,7 +304,7 @@ export declare class PField {
|
|
|
304
304
|
protected el: HTMLPFieldElement;
|
|
305
305
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
306
306
|
static ɵfac: i0.ɵɵFactoryDeclaration<PField, never>;
|
|
307
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "align": "align"; "autofocus": "autofocus"; "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "id": "id"; "label": "label"; "loading": "loading"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "showOptional": "showOptional"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
307
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PField, "p-field", never, { "addText": "addText"; "align": "align"; "autofocus": "autofocus"; "disabled": "disabled"; "error": "error"; "errorPlacement": "errorPlacement"; "focusMethod": "focusMethod"; "focused": "focused"; "forceShowTooltip": "forceShowTooltip"; "helper": "helper"; "icon": "icon"; "iconFlip": "iconFlip"; "iconPosition": "iconPosition"; "iconRotate": "iconRotate"; "id": "id"; "label": "label"; "loading": "loading"; "optionalTemplate": "optionalTemplate"; "placeholder": "placeholder"; "prefix": "prefix"; "properties": "properties"; "required": "required"; "selectAllOnFocus": "selectAllOnFocus"; "showAddOnEmpty": "showAddOnEmpty"; "showOptional": "showOptional"; "size": "size"; "suffix": "suffix"; "type": "type"; "value": "value"; "variant": "variant"; }, {}, never, ["*"], false, never>;
|
|
308
308
|
}
|
|
309
309
|
export declare interface PField extends Components.PField {
|
|
310
310
|
/**
|
|
@@ -315,6 +315,10 @@ export declare interface PField extends Components.PField {
|
|
|
315
315
|
* Event whenever the input ref changes
|
|
316
316
|
*/
|
|
317
317
|
inputRefChange: EventEmitter<CustomEvent<HTMLInputElement | HTMLTextAreaElement>>;
|
|
318
|
+
/**
|
|
319
|
+
* Event whenever the value changes
|
|
320
|
+
*/
|
|
321
|
+
add: EventEmitter<CustomEvent<void>>;
|
|
318
322
|
}
|
|
319
323
|
export declare class PFieldContainer {
|
|
320
324
|
protected z: NgZone;
|