simpo-component-library 1.5.39 → 1.5.41
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/directive/container-alignment.directive.mjs +3 -2
- package/esm2022/lib/ecommerce/sections/category-product/category-product.component.mjs +1 -3
- package/esm2022/lib/ecommerce/sections/featured-category/featured-category.component.mjs +11 -4
- package/esm2022/lib/ecommerce/sections/featured-category/featured-collection.component.mjs +11 -6
- package/esm2022/lib/ecommerce/sections/featured-products/featured-products.component.mjs +3 -3
- package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +5 -3
- package/esm2022/lib/ecommerce/sections/product-list/product-list.modal.mjs +1 -1
- package/fesm2022/simpo-component-library.mjs +67 -59
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/featured-category/featured-category.component.d.ts +2 -0
- package/lib/ecommerce/sections/featured-category/featured-collection.component.d.ts +2 -0
- package/lib/ecommerce/sections/product-list/product-list.component.d.ts +2 -0
- package/lib/ecommerce/sections/product-list/product-list.modal.d.ts +2 -1
- package/package.json +1 -1
- package/simpo-component-library-1.5.40.tgz +0 -0
- package/simpo-component-library-1.5.41.tgz +0 -0
@@ -4,6 +4,7 @@ import { FeaturedCategoryContentModal, FeaturedCategoryModal, FeaturedCategorySt
|
|
4
4
|
import { Category } from '../../styles/category.modal';
|
5
5
|
import { RestService } from '../../../services/rest.service';
|
6
6
|
import { Router } from '@angular/router';
|
7
|
+
import { LayOutModel } from '../../../styles/style.model';
|
7
8
|
import * as i0 from "@angular/core";
|
8
9
|
export declare class FeaturedCategoryComponent extends BaseSection {
|
9
10
|
private platformId;
|
@@ -24,6 +25,7 @@ export declare class FeaturedCategoryComponent extends BaseSection {
|
|
24
25
|
redirectToListPage(category: string): void;
|
25
26
|
getAllCategories(): void;
|
26
27
|
editSection(): void;
|
28
|
+
get stylesLayout(): LayOutModel;
|
27
29
|
get isMobile(): boolean;
|
28
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeaturedCategoryComponent, never>;
|
29
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<FeaturedCategoryComponent, "simpo-featured-category", 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>;
|
@@ -4,6 +4,7 @@ import { FeaturedCategoryContentModal, FeaturedCategoryModal, FeaturedCategorySt
|
|
4
4
|
import { Category } from '../../styles/category.modal';
|
5
5
|
import { RestService } from '../../../services/rest.service';
|
6
6
|
import { Router } from '@angular/router';
|
7
|
+
import { LayOutModel } from '../../../styles/style.model';
|
7
8
|
import * as i0 from "@angular/core";
|
8
9
|
export declare class FeaturedCollectionComponent extends BaseSection {
|
9
10
|
private readonly router;
|
@@ -22,6 +23,7 @@ export declare class FeaturedCollectionComponent extends BaseSection {
|
|
22
23
|
getSliceParameters(): number[];
|
23
24
|
getCollectionsIds(): void;
|
24
25
|
redirectToListPage(collection: string): void;
|
26
|
+
get stylesLayout(): LayOutModel;
|
25
27
|
editSection(): void;
|
26
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeaturedCollectionComponent, never>;
|
27
29
|
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>;
|
@@ -10,6 +10,7 @@ import { MatBottomSheet } from '@angular/material/bottom-sheet';
|
|
10
10
|
import { MatDialog } from '@angular/material/dialog';
|
11
11
|
import { CartService } from '../../../services/cart.service';
|
12
12
|
import { MenuItem, MessageService } from 'primeng/api';
|
13
|
+
import { ProductCardTheme } from '../../../styles/index';
|
13
14
|
import * as i0 from "@angular/core";
|
14
15
|
interface BaseModel {
|
15
16
|
option: string;
|
@@ -62,6 +63,7 @@ export declare class ProductListComponent extends BaseSection {
|
|
62
63
|
size: number;
|
63
64
|
searchTxt: string;
|
64
65
|
filterLoading: boolean;
|
66
|
+
theme: typeof ProductCardTheme;
|
65
67
|
ngOnInit(): void;
|
66
68
|
filterByCategoryCollectionParam(qCategories: any, qCollections: any): void;
|
67
69
|
getAllCategories(): void;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { ProductCardTheme } from "../../../styles/index";
|
1
2
|
import { ActionModel, AnimationModel, BackgroundModel, LayOutModel } from "../../../styles/style.model";
|
2
3
|
export interface ProductListModal {
|
3
4
|
id: string;
|
@@ -15,7 +16,7 @@ export interface ProductListStylesModal {
|
|
15
16
|
maxPrice: number;
|
16
17
|
minPrice: number;
|
17
18
|
animation: AnimationModel;
|
18
|
-
theme:
|
19
|
+
theme: ProductCardTheme;
|
19
20
|
}
|
20
21
|
export interface ProductListContentModal {
|
21
22
|
display: Display;
|
package/package.json
CHANGED
Binary file
|
Binary file
|