simpo-component-library 3.2.77 → 3.2.79

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 (28) hide show
  1. package/esm2022/lib/elements/below-image-card/below-image-card.component.mjs +3 -3
  2. package/esm2022/lib/elements/covering-image-card/covering-image-card.component.mjs +3 -3
  3. package/esm2022/lib/elements/top-of-image-card/top-of-image-card.component.mjs +3 -3
  4. package/esm2022/lib/sections/appointment-form/appointment-form.component.mjs +3 -3
  5. package/esm2022/lib/sections/banner-carousel/banner-carousel.component.mjs +3 -3
  6. package/esm2022/lib/sections/banner-grid-section/banner-grid-section.component.mjs +3 -3
  7. package/esm2022/lib/sections/carousel-banner/carousel-banner.component.mjs +7 -8
  8. package/esm2022/lib/sections/footer-section/footer-section.component.mjs +3 -3
  9. package/esm2022/lib/sections/header-section/header-section.component.mjs +3 -3
  10. package/esm2022/lib/sections/header-text/header-text.component.mjs +3 -3
  11. package/esm2022/lib/sections/image-section/image-section.component.mjs +3 -3
  12. package/esm2022/lib/sections/logo-showcase/logo-showcase.component.mjs +3 -3
  13. package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +3 -3
  14. package/esm2022/lib/sections/text-image-section/text-image-section.component.mjs +3 -3
  15. package/esm2022/lib/sections/text-section/text-section.component.mjs +3 -3
  16. package/esm2022/lib/styles/style.model.mjs +1 -1
  17. package/esm2022/lib/styles/types.mjs +1 -1
  18. package/fesm2022/simpo-component-library.mjs +30 -30
  19. package/fesm2022/simpo-component-library.mjs.map +1 -1
  20. package/lib/directive/background-directive.d.ts +1 -1
  21. package/lib/directive/button-directive.directive.d.ts +1 -1
  22. package/lib/directive/color.directive.d.ts +1 -1
  23. package/lib/sections/pricing-section/pricing-section.component.d.ts +1 -1
  24. package/lib/styles/style.model.d.ts +4 -4
  25. package/lib/styles/types.d.ts +1 -0
  26. package/package.json +1 -1
  27. package/simpo-component-library-3.2.79.tgz +0 -0
  28. package/simpo-component-library-3.2.77.tgz +0 -0
@@ -11,7 +11,7 @@ export declare class BackgroundDirective implements OnChanges {
11
11
  constructor(el: ElementRef, eventService: EventsService);
12
12
  ngOnDestroy(): void;
13
13
  ngOnChanges(change: SimpleChanges): void;
14
- getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
14
+ getTextColor(bgColor: string): "#ffffff" | "#000000" | "#ffffff;";
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<BackgroundDirective, never>;
16
16
  static ɵdir: i0.ɵɵDirectiveDeclaration<BackgroundDirective, "[simpoBackground]", never, { "simpoBackground": { "alias": "simpoBackground"; "required": false; }; "scrollValue": { "alias": "scrollValue"; "required": false; }; }, {}, never, never, true, never>;
17
17
  }
@@ -16,7 +16,7 @@ export declare class ButtonDirectiveDirective implements OnChanges {
16
16
  applyButtonStyleChanges(): void;
17
17
  applyButtonType(style: ButtonStyleModel, backgroundInfo?: BackgroundModel): void;
18
18
  applyButtonShape(style: ButtonStyleModel): void;
19
- getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
19
+ getTextColor(bgColor: string): "#ffffff" | "#000000" | "#ffffff;";
20
20
  buttonStyleSubscription?: Subscription;
21
21
  buttonStyleChangeCheck(): void;
22
22
  changeButtonStyle(id: any, style: ButtonStyleModel, backgroundInfo: BackgroundModel): void;
@@ -12,7 +12,7 @@ export declare class ColorDirective implements OnChanges {
12
12
  ngOnDestroy(): void;
13
13
  applyColor(): void;
14
14
  bgColorChangeCheck(): void;
15
- getTextColor(): "#000000" | "#ffffff" | "#ffffff;";
15
+ getTextColor(): "#ffffff" | "#000000" | "#ffffff;";
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<ColorDirective, never>;
17
17
  static ɵdir: i0.ɵɵDirectiveDeclaration<ColorDirective, "[simpoColor]", never, { "bgColor": { "alias": "simpoColor"; "required": false; }; }, {}, never, never, true, never>;
18
18
  }
@@ -17,7 +17,7 @@ export declare class PricingSectionComponent extends BaseSection {
17
17
  style?: PricingSectionStylesModel;
18
18
  constructor(_eventService: EventsService);
19
19
  ngOnInit(): void;
20
- getTextColor(): "#000000" | "#ffffff";
20
+ getTextColor(): "#ffffff" | "#000000";
21
21
  get headingSpace(): SPACING;
22
22
  editSection(): void;
23
23
  redirectTo(): void;
@@ -1,5 +1,5 @@
1
- import { AlignContent, Corners, DeviderType, GradientDirection, ImageFit, ImageRatio, OverlayValue, RedirectionLinkType, SPACING, TEXT_SIZE, TextPosition } from '.';
2
- import { ALIGN, ANIMATION_DIRECTION, ANIMATION_SPEED, BUTTON_SHAPE, BUTTON_TYPE, CARD_SIZE, FIT, LAYOUTPOSITION, LINK_TYPE, SPACING_TYPE, CONTENTPOSITION, BORDER_DIRECTION, BACKGROUND_TYPE } from './types';
1
+ import { AlignContent, Corners, DeviderType, ImageFit, ImageRatio, OverlayValue, RedirectionLinkType, SPACING, TEXT_SIZE, TextPosition } from '.';
2
+ import { ALIGN, ANIMATION_DIRECTION, ANIMATION_SPEED, BUTTON_SHAPE, BUTTON_TYPE, CARD_SIZE, FIT, LAYOUTPOSITION, LINK_TYPE, SPACING_TYPE, CONTENTPOSITION, BORDER_DIRECTION, BACKGROUND_TYPE, GRADIENT_DIRECTION } from './types';
3
3
  export interface SpacingModel {
4
4
  top: SPACING_TYPE;
5
5
  bottom: SPACING_TYPE;
@@ -57,10 +57,10 @@ export interface BackgroundModel {
57
57
  overlay?: OverlayValue;
58
58
  backgroundType: BACKGROUND_TYPE;
59
59
  secondaryAccentColor: string;
60
- gradientDirection: GradientDirection;
60
+ gradientDirection: GRADIENT_DIRECTION;
61
61
  accentBackgroundType: BACKGROUND_TYPE;
62
62
  secondaryColor: string;
63
- backgroundGradientDirection: GradientDirection;
63
+ backgroundGradientDirection: GRADIENT_DIRECTION;
64
64
  }
65
65
  export interface AnimationModel {
66
66
  type: ANIMATION_DIRECTION;
@@ -19,3 +19,4 @@ export type INPUT_FIELDS_TYPE = "text" | "number" | "desc" | "password" | "check
19
19
  export type MAP_STYLE = 'Streets' | 'Outdoors' | 'Light' | 'Dark' | 'Satellite' | 'Satellite_street' | 'navigation_day' | 'navigation_night';
20
20
  export type BANNER_TRANSITION = 'Horizontal' | 'Animated';
21
21
  export type BACKGROUND_TYPE = 'Solid' | 'Gradient';
22
+ export type GRADIENT_DIRECTION = 'DOWN' | 'RIGHT' | 'DIAGONAL_RIGHT' | 'DIAGONAL_LEFT';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpo-component-library",
3
- "version": "3.2.77",
3
+ "version": "3.2.79",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.2.0",
6
6
  "@angular/core": "^17.2.0",
Binary file