@rolatech/angular-services 18.0.1 → 18.1.0
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/esm2022/lib/components/dialog/dialog.component.mjs +3 -3
- package/esm2022/lib/directive/back-button.directive.mjs +3 -3
- package/esm2022/lib/interceptor/loading.interceptor.mjs +3 -3
- package/esm2022/lib/services/base.service.mjs +3 -3
- package/esm2022/lib/services/breadcrumb.service.mjs +3 -3
- package/esm2022/lib/services/cart.service.mjs +3 -3
- package/esm2022/lib/services/dialog.service.mjs +3 -3
- package/esm2022/lib/services/index.mjs +7 -2
- package/esm2022/lib/services/inventory.service.mjs +75 -0
- package/esm2022/lib/services/layout.service.mjs +3 -3
- package/esm2022/lib/services/loading.service.mjs +3 -3
- package/esm2022/lib/services/media.service.mjs +3 -3
- package/esm2022/lib/services/navigation.service.mjs +3 -3
- package/esm2022/lib/services/notification-template.service.mjs +49 -0
- package/esm2022/lib/services/notification.service.mjs +81 -0
- package/esm2022/lib/services/order.service.mjs +3 -3
- package/esm2022/lib/services/product-category.service.mjs +38 -0
- package/esm2022/lib/services/product.service.mjs +3 -3
- package/esm2022/lib/services/sidenav.service.mjs +3 -3
- package/esm2022/lib/services/snack-bar.service.mjs +3 -3
- package/esm2022/lib/services/support.service.mjs +3 -3
- package/esm2022/lib/services/theme.service.mjs +3 -3
- package/esm2022/lib/state/notification.store.mjs +18 -0
- package/fesm2022/rolatech-angular-services.mjs +294 -52
- package/fesm2022/rolatech-angular-services.mjs.map +1 -1
- package/lib/services/index.d.ts +6 -1
- package/lib/services/inventory.service.d.ts +27 -0
- package/lib/services/notification-template.service.d.ts +14 -0
- package/lib/services/notification.service.d.ts +19 -0
- package/lib/services/product-category.service.d.ts +12 -0
- package/lib/state/notification.store.d.ts +8 -0
- package/package.json +1 -1
- package/themes/_default.scss +1 -1
|
@@ -36,10 +36,10 @@ export class ThemeService {
|
|
|
36
36
|
setDarkTheme(isDarkTheme) {
|
|
37
37
|
this.darkTheme.next(isDarkTheme);
|
|
38
38
|
}
|
|
39
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
40
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
39
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
40
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ThemeService, providedIn: 'root' });
|
|
41
41
|
}
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
42
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ThemeService, decorators: [{
|
|
43
43
|
type: Injectable,
|
|
44
44
|
args: [{
|
|
45
45
|
providedIn: 'root',
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class NotificationStore {
|
|
5
|
+
$count = new BehaviorSubject(0);
|
|
6
|
+
getCount() {
|
|
7
|
+
return this.$count.asObservable();
|
|
8
|
+
}
|
|
9
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
10
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationStore, providedIn: 'root' });
|
|
11
|
+
}
|
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationStore, decorators: [{
|
|
13
|
+
type: Injectable,
|
|
14
|
+
args: [{
|
|
15
|
+
providedIn: 'root',
|
|
16
|
+
}]
|
|
17
|
+
}] });
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLnN0b3JlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hbmd1bGFyLXNlcnZpY2VzL3NyYy9saWIvc3RhdGUvbm90aWZpY2F0aW9uLnN0b3JlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLE1BQU0sQ0FBQzs7QUFLdkMsTUFBTSxPQUFPLGlCQUFpQjtJQUM1QixNQUFNLEdBQUcsSUFBSSxlQUFlLENBQUMsQ0FBQyxDQUFDLENBQUM7SUFDaEMsUUFBUTtRQUNOLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUNwQyxDQUFDO3VHQUpVLGlCQUFpQjsyR0FBakIsaUJBQWlCLGNBRmhCLE1BQU07OzJGQUVQLGlCQUFpQjtrQkFIN0IsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QgfSBmcm9tICdyeGpzJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIE5vdGlmaWNhdGlvblN0b3JlIHtcbiAgJGNvdW50ID0gbmV3IEJlaGF2aW9yU3ViamVjdCgwKTtcbiAgZ2V0Q291bnQoKSB7XG4gICAgcmV0dXJuIHRoaXMuJGNvdW50LmFzT2JzZXJ2YWJsZSgpO1xuICB9XG59XG4iXX0=
|
|
@@ -62,10 +62,10 @@ class BaseService {
|
|
|
62
62
|
withCredentials: true,
|
|
63
63
|
});
|
|
64
64
|
}
|
|
65
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
66
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
65
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BaseService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
66
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BaseService, providedIn: 'root' });
|
|
67
67
|
}
|
|
68
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
68
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BaseService, decorators: [{
|
|
69
69
|
type: Injectable,
|
|
70
70
|
args: [{
|
|
71
71
|
providedIn: 'root',
|
|
@@ -237,10 +237,10 @@ class ProductService extends BaseService {
|
|
|
237
237
|
withCredentials: true,
|
|
238
238
|
});
|
|
239
239
|
}
|
|
240
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
241
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
240
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
241
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ProductService, providedIn: 'root' });
|
|
242
242
|
}
|
|
243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ProductService, decorators: [{
|
|
244
244
|
type: Injectable,
|
|
245
245
|
args: [{
|
|
246
246
|
providedIn: 'root',
|
|
@@ -313,10 +313,10 @@ class CartService extends BaseService {
|
|
|
313
313
|
withCredentials: true,
|
|
314
314
|
});
|
|
315
315
|
}
|
|
316
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
317
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
316
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: CartService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
317
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: CartService, providedIn: 'root' });
|
|
318
318
|
}
|
|
319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: CartService, decorators: [{
|
|
320
320
|
type: Injectable,
|
|
321
321
|
args: [{
|
|
322
322
|
providedIn: 'root',
|
|
@@ -359,10 +359,10 @@ class NavigationService {
|
|
|
359
359
|
}
|
|
360
360
|
return '';
|
|
361
361
|
}
|
|
362
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
363
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
362
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NavigationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
363
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NavigationService, providedIn: 'root' });
|
|
364
364
|
}
|
|
365
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NavigationService, decorators: [{
|
|
366
366
|
type: Injectable,
|
|
367
367
|
args: [{
|
|
368
368
|
providedIn: 'root',
|
|
@@ -427,10 +427,10 @@ class DialogComponent {
|
|
|
427
427
|
confirm() {
|
|
428
428
|
this.close(this.result || true);
|
|
429
429
|
}
|
|
430
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
431
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.
|
|
430
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: DialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
431
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.8", type: DialogComponent, isStandalone: true, selector: "rolatech-dialog", host: { listeners: { "keydown.esc": "onEsc()" } }, viewQueries: [{ propertyName: "componentRef", first: true, predicate: ["container"], descendants: true, read: ViewContainerRef, isSignal: true }], ngImport: i0, template: "<div class=\"min-w-[320px]\">\n <h1 class=\"text-xl\" mat-dialog-title>{{ data.title }}</h1>\n <mat-dialog-content>\n <div>\n <p>{{ data.message }}</p>\n <ng-template #container></ng-template>\n <!-- <ng-container #container></ng-container> -->\n </div>\n </mat-dialog-content>\n <div class=\"flex-1\"></div>\n <mat-dialog-actions>\n <button mat-button (click)=\"close()\">{{ data.cancelText ? data.cancelText : 'Cancel' }}</button>\n <button mat-flat-button class=\"w-20\" (click)=\"confirm()\">{{ data.confirmText ? data.confirmText : 'Ok' }}</button>\n </mat-dialog-actions>\n <!-- <div class=\"flex justify-end items-center p-2 gap-3\">\n <a mat-button (click)=\"cancel()\">{{ data.cancelText ? data.cancelText : 'Cancel' }}</a>\n <a mat-flat-button class=\"w-20\" (click)=\"confirm()\">{{ data.confirmText ? data.confirmText : 'Ok' }}</a>\n </div> -->\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", exportAs: ["matButton"] }, { kind: "directive", type: MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "directive", type: MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }] });
|
|
432
432
|
}
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: DialogComponent, decorators: [{
|
|
434
434
|
type: Component,
|
|
435
435
|
args: [{ selector: 'rolatech-dialog', standalone: true, imports: [MatButtonModule, MatDialogActions, MatDialogClose, MatDialogTitle, MatDialogContent], template: "<div class=\"min-w-[320px]\">\n <h1 class=\"text-xl\" mat-dialog-title>{{ data.title }}</h1>\n <mat-dialog-content>\n <div>\n <p>{{ data.message }}</p>\n <ng-template #container></ng-template>\n <!-- <ng-container #container></ng-container> -->\n </div>\n </mat-dialog-content>\n <div class=\"flex-1\"></div>\n <mat-dialog-actions>\n <button mat-button (click)=\"close()\">{{ data.cancelText ? data.cancelText : 'Cancel' }}</button>\n <button mat-flat-button class=\"w-20\" (click)=\"confirm()\">{{ data.confirmText ? data.confirmText : 'Ok' }}</button>\n </mat-dialog-actions>\n <!-- <div class=\"flex justify-end items-center p-2 gap-3\">\n <a mat-button (click)=\"cancel()\">{{ data.cancelText ? data.cancelText : 'Cancel' }}</a>\n <a mat-flat-button class=\"w-20\" (click)=\"confirm()\">{{ data.confirmText ? data.confirmText : 'Ok' }}</a>\n </div> -->\n</div>\n" }]
|
|
436
436
|
}], propDecorators: { onEsc: [{
|
|
@@ -454,10 +454,10 @@ class DialogService {
|
|
|
454
454
|
confirmed() {
|
|
455
455
|
return this.dialogRef.afterClosed().pipe(take(1), map((res) => res));
|
|
456
456
|
}
|
|
457
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
458
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
457
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: DialogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
458
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: DialogService });
|
|
459
459
|
}
|
|
460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: DialogService, decorators: [{
|
|
461
461
|
type: Injectable
|
|
462
462
|
}] });
|
|
463
463
|
|
|
@@ -478,10 +478,10 @@ class LoadingService {
|
|
|
478
478
|
async dismiss() {
|
|
479
479
|
this.isLoading = false;
|
|
480
480
|
}
|
|
481
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
482
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
481
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LoadingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
482
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LoadingService, providedIn: 'root' });
|
|
483
483
|
}
|
|
484
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LoadingService, decorators: [{
|
|
485
485
|
type: Injectable,
|
|
486
486
|
args: [{
|
|
487
487
|
providedIn: 'root',
|
|
@@ -529,10 +529,10 @@ class MediaService extends BaseService {
|
|
|
529
529
|
getImageInfo(url) {
|
|
530
530
|
return this.http.get(`${url}?imageInfo`);
|
|
531
531
|
}
|
|
532
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
533
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
532
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: MediaService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
533
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: MediaService, providedIn: 'root' });
|
|
534
534
|
}
|
|
535
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: MediaService, decorators: [{
|
|
536
536
|
type: Injectable,
|
|
537
537
|
args: [{
|
|
538
538
|
providedIn: 'root',
|
|
@@ -548,10 +548,10 @@ class LayoutService {
|
|
|
548
548
|
.observe([Breakpoints.Small, Breakpoints.HandsetPortrait])
|
|
549
549
|
.pipe(map$1((result) => result.matches), shareReplay());
|
|
550
550
|
}
|
|
551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
552
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
551
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LayoutService, deps: [{ token: i1$1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
552
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LayoutService });
|
|
553
553
|
}
|
|
554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LayoutService, decorators: [{
|
|
555
555
|
type: Injectable
|
|
556
556
|
}], ctorParameters: () => [{ type: i1$1.BreakpointObserver }] });
|
|
557
557
|
|
|
@@ -563,10 +563,10 @@ class SnackBarService {
|
|
|
563
563
|
dismiss() {
|
|
564
564
|
this.snackBar.dismiss();
|
|
565
565
|
}
|
|
566
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
567
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
566
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SnackBarService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
567
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SnackBarService });
|
|
568
568
|
}
|
|
569
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
569
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SnackBarService, decorators: [{
|
|
570
570
|
type: Injectable
|
|
571
571
|
}] });
|
|
572
572
|
|
|
@@ -631,10 +631,10 @@ class SupportService {
|
|
|
631
631
|
withCredentials: true,
|
|
632
632
|
});
|
|
633
633
|
}
|
|
634
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
635
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
634
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SupportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
635
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SupportService, providedIn: 'root' });
|
|
636
636
|
}
|
|
637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SupportService, decorators: [{
|
|
638
638
|
type: Injectable,
|
|
639
639
|
args: [{
|
|
640
640
|
providedIn: 'root',
|
|
@@ -662,10 +662,10 @@ class BreadcrumbService {
|
|
|
662
662
|
relativeTo: route,
|
|
663
663
|
});
|
|
664
664
|
}
|
|
665
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
666
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
665
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BreadcrumbService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
666
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BreadcrumbService, providedIn: 'root' });
|
|
667
667
|
}
|
|
668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BreadcrumbService, decorators: [{
|
|
669
669
|
type: Injectable,
|
|
670
670
|
args: [{
|
|
671
671
|
providedIn: 'root',
|
|
@@ -697,10 +697,10 @@ class SidenavService {
|
|
|
697
697
|
this.isCollaped = !this.isMobile && !this.sidenav?.opened;
|
|
698
698
|
}
|
|
699
699
|
lists() { }
|
|
700
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
701
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
700
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SidenavService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
701
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SidenavService });
|
|
702
702
|
}
|
|
703
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: SidenavService, decorators: [{
|
|
704
704
|
type: Injectable
|
|
705
705
|
}], ctorParameters: () => [] });
|
|
706
706
|
|
|
@@ -738,10 +738,10 @@ class ThemeService {
|
|
|
738
738
|
setDarkTheme(isDarkTheme) {
|
|
739
739
|
this.darkTheme.next(isDarkTheme);
|
|
740
740
|
}
|
|
741
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
742
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
741
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
742
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ThemeService, providedIn: 'root' });
|
|
743
743
|
}
|
|
744
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ThemeService, decorators: [{
|
|
745
745
|
type: Injectable,
|
|
746
746
|
args: [{
|
|
747
747
|
providedIn: 'root',
|
|
@@ -818,10 +818,252 @@ class OrderService extends BaseService {
|
|
|
818
818
|
withCredentials: true,
|
|
819
819
|
});
|
|
820
820
|
}
|
|
821
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
822
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
821
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: OrderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
822
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: OrderService, providedIn: 'root' });
|
|
823
823
|
}
|
|
824
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: OrderService, decorators: [{
|
|
825
|
+
type: Injectable,
|
|
826
|
+
args: [{
|
|
827
|
+
providedIn: 'root',
|
|
828
|
+
}]
|
|
829
|
+
}] });
|
|
830
|
+
|
|
831
|
+
class InventoryService extends BaseService {
|
|
832
|
+
init() {
|
|
833
|
+
this.endpoint = 'inventories';
|
|
834
|
+
super.init();
|
|
835
|
+
}
|
|
836
|
+
getLocation(locationId) {
|
|
837
|
+
return this.http.get(`${this.actionUrl}/locations/${locationId}`, { withCredentials: true });
|
|
838
|
+
}
|
|
839
|
+
findLocations(options) {
|
|
840
|
+
return this.http.get(`${this.actionUrl}/locations`, { params: options, withCredentials: true });
|
|
841
|
+
}
|
|
842
|
+
addLocation(data) {
|
|
843
|
+
return this.http.post(`${this.actionUrl}/locations`, data, { withCredentials: true });
|
|
844
|
+
}
|
|
845
|
+
updateLocation(locationId, data) {
|
|
846
|
+
return this.http.put(`${this.actionUrl}/locations/${locationId}`, data, { withCredentials: true });
|
|
847
|
+
}
|
|
848
|
+
deleteLocation(locationId) {
|
|
849
|
+
return this.http.delete(`${this.actionUrl}/locations/${locationId}`, { withCredentials: true });
|
|
850
|
+
}
|
|
851
|
+
findMyInventoryItems(options) {
|
|
852
|
+
return this.http.get(`${this.actionUrl}/items/me`, { params: options, withCredentials: true });
|
|
853
|
+
}
|
|
854
|
+
addInventoryItem(data) {
|
|
855
|
+
return this.http.post(`${this.actionUrl}/items`, data, { withCredentials: true });
|
|
856
|
+
}
|
|
857
|
+
addInventoryByProductId(locationId, productId, data) {
|
|
858
|
+
return this.http.post(`${this.actionUrl}/locations/${locationId}`, data, { withCredentials: true });
|
|
859
|
+
}
|
|
860
|
+
addInventoryByVariantId(locationId, variantId, data) {
|
|
861
|
+
return this.http.post(`${this.actionUrl}/locations`, data, { withCredentials: true });
|
|
862
|
+
}
|
|
863
|
+
findInventoryItemByProductId(productId) {
|
|
864
|
+
return this.http.get(`${this.actionUrl}/products/${productId}`, { withCredentials: true });
|
|
865
|
+
}
|
|
866
|
+
findInventoryItemsByVariantId(variantId) {
|
|
867
|
+
return this.http.get(`${this.actionUrl}/variantId/${variantId}`, { withCredentials: true });
|
|
868
|
+
}
|
|
869
|
+
deleteInventoryItemsByProductId(productId) {
|
|
870
|
+
return this.http.delete(`${this.actionUrl}/products/${productId}`, { withCredentials: true });
|
|
871
|
+
}
|
|
872
|
+
deleteInventoryItemsByVariantId(variantId) {
|
|
873
|
+
return this.http.delete(`${this.actionUrl}/variants/${variantId}`, { withCredentials: true });
|
|
874
|
+
}
|
|
875
|
+
deleteInventoryLevel(levelId) {
|
|
876
|
+
return this.http.delete(`${this.actionUrl}/levels/${levelId}`, { withCredentials: true });
|
|
877
|
+
}
|
|
878
|
+
findProductsInLocation(locationId) {
|
|
879
|
+
return this.http.get(`${this.actionUrl}/locations/${locationId}/products`, { withCredentials: true });
|
|
880
|
+
}
|
|
881
|
+
findLocationsByProductId(productId) {
|
|
882
|
+
return this.http.get(`${this.actionUrl}/products/${productId}/locations`, { withCredentials: true });
|
|
883
|
+
}
|
|
884
|
+
findLocationsByVariantId(variantId) {
|
|
885
|
+
return this.http.get(`${this.actionUrl}/variants/${variantId}/locations`, { withCredentials: true });
|
|
886
|
+
}
|
|
887
|
+
updateStockByLocationIdAndProductId(locationId, productId, data) {
|
|
888
|
+
return this.http.put(`${this.actionUrl}/locations${locationId}/products/${productId}`, data, { withCredentials: true });
|
|
889
|
+
}
|
|
890
|
+
updateStockByLocationIdAndVariantId(locationId, variantId, data) {
|
|
891
|
+
return this.http.put(`${this.actionUrl}/locations${locationId}/variants/${variantId}`, data, { withCredentials: true });
|
|
892
|
+
}
|
|
893
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: InventoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
894
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: InventoryService, providedIn: 'root' });
|
|
895
|
+
}
|
|
896
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: InventoryService, decorators: [{
|
|
897
|
+
type: Injectable,
|
|
898
|
+
args: [{
|
|
899
|
+
providedIn: 'root',
|
|
900
|
+
}]
|
|
901
|
+
}] });
|
|
902
|
+
|
|
903
|
+
class NotificationStore {
|
|
904
|
+
$count = new BehaviorSubject(0);
|
|
905
|
+
getCount() {
|
|
906
|
+
return this.$count.asObservable();
|
|
907
|
+
}
|
|
908
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
909
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationStore, providedIn: 'root' });
|
|
910
|
+
}
|
|
911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationStore, decorators: [{
|
|
912
|
+
type: Injectable,
|
|
913
|
+
args: [{
|
|
914
|
+
providedIn: 'root',
|
|
915
|
+
}]
|
|
916
|
+
}] });
|
|
917
|
+
|
|
918
|
+
class NotificationService {
|
|
919
|
+
environment = inject(APP_CONFIG);
|
|
920
|
+
http = inject(HttpClient);
|
|
921
|
+
storeService = inject(NotificationStore);
|
|
922
|
+
find(options) {
|
|
923
|
+
return this.http.get(`${this.environment.baseUrl}/notifications`, {
|
|
924
|
+
params: options,
|
|
925
|
+
withCredentials: true,
|
|
926
|
+
});
|
|
927
|
+
}
|
|
928
|
+
me(options) {
|
|
929
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/me`, {
|
|
930
|
+
params: options,
|
|
931
|
+
withCredentials: true,
|
|
932
|
+
});
|
|
933
|
+
}
|
|
934
|
+
get(id) {
|
|
935
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/${id}`, {
|
|
936
|
+
withCredentials: true,
|
|
937
|
+
});
|
|
938
|
+
}
|
|
939
|
+
read(ids) {
|
|
940
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/${ids}`, {
|
|
941
|
+
withCredentials: true,
|
|
942
|
+
});
|
|
943
|
+
}
|
|
944
|
+
update(id) {
|
|
945
|
+
return this.http
|
|
946
|
+
.put(`${this.environment.baseUrl}/notifications/${id}`, { status: 'READ' }, {
|
|
947
|
+
withCredentials: true,
|
|
948
|
+
})
|
|
949
|
+
.pipe(map((res) => {
|
|
950
|
+
const value = this.storeService.$count.value - 1;
|
|
951
|
+
this.storeService.$count.next(value);
|
|
952
|
+
}));
|
|
953
|
+
}
|
|
954
|
+
readAll() {
|
|
955
|
+
return this.http
|
|
956
|
+
.put(`${this.environment.baseUrl}/notifications/status/all`, { status: 'READ' }, {
|
|
957
|
+
withCredentials: true,
|
|
958
|
+
})
|
|
959
|
+
.pipe(map((res) => {
|
|
960
|
+
this.storeService.$count.next(0);
|
|
961
|
+
}));
|
|
962
|
+
}
|
|
963
|
+
delete(id) {
|
|
964
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/${id}`, {
|
|
965
|
+
withCredentials: true,
|
|
966
|
+
});
|
|
967
|
+
}
|
|
968
|
+
findByUserId(userId) {
|
|
969
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/by?userId=${userId}`, {
|
|
970
|
+
withCredentials: true,
|
|
971
|
+
});
|
|
972
|
+
}
|
|
973
|
+
countByStatus(status) {
|
|
974
|
+
return this.http
|
|
975
|
+
.get(`${this.environment.baseUrl}/notifications/count/by?status=${status}`, {
|
|
976
|
+
withCredentials: true,
|
|
977
|
+
})
|
|
978
|
+
.pipe(map(({ data }) => {
|
|
979
|
+
this.storeService.$count.next(data);
|
|
980
|
+
return data;
|
|
981
|
+
}));
|
|
982
|
+
}
|
|
983
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
984
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationService, providedIn: 'root' });
|
|
985
|
+
}
|
|
986
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationService, decorators: [{
|
|
987
|
+
type: Injectable,
|
|
988
|
+
args: [{
|
|
989
|
+
providedIn: 'root',
|
|
990
|
+
}]
|
|
991
|
+
}] });
|
|
992
|
+
|
|
993
|
+
class ProductCategoryService extends BaseService {
|
|
994
|
+
init() {
|
|
995
|
+
this.endpoint = 'products/categories';
|
|
996
|
+
super.init();
|
|
997
|
+
}
|
|
998
|
+
uploadMedia(id, data) {
|
|
999
|
+
return this.http.post(`${this.actionUrl}/${id}/media`, data, {
|
|
1000
|
+
withCredentials: true,
|
|
1001
|
+
});
|
|
1002
|
+
}
|
|
1003
|
+
deleteMedia(id, mediaId) {
|
|
1004
|
+
return this.http.delete(`${this.actionUrl}/${id}/media/${mediaId}`, {
|
|
1005
|
+
withCredentials: true,
|
|
1006
|
+
});
|
|
1007
|
+
}
|
|
1008
|
+
importFromExcel(data) {
|
|
1009
|
+
return this.http.post(`${this.actionUrl}/excel`, data, {
|
|
1010
|
+
withCredentials: true,
|
|
1011
|
+
});
|
|
1012
|
+
}
|
|
1013
|
+
createFromExcel(data) {
|
|
1014
|
+
return this.http.post(`${this.actionUrl}/list`, data, {
|
|
1015
|
+
withCredentials: true,
|
|
1016
|
+
});
|
|
1017
|
+
}
|
|
1018
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ProductCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
1019
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ProductCategoryService, providedIn: 'root' });
|
|
1020
|
+
}
|
|
1021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ProductCategoryService, decorators: [{
|
|
1022
|
+
type: Injectable,
|
|
1023
|
+
args: [{
|
|
1024
|
+
providedIn: 'root',
|
|
1025
|
+
}]
|
|
1026
|
+
}] });
|
|
1027
|
+
|
|
1028
|
+
class NotificationTemplateService {
|
|
1029
|
+
environment = inject(APP_CONFIG);
|
|
1030
|
+
http = inject(HttpClient);
|
|
1031
|
+
find(options) {
|
|
1032
|
+
return this.http.get(`${this.environment.baseUrl}/notifications`, {
|
|
1033
|
+
params: options,
|
|
1034
|
+
withCredentials: true,
|
|
1035
|
+
});
|
|
1036
|
+
}
|
|
1037
|
+
me(options) {
|
|
1038
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/me`, {
|
|
1039
|
+
params: options,
|
|
1040
|
+
withCredentials: true,
|
|
1041
|
+
});
|
|
1042
|
+
}
|
|
1043
|
+
get(id) {
|
|
1044
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/${id}`, {
|
|
1045
|
+
withCredentials: true,
|
|
1046
|
+
});
|
|
1047
|
+
}
|
|
1048
|
+
read(ids) {
|
|
1049
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/${ids}`, {
|
|
1050
|
+
withCredentials: true,
|
|
1051
|
+
});
|
|
1052
|
+
}
|
|
1053
|
+
delete(id) {
|
|
1054
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/${id}`, {
|
|
1055
|
+
withCredentials: true,
|
|
1056
|
+
});
|
|
1057
|
+
}
|
|
1058
|
+
findByUserId(userId) {
|
|
1059
|
+
return this.http.get(`${this.environment.baseUrl}/notifications/by?userId=${userId}`, {
|
|
1060
|
+
withCredentials: true,
|
|
1061
|
+
});
|
|
1062
|
+
}
|
|
1063
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationTemplateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1064
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationTemplateService, providedIn: 'root' });
|
|
1065
|
+
}
|
|
1066
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: NotificationTemplateService, decorators: [{
|
|
825
1067
|
type: Injectable,
|
|
826
1068
|
args: [{
|
|
827
1069
|
providedIn: 'root',
|
|
@@ -846,10 +1088,10 @@ class LoadingInterceptor {
|
|
|
846
1088
|
}
|
|
847
1089
|
}));
|
|
848
1090
|
}
|
|
849
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
850
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.
|
|
1091
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LoadingInterceptor, deps: [{ token: LoadingService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1092
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LoadingInterceptor, providedIn: 'root' });
|
|
851
1093
|
}
|
|
852
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: LoadingInterceptor, decorators: [{
|
|
853
1095
|
type: Injectable,
|
|
854
1096
|
args: [{
|
|
855
1097
|
providedIn: 'root',
|
|
@@ -862,10 +1104,10 @@ class BackButtonDirective {
|
|
|
862
1104
|
onClick() {
|
|
863
1105
|
this.navigation.back();
|
|
864
1106
|
}
|
|
865
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.
|
|
866
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.
|
|
1107
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BackButtonDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1108
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.8", type: BackButtonDirective, isStandalone: true, selector: "[rolatechBackButton]", host: { listeners: { "click": "onClick()" } }, ngImport: i0 });
|
|
867
1109
|
}
|
|
868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.
|
|
1110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: BackButtonDirective, decorators: [{
|
|
869
1111
|
type: Directive,
|
|
870
1112
|
args: [{
|
|
871
1113
|
selector: '[rolatechBackButton]',
|
|
@@ -909,5 +1151,5 @@ function provideAngularServices() {
|
|
|
909
1151
|
* Generated bundle index. Do not edit.
|
|
910
1152
|
*/
|
|
911
1153
|
|
|
912
|
-
export { BackButtonDirective, BaseService, BreadcrumbService, CartEventType, CartService, DialogService, LayoutService, LoadingInterceptor, LoadingService, MediaService, NavigationService, OrderService, ProductService, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, provideAngularServices };
|
|
1154
|
+
export { BackButtonDirective, BaseService, BreadcrumbService, CartEventType, CartService, DialogService, InventoryService, LayoutService, LoadingInterceptor, LoadingService, MediaService, NavigationService, NotificationService, NotificationStore, NotificationTemplateService, OrderService, ProductCategoryService, ProductService, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, provideAngularServices };
|
|
913
1155
|
//# sourceMappingURL=rolatech-angular-services.mjs.map
|