@jooler/jooler-websites-shared 0.0.15 → 0.0.17
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/esm2020/lib/achievements/achievements.component.mjs +1 -1
- package/esm2020/lib/call-to-action-section/call-to-action-section.component.mjs +23 -0
- package/esm2020/lib/get-started-cta/get-started-cta.component.mjs +1 -1
- package/esm2020/lib/image-gallery-modal/image-gallery-modal.component.mjs +1 -1
- package/esm2020/lib/jooler-websites-shared.module.mjs +30 -18
- package/esm2020/lib/models/achievement.model.mjs +3 -0
- package/esm2020/lib/models/achievements.model.mjs +3 -0
- package/esm2020/lib/models/call-to-action-data.model.mjs +3 -0
- package/esm2020/lib/models/gallery-items-properties.model.mjs +2 -0
- package/esm2020/lib/models/get-started-cta.model.mjs +3 -0
- package/esm2020/lib/models/image-section-action.model.mjs +3 -0
- package/esm2020/lib/models/image-section.model.mjs +3 -0
- package/esm2020/lib/models/page-section-action.model.mjs +3 -0
- package/esm2020/lib/{page-section-style-thirteen → models}/page-section-style-thirteen.model.mjs +1 -1
- package/esm2020/lib/models/page-section.model.mjs +3 -0
- package/esm2020/lib/models/service-plan.model.mjs +3 -0
- package/esm2020/lib/models/team-member.model.mjs +3 -0
- package/esm2020/lib/models/team-section.model.mjs +3 -0
- package/esm2020/lib/page-section-style-ten/page-section-style-ten.component.mjs +3 -3
- package/esm2020/lib/page-section-style-thirteen/page-section-style-thirteen.component.mjs +2 -2
- package/esm2020/lib/pricing-plans/pricing-plans.component.mjs +1 -1
- package/esm2020/lib/team/team.component.mjs +50 -0
- package/esm2020/public-api.mjs +16 -8
- package/fesm2015/jooler-websites-shared.mjs +108 -20
- package/fesm2015/jooler-websites-shared.mjs.map +1 -1
- package/fesm2020/jooler-websites-shared.mjs +108 -20
- package/fesm2020/jooler-websites-shared.mjs.map +1 -1
- package/lib/achievements/achievements.component.d.ts +1 -1
- package/lib/call-to-action-section/call-to-action-section.component.d.ts +13 -0
- package/lib/get-started-cta/get-started-cta.component.d.ts +1 -1
- package/lib/image-gallery-modal/image-gallery-modal.component.d.ts +1 -1
- package/lib/jooler-websites-shared.module.d.ts +14 -11
- package/lib/models/call-to-action-data.model.d.ts +7 -0
- package/lib/models/image-section-action.model.d.ts +7 -0
- package/lib/models/image-section.model.d.ts +12 -0
- package/lib/models/team-member.model.d.ts +6 -0
- package/lib/models/team-section.model.d.ts +7 -0
- package/lib/page-section-style-ten/page-section-style-ten.component.d.ts +1 -1
- package/lib/page-section-style-thirteen/page-section-style-thirteen.component.d.ts +1 -1
- package/lib/pricing-plans/pricing-plans.component.d.ts +1 -1
- package/lib/team/team.component.d.ts +18 -0
- package/package.json +1 -1
- package/public-api.d.ts +15 -7
- package/esm2020/lib/achievements/achievement.model.mjs +0 -3
- package/esm2020/lib/achievements/achievements.model.mjs +0 -3
- package/esm2020/lib/get-started-cta/get-started-cta.model.mjs +0 -3
- package/esm2020/lib/image-gallery-modal/gallery-items-properties.model.mjs +0 -2
- package/esm2020/lib/page-section-style-ten/page-section-action.model.mjs +0 -3
- package/esm2020/lib/page-section-style-ten/page-section.model.mjs +0 -3
- package/esm2020/lib/pricing-plans/service-plan.model.mjs +0 -3
- /package/lib/{achievements → models}/achievement.model.d.ts +0 -0
- /package/lib/{achievements → models}/achievements.model.d.ts +0 -0
- /package/lib/{image-gallery-modal → models}/gallery-items-properties.model.d.ts +0 -0
- /package/lib/{get-started-cta → models}/get-started-cta.model.d.ts +0 -0
- /package/lib/{page-section-style-ten → models}/page-section-action.model.d.ts +0 -0
- /package/lib/{page-section-style-thirteen → models}/page-section-style-thirteen.model.d.ts +0 -0
- /package/lib/{page-section-style-ten → models}/page-section.model.d.ts +0 -0
- /package/lib/{pricing-plans → models}/service-plan.model.d.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { PageSection } from '
|
|
2
|
+
import { PageSection } from './../models/page-section.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PageSectionStyleTenComponent implements OnInit {
|
|
5
5
|
data: any | PageSection;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { PageSectionStyleThirteen } from '
|
|
2
|
+
import { PageSectionStyleThirteen } from '../models/page-section-style-thirteen.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PageSectionStyleThirteenComponent implements OnInit {
|
|
5
5
|
showedImage: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ServicePlan } from '
|
|
2
|
+
import { ServicePlan } from '../models/service-plan.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PricingPlansComponent implements OnInit {
|
|
5
5
|
servicePlans: ServicePlan[];
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { TeamSection } from '../models/team-section.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TeamComponent implements OnInit {
|
|
7
|
+
private _router;
|
|
8
|
+
private breakpointObserver;
|
|
9
|
+
teamSection: TeamSection;
|
|
10
|
+
isTabletSize: boolean;
|
|
11
|
+
membersToShow: number;
|
|
12
|
+
scrollMemberNumber: number;
|
|
13
|
+
constructor(_router: Router, breakpointObserver: BreakpointObserver);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
onAddNewMember(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TeamComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TeamComponent, "team", never, {}, {}, never, never, false>;
|
|
18
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
export * from './lib/jooler-websites-shared.module';
|
|
2
2
|
export * from './lib/section-title/section-title.component';
|
|
3
3
|
export * from './lib/page-section-style-ten/page-section-style-ten.component';
|
|
4
|
-
export * from './lib/
|
|
5
|
-
export * from './lib/
|
|
4
|
+
export * from './lib/models/page-section.model';
|
|
5
|
+
export * from './lib/models/page-section-action.model';
|
|
6
6
|
export * from './lib/get-started-cta/get-started-cta.component';
|
|
7
7
|
export * from './lib/achievements/achievements.component';
|
|
8
|
-
export * from './lib/
|
|
9
|
-
export * from './lib/
|
|
10
|
-
export * from './lib/
|
|
8
|
+
export * from './lib/models/achievements.model';
|
|
9
|
+
export * from './lib/models/achievement.model';
|
|
10
|
+
export * from './lib/models/service-plan.model';
|
|
11
11
|
export * from './lib/pricing-plans/pricing-plans.component';
|
|
12
12
|
export * from './lib/page-section-style-thirteen/page-section-style-thirteen.component';
|
|
13
|
-
export * from './lib/
|
|
13
|
+
export * from './lib/models/page-section-style-thirteen.model';
|
|
14
14
|
export * from './lib/image-gallery-modal/image-gallery-modal.component';
|
|
15
|
-
export * from './lib/
|
|
15
|
+
export * from './lib/models/gallery-items-properties.model';
|
|
16
16
|
export * from './lib/success-message-dialog/success-message-dialog.component';
|
|
17
|
+
export * from './lib/models/call-to-action-data.model';
|
|
18
|
+
export * from './lib/call-to-action-section/call-to-action-section.component';
|
|
19
|
+
export * from './lib/models/image-section-action.model';
|
|
20
|
+
export * from './lib/models/image-section.model';
|
|
21
|
+
export * from './lib/models/page-section-action.model';
|
|
22
|
+
export * from './lib/models/team-member.model';
|
|
23
|
+
export * from './lib/models/team-section.model';
|
|
24
|
+
export * from './lib/team/team.component';
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export class Achievement {
|
|
2
|
-
}
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNoaWV2ZW1lbnQubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9qb29sZXItd2Vic2l0ZXMtc2hhcmVkL3NyYy9saWIvYWNoaWV2ZW1lbnRzL2FjaGlldmVtZW50Lm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE1BQU0sT0FBTyxXQUFXO0NBR3ZCIiwic291cmNlc0NvbnRlbnQiOlsiXG5leHBvcnQgY2xhc3MgQWNoaWV2ZW1lbnQge1xuICAgIG51bWJlcjogc3RyaW5nO1xuICAgIHN1YnRpdGxlOiBzdHJpbmdcbn0iXX0=
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export class Achievements {
|
|
2
|
-
}
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNoaWV2ZW1lbnRzLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvam9vbGVyLXdlYnNpdGVzLXNoYXJlZC9zcmMvbGliL2FjaGlldmVtZW50cy9hY2hpZXZlbWVudHMubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxPQUFPLFlBQVk7Q0FJeEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBY2hpZXZlbWVudCB9IGZyb20gXCIuL2FjaGlldmVtZW50Lm1vZGVsXCI7XG5cbmV4cG9ydCBjbGFzcyBBY2hpZXZlbWVudHMge1xuICAgIHRpdGxlOnN0cmluZztcbiAgICBzdWJ0aXRsZSA6IHN0cmluZztcbiAgICBhY2hpZXZlbWVudHM6IEFjaGlldmVtZW50W107XG59Il19
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export class GetStartedCta {
|
|
2
|
-
}
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0LXN0YXJ0ZWQtY3RhLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvam9vbGVyLXdlYnNpdGVzLXNoYXJlZC9zcmMvbGliL2dldC1zdGFydGVkLWN0YS9nZXQtc3RhcnRlZC1jdGEubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLGFBQWE7Q0FLekIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgR2V0U3RhcnRlZEN0YSB7XG4gICAgdGl0bGU6IHN0cmluZztcbiAgICBkZXNjcmlwdGlvbjogc3RyaW5nO1xuICAgIGxvZ286IHN0cmluZztcbiAgICBjYWxsVG9BY3Rpb25UZXh0OiBzdHJpbmc7XG59Il19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2FsbGVyeS1pdGVtcy1wcm9wZXJ0aWVzLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvam9vbGVyLXdlYnNpdGVzLXNoYXJlZC9zcmMvbGliL2ltYWdlLWdhbGxlcnktbW9kYWwvZ2FsbGVyeS1pdGVtcy1wcm9wZXJ0aWVzLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEdhbGxlcnlJdGVtc1Byb3BlcnRpZXMge1xuICAgIGltYWdlU3JjOiBzdHJpbmc7XG4gICAgaW1hZ2VBbHQ6IHN0cmluZztcbn0iXX0=
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export class PageSectionAction {
|
|
2
|
-
}
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1zZWN0aW9uLWFjdGlvbi5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2xpYi9wYWdlLXNlY3Rpb24tc3R5bGUtdGVuL3BhZ2Utc2VjdGlvbi1hY3Rpb24ubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxPQUFPLGlCQUFpQjtDQUk3QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBQYWdlU2VjdGlvbkFjdGlvbiB7XG4gICAgaWQ6IG51bWJlcjtcbiAgICByb3V0ZTogc3RyaW5nO1xuICAgIGxhYmVsOiBzdHJpbmc7XG59Il19
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export class PageSection {
|
|
2
|
-
}
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1zZWN0aW9uLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvam9vbGVyLXdlYnNpdGVzLXNoYXJlZC9zcmMvbGliL3BhZ2Utc2VjdGlvbi1zdHlsZS10ZW4vcGFnZS1zZWN0aW9uLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxXQUFXO0NBU3ZCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUGFnZVNlY3Rpb25BY3Rpb24gfSBmcm9tICcuL3BhZ2Utc2VjdGlvbi1hY3Rpb24ubW9kZWwnO1xuXG5leHBvcnQgY2xhc3MgUGFnZVNlY3Rpb24ge1xuICAgIGlkOiBudW1iZXI7XG4gICAgaWNvbjogc3RyaW5nO1xuICAgIHRpdGxlOiBzdHJpbmc7XG4gICAgZGVzY3JpcHRpb246IHN0cmluZztcbiAgICBpbWFnZTogc3RyaW5nO1xuICAgIHRpdGxlSW1hZ2U6IHN0cmluZztcbiAgICBzdWJ0aXRsZTogc3RyaW5nO1xuICAgIGFjdGlvbnM6IFBhZ2VTZWN0aW9uQWN0aW9uW107XG59Il19
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export class ServicePlan {
|
|
2
|
-
}
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VydmljZS1wbGFuLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvam9vbGVyLXdlYnNpdGVzLXNoYXJlZC9zcmMvbGliL3ByaWNpbmctcGxhbnMvc2VydmljZS1wbGFuLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyxXQUFXO0NBUXZCIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIFNlcnZpY2VQbGFuIHtcbiAgICBpZDogbnVtYmVyO1xuICAgIG5hbWU6IHN0cmluZztcbiAgICBkZXNjcmlwdGlvbjogc3RyaW5nO1xuICAgIHByaWNlOiBudW1iZXI7XG4gICAgZnJlcXVlbmN5OiBzdHJpbmc7XG4gICAgaXNDaG9zZW46IGJvb2xlYW47XG4gICAgcGVya3M6IHN0cmluZ1tdO1xufSJdfQ==
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|