@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.
@@ -4462,8 +4462,8 @@ const GridPopoutEditMultiSelect = (colDef, props) => GridCell(colDef, {
4462
4462
  editor: GridFormMultiSelect,
4463
4463
  ...props,
4464
4464
  editorParams: {
4465
- className: "GridMultiSelect-containerMedium",
4466
4465
  ...props.editorParams,
4466
+ className: clsx("GridMultiSelect-containerMedium", props.editorParams?.className),
4467
4467
  },
4468
4468
  });
4469
4469
 
@@ -4471,8 +4471,8 @@ const GridPopoutEditMultiSelectGrid = (colDef, props) => GridCell(colDef, {
4471
4471
  editor: GridFormMultiSelectGrid,
4472
4472
  ...props,
4473
4473
  editorParams: {
4474
- className: "GridMultiSelect-containerMedium",
4475
4474
  ...props.editorParams,
4475
+ className: clsx("GridMultiSelect-containerMedium", props.editorParams?.className),
4476
4476
  },
4477
4477
  });
4478
4478
 
@@ -4540,9 +4540,8 @@ const GridPopoverEditDropDown = (colDef, props) => GridCell(colDef, {
4540
4540
  editor: GridFormDropDown,
4541
4541
  ...props,
4542
4542
  editorParams: {
4543
- // Defaults to large size container
4544
- className: "GridPopoverEditDropDown-containerLarge",
4545
4543
  ...props.editorParams,
4544
+ className: clsx("GridPopoverEditDropDown-containerLarge", props.editorParams?.className),
4546
4545
  },
4547
4546
  });
4548
4547