tickera-angular-components 0.0.1-dev.107 → 0.0.1-dev.108

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/i18n/en.json CHANGED
@@ -124,7 +124,8 @@
124
124
  "itemType": {
125
125
  "PRODUCT": "Product",
126
126
  "TICKET": "Ticket",
127
- "GIFT_BOND": "Gift bond"
127
+ "GIFT_BOND": "Gift bond",
128
+ "CORPORATE_BOND": "Corporate bond"
128
129
  },
129
130
  "discountTypes": {
130
131
  "gift_bond": "Product",
package/i18n/es.json CHANGED
@@ -124,7 +124,8 @@
124
124
  "itemType": {
125
125
  "PRODUCT": "Producto",
126
126
  "TICKET": "Entrada",
127
- "GIFT_BOND": "Bono de regalo"
127
+ "GIFT_BOND": "Bono de regalo",
128
+ "CORPORATE_BOND": "Bono corporativo"
128
129
  },
129
130
  "discountTypes": {
130
131
  "gift_bond": "Bono de regalo",
package/index.d.ts CHANGED
@@ -427,7 +427,8 @@ interface BreadcrumbStep {
427
427
  declare enum OrderItemType {
428
428
  TICKET = "TICKET",
429
429
  PRODUCT = "PRODUCT",
430
- GIFT_BOND = "GIFT_BOND"
430
+ GIFT_BOND = "GIFT_BOND",
431
+ CORPORATE_BOND = "CORPORATE_BOND"
431
432
  }
432
433
 
433
434
  declare enum OrderStatus {
@@ -3611,11 +3612,13 @@ declare class OrderItemsComponent {
3611
3612
  protected get products(): Order['order_items'];
3612
3613
  protected get tickets(): Order['order_items'];
3613
3614
  protected get giftBonds(): Order['order_items'];
3615
+ protected get corporateBonds(): Order['order_items'];
3614
3616
  protected get showActionColumn(): boolean;
3615
3617
  protected itemTotal(quantity: number, price: number): number;
3616
3618
  protected hasDiscount(): boolean;
3617
3619
  protected get totals(): {
3618
3620
  giftBonds: number;
3621
+ corporateBonds: number;
3619
3622
  products: number;
3620
3623
  tickets: number;
3621
3624
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tickera-angular-components",
3
- "version": "0.0.1-dev.107",
3
+ "version": "0.0.1-dev.108",
4
4
  "description": "Angular 20 standalone component library for Tickera backoffice system",
5
5
  "license": "MIT",
6
6
  "repository": {