nectiasw 0.0.37 → 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/index.d.ts +2 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +17 -17
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/utils/mapping/index.d.ts +2 -3
- package/package.json +2 -2
- package/dist/components/Wizard/index.d.ts +0 -17
- package/dist/components/Wizard/styles.d.ts +0 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
export { Box } from './components/Box';
|
|
3
2
|
export type { BoxProps } from './components/Box';
|
|
4
3
|
export { Row } from './components/Row';
|
|
@@ -101,7 +100,7 @@ export { sort } from './utils/sort';
|
|
|
101
100
|
export { stack } from './utils/stack';
|
|
102
101
|
export { bearer } from './utils/bearer';
|
|
103
102
|
export { revert } from './utils/revert';
|
|
104
|
-
export { mapping } from './utils/mapping';
|
|
103
|
+
export { mapping, type Mapping, type Option as IOptionMapping, } from './utils/mapping';
|
|
105
104
|
export { isAmount } from './utils/amount';
|
|
106
105
|
export { download } from './utils/download';
|
|
107
106
|
export { capitalize } from './utils/capitalize';
|
|
@@ -110,6 +109,6 @@ export { createTimeSlots, createHalfTimeSlots } from './utils/slots';
|
|
|
110
109
|
export * as Detail from './components/Detail';
|
|
111
110
|
export type { DetailProps, SectionProps } from './components/Detail';
|
|
112
111
|
export { Timeline } from './components/Timeline';
|
|
113
|
-
export type { TimelineProps, TimelineDashedProps } from './components/Timeline/types';
|
|
112
|
+
export type { TimelineProps, TimelineDashedProps, } from './components/Timeline/types';
|
|
114
113
|
export { Dragarea } from './components/Dragarea';
|
|
115
114
|
export type { DragareaProps } from './components/Dragarea/types';
|