simpo-component-library 1.5.27 → 1.5.30

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.
@@ -1,9 +1,9 @@
1
- import { OnInit } from '@angular/core';
1
+ import { ElementRef, OnInit } from '@angular/core';
2
2
  import { CategoryProductContentModal, CategoryProductModal, CategoryProductStylesModel } from './category-product.model';
3
3
  import { RestService } from '../../../services/rest.service';
4
4
  import { EventsService } from '../../../services/events.service';
5
5
  import { Category } from '../../styles/category.modal';
6
- import { ItemVariant, Product } from '../../styles/product.modal';
6
+ import { Product } from '../../styles/product.modal';
7
7
  import { FeaturedProductModal } from '../featured-products/featured-products.modal';
8
8
  import { CartService } from '../../../services/cart.service';
9
9
  import BaseSection from '../../../sections/BaseSection';
@@ -18,9 +18,9 @@ export declare class CategoryProductComponent extends BaseSection implements OnI
18
18
  index?: number;
19
19
  edit?: boolean;
20
20
  delete?: boolean;
21
+ containerRef: ElementRef<HTMLDivElement> | undefined;
21
22
  styles?: CategoryProductStylesModel;
22
23
  content?: CategoryProductContentModal;
23
- categories: any[];
24
24
  selectCategoryId: string | null;
25
25
  categoryList: Category[];
26
26
  private USER_CART;
@@ -28,13 +28,16 @@ export declare class CategoryProductComponent extends BaseSection implements OnI
28
28
  private collectionId;
29
29
  featureProductData: FeaturedProductModal | null;
30
30
  ngOnInit(): void;
31
- getAllCategories(): void;
31
+ ngAfterViewInit(): void;
32
+ getAllCategoriesById(): void;
32
33
  dataList: Product[];
33
34
  selectCategory(categoryId: string): void;
34
- addItemToCart(product: Product, type: 'ADD' | 'SUBSTRACT'): void;
35
- getItemVarient(product: Product, varientId: string): ItemVariant | null;
36
- getPercentage(product: Product): string;
37
- get currency(): string;
35
+ scrollRight(): void;
36
+ scrollLeft(): void;
37
+ showRightArrow: boolean;
38
+ showLeftArrow: boolean;
39
+ isFirstTime: boolean;
40
+ updateArrows(): void;
38
41
  editSection(): void;
39
42
  static ɵfac: i0.ɵɵFactoryDeclaration<CategoryProductComponent, never>;
40
43
  static ɵcmp: i0.ɵɵComponentDeclaration<CategoryProductComponent, "simpo-category-product", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; }, {}, never, never, true, never>;
@@ -13,7 +13,6 @@ export interface CategoryProductContentModal {
13
13
  inputText: InputTextModel[];
14
14
  display: Display;
15
15
  button: string;
16
- collectionId: string;
17
16
  }
