imm-element-ui 1.1.6 → 1.1.8

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.
@@ -74,6 +74,11 @@ export declare class FormComponent {
74
74
  * @param dataList 外部数据列表
75
75
  */
76
76
  triggerDataEffect(dataList: ExternalData[]): void;
77
+ /**
78
+ * 触发字段禁用,针对表单字段
79
+ * @param keys 字段key列表
80
+ */
81
+ triggerDisabledEffect(keys: string[]): void;
77
82
  /**
78
83
  * 动态设置字段禁用,禁用前清除字段dirty标记
79
84
  * @param key 字段key
@@ -2,9 +2,11 @@ import { EventEmitter } from '@angular/core';
2
2
  import { Search } from '../am/am.component';
3
3
  import { GridComponent, GridOptions } from '../grid/grid/grid.component';
4
4
  import { ActionService } from '../service/action.service';
5
+ import { DatePipe } from '@angular/common';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class RowSelectorComponent {
7
8
  private action;
9
+ private datePipe;
8
10
  onOk: EventEmitter<any[]>;
9
11
  grid: GridComponent;
10
12
  title: import("@angular/core").InputSignal<string>;
@@ -13,7 +15,7 @@ export declare class RowSelectorComponent {
13
15
  searchPrm: import("@angular/core").InputSignal<Search>;
14
16
  visible: import("@angular/core").ModelSignal<boolean>;
15
17
  innerVisible: boolean;
16
- constructor(action: ActionService);
18
+ constructor(action: ActionService, datePipe: DatePipe);
17
19
  api(): import("ag-grid-community").GridApi<any>;
18
20
  cancel(): void;
19
21
  ok(): void;
@@ -27,7 +27,7 @@ export declare const convertAct: (act: any) => any;
27
27
  */
28
28
  export declare const changeContent: (content: any, thisArg: any) => void;
29
29
  export declare const calcRowSpan: (params: any, field?: string) => number;
30
- export declare const convertCol: (options: any, col: any[], authLevel: number, modelName?: string, dragSort?: string) => void;
30
+ export declare const convertCol: (options: any, col: any[], authLevel: number, dragSort?: string) => void;
31
31
  export declare const gridOptionsHooker: (gridOptions: any) => void;
32
32
  export declare const convertGrid: (thisArg: any, gridList: any, fiterPreloads: any) => void;
33
33
  export declare const convertForm: (thisArg: any, groupArr: any, sourceData: any) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imm-element-ui",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0"