👽️ Aplica cambios de API asociados a componentes
This commit is contained in:
parent
0e0b4ce604
commit
f1f6f495bb
6 changed files with 6 additions and 6 deletions
|
|
@ -187,7 +187,7 @@ impl ComponentTrait for MegaMenu {
|
||||||
(self.renderable.check)(rcx)
|
(self.renderable.check)(rcx)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn before_prepare(&mut self, rcx: &mut RenderContext) {
|
fn before_prepare_component(&mut self, rcx: &mut RenderContext) {
|
||||||
run_actions_before_prepare_component(self, rcx);
|
run_actions_before_prepare_component(self, rcx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ impl ComponentTrait for Container {
|
||||||
(self.renderable.check)(rcx)
|
(self.renderable.check)(rcx)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn before_prepare(&mut self, rcx: &mut RenderContext) {
|
fn before_prepare_component(&mut self, rcx: &mut RenderContext) {
|
||||||
run_actions_before_prepare_component(self, rcx);
|
run_actions_before_prepare_component(self, rcx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ impl ComponentTrait for Form {
|
||||||
(self.renderable.check)(rcx)
|
(self.renderable.check)(rcx)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn before_prepare(&mut self, rcx: &mut RenderContext) {
|
fn before_prepare_component(&mut self, rcx: &mut RenderContext) {
|
||||||
run_actions_before_prepare_component(self, rcx);
|
run_actions_before_prepare_component(self, rcx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@ impl ComponentTrait for Column {
|
||||||
(self.renderable.check)(rcx)
|
(self.renderable.check)(rcx)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn before_prepare(&mut self, rcx: &mut RenderContext) {
|
fn before_prepare_component(&mut self, rcx: &mut RenderContext) {
|
||||||
run_actions_before_prepare_component(self, rcx);
|
run_actions_before_prepare_component(self, rcx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ impl ComponentTrait for Row {
|
||||||
(self.renderable.check)(rcx)
|
(self.renderable.check)(rcx)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn before_prepare(&mut self, rcx: &mut RenderContext) {
|
fn before_prepare_component(&mut self, rcx: &mut RenderContext) {
|
||||||
run_actions_before_prepare_component(self, rcx);
|
run_actions_before_prepare_component(self, rcx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ impl ComponentTrait for Icon {
|
||||||
(self.renderable.check)(rcx)
|
(self.renderable.check)(rcx)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn before_prepare(&mut self, rcx: &mut RenderContext) {
|
fn before_prepare_component(&mut self, rcx: &mut RenderContext) {
|
||||||
rcx.alter(ContextOp::AddStyleSheet(
|
rcx.alter(ContextOp::AddStyleSheet(
|
||||||
StyleSheet::located("/minimal/icons/bootstrap-icons.css").with_version("1.8.2"),
|
StyleSheet::located("/minimal/icons/bootstrap-icons.css").with_version("1.8.2"),
|
||||||
));
|
));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue