sccoreui 5.7.1 → 5.7.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.
|
@@ -16,7 +16,8 @@ function ParentForGrid(props) {
|
|
|
16
16
|
flex: 1,
|
|
17
17
|
minWidth: 100,
|
|
18
18
|
editable: true,
|
|
19
|
-
filter: true
|
|
19
|
+
filter: true,
|
|
20
|
+
sortable: true,
|
|
20
21
|
};
|
|
21
22
|
}, []);
|
|
22
23
|
const onGridReady = (params) => {
|
|
@@ -40,6 +41,7 @@ function ParentForGrid(props) {
|
|
|
40
41
|
onSelectionChanged: onSelectionChanged,
|
|
41
42
|
rowSelection: 'multiple',
|
|
42
43
|
suppressRowClickSelection: true,
|
|
44
|
+
rowHeight: 60
|
|
43
45
|
};
|
|
44
46
|
return ((0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)(AgGrid_1.default, { style: style, gridOptions: gridOptions, onGridReady: onGridReady }) }));
|
|
45
47
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -104,6 +104,7 @@ export { default as ListBoxDropdown } from './components/list-box-dropdown/list-
|
|
|
104
104
|
export { default as CustomColorPicker } from "./components/custom-color-picker/color-picker";
|
|
105
105
|
export { useClickOutside, useOverlayListener, useOverlayScrollListener } from 'primereact/hooks';
|
|
106
106
|
export { default as AGGridComponent } from './components/ag-grid/ParentForGrid';
|
|
107
|
+
export { gridColType } from './components/ag-grid/Types';
|
|
107
108
|
import { DropdownChangeEvent } from "primereact/dropdown";
|
|
108
109
|
import { ColorPickerChangeEvent } from "primereact/colorpicker";
|
|
109
110
|
import { SliderChangeEvent } from "primereact/slider";
|