imm-element-ui 0.6.0 → 0.6.2

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.
@@ -1,4 +1,4 @@
1
- import { ElementRef } from '@angular/core';
1
+ import { ElementRef, NgZone } from '@angular/core';
2
2
  import { FormField, FieldProps, AttributeEvent } from '../form-field/form-field';
3
3
  import { ActionService } from '../../service/action.service';
4
4
  import * as i0 from "@angular/core";
@@ -15,12 +15,13 @@ export interface RadioProps extends FieldProps {
15
15
  }
16
16
  export declare class RadioComponent {
17
17
  private action;
18
+ private ngZone;
18
19
  radioContainer: ElementRef;
19
20
  field: import("@angular/core").InputSignal<FormField | undefined>;
20
21
  props: RadioProps;
21
22
  isEnter: boolean;
22
23
  current: any;
23
- constructor(action: ActionService);
24
+ constructor(action: ActionService, ngZone: NgZone);
24
25
  ngAfterViewInit(): void;
25
26
  handleModelChange(): void;
26
27
  onClick(field: FormField, event?: any): void;
@@ -22,6 +22,7 @@ export interface GridOptions extends RawGridOptions {
22
22
  modelName?: string;
23
23
  fk?: string;
24
24
  dragSort?: string;
25
+ selectionMode?: 'none' | 'single' | 'multiple';
25
26
  }
26
27
  export declare class GridComponent {
27
28
  private action;
@@ -248,7 +249,7 @@ export declare class GridComponent {
248
249
  rawPrm?: Search;
249
250
  deleteEmit: import("@angular/core").OutputEmitterRef<number[]>;
250
251
  addEmit: import("@angular/core").OutputEmitterRef<void>;
251
- addType: import("@angular/core").InputSignal<"select" | "handle" | "none" | undefined>;
252
+ addType: import("@angular/core").InputSignal<"select" | "none" | "handle" | undefined>;
252
253
  selectData: import("@angular/core").InputSignal<any[] | undefined>;
253
254
  showAct: import("@angular/core").InputSignal<boolean>;
254
255
  actPos: import("@angular/core").InputSignal<"top" | "bottom">;
@@ -12,7 +12,7 @@ import { ActionService } from '../service/action.service';
12
12
  import * as i0 from "@angular/core";
13
13
  export declare class PageFormComponent extends AmComponent implements OnInit {
14
14
  cForm: FormComponent;
15
- customGrid: GridComponent;
15
+ customGrid: QueryList<GridComponent>;
16
16
  tabForm: QueryList<FormComponent>;
17
17
  addVisible: import("@angular/core").InputSignal<boolean | undefined>;
18
18
  gridList: import("@angular/core").InputSignal<any[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imm-element-ui",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.2.0",
6
6
  "@angular/core": "^18.2.0"