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/input-number/style/token.d.ts
import type { SharedComponentToken, SharedInputToken } from '../../input/style/token';
import type { FullToken, GetDefaultToken } from '../../theme/internal';
export interface ComponentToken extends SharedComponentToken {
    /**
     * @desc 输入框宽度
     * @descEN Width of input
     */
    controlWidth: number;
    /**
     * @desc 操作按钮宽度
     * @descEN Width of control button
     */
    handleWidth: number;
    /**
     * @desc 操作按钮图标大小
     * @descEN Icon size of control button
     */
    handleFontSize: number;
    /**
     * Default `auto`. Set `true` will always show the handle
     * @desc 操作按钮可见性
     * @descEN Handle visible
     */
    handleVisible: 'auto' | true;
    /**
     * @desc 操作按钮背景色
     * @descEN Background color of handle
     */
    handleBg: string;
    /**
     * @desc 操作按钮激活背景色
     * @descEN Active background color of handle
     */
    handleActiveBg: string;
    /**
     * @desc 操作按钮悬浮颜色
     * @descEN Hover color of handle
     */
    handleHoverColor: string;
    /**
     * @desc 操作按钮边框颜色
     * @descEN Border color of handle
     */
    handleBorderColor: string;
    /**
     * @desc 面性变体操作按钮背景色
     * @descEN Background color of handle in filled variant
     */
    filledHandleBg: string;
}
export type InputNumberToken = FullToken<'InputNumber'> & SharedInputToken;
export declare const prepareComponentToken: GetDefaultToken<'InputNumber'>;