@bnsights/bbsf-controls 1.0.64 → 1.0.66
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/README.md +24 -8
- package/bnsights-bbsf-controls-1.0.66.tgz +0 -0
- package/bnsights-bbsf-controls.metadata.json +1 -1
- package/bundles/bnsights-bbsf-controls.umd.js +195 -41
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/Shared/Models/CaptchaStyle.js +3 -0
- package/esm2015/lib/Shared/Models/ImageUploadOptions.js +2 -2
- package/esm2015/lib/Shared/Models/Recaptcha.js +6 -0
- package/esm2015/lib/Shared/Models/RecaptchaOptions.js +22 -0
- package/esm2015/lib/Shared/Models/TagsInputOptions.js +2 -2
- package/esm2015/lib/controls/CheckBox/CheckBox.component.js +2 -3
- package/esm2015/lib/controls/DropdownList/DropdownList.component.js +2 -3
- package/esm2015/lib/controls/ImageUpload/ImageUpload.component.js +9 -13
- package/esm2015/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.js +2 -3
- package/esm2015/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.js +2 -3
- package/esm2015/lib/controls/Paging/Paging.component.js +2 -3
- package/esm2015/lib/controls/Recaptcha/Recaptcha.component.js +131 -0
- package/esm2015/lib/controls/Repeater/repeater/repeater.component.js +2 -3
- package/esm2015/lib/controls/Repeater/repeater-item-field/repeater-item-field.component.js +2 -3
- package/esm2015/lib/controls/Repeater/repeater-table/repeater-table.component.js +2 -2
- package/esm2015/lib/controls/TagsInput/TagsInput.component.js +2 -3
- package/esm2015/lib/controls/TextArea/TextArea.component.js +2 -3
- package/esm2015/lib/controls/TextBox/TextBox.component.js +2 -3
- package/esm2015/lib/controls/bbsf-controls.module.js +6 -3
- package/esm2015/public-api.js +4 -1
- package/fesm2015/bnsights-bbsf-controls.js +179 -39
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/lib/Shared/Models/CaptchaStyle.d.ts +7 -0
- package/lib/Shared/Models/Recaptcha.d.ts +6 -0
- package/lib/Shared/Models/RecaptchaOptions.d.ts +18 -0
- package/lib/controls/ImageUpload/ImageUpload.component.d.ts +3 -1
- package/lib/controls/Recaptcha/Recaptcha.component.d.ts +37 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/src/lib/assets/.gitkeep +0 -0
- package/src/lib/assets/Style-rtl.scss +144 -0
- package/src/lib/assets/{Style.css → Style.scss} +114 -84
- package/src/lib/assets/fontawesome/fontawesome.scss +7003 -0
- package/src/lib/assets/fontawesome/fonts/FontAwesome.otf +0 -0
- package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.eot +0 -0
- package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.svg +2671 -0
- package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.ttf +0 -0
- package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.woff +0 -0
- package/src/lib/assets/fontawesome/fonts/fontawesome-webfont.woff2 +0 -0
- package/src/lib/assets/fontawesome/scss/_animated.scss +153 -0
- package/src/lib/assets/fontawesome/scss/_bordered-pulled.scss +20 -0
- package/src/lib/assets/fontawesome/scss/_core.scss +33 -0
- package/src/lib/assets/fontawesome/scss/_fixed-width.scss +7 -0
- package/src/lib/assets/fontawesome/scss/_functions.scss +51 -0
- package/src/lib/assets/fontawesome/scss/_icons.scss +9 -0
- package/src/lib/assets/fontawesome/scss/_list.scss +18 -0
- package/src/lib/assets/fontawesome/scss/_mixins.scss +73 -0
- package/src/lib/assets/fontawesome/scss/_rotated-flipped.scss +31 -0
- package/src/lib/assets/fontawesome/scss/_screen-reader.scss +14 -0
- package/src/lib/assets/fontawesome/scss/_shims.scss +2027 -0
- package/src/lib/assets/fontawesome/scss/_sizing.scss +16 -0
- package/src/lib/assets/fontawesome/scss/_stacked.scss +32 -0
- package/src/lib/assets/fontawesome/scss/_variables.scss +4338 -0
- package/src/lib/assets/fontawesome/scss/brands.scss +30 -0
- package/src/lib/assets/fontawesome/scss/fontawesome.scss +21 -0
- package/src/lib/assets/fontawesome/scss/regular.scss +26 -0
- package/src/lib/assets/fontawesome/scss/solid.scss +26 -0
- package/src/lib/assets/fontawesome/scss/v4-shims.scss +11 -0
- package/src/lib/assets/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/src/lib/assets/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/src/lib/assets/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/src/lib/assets/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/src/lib/assets/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/src/lib/assets/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/src/lib/assets/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/src/lib/assets/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/src/lib/assets/sass/base.scss +164 -0
- package/src/lib/assets/sass/checkbox.scss +40 -0
- package/src/lib/assets/sass/dropdown.scss +148 -0
- package/src/lib/assets/sass/image-upload.scss +107 -0
- package/src/lib/assets/sass/paging.scss +81 -0
- package/src/lib/assets/sass/repeater.scss +74 -0
- package/src/lib/assets/sass/tags-input.scss +92 -0
- package/src/lib/assets/sass/textarea.scss +6 -0
- package/src/lib/assets/sass/variables.scss +9 -0
- package/bnsights-bbsf-controls-1.0.64.tgz +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ForceDirection } from '../Enums/ForceDirection';
|
|
2
|
+
import { ControlOptionsBase } from './ControlOptionsBase';
|
|
3
|
+
import { RecaptchaModel } from './Recaptcha';
|
|
4
|
+
export declare class RecaptchaOptions extends ControlOptionsBase {
|
|
5
|
+
/**To set value to Control */
|
|
6
|
+
Value: RecaptchaModel;
|
|
7
|
+
ForceDirection: ForceDirection;
|
|
8
|
+
/**Prevent AutoComplete of control default value is "on" available values "on" and "off"*/
|
|
9
|
+
AutoComplete: string;
|
|
10
|
+
NoMargin: boolean;
|
|
11
|
+
/**the url of a remote server that supports jsonp calls */
|
|
12
|
+
ActionURL: string;
|
|
13
|
+
BackgroundColorPrimary: string;
|
|
14
|
+
BackgroundColorSecondary: string;
|
|
15
|
+
TextColorPrimary: string;
|
|
16
|
+
TextColorSecondary: string;
|
|
17
|
+
FontSize: number;
|
|
18
|
+
}
|
|
@@ -6,6 +6,7 @@ import { ImageUploadOptions } from '../../Shared/Models/ImageUploadOptions';
|
|
|
6
6
|
import { CropperComponent } from 'angular-cropperjs';
|
|
7
7
|
import { ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
8
8
|
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
9
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
9
10
|
export declare class ImageUploaderComponent implements OnInit {
|
|
10
11
|
private zone;
|
|
11
12
|
private controlUtility;
|
|
@@ -14,6 +15,7 @@ export declare class ImageUploaderComponent implements OnInit {
|
|
|
14
15
|
UtilityService: UtilityService;
|
|
15
16
|
private controlValidationService;
|
|
16
17
|
private globalSettings;
|
|
18
|
+
private modalService;
|
|
17
19
|
static controlContainerstatic: any;
|
|
18
20
|
fileInput: ElementRef;
|
|
19
21
|
files: File[];
|
|
@@ -42,7 +44,7 @@ export declare class ImageUploaderComponent implements OnInit {
|
|
|
42
44
|
validationRules: any[];
|
|
43
45
|
validationRulesasync: any[];
|
|
44
46
|
maxFileSize: number;
|
|
45
|
-
constructor(zone: NgZone, controlUtility: ControlUtility, controlContainer: ControlContainer, ImageUplaoderControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
47
|
+
constructor(zone: NgZone, controlUtility: ControlUtility, controlContainer: ControlContainer, ImageUplaoderControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings, modalService: NgbModal);
|
|
46
48
|
ngOnInit(): void;
|
|
47
49
|
ngAfterViewInit(): void;
|
|
48
50
|
showImageUploader(element: HTMLElement): void;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormGroup, AbstractControl, FormGroupDirective } from '@angular/forms';
|
|
3
|
+
import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
4
|
+
import { ControlValidationService, RequestHandlerService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
5
|
+
import { GlobalSettings } from '../../Shared/services/GlobalSettings.service';
|
|
6
|
+
import { RecaptchaOptions } from '../../Shared/Models/RecaptchaOptions';
|
|
7
|
+
import { RecaptchaModel } from '../../Shared/Models/Recaptcha';
|
|
8
|
+
export declare class RecaptchaComponent implements OnInit {
|
|
9
|
+
private controlUtility;
|
|
10
|
+
private requestHandlerService;
|
|
11
|
+
recaptchaControlHost: FormGroupDirective;
|
|
12
|
+
UtilityService: UtilityService;
|
|
13
|
+
private controlValidationService;
|
|
14
|
+
private globalSettings;
|
|
15
|
+
markAllAsTouched: boolean;
|
|
16
|
+
constructor(controlUtility: ControlUtility, requestHandlerService: RequestHandlerService, recaptchaControlHost: FormGroupDirective, UtilityService: UtilityService, controlValidationService: ControlValidationService, globalSettings: GlobalSettings);
|
|
17
|
+
group: FormGroup;
|
|
18
|
+
options: RecaptchaOptions;
|
|
19
|
+
OnChange: EventEmitter<any>;
|
|
20
|
+
ReCaptchaFormControl: AbstractControl;
|
|
21
|
+
validationRules: any[];
|
|
22
|
+
validationRulesAsync: any[];
|
|
23
|
+
image: string;
|
|
24
|
+
recaptchaModel: RecaptchaModel;
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
loadImage(): void;
|
|
27
|
+
ngAfterViewInit(): void;
|
|
28
|
+
resetError: () => void;
|
|
29
|
+
showGlobalError(): void;
|
|
30
|
+
getErrorValidation(ErrorList: any): string;
|
|
31
|
+
onTextChange(valueText: any): void;
|
|
32
|
+
RemoveRequiredValidation: () => void;
|
|
33
|
+
AddRequiredValidation: () => void;
|
|
34
|
+
RemoveCustomValidation: (CustomValidation: any) => void;
|
|
35
|
+
AddCustomValidation: (CustomValidation: any) => void;
|
|
36
|
+
IsValid: () => void;
|
|
37
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * from './lib/controls/Repeater/repeater/repeater.component';
|
|
|
26
26
|
export * from './lib/controls/Repeater/repeater-table/repeater-table.component';
|
|
27
27
|
export * from './lib/controls/Repeater/repeater-field-builder/repeater-field-builder.component';
|
|
28
28
|
export * from './lib/controls/Repeater/repeater-item-field/repeater-item-field.component';
|
|
29
|
+
export * from './lib/controls/Recaptcha/Recaptcha.component';
|
|
29
30
|
export * from './lib/Shared/services/validationErrorMassage.service';
|
|
30
31
|
export * from './lib/Shared/services/ControlUtility';
|
|
31
32
|
export * from './lib/Shared/services/OnPagingFiltersChange.service';
|
|
@@ -34,6 +35,8 @@ export * from './lib/Shared/services/GlobalSettings.service';
|
|
|
34
35
|
export * from './lib/Shared/services/render-component-service.service';
|
|
35
36
|
export * from './lib/Shared/default_intl';
|
|
36
37
|
export * from './lib/Shared/Models/ControlOptionsBase';
|
|
38
|
+
export * from './lib/Shared/Models/ReCaptchaOptions';
|
|
39
|
+
export * from './lib/Shared/Models/Recaptcha';
|
|
37
40
|
export * from './lib/Shared/Models/MultilingualControlOptionsBase';
|
|
38
41
|
export * from './lib/Shared/Models/CustomValidation';
|
|
39
42
|
export * from './lib/Shared/Models/datePickerOptions';
|
|
File without changes
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
|
|
2
|
+
/*bbsf controls*/
|
|
3
|
+
.bbsf-control.form-group {
|
|
4
|
+
.bbsf-horizontal {
|
|
5
|
+
.bbsf-label {
|
|
6
|
+
margin-left: 1rem;
|
|
7
|
+
margin-right: 0px;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.bbsf-input-container {
|
|
12
|
+
position: relative;
|
|
13
|
+
|
|
14
|
+
&.p-40px {
|
|
15
|
+
input {
|
|
16
|
+
padding-left: 40px;
|
|
17
|
+
padding-right: 1rem;
|
|
18
|
+
|
|
19
|
+
&[dir = "ltr"] {
|
|
20
|
+
padding-left: 1rem !important;
|
|
21
|
+
padding-right: 40px !important;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
/* input with icon*/
|
|
26
|
+
.bbsf-left-icon {
|
|
27
|
+
left: auto;
|
|
28
|
+
right: 0px;
|
|
29
|
+
margin-left: 0 !important;
|
|
30
|
+
margin-right: 1.5rem;
|
|
31
|
+
|
|
32
|
+
+ input {
|
|
33
|
+
padding-right: 3.7rem;
|
|
34
|
+
padding-left: 0rem;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.bbsf-right-icon {
|
|
39
|
+
left: 0px;
|
|
40
|
+
right: auto;
|
|
41
|
+
margin-left: 1.5rem;
|
|
42
|
+
margin-right: 0;
|
|
43
|
+
|
|
44
|
+
+ input {
|
|
45
|
+
padding-right: 0;
|
|
46
|
+
padding-left: 3.7rem;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
//copy to clipboard
|
|
50
|
+
.copy-clipboard {
|
|
51
|
+
left: 0px;
|
|
52
|
+
right: auto;
|
|
53
|
+
border-top-left-radius: $rounded;
|
|
54
|
+
border-bottom-left-radius: $rounded;
|
|
55
|
+
border-top-right-radius: 0px;
|
|
56
|
+
border-bottom-right-radius: 0px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.form-control {
|
|
60
|
+
&[dir = "ltr"] {
|
|
61
|
+
+ .copy-clipboard {
|
|
62
|
+
right: 0px !important;
|
|
63
|
+
left: auto !important;
|
|
64
|
+
border-top-right-radius: $rounded;
|
|
65
|
+
border-bottom-right-radius: $rounded;
|
|
66
|
+
border-top-left-radius: 0px;
|
|
67
|
+
border-bottom-left-radius: 0px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
&.is-invalid {
|
|
72
|
+
background-position: left calc(0.375em + 0.1875rem) center;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
//checkbox
|
|
79
|
+
.bbsf-checkbox {
|
|
80
|
+
.bbsf-input-container {
|
|
81
|
+
.label-subtext-container {
|
|
82
|
+
margin-top: -4px;
|
|
83
|
+
margin-right: 0.55rem;
|
|
84
|
+
margin-left: 0;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
//dropdown
|
|
90
|
+
.bbsf-dropdown {
|
|
91
|
+
|
|
92
|
+
.bbsf-input-container {
|
|
93
|
+
|
|
94
|
+
.form-control {
|
|
95
|
+
&.is-invalid {
|
|
96
|
+
background-position: left calc(0.375em + 2rem) center;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.ng-select-container {
|
|
100
|
+
|
|
101
|
+
.ng-arrow-wrapper {
|
|
102
|
+
margin-right: 10px;
|
|
103
|
+
margin-left: 0px;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.ng-dropdown-panel {
|
|
108
|
+
|
|
109
|
+
.ng-dropdown-panel-items {
|
|
110
|
+
.ng-option {
|
|
111
|
+
&.ng-option-selected:after {
|
|
112
|
+
left: 4px;
|
|
113
|
+
right: 94%;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.ng-select-multiple {
|
|
122
|
+
.ng-value {
|
|
123
|
+
margin-left: .4rem;
|
|
124
|
+
margin-right: 0;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.ng-value-icon {
|
|
128
|
+
margin-left: .2rem;
|
|
129
|
+
margin-right: 0;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
//tags input
|
|
134
|
+
.bbsf-control.form-group.bbsf-tags-input {
|
|
135
|
+
.user-initials {
|
|
136
|
+
margin-left: 10px;
|
|
137
|
+
margin-right: 0px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.tags-input__tag-remove-btn {
|
|
141
|
+
margin-right: 3px;
|
|
142
|
+
margin-left: 0px;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
@import
|
|
4
|
-
@import
|
|
5
|
-
@import
|
|
2
|
+
@import"sass/variables.scss" ;
|
|
3
|
+
@import "sass/base.scss";
|
|
4
|
+
@import"sass/textarea.scss";
|
|
5
|
+
@import"sass/checkbox.scss";
|
|
6
|
+
@import"sass/dropdown.scss";
|
|
7
|
+
@import"sass/image-upload.scss";
|
|
8
|
+
@import"sass/tags-input.scss";
|
|
9
|
+
@import"sass/paging.scss";
|
|
10
|
+
@import"sass/repeater.scss";
|
|
11
|
+
|
|
12
|
+
@import "fontawesome/fontawesome.scss";
|
|
13
|
+
|
|
14
|
+
/*@import'~ng-pick-datetime/assets/style/picker.min.css';*/
|
|
15
|
+
/*@import'~angular2-multiselect-dropdown/themes/default.theme.css';
|
|
6
16
|
@import'~intl-tel-input/build/css/intlTelInput.css';
|
|
7
17
|
@import'~froala-editor/css/froala_editor.pkgd.min.css';
|
|
8
18
|
@import'~@angular/material/prebuilt-themes/deeppurple-amber.css';
|
|
9
|
-
|
|
10
19
|
@import'~froala-editor/css/froala_style.min.css';
|
|
11
20
|
@import'~cropperjs/dist/cropper.css';
|
|
12
21
|
@import'~ngx-toastr/toastr.css';
|
|
13
22
|
@import '~@angular/material/prebuilt-themes/indigo-pink.css';
|
|
23
|
+
@import 'fontawesome/fontawesome.css';
|
|
14
24
|
|
|
15
25
|
.allow-dropdown {
|
|
16
26
|
display: block !important;
|
|
@@ -67,13 +77,13 @@ i.fa.fa-search {
|
|
|
67
77
|
|
|
68
78
|
.dropdown[_nghost-ng-cli-universal-c7] {
|
|
69
79
|
z-index: 10000000 !important;
|
|
70
|
-
}
|
|
80
|
+
}*/
|
|
71
81
|
|
|
72
82
|
|
|
73
83
|
/* [_nghost-ng-cli-universal-c2]{
|
|
74
84
|
overflow: visible !important ;
|
|
75
85
|
} */
|
|
76
|
-
ngx-tags-input {
|
|
86
|
+
/*ngx-tags-input {
|
|
77
87
|
overflow: visible !important;
|
|
78
88
|
}
|
|
79
89
|
|
|
@@ -81,11 +91,11 @@ ngx-tags-input {
|
|
|
81
91
|
display: block !important;
|
|
82
92
|
}
|
|
83
93
|
|
|
84
|
-
typeahead-container {
|
|
94
|
+
typeahead-container {*/
|
|
85
95
|
/* transform: none !important;
|
|
86
96
|
overflow: visible !important;
|
|
87
97
|
width: -webkit-fill-available; */
|
|
88
|
-
}
|
|
98
|
+
/*}
|
|
89
99
|
|
|
90
100
|
typeahead-container.dropdown {
|
|
91
101
|
transform: translate3d(0, 29px, 0px) !important;
|
|
@@ -112,10 +122,10 @@ section.ta-results.list-group {
|
|
|
112
122
|
|
|
113
123
|
.b-auto-complete-textbox .ta-item.list-group-item i {
|
|
114
124
|
display: none !important;
|
|
115
|
-
}
|
|
125
|
+
}*/
|
|
116
126
|
|
|
117
127
|
/* Checkbox Control */
|
|
118
|
-
|
|
128
|
+
/*.b-checkbox .kt-checkbox {
|
|
119
129
|
cursor: inherit;
|
|
120
130
|
}
|
|
121
131
|
|
|
@@ -134,10 +144,10 @@ section.ta-results.list-group {
|
|
|
134
144
|
|
|
135
145
|
.b-checkbox input:disabled ~ span:hover {
|
|
136
146
|
cursor: not-allowed !important;
|
|
137
|
-
}
|
|
147
|
+
}*/
|
|
138
148
|
|
|
139
149
|
/* Toggle Slide Control */
|
|
140
|
-
|
|
150
|
+
/*.b-toggle-slide .mat-slide-toggle.mat-disabled .mat-slide-toggle-label,
|
|
141
151
|
.b-toggle-slide .mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container {
|
|
142
152
|
cursor: not-allowed;
|
|
143
153
|
}
|
|
@@ -149,11 +159,11 @@ section.ta-results.list-group {
|
|
|
149
159
|
.b-toggle-slide .mat-slide-toggle .mat-slide-toggle-thumb {
|
|
150
160
|
background-color: #fff;
|
|
151
161
|
opacity: 1;
|
|
152
|
-
}
|
|
162
|
+
}*/
|
|
153
163
|
|
|
154
164
|
|
|
155
165
|
/* File uplod container */
|
|
156
|
-
|
|
166
|
+
/*.dragndrop {
|
|
157
167
|
padding: 30px;
|
|
158
168
|
border: 3px dashed #ccc;
|
|
159
169
|
font-size: 18px;
|
|
@@ -174,17 +184,7 @@ section.ta-results.list-group {
|
|
|
174
184
|
background-color: rgba(255,234,234,.8);
|
|
175
185
|
}
|
|
176
186
|
|
|
177
|
-
.form-group label {
|
|
178
|
-
font-size: 1rem;
|
|
179
|
-
color: #3F4254;
|
|
180
|
-
font-weight: 500;
|
|
181
|
-
}
|
|
182
187
|
|
|
183
|
-
.form-control {
|
|
184
|
-
color: #5e6278;
|
|
185
|
-
border-radius: 6px !important;
|
|
186
|
-
border-color: #e2e5ec !important;
|
|
187
|
-
}
|
|
188
188
|
|
|
189
189
|
.Required-text {
|
|
190
190
|
font-weight: 500;
|
|
@@ -198,21 +198,13 @@ section.ta-results.list-group {
|
|
|
198
198
|
.input-group:not(.has-validation) > .form-control:not(:last-child), .input-group:not(.has-validation) > .custom-select:not(:last-child), .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
|
|
199
199
|
border-top-right-radius: 0 !important;
|
|
200
200
|
border-bottom-right-radius: 0 !important;
|
|
201
|
-
}
|
|
201
|
+
}*/
|
|
202
202
|
|
|
203
|
-
.input-group-text {
|
|
204
|
-
background-color: #f5f8fa;
|
|
205
|
-
border-color: #f5f8fa;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.form-control {
|
|
209
|
-
border-color: #f2f3f4;
|
|
210
|
-
}
|
|
211
203
|
|
|
212
204
|
/* datetime picker*/
|
|
213
205
|
|
|
214
206
|
|
|
215
|
-
|
|
207
|
+
/*.owl-dt-container, .owl-dt-container * {
|
|
216
208
|
box-sizing: border-box;
|
|
217
209
|
color: #797979;
|
|
218
210
|
font-weight: 600;
|
|
@@ -310,15 +302,15 @@ button.owl-dt-control.owl-dt-control-button.owl-dt-control-period-button {
|
|
|
310
302
|
|
|
311
303
|
.owl-dt-container-info-label {
|
|
312
304
|
color: #bbb9b9;
|
|
313
|
-
}
|
|
305
|
+
}*/
|
|
314
306
|
/*end datetime picker*/
|
|
315
307
|
|
|
316
|
-
|
|
308
|
+
/*.b-label {
|
|
317
309
|
padding: 15px 0px;
|
|
318
|
-
}
|
|
310
|
+
}*/
|
|
319
311
|
|
|
320
312
|
/*html editor*/
|
|
321
|
-
|
|
313
|
+
/*.note-btn i {
|
|
322
314
|
vertical-align: initial;
|
|
323
315
|
line-height: initial;
|
|
324
316
|
padding-right: 0;
|
|
@@ -328,11 +320,11 @@ button.owl-dt-control.owl-dt-control-button.owl-dt-control-period-button {
|
|
|
328
320
|
|
|
329
321
|
.note-toolbar {
|
|
330
322
|
padding: 10px !important;
|
|
331
|
-
}
|
|
323
|
+
}*/
|
|
332
324
|
|
|
333
325
|
/*calendar*/
|
|
334
326
|
|
|
335
|
-
body {
|
|
327
|
+
/*body {
|
|
336
328
|
--fc-event-border-color: #009ef7;
|
|
337
329
|
--fc-event-bg-color: #009ef7;
|
|
338
330
|
--fc-event-text-color: #ffffff;
|
|
@@ -610,9 +602,9 @@ body {
|
|
|
610
602
|
border-radius: 5px;
|
|
611
603
|
color: #3698fd;
|
|
612
604
|
font-weight: 500;
|
|
613
|
-
}
|
|
605
|
+
}*/
|
|
614
606
|
/*toggle slide*/
|
|
615
|
-
|
|
607
|
+
/*.mat-slide-toggle {
|
|
616
608
|
padding-left: 10px !important;
|
|
617
609
|
}
|
|
618
610
|
|
|
@@ -651,9 +643,9 @@ body {
|
|
|
651
643
|
left: calc(50% - 17.5px) !important;
|
|
652
644
|
height: 30px !important;
|
|
653
645
|
width: 30px !important;
|
|
654
|
-
}
|
|
646
|
+
}*/
|
|
655
647
|
/*dropdown*/
|
|
656
|
-
|
|
648
|
+
/*.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
|
|
657
649
|
padding: 12px 10px;
|
|
658
650
|
}
|
|
659
651
|
|
|
@@ -794,8 +786,8 @@ span.ng-value-label {
|
|
|
794
786
|
.ng-dropdown-panel.ng-select-bottom, .ng-select.ng-select-opened > .ng-select-container {
|
|
795
787
|
border: 1px solid #e2e5ec;
|
|
796
788
|
}
|
|
797
|
-
|
|
798
|
-
|
|
789
|
+
|
|
790
|
+
.ng-select .ng-select-container, input-group {
|
|
799
791
|
transition: color .2s ease,background-color .2s ease;
|
|
800
792
|
padding: .75rem 1rem;
|
|
801
793
|
font-size: 1rem;
|
|
@@ -805,11 +797,6 @@ span.ng-value-label {
|
|
|
805
797
|
}
|
|
806
798
|
|
|
807
799
|
|
|
808
|
-
textarea.bnsights-control.form-control {
|
|
809
|
-
/* height: 92px !important; */
|
|
810
|
-
resize: none;
|
|
811
|
-
}
|
|
812
|
-
|
|
813
800
|
.ng-dropdown-panel {
|
|
814
801
|
border: 0;
|
|
815
802
|
box-shadow: 0 0 30px rgb(0 0 0 / 30%);
|
|
@@ -833,11 +820,11 @@ textarea.bnsights-control.form-control {
|
|
|
833
820
|
display: flex;
|
|
834
821
|
align-items: center;
|
|
835
822
|
justify-content: center;
|
|
836
|
-
}
|
|
823
|
+
}*/
|
|
837
824
|
|
|
838
825
|
|
|
839
826
|
/* Toggle Slide Control */
|
|
840
|
-
|
|
827
|
+
/*.b-toggle-slide .mat-slide-toggle.mat-disabled .mat-slide-toggle-label,
|
|
841
828
|
.b-toggle-slide .mat-slide-toggle.mat-disabled .mat-slide-toggle-thumb-container {
|
|
842
829
|
cursor: not-allowed;
|
|
843
830
|
}
|
|
@@ -886,11 +873,11 @@ textarea.bnsights-control.form-control {
|
|
|
886
873
|
|
|
887
874
|
.page-item .page-link {
|
|
888
875
|
cursor: pointer;
|
|
889
|
-
}
|
|
876
|
+
}*/
|
|
890
877
|
|
|
891
878
|
/*radio button*/
|
|
892
879
|
|
|
893
|
-
input[type="radio"] {
|
|
880
|
+
/*input[type="radio"] {
|
|
894
881
|
-webkit-appearance: none;
|
|
895
882
|
appearance: none;
|
|
896
883
|
margin: 0;
|
|
@@ -923,10 +910,10 @@ input[type="radio"] {
|
|
|
923
910
|
display: flex;
|
|
924
911
|
align-items: center;
|
|
925
912
|
padding-bottom: 15px !important;
|
|
926
|
-
}
|
|
913
|
+
}*/
|
|
927
914
|
|
|
928
915
|
/*phone*/
|
|
929
|
-
input#phone {
|
|
916
|
+
/*input#phone {
|
|
930
917
|
transition: color .2s ease,background-color .2s ease;
|
|
931
918
|
min-height: calc(1.5em +1.65rem +2px );
|
|
932
919
|
padding-bottom: 0.75rem;
|
|
@@ -955,11 +942,11 @@ input#country-search-box {
|
|
|
955
942
|
|
|
956
943
|
li.iti__country:hover {
|
|
957
944
|
text-decoration: none;
|
|
958
|
-
}
|
|
945
|
+
}*/
|
|
959
946
|
|
|
960
947
|
|
|
961
948
|
/*html editor*/
|
|
962
|
-
|
|
949
|
+
/*.angular-editor .angular-editor-wrapper .angular-editor-textarea {
|
|
963
950
|
min-height: 150px !important;
|
|
964
951
|
border-radius: 4px;
|
|
965
952
|
margin-top: 0px !important
|
|
@@ -988,21 +975,21 @@ li.iti__country:hover {
|
|
|
988
975
|
.ae-font .ae-picker-label:before {
|
|
989
976
|
width: 0px !important;
|
|
990
977
|
height: 0px !important;
|
|
991
|
-
}
|
|
978
|
+
}*/
|
|
992
979
|
|
|
993
980
|
|
|
994
981
|
/*paging select*/
|
|
995
|
-
|
|
982
|
+
/*.b-pages select {
|
|
996
983
|
word-wrap: normal;
|
|
997
984
|
border-radius: 4px;
|
|
998
985
|
border: 0px;
|
|
999
986
|
margin-right: 10px;
|
|
1000
987
|
padding: 2px 4px;
|
|
1001
|
-
}
|
|
988
|
+
}*/
|
|
1002
989
|
|
|
1003
990
|
|
|
1004
991
|
/*textbox with icon*/
|
|
1005
|
-
|
|
992
|
+
/*.svg.svg-icon-grey {
|
|
1006
993
|
z-index: 4;
|
|
1007
994
|
position: absolute;
|
|
1008
995
|
}
|
|
@@ -1043,14 +1030,7 @@ body, html {
|
|
|
1043
1030
|
font-size: 13px;
|
|
1044
1031
|
}
|
|
1045
1032
|
|
|
1046
|
-
.input-group-text {
|
|
1047
|
-
height: 100%;
|
|
1048
|
-
}
|
|
1049
1033
|
|
|
1050
|
-
.form-control:focus {
|
|
1051
|
-
border-color: #93a5b9;
|
|
1052
|
-
box-shadow: none !important;
|
|
1053
|
-
}
|
|
1054
1034
|
|
|
1055
1035
|
.form-check.form-check-custom {
|
|
1056
1036
|
padding-left: 0px;
|
|
@@ -1094,9 +1074,9 @@ input[type=radio] {
|
|
|
1094
1074
|
|
|
1095
1075
|
ng-autocomplete.ng-autocomplete.bnsights-control {
|
|
1096
1076
|
padding: 0px !important;
|
|
1097
|
-
}
|
|
1077
|
+
}*/
|
|
1098
1078
|
/*tags input*/
|
|
1099
|
-
|
|
1079
|
+
/*.tags-input .badge {
|
|
1100
1080
|
background: #e4e4e4;
|
|
1101
1081
|
color: #3e3e3e;
|
|
1102
1082
|
}
|
|
@@ -1110,11 +1090,6 @@ ng-autocomplete.ng-autocomplete.bnsights-control {
|
|
|
1110
1090
|
}
|
|
1111
1091
|
|
|
1112
1092
|
|
|
1113
|
-
ng-autocomplete.ng-autocomplete.bnsights-control.form-control {
|
|
1114
|
-
width: 100%;
|
|
1115
|
-
border-radius: 0.475rem;
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
1093
|
button.swal2-cancel {
|
|
1119
1094
|
color: #7e8299 !important;
|
|
1120
1095
|
}
|
|
@@ -1134,14 +1109,69 @@ button.swal2-cancel {
|
|
|
1134
1109
|
}
|
|
1135
1110
|
}
|
|
1136
1111
|
|
|
1137
|
-
/* .ng-select .ng-select-container, .bnsights-control.form-control, .ng-select .ng-select-container, input-group {
|
|
1138
|
-
height: 40px;
|
|
1139
|
-
} */
|
|
1140
1112
|
|
|
1141
1113
|
.cdk-overlay-container {
|
|
1142
1114
|
z-index: 1060 !important;
|
|
1143
|
-
}
|
|
1115
|
+
}*/
|
|
1144
1116
|
/*table with control remove margin*/
|
|
1145
|
-
|
|
1117
|
+
/*.table-w-control .b-control .form-group {
|
|
1146
1118
|
margin-bottom: 0px;
|
|
1147
|
-
}
|
|
1119
|
+
}*/
|
|
1120
|
+
|
|
1121
|
+
/*///////////////////////////////////////////////////*/
|
|
1122
|
+
|
|
1123
|
+
/*textbox copy copy clipboard*/
|
|
1124
|
+
/*.copy-clipboard {
|
|
1125
|
+
display: flex;
|
|
1126
|
+
align-items: center;
|
|
1127
|
+
justify-content: center;
|
|
1128
|
+
background-color: #f4f6fa;
|
|
1129
|
+
margin-left: -5px;
|
|
1130
|
+
border-top-left-radius: 0px;
|
|
1131
|
+
border-bottom-left-radius: 0px;
|
|
1132
|
+
height: auto;
|
|
1133
|
+
padding: 0.375rem 0.75rem;
|
|
1134
|
+
font-size: 1rem;
|
|
1135
|
+
color: #666666;
|
|
1136
|
+
border: 1px solid #e9ecef;
|
|
1137
|
+
border-radius: 0.25rem;
|
|
1138
|
+
}*/
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
/* textarea form control*/
|
|
1143
|
+
/*textarea.form-control {
|
|
1144
|
+
resize: none;
|
|
1145
|
+
}*/
|
|
1146
|
+
|
|
1147
|
+
/* Autocomplete form control*/
|
|
1148
|
+
/*ng-autocomplete.ng-autocomplete.form-control {
|
|
1149
|
+
width: 100%;
|
|
1150
|
+
border-radius: 0.475rem;
|
|
1151
|
+
}*/
|
|
1152
|
+
|
|
1153
|
+
/* vertical form control*/
|
|
1154
|
+
/*.form-group .b-horizontal {
|
|
1155
|
+
display: flex;
|
|
1156
|
+
align-items: center;
|
|
1157
|
+
}
|
|
1158
|
+
.form-group .b-horizontal label {
|
|
1159
|
+
margin-right: 1rem;
|
|
1160
|
+
white-space: nowrap;
|
|
1161
|
+
margin-bottom: 0px;
|
|
1162
|
+
}
|
|
1163
|
+
.input-container {
|
|
1164
|
+
display: flex;
|
|
1165
|
+
width: 100%;
|
|
1166
|
+
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
@media only screen and (max-width: 768px) {
|
|
1170
|
+
.form-group .b-horizontal {
|
|
1171
|
+
display: block;
|
|
1172
|
+
}
|
|
1173
|
+
.form-group .b-horizontal label {
|
|
1174
|
+
margin-right: 0;
|
|
1175
|
+
margin-bottom: 1rem;
|
|
1176
|
+
}
|
|
1177
|
+
}*/
|