barsa-develop-components 1.0.288 → 1.0.290

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.
@@ -58,6 +58,7 @@ import * as i2$6 from '@fundamental-ngx/core/menu';
58
58
  import * as i3$7 from '@fundamental-ngx/core/split-button';
59
59
  import * as i4$b from '@fundamental-ngx/core/action-sheet';
60
60
  import * as i7$4 from '@fundamental-ngx/core/file-uploader';
61
+ import * as L from 'leaflet';
61
62
  import { FundamentalNgxPlatformModule } from '@fundamental-ngx/platform';
62
63
 
63
64
  class UiTextFieldSearchComponent extends DeviceInfoFieldBaseComponent {
@@ -2935,6 +2936,218 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
2935
2936
  type: Input
2936
2937
  }] } });
2937
2938
 
2939
+ class BarsaGeographicLocationComponent extends BaseComponent {
2940
+ constructor(_el) {
2941
+ super();
2942
+ this._el = _el;
2943
+ this.move = new EventEmitter();
2944
+ this.moveEnd = new EventEmitter();
2945
+ this.fullscreen = new EventEmitter();
2946
+ this.error = new EventEmitter();
2947
+ this._navigatorOptions = {
2948
+ enableHighAccuracy: true,
2949
+ timeout: 5000,
2950
+ maximumAge: 0
2951
+ };
2952
+ }
2953
+ ngAfterViewInit() {
2954
+ super.ngAfterViewInit();
2955
+ this._initilaize();
2956
+ }
2957
+ ngOnChanges(changes) {
2958
+ super.ngOnChanges(changes);
2959
+ const { disableOrReadonly, currentLocation } = changes;
2960
+ if (disableOrReadonly && !disableOrReadonly.firstChange) {
2961
+ this._addMarkers(disableOrReadonly.currentValue, this.currentLocation);
2962
+ }
2963
+ if (currentLocation && !currentLocation.firstChange) {
2964
+ this._addMarkers(this.disableOrReadonly, currentLocation.currentValue);
2965
+ }
2966
+ }
2967
+ onCurrentLocation() {
2968
+ this._getNavigatorCurrentPosition();
2969
+ }
2970
+ onFullscreen() {
2971
+ this.fullscreen.emit();
2972
+ }
2973
+ _addMarkers(disableOrReadonly, pos) {
2974
+ this._setGeoLocation({ coords: { latitude: pos[0], longitude: pos[1] } }, disableOrReadonly);
2975
+ }
2976
+ _setGeoLocation(position, disableOrReadonly = false, setView = false) {
2977
+ if (this._marker) {
2978
+ this._map.removeLayer(this._marker);
2979
+ this._marker = null;
2980
+ }
2981
+ const { coords: { latitude, longitude } } = position;
2982
+ L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token={accessToken}', {
2983
+ attribution: '',
2984
+ maxZoom: 18,
2985
+ id: 'mapbox/streets-v11',
2986
+ tileSize: 512,
2987
+ zoomOffset: -1,
2988
+ accessToken: 'pk.eyJ1IjoibXJlemFkZXZlbG9wZXIiLCJhIjoiY2p6anlrdTE2MDBxdjNtczZtYWFqbHFmdiJ9.SzniRy2KH6U3gdbOFnwA7Q'
2989
+ }).addTo(this._map);
2990
+ if (setView) {
2991
+ this._map.setView([latitude, longitude], 18);
2992
+ }
2993
+ const marker = this._createMarker('0', { mo: 'test' }, latitude, longitude, 'my location', '', !disableOrReadonly);
2994
+ marker.addTo(this._map);
2995
+ this._marker = marker;
2996
+ }
2997
+ _initilaize() {
2998
+ this._map = L.map(this._el.nativeElement);
2999
+ const location = this.defaultLocation;
3000
+ if (this.currentLocation.length === 2) {
3001
+ location[0] = Number(this.currentLocation[0]);
3002
+ location[1] = Number(this.currentLocation[1]);
3003
+ }
3004
+ this._setGeoLocation({
3005
+ coords: { latitude: location[0], longitude: location[1] }
3006
+ }, this.disableOrReadonly, true);
3007
+ if (this.setAutomaticLocation && this.currentLocation.length === 0 && !this.disableOrReadonly) {
3008
+ this._getNavigatorCurrentPosition();
3009
+ }
3010
+ }
3011
+ _onErrorNavigatorLocation(err) {
3012
+ this.error.emit(err);
3013
+ }
3014
+ _getNavigatorCurrentPosition() {
3015
+ if (navigator.geolocation) {
3016
+ navigator.geolocation.getCurrentPosition((position) => this._setGeoLocation(position, this.disableOrReadonly, true), (err) => this._onErrorNavigatorLocation(err), this._navigatorOptions);
3017
+ }
3018
+ }
3019
+ _createMarker(id, mo, lat, lng, text, icon, draggable) {
3020
+ const markerCfg = {
3021
+ Id: id,
3022
+ Data: mo,
3023
+ title: text,
3024
+ draggable,
3025
+ icon: L.divIcon({
3026
+ html: icon
3027
+ ? `<fd-icon style="font-size:1rem" class="sap-icon--${icon}"></fd-icon>`
3028
+ : `<img style="width:32px" src="${'assets/svg/location-sign.svg'}"/>`,
3029
+ iconSize: [20, 20],
3030
+ className: 'my-location'
3031
+ })
3032
+ };
3033
+ // var marker = L.BeautifyMarker.marker([Number(lat), Number(lng)], {
3034
+ const marker = L.marker([Number(lat), Number(lng)], markerCfg);
3035
+ marker.on('moveend', (e) => {
3036
+ this._onMoveEnd(e);
3037
+ });
3038
+ marker.on('move', (e) => {
3039
+ this._onMove(e);
3040
+ });
3041
+ return marker;
3042
+ }
3043
+ _onMove(e) {
3044
+ this.move.emit(e);
3045
+ }
3046
+ _onMoveEnd(e) {
3047
+ this.moveEnd.emit(e);
3048
+ }
3049
+ }
3050
+ BarsaGeographicLocationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaGeographicLocationComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
3051
+ BarsaGeographicLocationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: BarsaGeographicLocationComponent, selector: "bdc-barsa-geographic-location", inputs: { disableOrReadonly: "disableOrReadonly", currentLocation: "currentLocation", setAutomaticLocation: "setAutomaticLocation", showLocationButton: "showLocationButton", showFullscreenButton: "showFullscreenButton", defaultLocation: "defaultLocation" }, outputs: { move: "move", moveEnd: "moveEnd", fullscreen: "fullscreen", error: "error" }, usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div style=\"position: absolute; z-index: 1000; display: flex; flex-direction: column; row-gap: 5px; left: 0; bottom: 0\">\n <button *ngIf=\"showFullscreenButton\" fd-button glyph=\"resize\" fdType=\"positive\" (click)=\"onFullscreen()\"></button>\n <button *ngIf=\"showLocationButton\" fd-button glyph=\"map\" fdType=\"positive\" (click)=\"onCurrentLocation()\"></button>\n</div>\n", styles: [":host{display:block;min-height:300px;position:relative}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.ButtonComponent, selector: "button[fd-button], a[fd-button]", inputs: ["class"], exportAs: ["fd-button"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
3052
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaGeographicLocationComponent, decorators: [{
3053
+ type: Component,
3054
+ args: [{ selector: 'bdc-barsa-geographic-location', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div style=\"position: absolute; z-index: 1000; display: flex; flex-direction: column; row-gap: 5px; left: 0; bottom: 0\">\n <button *ngIf=\"showFullscreenButton\" fd-button glyph=\"resize\" fdType=\"positive\" (click)=\"onFullscreen()\"></button>\n <button *ngIf=\"showLocationButton\" fd-button glyph=\"map\" fdType=\"positive\" (click)=\"onCurrentLocation()\"></button>\n</div>\n", styles: [":host{display:block;min-height:300px;position:relative}\n"] }]
3055
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { disableOrReadonly: [{
3056
+ type: Input
3057
+ }], currentLocation: [{
3058
+ type: Input
3059
+ }], setAutomaticLocation: [{
3060
+ type: Input
3061
+ }], showLocationButton: [{
3062
+ type: Input
3063
+ }], showFullscreenButton: [{
3064
+ type: Input
3065
+ }], defaultLocation: [{
3066
+ type: Input
3067
+ }], move: [{
3068
+ type: Output
3069
+ }], moveEnd: [{
3070
+ type: Output
3071
+ }], fullscreen: [{
3072
+ type: Output
3073
+ }], error: [{
3074
+ type: Output
3075
+ }] } });
3076
+
3077
+ class GeographicLocationComponent extends UiMoInfoSubFormUiComponent {
3078
+ constructor() {
3079
+ super(...arguments);
3080
+ this.fullscreen = false;
3081
+ this.currentLocation = [];
3082
+ this.latitude = 35.7568;
3083
+ this.longitude = 51.412;
3084
+ }
3085
+ get latitudeUi() {
3086
+ return this.customFormPanelUi._dictFieldUi.Latitude;
3087
+ }
3088
+ get longitudeUi() {
3089
+ return this.customFormPanelUi._dictFieldUi.Longitude;
3090
+ }
3091
+ openDialog(dialog) {
3092
+ this._dialogService.open(dialog, {
3093
+ responsivePadding: true,
3094
+ fullScreen: true,
3095
+ mobile: true,
3096
+ ariaLabelledBy: 'map',
3097
+ ariaDescribedBy: 'choose location',
3098
+ focusTrapped: true
3099
+ });
3100
+ }
3101
+ ngOnInit() {
3102
+ var _a, _b;
3103
+ super.ngOnInit();
3104
+ this._setCurrentLocation((_a = this.latitudeUi) === null || _a === void 0 ? void 0 : _a.value, (_b = this.longitudeUi) === null || _b === void 0 ? void 0 : _b.value);
3105
+ }
3106
+ onFullscreen() {
3107
+ this.fullscreen = true;
3108
+ this.openDialog(this.dialogTemplate);
3109
+ }
3110
+ onExistFullscreen() {
3111
+ this.fullscreen = false;
3112
+ this._cdr.detectChanges();
3113
+ }
3114
+ onOpenChange(isOpen) {
3115
+ this.fullscreen = isOpen;
3116
+ }
3117
+ onErrorNavigatorLocation(err) {
3118
+ const err2 = `خطا در دریافت موقعیت مکانی جاری. (${err.message})`;
3119
+ BarsaApi.Bw.Toast.Error(err2);
3120
+ }
3121
+ onMove(e) {
3122
+ this.latitude = e.latlng.lat;
3123
+ this.longitude = e.latlng.lng;
3124
+ }
3125
+ onMoveEnd(e) {
3126
+ this._valueChanged();
3127
+ }
3128
+ _setCurrentLocation(lat, lng) {
3129
+ if (lat && lng) {
3130
+ this.currentLocation = [lat, lng];
3131
+ }
3132
+ }
3133
+ _valueChanged() {
3134
+ this.latitudeUi.value = this.latitude;
3135
+ this.longitudeUi.value = this.longitude;
3136
+ this.latitudeUi.fireEvent('change', this.latitudeUi, this.latitudeUi.value);
3137
+ this.longitudeUi.fireEvent('change', this.longitudeUi, this.longitudeUi.value);
3138
+ this._setCurrentLocation(this.latitude, this.longitude);
3139
+ }
3140
+ }
3141
+ GeographicLocationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: GeographicLocationComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
3142
+ GeographicLocationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.7", type: GeographicLocationComponent, selector: "bdc-geographic-location", viewQueries: [{ propertyName: "dialogTemplate", first: true, predicate: ["confirmationDialog"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<ng-container *ngIf=\"customFormPanelUi\">\n <bnrc-form style=\"display: none\" *untilInView=\"el\" [customFormPanelUi]=\"customFormPanelUi\"></bnrc-form>\n</ng-container>\n\n<bdc-barsa-geographic-location\n *ngIf=\"!fullscreen\"\n [defaultLocation]=\"[35.7568, 51.412]\"\n [showFullscreenButton]=\"customFieldInfo.ShowFullscreenButton\"\n [showLocationButton]=\"customFieldInfo.ShowLocationButton\"\n [setAutomaticLocation]=\"customFieldInfo.GetCurrentLocation\"\n [currentLocation]=\"currentLocation\"\n [disableOrReadonly]=\"(disableOrReadonly$ | async) === true || customFieldInfo.Draggable === false\"\n (move)=\"onMove($event)\"\n (error)=\"onErrorNavigatorLocation($event)\"\n (moveEnd)=\"onMoveEnd($event)\"\n (fullscreen)=\"onFullscreen()\"\n></bdc-barsa-geographic-location>\n\n<ng-template let-dialog let-dialogConfig=\"dialogConfig\" #confirmationDialog>\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\">\n <fd-dialog-header>\n <h1 id=\"fd-dialog-header-10\" fd-title>Map</h1>\n </fd-dialog-header>\n\n <fd-dialog-body>\n <bdc-barsa-geographic-location\n style=\"height: 100% !important\"\n [defaultLocation]=\"[35.7568, 51.412]\"\n [showFullscreenButton]=\"false\"\n [showLocationButton]=\"customFieldInfo.ShowLocationButton\"\n [setAutomaticLocation]=\"customFieldInfo.GetCurrentLocation\"\n [currentLocation]=\"currentLocation\"\n [disableOrReadonly]=\"(disableOrReadonly$ | async) === true || customFieldInfo.Draggable === false\"\n (move)=\"onMove($event)\"\n (error)=\"onErrorNavigatorLocation($event)\"\n (moveEnd)=\"onMoveEnd($event)\"\n ></bdc-barsa-geographic-location>\n </fd-dialog-body>\n\n <fd-dialog-footer>\n <fd-button-bar\n fdType=\"standard\"\n [label]=\"'Close' | bbbTranslate\"\n (click)=\"onExistFullscreen(); dialog.close('Continue')\"\n [ariaLabel]=\"'Close' | bbbTranslate\"\n ></fd-button-bar>\n </fd-dialog-footer>\n </fd-dialog>\n</ng-template>\n", styles: [":host{display:block;position:relative}\n"], dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i1$2.FormComponent, selector: "bnrc-form", inputs: ["params", "customFormPanelUi", "formPanelCtrl", "formPanelCtrlId"], outputs: ["titleChanged", "moChanged", "formClose", "formRendered"] }, { kind: "directive", type: i1$2.UntilInViewDirective, selector: "[untilInView]", inputs: ["untilInView", "intersectionDebounce"] }, { kind: "component", type: i3$3.ButtonBarComponent, selector: "fd-button-bar", inputs: ["fullWidth", "fdType", "title", "ariaLabel", "ariaLabelledby", "id"] }, { kind: "component", type: i5$1.DialogComponent, selector: "fd-dialog", inputs: ["class", "dialogRef", "dialogConfig"] }, { kind: "component", type: i5$1.DialogBodyComponent, selector: "fd-dialog-body" }, { kind: "component", type: i5$1.DialogFooterComponent, selector: "fd-dialog-footer" }, { kind: "component", type: i5$1.DialogHeaderComponent, selector: "fd-dialog-header" }, { kind: "component", type: i6.TitleComponent, selector: "h1[fd-title], h2[fd-title], h3[fd-title], h4[fd-title], h5[fd-title], h6[fd-title]", inputs: ["headerSize", "wrap"], exportAs: ["fd-title"] }, { kind: "component", type: BarsaGeographicLocationComponent, selector: "bdc-barsa-geographic-location", inputs: ["disableOrReadonly", "currentLocation", "setAutomaticLocation", "showLocationButton", "showFullscreenButton", "defaultLocation"], outputs: ["move", "moveEnd", "fullscreen", "error"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: i1$2.BbbTranslatePipe, name: "bbbTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
3143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: GeographicLocationComponent, decorators: [{
3144
+ type: Component,
3145
+ args: [{ selector: 'bdc-geographic-location', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf=\"customFormPanelUi\">\n <bnrc-form style=\"display: none\" *untilInView=\"el\" [customFormPanelUi]=\"customFormPanelUi\"></bnrc-form>\n</ng-container>\n\n<bdc-barsa-geographic-location\n *ngIf=\"!fullscreen\"\n [defaultLocation]=\"[35.7568, 51.412]\"\n [showFullscreenButton]=\"customFieldInfo.ShowFullscreenButton\"\n [showLocationButton]=\"customFieldInfo.ShowLocationButton\"\n [setAutomaticLocation]=\"customFieldInfo.GetCurrentLocation\"\n [currentLocation]=\"currentLocation\"\n [disableOrReadonly]=\"(disableOrReadonly$ | async) === true || customFieldInfo.Draggable === false\"\n (move)=\"onMove($event)\"\n (error)=\"onErrorNavigatorLocation($event)\"\n (moveEnd)=\"onMoveEnd($event)\"\n (fullscreen)=\"onFullscreen()\"\n></bdc-barsa-geographic-location>\n\n<ng-template let-dialog let-dialogConfig=\"dialogConfig\" #confirmationDialog>\n <fd-dialog [dialogConfig]=\"dialogConfig\" [dialogRef]=\"dialog\">\n <fd-dialog-header>\n <h1 id=\"fd-dialog-header-10\" fd-title>Map</h1>\n </fd-dialog-header>\n\n <fd-dialog-body>\n <bdc-barsa-geographic-location\n style=\"height: 100% !important\"\n [defaultLocation]=\"[35.7568, 51.412]\"\n [showFullscreenButton]=\"false\"\n [showLocationButton]=\"customFieldInfo.ShowLocationButton\"\n [setAutomaticLocation]=\"customFieldInfo.GetCurrentLocation\"\n [currentLocation]=\"currentLocation\"\n [disableOrReadonly]=\"(disableOrReadonly$ | async) === true || customFieldInfo.Draggable === false\"\n (move)=\"onMove($event)\"\n (error)=\"onErrorNavigatorLocation($event)\"\n (moveEnd)=\"onMoveEnd($event)\"\n ></bdc-barsa-geographic-location>\n </fd-dialog-body>\n\n <fd-dialog-footer>\n <fd-button-bar\n fdType=\"standard\"\n [label]=\"'Close' | bbbTranslate\"\n (click)=\"onExistFullscreen(); dialog.close('Continue')\"\n [ariaLabel]=\"'Close' | bbbTranslate\"\n ></fd-button-bar>\n </fd-dialog-footer>\n </fd-dialog>\n</ng-template>\n", styles: [":host{display:block;position:relative}\n"] }]
3146
+ }], propDecorators: { dialogTemplate: [{
3147
+ type: ViewChild,
3148
+ args: ['confirmationDialog']
3149
+ }] } });
3150
+
2938
3151
  const components = [
2939
3152
  LoginFormComponent,
2940
3153
  LoginSocialConncetionsComponent,
@@ -2983,7 +3196,9 @@ const components = [
2983
3196
  BarsaDocumentsComponent,
2984
3197
  BarsaDocumentListItemComponent,
2985
3198
  AcceptRejectComponent,
2986
- FooterComponent
3199
+ FooterComponent,
3200
+ GeographicLocationComponent,
3201
+ BarsaGeographicLocationComponent
2987
3202
  ];
2988
3203
  const pipes = [UiPersonPipe, BarcodeFormatPipe, MoListToFlowItemPipe, DataSourceToFlowItemPipe];
2989
3204
  class BarsaDevelopComponentsModule extends BaseModule {
@@ -3042,7 +3257,9 @@ BarsaDevelopComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.
3042
3257
  BarsaDocumentsComponent,
3043
3258
  BarsaDocumentListItemComponent,
3044
3259
  AcceptRejectComponent,
3045
- FooterComponent, UiPersonPipe, BarcodeFormatPipe, MoListToFlowItemPipe, DataSourceToFlowItemPipe], imports: [CommonModule,
3260
+ FooterComponent,
3261
+ GeographicLocationComponent,
3262
+ BarsaGeographicLocationComponent, UiPersonPipe, BarcodeFormatPipe, MoListToFlowItemPipe, DataSourceToFlowItemPipe], imports: [CommonModule,
3046
3263
  BarsaNovinRayCoreModule,
3047
3264
  ReactiveFormsModule,
3048
3265
  BarsaSapUiModule,
@@ -3097,7 +3314,9 @@ BarsaDevelopComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.
3097
3314
  BarsaDocumentsComponent,
3098
3315
  BarsaDocumentListItemComponent,
3099
3316
  AcceptRejectComponent,
3100
- FooterComponent] });
3317
+ FooterComponent,
3318
+ GeographicLocationComponent,
3319
+ BarsaGeographicLocationComponent] });
3101
3320
  BarsaDevelopComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: BarsaDevelopComponentsModule, providers: [UserMediaBaseService, WebBarcodeService], imports: [CommonModule,
3102
3321
  BarsaNovinRayCoreModule,
3103
3322
  ReactiveFormsModule,
@@ -3132,5 +3351,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
3132
3351
  * Generated bundle index. Do not edit.
3133
3352
  */
3134
3353
 
3135
- export { AcceptRejectComponent, AvatarComponent, BarcodeFormatPipe, BarcodeReaderComponent, BarcodeReaderDialogComponent, BarcodeReaderVideoComponent, BarsaDevelopComponentsModule, BarsaDocumentListItemComponent, BarsaDocumentsComponent, CardContentImageAndTitleComponent, CardContentLineChartComponent, CardHeaderBigImageTitleAndSubtitleComponent, CardHeaderKpiComponent, CardHeaderLogoTitleSubtitleComponent, CheckboxButtonComponent, EnumInfoMicroProccessFlowComponent, FooterComponent, FormChartContentComponent, FormContentQuickViewComponent, G4bDetailsComponent, G4bEstelamComponent, LoginFormComponent, LoginSocialConncetionsComponent, MasterDetailCardFormComponent, MediaFileUploaderComponent, MicroProccessFlowComponent, MicroProcessFlowViewComponent, MoInfoMicroProccessFlowComponent, QueryStringFormObservableComponent, QueryStringObservableComponent, ReportButtonViewComponent, ReportLineChartViewComponent, ReportTabViewComponent, ResendVerificationCodeComponent, ServiceDeskCardContentMojavezhayAkhzShodeComponent, ServiceDeskFormLayoutContentMojavezComponent, ServiceDeskHeaderComponent, ServiceDeskServcieDetailComponent, ServiceDeskViewOfServicesComponent, SettingFormComponent, SubformInRowReportComponent, TabProcessViewComponent, TableViewVerticalColumnsComponent, TimerCountDownComponent, UiEnumSegmentedButtonComponent, UiNumRateComponent, UiPersonComponent, UiPicturesCarouselComponent, UiTextFieldSearchComponent, UlvContextMenuItemShowFileContentComponent };
3354
+ export { AcceptRejectComponent, AvatarComponent, BarcodeFormatPipe, BarcodeReaderComponent, BarcodeReaderDialogComponent, BarcodeReaderVideoComponent, BarsaDevelopComponentsModule, BarsaDocumentListItemComponent, BarsaDocumentsComponent, BarsaGeographicLocationComponent, CardContentImageAndTitleComponent, CardContentLineChartComponent, CardHeaderBigImageTitleAndSubtitleComponent, CardHeaderKpiComponent, CardHeaderLogoTitleSubtitleComponent, CheckboxButtonComponent, EnumInfoMicroProccessFlowComponent, FooterComponent, FormChartContentComponent, FormContentQuickViewComponent, G4bDetailsComponent, G4bEstelamComponent, GeographicLocationComponent, LoginFormComponent, LoginSocialConncetionsComponent, MasterDetailCardFormComponent, MediaFileUploaderComponent, MicroProccessFlowComponent, MicroProcessFlowViewComponent, MoInfoMicroProccessFlowComponent, QueryStringFormObservableComponent, QueryStringObservableComponent, ReportButtonViewComponent, ReportLineChartViewComponent, ReportTabViewComponent, ResendVerificationCodeComponent, ServiceDeskCardContentMojavezhayAkhzShodeComponent, ServiceDeskFormLayoutContentMojavezComponent, ServiceDeskHeaderComponent, ServiceDeskServcieDetailComponent, ServiceDeskViewOfServicesComponent, SettingFormComponent, SubformInRowReportComponent, TabProcessViewComponent, TableViewVerticalColumnsComponent, TimerCountDownComponent, UiEnumSegmentedButtonComponent, UiNumRateComponent, UiPersonComponent, UiPicturesCarouselComponent, UiTextFieldSearchComponent, UlvContextMenuItemShowFileContentComponent };
3136
3355
  //# sourceMappingURL=barsa-develop-components.mjs.map