tickera-angular-components 0.0.1-dev.83 → 0.0.1-dev.85
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
|
@@ -1092,8 +1092,12 @@ interface GiftBondPurchase extends Auditable {
|
|
|
1092
1092
|
expires_at: string;
|
|
1093
1093
|
redeemed_at: string | null;
|
|
1094
1094
|
gift_bond_id: number;
|
|
1095
|
-
|
|
1096
|
-
buyer:
|
|
1095
|
+
buyer_customer_id: number;
|
|
1096
|
+
buyer: Customer;
|
|
1097
|
+
order: Order | null;
|
|
1098
|
+
order_id: number;
|
|
1099
|
+
redemption_order_id: number | null;
|
|
1100
|
+
redemption_order: Order | null;
|
|
1097
1101
|
}
|
|
1098
1102
|
|
|
1099
1103
|
interface ValidateGiftBondResponse {
|
|
@@ -2369,13 +2373,17 @@ declare class TextExpandableComponent implements OnChanges {
|
|
|
2369
2373
|
text: string;
|
|
2370
2374
|
maxLength: number;
|
|
2371
2375
|
fontSize: TextFontSize;
|
|
2376
|
+
allowHtml: boolean;
|
|
2377
|
+
maxLines?: number;
|
|
2372
2378
|
protected expanded: boolean;
|
|
2373
2379
|
ngOnChanges(): void;
|
|
2380
|
+
get plainText(): string;
|
|
2374
2381
|
get truncated(): boolean;
|
|
2375
2382
|
get visibleText(): string;
|
|
2383
|
+
get lines(): number;
|
|
2376
2384
|
toggleExpanded(): void;
|
|
2377
2385
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextExpandableComponent, never>;
|
|
2378
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextExpandableComponent, "text-expandable", never, { "text": { "alias": "text"; "required": true; }; "maxLength": { "alias": "maxLength"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; }, {}, never, never, true, never>;
|
|
2386
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextExpandableComponent, "text-expandable", never, { "text": { "alias": "text"; "required": true; }; "maxLength": { "alias": "maxLength"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "allowHtml": { "alias": "allowHtml"; "required": false; }; "maxLines": { "alias": "maxLines"; "required": false; }; }, {}, never, never, true, never>;
|
|
2379
2387
|
}
|
|
2380
2388
|
|
|
2381
2389
|
declare class ShowCardComponent {
|