@saas-ui/react 3.0.0-next.41 → 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/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/download-trigger/index.d.ts +1 -0
- package/dist/components/download-trigger/index.js +1 -0
- 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/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/tree-view/index.d.ts +1 -0
- package/dist/components/tree-view/index.js +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +8 -0
- package/package.json +1 -1
@@ -0,0 +1 @@
|
|
1
|
+
export { Circle, type CircleProps, } from '@chakra-ui/react/circle';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Circle, } from '@chakra-ui/react/circle';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { CodeBlock } from '@chakra-ui/react/code-block';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { CodeBlock } from '@chakra-ui/react/code-block';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { DownloadTrigger, type DownloadTriggerProps, } from '@chakra-ui/react/download-trigger';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { DownloadTrigger, } from '@chakra-ui/react/download-trigger';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Quote, type QuoteProps, } from '@chakra-ui/react/quote';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { Quote, } from '@chakra-ui/react/quote';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { ScrollArea } from '@chakra-ui/react/scroll-area';
|
@@ -0,0 +1 @@
|
|
1
|
+
export { ScrollArea } from '@chakra-ui/react/scroll-area';
|
@@ -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 { 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';
|
@@ -121,6 +123,12 @@ export { Section, useSectionStyles } from './components/section/index.ts';
|
|
121
123
|
export { Show, type ShowProps } from './components/show/index.ts';
|
122
124
|
export { Spacer, type SpacerProps } from './components/spacer/index.ts';
|
123
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';
|
124
132
|
export { Toggle } from './components/toggle/index.ts';
|
125
133
|
export { Text, type TextProps } from './components/text/index.ts';
|
126
134
|
export { Em, type EmProps } from './components/em/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";
|
@@ -115,6 +117,12 @@ export { Section, useSectionStyles } from "./components/section/index.js";
|
|
115
117
|
export { Show } from "./components/show/index.js";
|
116
118
|
export { Spacer } from "./components/spacer/index.js";
|
117
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";
|
118
126
|
export { Toggle } from "./components/toggle/index.js";
|
119
127
|
export { Text } from "./components/text/index.js";
|
120
128
|
export { Em } from "./components/em/index.js";
|