Added ability to edit filter and sort chip directly (#2968)

* - Added EditableSortChip
- Fixed EditableFilterChip onRemove not closing

* Added missing script in dependencies

* Linted files

* Finished fixing lint
This commit is contained in:
Lucas Bordeau
2023-12-13 15:24:06 +01:00
committed by GitHub
parent e3e42be723
commit bded46444d
14 changed files with 232 additions and 55 deletions

View File

@ -1,4 +1,4 @@
import { Meta, StoryObj } from '@storybook/react';
import { Meta, Story, StoryObj } from '@storybook/react';
import { ComponentDecorator } from '~/testing/decorators/ComponentDecorator';

View File

@ -56,6 +56,7 @@ export const Dropdown = ({
useDropdown();
const offsetMiddlewares = [];
if (dropdownOffset.x) {
offsetMiddlewares.push(offset({ crossAxis: dropdownOffset.x }));
}