@masterkeymaterial/ui 0.2.17 → 0.2.19

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": "@masterkeymaterial/ui",
3
- "version": "0.2.17",
3
+ "version": "0.2.19",
4
4
  "description": "Biblioteca Angular de componentes UI e campos de formulario reutilizaveis para construir formularios dinamicos.",
5
5
  "keywords": [
6
6
  "angular",
@@ -1048,7 +1048,7 @@ interface IGridConfig<T> {
1048
1048
  onSelected?: (linha: any, selecionados: any[]) => Promise<void> | void;
1049
1049
  onUnselected?: (linha: any, selecionados: any[]) => Promise<void> | void;
1050
1050
  onSelectionChanged?: (linha: any, selecionados: any[]) => Promise<void> | void;
1051
- startSelected?: (linha: any) => boolean;
1051
+ startSelected?: any[];
1052
1052
  selectionMode: 'single' | 'multiple' | 'none';
1053
1053
  hasError: boolean;
1054
1054
  hasVerticalLine: boolean;
@@ -1113,7 +1113,7 @@ declare class MkGrid {
1113
1113
  colunasExibir: _angular_core.WritableSignal<IColunaComLargura[]>;
1114
1114
  gridTemplateColumns: _angular_core.WritableSignal<string>;
1115
1115
  inputSearchText: _angular_core.WritableSignal<string>;
1116
- selectedRows: _angular_core.WritableSignal<string[]>;
1116
+ selectedPrimaryKeys: _angular_core.WritableSignal<string[]>;
1117
1117
  gruposColapsed: _angular_core.WritableSignal<string[]>;
1118
1118
  isAgrupado: _angular_core.WritableSignal<boolean>;
1119
1119
  isAgrupadoLimpo: _angular_core.WritableSignal<boolean>;