File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
vaadin-editable-label/src/main/java/software/xdev/vaadin/editable_label Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 2.0.1
2+ * Replaced deprecated `` Label `` -Vaadin component with `` Span ``
3+ * Updated dependencies
4+
15## 2.0.0
26⚠️<i >This release contains breaking changes</i >
37
Original file line number Diff line number Diff line change 3535import com .vaadin .flow .component .button .ButtonVariant ;
3636import com .vaadin .flow .component .dependency .CssImport ;
3737import com .vaadin .flow .component .html .Div ;
38- import com .vaadin .flow .component .html .Label ;
38+ import com .vaadin .flow .component .html .Span ;
3939import com .vaadin .flow .component .icon .VaadinIcon ;
4040import com .vaadin .flow .shared .Registration ;
4141
@@ -68,7 +68,7 @@ public abstract class AbstractEditableLabel<
6868 protected final Button btnEdit = new Button (VaadinIcon .PENCIL .create ());
6969 protected final Button btnSave = new Button (VaadinIcon .CHECK .create ());
7070 protected final Button btnClose = new Button (VaadinIcon .CLOSE .create ());
71- protected final Label label = new Label ();
71+ protected final Span label = new Span ();
7272
7373 protected final C editor ;
7474
You can’t perform that action at this time.
0 commit comments