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.
- package/dist/components/Dragarea/svg.d.ts +0 -1
- package/dist/components/Search/styled.d.ts +13 -0
- package/dist/components/Select/styled.d.ts +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +15880 -15623
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +330 -314
- package/dist/index.umd.js.map +1 -1
- package/dist/main.d.ts +0 -64
- package/dist/utils/cache/index.d.ts +1 -1
- package/dist/utils/mapping/index.d.ts +7 -8
- package/package.json +3 -4
- package/dist/components/Wizard/index.d.ts +0 -17
- package/dist/components/Wizard/styles.d.ts +0 -8
- package/dist/stories/Button.stories.d.ts +0 -12
|
@@ -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';
|