@acusti/dropdown 0.22.0 → 0.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @acusti/dropdown
2
2
 
3
3
  [![latest version](https://img.shields.io/npm/v/@acusti/dropdown?style=for-the-badge)](https://www.npmjs.com/package/@acusti/dropdown)
4
- [![dependencies status](https://img.shields.io/librariesio/release/npm/@acusti/dropdown?style=for-the-badge)](https://libraries.io/npm/@acusti%2Fdropdown/sourcerank)
4
+ [![maintenance status](https://img.shields.io/npms-io/maintenance-score/@acusti/dropdown?style=for-the-badge)](https://npms.io/search?q=%40acusti%2Fdropdown)
5
5
  [![bundle size](https://img.shields.io/bundlephobia/minzip/@acusti/dropdown?style=for-the-badge)](https://bundlephobia.com/package/@acusti/dropdown)
6
6
  [![downloads per month](https://img.shields.io/npm/dm/@acusti/dropdown?style=for-the-badge)](https://www.npmjs.com/package/@acusti/dropdown)
7
7
 
@@ -1,9 +1,9 @@
1
1
  import * as React from 'react';
2
- export declare type Item = {
2
+ export type Item = {
3
3
  element: HTMLElement | null;
4
4
  value: string;
5
5
  };
6
- export declare type Props = {
6
+ export type Props = {
7
7
  /** Boolean indicating if the user can submit an empty value (i.e. clear the value); defaults to true */
8
8
  allowEmpty?: boolean;
9
9
  /** Can take a single React element (e.g. ReactChild) or exactly two renderable children */