barsa-novin-ray-core 2.3.120 → 2.3.123
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/fesm2022/{barsa-novin-ray-core-barsa-novin-ray-core-g1_aRXQb.mjs → barsa-novin-ray-core-barsa-novin-ray-core-DCtZV40a.mjs} +143 -72
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-DCtZV40a.mjs.map +1 -0
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-CZm3CHdl.mjs → barsa-novin-ray-core-barsa-report-page.module-CCt7xhgu.mjs} +2 -2
- package/fesm2022/{barsa-novin-ray-core-barsa-report-page.module-CZm3CHdl.mjs.map → barsa-novin-ray-core-barsa-report-page.module-CCt7xhgu.mjs.map} +1 -1
- package/fesm2022/barsa-novin-ray-core.mjs +1 -1
- package/index.d.ts +54 -7
- package/package.json +1 -1
- package/fesm2022/barsa-novin-ray-core-barsa-novin-ray-core-g1_aRXQb.mjs.map +0 -1
|
@@ -1532,34 +1532,24 @@ function calcContextMenuWidth(contextMenuItems, disableContextMenuOverflow) {
|
|
|
1532
1532
|
return contextMenuWidth;
|
|
1533
1533
|
}
|
|
1534
1534
|
function RotateImage(imgEl, media, renderer2) {
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
if (media.RotationAngle) {
|
|
1538
|
-
media.RotationAngle = (media.RotationAngle + angle) % 360;
|
|
1539
|
-
}
|
|
1540
|
-
else {
|
|
1541
|
-
media.RotationAngle = angle;
|
|
1542
|
-
}
|
|
1535
|
+
// ۱. بهروزرسانی زاویه
|
|
1536
|
+
media.RotationAngle = ((media.RotationAngle || 0) + 90) % 360;
|
|
1543
1537
|
const w = imgEl.offsetWidth;
|
|
1544
1538
|
const h = imgEl.offsetHeight;
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
}
|
|
1552
|
-
else {
|
|
1553
|
-
media.scaleFactor = scaleFactor;
|
|
1554
|
-
}
|
|
1555
|
-
if (scaleFactor < 1) {
|
|
1556
|
-
renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg) scale(${scaleFactor})`);
|
|
1539
|
+
const isVertical = media.RotationAngle % 180 !== 0;
|
|
1540
|
+
if (isVertical) {
|
|
1541
|
+
// چون محورها چرخیدهاند، ScaleX روی ارتفاع کانتینر و ScaleY روی عرض کانتینر اثر میگذارد
|
|
1542
|
+
const scaleX = h / w; // مقیاس افقی تصویر که حالا عمودی شده
|
|
1543
|
+
const scaleY = w / h; // مقیاس عمودی تصویر که حالا افقی شده
|
|
1544
|
+
renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg) scale(${scaleX}, ${scaleY})`);
|
|
1557
1545
|
}
|
|
1558
1546
|
else {
|
|
1559
|
-
|
|
1547
|
+
// در زوایای ۰ و ۱۸۰، تصویر به حالت عادی برمیگردد
|
|
1548
|
+
renderer2.setStyle(imgEl, 'transform', `rotate(${media.RotationAngle}deg) scale(1, 1)`);
|
|
1560
1549
|
}
|
|
1561
|
-
|
|
1562
|
-
renderer2.setStyle(imgEl, '
|
|
1550
|
+
// برای اطمینان از اینکه تصویر از مرکز فیت میشود
|
|
1551
|
+
renderer2.setStyle(imgEl, 'transform-origin', 'center center');
|
|
1552
|
+
renderer2.setStyle(imgEl, 'transition', 'transform 0.3s ease-in-out');
|
|
1563
1553
|
}
|
|
1564
1554
|
function isInLocalMode() {
|
|
1565
1555
|
const offlinceActive = BarsaApi.Common.Util.TryGetValue(BarsaApi.Offline, 'Settings.IsActive', false);
|
|
@@ -2393,45 +2383,45 @@ const VideoMimeType = 'video/*';
|
|
|
2393
2383
|
const AudioMimeType = 'audio/*';
|
|
2394
2384
|
const MimeTypes = {
|
|
2395
2385
|
// اسناد متنی و وب
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2386
|
+
html: 'text/html',
|
|
2387
|
+
htm: 'text/html',
|
|
2388
|
+
txt: 'text/plain',
|
|
2389
|
+
text: 'text/plain',
|
|
2390
|
+
log: 'text/plain',
|
|
2391
|
+
conf: 'text/plain',
|
|
2392
|
+
css: 'text/css',
|
|
2393
|
+
js: 'application/javascript',
|
|
2394
|
+
json: 'application/json',
|
|
2395
|
+
xml: 'application/xml',
|
|
2406
2396
|
// تصاویر
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2397
|
+
jpg: 'image/jpeg',
|
|
2398
|
+
jpeg: 'image/jpeg',
|
|
2399
|
+
png: 'image/png',
|
|
2400
|
+
gif: 'image/gif',
|
|
2401
|
+
svg: 'image/svg+xml',
|
|
2402
|
+
webp: 'image/webp',
|
|
2403
|
+
bmp: 'image/bmp',
|
|
2404
|
+
ico: 'image/x-icon',
|
|
2415
2405
|
// اسناد کاربردی
|
|
2416
|
-
|
|
2417
|
-
|
|
2406
|
+
pdf: 'application/pdf',
|
|
2407
|
+
rtf: 'application/rtf',
|
|
2418
2408
|
// مایکروسافت آفیس
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2409
|
+
doc: 'application/msword',
|
|
2410
|
+
docx: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
2411
|
+
xls: 'application/vnd.ms-excel',
|
|
2412
|
+
xlsx: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
|
|
2413
|
+
ppt: 'application/vnd.ms-powerpoint',
|
|
2414
|
+
pptx: 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
|
|
2425
2415
|
// چندرسانهای (صوت و ویدیو)
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2416
|
+
mp4: 'video/mp4',
|
|
2417
|
+
webm: 'video/webm',
|
|
2418
|
+
ogg: 'video/ogg',
|
|
2419
|
+
mp3: 'audio/mpeg',
|
|
2420
|
+
wav: 'audio/wav'
|
|
2431
2421
|
};
|
|
2432
2422
|
function GetContentType(fileName) {
|
|
2433
2423
|
const ext = fileName.substring(fileName.lastIndexOf('.')).toLowerCase();
|
|
2434
|
-
return MimeTypes[ext] ||
|
|
2424
|
+
return MimeTypes[ext] || 'application/octet-stream';
|
|
2435
2425
|
}
|
|
2436
2426
|
function GetViewableExtensions() {
|
|
2437
2427
|
return Object.keys(MimeTypes);
|
|
@@ -4298,6 +4288,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
4298
4288
|
}]
|
|
4299
4289
|
}] });
|
|
4300
4290
|
|
|
4291
|
+
class PicturesByGroupIdPipe {
|
|
4292
|
+
transform(value, groupId) {
|
|
4293
|
+
if (!value || !value.length) {
|
|
4294
|
+
return [];
|
|
4295
|
+
}
|
|
4296
|
+
return value.filter((c) => c.groupId === groupId);
|
|
4297
|
+
}
|
|
4298
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: PicturesByGroupIdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4299
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.6", ngImport: i0, type: PicturesByGroupIdPipe, isStandalone: false, name: "picturesByGroupId" }); }
|
|
4300
|
+
}
|
|
4301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: PicturesByGroupIdPipe, decorators: [{
|
|
4302
|
+
type: Pipe,
|
|
4303
|
+
args: [{
|
|
4304
|
+
name: 'picturesByGroupId',
|
|
4305
|
+
standalone: false
|
|
4306
|
+
}]
|
|
4307
|
+
}] });
|
|
4308
|
+
|
|
4301
4309
|
class ApiService {
|
|
4302
4310
|
constructor() {
|
|
4303
4311
|
this.portalLoginUrl = `/api/auth/portal/login`;
|
|
@@ -4824,6 +4832,7 @@ class FormPanelService extends BaseComponent {
|
|
|
4824
4832
|
if (!items) {
|
|
4825
4833
|
return [];
|
|
4826
4834
|
}
|
|
4835
|
+
let groupIndex = 10;
|
|
4827
4836
|
// در صورتی که در موبایل باشد دو دکمه نمایش داده شود از دکمه های کاربر و فرآیندی
|
|
4828
4837
|
// در صورتی که دکمه ی وجود نداشت فقط دکمه ذخیره نمایش داده شود
|
|
4829
4838
|
// در حالتهای دیگر ابتدا دکمه های کاربری و فرآیندی و بعد دکمه های تعریف شده سیستم نمایش داده میشود.
|
|
@@ -4840,7 +4849,7 @@ class FormPanelService extends BaseComponent {
|
|
|
4840
4849
|
const nonStringItems = newItems.filter((c) => typeof c !== 'string');
|
|
4841
4850
|
const t = nonStringItems.find((c) => !c.isBuiltin && !c.IAmMenu);
|
|
4842
4851
|
if (t) {
|
|
4843
|
-
t.
|
|
4852
|
+
t.overflowPriority = 'high';
|
|
4844
4853
|
}
|
|
4845
4854
|
// let nonBuiltinCount = 0;
|
|
4846
4855
|
// nonStringItems.forEach((item) => {
|
|
@@ -4850,13 +4859,13 @@ class FormPanelService extends BaseComponent {
|
|
|
4850
4859
|
// const inFooter = BarsaApi.Common.Util.TryGetValue(item, 'Data.CustomUi.Parameters.InFooter', false);
|
|
4851
4860
|
// if (item.isBuiltin || inFooter) {
|
|
4852
4861
|
// // سیستمی
|
|
4853
|
-
// item.
|
|
4862
|
+
// item.overflowPriority = 'always';
|
|
4854
4863
|
// } else {
|
|
4855
4864
|
// if (nonBuiltinCount > 1) {
|
|
4856
4865
|
// // دکمه های کاربری که بیشتر از دو هستند
|
|
4857
|
-
// item.
|
|
4866
|
+
// item.overflowPriority = 'low';
|
|
4858
4867
|
// } else {
|
|
4859
|
-
// item.
|
|
4868
|
+
// item.overflowPriority = 'low';
|
|
4860
4869
|
// }
|
|
4861
4870
|
// nonBuiltinCount++;
|
|
4862
4871
|
// }
|
|
@@ -4864,15 +4873,16 @@ class FormPanelService extends BaseComponent {
|
|
|
4864
4873
|
const noBuiltinItems = nonStringItems.filter((c) => typeof c === 'object' &&
|
|
4865
4874
|
!c.isBuiltin &&
|
|
4866
4875
|
BarsaApi.Common.Util.TryGetValue(c, 'Data.CustomUi.Parameters.InFooter', false) !== true);
|
|
4867
|
-
noBuiltinItems.forEach((item,
|
|
4868
|
-
|
|
4876
|
+
noBuiltinItems.forEach((item, _index) => {
|
|
4877
|
+
item.overflowPriority = 'high';
|
|
4878
|
+
item.overflowGroup = groupIndex++;
|
|
4869
4879
|
});
|
|
4870
4880
|
const nonBuiltinCount = noBuiltinItems.length;
|
|
4871
4881
|
if (nonBuiltinCount === 0) {
|
|
4872
4882
|
// اگر هیچ دکمه کاربری وجود نداشت
|
|
4873
4883
|
nonStringItems.forEach((item, _) => {
|
|
4874
4884
|
if (item.itemId === 'Save') {
|
|
4875
|
-
item.
|
|
4885
|
+
item.overflowPriority = 'never';
|
|
4876
4886
|
}
|
|
4877
4887
|
});
|
|
4878
4888
|
}
|
|
@@ -4882,10 +4892,12 @@ class FormPanelService extends BaseComponent {
|
|
|
4882
4892
|
const save = saveAndClose.menu.items[0];
|
|
4883
4893
|
if (save) {
|
|
4884
4894
|
save.isBuiltin = true;
|
|
4885
|
-
save.
|
|
4895
|
+
save.overflowPriority = nonBuiltinCount === 0 ? 'never' : 'always';
|
|
4886
4896
|
newItems.push(save);
|
|
4887
4897
|
if (saveAndNew) {
|
|
4888
4898
|
save.IAmMenu = true;
|
|
4899
|
+
save.overflowPriority = 'low';
|
|
4900
|
+
save.overflowGroup = 1;
|
|
4889
4901
|
save.menu = { items: [{ ...saveAndNew }] };
|
|
4890
4902
|
newItems = newItems.filter((c) => c.itemId !== 'SaveAndNew');
|
|
4891
4903
|
}
|
|
@@ -4904,13 +4916,15 @@ class FormPanelService extends BaseComponent {
|
|
|
4904
4916
|
];
|
|
4905
4917
|
const moveNextIndex = newItems.findIndex((c) => c.itemId === 'MoveNext');
|
|
4906
4918
|
if (moveNextIndex > -1) {
|
|
4907
|
-
newItems[moveNextIndex].
|
|
4919
|
+
newItems[moveNextIndex].overflowPriority = 'always';
|
|
4920
|
+
newItems[moveNextIndex].overflowGroup = 2;
|
|
4908
4921
|
const mos = newItems.splice(moveNextIndex - 1, 2);
|
|
4909
4922
|
newItems = [...mos, ...newItems];
|
|
4910
4923
|
}
|
|
4911
4924
|
const movePrevIndex = newItems.findIndex((c) => c.itemId === 'MovePrev');
|
|
4912
4925
|
if (movePrevIndex > -1) {
|
|
4913
|
-
newItems[movePrevIndex].
|
|
4926
|
+
newItems[movePrevIndex].overflowGroup = 2;
|
|
4927
|
+
newItems[movePrevIndex].overflowPriority = 'always';
|
|
4914
4928
|
}
|
|
4915
4929
|
// check toolbaritems in footer property
|
|
4916
4930
|
newItems.forEach((c) => {
|
|
@@ -5867,7 +5881,7 @@ function reportRoutes(authGuard = false) {
|
|
|
5867
5881
|
return {
|
|
5868
5882
|
path: 'report/:id',
|
|
5869
5883
|
canActivate: authGuard ? [AuthGuard] : [],
|
|
5870
|
-
loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-
|
|
5884
|
+
loadChildren: () => import('./barsa-novin-ray-core-barsa-report-page.module-CCt7xhgu.mjs').then((m) => m.BarsaReportPageModule),
|
|
5871
5885
|
resolve: {
|
|
5872
5886
|
breadcrumb: ReportBreadcrumbResolver
|
|
5873
5887
|
}
|
|
@@ -9432,6 +9446,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
9432
9446
|
type: Injectable
|
|
9433
9447
|
}] });
|
|
9434
9448
|
|
|
9449
|
+
class BaseSettingsService {
|
|
9450
|
+
constructor() {
|
|
9451
|
+
this.idb = inject(IdbService);
|
|
9452
|
+
}
|
|
9453
|
+
getSetting(key) {
|
|
9454
|
+
// تبدیل Promise به Observable
|
|
9455
|
+
return from(this.idb.get('settings', key));
|
|
9456
|
+
}
|
|
9457
|
+
saveSetting(key, value) {
|
|
9458
|
+
return from(this.idb.set('settings', key, value));
|
|
9459
|
+
}
|
|
9460
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseSettingsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9461
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseSettingsService, providedIn: 'root' }); }
|
|
9462
|
+
}
|
|
9463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: BaseSettingsService, decorators: [{
|
|
9464
|
+
type: Injectable,
|
|
9465
|
+
args: [{ providedIn: 'root' }]
|
|
9466
|
+
}] });
|
|
9467
|
+
|
|
9468
|
+
class CalendarSettingsService extends BaseSettingsService {
|
|
9469
|
+
constructor() {
|
|
9470
|
+
super(...arguments);
|
|
9471
|
+
this.CALENDAR_KEY_PREFIX = 'cal_cfg_';
|
|
9472
|
+
// نگهداری وضعیت فعلی برای دسترسی سریع در UI
|
|
9473
|
+
this.configSubject = new BehaviorSubject(null);
|
|
9474
|
+
}
|
|
9475
|
+
get config$() {
|
|
9476
|
+
return this.configSubject.asObservable();
|
|
9477
|
+
}
|
|
9478
|
+
/**
|
|
9479
|
+
* بارگذاری تنظیمات و آپدیت کردن استریم
|
|
9480
|
+
*/
|
|
9481
|
+
getSetting(reportId) {
|
|
9482
|
+
// ۱. اول متد اصلی (پدر) را صدا میزنیم تا دیتا از IDB بیاید
|
|
9483
|
+
const key = `${this.CALENDAR_KEY_PREFIX}${reportId}`;
|
|
9484
|
+
return super.getSetting(key).pipe(tap$1((c) => this.configSubject.next(c)));
|
|
9485
|
+
}
|
|
9486
|
+
/**
|
|
9487
|
+
* ذخیره تنظیمات و اطلاعرسانی به تمام Subscribe کنندهها
|
|
9488
|
+
*/
|
|
9489
|
+
saveSetting(reportId, newConfig) {
|
|
9490
|
+
const key = `${this.CALENDAR_KEY_PREFIX}${reportId}`;
|
|
9491
|
+
const updatedConfig = { ...this.configSubject.value, ...newConfig };
|
|
9492
|
+
return super.saveSetting(key, updatedConfig).pipe(tap$1(() => this.configSubject.next(updatedConfig)));
|
|
9493
|
+
}
|
|
9494
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarSettingsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
9495
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarSettingsService, providedIn: 'root' }); }
|
|
9496
|
+
}
|
|
9497
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImport: i0, type: CalendarSettingsService, decorators: [{
|
|
9498
|
+
type: Injectable,
|
|
9499
|
+
args: [{ providedIn: 'root' }]
|
|
9500
|
+
}] });
|
|
9501
|
+
|
|
9435
9502
|
class FieldBaseComponent extends BaseComponent {
|
|
9436
9503
|
get customFieldInfo() {
|
|
9437
9504
|
return this.context.Setting.CustomFieldInfo;
|
|
@@ -18297,7 +18364,8 @@ const services = [
|
|
|
18297
18364
|
BarsaStorageService,
|
|
18298
18365
|
ServiceWorkerCommuncationService,
|
|
18299
18366
|
ApplicationCtrlrService,
|
|
18300
|
-
PushNotificationService
|
|
18367
|
+
PushNotificationService,
|
|
18368
|
+
CalendarSettingsService
|
|
18301
18369
|
];
|
|
18302
18370
|
const pipes = [
|
|
18303
18371
|
NumeralPipe,
|
|
@@ -18357,7 +18425,8 @@ const pipes = [
|
|
|
18357
18425
|
SplitPipe,
|
|
18358
18426
|
DynamicDarkColorPipe,
|
|
18359
18427
|
ChunkArrayPipe,
|
|
18360
|
-
MapToChatMessagePipe
|
|
18428
|
+
MapToChatMessagePipe,
|
|
18429
|
+
PicturesByGroupIdPipe
|
|
18361
18430
|
];
|
|
18362
18431
|
const functionL1 = async function () {
|
|
18363
18432
|
if (BarsaApi.LoginFormData.Culture === 'fa-IR') {
|
|
@@ -18541,7 +18610,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
18541
18610
|
SplitPipe,
|
|
18542
18611
|
DynamicDarkColorPipe,
|
|
18543
18612
|
ChunkArrayPipe,
|
|
18544
|
-
MapToChatMessagePipe,
|
|
18613
|
+
MapToChatMessagePipe,
|
|
18614
|
+
PicturesByGroupIdPipe, PlaceHolderDirective,
|
|
18545
18615
|
NumbersOnlyInputDirective,
|
|
18546
18616
|
RenderUlvViewerDirective,
|
|
18547
18617
|
RenderUlvPaginDirective,
|
|
@@ -18683,7 +18753,8 @@ class BarsaNovinRayCoreModule extends BaseModule {
|
|
|
18683
18753
|
SplitPipe,
|
|
18684
18754
|
DynamicDarkColorPipe,
|
|
18685
18755
|
ChunkArrayPipe,
|
|
18686
|
-
MapToChatMessagePipe,
|
|
18756
|
+
MapToChatMessagePipe,
|
|
18757
|
+
PicturesByGroupIdPipe, PlaceHolderDirective,
|
|
18687
18758
|
NumbersOnlyInputDirective,
|
|
18688
18759
|
RenderUlvViewerDirective,
|
|
18689
18760
|
RenderUlvPaginDirective,
|
|
@@ -18764,5 +18835,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
18764
18835
|
* Generated bundle index. Do not edit.
|
|
18765
18836
|
*/
|
|
18766
18837
|
|
|
18767
|
-
export { StopPropagationDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, ItemsRendererDirective as G, NumbersOnlyInputDirective as H, ImageLazyDirective as I, PlaceHolderDirective as J, RenderUlvViewerDirective as K, RenderUlvPaginDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, UntilInViewDirective as O, PortalPageComponent as P, CopyDirective as Q, ReportEmptyPageComponent as R, EllapsisTextDirective as S, TableResizerDirective as T, UlvCommandDirective as U, FillEmptySpaceDirective as V, WorfkflowwChoiceCommandDirective as W, FormCloseDirective as X, MobileDirective as Y, BodyClickDirective as Z, PreventDefaultDirective as _, EmptyPageComponent as a, ColumnCustomComponentPipe as a$, CountDownDirective as a0, RouteFormChangeDirective as a1, DynamicStyleDirective as a2, NowraptextDirective as a3, LabelmandatoryDirective as a4, AbsoluteDivBodyDirective as a5, LoadExternalFilesDirective as a6, RenderUlvDirective as a7, PrintFilesDirective as a8, SaveImageDirective as a9, RemoveNewlinePipe as aA, MoValuePipe as aB, FilterPipe as aC, FilterTabPipe as aD, MoReportValueConcatPipe as aE, FilterStringPipe as aF, SortPipe as aG, BbbTranslatePipe as aH, BarsaIconDictPipe as aI, FileInfoCountPipe as aJ, ControlUiPipe as aK, VisibleValuePipe as aL, FilterToolbarControlPipe as aM, MultipleGroupByPipe as aN, PictureFieldSourcePipe as aO, FioriIconPipe as aP, CanUploadFilePipe as aQ, ListCountPipe as aR, TotalSummaryPipe as aS, MergeFieldsToColumnsPipe as aT, FindColumnByDbNamePipe as aU, FilterColumnsByDetailsPipe as aV, MoInfoUlvMoListPipe as aW, ReversePipe as aX, ColumnCustomUiPipe as aY, SanitizeTextPipe as aZ, MoInfoUlvPagingPipe as a_, WebOtpDirective as aa, SplideSliderDirective as ab, DynamicRootVariableDirective as ac, HorizontalResponsiveDirective as ad, MeasureFormTitleWidthDirective as ae, OverflowTextDirective as af, ShortcutRegisterDirective as ag, ShortcutHandlerDirective as ah, BarsaReadonlyDirective as ai, ResizeObserverDirective as aj, ColumnValueDirective as ak, ScrollToSelectedDirective as al, ScrollPersistDirective as am, TooltipDirective as an, SimplebarDirective as ao, LeafletLongPressDirective as ap, ResizeHandlerDirective as aq, SafeBottomDirective as ar, MoReportValuePipe as as, NumeralPipe as at, GroupByPipe as au, ContextMenuPipe as av, HeaderFacetValuePipe as aw, SeperatorFixPipe as ax, ConvertToStylePipe as ay, TlbButtonsPipe as az, PortalPageSidebarComponent as b, PortalReportPageResolver as b$, ColumnValuePipe as b0, ColumnIconPipe as b1, RowNumberPipe as b2, ComboRowImagePipe as b3, IsExpandedNodePipe as b4, ThImageOrIconePipe as b5, FindPreviewColumnPipe as b6, ReplacePipe as b7, FilterWorkflowInMobilePipe as b8, HideColumnsInmobilePipe as b9, UploadService as bA, NetworkStatusService as bB, AudioRecordingService as bC, VideoRecordingService as bD, LocalStorageService as bE, IndexedDbService as bF, BarsaStorageService as bG, PromptUpdateService as bH, NotificationService as bI, ServiceWorkerNotificationService as bJ, ColumnService as bK, ServiceWorkerCommuncationService as bL, SaveScrollPositionService as bM, RoutingService as bN, GroupByService as bO, LayoutMainContentService as bP, TabpageService as bQ, InMemoryStorageService as bR, ShellbarHeightService as bS, ApplicationCtrlrService as bT, PushCheckService as bU, IdbService as bV, PushNotificationService as bW, CardViewService as bX, PortalDynamicPageResolver as bY, PortalFormPageResolver as bZ, PortalPageResolver as b_, StringToNumberPipe as ba, ColumnValueOfParametersPipe as bb, HideAcceptCancelButtonsPipe as bc, FilterInlineActionListPipe as bd, IsImagePipe as be, ToolbarSettingsPipe as bf, CardMediaSizePipe as bg, LabelStarTrimPipe as bh, SplitPipe as bi, DynamicDarkColorPipe as bj, ChunkArrayPipe as bk, MapToChatMessagePipe as bl, ApiService as bm, BreadcrumbService as bn, CustomInjector as bo, DialogParams as bp, BarsaDialogService as bq, FormPanelService as br, FormService as bs, ContainerService as bt, HorizontalLayoutService as bu, LayoutService as bv, LogService as bw, PortalService as bx, UiService as by, UlvMainService as bz, BaseDynamicComponent as c, ReportBaseInfo as c$, TileGroupBreadcrumResolver as c0, LoginSettingsResolver as c1, ReportBreadcrumbResolver as c2, DateService as c3, DateHijriService as c4, DateMiladiService as c5, DateShamsiService as c6, FormNewComponent as c7, ReportContainerComponent as c8, FormComponent as c9, GeneralControlInfoModel as cA, StringControlInfoModel as cB, RichStringControlInfoModel as cC, NumberControlInfoModel as cD, FilePictureInfoModel as cE, FileControlInfoModel as cF, CommandControlInfoModel as cG, IconControlInfoModel as cH, PictureFileControlInfoModel as cI, GaugeControlInfoModel as cJ, RelationListControlInfoModel as cK, HistoryControlInfoModel as cL, RabetehAkseTakiListiControlInfoModel as cM, RelatedReportControlInfoModel as cN, CodeEditorControlInfoModel as cO, EnumControlInfoModel as cP, RowDataOption as cQ, DateTimeControlInfoModel as cR, BoolControlInfoModel as cS, CalculateControlInfoModel as cT, SubformControlInfoModel as cU, LinearListControlInfoModel as cV, ListRelationModel as cW, SingleRelationControlInfoModel as cX, MetaobjectDataModel as cY, MoForReportModelBase as cZ, MoForReportModel as c_, FieldUiComponent as ca, BarsaSapUiFormPageModule as cb, ReportNavigatorComponent as cc, BaseController as cd, ViewBase as ce, ModalRootComponent as cf, ButtonLoadingComponent as cg, UnlimitSessionComponent as ch, SplitterComponent as ci, APP_VERSION as cj, DIALOG_SERVICE as ck, FORM_DIALOG_COMPONENT as cl, NOTIFICATAION_POPUP_SERVER as cm, TOAST_SERVICE as cn, NOTIFICATION_WEBWORKER_FACTORY as co, FieldBaseComponent as cp, FormBaseComponent as cq, FormToolbarBaseComponent as cr, SystemBaseComponent as cs, ReportBaseComponent as ct, ReportItemBaseComponent as cu, ApplicationBaseComponent as cv, LayoutItemBaseComponent as cw, LayoutPanelBaseComponent as cx, PageBaseComponent as cy, NumberBaseComponent as cz, DynamicFormComponent as d, checkPermission as d$, ReportExtraInfo as d0, MetaobjectRelationModel as d1, FieldInfoTypeEnum as d2, BaseReportModel as d3, DefaultCommandsAccessValue as d4, CustomCommand as d5, ReportModel as d6, ReportListModel as d7, ReportFormModel as d8, ReportCalendarModel as d9, calculateColumnContent as dA, calculateColumnWidth as dB, setColumnWidthByMaxMoContentWidth as dC, calculateMoDataListContentWidthByColumnName as dD, calculateFreeColumnSize as dE, calculateColumnWidthFitToContainer as dF, calcContextMenuWidth as dG, RotateImage as dH, isInLocalMode as dI, getLabelWidth as dJ, getColumnValueOfMoDataList as dK, throwIfAlreadyLoaded as dL, measureText2 as dM, measureText as dN, measureTextBy as dO, genrateInlineMoId as dP, enumValueToStringSize as dQ, isVersionBiggerThan as dR, compareVersions as dS, scrollToElement as dT, executeUlvCommandHandler as dU, getUniqueId as dV, getDateService as dW, getAllItemsPerChildren as dX, setOneDepthLevel as dY, isFirefox as dZ, getImagePath as d_, ReportTreeModel as da, ReportViewColumn as db, DefaultGridSetting as dc, GridSetting as dd, ColSetting as de, SortSetting as df, ReportField as dg, DateRanges as dh, SortDirection as di, SelectionMode as dj, UlvHeightSizeType as dk, FilesValidationHelper as dl, BarsaApi as dm, ReportViewBaseComponent as dn, FormPropsBaseComponent as dp, LinearListHelper as dq, PageWithFormHandlerBaseComponent as dr, FormPageBaseComponent as ds, FormPageComponent as dt, BaseColumnPropsComponent as du, TilePropsComponent as dv, FormFieldReportPageComponent as dw, BaseUlvSettingComponent as dx, TableHeaderWidthMode as dy, setTableThWidth as dz, DynamicItemComponent as e, number_only as e$, fixUnclosedParentheses as e0, isFunction as e1, DeviceWidth as e2, getHeaderValue as e3, elementInViewport2 as e4, PreventDefaulEvent as e5, stopPropagation as e6, getParentHeight as e7, getComponentDefined as e8, isSafari as e9, getLayoutControl as eA, getControlList as eB, shallowEqual as eC, toNumber as eD, InputNumber as eE, AffixRespondEvents as eF, isTargetWindow as eG, getTargetRect as eH, getFieldValue as eI, availablePrefixes as eJ, requestAnimationFramePolyfill as eK, ExecuteDynamicCommand as eL, ExecuteWorkflowChoiceDef as eM, getRequestAnimationFrame as eN, cancelRequestAnimationFrame as eO, easeInOutCubic as eP, WordMimeType as eQ, ImageMimeType as eR, PdfMimeType as eS, AllFilesMimeType as eT, VideoMimeType as eU, AudioMimeType as eV, MimeTypes as eW, GetContentType as eX, GetViewableExtensions as eY, ChangeLayoutInfoCustomUi as eZ, mobile_regex as e_, isFF as ea, getDeviceIsPhone as eb, getDeviceIsDesktop as ec, getDeviceIsTablet as ed, getDeviceIsMobile as ee, getControlSizeMode as ef, formatBytes as eg, getValidExtension as eh, getIcon as ei, isImage as ej, GetAllColumnsSorted as ek, GetVisibleValue as el, GroupBy as em, FindGroup as en, FillAllLayoutControls as eo, FindToolbarItem as ep, FindLayoutSettingFromLayout94 as eq, GetAllHorizontalFromLayout94 as er, getGridSettings as es, getResetGridSettings as et, GetDefaultMoObjectInfo as eu, getLayout94ObjectInfo as ev, getFormSettings as ew, createFormPanelMetaConditions as ex, getNewMoGridEditor as ey, createGridEditorFormPanel as ez, formRoutes as f, forbiddenValidator as f0, GetImgTags as f1, ImagetoPrint as f2, PrintImage as f3, SaveImageToFile as f4, validateAllFormFields as f5, getFocusableTagNames as f6, addCssVariableToRoot as f7, flattenTree as f8, IsDarkMode as f9, nullOrUndefinedString as fa, fromEntries as fb, bodyClick as fc, removeDynamicStyle as fd, addDynamicVariableTo as fe, AddDynamicFormStyles as ff, RemoveDynamicFormStyles as fg, ContainerComponent as fh, IntersectionStatus as fi, fromIntersectionObserver as fj, CustomRouteReuseStrategy as fk, AuthGuard as fl, RedirectHomeGuard as fm, RootPageComponent as fn, ResizableComponent as fo, ResizableDirective as fp, ResizableModule as fq, PushBannerComponent as fr, BarsaNovinRayCoreModule as fs, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, BaseItemContentPropsComponent as j, CardBaseItemContentPropsComponent as k, BaseFormToolbaritemPropsComponent as l, DynamicFormToolbaritemComponent as m, DynamicLayoutComponent as n, DynamicTileGroupComponent as o, DynamicUlvToolbarComponent as p, DynamicUlvPagingComponent as q, reportRoutes as r, RootPortalComponent as s, BaseComponent as t, AttrRtlDirective as u, BaseDirective as v, ColumnResizerDirective as w, DynamicCommandDirective as x, EllipsifyDirective as y, IntersectionObserverDirective as z };
|
|
18768
|
-
//# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-
|
|
18838
|
+
export { StopPropagationDirective as $, AnchorScrollDirective as A, BaseModule as B, CardDynamicItemComponent as C, DynamicComponentService as D, EmptyPageWithRouterAndRouterOutletComponent as E, FieldDirective as F, ItemsRendererDirective as G, NumbersOnlyInputDirective as H, ImageLazyDirective as I, PlaceHolderDirective as J, RenderUlvViewerDirective as K, RenderUlvPaginDirective as L, MasterDetailsPageComponent as M, NotFoundComponent as N, UntilInViewDirective as O, PortalPageComponent as P, CopyDirective as Q, ReportEmptyPageComponent as R, EllapsisTextDirective as S, TableResizerDirective as T, UlvCommandDirective as U, FillEmptySpaceDirective as V, WorfkflowwChoiceCommandDirective as W, FormCloseDirective as X, MobileDirective as Y, BodyClickDirective as Z, PreventDefaultDirective as _, EmptyPageComponent as a, ColumnCustomComponentPipe as a$, CountDownDirective as a0, RouteFormChangeDirective as a1, DynamicStyleDirective as a2, NowraptextDirective as a3, LabelmandatoryDirective as a4, AbsoluteDivBodyDirective as a5, LoadExternalFilesDirective as a6, RenderUlvDirective as a7, PrintFilesDirective as a8, SaveImageDirective as a9, RemoveNewlinePipe as aA, MoValuePipe as aB, FilterPipe as aC, FilterTabPipe as aD, MoReportValueConcatPipe as aE, FilterStringPipe as aF, SortPipe as aG, BbbTranslatePipe as aH, BarsaIconDictPipe as aI, FileInfoCountPipe as aJ, ControlUiPipe as aK, VisibleValuePipe as aL, FilterToolbarControlPipe as aM, MultipleGroupByPipe as aN, PictureFieldSourcePipe as aO, FioriIconPipe as aP, CanUploadFilePipe as aQ, ListCountPipe as aR, TotalSummaryPipe as aS, MergeFieldsToColumnsPipe as aT, FindColumnByDbNamePipe as aU, FilterColumnsByDetailsPipe as aV, MoInfoUlvMoListPipe as aW, ReversePipe as aX, ColumnCustomUiPipe as aY, SanitizeTextPipe as aZ, MoInfoUlvPagingPipe as a_, WebOtpDirective as aa, SplideSliderDirective as ab, DynamicRootVariableDirective as ac, HorizontalResponsiveDirective as ad, MeasureFormTitleWidthDirective as ae, OverflowTextDirective as af, ShortcutRegisterDirective as ag, ShortcutHandlerDirective as ah, BarsaReadonlyDirective as ai, ResizeObserverDirective as aj, ColumnValueDirective as ak, ScrollToSelectedDirective as al, ScrollPersistDirective as am, TooltipDirective as an, SimplebarDirective as ao, LeafletLongPressDirective as ap, ResizeHandlerDirective as aq, SafeBottomDirective as ar, MoReportValuePipe as as, NumeralPipe as at, GroupByPipe as au, ContextMenuPipe as av, HeaderFacetValuePipe as aw, SeperatorFixPipe as ax, ConvertToStylePipe as ay, TlbButtonsPipe as az, PortalPageSidebarComponent as b, PortalDynamicPageResolver as b$, ColumnValuePipe as b0, ColumnIconPipe as b1, RowNumberPipe as b2, ComboRowImagePipe as b3, IsExpandedNodePipe as b4, ThImageOrIconePipe as b5, FindPreviewColumnPipe as b6, ReplacePipe as b7, FilterWorkflowInMobilePipe as b8, HideColumnsInmobilePipe as b9, UlvMainService as bA, UploadService as bB, NetworkStatusService as bC, AudioRecordingService as bD, VideoRecordingService as bE, LocalStorageService as bF, IndexedDbService as bG, BarsaStorageService as bH, PromptUpdateService as bI, NotificationService as bJ, ServiceWorkerNotificationService as bK, ColumnService as bL, ServiceWorkerCommuncationService as bM, SaveScrollPositionService as bN, RoutingService as bO, GroupByService as bP, LayoutMainContentService as bQ, TabpageService as bR, InMemoryStorageService as bS, ShellbarHeightService as bT, ApplicationCtrlrService as bU, PushCheckService as bV, IdbService as bW, PushNotificationService as bX, CardViewService as bY, BaseSettingsService as bZ, CalendarSettingsService as b_, StringToNumberPipe as ba, ColumnValueOfParametersPipe as bb, HideAcceptCancelButtonsPipe as bc, FilterInlineActionListPipe as bd, IsImagePipe as be, ToolbarSettingsPipe as bf, CardMediaSizePipe as bg, LabelStarTrimPipe as bh, SplitPipe as bi, DynamicDarkColorPipe as bj, ChunkArrayPipe as bk, MapToChatMessagePipe as bl, PicturesByGroupIdPipe as bm, ApiService as bn, BreadcrumbService as bo, CustomInjector as bp, DialogParams as bq, BarsaDialogService as br, FormPanelService as bs, FormService as bt, ContainerService as bu, HorizontalLayoutService as bv, LayoutService as bw, LogService as bx, PortalService as by, UiService as bz, BaseDynamicComponent as c, MetaobjectDataModel as c$, PortalFormPageResolver as c0, PortalPageResolver as c1, PortalReportPageResolver as c2, TileGroupBreadcrumResolver as c3, LoginSettingsResolver as c4, ReportBreadcrumbResolver as c5, DateService as c6, DateHijriService as c7, DateMiladiService as c8, DateShamsiService as c9, LayoutPanelBaseComponent as cA, PageBaseComponent as cB, NumberBaseComponent as cC, GeneralControlInfoModel as cD, StringControlInfoModel as cE, RichStringControlInfoModel as cF, NumberControlInfoModel as cG, FilePictureInfoModel as cH, FileControlInfoModel as cI, CommandControlInfoModel as cJ, IconControlInfoModel as cK, PictureFileControlInfoModel as cL, GaugeControlInfoModel as cM, RelationListControlInfoModel as cN, HistoryControlInfoModel as cO, RabetehAkseTakiListiControlInfoModel as cP, RelatedReportControlInfoModel as cQ, CodeEditorControlInfoModel as cR, EnumControlInfoModel as cS, RowDataOption as cT, DateTimeControlInfoModel as cU, BoolControlInfoModel as cV, CalculateControlInfoModel as cW, SubformControlInfoModel as cX, LinearListControlInfoModel as cY, ListRelationModel as cZ, SingleRelationControlInfoModel as c_, FormNewComponent as ca, ReportContainerComponent as cb, FormComponent as cc, FieldUiComponent as cd, BarsaSapUiFormPageModule as ce, ReportNavigatorComponent as cf, BaseController as cg, ViewBase as ch, ModalRootComponent as ci, ButtonLoadingComponent as cj, UnlimitSessionComponent as ck, SplitterComponent as cl, APP_VERSION as cm, DIALOG_SERVICE as cn, FORM_DIALOG_COMPONENT as co, NOTIFICATAION_POPUP_SERVER as cp, TOAST_SERVICE as cq, NOTIFICATION_WEBWORKER_FACTORY as cr, FieldBaseComponent as cs, FormBaseComponent as ct, FormToolbarBaseComponent as cu, SystemBaseComponent as cv, ReportBaseComponent as cw, ReportItemBaseComponent as cx, ApplicationBaseComponent as cy, LayoutItemBaseComponent as cz, DynamicFormComponent as d, setOneDepthLevel as d$, MoForReportModelBase as d0, MoForReportModel as d1, ReportBaseInfo as d2, ReportExtraInfo as d3, MetaobjectRelationModel as d4, FieldInfoTypeEnum as d5, BaseReportModel as d6, DefaultCommandsAccessValue as d7, CustomCommand as d8, ReportModel as d9, BaseUlvSettingComponent as dA, TableHeaderWidthMode as dB, setTableThWidth as dC, calculateColumnContent as dD, calculateColumnWidth as dE, setColumnWidthByMaxMoContentWidth as dF, calculateMoDataListContentWidthByColumnName as dG, calculateFreeColumnSize as dH, calculateColumnWidthFitToContainer as dI, calcContextMenuWidth as dJ, RotateImage as dK, isInLocalMode as dL, getLabelWidth as dM, getColumnValueOfMoDataList as dN, throwIfAlreadyLoaded as dO, measureText2 as dP, measureText as dQ, measureTextBy as dR, genrateInlineMoId as dS, enumValueToStringSize as dT, isVersionBiggerThan as dU, compareVersions as dV, scrollToElement as dW, executeUlvCommandHandler as dX, getUniqueId as dY, getDateService as dZ, getAllItemsPerChildren as d_, ReportListModel as da, ReportFormModel as db, ReportCalendarModel as dc, ReportTreeModel as dd, ReportViewColumn as de, DefaultGridSetting as df, GridSetting as dg, ColSetting as dh, SortSetting as di, ReportField as dj, DateRanges as dk, SortDirection as dl, SelectionMode as dm, UlvHeightSizeType as dn, FilesValidationHelper as dp, BarsaApi as dq, ReportViewBaseComponent as dr, FormPropsBaseComponent as ds, LinearListHelper as dt, PageWithFormHandlerBaseComponent as du, FormPageBaseComponent as dv, FormPageComponent as dw, BaseColumnPropsComponent as dx, TilePropsComponent as dy, FormFieldReportPageComponent as dz, DynamicItemComponent as e, GetViewableExtensions as e$, isFirefox as e0, getImagePath as e1, checkPermission as e2, fixUnclosedParentheses as e3, isFunction as e4, DeviceWidth as e5, getHeaderValue as e6, elementInViewport2 as e7, PreventDefaulEvent as e8, stopPropagation as e9, createFormPanelMetaConditions as eA, getNewMoGridEditor as eB, createGridEditorFormPanel as eC, getLayoutControl as eD, getControlList as eE, shallowEqual as eF, toNumber as eG, InputNumber as eH, AffixRespondEvents as eI, isTargetWindow as eJ, getTargetRect as eK, getFieldValue as eL, availablePrefixes as eM, requestAnimationFramePolyfill as eN, ExecuteDynamicCommand as eO, ExecuteWorkflowChoiceDef as eP, getRequestAnimationFrame as eQ, cancelRequestAnimationFrame as eR, easeInOutCubic as eS, WordMimeType as eT, ImageMimeType as eU, PdfMimeType as eV, AllFilesMimeType as eW, VideoMimeType as eX, AudioMimeType as eY, MimeTypes as eZ, GetContentType as e_, getParentHeight as ea, getComponentDefined as eb, isSafari as ec, isFF as ed, getDeviceIsPhone as ee, getDeviceIsDesktop as ef, getDeviceIsTablet as eg, getDeviceIsMobile as eh, getControlSizeMode as ei, formatBytes as ej, getValidExtension as ek, getIcon as el, isImage as em, GetAllColumnsSorted as en, GetVisibleValue as eo, GroupBy as ep, FindGroup as eq, FillAllLayoutControls as er, FindToolbarItem as es, FindLayoutSettingFromLayout94 as et, GetAllHorizontalFromLayout94 as eu, getGridSettings as ev, getResetGridSettings as ew, GetDefaultMoObjectInfo as ex, getLayout94ObjectInfo as ey, getFormSettings as ez, formRoutes as f, ChangeLayoutInfoCustomUi as f0, mobile_regex as f1, number_only as f2, forbiddenValidator as f3, GetImgTags as f4, ImagetoPrint as f5, PrintImage as f6, SaveImageToFile as f7, validateAllFormFields as f8, getFocusableTagNames as f9, addCssVariableToRoot as fa, flattenTree as fb, IsDarkMode as fc, nullOrUndefinedString as fd, fromEntries as fe, bodyClick as ff, removeDynamicStyle as fg, addDynamicVariableTo as fh, AddDynamicFormStyles as fi, RemoveDynamicFormStyles as fj, ContainerComponent as fk, IntersectionStatus as fl, fromIntersectionObserver as fm, CustomRouteReuseStrategy as fn, AuthGuard as fo, RedirectHomeGuard as fp, RootPageComponent as fq, ResizableComponent as fr, ResizableDirective as fs, ResizableModule as ft, PushBannerComponent as fu, BarsaNovinRayCoreModule as fv, BaseViewPropsComponent as g, BaseViewContentPropsComponent as h, BaseViewItemPropsComponent as i, BaseItemContentPropsComponent as j, CardBaseItemContentPropsComponent as k, BaseFormToolbaritemPropsComponent as l, DynamicFormToolbaritemComponent as m, DynamicLayoutComponent as n, DynamicTileGroupComponent as o, DynamicUlvToolbarComponent as p, DynamicUlvPagingComponent as q, reportRoutes as r, RootPortalComponent as s, BaseComponent as t, AttrRtlDirective as u, BaseDirective as v, ColumnResizerDirective as w, DynamicCommandDirective as x, EllipsifyDirective as y, IntersectionObserverDirective as z };
|
|
18839
|
+
//# sourceMappingURL=barsa-novin-ray-core-barsa-novin-ray-core-DCtZV40a.mjs.map
|