This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

react-material-dropdown-v4z
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

react-material-dropdown-v4z


LIVE EXAMPLE

Description

  • React simple dropdown / menu.
  • Can limit option or auto fit window height.
  • Auto change orientation if height exceeds window. (checking...)
  • Show tooltip if need. (text overflow)
  • Single select.

Usage

npm install react-material-dropdown-v4z react-material-tc-i4z

Import the module in the place you want to use:

import "react-material-tc-i4z/dist/styles.css"; // require for tooltip if need (text-overflow: ellipsis)

import BasicDropDown from 'react-material-dropdown-v4z'

Snippet

simple
    const [value, setValue] = useState(null)

    <BasicDropDown
        width="300px"
        placeholder="abcd"
        // noDataText="this is nodata"
        disabledValues={[2]}
        // maxHeightDropdown="10px" // it display depend min
        // maxDisplay={2}
        // vertical="top"
        options={opt}
        // disabled={true}
        keyName="key"
        labelName="label"
        tooltipLabel={{
          placement: "top",
          // enabled: true
          // className ...
        }}
        tooltipItem={{
          placement: "right",
          //  enabled: true
          // className ...
        }}
        selectedValue={value}
        onSelection={(item) => setValue(item.key)}
      />
      {value}

      // const opt = [
      //     { key: 1, label: "21323 232323j2lk3jl2j"},
      //     { key: 2, label: "22"},
      //     { key: 3, label: "23"},
      //     { key: 4, label: "24"},
      //     { key: 5, label: "25"},
      //     { key: 7, label: "26"},
      //     { key: 8, label: "27"},
      //     { key: 9, label: "28"},
      //   ]

    //  const opt = [1, 2, 3, 4, 5, 6]
    //  const opt = ["1", "2", "3", "4", "5", "6"]

props

id?                | string           |
name?              | string           |
style?             | CSSProperties;   |
className?         | string;          |
menuClassName?     | string;          |
placeholder?       | string           |
noDataText?:       | string           | text when no data
selectedValue?:    | string, number,  |
options:           | array[];         | list options [same type]
disabledValues?:   | array[];         | disabled list value
keyName?:          | string;          | if option is obj.
labelName?:        | string;          | if option is obj.
width?:            | string, number   |
height?:           | string, number   |
paddingTransform?: | string, number   | padding transform
maxHeightDropdown  | string, number   | maxHeight list
vertical?:         | top, bottom      | only support. (// TODO LEFT RIGHT)
autoDirection?:    | true             | auto change top/left
                                      |    if height > screen
maxDisplay?:       | number;          | limit option
minDisplay?:       | number;          | min option
tooltipLabel?:     | IDropDownTooltip | config tooltip for label
tooltipItem?:      | IDropDownTooltip | config tooltip for item
onSelection?:      | func             |

IDropDownTooltip from 'react-material-tc-i4z'

always?: boolean;        | always tooltip
enabled?: boolean;       |
...

NOTE

You should add class to customize the color.

RUN

LIVE EXAMPLE

npm install
npm run dev
npm run start

License

MIT

Package Sidebar

Install

npm i react-material-dropdown-v4z

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

22.1 kB

Total Files

7

Last publish

Collaborators

  • delpikye