4.3.2 • Published 8 months ago

@tntd/tooltip-select v4.3.2

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

4.x版本基于tntd2.x

@tntd/ant3-virtual-select

基于 ant3 实现带悬浮显示的下拉列表

安装

npm i @tntd/tooltip-select

用法

所有 API 同 ant3 Select

props 参数:

参数类型默认值是否必填说明
setTitlefunction(e)非必填自定义 tooltip 的 title 节点
isVirtualBooleanfalse非必填列表是否采用虚拟滚动
placementStringtop非必填tooltip位置
isMemoBooleanfalse非必填列表是否采用监听值及children控制渲染

示例

import { useState } from "react";
import TooltipSelect from "@tntd/tooltip-select";
import { Select, Tooltip } from "antd";
const Option = Select.Option;

export default (props) => {
  const [title, setTitle] = useState();
  const aTitle = (title) => {
    return <a>{title}</a>;
  };
  return (
    <TooltipSelect
      setTitle={(value) => {
        return aTitle(value);
      }}
      placeholder="66"
      value={title}
      onChange={(value) => {
        setTitle(value);
      }}
      dropdownMatchSelectWidth={false}
    >
      <Option value={1}>1+1</Option>
      <Option value={2}>2+2</Option>
    </TooltipSelect>
  );
};
4.1.8

8 months ago

4.1.7

8 months ago

4.1.9

8 months ago

4.3.2

8 months ago

4.1.4

9 months ago

4.3.1

8 months ago

4.2.2

8 months ago

4.1.3

9 months ago

4.1.6

8 months ago

4.1.5

8 months ago

4.3.0

8 months ago

4.2.1

8 months ago

4.2.0

8 months ago

4.1.2

1 year ago

3.0.8

1 year ago

4.1.0

1 year ago

4.1.1

1 year ago

3.0.4

2 years ago

3.0.3

2 years ago

3.0.2

2 years ago

3.0.1

2 years ago

3.0.7

2 years ago

3.0.6

2 years ago

3.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago