simpo-component-library 0.5.9 → 0.6.1
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/esm2022/lib/components/input-fields/input-fields.component.mjs +9 -4
- package/esm2022/lib/elements/socia-icons/socia-icons.component.mjs +8 -7
- package/esm2022/lib/elements/text/text.component.mjs +7 -3
- package/esm2022/lib/sections/contact-us/contact-us.component.mjs +24 -11
- package/esm2022/lib/sections/footer-section/footer-section.component.mjs +3 -3
- package/esm2022/lib/sections/image-carousel-section/image-carousel-section.component.mjs +5 -3
- package/esm2022/lib/sections/navbar-section/navbar-section.component.mjs +5 -3
- package/esm2022/lib/sections/text-section/text-section.component.mjs +3 -3
- package/fesm2022/simpo-component-library.mjs +121 -98
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/components/input-fields/input-fields.component.d.ts +3 -1
- package/lib/elements/socia-icons/socia-icons.component.d.ts +2 -1
- package/lib/elements/text/text.component.d.ts +2 -1
- package/lib/sections/contact-us/contact-us.component.d.ts +3 -1
- package/package.json +1 -1
- package/simpo-component-library-0.6.1.tgz +0 -0
- package/simpo-component-library-0.5.9.tgz +0 -0
|
@@ -3,6 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class InputFieldsComponent implements OnChanges {
|
|
4
4
|
feild: any;
|
|
5
5
|
opacity: number | undefined;
|
|
6
|
+
bgColor?: string;
|
|
7
|
+
sectionId?: string;
|
|
6
8
|
ratingHoverIndex: number | null;
|
|
7
9
|
colorCode: string;
|
|
8
10
|
selectedDropdown: string | null;
|
|
@@ -16,5 +18,5 @@ export declare class InputFieldsComponent implements OnChanges {
|
|
|
16
18
|
generateColorBasedOnNumber(number: number): string;
|
|
17
19
|
selectDropdown(value: string): void;
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputFieldsComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputFieldsComponent, "simpo-input-fields", never, { "feild": { "alias": "feild"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; }, {}, never, never, true, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputFieldsComponent, "simpo-input-fields", never, { "feild": { "alias": "feild"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "sectionId": { "alias": "sectionId"; "required": false; }; }, {}, never, never, true, never>;
|
|
20
22
|
}
|
|
@@ -4,11 +4,12 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class SociaIconsComponent implements OnInit {
|
|
5
5
|
socialIconData: any;
|
|
6
6
|
color: any;
|
|
7
|
+
sectionId?: string;
|
|
7
8
|
ChannelType: typeof ChannelType;
|
|
8
9
|
constructor();
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
screenWidth: number;
|
|
11
12
|
getScreenSize(event?: number): void;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SociaIconsComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SociaIconsComponent, "simpo-socia-icons", never, { "socialIconData": { "alias": "socialIconData"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SociaIconsComponent, "simpo-socia-icons", never, { "socialIconData": { "alias": "socialIconData"; "required": false; }; "color": { "alias": "color"; "required": false; }; "sectionId": { "alias": "sectionId"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
15
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class TextElementComponent {
|
|
3
3
|
textData?: string;
|
|
4
|
+
textLabel?: string;
|
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextElementComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextElementComponent, "simpo-text-element", never, { "textData": { "alias": "textData"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextElementComponent, "simpo-text-element", never, { "textData": { "alias": "textData"; "required": false; }; "textLabel": { "alias": "textLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
7
|
}
|
|
@@ -3,10 +3,12 @@ import { ButtonModel } from '../../styles/style.model';
|
|
|
3
3
|
import { EventsService } from './../../services/events.service';
|
|
4
4
|
import { ContactUsContentModel, ContactUsModel, ContactUsStylesModel } from './contact-us.modal';
|
|
5
5
|
import BaseSection from '../BaseSection';
|
|
6
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class ContactUsComponent extends BaseSection implements OnInit {
|
|
8
9
|
private _eventService;
|
|
9
10
|
private platformId;
|
|
11
|
+
private snackBar;
|
|
10
12
|
data?: ContactUsModel;
|
|
11
13
|
index?: number;
|
|
12
14
|
content?: ContactUsContentModel;
|
|
@@ -15,7 +17,7 @@ export declare class ContactUsComponent extends BaseSection implements OnInit {
|
|
|
15
17
|
styles?: ContactUsStylesModel;
|
|
16
18
|
button?: ButtonModel;
|
|
17
19
|
buttonId: string;
|
|
18
|
-
constructor(_eventService: EventsService, platformId: Object);
|
|
20
|
+
constructor(_eventService: EventsService, platformId: Object, snackBar: MatSnackBar);
|
|
19
21
|
ngOnInit(): void;
|
|
20
22
|
screenSize(): void;
|
|
21
23
|
screenWidth: any;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|