nectiasw 0.0.35 → 0.0.38

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
@@ -100,7 +100,7 @@ export { sort } from './utils/sort';
100
100
  export { stack } from './utils/stack';
101
101
  export { bearer } from './utils/bearer';
102
102
  export { revert } from './utils/revert';
103
- export { mapping } from './utils/mapping';
103
+ export { mapping, type Mapping, type Option as IOptionMapping, } from './utils/mapping';
104
104
  export { isAmount } from './utils/amount';
105
105
  export { download } from './utils/download';
106
106
  export { capitalize } from './utils/capitalize';
@@ -109,6 +109,6 @@ export { createTimeSlots, createHalfTimeSlots } from './utils/slots';
109
109
  export * as Detail from './components/Detail';
110
110
  export type { DetailProps, SectionProps } from './components/Detail';
111
111
  export { Timeline } from './components/Timeline';
112
- export type { TimelineProps, TimelineDashedProps } from './components/Timeline/types';
112
+ export type { TimelineProps, TimelineDashedProps, } from './components/Timeline/types';
113
113
  export { Dragarea } from './components/Dragarea';
114
114
  export type { DragareaProps } from './components/Dragarea/types';