@kalink-ui/seedly 0.33.0 → 0.33.1
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
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kalink-ui/seedly",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.1",
|
|
4
4
|
"description": "A set of components for building UIs with React and TypeScript",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"vite": "^7.1.9",
|
|
44
44
|
"vite-tsconfig-paths": "^5.1.4",
|
|
45
45
|
"vitest": "^3.2.4",
|
|
46
|
-
"@kalink-ui/
|
|
47
|
-
"@kalink-ui/
|
|
46
|
+
"@kalink-ui/typescript-config": "0.4.0",
|
|
47
|
+
"@kalink-ui/eslint-config": "0.10.1"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@vanilla-extract/css": "^1.17.1",
|
|
@@ -4,6 +4,7 @@ import { Title } from '@radix-ui/react-dialog';
|
|
|
4
4
|
import { ComponentPropsWithRef } from 'react';
|
|
5
5
|
|
|
6
6
|
import { Heading, HeadingProps, HeadingTypes } from '../heading';
|
|
7
|
+
import { TextProps } from '../text';
|
|
7
8
|
|
|
8
9
|
type SheetTitleProps<TUse extends HeadingTypes> = ComponentPropsWithRef<
|
|
9
10
|
typeof Title
|
|
@@ -29,7 +30,7 @@ export function SheetTitle<TUse extends HeadingTypes>(
|
|
|
29
30
|
return (
|
|
30
31
|
<Title asChild {...rest}>
|
|
31
32
|
<Heading
|
|
32
|
-
use={use as
|
|
33
|
+
use={use as TextProps<TUse>['use']}
|
|
33
34
|
variant={variant}
|
|
34
35
|
size={size}
|
|
35
36
|
className={className}
|