Server IP : 172.67.214.6 / Your IP : 216.73.216.73 Web Server : LiteSpeed System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : redwjova ( 1790) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/redwjova/www/wp-content/themes/kadence/inc/customizer/react/src/gradient-control/ |
Upload File : |
/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; export const DEFAULT_GRADIENT = 'linear-gradient(135deg, rgb(6, 147, 227) 0%, rgb(20, 39, 109) 100%)'; export const DEFAULT_LINEAR_GRADIENT_ANGLE = 180; export const HORIZONTAL_GRADIENT_ORIENTATION = { type: 'angular', value: 90, }; export const DEFAULT_RADIAL_GRADIENT_POSITION = 'center center'; export const RADIAL_GRADIENT_ORIENTATION = [ { type: 'shape', value: 'ellipse', at: { type: 'position', value: { x: { type: 'position-keyword', value: 'center' }, y: { type: 'position-keyword', value: 'center' } } } } ]; export const DEFAULT_RADIAL_GRADIENT_SHAPE = 'ellipse'; export const GRADIENT_OPTIONS = [ { value: 'linear-gradient', label: __( 'Linear', 'kadence-blocks' ) }, { value: 'radial-gradient', label: __( 'Radial', 'kadence-blocks' ) }, ]; export const GRADIENT_POSITION_OPTIONS = [ { value: 'center top', label: __( 'Center Top', 'kadence-blocks' ) }, { value: 'center center', label: __( 'Center Center', 'kadence-blocks' ) }, { value: 'center bottom', label: __( 'Center Bottom', 'kadence-blocks' ) }, { value: 'left top', label: __( 'Left Top', 'kadence-blocks' ) }, { value: 'left center', label: __( 'Left Center', 'kadence-blocks' ) }, { value: 'left bottom', label: __( 'Left Bottom', 'kadence-blocks' ) }, { value: 'right top', label: __( 'Right Top', 'kadence-blocks' ) }, { value: 'right center', label: __( 'Right Center', 'kadence-blocks' ) }, { value: 'right bottom', label: __( 'Right Bottom', 'kadence-blocks' ) }, ]; export const DIRECTIONAL_ORIENTATION_ANGLE_MAP = { top: 0, 'top right': 45, 'right top': 45, right: 90, 'right bottom': 135, 'bottom right': 135, bottom: 180, 'bottom left': 225, 'left bottom': 225, left: 270, 'top left': 315, 'left top': 315, };