simpo-component-library 1.6.64 → 1.6.81

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/esm2022/lib/directive/spacing-horizontal.directive.mjs +13 -3
  2. package/esm2022/lib/ecommerce/sections/address/address.component.mjs +13 -6
  3. package/esm2022/lib/ecommerce/sections/authentication-required/authentication-required.component.mjs +11 -0
  4. package/esm2022/lib/ecommerce/sections/cart/cart.component.mjs +3 -3
  5. package/esm2022/lib/ecommerce/sections/featured-category/featured-category.component.mjs +3 -3
  6. package/esm2022/lib/ecommerce/sections/featured-category/featured-collection.component.mjs +3 -3
  7. package/esm2022/lib/ecommerce/sections/order-details/order-details.component.mjs +3 -3
  8. package/esm2022/lib/ecommerce/sections/product-desc/product-desc.component.mjs +3 -3
  9. package/esm2022/lib/ecommerce/sections/product-list/product-list.component.mjs +3 -3
  10. package/esm2022/lib/ecommerce/sections/whislist/whislist.component.mjs +3 -3
  11. package/esm2022/lib/sections/carousel-banner/carousel-banner.component.mjs +4 -4
  12. package/esm2022/lib/sections/faq-section/faq-section.component.mjs +3 -3
  13. package/esm2022/lib/sections/image-section/image-section.component.mjs +15 -7
  14. package/esm2022/lib/sections/image-section/image-section.model.mjs +1 -1
  15. package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +3 -3
  16. package/esm2022/lib/sections/text-image-section/text-image-section.component.mjs +7 -3
  17. package/esm2022/lib/sections/text-image-section/text-image-section.model.mjs +1 -1
  18. package/esm2022/lib/styles/style.model.mjs +1 -1
  19. package/esm2022/public-api.mjs +2 -1
  20. package/fesm2022/simpo-component-library.mjs +71 -34
  21. package/fesm2022/simpo-component-library.mjs.map +1 -1
  22. package/lib/ecommerce/sections/authentication-required/authentication-required.component.d.ts +5 -0
  23. package/lib/sections/image-section/image-section.component.d.ts +1 -0
  24. package/lib/sections/image-section/image-section.model.d.ts +7 -1
  25. package/lib/sections/text-image-section/text-image-section.component.d.ts +1 -0
  26. package/lib/sections/text-image-section/text-image-section.model.d.ts +2 -0
  27. package/lib/styles/style.model.d.ts +1 -0
  28. package/package.json +1 -1
  29. package/public-api.d.ts +1 -0
  30. package/simpo-component-library-1.6.81.tgz +0 -0
  31. package/simpo-component-library-1.6.62.tgz +0 -0
  32. package/simpo-component-library-1.6.64.tgz +0 -0
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AuthenticationRequiredComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationRequiredComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuthenticationRequiredComponent, "simpo-authentication-required", never, {}, {}, never, never, true, never>;
5
+ }
@@ -15,6 +15,7 @@ export declare class ImageSectionComponent extends BaseSection {
15
15
  style?: imageSectionStylesModel;
16
16
  constructor(_eventService: EventsService);
17
17
  ngOnInit(): void;
18
+ get canMergeNavbar(): boolean | undefined;
18
19
  editSection(): void;
19
20
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageSectionComponent, never>;
20
21
  static ɵcmp: i0.ɵɵComponentDeclaration<ImageSectionComponent, "simpo-image-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, never, true, never>;
@@ -1,4 +1,5 @@
1
- import { Image, ImageStyle, InputTextModel, StylesModel } from "./../../styles/style.model";
1
+ import { ActionModel, Image, ImageStyle, InputTextModel, StylesModel, PositionLayoutModal } from "./../../styles/style.model";
2
+ import { AlignContent } from "./../../styles/index";
2
3
  import { Corners } from "./../../styles/index";
3
4
  export interface imageSectionModel {
4
5
  id: string;
@@ -6,6 +7,7 @@ export interface imageSectionModel {
6
7
  sectionName: string;
7
8
  content: ImageContentModal;
8
9
  styles: imageSectionStylesModel;
10
+ action: ActionModel;
9
11
  }
10
12
  export interface ImageContentModal {
11
13
  inputText: [InputTextModel];
@@ -15,4 +17,8 @@ export interface imageSectionStylesModel extends StylesModel {
15
17
  fullWidth: boolean;
16
18
  corners: Corners;
17
19
  image: ImageStyle;
20
+ merge?: boolean;
21
+ showText?: boolean;
22
+ contentAlignment: AlignContent;
23
+ positionLayout: PositionLayoutModal;
18
24
  }
@@ -16,6 +16,7 @@ export declare class TextImageSectionComponent extends BaseSection implements On
16
16
  constructor(_eventService: EventsService);
17
17
  ngOnInit(): void;
18
18
  editSection(): void;
19
+ get canMergeNavbar(): boolean | undefined;
19
20
  static ɵfac: i0.ɵɵFactoryDeclaration<TextImageSectionComponent, never>;
20
21
  static ɵcmp: i0.ɵɵComponentDeclaration<TextImageSectionComponent, "simpo-text-image-section", never, { "data": { "alias": "data"; "required": false; }; "index": { "alias": "index"; "required": false; }; "edit": { "alias": "edit"; "required": false; }; "delete": { "alias": "delete"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; }, {}, never, never, true, never>;
21
22
  }
@@ -16,4 +16,6 @@ export interface textModel {
16
16
  export interface TextImageContentModel {
17
17
  inputText: InputTextModel[];
18
18
  image: ImageModel;
19
+ merge?: boolean;
20
+ showImage: boolean;
19
21
  }
@@ -133,6 +133,7 @@ export interface BannerStylesModel {
133
133
  corners: Corners;
134
134
  merge?: boolean;
135
135
  textSize: TextSize;
136
+ showImage: boolean;
136
137
  }
137
138
  export interface InputTextModel {
138
139
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "1.6.64",
3
+ "version": "1.6.81",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
package/public-api.d.ts CHANGED
@@ -44,6 +44,7 @@ export * from './lib/ecommerce/sections/product-category-list/product-category-l
44
44
  export * from './lib/ecommerce/sections/category-product/category-product.component';
45
45
  export * from './lib/ecommerce/sections/featured-category/featured-collection.component';
46
46
  export * from './lib/ecommerce/sections/customer-review/customer-review.component';
47
+ export * from './lib/ecommerce/sections/authentication-required/authentication-required.component';
47
48
  export * from './lib/services/events.service';
48
49
  export * from './lib/services/endUser.service';
49
50
  export * from './lib/services/sanitizeHtml';
Binary file
Binary file