nectiasw 0.0.35 → 0.0.37

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.
@@ -1,5 +1,4 @@
1
1
  import { default as React } from 'react';
2
- import { JSX } from 'react/jsx-runtime';
3
2
 
4
3
  export declare const CloudArrowUpIcon: React.FC<JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>>;
5
4
  export declare const ExclamationTriangleIcon: React.FC<JSX.IntrinsicAttributes & React.SVGProps<SVGSVGElement>>;
@@ -0,0 +1,13 @@
1
+ import { Props } from 'react-select';
2
+ import { default as React } from 'react';
3
+
4
+ type ExtendedSearch = {
5
+ dropdown?: boolean;
6
+ };
7
+ export declare const StyledSelect: React.ComponentType<Props & ExtendedSearch>;
8
+ export declare const SearchContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
9
+ color?: string;
10
+ }>> & string;
11
+ export declare const StyledDropdown: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('@nectiasw/components/Dropdown').DropdownProps, never>> & string & Omit<React.FunctionComponent<import('@nectiasw/components/Dropdown').DropdownProps>, keyof React.Component<any, {}, any>>;
12
+ export declare const StyledDropdownContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
13
+ export {};
@@ -0,0 +1 @@
1
+ export declare const StyledSelect: any;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+
1
2
  export { Box } from './components/Box';
2
3
  export type { BoxProps } from './components/Box';
3
4
  export { Row } from './components/Row';