£Á°è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 { useState } from '@wordpress/element'; import { LabelControl } from './label'; export const SelectControl = (props) =>{ const { prop, label, value, setAttributes, attributes } = props; const { name } = prop['c']; const handleSelectChange = (e) => { var val = e.target.value; setAttributes({ [name]: val }); if( name == 'animation' ){ var jEle = jQuery(`.p-${attributes['pagelayer-id']}`); var sel = jQuery(e.target); pagelayer_trigger_anim(jEle, sel, val); } }; const renderOptions = () => { return Object.keys(prop.list).map((groupOrValue, index) => { if (typeof prop.list[groupOrValue] === 'string') { return ( ); }else{ return ( ); } }); }; return (