@linzjs/step-ag-grid 21.1.2 → 21.1.4
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/README.md +2 -2
- package/dist/step-ag-grid.cjs.js +3 -4
- package/dist/step-ag-grid.cjs.js.map +1 -1
- package/dist/step-ag-grid.esm.js +3 -4
- package/dist/step-ag-grid.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/gridPopoverEdit/GridPopoutEditMultiSelect.ts +2 -1
- package/src/components/gridPopoverEdit/GridPopoutEditMultiSelectGrid.ts +2 -1
- package/src/components/gridPopoverEdit/GridPopoverEditDropDown.ts +2 -2
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ yarn add @linzjs/step-ag-grid
|
|
|
40
40
|
npm run storybook
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
Storybook demo deployed at: https://
|
|
43
|
+
Storybook demo deployed at: https://master--633cd0dc2fe91d7df3ed32e4.chromatic.com/
|
|
44
44
|
|
|
45
45
|
## Usage
|
|
46
46
|
|
|
@@ -85,7 +85,7 @@ const GridDemo = () => {
|
|
|
85
85
|
export: false,
|
|
86
86
|
}),
|
|
87
87
|
// This is the flex column that will expand to fit
|
|
88
|
-
GridCell({
|
|
88
|
+
GridCell<ITestRow, string>({
|
|
89
89
|
field: "name",
|
|
90
90
|
headerName: "Name",
|
|
91
91
|
flex: 1,
|
package/dist/step-ag-grid.cjs.js
CHANGED
|
@@ -4464,8 +4464,8 @@ const GridPopoutEditMultiSelect = (colDef, props) => GridCell(colDef, {
|
|
|
4464
4464
|
editor: GridFormMultiSelect,
|
|
4465
4465
|
...props,
|
|
4466
4466
|
editorParams: {
|
|
4467
|
-
className: "GridMultiSelect-containerMedium",
|
|
4468
4467
|
...props.editorParams,
|
|
4468
|
+
className: clsx("GridMultiSelect-containerMedium", props.editorParams?.className),
|
|
4469
4469
|
},
|
|
4470
4470
|
});
|
|
4471
4471
|
|
|
@@ -4473,8 +4473,8 @@ const GridPopoutEditMultiSelectGrid = (colDef, props) => GridCell(colDef, {
|
|
|
4473
4473
|
editor: GridFormMultiSelectGrid,
|
|
4474
4474
|
...props,
|
|
4475
4475
|
editorParams: {
|
|
4476
|
-
className: "GridMultiSelect-containerMedium",
|
|
4477
4476
|
...props.editorParams,
|
|
4477
|
+
className: clsx("GridMultiSelect-containerMedium", props.editorParams?.className),
|
|
4478
4478
|
},
|
|
4479
4479
|
});
|
|
4480
4480
|
|
|
@@ -4542,9 +4542,8 @@ const GridPopoverEditDropDown = (colDef, props) => GridCell(colDef, {
|
|
|
4542
4542
|
editor: GridFormDropDown,
|
|
4543
4543
|
...props,
|
|
4544
4544
|
editorParams: {
|
|
4545
|
-
// Defaults to large size container
|
|
4546
|
-
className: "GridPopoverEditDropDown-containerLarge",
|
|
4547
4545
|
...props.editorParams,
|
|
4546
|
+
className: clsx("GridPopoverEditDropDown-containerLarge", props.editorParams?.className),
|
|
4548
4547
|
},
|
|
4549
4548
|
});
|
|
4550
4549
|
|