@jooler/jooler-websites-shared 0.0.158 → 0.0.160

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.
@@ -0,0 +1,5 @@
1
+ import { SectionTitle } from "./section-title.model";
2
+ export interface ImageWithContent {
3
+ sectionTitle: SectionTitle;
4
+ image: string;
5
+ }
@@ -0,0 +1,7 @@
1
+ import { PageSectionAction } from "@jooler/jooler-websites-shared";
2
+ import { SectionTitle } from "./section-title.model";
3
+ export interface PageSectionStyleThree {
4
+ image: string;
5
+ sectionTitle: SectionTitle;
6
+ button: PageSectionAction;
7
+ }
@@ -0,0 +1,6 @@
1
+ import { ImageWithContent } from "./image-with-content.model";
2
+ export interface VerticalSideTab {
3
+ title: string;
4
+ iconName: any;
5
+ tabContent: ImageWithContent;
6
+ }
@@ -1,9 +1,10 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
+ import { PageSectionStyleThree } from '../models/page-section-style-three.model';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class PageSectionStyleThreeComponent implements OnInit {
5
6
  private _Router;
6
- sectionContent: any[];
7
+ sectionContent: PageSectionStyleThree[];
7
8
  constructor(_Router: Router);
8
9
  ngOnInit(): void;
9
10
  onClickValuePropButton(route: any): void;
@@ -1,14 +1,14 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
+ import { VerticalSideTab } from '../models/vertical-side-tab.model';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class VerticalSideTabsComponent implements OnInit {
4
5
  panelOpenState: boolean;
5
- tabs: any;
6
+ tabs: VerticalSideTab[];
6
7
  selectedOption: boolean[];
7
8
  tabChanged: EventEmitter<any>;
8
- items: any[];
9
9
  constructor();
10
10
  ngOnInit(): void;
11
11
  changeTab(index: number): void;
12
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>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<VerticalSideTabsComponent, "vertical-side-tabs", never, { "tabs": "tabs"; }, { "tabChanged": "tabChanged"; }, never, never, false>;
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jooler/jooler-websites-shared",
3
- "version": "0.0.158",
3
+ "version": "0.0.160",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=13.1.0",
6
6
  "@angular/core": ">=13.1.0"