@saas-ui/react 3.0.0-next.42 → 3.0.0-next.44

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.
Files changed (52) hide show
  1. package/dist/.tsbuildinfo.json +1 -1
  2. package/dist/components/absolute-center/index.js +1 -0
  3. package/dist/components/action-bar/action-bar.js +1 -0
  4. package/dist/components/aspect-ratio/index.js +1 -0
  5. package/dist/components/blockquote/blockquote.d.ts +2 -1
  6. package/dist/components/blockquote/blockquote.js +5 -1
  7. package/dist/components/blockquote/index.d.ts +1 -1
  8. package/dist/components/blockquote/index.js +1 -1
  9. package/dist/components/checkbox/checkbox.js +1 -0
  10. package/dist/components/checkbox/index.d.ts +1 -0
  11. package/dist/components/checkbox/index.js +1 -0
  12. package/dist/components/checkbox-card/checkbox-card.js +1 -0
  13. package/dist/components/clipboard/clipboard.js +1 -0
  14. package/dist/components/close-button/close-button.js +1 -0
  15. package/dist/components/command/command.js +1 -0
  16. package/dist/components/dialog/dialog.js +1 -0
  17. package/dist/components/drawer/drawer.js +1 -0
  18. package/dist/components/empty-state/empty-state.js +1 -0
  19. package/dist/components/field/field.recipe.d.ts +1 -1
  20. package/dist/components/grid-list/grid-list.js +1 -0
  21. package/dist/components/hover-card/hover-card.js +1 -0
  22. package/dist/components/icon-button/icon-button.js +1 -0
  23. package/dist/components/info-tip/info-tip.js +1 -0
  24. package/dist/components/link/link.js +1 -0
  25. package/dist/components/loading-overlay/loading-overlay.js +1 -0
  26. package/dist/components/navbar/navbar.js +1 -0
  27. package/dist/components/number-input/number-input.js +1 -0
  28. package/dist/components/pagination/pagination.js +1 -0
  29. package/dist/components/pin-input/pin-input.js +1 -0
  30. package/dist/components/popover/popover.js +1 -0
  31. package/dist/components/radio/radio.js +1 -0
  32. package/dist/components/radio-card/radio-card.js +1 -0
  33. package/dist/components/search-input/search-input.js +1 -0
  34. package/dist/components/sidebar/sidebar.js +1 -0
  35. package/dist/components/skeleton/skeleton.js +1 -0
  36. package/dist/components/slider/slider.js +1 -0
  37. package/dist/components/spinner/spinner.js +1 -0
  38. package/dist/components/stat/stat.js +1 -0
  39. package/dist/components/status/status.js +1 -0
  40. package/dist/components/steps/index.d.ts +1 -0
  41. package/dist/components/steps/index.js +1 -0
  42. package/dist/components/steps/steps.js +1 -0
  43. package/dist/components/switch/switch.js +1 -0
  44. package/dist/components/tag/tag.js +1 -0
  45. package/dist/components/toggle-tip/toggle-tip.js +1 -0
  46. package/dist/components/tooltip/tooltip.js +1 -0
  47. package/dist/index.d.ts +5 -2
  48. package/dist/index.js +5 -2
  49. package/dist/provider/sui-provider.js +1 -0
  50. package/dist/styled-system/create-slot-recipe-context.js +8 -5
  51. package/dist/theme/slot-recipes.d.ts +1 -1
  52. package/package.json +11 -11
@@ -1 +1,2 @@
1
+ 'use client';
1
2
  export { AbsoluteCenter, } from '@chakra-ui/react/absolute-center';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { ActionBar } from '@chakra-ui/react/action-bar';
@@ -1 +1,2 @@
1
+ 'use client';
1
2
  export { AspectRatio, } from '@chakra-ui/react/aspect-ratio';
@@ -1,5 +1,5 @@
1
1
  import * as React from 'react';