18
17
  export interface Display {
19
18
  showHeading: boolean;
@@ -0,0 +1,29 @@
1
+ import { EventsService } from '.././../../services/events.service';
2
+ import BaseSection from '../../../sections/BaseSection';
3
+ import { FeaturedCategoryContentModal, FeaturedCategoryModal, FeaturedCategoryStylesModel } from './featured-category.modal';
4
+ import { Category } from '../../styles/category.modal';
5
+ import { RestService } from '../../../services/rest.service';
6
+ import { Router } from '@angular/router';
7
+ import * as i0 from "@angular/core";
8
+ export declare class FeaturedCollectionComponent extends BaseSection {
9
+ private platformId;
10
+ private readonly router;
11
+ private readonly restService;
12
+ private readonly _eventService;
13
+ data?: FeaturedCategoryModal;
14
+ responseData?: Category[];
15
+ index?: number;
16
+ edit?: boolean;
17
+ delete?: boolean;
18
+ isLoading: boolean;
19
+ content?: FeaturedCategoryContentModal;
20
+ styles?: FeaturedCategoryStylesModel;
21
+ constructor(platformId: Object, router: Router, restService: RestService, _eventService: EventsService);
22
+ ngOnInit(): void;
23
+ getSliceParameters(): number[];
24
+ redirectToListPage(collection: string): void;
25
+ getAllCollections(): void;
26
+ editSection(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeaturedCollectionComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeaturedCollectionComponent, "simpo-featured-collection", never, { "data": { "alias": "data"; "required": false; }; "responseData": { "alias": "responseData"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; }, {}, never, never, true, never>;
29
+ }
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
2
  import BaseSection from '../../../sections/BaseSection';
3
3
  import { RestService } from '../../../services/rest.service';
4
4
  import { Category } from '../../styles/category.modal';
@@ -6,10 +6,12 @@ import { ItemVariant, Product } from '../../styles/product.modal';
6
6
  import { OrderedItems } from '../../styles/OrderedItems.modal';
7
7
  import { CartService } from '../../../services/cart.service';
8
8
  import { CategoryProductModal } from '../category-product/category-product.model';
9
+ import { ActivatedRoute } from '@angular/router';
9
10
  import * as i0 from "@angular/core";
10
- export declare class ProductCategoryListComponent extends BaseSection implements OnInit {
11
+ export declare class ProductCategoryListComponent extends BaseSection implements OnInit, OnDestroy {
11
12
  private readonly restService;
12
13
  private readonly cartService;
14
+ private readonly activatedRoute;
13
15
  responseData?: any[];
14
16
  data?: CategoryProductModal;
15
17
  index?: number;
@@ -19,9 +21,11 @@ export declare class ProductCategoryListComponent extends BaseSection implements
19
21
  productList: Product[];
20
22
  USER_CART: OrderedItems[];
21
23
  selectedCategory: Category | null;
22
- constructor(restService: RestService, cartService: CartService);
24
+ constructor(restService: RestService, cartService: CartService, activatedRoute: ActivatedRoute);
25
+ collectionId: string | null;
23
26
  ngOnInit(): void;
24
- getAllCategories(): void;
27
+ ngOnDestroy(): void;
28
+ getAllCategoriesById(): void;
25
29
  selectCategory(category: Category): void;
26
30
  addItemToCart(product: Product, type: 'ADD' | 'SUBSTRACT'): void;
27
31
  getItemVarient(product: Product, varientId: string): ItemVariant | null;
@@ -0,0 +1,16 @@
1
+ import { ItemVariant, Product } from '../../styles/product.modal';
2
+ import { CartService } from '../../../services/cart.service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SmallProductListingComponent {
5
+ private readonly cartService;
6
+ constructor(cartService: CartService);
7
+ private USER_CART;
8
+ product: Product;
9
+ data?: any;
10
+ addItemToCart(product: Product, type: 'ADD' | 'SUBSTRACT'): void;
11
+ getItemVarient(product: Product, varientId: string): ItemVariant | null;
12
+ getPercentage(product: Product): string;
13
+ get currency(): string;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<SmallProductListingComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<SmallProductListingComponent, "simpo-small-product-listing", never, { "product": { "alias": "product"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
16
+ }
@@ -12,6 +12,7 @@ export declare class RestService implements OnDestroy {
12
12
  constructor(http: HttpClient, eventService: EventsService);
13
13
  ngOnDestroy(): void;
14
14
  getFeaturedProduct(collectionId: string | undefined | null): Observable<any>;
15
+ getCategoriesByCollectionId(collectionId: string): Observable<any>;
15
16
  getProductDetails(productId?: string | null): Observable<any>;
16
17
  getAllCategories(): Observable<any>;
17
18
  getAllCollections(): Observable<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "1.5.27",
3
+ "version": "1.5.30",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
package/public-api.d.ts CHANGED
@@ -42,6 +42,7 @@ export * from './lib/ecommerce/sections/verify-payment/verify-payment.component'
42
42
  export * from './lib/ecommerce/sections/verify-payment/verify-payment.component';
43
43
  export * from './lib/ecommerce/sections/product-category-list/product-category-list.component';
44
44
  export * from './lib/ecommerce/sections/category-product/category-product.component';
45
+ export * from './lib/ecommerce/sections/featured-category/featured-collection.component';
45
46
  export * from './lib/services/events.service';
46
47
  export * from './lib/services/endUser.service';
47
48
  export * from './lib/services/sanitizeHtml';
Binary file