simpo-component-library 1.5.25 → 1.5.26
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/esm2022/lib/ecommerce/sections/featured-category/featured-collection.component.mjs +100 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/simpo-component-library.mjs +79 -1
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/ecommerce/sections/featured-category/featured-collection.component.d.ts +29 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/simpo-component-library-1.5.26.tgz +0 -0
@@ -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
|
+
}
|
package/package.json
CHANGED
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/directive/animation-directive';
|
Binary file
|