reykit 1.0.44 → 1.0.46
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/Toggle.d.ts +17 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2981 -2935
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CycleButton } from './components/Button';
|
|
2
2
|
import { default as Form } from './components/Form';
|
|
3
|
+
import { IconToggle } from './components/Toggle';
|
|
3
4
|
import { useOpen, useCount, useIndex, useIsMobile } from './hook';
|
|
4
5
|
import { renderReact } from './react';
|
|
5
6
|
import { default as request } from './request';
|
|
@@ -10,6 +11,7 @@ declare const _default: {
|
|
|
10
11
|
types: typeof types;
|
|
11
12
|
CycleButton: typeof CycleButton;
|
|
12
13
|
Form: typeof Form;
|
|
14
|
+
IconToggle: typeof IconToggle;
|
|
13
15
|
useOpen: typeof useOpen;
|
|
14
16
|
useCount: typeof useCount;
|
|
15
17
|
useIndex: typeof useIndex;
|