tent-lib 0.0.80 → 0.0.82

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.
@@ -6,7 +6,6 @@ export declare class OfferComponent {
6
6
  private readonly sanitizer;
7
7
  image: string;
8
8
  title: string;
9
- description: string;
10
9
  price: string;
11
10
  priceLabel: string;
12
11
  currency: string;
@@ -16,5 +15,5 @@ export declare class OfferComponent {
16
15
  get getImage(): SafeStyle;
17
16
  constructor(sanitizer: DomSanitizer);
18
17
  static ɵfac: i0.ɵɵFactoryDeclaration<OfferComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<OfferComponent, "tent-offer", never, { "image": { "alias": "image"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "price": { "alias": "price"; "required": false; }; "priceLabel": { "alias": "priceLabel"; "required": false; }; "currency": { "alias": "currency"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "badgePrice": { "alias": "badgePrice"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, {}, never, never, true, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<OfferComponent, "tent-offer", never, { "image": { "alias": "image"; "required": false; }; "title": { "alias": "title"; "required": false; }; "price": { "alias": "price"; "required": false; }; "priceLabel": { "alias": "priceLabel"; "required": false; }; "currency": { "alias": "currency"; "required": false; }; "badge": { "alias": "badge"; "required": false; }; "badgePrice": { "alias": "badgePrice"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; }, {}, never, never, true, never>;
20
19
  }
@@ -0,0 +1,9 @@
1
+ import { OfferI } from '../../../interfaces/core/offer.interface';
2
+ import * as i0 from "@angular/core";
3
+ export declare class OfferListComponent {
4
+ collapsed1: boolean;
5
+ toggleCollapse1(): void;
6
+ offer: OfferI;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<OfferListComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<OfferListComponent, "tent-offer-list", never, {}, {}, never, never, true, never>;
9
+ }
@@ -3,7 +3,6 @@ import { ButtonI } from '../atomic/button.interface';
3
3
  export interface OfferI {
4
4
  image: string;
5
5
  title: string;
6
- description: string;
7
6
  price: string;
8
7
  priceLabel: string;
9
8
  currency: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tent-lib",
3
- "version": "0.0.80",
3
+ "version": "0.0.82",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.0.0",
6
6
  "@angular/core": "^17.0.0",
package/public-api.d.ts CHANGED
@@ -53,6 +53,7 @@ export * from './lib/components/core/module-404/module-404.component';
53
53
  export * from './lib/components/core/module-google-maps/module-google-maps.component';
54
54
  export * from './lib/components/core/module-search/module-search.component';
55
55
  export * from './lib/components/core/offer/offer.component';
56
+ export * from './lib/components/core/offer-list/offer-list.component';
56
57
  export * from './lib/components/core/offer-details/offer-details.component';
57
58
  export * from './lib/components/core/registration/registration.component';
58
59
  export * from './lib/components/core/services-details/services-details.component';