Skip to content

Commit 45ae6aa

Browse files
committed
chore: update dependencies and fix import statements
- Bump @zayne-labs/callapi from 1.11.28 to 1.11.30 - Bump tsx from 4.20.6 to 4.21.0 - Bump prettier from 3.7.2 to 3.7.3 - Bump tsdown from 0.17.0-beta.1 to 0.17.0-beta.4 - Update tailwindcss to 4.1.17 - Remove unnecessary React imports in multiple components - Fix minor issues in carousel component styles - Update drop-zone component imports
1 parent 6412c48 commit 45ae6aa

23 files changed

Lines changed: 79 additions & 103 deletions

File tree

apps/dev/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"@hookform/resolvers": "5.2.2",
1414
"@iconify/react": "6.0.2",
15-
"@zayne-labs/callapi": "1.11.28",
15+
"@zayne-labs/callapi": "1.11.30",
1616
"@zayne-labs/toolkit-core": "0.12.15",
1717
"@zayne-labs/toolkit-react": "0.12.15",
1818
"@zayne-labs/ui-react": "workspace:*",
@@ -34,7 +34,7 @@
3434
"@zayne-labs/tsconfig": "0.11.5",
3535
"publish": "0.6.0",
3636
"tailwindcss": "4.1.17",
37-
"tsx": "4.20.6",
37+
"tsx": "4.21.0",
3838
"typescript": "5.9.3",
3939
"vite": "npm:rolldown-vite@7.2.8",
4040
"vite-tsconfig-paths": "5.1.4"

apps/dev/src/client/AppOne.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import MainForm from "./components/MainForm";
33
function AppOne() {
44
return (
55
<main
6-
className="flex min-h-svh flex-col items-center bg-gradient-to-br from-gray-100 to-gray-200 py-12"
6+
className="flex min-h-svh flex-col items-center bg-linear-to-br from-gray-100 to-gray-200 py-12"
77
>
88
<MainForm />
99
</main>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"eslint-plugin-react-you-might-not-need-an-effect": "0.7.0",
4242
"husky": "9.1.7",
4343
"lint-staged": "16.2.7",
44-
"prettier": "3.7.2",
44+
"prettier": "3.7.3",
4545
"prettier-plugin-classnames": "0.8.5",
4646
"prettier-plugin-merge": "0.8.0",
4747
"prettier-plugin-tailwindcss": "0.7.1",

packages/ui-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"size-limit": "12.0.0",
8686
"tailwind-merge": "3.4.0",
8787
"tailwindcss": "4.1.17",
88-
"tsdown": "0.17.0-beta.1",
88+
"tsdown": "0.17.0-beta.4",
8989
"tw-animate-css": "1.4.0",
9090
"typescript": "5.9.3"
9191
},

packages/ui-react/src/components/common/await/await.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
withSlotNameAndSymbol,
77
} from "@zayne-labs/toolkit-react/utils";
88
import { isFunction } from "@zayne-labs/toolkit-type-helpers";
9-
import * as React from "react";
9+
1010
import { Fragment as ReactFragment, Suspense, use, useMemo } from "react";
1111
import { ErrorBoundary, type ErrorBoundaryProps, useErrorBoundaryContext } from "../error-boundary";
1212
import { Slot } from "../slot";

packages/ui-react/src/components/common/client-gate/client-gate.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import { useIsHydrated } from "@zayne-labs/toolkit-react";
44
import { isFunction } from "@zayne-labs/toolkit-type-helpers";
5-
import * as React from "react";
65

76
type ClientGateProps = {
87
/**

packages/ui-react/src/components/common/error-boundary/error-boundary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { isFunction } from "@zayne-labs/toolkit-type-helpers";
2-
import * as React from "react";
2+
33
import { Component } from "react";
44
import { ErrorBoundaryContext, type ErrorBoundaryContextType } from "./error-boundary-context";
55
import type { ErrorBoundaryProps, FallbackProps } from "./types";

packages/ui-react/src/components/common/for/for.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import type {
33
PolymorphicPropsStrict,
44
} from "@zayne-labs/toolkit-react/utils";
55
import { isArray, isNumber, type Prettify } from "@zayne-labs/toolkit-type-helpers";
6-
import * as React from "react";
76

87
type ArrayOrNumber = number | readonly unknown[];
98

packages/ui-react/src/components/common/presence/presence.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
import { useComposeRefs } from "@zayne-labs/toolkit-react";
44
import { isFunction, type UnknownObject } from "@zayne-labs/toolkit-type-helpers";
5-
import * as React from "react";
5+
66
import { Slot } from "../slot";
7-
import { type UsePresenceOptions, type UsePresenceResult, usePresence } from "./use-presence";
7+
import { usePresence, type UsePresenceOptions, type UsePresenceResult } from "./use-presence";
88

99
type RefProp = { ref?: React.Ref<HTMLElement> };
1010

packages/ui-react/src/components/common/show/show.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import { toArray } from "@zayne-labs/toolkit-core";
44
import { getMultipleSlots, getSingleSlot } from "@zayne-labs/toolkit-react/utils";
55
import { assert, isFunction } from "@zayne-labs/toolkit-type-helpers";
6-
import * as React from "react";
76

87
type ShowProps<TWhen> =
98
| {
@@ -71,7 +70,6 @@ export function ShowContent<TWhen>(props: ShowContentProps<TWhen>) {
7170

7271
return resolvedChildren;
7372
}
74-
7573
ShowContent.slotSymbol = Symbol("show-content");
7674

7775
export function ShowFallback(props: { children: React.ReactNode }) {

0 commit comments

Comments
 (0)