simpo-component-library 0.7.3 → 0.7.4
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/sections/image-carousel-section/image-carousel-section.component.mjs +2 -1
- package/esm2022/lib/services/events.service.mjs +3 -1
- package/esm2022/lib/styles/index.mjs +16 -1
- package/esm2022/lib/styles/types.mjs +1 -1
- package/fesm2022/simpo-component-library.mjs +19 -1
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/directive/background-directive.d.ts +1 -1
- package/lib/directive/button-directive.directive.d.ts +1 -1
- package/lib/directive/color.directive.d.ts +1 -1
- package/lib/services/events.service.d.ts +2 -0
- package/lib/styles/index.d.ts +14 -0
- package/lib/styles/types.d.ts +1 -0
- package/package.json +1 -1
- package/simpo-component-library-0.7.4.tgz +0 -0
- package/simpo-component-library-0.7.3.tgz +0 -0
|
@@ -10,7 +10,7 @@ export declare class BackgroundDirective implements OnChanges {
|
|
|
10
10
|
constructor(el: ElementRef, eventService: EventsService);
|
|
11
11
|
ngOnDestroy(): void;
|
|
12
12
|
ngOnChanges(change: SimpleChanges): void;
|
|
13
|
-
getTextColor(bgColor: string): "#
|
|
13
|
+
getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<BackgroundDirective, never>;
|
|
15
15
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BackgroundDirective, "[simpoBackground]", never, { "simpoBackground": { "alias": "simpoBackground"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
16
|
}
|
|
@@ -14,7 +14,7 @@ export declare class ButtonDirectiveDirective implements OnChanges {
|
|
|
14
14
|
applyButtonStyleChanges(): void;
|
|
15
15
|
applyButtonType(style: ButtonStyleModel, color: string): void;
|
|
16
16
|
applyButtonShape(style: ButtonStyleModel): void;
|
|
17
|
-
getTextColor(bgColor: string): "#
|
|
17
|
+
getTextColor(bgColor: string): "#000000" | "#ffffff" | "#ffffff;";
|
|
18
18
|
buttonStyleSubscription?: Subscription;
|
|
19
19
|
buttonStyleChangeCheck(): void;
|
|
20
20
|
changeButtonStyle(id: any, style: ButtonStyleModel, bgColor: string): 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(): "#
|
|
15
|
+
getTextColor(): "#000000" | "#ffffff" | "#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
|
}
|
|
@@ -26,6 +26,8 @@ export declare class EventsService {
|
|
|
26
26
|
postionLayoutChangeChecks: EventEmitter<unknown>;
|
|
27
27
|
contentAlignmentChangeCheck: EventEmitter<unknown>;
|
|
28
28
|
objectPositionChangeCheck: EventEmitter<unknown>;
|
|
29
|
+
locationChangeCheck: EventEmitter<unknown>;
|
|
30
|
+
mapStyleChangeCheck: EventEmitter<unknown>;
|
|
29
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventsService, never>;
|
|
30
32
|
static ɵprov: i0.ɵɵInjectableDeclaration<EventsService>;
|
|
31
33
|
}
|
package/lib/styles/index.d.ts
CHANGED
|
@@ -61,6 +61,16 @@ export declare const animation: {
|
|
|
61
61
|
fast: string;
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
|
+
export declare const mapStyle: {
|
|
65
|
+
Streets: string;
|
|
66
|
+
Outdoors: string;
|
|
67
|
+
Light: string;
|
|
68
|
+
Dark: string;
|
|
69
|
+
Satellite: string;
|
|
70
|
+
Satellite_street: string;
|
|
71
|
+
navigation_day: string;
|
|
72
|
+
navigation_night: string;
|
|
73
|
+
};
|
|
64
74
|
export declare const contentAlignment: {
|
|
65
75
|
top: string;
|
|
66
76
|
center: string;
|
|
@@ -128,3 +138,7 @@ export declare enum HeaderButtonStyle {
|
|
|
128
138
|
SQUARE_SUBTLE = "Square subtle",
|
|
129
139
|
SQUARE_BOLD = "Square bold"
|
|
130
140
|
}
|
|
141
|
+
export declare enum MapType {
|
|
142
|
+
INLINE_MAP = "Inline map",
|
|
143
|
+
BACKGROUND_MAP = "Background map"
|
|
144
|
+
}
|
package/lib/styles/types.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ export type SOCIAL_ICON_SHAPE = 'circle' | 'square' | 'rounded';
|
|
|
15
15
|
export type SOCIAL_ICON_TYPE = 'solid' | 'outline';
|
|
16
16
|
export type SITE_NAME_LOGo = 'custom' | 'same as header';
|
|
17
17
|
export type INPUT_FIELDS_TYPE = "text" | "number" | "desc" | "password" | "checkbox" | "option" | "money" | "rating" | "dropdown" | "address" | "email";
|
|
18
|
+
export type MAP_STYLE = 'Streets' | 'Outdoors' | 'Light' | 'Dark' | 'Satellite' | 'Satellite_street' | 'navigation_day' | 'navigation_night';
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|