tickera-angular-components 0.0.1-dev.77 → 0.0.1-dev.79
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/index.d.ts
CHANGED
|
@@ -1011,6 +1011,7 @@ interface GiftBond extends Auditable {
|
|
|
1011
1011
|
description?: string;
|
|
1012
1012
|
status: GiftBondStatus;
|
|
1013
1013
|
value: number;
|
|
1014
|
+
page_content?: string;
|
|
1014
1015
|
images?: GiftBondImage[];
|
|
1015
1016
|
}
|
|
1016
1017
|
|
|
@@ -2504,7 +2505,8 @@ declare class FormEditorComponent implements ControlValueAccessor, OnInit, OnDes
|
|
|
2504
2505
|
onChange: any;
|
|
2505
2506
|
onTouched: any;
|
|
2506
2507
|
private subscription;
|
|
2507
|
-
|
|
2508
|
+
isBrowser: boolean;
|
|
2509
|
+
constructor(ngControl: NgControl, transloco: TranslocoService, platformId: object);
|
|
2508
2510
|
ngOnInit(): void;
|
|
2509
2511
|
ngOnDestroy(): void;
|
|
2510
2512
|
writeValue(value: any): void;
|
|
@@ -2515,7 +2517,7 @@ declare class FormEditorComponent implements ControlValueAccessor, OnInit, OnDes
|
|
|
2515
2517
|
get showError(): boolean;
|
|
2516
2518
|
get errorMessage(): string;
|
|
2517
2519
|
get fieldGroupClasses(): string;
|
|
2518
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormEditorComponent, [{ optional: true; self: true; }, null]>;
|
|
2520
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormEditorComponent, [{ optional: true; self: true; }, null, null]>;
|
|
2519
2521
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormEditorComponent, "form-editor", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "toolbar": { "alias": "toolbar"; "required": false; }; "fieldGroupClass": { "alias": "fieldGroupClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
2520
2522
|
}
|
|
2521
2523
|
|