How to use the @covalent/core.LoadingType.Circular function in @covalent/core

To help you get started, we’ve selected a few @covalent/core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github saurabh1e / open-pos / src / app / inventory / tax / tax.component.ts View on Github external
constructor(
    private _titleService: Title,
    private _loadingService: TdLoadingService,
    private _taxService: TaxsService,
    private _userService: UsersService) {
    this._loadingService.create({
      name: 'products',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    });
  }
github saurabh1e / open-pos / src / app / inventory / salt / salt.component.ts View on Github external
constructor(
    private _titleService: Title,
    private _loadingService: TdLoadingService,
    private _saltService: SaltsService,
    private _userService: UsersService) {
    this._loadingService.create({
      name: 'products',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    });
  }
github saurabh1e / open-pos / src / app / staff / staff-detail / staff-detail.component.ts View on Github external
constructor(public dialogRef: MdDialogRef,
              private _userService: UsersService,
              private _roleService: RolesService,
              private _loadingService: TdLoadingService,) {
    this._loadingService.create({
      name: 'orders',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    });
  }
github saurabh1e / open-pos / src / app / inventory / salt / salt-form / salt-form.component.ts View on Github external
constructor(public dialogRef: MdDialogRef,
              private _loadingService: TdLoadingService,
              private _shopService: RetailShopsService,
              private _saltService: SaltsService) {
    this._loadingService.create({
      name: 'salt-form',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    }); }
github saurabh1e / open-pos / src / app / inventory / tag / tag.component.ts View on Github external
constructor(
    private _titleService: Title,
    private _loadingService: TdLoadingService,
    private _tagService: TagsService,
    private _userService: UsersService) {
    this._loadingService.create({
      name: 'products',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    });
  }
github saurabh1e / open-pos / src / app / inventory / tax / tax-form / tax-form.component.ts View on Github external
constructor(public dialogRef: MdDialogRef,
              private _loadingService: TdLoadingService,
              private _shopService: RetailShopsService,
              private _taxService: TaxsService) {
    this._loadingService.create({
      name: 'tax-form',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    }); }
github saurabh1e / open-pos / src / app / reporting / customer / customer.component.ts View on Github external
constructor(private _titleService: Title,
              private _loadingService: TdLoadingService,
              private _customerService: CustomerService,
              private _shopService: RetailShopsService,
              private _dialogService: TdDialogService) {
    this._loadingService.create({
      name: 'customer',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    });
  }
github saurabh1e / open-pos / src / app / reporting / order / order-detail / order-detail.component.ts View on Github external
constructor(public dialogRef: MdDialogRef,
              private _orderService: OrdersService,
              private _loadingService: TdLoadingService) {
    this._loadingService.create({
      name: 'order-detail',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    });

  }
github saurabh1e / open-pos / src / app / inventory / product / product.component.ts View on Github external
constructor(
              private _titleService: Title,
              private _loadingService: TdLoadingService,
              private _itemService: ItemsService,
              private _userService: UsersService) {
    this._loadingService.create({
      name: 'products',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    });
  }
github saurabh1e / open-pos / src / app / inventory / distributor / distributor.component.ts View on Github external
constructor(
    private _titleService: Title,
    private _loadingService: TdLoadingService,
    private _distributorService: DistributorService,
    private _userService: UsersService) {
    this._loadingService.create({
      name: 'products',
      type: LoadingType.Circular,
      mode: LoadingMode.Indeterminate,
      color: 'warn',
    });
  }