2
- import { Blockquote as ChakraBlockquote } from '@chakra-ui/react';
2
+ import { Blockquote as ChakraBlockquote, type HTMLChakraProps } from '@chakra-ui/react';
3
3
  export interface BlockquoteProps extends ChakraBlockquote.RootProps {
4
4
  cite?: React.ReactNode;
5
5
  citeUrl?: string;
@@ -7,3 +7,4 @@ export interface BlockquoteProps extends ChakraBlockquote.RootProps {
7
7
  showDash?: boolean;
8
8
  }
9
9
  export declare const Blockquote: React.ForwardRefExoticComponent<BlockquoteProps & React.RefAttributes<HTMLDivElement>>;
10
+ export declare const BlockquoteIcon: (props: HTMLChakraProps<"svg">) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,11 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import * as React from 'react';
3
- import { Blockquote as ChakraBlockquote } from '@chakra-ui/react';
4
+ import { Blockquote as ChakraBlockquote, } from '@chakra-ui/react';
4
5
  export const Blockquote = React.forwardRef(function Blockquote(props, ref) {
5
6
  const { children, cite, citeUrl, showDash, icon, ...rest } = props;
6
7
  return (_jsxs(ChakraBlockquote.Root, { ref: ref, ...rest, children: [icon, _jsx(ChakraBlockquote.Content, { cite: citeUrl, children: children }), cite && (_jsxs(ChakraBlockquote.Caption, { children: [showDash ? _jsx(_Fragment, { children: "\u2014" }) : null, " ", _jsx("cite", { children: cite })] }))] }));
7
8
  });
9
+ export const BlockquoteIcon = (props) => {
10
+ return _jsx(ChakraBlockquote.Icon, { ...props });
11
+ };
@@ -1 +1 @@
1
- export { Blockquote, type BlockquoteProps } from './blockquote.tsx';
1
+ export { Blockquote, BlockquoteIcon, type BlockquoteProps, } from './blockquote.tsx';
@@ -1 +1 @@
1
- export { Blockquote } from "./blockquote.js";
1
+ export { Blockquote, BlockquoteIcon, } from "./blockquote.js";
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Checkbox as ChakraCheckbox } from '@chakra-ui/react/checkbox';
@@ -1,2 +1,3 @@
1
1
  export { Checkbox } from './checkbox.tsx';
2
2
  export type { CheckboxProps } from './checkbox.tsx';
3
+ export { CheckboxGroup, type CheckboxGroupProps, } from '@chakra-ui/react/checkbox';
@@ -1 +1,2 @@
1
1
  export { Checkbox } from "./checkbox.js";
2
+ export { CheckboxGroup, } from '@chakra-ui/react/checkbox';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { Fragment, forwardRef } from 'react';
3
4
  import { CheckboxCard as ChakraCheckboxCard } from '@chakra-ui/react/checkbox-card';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import * as React from 'react';
3
4
  import { Clipboard as ChakraClipboard } from '@chakra-ui/react/clipboard';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { IconButton } from "../icon-button/index.js";
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
2
3
  import { createRecipeContext, } from '@chakra-ui/react/styled-system';
3
4
  import { Kbd } from "../kbd/index.js";
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Dialog as ChakraDialog } from '@chakra-ui/react/dialog';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { DialogContext } from '@ark-ui/react/dialog';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Box, EmptyState as ChakraEmptyState, useEmptyStateStyles, } from '@chakra-ui/react';
@@ -1,4 +1,4 @@
1
- export declare const fieldSlotRecipe: import("@chakra-ui/react").SlotRecipeDefinition<"label" | "textarea" | "root" | "input" | "select" | "errorText" | "helperText" | "requiredIndicator", {
1
+ export declare const fieldSlotRecipe: import("@chakra-ui/react").SlotRecipeDefinition<"label" | "textarea" | "root" | "input" | "errorText" | "helperText" | "select" | "requiredIndicator", {
2
2
  orientation: {
3
3
  vertical: {
4
4
  root: {
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { GridList } from '@saas-ui/core/grid-list';
2
3
  import { withContext, withProvider } from "./grid-list.context.js";
3
4
  const GridListRoot = withProvider(GridList.Root, 'root');
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import * as React from 'react';
3
4
  import { HoverCard } from '@chakra-ui/react/hover-card';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Button } from "../button/index.js";
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import * as React from 'react';
3
4
  import { IconButton } from "../icon-button/index.js";
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import React from 'react';
3
4
  import { Link as ChakraLink } from '@chakra-ui/react/link';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Presence, splitPresenceProps, } from '@ark-ui/react/presence';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Navbar } from '@saas-ui/core/navbar';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { NumberInput as ChakraNumberInput } from '@chakra-ui/react/number-input';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef, useMemo } from 'react';
3
4
  import { Pagination as ChakraPagination, usePaginationContext, } from '@chakra-ui/react/pagination';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Group } from '@chakra-ui/react/group';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Popover as ChakraPopover } from '@chakra-ui/react/popover';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { RadioGroup as ChakraRadioGroup } from '@chakra-ui/react/radio-group';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { Fragment, forwardRef } from 'react';
