-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Breadcrumb separator generator #8435
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
janrozic
wants to merge
7
commits into
vueComponent:main
Choose a base branch
from
janrozic:breadcrumb-separator-generator
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.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
8611e56
Configure website to run on a specific port and host
f1c9147
Add documentation for project setup and development
5a213c3
Add option to generate breadcrumb separators dynamically
60b1f17
Add example demonstrating dynamic separator generation in breadcrumbs
9ca136b
Add a visual line separator above the new section
1d6dd33
Add explanation and separator customization for breadcrumb component
2bffb0f
Transitioned from Plan to Build mode
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,39 @@ | ||
| modules = ["vue-node-20", "nodejs-20", "web"] | ||
| [agent] | ||
| expertMode = true | ||
|
|
||
| [nix] | ||
| channel = "stable-25_05" | ||
|
|
||
| [workflows] | ||
| runButton = "Project" | ||
|
|
||
| [[workflows.workflow]] | ||
| name = "Project" | ||
| mode = "parallel" | ||
| author = "agent" | ||
|
|
||
| [[workflows.workflow.tasks]] | ||
| task = "workflow.run" | ||
| args = "Dev Server" | ||
|
|
||
| [[workflows.workflow]] | ||
| name = "Dev Server" | ||
| author = "agent" | ||
|
|
||
| [[workflows.workflow.tasks]] | ||
| task = "shell.exec" | ||
| args = "npm run dev" | ||
| waitForPort = 5000 | ||
|
|
||
| [workflows.workflow.metadata] | ||
| outputType = "webview" | ||
|
|
||
| [[ports]] | ||
| localPort = 5000 | ||
| externalPort = 80 | ||
|
|
||
| [deployment] | ||
| deploymentTarget = "static" | ||
| build = ["npm", "run", "build"] | ||
| publicDir = "site/dist" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,41 @@ | ||
| # Ant Design Vue | ||
|
|
||
| ## Overview | ||
| This is the Ant Design Vue component library - an enterprise-class UI design language and Vue-based implementation. This repository contains both the component library source code and the documentation site. | ||
|
|
||
| ## Project Structure | ||
| - `components/` - Vue 3 component library source code | ||
| - `site/` - Vite-powered documentation site | ||
| - `scripts/` - Build and utility scripts | ||
| - `plugin/` - Custom Vite plugins for documentation processing | ||
| - `antd-tools/` - Build tooling for the component library | ||
|
|
||
| ## Development Setup | ||
| The project uses: | ||
| - **Node.js 20** - JavaScript runtime | ||
| - **Vite 3** - Development server and build tool | ||
| - **Vue 3** - Frontend framework | ||
| - **Less** - CSS preprocessing | ||
| - **TypeScript** - Type-safe JavaScript | ||
|
|
||
| ## Running the Project | ||
| The dev server runs on port 5000: | ||
| ```bash | ||
| npm run dev | ||
| ``` | ||
|
|
||
| This starts the documentation site with hot reload for development. | ||
|
|
||
| ## Key Scripts | ||
| - `npm run dev` - Start development server | ||
| - `npm run build` - Build the documentation site for production | ||
| - `npm run compile` - Compile the component library | ||
| - `npm run test` - Run tests | ||
|
|
||
| ## Configuration | ||
| - Vite config: `site/vite.config.ts` | ||
| - TypeScript config: `tsconfig.json` | ||
| - ESLint config: `.eslintrc.js` | ||
|
|
||
| ## Recent Changes | ||
| - December 2024: Configured for Replit environment with port 5000 |
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 |
|---|---|---|
|
|
@@ -19,7 +19,8 @@ export default { | |
| }, | ||
| }, | ||
| server: { | ||
| host: true, | ||
| host: '0.0.0.0', | ||
| port: 5000, | ||
| }, | ||
| plugins: [ | ||
| vueJsx({ | ||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this say?