From b88d60ad4f195a394a358b6a94886dee9821f6d8 Mon Sep 17 00:00:00 2001 From: Yossi Saadi Date: Tue, 21 May 2024 20:34:48 +0300 Subject: [PATCH] chore: remove duplicate --- .../components/Dropdown/DropdownConstants.js | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 packages/core/src/components/Dropdown/DropdownConstants.js diff --git a/packages/core/src/components/Dropdown/DropdownConstants.js b/packages/core/src/components/Dropdown/DropdownConstants.js deleted file mode 100644 index d36a81f45f..0000000000 --- a/packages/core/src/components/Dropdown/DropdownConstants.js +++ /dev/null @@ -1,24 +0,0 @@ -export const defaultCustomStyles = baseStyles => baseStyles; - -export const ADD_AUTO_HEIGHT_COMPONENTS = ["container", "control", "valueContainer"]; - -export const DROPDOWN_ID = "dropdown-menu-id"; -export const DROPDOWN_MENU_ID = "dropdown-menu-list-id"; -export const DROPDOWN_MENU_ARIA_LABEL = "Dropdown menu"; - -export const DROPDOWN_CHIP_COLORS = { - PRIMARY: "PRIMARY", - NEGATIVE: "NEGATIVE", - POSITIVE: "POSITIVE" -}; - -export const DROPDOWN_MENU_POSITION = { - ABSOLUTE: "absolute", - FIXED: "fixed" -}; - -export const DROPDOWN_MENU_PLACEMENT = { - TOP: "top", - BOTTOM: "bottom", - AUTO: "auto" -};