3
4
  import { RadioCard } from '@chakra-ui/react/radio-card';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import React, { forwardRef } from 'react';
3
4
  import { Group, IconButton, Input, InputElement, mergeRefs, useControllableState, } from '@chakra-ui/react';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { Sidebar, useSidebar } from '@saas-ui/core/sidebar';
3
4
  import { ClassNamesProvider, StylesProvider, useRecipeResult, withContext, withItemContext, withItemProvider, } from "./sidebar.context.js";
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Circle } from '@chakra-ui/react/circle';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Slider as ChakraSlider } from '@chakra-ui/react/slider';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Spinner as ChakraSpinner } from '@chakra-ui/react/spinner';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import * as React from 'react';
3
4
  import { Badge } from '@chakra-ui/react/badge';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Status as ChakraStatus } from '@chakra-ui/react/status';
@@ -1 +1,2 @@
1
1
  export * as Steps from './steps.tsx';
2
+ export { useStepsContext } from '@chakra-ui/react/steps';
@@ -1 +1,2 @@
1
1
  export * as Steps from "./steps.js";
2
+ export { useStepsContext } from '@chakra-ui/react/steps';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
3
  import { Box } from '@chakra-ui/react/box';
3
4
  import { Steps as ChakraSteps, useStepsContext } from '@chakra-ui/react/steps';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Switch as ChakraSwitch } from '@chakra-ui/react/switch';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Tag as ChakraTag } from '@chakra-ui/react/tag';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import * as React from 'react';
3
4
  import { Popover } from "../popover/index.js";
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
3
  import { forwardRef } from 'react';
3
4
  import { Portal } from '@chakra-ui/react/portal';
package/dist/index.d.ts CHANGED
@@ -12,12 +12,12 @@ export { AppShell, type AppShellProps } from './components/app-shell/index.ts';
12
12
  export { Avatar, AvatarGroup, type AvatarProps, } from './components/avatar/index.ts';
13
13
  export { Badge, BadgePropsProvider, type BadgeProps, } from './components/badge/index.ts';
14
14
  export { BackButton, type BackButtonProps, } from './components/back-button/index.ts';
15
- export { Blockquote, type BlockquoteProps, } from './components/blockquote/index.ts';
15
+ export { Blockquote, BlockquoteIcon, type BlockquoteProps, } from './components/blockquote/index.ts';
16
16
  export { Breadcrumb } from './components/breadcrumb/index.ts';
17
17
  export { Button, type ButtonProps } from './components/button/index.ts';
18
18
  export { ButtonGroup, type ButtonGroupProps, } from './components/button-group/index.ts';
19
19
  export { Card } from './components/card/index.ts';
20
- export { Checkbox, type CheckboxProps } from './components/checkbox/index.ts';
20
+ export { Checkbox, CheckboxGroup, type CheckboxProps, type CheckboxGroupProps, } from './components/checkbox/index.ts';
21
21
  export { Checkmark, type CheckmarkProps } from './components/checkmark/index.ts';
22
22
  export { CodeBlock } from './components/code-block/index.ts';
23
23
  export { Circle } from './components/circle/index.ts';
