@saas-ui/react 3.0.0-next.40 → 3.0.0-next.42
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/.tsbuildinfo.json +1 -1
- package/dist/components/absolute-center/index.d.ts +1 -0
- package/dist/components/absolute-center/index.js +1 -0
- package/dist/components/box/index.d.ts +1 -1
- package/dist/components/box/index.js +1 -1
- package/dist/components/center/index.d.ts +1 -1
- package/dist/components/center/index.js +1 -1
- package/dist/components/circle/index.d.ts +1 -0
- package/dist/components/circle/index.js +1 -0
- package/dist/components/code-block/index.d.ts +1 -0
- package/dist/components/code-block/index.js +1 -0
- package/dist/components/color-mode/color-mode.d.ts +1 -1
- package/dist/components/download-trigger/index.d.ts +1 -0
- package/dist/components/download-trigger/index.js +1 -0
- package/dist/components/em/index.d.ts +1 -0
- package/dist/components/em/index.js +1 -0
- package/dist/components/{env → environment}/index.d.ts +1 -1
- package/dist/components/{env → environment}/index.js +1 -1
- package/dist/components/file-upload/file-upload.js +1 -1
- package/dist/components/grid/index.d.ts +1 -1
- package/dist/components/grid/index.js +1 -1
- package/dist/components/heading/index.d.ts +1 -1
- package/dist/components/heading/index.js +1 -1
- package/dist/components/icons/icons.d.ts +2 -0
- package/dist/components/icons/icons.js +8 -0
- package/dist/components/input/index.d.ts +2 -2
- package/dist/components/input/index.js +1 -1
- package/dist/components/input-addon/index.d.ts +1 -0
- package/dist/components/input-addon/index.js +1 -0
- package/dist/components/{input → input-addon}/input-addon.recipe.js +1 -1
- package/dist/components/input-element/index.d.ts +1 -0
- package/dist/components/input-element/index.js +1 -0
- package/dist/components/input-group/index.d.ts +1 -0
- package/dist/components/input-group/index.js +1 -0
- package/dist/components/mark/index.d.ts +1 -1
- package/dist/components/mark/index.js +1 -1
- package/dist/components/navbar/navbar.d.ts +4 -4
- package/dist/components/number-input/number-input.js +1 -1
- package/dist/components/page/page.d.ts +3 -3
- package/dist/components/pagination/pagination.d.ts +1 -1
- package/dist/components/pagination/pagination.js +1 -1
- package/dist/components/password-input/password-input.d.ts +1 -1
- package/dist/components/password-input/password-input.js +3 -3
- package/dist/components/quote/index.d.ts +1 -0
- package/dist/components/quote/index.js +1 -0
- package/dist/components/scroll-area/index.d.ts +1 -0
- package/dist/components/scroll-area/index.js +1 -0
- package/dist/components/section/section.d.ts +2 -2
- package/dist/components/select/select.d.ts +3 -2
- package/dist/components/sidebar/sidebar.d.ts +12 -12
- package/dist/components/simple-grid/index.d.ts +1 -0
- package/dist/components/simple-grid/index.js +1 -0
- package/dist/components/skeleton/skeleton.d.ts +1 -1
- package/dist/components/skeleton/skeleton.js +1 -1
- package/dist/components/span/index.d.ts +1 -0
- package/dist/components/span/index.js +1 -0
- package/dist/components/square/index.d.ts +1 -0
- package/dist/components/square/index.js +1 -0
- package/dist/components/sticky/index.d.ts +1 -0
- package/dist/components/sticky/index.js +1 -0
- package/dist/components/strong/index.d.ts +1 -0
- package/dist/components/strong/index.js +1 -0
- package/dist/components/text/index.d.ts +1 -0
- package/dist/components/text/index.js +1 -0
- package/dist/components/tree-view/index.d.ts +1 -0
- package/dist/components/tree-view/index.js +1 -0
- package/dist/index.d.ts +22 -6
- package/dist/index.js +22 -6
- package/dist/theme/recipes.js +1 -1
- package/package.json +3 -3
- package/dist/components/typography/index.d.ts +0 -1
- package/dist/components/typography/index.js +0 -1
- /package/dist/components/{input → input-addon}/input-addon.recipe.d.ts +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
export { SimpleGrid, type SimpleGridProps } from '@chakra-ui/react/simple-grid';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { SimpleGrid } from '@chakra-ui/react/simple-grid';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { type CircleProps } from '@chakra-ui/react/
|
1
|
+
import { type CircleProps } from '@chakra-ui/react/circle';
|
2
2
|
import type { SkeletonProps as ChakraSkeletonProps } from '@chakra-ui/react/skeleton';
|
3
3
|
export interface SkeletonCircleProps extends ChakraSkeletonProps {
|
4
4
|
size?: CircleProps['size'];
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
2
2
|
import { forwardRef } from 'react';
|
3
|
-
import { Circle } from '@chakra-ui/react/
|
3
|
+
import { Circle } from '@chakra-ui/react/circle';
|
4
4
|
import { Skeleton as ChakraSkeleton } from '@chakra-ui/react/skeleton';
|
5
5
|
import { Stack } from '@chakra-ui/react/stack';
|
6
6
|
export const SkeletonCircle = (props) => {
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Span, type SpanProps } from '@chakra-ui/react/span';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Span } from '@chakra-ui/react/span';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Square, type SquareProps, } from '@chakra-ui/react/square';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Square, } from '@chakra-ui/react/square';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Sticky, type StickyProps, } from '@chakra-ui/react/sticky';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Sticky, } from '@chakra-ui/react/sticky';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Strong, type StrongProps } from '@chakra-ui/react/strong';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Strong } from '@chakra-ui/react/strong';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Text, type TextProps } from '@chakra-ui/react/text';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Text } from '@chakra-ui/react/text';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { TreeView } from '@chakra-ui/react/tree-view';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { TreeView } from '@chakra-ui/react/tree-view';
|
package/dist/index.d.ts
CHANGED
@@ -19,6 +19,8 @@ export { ButtonGroup, type ButtonGroupProps, } from './components/button-group/i
|
|
19
19
|
export { Card } from './components/card/index.ts';
|
20
20
|
export { Checkbox, type CheckboxProps } from './components/checkbox/index.ts';
|
21
21
|
export { Checkmark, type CheckmarkProps } from './components/checkmark/index.ts';
|
22
|
+
export { CodeBlock } from './components/code-block/index.ts';
|
23
|
+
export { Circle } from './components/circle/index.ts';
|
22
24
|
export { CheckboxCard, type CheckboxCardProps, } from './components/checkbox-card/index.ts';
|
23
25
|
export { Clipboard } from './components/clipboard/index.ts';
|
24
26
|
export { useClipboard } from './components/clipboard/index.ts';
|
@@ -47,7 +49,10 @@ export { Icon, type IconProps } from './components/icon/index.ts';
|
|
47
49
|
export { IconBadge } from './components/icon-badge/index.ts';
|
48
50
|
export { IconButton, type IconButtonProps, } from './components/icon-button/index.ts';
|
49
51
|
export { Image, type ImageProps } from './components/image/index.ts';
|
50
|
-
export { Input,
|
52
|
+
export { Input, InputPropsProvider, type InputProps, } from './components/input/index.ts';
|
53
|
+
export { InputAddon, type InputAddonProps, } from './components/input-addon/index.ts';
|
54
|
+
export { InputElement, type InputElementProps, } from './components/input-element/index.ts';
|
55
|
+
export { InputGroup, type InputGroupProps, } from './components/input-group/index.ts';
|
51
56
|
export { InfoTip, type InfoTipProps } from './components/info-tip/index.ts';
|
52
57
|
export { Kbd, type KbdProps } from './components/kbd/index.ts';
|
53
58
|
export { Link, type LinkProps } from './components/link/index.ts';
|
@@ -95,16 +100,19 @@ export { Textarea, type TextareaProps } from './components/textarea/index.ts';
|
|
95
100
|
export { ToggleTip, type ToggleTipProps, } from './components/toggle-tip/index.ts';
|
96
101
|
export { AspectRatio, type AspectRatioProps, } from './components/aspect-ratio/index.ts';
|
97
102
|
export { Bleed, type BleedProps } from './components/bleed/index.ts';
|
98
|
-
export { Box, type BoxProps
|
99
|
-
export {
|
103
|
+
export { Box, type BoxProps } from './components/box/index.ts';
|
104
|
+
export { Span, type SpanProps } from './components/span/index.ts';
|
105
|
+
export { Center, type CenterProps } from './components/center/index.ts';
|
106
|
+
export { AbsoluteCenter, type AbsoluteCenterProps, } from './components/absolute-center/index.ts';
|
100
107
|
export { ClientOnly } from './components/client-only/index.ts';
|
101
108
|
export { ColorPicker } from './components/color-picker/index.ts';
|
102
109
|
export { ColorSwatch } from './components/color-swatch/index.ts';
|
103
|
-
export { type EnvironmentContext, EnvironmentProvider, type EnvironmentProviderProps, type RootNode, useEnvironmentContext, } from './components/
|
110
|
+
export { type EnvironmentContext, EnvironmentProvider, type EnvironmentProviderProps, type RootNode, useEnvironmentContext, } from './components/environment/index.ts';
|
104
111
|
export { Float } from './components/float/index.ts';
|
105
112
|
export { FocusTrap } from './components/focus-trap/index.ts';
|
106
113
|
export { FormatByte, type FormatByteProps, FormatNumber, type FormatNumberProps, } from './components/format/index.ts';
|
107
|
-
export { Grid, type GridProps,
|
114
|
+
export { Grid, type GridProps, GridItem, type GridItemProps, } from './components/grid/index.ts';
|
115
|
+
export { SimpleGrid, type SimpleGridProps, } from './components/simple-grid/index.ts';
|
108
116
|
export { Group, type GroupProps } from './components/group/index.ts';
|
109
117
|
export { Highlight, type HighlightProps } from './components/highlight/index.ts';
|
110
118
|
export { Portal, type PortalProps } from './components/portal/index.ts';
|
@@ -115,8 +123,16 @@ export { Section, useSectionStyles } from './components/section/index.ts';
|
|
115
123
|
export { Show, type ShowProps } from './components/show/index.ts';
|
116
124
|
export { Spacer, type SpacerProps } from './components/spacer/index.ts';
|
117
125
|
export { Stack, type StackProps, HStack, VStack, StackSeparator, type StackSeparatorProps, } from './components/stack/index.ts';
|
126
|
+
export { Sticky, type StickyProps } from './components/sticky/index.ts';
|
127
|
+
export { TreeView } from './components/tree-view/index.ts';
|
128
|
+
export { ScrollArea } from './components/scroll-area/index.ts';
|
129
|
+
export { DownloadTrigger, type DownloadTriggerProps, } from './components/download-trigger/index.ts';
|
130
|
+
export { Quote, type QuoteProps } from './components/quote/index.ts';
|
131
|
+
export { Square, type SquareProps } from './components/square/index.ts';
|
118
132
|
export { Toggle } from './components/toggle/index.ts';
|
119
|
-
export {
|
133
|
+
export { Text, type TextProps } from './components/text/index.ts';
|
134
|
+
export { Em, type EmProps } from './components/em/index.ts';
|
135
|
+
export { Strong, type StrongProps } from './components/strong/index.ts';
|
120
136
|
export { VisuallyHidden } from './components/visually-hidden/index.ts';
|
121
137
|
export { Wrap, type WrapProps } from './components/wrap/index.ts';
|
122
138
|
export { Flex, type FlexProps } from './components/flex/index.ts';
|
package/dist/index.js
CHANGED
@@ -16,6 +16,8 @@ export { ButtonGroup, } from "./components/button-group/index.js";
|
|
16
16
|
export { Card } from "./components/card/index.js";
|
17
17
|
export { Checkbox } from "./components/checkbox/index.js";
|
18
18
|
export { Checkmark } from "./components/checkmark/index.js";
|
19
|
+
export { CodeBlock } from "./components/code-block/index.js";
|
20
|
+
export { Circle } from "./components/circle/index.js";
|
19
21
|
export { CheckboxCard, } from "./components/checkbox-card/index.js";
|
20
22
|
export { Clipboard } from "./components/clipboard/index.js";
|
21
23
|
export { useClipboard } from "./components/clipboard/index.js";
|
@@ -42,7 +44,10 @@ export { Icon } from "./components/icon/index.js";
|
|
42
44
|
export { IconBadge } from "./components/icon-badge/index.js";
|
43
45
|
export { IconButton, } from "./components/icon-button/index.js";
|
44
46
|
export { Image } from "./components/image/index.js";
|
45
|
-
export { Input,
|
47
|
+
export { Input, InputPropsProvider, } from "./components/input/index.js";
|
48
|
+
export { InputAddon, } from "./components/input-addon/index.js";
|
49
|
+
export { InputElement, } from "./components/input-element/index.js";
|
50
|
+
export { InputGroup, } from "./components/input-group/index.js";
|
46
51
|
export { InfoTip } from "./components/info-tip/index.js";
|
47
52
|
export { Kbd } from "./components/kbd/index.js";
|
48
53
|
export { Link } from "./components/link/index.js";
|
@@ -90,16 +95,19 @@ export { Textarea } from "./components/textarea/index.js";
|
|
90
95
|
export { ToggleTip, } from "./components/toggle-tip/index.js";
|
91
96
|
export { AspectRatio, } from "./components/aspect-ratio/index.js";
|
92
97
|
export { Bleed } from "./components/bleed/index.js";
|
93
|
-
export { Box
|
94
|
-
export {
|
98
|
+
export { Box } from "./components/box/index.js";
|
99
|
+
export { Span } from "./components/span/index.js";
|
100
|
+
export { Center } from "./components/center/index.js";
|
101
|
+
export { AbsoluteCenter, } from "./components/absolute-center/index.js";
|
95
102
|
export { ClientOnly } from "./components/client-only/index.js";
|
96
103
|
export { ColorPicker } from "./components/color-picker/index.js";
|
97
104
|
export { ColorSwatch } from "./components/color-swatch/index.js";
|
98
|
-
export { EnvironmentProvider, useEnvironmentContext, } from "./components/
|
105
|
+
export { EnvironmentProvider, useEnvironmentContext, } from "./components/environment/index.js";
|
99
106
|
export { Float } from "./components/float/index.js";
|
100
107
|
export { FocusTrap } from "./components/focus-trap/index.js";
|
101
108
|
export { FormatByte, FormatNumber, } from "./components/format/index.js";
|
102
|
-
export { Grid,
|
109
|
+
export { Grid, GridItem, } from "./components/grid/index.js";
|
110
|
+
export { SimpleGrid, } from "./components/simple-grid/index.js";
|
103
111
|
export { Group } from "./components/group/index.js";
|
104
112
|
export { Highlight } from "./components/highlight/index.js";
|
105
113
|
export { Portal } from "./components/portal/index.js";
|
@@ -109,8 +117,16 @@ export { Section, useSectionStyles } from "./components/section/index.js";
|
|
109
117
|
export { Show } from "./components/show/index.js";
|
110
118
|
export { Spacer } from "./components/spacer/index.js";
|
111
119
|
export { Stack, HStack, VStack, StackSeparator, } from "./components/stack/index.js";
|
120
|
+
export { Sticky } from "./components/sticky/index.js";
|
121
|
+
export { TreeView } from "./components/tree-view/index.js";
|
122
|
+
export { ScrollArea } from "./components/scroll-area/index.js";
|
123
|
+
export { DownloadTrigger, } from "./components/download-trigger/index.js";
|
124
|
+
export { Quote } from "./components/quote/index.js";
|
125
|
+
export { Square } from "./components/square/index.js";
|
112
126
|
export { Toggle } from "./components/toggle/index.js";
|
113
|
-
export {
|
127
|
+
export { Text } from "./components/text/index.js";
|
128
|
+
export { Em } from "./components/em/index.js";
|
129
|
+
export { Strong } from "./components/strong/index.js";
|
114
130
|
export { VisuallyHidden } from "./components/visually-hidden/index.js";
|
115
131
|
export { Wrap } from "./components/wrap/index.js";
|
116
132
|
export { Flex } from "./components/flex/index.js";
|
package/dist/theme/recipes.js
CHANGED
@@ -7,7 +7,7 @@ import { containerRecipe } from "../components/container/container.recipe.js";
|
|
7
7
|
import { headingRecipe } from "../components/heading/heading.recipe.js";
|
8
8
|
import { iconBadgeRecipe } from "../components/icon-badge/icon-badge.recipe.js";
|
9
9
|
import { iconRecipe } from "../components/icon/icon.recipe.js";
|
10
|
-
import { inputAddonRecipe } from "../components/input/input-addon.recipe.js";
|
10
|
+
import { inputAddonRecipe } from "../components/input-addon/input-addon.recipe.js";
|
11
11
|
import { inputRecipe } from "../components/input/input.recipe.js";
|
12
12
|
import { kbdRecipe } from "../components/kbd/kbd.recipe.js";
|
13
13
|
import { linkRecipe } from "../components/link/link.recipe.js";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@saas-ui/react",
|
3
|
-
"version": "3.0.0-next.
|
3
|
+
"version": "3.0.0-next.42",
|
4
4
|
"description": "Saas UI - The React component library for startups.",
|
5
5
|
"type": "module",
|
6
6
|
"exports": {
|
@@ -60,13 +60,13 @@
|
|
60
60
|
"url": "https://storybook.saas-ui.dev"
|
61
61
|
},
|
62
62
|
"dependencies": {
|
63
|
-
"@ark-ui/react": "^5.
|
63
|
+
"@ark-ui/react": "^5.20.0",
|
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.
|
69
|
+
"@chakra-ui/react": "^3.25.0",
|
70
70
|
"@emotion/react": "^11",
|
71
71
|
"react": ">=18",
|
72
72
|
"react-dom": ">=18"
|
@@ -1 +0,0 @@
|
|
1
|
-
export { Em, type EmProps, Heading, type HeadingProps, Strong, type StrongProps, Text, type TextProps, } from '@chakra-ui/react/typography';
|
@@ -1 +0,0 @@
|
|
1
|
-
export { Em, Heading, Strong, Text, } from '@chakra-ui/react/typography';
|
File without changes
|