Vaadin has a high quality component set for building mobile and desktop web applications in modern browsers
vaadin-bot on v14.2.0-alpha1
vaadin-bot on 14.2
14.2.0-alpha1 (compare)
web-padawan on improveVaadinDatePickerSecond
web-padawan on master
docs: improve localization demo… (compare)
web-padawan on improveVaadinDatePickerSecond
docs: improve localization demo… (compare)
web-padawan on improveVaadinDatePickerSecond
Improve Vaadin Date Picker Fix issues Fix issues and 3 more (compare)
shadikhani on improveVaadinDatePickerSecond
Improve vaadin date picker demos (compare)
shadikhani on improveVaadinDatePickerSecond
Improve date picker demos secon… Improve styling examples Fix issues and 1 more (compare)
ZheSun88 on 14.2
vaadin-bot on v14.1.2
vaadin-bot on 14.1
14.1.2 (compare)
vaadin-bot on v15.0.0-alpha7
vaadin-bot on master
15.0.0-alpha7 (compare)
vaadin-bot on v15.0.0-alpha6
vaadin-bot on master
15.0.0-alpha6 (compare)
<vaadin-text-field>
would be import '@vaadin/vaadin-text-field/theme/material/vaadin-text-field.js';
. Note that you shouldn't mix Lumo and Material themed Vaadin components on the same page.
material-color-light
instead of material-light-color
.
DataSeriesItem3d point = new DataSeriesItem3d(x, y, z);
if (x > y && x > z) {
higherX.add(point);
} else if (y > x && y > z) {
higherY.add(point);
} else {
higherZ.add(point);
}
}
}
id
.
registerStyles()
API? You should: https://github.com/vaadin/vaadin-themable-mixin#styling-in-javascript
registerStyles()
, I wasn’t aware of that! Let’s look at it right now :smile:
vcf-avatar-item
in this Glitch: https://glitch.com/edit/#!/low-buckthorn but I can’t get the name initials to show up. What am I doing wrong?
action
method that does a navigation by setting window.location
to the target URL. Or alternatively use the Router.setTriggers
API and use a customized version of the click trigger (where I think you could do the navigation via window.location
based on some attribute being present on the clicked <a>
element, or based on href
path or some other condition) instead of the default one.