@@ -137,3 +137,6 @@ export { VisuallyHidden } from './components/visually-hidden/index.ts';
137
137
  export { Wrap, type WrapProps } from './components/wrap/index.ts';
138
138
  export { Flex, type FlexProps } from './components/flex/index.ts';
139
139
  export type { ColorPalette } from './theme/tokens/colors.ts';
140
+ export { For } from '@chakra-ui/react/for';
141
+ export { LocaleProvider, useLocaleContext, useFilter, } from '@chakra-ui/react/locale';
142
+ export { Theme } from '@chakra-ui/react';
package/dist/index.js CHANGED
@@ -9,12 +9,12 @@ export { AppShell } from "./components/app-shell/index.js";
9
9
  export { Avatar, AvatarGroup, } from "./components/avatar/index.js";
10
10
  export { Badge, BadgePropsProvider, } from "./components/badge/index.js";
11
11
  export { BackButton, } from "./components/back-button/index.js";
12
- export { Blockquote, } from "./components/blockquote/index.js";
12
+ export { Blockquote, BlockquoteIcon, } from "./components/blockquote/index.js";
13
13
  export { Breadcrumb } from "./components/breadcrumb/index.js";
14
14
  export { Button } from "./components/button/index.js";
15
15
  export { ButtonGroup, } from "./components/button-group/index.js";
16
16
  export { Card } from "./components/card/index.js";
17
- export { Checkbox } from "./components/checkbox/index.js";
17
+ export { Checkbox, CheckboxGroup, } from "./components/checkbox/index.js";
18
18
  export { Checkmark } from "./components/checkmark/index.js";
19
19
  export { CodeBlock } from "./components/code-block/index.js";
20
20
  export { Circle } from "./components/circle/index.js";
@@ -130,3 +130,6 @@ export { Strong } from "./components/strong/index.js";
130
130
  export { VisuallyHidden } from "./components/visually-hidden/index.js";
131
131
  export { Wrap } from "./components/wrap/index.js";
132
132
  export { Flex } from "./components/flex/index.js";
133
+ export { For } from '@chakra-ui/react/for';
134
+ export { LocaleProvider, useLocaleContext, useFilter, } from '@chakra-ui/react/locale';
135
+ export { Theme } from '@chakra-ui/react';
@@ -1,3 +1,4 @@
1
+ 'use client';
1
2
  import { jsx as _jsx } from "react/jsx-runtime";
2
3
  import * as React from 'react';
3
4
  import { ChakraProvider } from '@chakra-ui/react';
@@ -1,6 +1,6 @@
1
1
  'use client';
2
2
  import { jsx as _jsx } from "react/jsx-runtime";
3
- import { forwardRef } from 'react';
3
+ import { forwardRef, useMemo } from 'react';
4
4
  import { chakra, createContext, mergeProps, useSlotRecipe, } from '@chakra-ui/react';
5
5
  import { cx } from '@saas-ui/core/utils';
6
6
  import { EMPTY_SLOT_STYLES } from "./empty.js";
@@ -30,8 +30,8 @@ export const createSlotRecipeContext = (options) => {
30
30
  recipe: restProps.recipe || recipeConfig,
31
31
  });
32
32
  // @ts-ignore
