Skip to content

Commit

Permalink
feat: add support for shadow DOM styling
Browse files Browse the repository at this point in the history
Close #41
  • Loading branch information
javier-godoy committed Apr 22, 2024
1 parent 9016d55 commit c4b092b
Show file tree
Hide file tree
Showing 6 changed files with 746 additions and 646 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import com.vaadin.flow.component.DomEvent;
import com.vaadin.flow.component.EventData;
import com.vaadin.flow.component.HasSize;
import com.vaadin.flow.component.HasTheme;
import com.vaadin.flow.component.Tag;
import com.vaadin.flow.component.dependency.JsModule;
import com.vaadin.flow.component.dependency.NpmPackage;
Expand All @@ -39,7 +40,7 @@
@Tag("l2t-paper-slider")
@NpmPackage(value = "@polymer/iron-a11y-keys-behavior", version = "3.0.1")
@JsModule("./paper-slider/l2t-paper-slider.js")
public class Carousel extends Component implements HasSize {
public class Carousel extends Component implements HasSize, HasTheme {

private static final String HIDE_NAV = "hideNav";
private static final String DISABLE_SWIPE = "disableSwipe";
Expand Down
Loading

0 comments on commit c4b092b

Please sign in to comment.