@jooler/jooler-websites-shared 0.0.138 → 0.0.140

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 (25) hide show
  1. package/esm2020/lib/call-to-action-section/call-to-action-section.component.mjs +12 -8
  2. package/esm2020/lib/feature-section-four/feature-section-four.component.mjs +15 -0
  3. package/esm2020/lib/feature-section-one/feature-section-one.component.mjs +23 -0
  4. package/esm2020/lib/feature-section-three/feature-section-three.component.mjs +16 -0
  5. package/esm2020/lib/feature-section-two/feature-section-two.component.mjs +21 -0
  6. package/esm2020/lib/jooler-websites-shared.module.mjs +30 -5
  7. package/esm2020/lib/models/call-to-action-data.model.mjs +2 -3
  8. package/esm2020/lib/models/cta-cards.model.mjs +2 -0
  9. package/esm2020/lib/vertical-side-tabs/vertical-side-tabs.component.mjs +37 -0
  10. package/esm2020/public-api.mjs +6 -2
  11. package/fesm2015/jooler-websites-shared.mjs +153 -43
  12. package/fesm2015/jooler-websites-shared.mjs.map +1 -1
  13. package/fesm2020/jooler-websites-shared.mjs +153 -43
  14. package/fesm2020/jooler-websites-shared.mjs.map +1 -1
  15. package/lib/call-to-action-section/call-to-action-section.component.d.ts +4 -4
  16. package/lib/feature-section-four/feature-section-four.component.d.ts +6 -0
  17. package/lib/feature-section-one/feature-section-one.component.d.ts +11 -0
  18. package/lib/feature-section-three/feature-section-three.component.d.ts +6 -0
  19. package/lib/feature-section-two/feature-section-two.component.d.ts +9 -0
  20. package/lib/jooler-websites-shared.module.d.ts +15 -10
  21. package/lib/models/call-to-action-data.model.d.ts +16 -7
  22. package/lib/models/cta-cards.model.d.ts +7 -0
  23. package/lib/vertical-side-tabs/vertical-side-tabs.component.d.ts +14 -0
  24. package/package.json +1 -4
  25. package/public-api.d.ts +5 -1
@@ -1,14 +1,14 @@
1
- import { OnInit } from '@angular/core';
2
1
  import { CallToActionSectionData } from '../models/call-to-action-data.model';
3
2
  import { Router } from '@angular/router';
4
3
  import * as i0 from "@angular/core";
