This file contains hidden or 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
| package org.vaadin.addons.tatu; | |
| import com.vaadin.flow.component.Component; | |
| import com.vaadin.flow.component.ComponentEvent; | |
| import com.vaadin.flow.component.ComponentEventListener; | |
| import com.vaadin.flow.component.Tag; | |
| import com.vaadin.flow.component.html.Span; | |
| import com.vaadin.flow.data.provider.SortDirection; | |
| import com.vaadin.flow.shared.Registration; |
This file contains hidden or 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
| package org.vaadin.tatu; | |
| import java.util.Collections; | |
| import java.util.LinkedList; | |
| import com.vaadin.flow.component.ClientCallable; | |
| import com.vaadin.flow.component.button.Button; | |
| import com.vaadin.flow.component.html.Div; | |
| import com.vaadin.flow.component.textfield.TextField; | |
| import com.vaadin.flow.component.treegrid.TreeGrid; |
This file contains hidden or 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
| package org.vaadin.addons.tatu; | |
| import java.util.List; | |
| import java.util.Set; | |
| import java.util.stream.Collectors; | |
| import java.util.stream.IntStream; | |
| import com.vaadin.flow.component.Key; | |
| import com.vaadin.flow.component.Shortcuts; | |
| import com.vaadin.flow.component.contextmenu.ContextMenu; |
This file contains hidden or 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
| package org.vaadin.tatu; | |
| import com.vaadin.flow.component.ClientCallable; | |
| import com.vaadin.flow.component.html.Image; | |
| import com.vaadin.flow.component.html.Span; | |
| import com.vaadin.flow.component.orderedlayout.VerticalLayout; | |
| import com.vaadin.flow.router.Route; | |
| @Route("paste") | |
| public class PasteImage extends VerticalLayout { |
This file contains hidden or 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
| package org.vaadin.tatu; | |
| import java.time.LocalDate; | |
| import com.vaadin.flow.component.Key; | |
| import com.vaadin.flow.component.KeyModifier; | |
| import com.vaadin.flow.component.Shortcuts; | |
| import com.vaadin.flow.component.button.Button; | |
| import com.vaadin.flow.component.datepicker.DatePicker; | |
| import com.vaadin.flow.component.html.Div; |
This file contains hidden or 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
| package org.vaadin.tatu; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import com.vaadin.flow.component.Text; | |
| import com.vaadin.flow.component.charts.Chart; | |
| import com.vaadin.flow.component.charts.model.ChartType; | |
| import com.vaadin.flow.component.charts.model.DataSeries; | |
| import com.vaadin.flow.component.charts.model.Series; |
This file contains hidden or 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
| package org.vaadin.tatu; | |
| import java.util.ArrayList; | |
| import java.util.HashSet; | |
| import java.util.List; | |
| import java.util.Set; | |
| import com.vaadin.flow.component.checkbox.CheckboxGroup; | |
| import com.vaadin.flow.component.checkbox.CheckboxGroupVariant; | |
| import com.vaadin.flow.component.customfield.CustomField; |
This file contains hidden or 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
| package org.vaadin.tatu; | |
| import com.vaadin.flow.component.UI; | |
| public class AccessibleLoadingIndicator { | |
| private static void loading() { | |
| UI.getCurrent().getPage().executeJs( | |
| """ | |
| const indicator = document.getElementsByClassName('v-loading-indicator ')[0]; |