simpo-component-library 1.2.1 → 1.2.3
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/directive/content-fit-directive.mjs +2 -2
- package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +61 -0
- package/esm2022/lib/ecommerce/sections/cart/cart.modal.mjs +2 -0
- package/esm2022/lib/ecommerce/sections/checkout/checkout.component.mjs +57 -0
- package/esm2022/lib/ecommerce/sections/checkout/checkout.modal.mjs +2 -0
- package/esm2022/lib/ecommerce/sections/featured-category/featured-category.component.mjs +70 -0
- package/esm2022/lib/ecommerce/sections/featured-category/featured-category.modal.mjs +2 -0
- package/esm2022/lib/ecommerce/sections/featured-products/featured-products.component.mjs +85 -0
- package/esm2022/lib/ecommerce/sections/featured-products/featured-products.modal.mjs +2 -0
- package/esm2022/lib/ecommerce/sections/pagnination/pagnination.component.mjs +32 -0
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +94 -0
- package/esm2022/lib/ecommerce/sections/product-desc/product-desc.modal.mjs +2 -0
- package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +123 -0
- package/esm2022/lib/ecommerce/sections/product-list/product-list.modal.mjs +2 -0
- package/esm2022/lib/ecommerce/styles/cart.modal.mjs +2 -0
- package/esm2022/lib/ecommerce/styles/category.modal.mjs +8 -0
- package/esm2022/lib/ecommerce/styles/product.modal.mjs +2 -0
- package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +22 -7
- package/esm2022/lib/services/events.service.mjs +5 -1
- package/esm2022/public-api.mjs +11 -1
- package/fesm2022/simpo-component-library.mjs +452 -13
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/directive/background-directive.d.ts +1 -1
- package/lib/directive/button-directive.directive.d.ts +1 -1
- package/lib/directive/color.directive.d.ts +1 -1
- package/lib/ecommerce/sections/cart/cart.component.d.ts +20 -0
- package/lib/ecommerce/sections/cart/cart.modal.d.ts +14 -0
- package/lib/ecommerce/sections/checkout/checkout.component.d.ts +22 -0
- package/lib/ecommerce/sections/checkout/checkout.modal.d.ts +18 -0
- package/lib/ecommerce/sections/featured-category/featured-category.component.d.ts +22 -0
- package/lib/ecommerce/sections/featured-category/featured-category.modal.d.ts +14 -0
- package/lib/ecommerce/sections/featured-products/featured-products.component.d.ts +27 -0
- package/lib/ecommerce/sections/featured-products/featured-products.modal.d.ts +27 -0
- package/lib/ecommerce/sections/pagnination/pagnination.component.d.ts +13 -0
- package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +32 -0
- package/lib/ecommerce/sections/product-desc/product-desc.modal.d.ts +18 -0
- package/lib/ecommerce/sections/product-list/product-list.component.d.ts +40 -0
- package/lib/ecommerce/sections/product-list/product-list.modal.d.ts +23 -0
- package/lib/ecommerce/styles/cart.modal.d.ts +72 -0
- package/lib/ecommerce/styles/category.modal.d.ts +14 -0
- package/lib/ecommerce/styles/product.modal.d.ts +204 -0
- package/lib/sections/navbar-section/navbar-section.component.d.ts +7 -1
- package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
- package/lib/services/events.service.d.ts +3 -0
- package/package.json +1 -1
- package/public-api.d.ts +9 -0
- package/simpo-component-library-1.2.3.tgz +0 -0
- package/simpo-component-library-1.2.1.tgz +0 -0
|
@@ -33,6 +33,9 @@ export declare class EventsService {
|
|
|
33
33
|
openBlogListEvent: EventEmitter<unknown>;
|
|
34
34
|
toggleEditorEvent: EventEmitter<boolean>;
|
|
35
35
|
closeEditorEvent: EventEmitter<false>;
|
|
36
|
+
redirectToPage: EventEmitter<unknown>;
|
|
37
|
+
addToCart: EventEmitter<unknown>;
|
|
38
|
+
placeOrder: EventEmitter<unknown>;
|
|
36
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventsService, never>;
|
|
37
40
|
static ɵprov: i0.ɵɵInjectableDeclaration<EventsService>;
|
|
38
41
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -28,6 +28,12 @@ export * from './lib/sections/features-section/features-section.component';
|
|
|
28
28
|
export * from './lib/sections/testimonial-fullwidth/testimonial-fullwidth.component';
|
|
29
29
|
export * from './lib/sections/logo-showcase/logo-showcase.component';
|
|
30
30
|
export * from './lib/sections/banner-carousel/banner-carousel.component';
|
|
31
|
+
export * from './lib/ecommerce/sections/featured-products/featured-products.component';
|
|
32
|
+
export * from './lib/ecommerce/sections/featured-category/featured-category.component';
|
|
33
|
+
export * from './lib/ecommerce/sections/product-desc/product-desc.component';
|
|
34
|
+
export * from './lib/ecommerce/sections/product-list/product-list.component';
|
|
35
|
+
export * from './lib/ecommerce/sections/cart/cart.component';
|
|
36
|
+
export * from './lib/ecommerce/sections/checkout/checkout.component';
|
|
31
37
|
export * from './lib/services/events.service';
|
|
32
38
|
export * from './lib/directive/animation-directive';
|
|
33
39
|
export * from './lib/directive/background-directive';
|
|
@@ -52,3 +58,6 @@ export * from './lib/directive/sticky-directive';
|
|
|
52
58
|
export * from './lib/styles/index';
|
|
53
59
|
export * from './lib/styles/style.model';
|
|
54
60
|
export * from './lib/styles/types';
|
|
61
|
+
export * from './lib/ecommerce/styles/cart.modal';
|
|
62
|
+
export * from './lib/ecommerce/styles/category.modal';
|
|
63
|
+
export * from './lib/ecommerce/styles/product.modal';
|
|
Binary file
|
|
Binary file
|