@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
@@ -1,5 +1,12 @@
1
1
  # @kalink-ui/seedly
2
2
 
3
+ ## 0.33.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8ec0736: Fix typing issues and tooling configuration
8
+ - @kalink-ui/dibbly@0.5.2
9
+
3
10
  ## 0.33.0
4
11
 
5
12
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalink-ui/seedly",
3
- "version": "0.33.0",
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/eslint-config": "0.10.0",
47
- "@kalink-ui/typescript-config": "0.4.0"
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 HeadingProps<TUse>['use']}
33
+ use={use as TextProps<TUse>['use']}
33
34
  variant={variant}
34
35
  size={size}
35
36
  className={className}