5
- export declare class CallToActionSectionComponent implements OnInit {
4
+ export declare class CallToActionSectionComponent {
6
5
  private _Router;
7
6
  sectionContent: CallToActionSectionData;
8
7
  titleOnRightSide: boolean;
8
+ imageBg: boolean;
9
+ isBoxWithCard: boolean;
9
10
  constructor(_Router: Router);
10
- ngOnInit(): void;
11
11
  onClickGetStarted(route: any): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<CallToActionSectionComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<CallToActionSectionComponent, "call-to-action-section", never, { "sectionContent": "sectionContent"; "titleOnRightSide": "titleOnRightSide"; }, {}, never, never, false>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<CallToActionSectionComponent, "scall-to-action-section", never, { "sectionContent": "sectionContent"; "titleOnRightSide": "titleOnRightSide"; "imageBg": "imageBg"; "isBoxWithCard": "isBoxWithCard"; }, {}, never, never, false>;
14
14
  }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FeatureSectionFourComponent {
3
+ sectionContent: any[];
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureSectionFourComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureSectionFourComponent, "feature-section-four", never, { "sectionContent": "sectionContent"; }, {}, never, never, false>;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { BreakpointObserver } from '@angular/cdk/layout';
2
+ import { StepperOrientation } from '@angular/cdk/stepper';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FeatureSectionOneComponent {
6
+ sectionContent: any;
7
+ stepperOrientation: Observable<StepperOrientation>;
8
+ constructor(breakpointObserver: BreakpointObserver);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureSectionOneComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureSectionOneComponent, "feature-section-one", never, { "sectionContent": "sectionContent"; }, {}, never, never, false>;
11
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FeatureSectionThreeComponent {
3
+ sectionContent: any[];
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureSectionThreeComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureSectionThreeComponent, "feature-section-three", never, { "sectionContent": "sectionContent"; }, {}, never, never, false>;
6
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FeatureSectionTwoComponent {
3
+ sectionContent: any;
4
+ tabContent: any;
5
+ constructor();
6
+ tabChanged(tabContent: any): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureSectionTwoComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureSectionTwoComponent, "feature-section-two", never, { "sectionContent": "sectionContent"; }, {}, never, never, false>;
9
+ }
@@ -26,17 +26,22 @@ import * as i24 from "./value-props-section/value-props-section.component";
26
26
  import * as i25 from "./cta-section-style-three/cta-section-style-three.component";
27
27
  import * as i26 from "./header-section-one/header-section-one.component";
28
28
  import * as i27 from "./custom-tooltip/custom-tooltip.component";
29
- import * as i28 from "@fortawesome/angular-fontawesome";
30
- import * as i29 from "@angular/common";
31
- import * as i30 from "@jooler/app-material";
32
- import * as i31 from "@jooler/font-awesome-shared";
33
- import * as i32 from "primeng/galleria";
34
- import * as i33 from "primeng/carousel";
35
- import * as i34 from "@angular/forms";
36
- import * as i35 from "@ng-select/ng-select";
37
- import * as i36 from "@angular/material/tooltip";
29
+ import * as i28 from "./feature-section-one/feature-section-one.component";
30
+ import * as i29 from "./feature-section-two/feature-section-two.component";
31
+ import * as i30 from "./feature-section-three/feature-section-three.component";
32
+ import * as i31 from "./feature-section-four/feature-section-four.component";
33
+ import * as i32 from "./vertical-side-tabs/vertical-side-tabs.component";
34
+ import * as i33 from "@fortawesome/angular-fontawesome";
35
+ import * as i34 from "@angular/common";
36
+ import * as i35 from "@jooler/app-material";
37
+ import * as i36 from "@jooler/font-awesome-shared";
38
+ import * as i37 from "primeng/galleria";
39
+ import * as i38 from "primeng/carousel";
40
+ import * as i39 from "@angular/forms";
41
+ import * as i40 from "@ng-select/ng-select";
42
+ import * as i41 from "@angular/material/tooltip";
38
43
  export declare class JoolerWebsitesSharedModule {
39
44
  static ɵfac: i0.ɵɵFactoryDeclaration<JoolerWebsitesSharedModule, never>;
40
- static ɵmod: i0.ɵɵNgModuleDeclaration<JoolerWebsitesSharedModule, [typeof i1.SocialMediaIconsComponent, typeof i2.ComingSoonComponent, typeof i3.AchievementsComponent, typeof i4.CallToActionSectionComponent, typeof i5.GetStartedCTAComponent, typeof i6.ImageGalleryModal, typeof i7.PageSectionStyleTenComponent, typeof i8.PageSectionStyleThirteenComponent, typeof i9.PricingPlansComponent, typeof i10.SectionTitleComponent, typeof i11.SuccessMessageDialogComponent, typeof i12.TeamComponent, typeof i13.ValuesComponent, typeof i14.OurClientsComponent, typeof i15.OurClientListingComponent, typeof i16.PageSectionWithMultipleCardsComponent, typeof i17.CallToActionSectionTwoComponent, typeof i18.CtaSectionStyleFourComponent, typeof i19.ContactUsPageComponent, typeof i20.ChooseCountryWithFlagComponent, typeof i21.PageSectionStyleThreeComponent, typeof i22.FaqCategoryListingComponent, typeof i23.FaqListingComponent, typeof i24.ValuePropsSectionComponent, typeof i25.CtaSectionStyleThreeComponent, typeof i26.HeaderSectionOneComponent, typeof i27.CustomTooltipComponent], [typeof i28.FontAwesomeModule, typeof i29.CommonModule, typeof i30.AppMaterialModule, typeof i31.FontAwesomeSharedModule, typeof i32.GalleriaModule, typeof i33.CarouselModule, typeof i34.ReactiveFormsModule, typeof i34.FormsModule, typeof i35.NgSelectModule, typeof i36.MatTooltipModule], [typeof i28.FontAwesomeModule, typeof i30.AppMaterialModule, typeof i10.SectionTitleComponent, typeof i7.PageSectionStyleTenComponent, typeof i31.FontAwesomeSharedModule, typeof i5.GetStartedCTAComponent, typeof i3.AchievementsComponent, typeof i9.PricingPlansComponent, typeof i8.PageSectionStyleThirteenComponent, typeof i6.ImageGalleryModal, typeof i11.SuccessMessageDialogComponent, typeof i4.CallToActionSectionComponent, typeof i12.TeamComponent, typeof i13.ValuesComponent, typeof i14.OurClientsComponent, typeof i15.OurClientListingComponent, typeof i16.PageSectionWithMultipleCardsComponent, typeof i17.CallToActionSectionTwoComponent, typeof i19.ContactUsPageComponent, typeof i20.ChooseCountryWithFlagComponent, typeof i21.PageSectionStyleThreeComponent, typeof i2.ComingSoonComponent, typeof i1.SocialMediaIconsComponent, typeof i36.MatTooltipModule, typeof i22.FaqCategoryListingComponent, typeof i23.FaqListingComponent, typeof i24.ValuePropsSectionComponent, typeof i18.CtaSectionStyleFourComponent, typeof i25.CtaSectionStyleThreeComponent, typeof i26.HeaderSectionOneComponent, typeof i27.CustomTooltipComponent]>;
45
+ static ɵmod: i0.ɵɵNgModuleDeclaration<JoolerWebsitesSharedModule, [typeof i1.SocialMediaIconsComponent, typeof i2.ComingSoonComponent, typeof i3.AchievementsComponent, typeof i4.CallToActionSectionComponent, typeof i5.GetStartedCTAComponent, typeof i6.ImageGalleryModal, typeof i7.PageSectionStyleTenComponent, typeof i8.PageSectionStyleThirteenComponent, typeof i9.PricingPlansComponent, typeof i10.SectionTitleComponent, typeof i11.SuccessMessageDialogComponent, typeof i12.TeamComponent, typeof i13.ValuesComponent, typeof i14.OurClientsComponent, typeof i15.OurClientListingComponent, typeof i16.PageSectionWithMultipleCardsComponent, typeof i17.CallToActionSectionTwoComponent, typeof i18.CtaSectionStyleFourComponent, typeof i19.ContactUsPageComponent, typeof i20.ChooseCountryWithFlagComponent, typeof i21.PageSectionStyleThreeComponent, typeof i22.FaqCategoryListingComponent, typeof i23.FaqListingComponent, typeof i24.ValuePropsSectionComponent, typeof i25.CtaSectionStyleThreeComponent, typeof i26.HeaderSectionOneComponent, typeof i27.CustomTooltipComponent, typeof i28.FeatureSectionOneComponent, typeof i29.FeatureSectionTwoComponent, typeof i30.FeatureSectionThreeComponent, typeof i31.FeatureSectionFourComponent, typeof i32.VerticalSideTabsComponent], [typeof i33.FontAwesomeModule, typeof i34.CommonModule, typeof i35.AppMaterialModule, typeof i36.FontAwesomeSharedModule, typeof i37.GalleriaModule, typeof i38.CarouselModule, typeof i39.ReactiveFormsModule, typeof i39.FormsModule, typeof i40.NgSelectModule, typeof i41.MatTooltipModule], [typeof i33.FontAwesomeModule, typeof i35.AppMaterialModule, typeof i10.SectionTitleComponent, typeof i7.PageSectionStyleTenComponent, typeof i36.FontAwesomeSharedModule, typeof i5.GetStartedCTAComponent, typeof i3.AchievementsComponent, typeof i9.PricingPlansComponent, typeof i8.PageSectionStyleThirteenComponent, typeof i6.ImageGalleryModal, typeof i11.SuccessMessageDialogComponent, typeof i4.CallToActionSectionComponent, typeof i12.TeamComponent, typeof i13.ValuesComponent, typeof i14.OurClientsComponent, typeof i15.OurClientListingComponent, typeof i16.PageSectionWithMultipleCardsComponent, typeof i17.CallToActionSectionTwoComponent, typeof i19.ContactUsPageComponent, typeof i20.ChooseCountryWithFlagComponent, typeof i21.PageSectionStyleThreeComponent, typeof i2.ComingSoonComponent, typeof i1.SocialMediaIconsComponent, typeof i41.MatTooltipModule, typeof i22.FaqCategoryListingComponent, typeof i23.FaqListingComponent, typeof i24.ValuePropsSectionComponent, typeof i18.CtaSectionStyleFourComponent, typeof i25.CtaSectionStyleThreeComponent, typeof i26.HeaderSectionOneComponent, typeof i27.CustomTooltipComponent, typeof i28.FeatureSectionOneComponent, typeof i29.FeatureSectionTwoComponent, typeof i30.FeatureSectionThreeComponent, typeof i31.FeatureSectionFourComponent, typeof i32.VerticalSideTabsComponent]>;
41
46
  static ɵinj: i0.ɵɵInjectorDeclaration<JoolerWebsitesSharedModule>;
42
47
  }
@@ -1,8 +1,17 @@
1
1
  import { ImageSectionAction } from "./image-section-action.model";
2
- import { SectionTitle } from "./section-title.model";
3
- export declare class CallToActionSectionData {
4
- sectionTitle: SectionTitle;
5
- headCta?: string;
6
- descriptionCta?: string;
7
- button: ImageSectionAction;
8
- }
2
+ import { CtaCards } from "./cta-cards.model";
3
+ export declare type CallToActionSectionData = {
4
+ title: string;
5
+ subtitle: string;
6
+ bgImage: string;
7
+ bgColor: undefined;
8
+ buttons: ImageSectionAction[];
9
+ ctaCards: CtaCards[];
10
+ } | {
11
+ title: string;
12
+ subtitle: string;
13
+ bgImage: undefined;
14
+ bgColor: string;
15
+ buttons: ImageSectionAction[];
16
+ ctaCards: CtaCards[];
17
+ };
@@ -0,0 +1,7 @@
1
+ import { ImageSectionAction } from "./image-section-action.model";
2
+ export interface CtaCards {
3
+ image: string;
4
+ title: string;
5
+ description: string;
6
+ button: ImageSectionAction;
7
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class VerticalSideTabsComponent implements OnInit {
4
+ panelOpenState: boolean;
5
+ tabs: any;
6
+ selectedOption: boolean[];
7
+ tabChanged: EventEmitter<any>;
8
+ items: any[];
9
+ constructor();
10
+ ngOnInit(): void;
11
+ changeTab(index: number): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<VerticalSideTabsComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<VerticalSideTabsComponent, "vertical-side-tabs", never, { "tabs": "tabs"; "selectedOption": "selectedOption"; "items": "items"; }, { "tabChanged": "tabChanged"; }, never, never, false>;
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jooler/jooler-websites-shared",
3
- "version": "0.0.138",
3
+ "version": "0.0.140",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=13.1.0",
6
6
  "@angular/core": ">=13.1.0"
@@ -40,9 +40,6 @@
40
40
  "type": "git",
41
41
  "url": "git+https://github.com/HenryHamamji/erp-shared-library.git"
42
42
  },
43
- "keywords": [
44
- "Angular"
45
- ],
46
43
  "author": "Mohammad Ali Jarjoumah",
47
44
  "license": "UNLICENSED",
48
45
  "bugs": {
package/public-api.d.ts CHANGED
@@ -18,7 +18,6 @@ export * from './lib/models/call-to-action-data.model';
18
18
  export * from './lib/call-to-action-section/call-to-action-section.component';
19
19
  export * from './lib/models/image-section-action.model';
20
20
  export * from './lib/models/image-section.model';
21
- export * from './lib/models/page-section-action.model';
22
21
  export * from './lib/models/team-member.model';
23
22
  export * from './lib/team/team.component';
24
23
  export * from './lib/models/team-section.model';
@@ -61,3 +60,8 @@ export * from './lib/models/cta-one-type.model';
61
60
  export * from './lib/models/header-section-style-one.model';
62
61
  export * from './lib/header-section-one/header-section-one.component';
63
62
  export * from './lib/custom-tooltip/custom-tooltip.component';
63
+ export * from './lib/feature-section-one/feature-section-one.component';
64
+ export * from './lib/feature-section-two/feature-section-two.component';
65
+ export * from './lib/feature-section-three/feature-section-three.component';
66
+ export * from './lib/feature-section-four/feature-section-four.component';
67
+ export * from './lib/vertical-side-tabs/vertical-side-tabs.component';