diff options
author | Serhii Kulykov <iamkulykov@gmail.com> | 2023-05-10 12:06:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 12:06:08 +0300 |
commit | 1ea0375155eb0cd578e9d7c74eeadd5cd11d110e (patch) | |
tree | ed52ae6e595cf5169f7ec309a7f1dc37db182b01 | |
parent | 9cf2dc70a248c2d6439d505028265730c340bb36 (diff) | |
download | vaadin-core-1ea0375155eb0cd578e9d7c74eeadd5cd11d110e.tar.gz vaadin-core-1ea0375155eb0cd578e9d7c74eeadd5cd11d110e.zip |
fix: add missing vaadin-tabsheet and vaadin-tooltip imports (#280)
-rw-r--r-- | vaadin-core.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vaadin-core.js b/vaadin-core.js index fcec1dc..7d33da9 100644 --- a/vaadin-core.js +++ b/vaadin-core.js @@ -45,9 +45,11 @@ import '@vaadin/scroller'; import '@vaadin/select'; import '@vaadin/split-layout'; import '@vaadin/tabs'; +import '@vaadin/tabsheet'; import '@vaadin/text-area'; import '@vaadin/text-field'; import '@vaadin/time-picker'; +import '@vaadin/tooltip'; import '@vaadin/upload'; import '@vaadin/vertical-layout'; import '@vaadin/virtual-list'; |