| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- export interface TdSearchProps {
- action?: {
- type: StringConstructor;
- value?: string;
- };
- adjustPosition?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- alwaysEmbed?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- center?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- clearTrigger?: {
- type: StringConstructor;
- value?: 'always' | 'focus';
- };
- clearable?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- confirmHold?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- confirmType?: {
- type: StringConstructor;
- value?: 'send' | 'search' | 'next' | 'go' | 'done';
- };
- cursor: {
- type: NumberConstructor;
- value?: number;
- required?: boolean;
- };
- cursorSpacing?: {
- type: NumberConstructor;
- value?: number;
- };
- disabled?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- focus?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- holdKeyboard?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- leftIcon?: {
- type: StringConstructor;
- value?: string;
- };
- maxcharacter?: {
- type: NumberConstructor;
- value?: number;
- };
- maxlength?: {
- type: NumberConstructor;
- value?: number;
- };
- placeholder?: {
- type: StringConstructor;
- value?: string;
- };
- placeholderClass?: {
- type: StringConstructor;
- value?: string;
- };
- placeholderStyle: {
- type: StringConstructor;
- value?: string;
- required?: boolean;
- };
- readonly?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- resultList?: {
- type: ArrayConstructor;
- value?: Array<string>;
- };
- selectionEnd?: {
- type: NumberConstructor;
- value?: number;
- };
- selectionStart?: {
- type: NumberConstructor;
- value?: number;
- };
- shape?: {
- type: StringConstructor;
- value?: 'square' | 'round';
- };
- type?: {
- type: StringConstructor;
- value?: 'text' | 'number' | 'idcard' | 'digit' | 'nickname';
- };
- value?: {
- type: StringConstructor;
- value?: string;
- };
- }
|