ingred-ui 31.0.1 → 31.0.3
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/dist/components/Select/Select.d.ts +2 -1
- package/dist/components/Select/styled.d.ts +1 -1
- package/dist/index.es.js +430 -430
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +413 -413
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { Props as ReactSelectProps, StylesConfig } from "react-select";
|
|
2
|
+
import { Props as ReactSelectProps, StylesConfig, type MenuListProps } from "react-select";
|
|
3
3
|
import { Theme } from "../../themes";
|
|
4
4
|
export declare const getOverrideStyles: <OptionValue>(theme: Theme, error: boolean) => StylesConfig<OptionType<OptionValue>, boolean>;
|
|
5
5
|
export type OptionType<T = string> = {
|
|
6
6
|
label: string;
|
|
7
7
|
value: T;
|
|
8
8
|
};
|
|
9
|
+
export declare const ReactSelectMenuList: ({ children, innerRef, innerProps, maxHeight, }: MenuListProps<OptionType<any>, boolean>) => JSX.Element;
|
|
9
10
|
/**
|
|
10
11
|
* @deprecated このコンポーネントは非推奨です。代わりに `Select2` を使用してください。
|
|
11
12
|
*/
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const Container: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<any, never> & Partial<Pick<any, never>>> & string;
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const MenuListInner: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<any, never> & Partial<Pick<any, never>>> & string;
|