@bnsights/bbsf-controls 1.0.27 → 1.0.28
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 +7 -18
- package/bnsights-bbsf-controls-1.0.28.tgz +0 -0
- package/bnsights-bbsf-controls.metadata.json +1 -1
- package/bundles/bnsights-bbsf-controls.umd.js +31 -27
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/Shared/services/validationErrorMassage.service.js +12 -12
- package/esm2015/lib/controls/ConfirmationModal/ConfirmationModal.component.js +2 -2
- package/esm2015/lib/controls/DateTimePicker/DateTimePicker.component.js +8 -3
- package/esm2015/lib/controls/ImageUpload/ImageUpload.component.js +4 -4
- package/esm2015/lib/controls/MultiLingualTextArea/MultiLingualTextArea.component.js +3 -3
- package/esm2015/lib/controls/MultiLingualTextBox/MultiLingualTextBox.component.js +3 -3
- package/esm2015/lib/controls/TextArea/TextArea.component.js +2 -2
- package/esm2015/lib/controls/TextBox/TextBox.component.js +2 -2
- package/fesm2015/bnsights-bbsf-controls.js +28 -24
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/lib/controls/DateTimePicker/DateTimePicker.component.d.ts +3 -1
- package/lib/controls/ImageUpload/ImageUpload.component.d.ts +1 -1
- package/package.json +2 -2
- package/src/lib/assets/Style.css +0 -9
- package/bnsights-bbsf-controls-1.0.27.tgz +0 -0
|
@@ -6,6 +6,7 @@ import { ControlUtility } from '../../Shared/services/ControlUtility';
|
|
|
6
6
|
import { OnPagingFiltersChangeService } from '../../Shared/services/OnPagingFiltersChange.service';
|
|
7
7
|
import { BBSFTranslateService, ControlValidationService, UtilityService } from '@bnsights/bbsf-utilities';
|
|
8
8
|
import { DatePipe } from '@angular/common';
|
|
9
|
+
import { DateTimeAdapter } from 'ng-pick-datetime';
|
|
9
10
|
export declare class DateInputComponent implements OnInit {
|
|
10
11
|
datepipe: DatePipe;
|
|
11
12
|
private onChangeService;
|
|
@@ -16,8 +17,9 @@ export declare class DateInputComponent implements OnInit {
|
|
|
16
17
|
private UtilityService;
|
|
17
18
|
private translate;
|
|
18
19
|
private controlValidationService;
|
|
20
|
+
private dateTimeAdapter;
|
|
19
21
|
static controlContainerstatic: any;
|
|
20
|
-
constructor(datepipe: DatePipe, onChangeService: OnPagingFiltersChangeService, ErrorHandler: ErrorMassageValidation, controlUtility: ControlUtility, controlContainer: ControlContainer, DateInputControlHost: FormGroupDirective, UtilityService: UtilityService, translate: BBSFTranslateService, controlValidationService: ControlValidationService);
|
|
22
|
+
constructor(datepipe: DatePipe, onChangeService: OnPagingFiltersChangeService, ErrorHandler: ErrorMassageValidation, controlUtility: ControlUtility, controlContainer: ControlContainer, DateInputControlHost: FormGroupDirective, UtilityService: UtilityService, translate: BBSFTranslateService, controlValidationService: ControlValidationService, dateTimeAdapter: DateTimeAdapter<any>);
|
|
21
23
|
group: FormGroup;
|
|
22
24
|
options: DatePickerOptions;
|
|
23
25
|
DatePickerFormControl: AbstractControl;
|
|
@@ -11,7 +11,7 @@ export declare class ImageUploaderComponent implements OnInit {
|
|
|
11
11
|
private controlUtility;
|
|
12
12
|
private controlContainer;
|
|
13
13
|
ImageUplaoderControlHost: FormGroupDirective;
|
|
14
|
-
|
|
14
|
+
UtilityService: UtilityService;
|
|
15
15
|
private controlValidationService;
|
|
16
16
|
private globalSettings;
|
|
17
17
|
static controlContainerstatic: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bnsights/bbsf-controls",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.28",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "~12.2.12",
|
|
6
6
|
"@angular/core": "~12.2.12"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@angular/platform-browser": "~12.2.12",
|
|
22
22
|
"@angular/platform-browser-dynamic": "~12.2.12",
|
|
23
23
|
"@angular/router": "~12.2.12",
|
|
24
|
-
"@bnsights/bbsf-utilities": "1.0.
|
|
24
|
+
"@bnsights/bbsf-utilities": "1.0.13",
|
|
25
25
|
"@fortawesome/fontawesome-free": "^5.15.2",
|
|
26
26
|
"google-libphonenumber": "^3.2.17",
|
|
27
27
|
"@fullcalendar/angular": "^5.5.0",
|
package/src/lib/assets/Style.css
CHANGED
|
@@ -59,9 +59,6 @@ i.fa.fa-search {
|
|
|
59
59
|
display: none !important;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
span {
|
|
63
|
-
cursor: pointer;
|
|
64
|
-
}
|
|
65
62
|
|
|
66
63
|
.ta-results[_ngcontent-ng-cli-universal-c7] {
|
|
67
64
|
position: static !important;
|
|
@@ -198,12 +195,6 @@ section.ta-results.list-group {
|
|
|
198
195
|
color: #a2a2a2;
|
|
199
196
|
}
|
|
200
197
|
|
|
201
|
-
.word-count {
|
|
202
|
-
position: absolute;
|
|
203
|
-
bottom: -25px;
|
|
204
|
-
right: 0px;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
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 {
|
|
208
199
|
border-top-right-radius: 0 !important;
|
|
209
200
|
border-bottom-right-radius: 0 !important;
|
|
Binary file
|