-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
47 additions
and
75 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// https://echarts.apache.org/ | ||
// https://egui.rs/ | ||
// https://github.com/emilk/egui_plot/ |
This file contains 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#[cfg(features = "data-canvas-charts")] | ||
#[cfg(feature = "data-canvas-charts")] | ||
pub mod charts; | ||
#[cfg(features = "data-canvas-scene")] | ||
#[cfg(feature = "data-canvas-scene")] | ||
pub mod scene; |
This file contains 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
File renamed without changes.
20 changes: 20 additions & 0 deletions
20
packages/components/src/data/paragraph/rich/markdown/mod.rs
This file contains 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,20 @@ | ||
#[cfg(test)] | ||
mod test { | ||
#[test] | ||
fn test() { | ||
use markdown::{to_mdast, ParseOptions}; | ||
|
||
let input = r#" | ||
```rust;ignored | ||
fn main() { | ||
println!("Hello, world!"); | ||
} | ||
``` | ||
<SomeComponent /> | ||
{a + b} // inline code | ||
"#; | ||
println!("{:?}", to_mdast(input, &ParseOptions::mdx()).unwrap()); | ||
} | ||
} |
File renamed without changes.
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -1,13 +1,7 @@ | ||
pub mod rich; | ||
mod rich; | ||
mod text; | ||
mod text_area; | ||
|
||
mod char_input; | ||
mod markdown_input; | ||
mod password_input; | ||
mod text_area_input; | ||
mod text_input; | ||
|
||
pub use char_input::CharInput; | ||
pub use markdown_input::MarkdownInput; | ||
pub use password_input::PasswordInput; | ||
pub use text_area_input::TextAreaInput; | ||
pub use text_input::TextInput; | ||
pub use rich::RichInput; | ||
pub use text::TextInput; | ||
pub use text_area::TextAreaInput; |
This file was deleted.
Oops, something went wrong.
This file contains 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
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
mod color_picker; | ||
mod date_picker; | ||
mod date_time_picker; | ||
mod time_picker; | ||
mod color; | ||
mod date; | ||
mod date_time; | ||
mod time; | ||
|
||
pub use color_picker::ColorPicker; | ||
pub use date_picker::DatePicker; | ||
pub use date_time_picker::DateTimePicker; | ||
pub use time_picker::TimePicker; | ||
pub use color::ColorPicker; | ||
pub use date::DatePicker; | ||
pub use date_time::DateTimePicker; | ||
pub use time::TimePicker; |
File renamed without changes.