cat-qw-lib 0.43.69 → 0.43.70
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/cat-qw-lib.mjs
CHANGED
|
@@ -2033,7 +2033,7 @@ class BaseContainerComponent {
|
|
|
2033
2033
|
this.service = service;
|
|
2034
2034
|
}
|
|
2035
2035
|
init() {
|
|
2036
|
-
this.service.initList()
|
|
2036
|
+
// this.service.initList()
|
|
2037
2037
|
}
|
|
2038
2038
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.4", ngImport: i0, type: BaseContainerComponent, deps: [{ token: BaseService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2039
2039
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.4", type: BaseContainerComponent, isStandalone: true, selector: "lib-base-container", ngImport: i0, template: "<p>base-container works!</p>\r\n", styles: [""] });
|
|
@@ -3161,11 +3161,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.4", ngImpor
|
|
|
3161
3161
|
type: Input
|
|
3162
3162
|
}] } });
|
|
3163
3163
|
|
|
3164
|
-
class QueueAdminListComponent
|
|
3164
|
+
class QueueAdminListComponent {
|
|
3165
3165
|
queueStore;
|
|
3166
3166
|
queueService;
|
|
3167
3167
|
constructor(queueStore, queueService) {
|
|
3168
|
-
super(queueService);
|
|
3169
3168
|
this.queueStore = queueStore;
|
|
3170
3169
|
this.queueService = queueService;
|
|
3171
3170
|
}
|
|
@@ -3173,7 +3172,6 @@ class QueueAdminListComponent extends BaseContainerComponent {
|
|
|
3173
3172
|
selectedQueue;
|
|
3174
3173
|
queueId;
|
|
3175
3174
|
ngOnInit() {
|
|
3176
|
-
this.init();
|
|
3177
3175
|
this.getAllQueueList();
|
|
3178
3176
|
}
|
|
3179
3177
|
getAllQueueList() {
|
|
@@ -3197,7 +3195,7 @@ class QueueAdminListComponent extends BaseContainerComponent {
|
|
|
3197
3195
|
}
|
|
3198
3196
|
}
|
|
3199
3197
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.4", ngImport: i0, type: QueueAdminListComponent, deps: [{ token: QueueStore }, { token: QueueService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3200
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.4", type: QueueAdminListComponent, isStandalone: false, selector: "lib-queue-admin-list",
|
|
3198
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.0.4", type: QueueAdminListComponent, isStandalone: false, selector: "lib-queue-admin-list", ngImport: i0, template: "<div class=\"container grid m-0\">\r\n <div class=\"col-12 xl:col-3 md:col-12\">\r\n <block-list\r\n [queueData]=\"queueList\"\r\n (queueDataById)=\"handleQueueId($event)\"\r\n ></block-list>\r\n </div>\r\n <div class=\"col-12 xl:col-3 md:col-12\">\r\n @if(selectedQueue){\r\n <div class=\"animation-duration-500 associated-list\">\r\n <queue-application-list\r\n [queueData]=\"selectedQueue\"\r\n ></queue-application-list>\r\n </div>\r\n }\r\n </div>\r\n \r\n <div class=\"xl:col-6 md:col-12\">\r\n <div class=\"searchbar-wrapper\">\r\n <queue-search-customer></queue-search-customer>\r\n </div>\r\n </div>\r\n </div>\r\n ", styles: [".custom-tabview .p-tabview-nav{display:flex}::ng-deep .custom-tabview .p-tabview-nav-content ul li{flex:1;max-width:25%}.scrollable{scroll-behavior:smooth;max-height:75vh}:host ::-webkit-scrollbar{width:6px}:host ::-webkit-scrollbar-track{background:transparent}:host ::-webkit-scrollbar-thumb{background-color:#868181;border-radius:20px}\n"], dependencies: [{ kind: "component", type: QueueSearchCustomerComponent, selector: "queue-search-customer" }, { kind: "component", type: BlockListComponent, selector: "block-list", inputs: ["queueData", "showQueueDataForm"], outputs: ["queueDataById"] }, { kind: "component", type: QueueApplicationListComponent, selector: "queue-application-list", inputs: ["queueData"] }] });
|
|
3201
3199
|
}
|
|
3202
3200
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.4", ngImport: i0, type: QueueAdminListComponent, decorators: [{
|
|
3203
3201
|
type: Component,
|