imm-element-ui 0.6.0 → 0.6.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/esm2022/lib/grid/grid/grid.component.mjs +4 -4
- package/esm2022/lib/grid/grid-utils.mjs +7 -1
- package/esm2022/lib/share/utils.mjs +5 -2
- package/fesm2022/imm-element-ui.mjs +13 -4
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/grid/grid/grid.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -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" | "
|
|
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">;
|