@bnsights/bbsf-controls 1.0.92 → 1.0.93
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 +4 -0
- package/bnsights-bbsf-controls-1.0.93.tgz +0 -0
- package/bnsights-bbsf-controls.metadata.json +1 -1
- package/bundles/bnsights-bbsf-controls.umd.js +4 -5
- package/bundles/bnsights-bbsf-controls.umd.js.map +1 -1
- package/esm2015/lib/Shared/Models/PhoneOptions.js +3 -1
- package/esm2015/lib/Shared/Models/TextAreaOptions.js +1 -7
- package/esm2015/lib/controls/Phone/Phone.component.js +2 -2
- package/fesm2015/bnsights-bbsf-controls.js +3 -6
- package/fesm2015/bnsights-bbsf-controls.js.map +1 -1
- package/lib/Shared/Models/PhoneOptions.d.ts +1 -0
- package/package.json +1 -1
- package/bnsights-bbsf-controls-1.0.92.tgz +0 -0
|
@@ -2926,7 +2926,7 @@
|
|
|
2926
2926
|
PhoneComponent.decorators = [
|
|
2927
2927
|
{ type: i0.Component, args: [{
|
|
2928
2928
|
selector: 'BBSF-Phone',
|
|
2929
|
-
template: "\r\n<div class=\"form-group bbsf-control bbsf-phone\" [formGroup]=\"group\">\r\n <div [ngClass]=\"(options.ViewType==1)?'bbsf-vertical':'bbsf-horizontal'\">\r\n <!--label-->\r\n <label *ngIf=\"!options.HideLabel\" class=\"bbsf-label
|
|
2929
|
+
template: "\r\n<div class=\"form-group bbsf-control bbsf-phone\" [formGroup]=\"group\">\r\n <div [ngClass]=\"(options.ViewType==1)?'bbsf-vertical':'bbsf-horizontal'\">\r\n <!--label-->\r\n <label *ngIf=\"!options.HideLabel\" class=\"bbsf-label\r\n {{options.LabelExtraClasses}}\">\r\n {{options.LabelValue}}\r\n <!--Asterisk-->\r\n <span\r\n *ngIf=\"(options.ShowAsterisk&&options.IsRequired)||(options.IsRequired)\"\r\n class=\"text-danger\">*</span>\r\n </label>\r\n <!--input-->\r\n <div class=\"bbsf-input-container\">\r\n <!--input-->\r\n <ngx-intl-tel-input dir=\"{{options.ForceDirection==2?'rtl':'ltr'}}\"\r\n [cssClass]=\"options.ExtraClasses\"\r\n [preferredCountries]=\"options.PreferredCountries\"\r\n [onlyCountries]=\"options.OnlyCountries\"\r\n [enableAutoCountrySelect]=\"true\"\r\n [enablePlaceholder]=\"options.EnablePlaceholder\"\r\n [searchCountryFlag]=\"options.AllowSearch\"\r\n [searchCountryField]=\"[SearchCountryField.Iso2,\r\n SearchCountryField.Name]\"\r\n [selectFirstCountry]=\"options.SelectFirstCountry\"\r\n [selectedCountryISO]=\"getSelectedCountry(options.SelectedCountryISO)\"\r\n [separateDialCode]=\"separateDialCode\"\r\n maxlength=\"15\" [(ngModel)]=\"options.Value\"\r\n [phoneValidation]=\"options.PhoneValidation\" [id]=\"options.Name\"\r\n name=\"{{options.Name}}\" formControlName=\"{{options.Name}}\"\r\n (change)=\"onValueChanged()\"\r\n [class.is-invalid]=\"PhoneFormControl.invalid &&\r\n PhoneFormControl.touched\" aria-invalid=\"true\"\r\n class=\"form-control\">\r\n </ngx-intl-tel-input>\r\n </div>\r\n </div>\r\n <div class=\"subtext-container\">\r\n <!-- LabelDescription-->\r\n <div class=\"bbsf-control-desc\" *ngIf=\"options.LabelDescription!=null\">{{options.LabelDescription}}</div>\r\n <!-- requiredText-->\r\n <div class=\"bbsf-validation\" *ngIf=\"(PhoneFormControl.invalid &&\r\n PhoneFormControl.touched)\">\r\n {{getErrorValidation(PhoneFormControl.errors|keyvalue)}}\r\n </div>\r\n </div>\r\n <div *ngIf=\"(group.valid&&group.dirty&&group.touched\r\n )||(group.untouched&&group.invalid&&group.dirty) \">{{resetError()}}</div>\r\n</div>\r\n"
|
|
2930
2930
|
},] }
|
|
2931
2931
|
];
|
|
2932
2932
|
PhoneComponent.ctorParameters = function () { return [
|
|
@@ -6834,6 +6834,8 @@
|
|
|
6834
6834
|
var _this = _super.apply(this, __spreadArray([], __read(arguments))) || this;
|
|
6835
6835
|
/**Set List Of Countries As Preferred Countries*/
|
|
6836
6836
|
_this.PreferredCountries = [];
|
|
6837
|
+
// **Set List Of Countries to show it in dropdown list and ignore another countries */
|
|
6838
|
+
_this.OnlyCountries = [];
|
|
6837
6839
|
_this.ForceDirection = exports.ForceDirection.English;
|
|
6838
6840
|
return _this;
|
|
6839
6841
|
}
|
|
@@ -6849,10 +6851,7 @@
|
|
|
6849
6851
|
var TextAreaOptions = /** @class */ (function (_super) {
|
|
6850
6852
|
__extends(TextAreaOptions, _super);
|
|
6851
6853
|
function TextAreaOptions() {
|
|
6852
|
-
|
|
6853
|
-
/** to set Direction of TextArea if TextArea is Arabic or English */
|
|
6854
|
-
_this.ForceDirection = exports.ForceDirection.English;
|
|
6855
|
-
return _this;
|
|
6854
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
6856
6855
|
}
|
|
6857
6856
|
return TextAreaOptions;
|
|
6858
6857
|
}(ControlOptionsBase));
|