@saas-ui/react 3.0.0-alpha.18 → 3.0.0-alpha.19
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/CHANGELOG.md +12 -0
- package/dist/chunk-QVFJV6HJ.js +8 -0
- package/dist/{chunk-ULAJ3JEO.js → chunk-S5J6REMC.js} +9 -1
- package/dist/components/card/index.cjs +31 -0
- package/dist/components/card/index.d.cts +1 -0
- package/dist/components/card/index.d.ts +1 -0
- package/dist/components/card/index.js +8 -0
- package/dist/components/command/index.d.cts +2 -5
- package/dist/components/command/index.d.ts +2 -5
- package/dist/components/grid-list/index.d.cts +65 -3
- package/dist/components/grid-list/index.d.ts +65 -3
- package/dist/components/icon-button/index.cjs +31 -0
- package/dist/components/icon-button/index.d.cts +1 -0
- package/dist/components/icon-button/index.d.ts +1 -0
- package/dist/components/icon-button/index.js +8 -0
- package/dist/components/number-input/index.cjs +9 -1
- package/dist/components/number-input/index.js +1 -1
- package/dist/index.cjs +460 -310
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +264 -123
- package/dist/types-DnFoUudY.d.cts +10 -0
- package/dist/types-DnFoUudY.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as _chakra_ui_react from '@chakra-ui/react';
|
2
2
|
import { ChakraProviderProps } from '@chakra-ui/react';
|
3
|
-
export { LinkProps, createSystem } from '@chakra-ui/react';
|
3
|
+
export { IconButton, IconButtonProps, LinkProps, createSystem } from '@chakra-ui/react';
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
5
5
|
import * as react from 'react';
|
6
6
|
import react__default from 'react';
|
@@ -37,6 +37,7 @@ export { Steps } from './components/steps/index.cjs';
|
|
37
37
|
export { Switch, SwitchProps } from './components/switch/index.cjs';
|
38
38
|
export { Toaster, ToasterProps, toast } from './components/toaster/index.cjs';
|
39
39
|
export { Tooltip, TooltipProps } from './components/tooltip/index.cjs';
|
40
|
+
import './types-DnFoUudY.cjs';
|
40
41
|
import '@ark-ui/react/dialog';
|
41
42
|
import '@ark-ui/react';
|
42
43
|
import '@saas-ui/core/grid-list';
|
package/dist/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as _chakra_ui_react from '@chakra-ui/react';
|
2
2
|
import { ChakraProviderProps } from '@chakra-ui/react';
|
3
|
-
export { LinkProps, createSystem } from '@chakra-ui/react';
|
3
|
+
export { IconButton, IconButtonProps, LinkProps, createSystem } from '@chakra-ui/react';
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
5
5
|
import * as react from 'react';
|
6
6
|
import react__default from 'react';
|
@@ -37,6 +37,7 @@ export { Steps } from './components/steps/index.js';
|
|
37
37
|
export { Switch, SwitchProps } from './components/switch/index.js';
|
38
38
|
export { Toaster, ToasterProps, toast } from './components/toaster/index.js';
|
39
39
|
export { Tooltip, TooltipProps } from './components/tooltip/index.js';
|
40
|
+
import './types-DnFoUudY.js';
|
40
41
|
import '@ark-ui/react/dialog';
|
41
42
|
import '@ark-ui/react';
|
42
43
|
import '@saas-ui/core/grid-list';
|