@vendure/admin-ui 3.2.4 → 3.3.1
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/core/common/generated-types.d.ts +64 -0
- package/core/common/version.d.ts +1 -1
- package/fesm2022/vendure-admin-ui-catalog.mjs +109 -109
- package/fesm2022/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-core.mjs +686 -677
- package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-customer.mjs +43 -43
- package/fesm2022/vendure-admin-ui-customer.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-dashboard.mjs +41 -41
- package/fesm2022/vendure-admin-ui-dashboard.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-login.mjs +10 -10
- package/fesm2022/vendure-admin-ui-login.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-marketing.mjs +10 -10
- package/fesm2022/vendure-admin-ui-marketing.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-order.mjs +133 -133
- package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-react.mjs +15 -15
- package/fesm2022/vendure-admin-ui-react.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-settings.mjs +109 -109
- package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-system.mjs +107 -15
- package/fesm2022/vendure-admin-ui-system.mjs.map +1 -1
- package/package.json +6 -6
- package/static/i18n-messages/ar.json +84 -67
- package/static/i18n-messages/cs.json +214 -198
- package/static/i18n-messages/de.json +20 -4
- package/static/i18n-messages/en.json +19 -7
- package/static/i18n-messages/es.json +20 -4
- package/static/i18n-messages/fa.json +20 -4
- package/static/i18n-messages/fr.json +152 -136
- package/static/i18n-messages/he.json +20 -4
- package/static/i18n-messages/hr.json +20 -4
- package/static/i18n-messages/it.json +20 -4
- package/static/i18n-messages/ja.json +20 -8
- package/static/i18n-messages/nb.json +25 -7
- package/static/i18n-messages/ne.json +31 -15
- package/static/i18n-messages/pl.json +20 -4
- package/static/i18n-messages/pt_BR.json +18 -2
- package/static/i18n-messages/pt_PT.json +20 -5
- package/static/i18n-messages/ru.json +20 -4
- package/static/i18n-messages/sv.json +34 -11
- package/static/i18n-messages/tr.json +829 -813
- package/static/i18n-messages/uk.json +20 -4
- package/static/i18n-messages/zh_Hans.json +240 -224
- package/static/i18n-messages/zh_Hant.json +421 -405
- package/system/components/scheduled-tasks/scheduled-task-list.component.d.ts +18 -0
- package/system/public_api.d.ts +1 -0
- package/system/system.module.d.ts +4 -3
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { DataService, GetAllScheduledTasksQuery, NotificationService } from '@vendure/admin-ui/core';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare const GET_SCHEDULED_TASKS_LIST: import("apollo-angular").TypedDocumentNode<unknown, unknown>;
|
|
7
|
+
export declare class ScheduledTaskListComponent implements OnInit {
|
|
8
|
+
private dataService;
|
|
9
|
+
private notificationService;
|
|
10
|
+
tasks$: Observable<GetAllScheduledTasksQuery['scheduledTasks']>;
|
|
11
|
+
liveUpdate: FormControl<boolean | null>;
|
|
12
|
+
constructor(dataService: DataService, notificationService: NotificationService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
toggleEnabled(task: GetAllScheduledTasksQuery['scheduledTasks'][0]): void;
|
|
15
|
+
runTask(task: GetAllScheduledTasksQuery['scheduledTasks'][0]): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScheduledTaskListComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScheduledTaskListComponent, "vdr-scheduled-task-list", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
package/system/public_api.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './components/health-check/health-check.component';
|
|
2
2
|
export * from './components/job-list/job-list.component';
|
|
3
3
|
export * from './components/job-state-label/job-state-label.component';
|
|
4
|
+
export * from './components/scheduled-tasks/scheduled-task-list.component';
|
|
4
5
|
export * from './system.module';
|
|
5
6
|
export * from './system.routes';
|
|
@@ -2,10 +2,11 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./components/health-check/health-check.component";
|
|
3
3
|
import * as i2 from "./components/job-list/job-list.component";
|
|
4
4
|
import * as i3 from "./components/job-state-label/job-state-label.component";
|
|
5
|
-
import * as i4 from "
|
|
6
|
-
import * as i5 from "@
|
|
5
|
+
import * as i4 from "./components/scheduled-tasks/scheduled-task-list.component";
|
|
6
|
+
import * as i5 from "@vendure/admin-ui/core";
|
|
7
|
+
import * as i6 from "@angular/router";
|
|
7
8
|
export declare class SystemModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.HealthCheckComponent, typeof i2.JobListComponent, typeof i3.JobStateLabelComponent], [typeof
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.HealthCheckComponent, typeof i2.JobListComponent, typeof i3.JobStateLabelComponent, typeof i4.ScheduledTaskListComponent], [typeof i5.SharedModule, typeof i6.RouterModule], never>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<SystemModule>;
|
|
11
12
|
}
|