HEX
Server: Apache
System: Linux gains.linuxbigapps.com 4.18.0-553.74.1.lve.el8.x86_64 #1 SMP Tue Sep 9 14:25:24 UTC 2025 x86_64
User: mountains (1551)
PHP: 8.0.30
Disabled: allow_url_include, show_source, symlink, system, passthru, exec, popen, pclose, proc_open, proc_terminate,proc_get_status, proc_close, proc_nice, allow_url_fopen, shell-exec, shell_exec, fpassthru, base64_encodem, escapeshellcmd, escapeshellarg, crack_check,crack_closedict, crack_getlastmessage, crack_opendict, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, dl, escap, phpinfo
Upload Files
File: /home/mountains/public_html/wp-content/themes/neve/assets/apps/components/src/components.d.ts
import React from 'react';

declare module '@neve-wp/components' {
	interface BackgroundProps {
		onChange: (nextValue: Record<string, unknown>) => void;
		value: Record<string, unknown>;
		label?: string;
	}

	const Background: React.FunctionComponent<BackgroundProps>;

	interface ButtonAppearanceProps {
		label?: string;
		value: Record<string, unknown>;
		onChange: (nextValue: Record<string, unknown>) => void;
		noHover: boolean;
		defaultVals: Record<string, unknown>;
	}

	const ButtonAppearance: React.FunctionComponent<ButtonAppearanceProps>;

	interface ColorControlProps {
		label?: string;
		selectedColor: string;
		onChange: (nextValue: string) => void;
		defaultValue?: string;
		disableGlobal?: boolean;
		allowGradient?: boolean;
	}

	const ColorControl: React.FunctionComponent<ColorControlProps>;

	interface InlineSelectProps {
		label?: string;
		disabled: boolean;
		onChange: (nextValue: string) => void;
		value: string | number;
		options: Record<'value' | 'label', string>[];
	}

	const InlineSelect: React.FunctionComponent<InlineSelectProps>;

	interface MultiSelectProps {
		label?: string;
		onChange: (nextValue: Record<string, unknown>) => void;
		currentValue: string | number;
		choices: Record<string | number, string>;
	}

	const MultiSelect: React.FunctionComponent<MultiSelectProps>;

	interface NumberControlProps {
		label?: string;
		value: string | number;
		onChange: (nextValue: Record<string, unknown>) => void;
		onReset: () => void;
		units: boolean | string[];
		default: string | number;
		max: number;
		min: number;
		step: number;
		hasResponsive: boolean;
		onChangedDevice: (nextValue: Record<string, unknown>) => void;
		className: string;
	}

	const NumberControl: React.FunctionComponent<NumberControlProps>;

	interface RadioIconsProps {
		options: Record<string, unknown>[];
		onChange: (nextValue: Record<string, unknown>) => void;
		value: string | number;
		showLabels: boolean;
	}

	const RadioIcons: React.FunctionComponent<RadioIconsProps>;

	interface RadioImageProps {
		choices: Record<string, string>;
		onClick: (nextValue: string) => void;
		value: string;
	}

	const RadioImage: React.FunctionComponent<RadioImageProps>;

	interface SizingControlProps {
		options: [];
		defaults: string | number | Record<string, unknown>;
		onChange: (nextValue: Record<string, unknown>) => void;
		onReset: () => void;
		noLinking: boolean;
		min: number;
		max: number;
		step: number;
	}

	const SizingControl: React.FunctionComponent<SizingControlProps>;

	interface ToggleProps {
		description?: string;
		label?: string;
		checked: boolean;
		onChange: (nextValue: Record<string, unknown>) => void;
	}

	const Toggle: React.FunctionComponent<ToggleProps>;

	interface AccordionProps {
		children: unknown;
		label?: string;
		initiallyExpanded: boolean;
	}

	const Accordion: React.FunctionComponent<AccordionProps>;

	type MaybeParseJSONFunc = (
		value: string
	) => Record<string | number, unknown>;
	const maybeParseJson: MaybeParseJSONFunc;

	type IsObjectFunc = (value: unknown) => boolean;
	const isObject: IsObjectFunc;

	type MergeDeepFunc = (
		value: Record<string | number, unknown>[]
	) => Record<string | number, unknown>;
	const mergeDeep: MergeDeepFunc;

	const globalPaletteColors: Record<string, string>;
	const getIntValAsResponsive: (value: unknown) => Record<string, number>;
	const fontVariantMap: Record<string | number, string>;
}