HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/design.system/node_modules/antd/lib/color-picker/context.d.ts
import React from 'react';
import type { GetProp } from '../_util/type';
import type { AggregationColor } from './color';
import type { ModeOptions } from './hooks/useModeColor';
import type { ColorFormatType, ColorPickerProps, ModeType, PresetsItem } from './interface';
export interface PanelPickerContextProps {
    prefixCls: string;
    allowClear?: boolean;
    disabled?: boolean;
    disabledAlpha?: boolean;
    mode: ModeType;
    onModeChange: (mode: ModeType) => void;
    modeOptions: ModeOptions;
    value: AggregationColor;
    onChange: (value?: AggregationColor, pickColor?: boolean) => void;
    onChangeComplete: GetProp<ColorPickerProps, 'onChangeComplete'>;
    format?: ColorFormatType;
    onFormatChange?: ColorPickerProps['onFormatChange'];
    /** The gradient Slider active handle */
    activeIndex: number;
    /** The gradient Slider handle active changed */
    onActive: (index: number) => void;
    /** Is gradient Slider dragging */
    gradientDragging: boolean;
    /** The gradient Slider dragging changed */
    onGradientDragging: (dragging: boolean) => void;
    onClear?: () => void;
    disabledFormat?: boolean;
}
export interface PanelPresetsContextProps {
    prefixCls: string;
    presets?: PresetsItem[];
    disabled?: boolean;
    value: AggregationColor;
    onChange?: (value: AggregationColor) => void;
}
export declare const PanelPickerContext: React.Context<PanelPickerContextProps>;
export declare const PanelPresetsContext: React.Context<PanelPresetsContextProps>;