simpo-component-library 2.1.20 → 2.1.21
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/input-fields/input-fields.component.mjs +18 -8
- package/esm2022/lib/sections/registration-form/registration-form.component.mjs +8 -6
- package/esm2022/lib/styles/types.mjs +1 -1
- package/fesm2022/simpo-component-library.mjs +23 -11
- package/fesm2022/simpo-component-library.mjs.map +1 -1
- package/lib/components/input-fields/input-fields.component.d.ts +4 -2
- package/lib/styles/types.d.ts +1 -1
- package/package.json +1 -1
- package/simpo-component-library-2.1.21.tgz +0 -0
- package/simpo-component-library-2.1.20.tgz +0 -0
@@ -1,6 +1,7 @@
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
1
|
+
import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
export declare class InputFieldsComponent implements OnChanges {
|
4
|
+
private elementRef;
|
4
5
|
feild: any;
|
5
6
|
opacity: number | undefined;
|
6
7
|
bgColor?: string;
|
@@ -9,7 +10,7 @@ export declare class InputFieldsComponent implements OnChanges {
|
|
9
10
|
colorCode: string;
|
10
11
|
selectedDropdown: string | null;
|
11
12
|
enteredValue: string | null;
|
12
|
-
constructor();
|
13
|
+
constructor(elementRef: ElementRef);
|
13
14
|
ngOnChanges(changes: SimpleChanges): void;
|
14
15
|
handleMoneyInput(event: any): void;
|
15
16
|
get getTextColor(): "#FFF" | "#000";
|
@@ -17,6 +18,7 @@ export declare class InputFieldsComponent implements OnChanges {
|
|
17
18
|
padZero(str: string, length: number): string;
|
18
19
|
generateColorBasedOnNumber(number: number): string;
|
19
20
|
selectDropdown(value: string): void;
|
21
|
+
handleOutsideClick(event: MouseEvent): void;
|
20
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputFieldsComponent, never>;
|
21
23
|
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>;
|
22
24
|
}
|
package/lib/styles/types.d.ts
CHANGED
@@ -15,6 +15,6 @@ export type SOCIAL_ICON_SIZE = 'large' | 'medium' | 'small';
|
|
15
15
|
export type SOCIAL_ICON_SHAPE = 'circle' | 'square' | 'rounded';
|
16
16
|
export type SOCIAL_ICON_TYPE = 'solid' | 'outline';
|
17
17
|
export type SITE_NAME_LOGo = 'custom' | 'same as header';
|
18
|
-
export type INPUT_FIELDS_TYPE = "text" | "number" | "desc" | "password" | "checkbox" | "option" | "money" | "rating" | "dropdown" | "address" | "email" | "date";
|
18
|
+
export type INPUT_FIELDS_TYPE = "text" | "number" | "desc" | "password" | "checkbox" | "option" | "money" | "rating" | "dropdown" | "address" | "email" | "date" | "radioButton";
|
19
19
|
export type MAP_STYLE = 'Streets' | 'Outdoors' | 'Light' | 'Dark' | 'Satellite' | 'Satellite_street' | 'navigation_day' | 'navigation_night';
|
20
20
|
export type BANNER_TRANSITION = 'Horizontal' | 'Animated';
|
package/package.json
CHANGED
Binary file
|
Binary file
|