import { ToggleButtonTabsProps } from "../../types/filter-settings";

export const SETTINGS_TABS: { label: string }[] = [
  { label: "Quick Tab" },
  { label: "Column" },
  { label: "Sorting" },
];

export const KANBAN_SETTINGS_TABS: { label: string }[] = [
  { label: "Lane" },
  { label: "Swim Lane" },
];

export const LANE_SELECTS = [
  { key: "stage_group", value: "Stage Group" },
  { key: "stage", value: "Stage" },
  { key: "source", value: "Source" },
  { key: "status", value: "Status" },
];

export const TOGGLE_BUTTON_TABS: ToggleButtonTabsProps[] = [
  { label: "Default", value: true, isDisabled: false },
  { label: "Tab Wise", value: false, isDisabled: false },
];

