File: /home/confeduphaar/www/wp-content/plugins/essential-blocks/src/blocks/popup/src/constants/index.js
import { __ } from "@wordpress/i18n";
export const ICON_POSITIONS = [
{ label: __("Left", "essential-blocks"), value: "left" },
{ label: __("Right", "essential-blocks"), value: "right" },
];
export const BUTTON_ALIGNMENT = [
{ label: __("Left", "essential-blocks"), value: "left" },
{ label: __("Center", "essential-blocks"), value: "center" },
{ label: __("Right", "essential-blocks"), value: "right" },
];
export const HEIGHT_UNITS = [
{ label: "px", value: "px" },
{ label: "%", value: "%" },
{ label: "em", value: "em" },
{ label: "vh", value: "vh" },
];
export const POPUP_WIDTH = "popupWidth";
export const POPUP_HEIGHT = "popupHeight";
export const POPUP_MARGIN = "popupMargin";
export const POPUP_PADDING = "popupPadding";
export const POPUP_BACKGROUND = "popupBack";
export const POPUP_BORDER = "popupBorder";
export const CLOSE_BORDER = "closeBorder";
export const CLOSE_PADDING = "closePadding";
export const CONTAINER_PADDING = "containerPadding";
export const BUTTON_BACKGROUND = "btnBack";
export const BUTTON_BORDER = "btnBorder";
export const BUTTON_PADDING = "btnPadding";
export const CLOSE_BTN_TOP = "closeTop";
export const CLOSE_BTN_RIGHT = "closeRight";
export const CLOSE_BTN_LEFT = "closeLeft";
export const wrapMarginConst = "wrpMrg_";
export const wrapPaddingConst = "wrpPad_";