Skip to content
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2be5cfe
add component subcommand
ealmloff Sep 15, 2025
af28ffd
Merge branch 'remote-origin' into dx-components-command
ealmloff Sep 15, 2025
60a1006
add dx component add, remove and list commands
ealmloff Sep 16, 2025
94dd8ef
handle rust dependencies
ealmloff Sep 16, 2025
c35262a
handle component dependencies
ealmloff Sep 17, 2025
c9346f7
fetch remote registries
ealmloff Sep 17, 2025
6640345
sort components before listing them
ealmloff Sep 17, 2025
89d6a00
remove local dependency
ealmloff Sep 17, 2025
84bf206
move te component manifest into the dioxus workspace
ealmloff Sep 18, 2025
5a92333
add additional instalation instructions the first time the component
ealmloff Sep 18, 2025
ee9cf63
fix mod name
ealmloff Sep 18, 2025
04c865c
fix clippy
ealmloff Sep 18, 2025
c201197
improve docs and move to the main branch of components
ealmloff Sep 19, 2025
29fa5d6
fix typos
ealmloff Sep 19, 2025
9b34aeb
more typos
ealmloff Sep 19, 2025
36f4d8e
undo const-serialize changes
ealmloff Sep 19, 2025
3987bc9
remove a few unwraps
ealmloff Sep 19, 2025
1798a01
Allow adding multiple components at once and add a `--all` flag
ealmloff Sep 22, 2025
e4950ce
add options to the config for the base path, global asset path and
ealmloff Sep 22, 2025
f2b782c
component_path -> component_dir
ealmloff Sep 22, 2025
195bc4b
component_dir is always relative to the crate root
ealmloff Sep 22, 2025
987366a
fix clippy
ealmloff Sep 22, 2025
afc5178
Merge branch 'remote-origin' into dx-components-command
ealmloff Oct 7, 2025
795cb6d
Merge branch 'remote-origin' into dx-components-command
ealmloff Oct 7, 2025
5cdc17c
fix request imports
ealmloff Oct 7, 2025
de8f7aa
Merge remote-tracking branch 'origin/main' into dx-components-command
jkelleyrtp Oct 8, 2025
105b6f6
wip: code style changes
jkelleyrtp Oct 8, 2025
c888407
Merge remote-tracking branch 'origin/main' into dx-components-command
jkelleyrtp Oct 15, 2025
4f890f4
rename to "components" instead of "component"
jkelleyrtp Oct 15, 2025
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
Prev Previous commit
Next Next commit
fix mod name
  • Loading branch information
ealmloff committed Sep 18, 2025
commit ee9cf631fbf3f2b9088d7c4a9692e54bcc898049
2 changes: 1 addition & 1 deletion packages/cli/src/cli/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ impl ComponentCommand {
components_root.display()
);
println!("To finish setting up components, you will need to:");
println!("- manually reference the module by adding `mod component;` to your `main.rs` file");
println!("- manually reference the module by adding `mod components;` to your `main.rs` file");
if registry.is_default() {
println!("- add a reference to `asset!(\"/assets/dx-components-theme.css\")` as a stylesheet in your app");
}
Expand Down