Skip to content

Commit 07cddd6

Browse files
committed
fixed global state import and export
1 parent d80ecb4 commit 07cddd6

File tree

5 files changed

+21
-19
lines changed

5 files changed

+21
-19
lines changed
File renamed without changes.

library/src/utils/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@ export { isTimeType, isDateTimeType, isDateType }
2020
export * as DateUtils from "./DateUtils"
2121

2222
export * from "./ErrorHandler"
23+
24+
export * from "./GlobalState"

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"highlight.js": "^11.11.1",
104104
"intl-messageformat": "^10.7.14",
105105
"lowlight": "^3.3.0",
106-
"lucide-react": "^0.482.0",
106+
"lucide-react": "^0.483.0",
107107
"mime-types": "^2.1.35",
108108
"motion": "^12.5.0",
109109
"react-awesome-slider": "^4.1.0",
@@ -130,7 +130,7 @@
130130
"@hello-pangea/dnd": "^18.0.1",
131131
"@monaco-editor/react": "^4.7.0",
132132
"@tailwindcss/vite": "^4.0.14",
133-
"@tanstack/react-query": "^5.68.0",
133+
"@tanstack/react-query": "^5.69.0",
134134
"@total-typescript/ts-reset": "^0.6.1",
135135
"@types/node": "^22.13.10",
136136
"@types/react": "^18.3.18",

showcase/src/components/showcase/wrapper/GlobalStateShowcase.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import ShowcaseWrapperItem, {
22
type ShowcaseProps,
33
} from "../../ShowCaseWrapperItem/ShowcaseWrapperItem"
4-
import { useGlobalState } from "@linked-planet/ui-kit-ts/GlobalState"
4+
import { useGlobalState } from "@linked-planet/ui-kit-ts"
55
import { Input, Label } from "@linked-planet/ui-kit-ts"
66

77
//#region global-state
@@ -99,7 +99,7 @@ export default function GlobalStateShowcase(props: ShowcaseProps) {
9999
packages={[
100100
{
101101
name: "@linked-planet/ui-kit-ts",
102-
url: "https://linked-planet.github.io/ui-kit-ts/single?component=GlobalState",
102+
url: "/ui-kit-ts/single?component=GlobalState",
103103
},
104104
]}
105105
examples={[

0 commit comments

Comments
 (0)