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.
Files changed (48) hide show
  1. package/esm2022/lib/directive/content-fit-directive.mjs +2 -2
  2. package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +61 -0
  3. package/esm2022/lib/ecommerce/sections/cart/cart.modal.mjs +2 -0
  4. package/esm2022/lib/ecommerce/sections/checkout/checkout.component.mjs +57 -0
  5. package/esm2022/lib/ecommerce/sections/checkout/checkout.modal.mjs +2 -0
  6. package/esm2022/lib/ecommerce/sections/featured-category/featured-category.component.mjs +70 -0
  7. package/esm2022/lib/ecommerce/sections/featured-category/featured-category.modal.mjs +2 -0
  8. package/esm2022/lib/ecommerce/sections/featured-products/featured-products.component.mjs +85 -0
  9. package/esm2022/lib/ecommerce/sections/featured-products/featured-products.modal.mjs +2 -0
  10. package/esm2022/lib/ecommerce/sections/pagnination/pagnination.component.mjs +32 -0
  11. package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +94 -0
  12. package/esm2022/lib/ecommerce/sections/product-desc/product-desc.modal.mjs +2 -0
  13. package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +123 -0
  14. package/esm2022/lib/ecommerce/sections/product-list/product-list.modal.mjs +2 -0
  15. package/esm2022/lib/ecommerce/styles/cart.modal.mjs +2 -0
  16. package/esm2022/lib/ecommerce/styles/category.modal.mjs +8 -0
  17. package/esm2022/lib/ecommerce/styles/product.modal.mjs +2 -0
  18. package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +22 -7
  19. package/esm2022/lib/services/events.service.mjs +5 -1
  20. package/esm2022/public-api.mjs +11 -1
  21. package/fesm2022/simpo-component-library.mjs +452 -13
  22. package/fesm2022/simpo-component-library.mjs.map +1 -1
  23. package/lib/directive/background-directive.d.ts +1 -1
  24. package/lib/directive/button-directive.directive.d.ts +1 -1
  25. package/lib/directive/color.directive.d.ts +1 -1
  26. package/lib/ecommerce/sections/cart/cart.component.d.ts +20 -0
  27. package/lib/ecommerce/sections/cart/cart.modal.d.ts +14 -0
  28. package/lib/ecommerce/sections/checkout/checkout.component.d.ts +22 -0
  29. package/lib/ecommerce/sections/checkout/checkout.modal.d.ts +18 -0
  30. package/lib/ecommerce/sections/featured-category/featured-category.component.d.ts +22 -0
  31. package/lib/ecommerce/sections/featured-category/featured-category.modal.d.ts +14 -0
  32. package/lib/ecommerce/sections/featured-products/featured-products.component.d.ts +27 -0
  33. package/lib/ecommerce/sections/featured-products/featured-products.modal.d.ts +27 -0
  34. package/lib/ecommerce/sections/pagnination/pagnination.component.d.ts +13 -0
  35. package/lib/ecommerce/sections/product-desc/product-desc.component.d.ts +32 -0
  36. package/lib/ecommerce/sections/product-desc/product-desc.modal.d.ts +18 -0
  37. package/lib/ecommerce/sections/product-list/product-list.component.d.ts +40 -0
  38. package/lib/ecommerce/sections/product-list/product-list.modal.d.ts +23 -0
  39. package/lib/ecommerce/styles/cart.modal.d.ts +72 -0
  40. package/lib/ecommerce/styles/category.modal.d.ts +14 -0
  41. package/lib/ecommerce/styles/product.modal.d.ts +204 -0
  42. package/lib/sections/navbar-section/navbar-section.component.d.ts +7 -1
  43. package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
  44. package/lib/services/events.service.d.ts +3 -0
  45. package/package.json +1 -1
  46. package/public-api.d.ts +9 -0
  47. package/simpo-component-library-1.2.3.tgz +0 -0
  48. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
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