-
Notifications
You must be signed in to change notification settings - Fork 18
chore(maintenance): 🤖 upgrade vite to v8 #929
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
punkbit
wants to merge
11
commits into
main
Choose a base branch
from
chore/maintenance-upgrade-vite-to-v8
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+765
−250
Open
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b3ab536
chore: 🤖 upgrade vite to 8
punkbit 5da17b3
chore: 🤖 migrate out from rollup to rolldown
punkbit 3bec991
chore: 🤖 update storybook for vite 8
punkbit 8486c22
refactor: 💡 make it look like previous version introduction
punkbit b22353e
chore: 🤖 upgrade latest storybook
punkbit 3e4cbbc
chore: 🤖 add note
punkbit 6183c29
chore: 🤖 update to latest 10.3.1
punkbit f236aeb
chore: 🤖 update to latest 10.3.3
punkbit b9ad599
Merge branch 'main' into chore/maintenance-upgrade-vite-to-v8
punkbit e71fd01
chore: 🤖 update lockfile
punkbit ab7af02
fix: 🐛 filter must handle all valid Vite PluginOption types (PR comme…
punkbit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| // NOTE: Using `tsx` instead of `mdx` due to an error | ||
| // The Storybook MDX plugin doesn't set moduleType | ||
| // which Roldown requires. | ||
| // Can revisit and put back mdx later once plugin updated | ||
|
|
||
| import type { Meta, StoryObj } from '@storybook/react'; | ||
|
|
||
| const DocsPage = () => ( | ||
| <> | ||
| <div style={{ marginBottom: '20px' }}> | ||
| <img | ||
| src="/clickhouse-backs.png" | ||
| alt="Click UI" | ||
| style={{ width: '100%', borderRadius: '4px' }} | ||
| /> | ||
| </div> | ||
|
|
||
| <h1>Click UI</h1> | ||
|
|
||
| <p> | ||
| Click UI is the ClickHouse design system and component library. Our aim with Click UI is to | ||
| provide an accessible, theme-able, modern, and attractive interface with which to experience | ||
| the speed and power of ClickHouse. | ||
| </p> | ||
|
|
||
| <p> | ||
| This site is a reference for inspecting components and their props. Official documentation | ||
| lives at{' '} | ||
| <a href="https://clickhouse.design/click-ui" target="_blank" rel="noopener noreferrer"> | ||
| clickhouse.design/click-ui | ||
| </a> | ||
| . | ||
| </p> | ||
|
|
||
| <h2>Resources</h2> | ||
|
|
||
| <ul> | ||
| <li> | ||
| <strong>Source Code:</strong> Available on{' '} | ||
| <a href="https://github.com/ClickHouse/click-ui" target="_blank" rel="noopener noreferrer"> | ||
| GitHub | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <strong>Package:</strong> Found on{' '} | ||
| <a | ||
| href="https://www.npmjs.com/package/@clickhouse/click-ui" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| > | ||
| NPM | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <strong>Figma:</strong> We will be publishing Click UI to the Figma community soon. | ||
| </li> | ||
| </ul> | ||
|
|
||
| <p> | ||
| To get started, please refer to the{' '} | ||
| <a | ||
| href="https://github.com/ClickHouse/click-ui?tab=readme-ov-file#quick-start" | ||
| target="_blank" | ||
| rel="noopener noreferrer" | ||
| > | ||
| Quick Start Guide | ||
| </a> | ||
| . | ||
| </p> | ||
| </> | ||
| ); | ||
|
|
||
| const Introduction = () => null; | ||
|
|
||
| const meta: Meta<typeof Introduction> = { | ||
| title: 'Introduction', | ||
| component: Introduction, | ||
| tags: ['autodocs'], | ||
| parameters: { | ||
| docs: { | ||
| page: DocsPage, | ||
| }, | ||
| previewTabs: { | ||
| canvas: { hidden: true }, | ||
| }, | ||
| viewMode: 'docs', | ||
| }, | ||
| }; | ||
|
|
||
| export default meta; | ||
|
|
||
| type Story = StoryObj<typeof Introduction>; | ||
|
|
||
| export const Docs: Story = {}; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.