chore: workspace view display filters and properties , code refactor (#2295)

* chore: spreadsheet view context

* chore: spreadsheet context provider

* chore: spreadsheet view context

* chore: display filters and properties added in workspace view and code refactor

* fix: build error fix

* chore: set sub-issue display option to false for global views

---------

Co-authored-by: gurusainath <gurusainath007@gmail.com>
This commit is contained in:
Anmol Singh Bhatia
2023-09-28 20:34:57 +05:30
committed by GitHub
parent 4503810aeb
commit a048e513b7
48 changed files with 3119 additions and 2369 deletions
+7 -1
View File
@@ -19,6 +19,7 @@ export type CustomMenuProps = DropdownProps & {
const CustomMenu = ({
buttonClassName = "",
customButtonClassName = "",
children,
className = "",
customButton,
@@ -40,7 +41,12 @@ const CustomMenu = ({
{({ open }) => (
<>
{customButton ? (
<Menu.Button as="button" type="button" onClick={menuButtonOnClick}>
<Menu.Button
as="button"
type="button"
onClick={menuButtonOnClick}
className={customButtonClassName}
>
{customButton}
</Menu.Button>
) : (
+1
View File
@@ -1,5 +1,6 @@
export type DropdownProps = {
buttonClassName?: string;
customButtonClassName?: string;
className?: string;
customButton?: JSX.Element;
disabled?: boolean;