@kalink-ui/seedly 0.33.0 → 0.33.2

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,20 @@
1
1
  # @kalink-ui/seedly
2
2
 
3
+ ## 0.33.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 799c0ef: Update peer dependencies
8
+ - Updated dependencies [799c0ef]
9
+ - @kalink-ui/dibbly@0.5.3
10
+
11
+ ## 0.33.1
12
+
13
+ ### Patch Changes
14
+
15
+ - 8ec0736: Fix typing issues and tooling configuration
16
+ - @kalink-ui/dibbly@0.5.2
17
+
3
18
  ## 0.33.0
4
19
 
5
20
  ### 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.2",
4
4
  "description": "A set of components for building UIs with React and TypeScript",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",
@@ -43,18 +43,18 @@
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.2"
48
48
  },
49
49
  "peerDependencies": {
50
- "@vanilla-extract/css": "^1.17.1",
51
- "@vanilla-extract/css-utils": "^0.1.4",
52
- "@vanilla-extract/dynamic": "^2.1.2",
53
- "@vanilla-extract/recipes": "^0.5.5",
54
- "@vanilla-extract/sprinkles": "^1.6.3",
55
- "react": "^19.1.1",
56
- "react-dom": "^19.1.1",
57
- "typescript": "^5.9.2"
50
+ "@vanilla-extract/css": "^1.17.4",
51
+ "@vanilla-extract/css-utils": "^0.1.6",
52
+ "@vanilla-extract/dynamic": "^2.1.5",
53
+ "@vanilla-extract/recipes": "^0.5.7",
54
+ "@vanilla-extract/sprinkles": "^1.6.5",
55
+ "react": "^19.2.0",
56
+ "react-dom": "^19.2.0",
57
+ "typescript": "^5.9.3"
58
58
  },
59
59
  "dependencies": {
60
60
  "@radix-ui/react-alert-dialog": "^1.1.15",
@@ -66,7 +66,7 @@
66
66
  "@radix-ui/react-slot": "^1.2.3",
67
67
  "clsx": "^2.1.1",
68
68
  "cmdk": "^1.1.1",
69
- "@kalink-ui/dibbly": "^0.5.2"
69
+ "@kalink-ui/dibbly": "^0.5.3"
70
70
  },
71
71
  "publishConfig": {
72
72
  "access": "public"
@@ -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}