Vaadin has a high quality component set for building mobile and desktop web applications in modern browsers
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-bot on v14.1.1
vaadin-bot on 14.1
14.1.1 (compare)
vaadin-bot on v14.1.0
vaadin-bot on 14.1
14.1.0 (compare)
shadikhani on improveVaadinDatePickerSecond
shadikhani on master
Improve date picker demos secon… (compare)
label-suffix
). I’m using the technique of template-injection I’ve seen in the Vaadin’s text-field elements, but I guess I’m missing something: when importing the custom element, original elements break.
TextFieldElement
: the styles get lost in the original field.
src/vaadin-text-field.js
before the styles, styles don’t get applied!
MemoryBuffer buffer = new MemoryBuffer();
Upload upload = new Upload(buffer);
upload.addSucceededListener(e -> {
SecurityContext context = SecurityContextHolder.getContext();
context.getAuthentication(); // null
});
<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: