Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
},
"changesets": [
"add-chart-icons",
"add-lakekeeper-logo",
"add-planetscale-logo",
"add-regenerate-command",
"all-adults-enter",
Expand Down Expand Up @@ -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",
Expand Down
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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';

<Logo name="lakekeeper" />;
```

- 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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading