@saas-ui/react 3.0.0-next.40 → 3.0.0-next.41
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/color-mode/color-mode.d.ts +1 -1
- 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/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/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/index.d.ts +14 -6
- package/dist/index.js +14 -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 { 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';
|
package/dist/index.d.ts
CHANGED
@@ -47,7 +47,10 @@ export { Icon, type IconProps } from './components/icon/index.ts';
|
|
47
47
|
export { IconBadge } from './components/icon-badge/index.ts';
|
48
48
|
export { IconButton, type IconButtonProps, } from './components/icon-button/index.ts';
|
49
49
|
export { Image, type ImageProps } from './components/image/index.ts';
|
50
|
-
export { Input,
|
50
|
+
export { Input, InputPropsProvider, type InputProps, } from './components/input/index.ts';
|
51
|
+
export { InputAddon, type InputAddonProps, } from './components/input-addon/index.ts';
|
52
|
+
export { InputElement, type InputElementProps, } from './components/input-element/index.ts';
|
53
|
+
export { InputGroup, type InputGroupProps, } from './components/input-group/index.ts';
|
51
54
|
export { InfoTip, type InfoTipProps } from './components/info-tip/index.ts';
|
52
55
|
export { Kbd, type KbdProps } from './components/kbd/index.ts';
|
53
56
|
export { Link, type LinkProps } from './components/link/index.ts';
|
@@ -95,16 +98,19 @@ export { Textarea, type TextareaProps } from './components/textarea/index.ts';
|
|
95
98
|
export { ToggleTip, type ToggleTipProps, } from './components/toggle-tip/index.ts';
|
96
99
|
export { AspectRatio, type AspectRatioProps, } from './components/aspect-ratio/index.ts';
|
97
100
|
export { Bleed, type BleedProps } from './components/bleed/index.ts';
|
98
|
-
export { Box, type BoxProps
|
99
|
-
export {
|
101
|
+
export { Box, type BoxProps } from './components/box/index.ts';
|
102
|
+
export { Span, type SpanProps } from './components/span/index.ts';
|
103
|
+
export { Center, type CenterProps } from './components/center/index.ts';
|
104
|
+
export { AbsoluteCenter, type AbsoluteCenterProps, } from './components/absolute-center/index.ts';
|
100
105
|
export { ClientOnly } from './components/client-only/index.ts';
|
101
106
|
export { ColorPicker } from './components/color-picker/index.ts';
|
102
107
|
export { ColorSwatch } from './components/color-swatch/index.ts';
|
103
|
-
export { type EnvironmentContext, EnvironmentProvider, type EnvironmentProviderProps, type RootNode, useEnvironmentContext, } from './components/
|
108
|
+
export { type EnvironmentContext, EnvironmentProvider, type EnvironmentProviderProps, type RootNode, useEnvironmentContext, } from './components/environment/index.ts';
|
104
109
|
export { Float } from './components/float/index.ts';
|
105
110
|
export { FocusTrap } from './components/focus-trap/index.ts';
|
106
111
|
export { FormatByte, type FormatByteProps, FormatNumber, type FormatNumberProps, } from './components/format/index.ts';
|
107
|
-
export { Grid, type GridProps,
|
112
|
+
export { Grid, type GridProps, GridItem, type GridItemProps, } from './components/grid/index.ts';
|
113
|
+
export { SimpleGrid, type SimpleGridProps, } from './components/simple-grid/index.ts';
|
108
114
|
export { Group, type GroupProps } from './components/group/index.ts';
|
109
115
|
export { Highlight, type HighlightProps } from './components/highlight/index.ts';
|
110
116
|
export { Portal, type PortalProps } from './components/portal/index.ts';
|
@@ -116,7 +122,9 @@ export { Show, type ShowProps } from './components/show/index.ts';
|
|
116
122
|
export { Spacer, type SpacerProps } from './components/spacer/index.ts';
|
117
123
|
export { Stack, type StackProps, HStack, VStack, StackSeparator, type StackSeparatorProps, } from './components/stack/index.ts';
|
118
124
|
export { Toggle } from './components/toggle/index.ts';
|
119
|
-
export {
|
125
|
+
export { Text, type TextProps } from './components/text/index.ts';
|
126
|
+
export { Em, type EmProps } from './components/em/index.ts';
|
127
|
+
export { Strong, type StrongProps } from './components/strong/index.ts';
|
120
128
|
export { VisuallyHidden } from './components/visually-hidden/index.ts';
|
121
129
|
export { Wrap, type WrapProps } from './components/wrap/index.ts';
|
122
130
|
export { Flex, type FlexProps } from './components/flex/index.ts';
|
package/dist/index.js
CHANGED
@@ -42,7 +42,10 @@ export { Icon } from "./components/icon/index.js";
|
|
42
42
|
export { IconBadge } from "./components/icon-badge/index.js";
|
43
43
|
export { IconButton, } from "./components/icon-button/index.js";
|
44
44
|
export { Image } from "./components/image/index.js";
|
45
|
-
export { Input,
|
45
|
+
export { Input, InputPropsProvider, } from "./components/input/index.js";
|
46
|
+
export { InputAddon, } from "./components/input-addon/index.js";
|
47
|
+
export { InputElement, } from "./components/input-element/index.js";
|
48
|
+
export { InputGroup, } from "./components/input-group/index.js";
|
46
49
|
export { InfoTip } from "./components/info-tip/index.js";
|
47
50
|
export { Kbd } from "./components/kbd/index.js";
|
48
51
|
export { Link } from "./components/link/index.js";
|
@@ -90,16 +93,19 @@ export { Textarea } from "./components/textarea/index.js";
|
|
90
93
|
export { ToggleTip, } from "./components/toggle-tip/index.js";
|
91
94
|
export { AspectRatio, } from "./components/aspect-ratio/index.js";
|
92
95
|
export { Bleed } from "./components/bleed/index.js";
|
93
|
-
export { Box
|
94
|
-
export {
|
96
|
+
export { Box } from "./components/box/index.js";
|
97
|
+
export { Span } from "./components/span/index.js";
|
98
|
+
export { Center } from "./components/center/index.js";
|
99
|
+
export { AbsoluteCenter, } from "./components/absolute-center/index.js";
|
95
100
|
export { ClientOnly } from "./components/client-only/index.js";
|
96
101
|
export { ColorPicker } from "./components/color-picker/index.js";
|
97
102
|
export { ColorSwatch } from "./components/color-swatch/index.js";
|
98
|
-
export { EnvironmentProvider, useEnvironmentContext, } from "./components/
|
103
|
+
export { EnvironmentProvider, useEnvironmentContext, } from "./components/environment/index.js";
|
99
104
|
export { Float } from "./components/float/index.js";
|
100
105
|
export { FocusTrap } from "./components/focus-trap/index.js";
|
101
106
|
export { FormatByte, FormatNumber, } from "./components/format/index.js";
|
102
|
-
export { Grid,
|
107
|
+
export { Grid, GridItem, } from "./components/grid/index.js";
|
108
|
+
export { SimpleGrid, } from "./components/simple-grid/index.js";
|
103
109
|
export { Group } from "./components/group/index.js";
|
104
110
|
export { Highlight } from "./components/highlight/index.js";
|
105
111
|
export { Portal } from "./components/portal/index.js";
|
@@ -110,7 +116,9 @@ export { Show } from "./components/show/index.js";
|
|
110
116
|
export { Spacer } from "./components/spacer/index.js";
|
111
117
|
export { Stack, HStack, VStack, StackSeparator, } from "./components/stack/index.js";
|
112
118
|
export { Toggle } from "./components/toggle/index.js";
|
113
|
-
export {
|
119
|
+
export { Text } from "./components/text/index.js";
|
120
|
+
export { Em } from "./components/em/index.js";
|
121
|
+
export { Strong } from "./components/strong/index.js";
|
114
122
|
export { VisuallyHidden } from "./components/visually-hidden/index.js";
|
115
123
|
export { Wrap } from "./components/wrap/index.js";
|
116
124
|
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.41",
|
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
|