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: 1 addition & 1 deletion packages/primitives/yew/arrow/src/arrow.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(PartialEq, Properties)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/aspect-ratio/src/aspect_ratio.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(PartialEq, Properties)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/avatar/src/avatar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use web_sys::{
window,
};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/checkbox/src/checkbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use radix_yew_use_previous::use_previous;
use radix_yew_use_size::use_size;
use web_sys::wasm_bindgen::{JsCast, closure::Closure};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/dialog/src/dialog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use radix_yew_presence::{Presence, PresenceChildProps};
use radix_yew_primitive::compose_callbacks;
use radix_yew_use_controllable_state::{UseControllableStateParams, use_controllable_state};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(Clone, PartialEq)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use web_sys::{
window,
};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[expect(unused)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/focus-scope/src/focus_scope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use web_sys::{
wasm_bindgen::{JsCast, closure::Closure},
};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

const AUTOFOCUS_ON_MOUNT: &str = "focusScope.autoFocusOnMount";
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/label/src/label.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use web_sys::wasm_bindgen::JsCast;
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(PartialEq, Properties)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/popper/src/popper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use radix_yew_use_size::use_size;
use serde::{Deserialize, Serialize};
use web_sys::{wasm_bindgen::JsCast, window};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/portal/src/portal.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use web_sys::{wasm_bindgen::JsCast, window};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(PartialEq, Properties)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/scroll-area/src/scroll_area.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use radix_yew_direction::{Direction, use_direction};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(Clone, Debug, PartialEq)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/select/src/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use web_sys::{
window,
};
use yew::{prelude::*, virtual_dom::VNode};
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

const OPEN_KEYS: [&str; 4] = [" ", "Enter", "ArrowUp", "ArrowDown"];
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/separator/src/separator.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::fmt::Display;

use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/switch/src/switch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use radix_yew_use_controllable_state::{UseControllableStateParams, use_controlla
use radix_yew_use_previous::use_previous;
use radix_yew_use_size::use_size;
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(Clone, Debug, PartialEq)]
Expand Down
2 changes: 1 addition & 1 deletion packages/primitives/yew/tooltip/src/tooltip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use web_sys::{
window,
};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

const DEFAULT_DELAY_DURATION: i32 = 700;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

#[derive(PartialEq, Properties)]
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/badge.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/base_button.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/blockquote.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/box.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/callout.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use html::IntoPropValue;
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/card.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/code.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/container.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/data_list.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/em.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/flex.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/grid.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/heading.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/inset.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/kbd.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/link.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/quote.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/radio.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use radix_yew_primitive::compose_callbacks;
use radix_yew_use_controllable_state::{UseControllableStateParams, use_controllable_state};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/section.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use radix_yew_select::{
SelectViewportChildProps,
};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/skeleton.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::{prelude::*, virtual_dom::VNode};
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/strong.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/table.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/text.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/text_area.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/text_field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use web_sys::{
window,
};
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/yew/src/components/theme.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use radix_yew_direction::{Direction, DirectionProvider};
use radix_yew_tooltip::TooltipProvider;
use yew::prelude::*;
use yew_struct_component::{Attributes, StructComponent, struct_component};
use yew_struct_component::{Attributes, StructComponent};
use yew_style::Style;

use crate::{
Expand Down