nectiasw 0.0.197 → 0.0.199
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/Search/types.d.ts +1 -0
- package/dist/components/Search/variants/styled.d.ts +4 -1
- package/dist/components/Select/Select.stories.d.ts +1 -0
- package/dist/components/Select/index.d.ts +1 -0
- package/dist/index.es.js +8339 -8325
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +270 -270
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -6,8 +6,11 @@ type SkeletonProps = {
|
|
|
6
6
|
type WithTheme = {
|
|
7
7
|
theming?: Color;
|
|
8
8
|
};
|
|
9
|
+
type SearchContainerProps = {
|
|
10
|
+
marginTop?: string;
|
|
11
|
+
};
|
|
9
12
|
export declare const SkeletonDropdownItem: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SkeletonProps>> & string;
|
|
10
|
-
export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').
|
|
13
|
+
export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SearchContainerProps>> & string;
|
|
11
14
|
export declare const SearchBar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, WithTheme>> & string;
|
|
12
15
|
export declare const SearchInput: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, WithTheme & {
|
|
13
16
|
placeholderColor: Color;
|