@vendure/admin-ui 3.2.3 → 3.3.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.
Files changed (48) hide show
  1. package/core/common/generated-types.d.ts +64 -0
  2. package/core/common/version.d.ts +1 -1
  3. package/fesm2022/vendure-admin-ui-catalog.mjs +109 -109
  4. package/fesm2022/vendure-admin-ui-catalog.mjs.map +1 -1
  5. package/fesm2022/vendure-admin-ui-core.mjs +687 -678
  6. package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
  7. package/fesm2022/vendure-admin-ui-customer.mjs +43 -43
  8. package/fesm2022/vendure-admin-ui-customer.mjs.map +1 -1
  9. package/fesm2022/vendure-admin-ui-dashboard.mjs +41 -41
  10. package/fesm2022/vendure-admin-ui-dashboard.mjs.map +1 -1
  11. package/fesm2022/vendure-admin-ui-login.mjs +10 -10
  12. package/fesm2022/vendure-admin-ui-login.mjs.map +1 -1
  13. package/fesm2022/vendure-admin-ui-marketing.mjs +10 -10
  14. package/fesm2022/vendure-admin-ui-marketing.mjs.map +1 -1
  15. package/fesm2022/vendure-admin-ui-order.mjs +133 -133
  16. package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
  17. package/fesm2022/vendure-admin-ui-react.mjs +15 -15
  18. package/fesm2022/vendure-admin-ui-react.mjs.map +1 -1
  19. package/fesm2022/vendure-admin-ui-settings.mjs +109 -109
  20. package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
  21. package/fesm2022/vendure-admin-ui-system.mjs +107 -15
  22. package/fesm2022/vendure-admin-ui-system.mjs.map +1 -1
  23. package/package.json +9 -9
  24. package/static/i18n-messages/ar.json +115 -99
  25. package/static/i18n-messages/cs.json +214 -198
  26. package/static/i18n-messages/de.json +20 -4
  27. package/static/i18n-messages/en.json +19 -7
  28. package/static/i18n-messages/es.json +20 -4
  29. package/static/i18n-messages/fa.json +20 -4
  30. package/static/i18n-messages/fr.json +51 -35
  31. package/static/i18n-messages/he.json +20 -4
  32. package/static/i18n-messages/hr.json +20 -4
  33. package/static/i18n-messages/it.json +20 -4
  34. package/static/i18n-messages/ja.json +20 -8
  35. package/static/i18n-messages/nb.json +25 -7
  36. package/static/i18n-messages/ne.json +31 -15
  37. package/static/i18n-messages/pl.json +20 -4
  38. package/static/i18n-messages/pt_BR.json +18 -2
  39. package/static/i18n-messages/pt_PT.json +20 -5
  40. package/static/i18n-messages/ru.json +20 -4
  41. package/static/i18n-messages/sv.json +34 -11
  42. package/static/i18n-messages/tr.json +829 -813
  43. package/static/i18n-messages/uk.json +20 -4
  44. package/static/i18n-messages/zh_Hans.json +240 -224
  45. package/static/i18n-messages/zh_Hant.json +421 -405
  46. package/system/components/scheduled-tasks/scheduled-task-list.component.d.ts +18 -0
  47. package/system/public_api.d.ts +1 -0
  48. 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
+ }
@@ -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 "@vendure/admin-ui/core";
6
- import * as i5 from "@angular/router";
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 i4.SharedModule, typeof i5.RouterModule], never>;
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
  }