\\r\\n beta-users-details works!\\r\\n
\\r\\n\"","module.exports = \"\\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiIuLi8uLi8uLi8uLi9iZXRhLXVzZXJzLWRldGFpbHMvYmV0YS11c2Vycy1kZXRhaWxzLmNvbXBvbmVudC5zY3NzIn0= */\"","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'app-beta-users-details',\r\n templateUrl: './beta-users-details.component.html',\r\n styleUrls: ['./beta-users-details.component.scss']\r\n})\r\nexport class BetaUsersDetailsComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit() {\r\n }\r\n\r\n}\r\n","// Models\r\nexport { BaseModel } from './models/_base.model';\r\nexport { BaseDataSource } from './models/_base.datasource';\r\nexport { QueryParamsModel } from './models/query-models/query-params.model';\r\nexport { QueryResultsModel } from './models/query-models/query-results.model';\r\nexport { HttpExtenstionsModel } from './models/http-extentsions-model';\r\n// Utils\r\nexport { HttpUtilsService } from './utils/http-utils.service';\r\nexport { TypesUtilsService } from './utils/types-utils.service';\r\nexport { InterceptService } from './utils/intercept.service';\r\nexport { LayoutUtilsService, MessageType } from './utils/layout-utils.service';\r\n","// Angular\r\nimport { CollectionViewer, DataSource } from '@angular/cdk/collections';\r\n// RxJS\r\nimport { Observable, BehaviorSubject, combineLatest, Subscription, of } from 'rxjs';\r\n// CRUD\r\nimport { HttpExtenstionsModel } from './http-extentsions-model';\r\nimport { QueryParamsModel } from './query-models/query-params.model';\r\nimport { QueryResultsModel } from './query-models/query-results.model';\r\nimport { BaseModel } from './_base.model';\r\nimport { skip, distinctUntilChanged } from 'rxjs/operators';\r\n\r\n// Why not use MatTableDataSource?\r\n/* In this example, we will not be using the built-in MatTableDataSource because its designed for filtering,\r\n\tsorting and pagination of a client - side data array.\r\n\tRead the article: 'https://blog.angular-university.io/angular-material-data-table/'\r\n**/\r\nexport class BaseDataSource implements DataSource{{message}}
\\r\\n\\r\\n info-box works!\\r\\n
\\r\\n\"","module.exports = \"\\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiIuLi9kaWFsb2cvaW5mby1ib3gvaW5mby1ib3guY29tcG9uZW50LnNjc3MifQ== */\"","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'app-info-box',\r\n templateUrl: './info-box.component.html',\r\n styleUrls: ['./info-box.component.scss']\r\n})\r\nexport class InfoBoxComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit() {\r\n }\r\n\r\n}\r\n","import { Directive, ElementRef, OnInit, HostListener, Input, Output, EventEmitter } from '@angular/core';\r\nimport { ClipboardService } from 'ngx-clipboard';\r\nimport { MatSnackBar } from '@angular/material';\r\n\r\n@Directive({\r\n selector: '[CopyToClip]'\r\n})\r\nexport class CopyToClipDirective implements OnInit {\r\n @Input('CopyToClip') text: string;\r\n constructor(private elRef: ElementRef,\r\n private clipboardService: ClipboardService, public snackBar: MatSnackBar\r\n ) { }\r\n ngOnInit(): void {\r\n this.elRef.nativeElement.style.cursor = 'pointer';\r\n }\r\n @HostListener('click') me(eventData: Event) {\r\n event.preventDefault();\r\n \r\n if (this.text == null) return;\r\n this.clipboardService.copyFromContent(this.text);\r\n this.snackBar.open(\"با موفقیت کپی شد\", null, {\r\n duration: 2000,\r\n });\r\n }\r\n}\r\n","import { Directive, ElementRef } from '@angular/core';\r\n\r\n@Directive({\r\n selector: '[appMaximizModal]'\r\n})\r\nexport class MaximizModalDirective {\r\n\r\n constructor(private elRef: ElementRef) { }\r\n\r\n}\r\n\r\n","import * as jalaliMoment from \"jalali-moment\";\r\ndeclare global {\r\n interface String {\r\n FaToEnDigits(): string;\r\n }\r\n interface Date {\r\n EndOfDay(): Date;\r\n }\r\n}\r\nString.prototype.FaToEnDigits = function(): string {\r\n return String(this).toString().replace('۰','0')\r\n .replace('۱','1')\r\n .replace('۲','2')\r\n .replace('۳','3')\r\n .replace('۴','4')\r\n .replace('۵','5')\r\n .replace('۶','6')\r\n .replace('۷','7')\r\n .replace('۸','8')\r\n .replace('۹','9') ;\r\n}\r\n\r\nDate.prototype.EndOfDay=function():Date{\r\n return this;\r\n}\r\nexport {};\r\n","import { DateAdapter } from \"@angular/material\";\r\nimport * as jalaliMoment from \"jalali-moment\";\r\n\r\nexport const PERSIAN_DATE_FORMATS = {\r\n parse: {\r\n dateInput: \"jYYYY/jMM/jDD\"\r\n },\r\n display: {\r\n dateInput: \"jYYYY/jMM/jDD\",\r\n monthYearLabel: \"jYYYY jMMMM\",\r\n dateA11yLabel: \"jYYYY/jMM/jDD\",\r\n monthYearA11yLabel: \"jYYYY jMMMM\"\r\n }\r\n};\r\njalaliMoment.fn.toJSON = function () {\r\n return this.clone()\r\n .doAsGregorian()\r\n .format(\"YYYY/MM/DD\");\r\n};\r\nexport class MaterialPersianDateAdapter extends DateAdapter\\r\\n\\t\\t\\t\\t{{title}}\\r\\n\\t\\t\\t
\\r\\n\\t\\t\\t\\r\\n\\t\\t\\t\\t{{subtitle}}\\r\\n\\t\\t\\t
\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\t\\t{{title}}\\r\\n\\t\\t\\t
\\r\\n\\t\\t\\t\\r\\n\\t\\t\\t\\t{{subtitle}}\\r\\n\\t\\t\\t
\\r\\n\\t\\t\\t\\r\\n\\t\\t\\r\\n\\t\\t\\t\\t{{subtitle}}\\r\\n\\t\\t\\t
\\r\\n\\t\\t\\t\\r\\n\\t\\tدستگاه | \\r\\n{{item.Name}} | \\r\\nسیستم عامل | \\r\\n{{item.OsName}} | \\r\\nپلتفرم | \\r\\n{{item.Platform}} | \\r\\nمادربورد | \\r\\n{{item.Mainboard}} | \\r\\nآخرین آی پی | \\r\\n{{item.LastIp}} | \\r\\nآخرین ارتباط | \\r\\n{{item.LastConnected}} | \\r\\n\\r\\n | \\r\\n \\r\\n | \\r\\n
---|