diff --git a/.changeset/pre.json b/.changeset/pre.json index c40c75b28..3e35e8e2a 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -6,6 +6,7 @@ }, "changesets": [ "add-chart-icons", + "add-lakekeeper-logo", "add-planetscale-logo", "add-regenerate-command", "all-adults-enter", @@ -44,6 +45,7 @@ "neat-toys-smoke", "nine-queens-allow", "ninety-windows-melt", + "olive-lions-hope", "olive-waves-feel", "open-hounds-join", "pretty-tips-decide", diff --git a/CHANGELOG.md b/CHANGELOG.md index a44c2b38b..512115123 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # @clickhouse/click-ui +## 0.1.0-rc.78 + +### Minor Changes + +- 4c4105f: Add Lakekeeper logo + + **How to use?** + + ```tsx + import { Logo } from '@clickhouse/click-ui'; + + ; + ``` + +- 96ab2a9: Enable consumers to import hooks directly via `@clickhouse/click-ui/hooks` following the same pattern as component imports. + + **How to use?** + + Import hooks from the new dedicated path: + + ```tsx + import { useToast, useInitialTheme } from '@clickhouse/click-ui/hooks'; + ``` + + Main entry point still works: + + ```tsx + import { useToast, useInitialTheme } from '@clickhouse/click-ui'; + ``` + ## 0.1.0-rc.77 ### Minor Changes diff --git a/package.json b/package.json index 933b6e10a..b15e44aaf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@clickhouse/click-ui", - "version": "0.1.0-rc.77", + "version": "0.1.0-rc.78", "description": "Official ClickHouse design system react library", "type": "module", "license": "Apache-2.0",