����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import { toolSelect } from '@agent/icons';
import { useWorkflowStore } from '@agent/state/workflows';
import { useEditModeStore } from '@quick-edit/state/edit-mode';
import { __ } from '@wordpress/i18n';
import { closeSmall, Icon } from '@wordpress/icons';
import classNames from 'classnames';
export const ChatTools = ({ disabled = false }) => {
const { getWorkflowsByFeature } = useWorkflowStore();
const editModeOn = useEditModeStore((s) => s.on);
const domTool = getWorkflowsByFeature({ requires: ['block'] })?.length > 0;
const handleClose = () => {
window.dispatchEvent(new CustomEvent('extendify-agent:cancel-workflow'));
useEditModeStore.getState().toggle();
};
if (!domTool) return null;
return (
<div className="flex items-center">
<button
type="button"
disabled={disabled}
className={classNames(
'm-0 flex items-center rounded-sm border-0 px-1 py-0.5 leading-none disabled:opacity-50 text-gray-900',
{
'bg-gray-300': editModeOn,
'bg-gray-100 text-gray-900': !editModeOn,
'hover:bg-gray-200': !disabled,
},
)}
onClick={handleClose}
>
<Icon size={24} icon={toolSelect} />
<span className="px-1 text-sm font-medium">
{__('Select', 'extendify-local')}
</span>
{editModeOn && (
<Icon size={20} icon={closeSmall} className="fill-current" />
)}
</button>
</div>
);
};
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| buttons | Folder | 0755 |
|
|
| layouts | Folder | 0755 |
|
|
| messages | Folder | 0755 |
|
|
| redirects | Folder | 0755 |
|
|
| ChatInput.jsx | File | 6.88 KB | 0644 |
|
| ChatMessages.jsx | File | 5.55 KB | 0644 |
|
| ChatSuggestions.jsx | File | 3.75 KB | 0644 |
|
| ChatTools.jsx | File | 1.35 KB | 0644 |
|
| DOMHighlighter.jsx | File | 8.25 KB | 0644 |
|
| ErrorMessage.jsx | File | 872 B | 0644 |
|
| GuidedTour.jsx | File | 14.88 KB | 0644 |
|
| ImageUploader.jsx | File | 6.03 KB | 0644 |
|
| OptionsPopover.jsx | File | 5.36 KB | 0644 |
|
| PageDocument.jsx | File | 1.06 KB | 0644 |
|
| Rating.jsx | File | 1.85 KB | 0644 |
|
| ScrollDownButton.jsx | File | 1.1 KB | 0644 |
|
| ScrollIntoViewOnce.jsx | File | 876 B | 0644 |
|