£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyʦ•ꎅȮFÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~芩ÊÇí`ÔÑ©ú뙵'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ӽ㞪éUWŸÈË%DÒÕ¬ï‘]/Åcx ‰ï2ß]ä6G[]S£Ôϯrs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! import { __ } from '@wordpress/i18n'; import { useRef } from '@wordpress/element'; import { ColorPickerControl } from './color'; import { LabelControl } from './label'; export const GradientControl = (props) => { const { prop, value, setAttributes } = props; const { name } = prop['c']; const globalDivOne = useRef(null) const globalDivTwo = useRef(null) const globalDivThree = useRef(null) var val = !pagelayer_empty(value) ? value : ['', '', '', '', '', '', '']; if (pagelayer_is_string(val)) { val = val.split(','); } const handleInputChange = (index, newValue) => { const newValues = [...val]; newValues[index] = newValue; setAttributes({ [name]: newValues.toString() }); }; return (