HEX
Server: Apache
System: Linux www 5.10.0-10-amd64 #1 SMP Debian 5.10.84-1 (2021-12-08) x86_64
User: root (0)
PHP: 8.2.1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals
Upload Files
File: /mnt/drbd/www/edenhouse/wp-content/plugins/essential-blocks/blocks/row/src/constants/index.js
import { __ } from "@wordpress/i18n";

export const CONTENT_WIDTH_OPTIONS = [
	{ label: __("Full Width", "essential-blocks"), value: "full" },
	{ label: __("Boxed", "essential-blocks"), value: "boxed" },
];

export const ROW_HEIGHTS = [
	{ label: __("Default", "essential-blocks"), value: "default" },
	{ label: __("Fit To Screen", "essential-blocks"), value: "fit" },
	{ label: __("Min Height", "essential-blocks"), value: "minH" },
	{ label: __("Equal Height", "essential-blocks"), value: "equalH" },
];

export const ROW_OVERFLOWS = [
	{ label: __("Visible", "essential-blocks"), value: "visible" },
	{ label: __("Hidden", "essential-blocks"), value: "hidden" },
	// { label: __("Scroll", "essential-blocks"), value: "scroll" },
];

export const COLUMNS_ALIGN = [
	{ label: "Default", value: "" },
	{ label: "Top", value: "flex-start" },
	{ label: "Center", value: "center" },
	{ label: "Bottom", value: "flex-end" },
];

export const COLUMNS_ORDER = [
	{ label: "Default", value: "default" },
	{ label: "Reverse Columns", value: "row-reverse" },
	{ label: "Custom Order", value: "custom" },
];

export const JUSTIFY_CONTENTS = [
	{ label: __("Start", "essential-blocks"), value: "flex-start" },
	{ label: __("Center", "essential-blocks"), value: "center" },
	{ label: __("End", "essential-blocks"), value: "flex-end" },
	{ label: __("Space-Between", "essential-blocks"), value: "space-between" },
	{ label: __("Space-around", "essential-blocks"), value: "space-around" },
	{ label: __("Space-Evenly", "essential-blocks"), value: "space-evenly" },
];

// // export const BG_TYPES = ["fill", "gradient"];
// export const ALIGN_ITEMS = [
// 	{ label: __(<Dashicon icon={"editor-alignleft"} />), value: "flex-start" },
// 	{ label: __(<Dashicon icon={"editor-aligncenter"} />), value: "center" },
// 	{ label: __(<Dashicon icon={"editor-alignright"} />), value: "flex-end" },
// ];

// export const FLEX_DIRECTIONS = [
// 	{ label: "Row", value: "row" },
// 	{ label: "Row-Reverse", value: "row-reverse" },
// 	{ label: "Column", value: "column" },
// 	{ label: "Column-Reverse", value: "column-reverse" },
// ];