33
- const [variantProps, otherProps] = slotRecipe.splitVariantProps(restProps);
34
- const styles = unstyled ? EMPTY_SLOT_STYLES : slotRecipe(variantProps);
33
+ const [variantProps, otherProps] = useMemo(() => slotRecipe.splitVariantProps(restProps), [restProps, slotRecipe]);
34
+ const styles = useMemo(() => (unstyled ? EMPTY_SLOT_STYLES : slotRecipe(variantProps)), [unstyled, variantProps, slotRecipe]);
35
35
  return {
36
36
  styles: styles,
37
37
  classNames: slotRecipe.classNameMap,
@@ -41,7 +41,8 @@ export const createSlotRecipeContext = (options) => {
41
41
  function withRootProvider(Component, options = {}) {
42
42
  const { defaultProps } = options;
43
43
  const StyledComponent = (inProps) => {
44
- const props = mergeProps(defaultProps, usePropsContext(), inProps);
44
+ const propsContext = usePropsContext();
45
+ const props = useMemo(() => mergeProps(defaultProps, propsContext, inProps), [propsContext, inProps]);
45
46
  const { styles, classNames, props: rootProps } = useRecipeResult(props);
46
47
  return (_jsx(StylesProvider, { value: styles, children: _jsx(ClassNamesProvider, { value: classNames, children: _jsx(Component, { ...rootProps }) }) }));
47
48
  };
@@ -53,10 +54,12 @@ export const createSlotRecipeContext = (options) => {
53
54
  const { defaultProps, ...restOptions } = options ?? {};
54
55
  const SuperComponent = chakra(Component, {}, restOptions);
55
56
  const StyledComponent = forwardRef((inProps, ref) => {
56
- const props = mergeProps(defaultProps ?? {}, usePropsContext(), inProps);
57
+ const propsContext = usePropsContext();
58
+ const props = useMemo(() => mergeProps(defaultProps ?? {}, propsContext, inProps), [propsContext, inProps]);
57
59
  const { styles, props: rootProps, classNames } = useRecipeResult(props);
58
60
  const className = classNames[slot];
59
61
  const element = (_jsx(StylesProvider, { value: styles, children: _jsx(ClassNamesProvider, { value: classNames, children: _jsx(SuperComponent, { ref: ref, ...rootProps, css: [styles[slot], props.css], className: cx(props.className, className) }) }) }));
62
+ // @ts-expect-error
60
63
  return options?.wrapElement?.(element, props) ?? element;
61
64
  });
62
65
  // @ts-expect-error
@@ -1335,7 +1335,7 @@ export declare const slotRecipes: {
1335
1335
  };
1336
1336
  };
1337
1337
  }>;
1338
- field: import("@chakra-ui/react").SlotRecipeDefinition<"label" | "textarea" | "root" | "input" | "select" | "errorText" | "helperText" | "requiredIndicator", {
1338
+ field: import("@chakra-ui/react").SlotRecipeDefinition<"label" | "textarea" | "root" | "input" | "errorText" | "helperText" | "select" | "requiredIndicator", {
1339
1339
  orientation: {
1340
1340
  vertical: {
1341
1341
  root: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saas-ui/react",
3
- "version": "3.0.0-next.42",
3
+ "version": "3.0.0-next.44",
4
4
  "description": "Saas UI - The React component library for startups.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -60,26 +60,26 @@
60
60
  "url": "https://storybook.saas-ui.dev"
61
61
  },
62
62
  "dependencies": {
63
- "@ark-ui/react": "^5.20.0",
63
+ "@ark-ui/react": "^5.25.1",
64
64
  "next-themes": "^0.4.6",
65
65
  "@saas-ui/hooks": "3.0.0-next.3",
66
66
  "@saas-ui/core": "3.0.0-next.11"
67
67
  },
68
68
  "peerDependencies": {
69
- "@chakra-ui/react": "^3.25.0",
69
+ "@chakra-ui/react": "^3.27.0",
70
70
  "@emotion/react": "^11",
71
- "react": ">=18",
72
- "react-dom": ">=18"
71
+ "react": "^19.1.1",
72
+ "react-dom": "^19.1.1"
73
73
  },
74
74
  "devDependencies": {
75
+ "@types/react": "19.2.0",
76
+ "@types/react-dom": "19.2.0",
77
+ "react": "19.2.0",
78
+ "react-dom": "19.2.0",
75
79
  "react-icons": "^5.5.0",
76
80
  "rimraf": "^6.0.1",
77
- "tsup": "^8.4.0",
78
- "typescript": "^5.8.3",
79
- "react": "^19.0.0",
80
- "react-dom": "^19.0.0",
81
- "@types/react": "^19.0.12",
82
- "@types/react-dom": "^19.0.4"
81
+ "tsup": "^8.5.0",
82
+ "typescript": "5.9.3"
83
83
  },
84
84
  "scripts": {
85
85
  "clean": "rimraf --no-glob ./dist",