Refactor import path
This commit is contained in:
@@ -2,7 +2,7 @@ import { Component } from '@angular/core';
|
||||
import { ChartModule } from 'primeng/chart';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { debounceTime, Subscription } from 'rxjs';
|
||||
import { LayoutService } from '@/src/app/layout/service/app.layout.service';
|
||||
import { LayoutService } from '@/src/service/applayoutservice';
|
||||
|
||||
@Component({
|
||||
standalone:true,
|
||||
|
||||
@@ -25,8 +25,8 @@ import {MultiSelectModule} from "primeng/multiselect";
|
||||
import {ListboxModule} from "primeng/listbox";
|
||||
import {InputGroupAddonModule} from "primeng/inputgroupaddon";
|
||||
import {TextareaModule} from "primeng/textarea";
|
||||
import {CountryService} from "../../app/demo/service/country.service";
|
||||
import {NodeService} from "../../app/demo/service/node.service";
|
||||
import { CountryService } from '@/src/service/country.service';
|
||||
import { NodeService } from '@/src/service/node.service';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
@@ -234,7 +234,8 @@ import {NodeService} from "../../app/demo/service/node.service";
|
||||
</p-inputgroup>
|
||||
</div>
|
||||
</div>
|
||||
</p-fluid>`
|
||||
</p-fluid>`,
|
||||
providers: [CountryService, NodeService]
|
||||
})
|
||||
export class InputDoc implements OnInit {
|
||||
floatValue: any = null;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { ProductService } from '@/src/app/demo/service/product.service';
|
||||
import { Product } from '@/src/app/demo/api/product';
|
||||
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { DataViewModule } from 'primeng/dataview';
|
||||
import { CommonModule } from '@angular/common';
|
||||
@@ -9,6 +8,7 @@ import { PickListModule } from 'primeng/picklist';
|
||||
import { OrderListModule } from 'primeng/orderlist';
|
||||
import { TagModule } from 'primeng/tag';
|
||||
import { ButtonModule } from 'primeng/button';
|
||||
import { Product, ProductService } from '@/src/service/product.service';
|
||||
|
||||
@Component({
|
||||
standalone:true,
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
import { Product } from '@/src/app/demo/api/product';
|
||||
import { PhotoService } from '@/src/app/demo/service/photo.service';
|
||||
import { ProductService } from '@/src/app/demo/service/product.service';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { ButtonModule } from 'primeng/button';
|
||||
@@ -8,6 +5,8 @@ import { CarouselModule } from 'primeng/carousel';
|
||||
import { GalleriaModule } from 'primeng/galleria';
|
||||
import { ImageModule } from 'primeng/image';
|
||||
import { TagModule } from 'primeng/tag';
|
||||
import { Product, ProductService } from '@/src/service/product.service';
|
||||
import { PhotoService } from '@/src/service/photo.service';
|
||||
|
||||
@Component({
|
||||
standalone:true,
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import { Product } from '@/src/app/demo/api/product';
|
||||
import { ProductService } from '@/src/app/demo/service/product.service';
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { ConfirmationService, MessageService } from 'primeng/api';
|
||||
import { ButtonModule } from 'primeng/button';
|
||||
@@ -8,9 +6,9 @@ import { ToastModule } from 'primeng/toast';
|
||||
import { DrawerModule } from 'primeng/drawer';
|
||||
import { Popover, PopoverModule } from 'primeng/popover';
|
||||
import { ConfirmPopupModule } from 'primeng/confirmpopup';
|
||||
import { OverlayPanel } from 'primeng/overlaypanel';
|
||||
import { InputText, InputTextModule } from 'primeng/inputtext';
|
||||
import { InputTextModule } from 'primeng/inputtext';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { Product, ProductService } from '@/src/service/product.service';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import { Product } from '@/src/app/demo/api/product';
|
||||
import { ProductService } from '@/src/app/demo/service/product.service';
|
||||
import { Component, ElementRef, OnInit, ViewChild } from '@angular/core';
|
||||
import { ConfirmationService, MessageService } from 'primeng/api';
|
||||
import { InputTextModule } from 'primeng/inputtext';
|
||||
@@ -10,12 +8,12 @@ import { Table, TableModule } from 'primeng/table';
|
||||
import { ProgressBarModule } from 'primeng/progressbar';
|
||||
import { ToggleButtonModule } from 'primeng/togglebutton';
|
||||
import { ToastModule } from 'primeng/toast';
|
||||
import { Customer, Representative } from '@/src/app/demo/api/customer';
|
||||
import { CustomerService } from '@/src/app/demo/service/customer.service';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { ButtonModule } from 'primeng/button';
|
||||
import { RatingModule } from 'primeng/rating';
|
||||
import { Customer, CustomerService, Representative } from '@/src/service/customer.service';
|
||||
import { Product, ProductService } from '@/src/service/product.service';
|
||||
|
||||
interface expandedRows {
|
||||
[key: string]: boolean;
|
||||
@@ -332,7 +330,7 @@ interface expandedRows {
|
||||
providers: [ConfirmationService, MessageService]
|
||||
})
|
||||
export class TableDoc implements OnInit {
|
||||
|
||||
|
||||
customers1: Customer[] = [];
|
||||
|
||||
customers2: Customer[] = [];
|
||||
@@ -451,6 +449,6 @@ export class TableDoc implements OnInit {
|
||||
table.clear();
|
||||
this.filter.nativeElement.value = '';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ import {TreeModule} from "primeng/tree";
|
||||
import {FormsModule} from "@angular/forms";
|
||||
import {TreeTableModule} from "primeng/treetable";
|
||||
import {CommonModule} from "@angular/common";
|
||||
import {NodeService} from "../../app/demo/service/node.service";
|
||||
import { NodeService } from '@/src/service/node.service';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
|
||||
Reference in New Issue
Block a user