ngx-axis-appforge 1.0.5 → 1.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-axis-appforge",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "author": "ZengCheng <zengc694623467@gmail.com>",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -250,6 +250,14 @@
250
250
  "types": "./types/ngx-axis-appforge-axis-components-input-design.d.ts",
251
251
  "default": "./fesm2022/ngx-axis-appforge-axis-components-input-design.mjs"
252
252
  },
253
+ "./axis-components/loop-task": {
254
+ "types": "./types/ngx-axis-appforge-axis-components-loop-task.d.ts",
255
+ "default": "./fesm2022/ngx-axis-appforge-axis-components-loop-task.mjs"
256
+ },
257
+ "./axis-components/loop-task/design": {
258
+ "types": "./types/ngx-axis-appforge-axis-components-loop-task-design.d.ts",
259
+ "default": "./fesm2022/ngx-axis-appforge-axis-components-loop-task-design.mjs"
260
+ },
253
261
  "./axis-components/menu": {
254
262
  "types": "./types/ngx-axis-appforge-axis-components-menu.d.ts",
255
263
  "default": "./fesm2022/ngx-axis-appforge-axis-components-menu.mjs"
@@ -0,0 +1,5 @@
1
+ import { DesignConfig } from 'ngx-axis-appforge/core';
2
+
3
+ declare const Config: DesignConfig;
4
+
5
+ export { Config };
@@ -0,0 +1,26 @@
1
+ import * as _angular_core from '@angular/core';
2
+ import { DataOptions, Base, EventHandlerOptions } from 'ngx-axis-appforge/core';
3
+ import { Observable } from 'rxjs';
4
+ import { NzMessageService } from 'ng-zorro-antd/message';
5
+
6
+ declare class LoopTaskOptions extends DataOptions {
7
+ readonly showProgress: _angular_core.WritableSignal<boolean>;
8
+ readonly progressTip: _angular_core.WritableSignal<string>;
9
+ readonly userBreak: _angular_core.WritableSignal<boolean>;
10
+ }
11
+
12
+ declare class LoopTask extends Base<LoopTaskOptions> {
13
+ options: LoopTaskOptions;
14
+ readonly inProgress: _angular_core.WritableSignal<boolean>;
15
+ readonly msg: NzMessageService;
16
+ private readonly completed;
17
+ private readonly target;
18
+ readonly progress: _angular_core.Signal<number>;
19
+ onEvents(e: EventHandlerOptions<any>): Observable<boolean> | undefined;
20
+ private startLoopTask;
21
+ breakLoop(): void;
22
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoopTask, never>;
23
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoopTask, "axis-loop-task-component", never, {}, {}, never, never, true, never>;
24
+ }
25
+
26
+ export { LoopTask };
@@ -191,6 +191,7 @@ declare class SelectService {
191
191
  onSetItemsChecked(rows: any[], scene?: ChangeScene): void;
192
192
  updateCheckedSet(key: string, checked: boolean, indeterminate?: boolean): void;
193
193
  refreshCheckedStatus(scene?: ChangeScene): void;
194
+ setDataCache(): void;
194
195
  buildSelectedData(): any[] | undefined;
195
196
  close(): void;
196
197
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectService, [{ optional: true; }]>;