@vaadin/scroller 25.2.0-alpha10 → 25.2.0-alpha11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/scroller",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-alpha11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,22 +35,22 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.2.0-
|
|
39
|
-
"@vaadin/component-base": "25.2.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.2.0-alpha11",
|
|
39
|
+
"@vaadin/component-base": "25.2.0-alpha11",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha11",
|
|
41
41
|
"lit": "^3.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@vaadin/aura": "25.2.0-
|
|
45
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
46
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
44
|
+
"@vaadin/aura": "25.2.0-alpha11",
|
|
45
|
+
"@vaadin/chai-plugins": "25.2.0-alpha11",
|
|
46
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha11",
|
|
47
47
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
48
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha11"
|
|
49
49
|
},
|
|
50
50
|
"customElements": "custom-elements.json",
|
|
51
51
|
"web-types": [
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "fdc37e932709f95491a027aeb2090911cb7528c6"
|
|
56
56
|
}
|
|
@@ -15,10 +15,11 @@ export const scrollerStyles = css`
|
|
|
15
15
|
--vaadin-scroller-overflow-indicator-top-opacity: 0;
|
|
16
16
|
--vaadin-scroller-overflow-indicator-bottom-opacity: 0;
|
|
17
17
|
display: block;
|
|
18
|
-
overflow: auto;
|
|
18
|
+
overflow: auto !important;
|
|
19
19
|
outline: none;
|
|
20
20
|
box-sizing: border-box;
|
|
21
21
|
padding: var(--vaadin-scroller-padding-block) var(--vaadin-scroller-padding-inline);
|
|
22
|
+
contain: paint;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
:host([focus-ring]) {
|
|
@@ -30,15 +31,15 @@ export const scrollerStyles = css`
|
|
|
30
31
|
}
|
|
31
32
|
|
|
32
33
|
:host([scroll-direction='vertical']) {
|
|
33
|
-
overflow-x: hidden;
|
|
34
|
+
overflow-x: hidden !important;
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
:host([scroll-direction='horizontal']) {
|
|
37
|
-
overflow-y: hidden;
|
|
38
|
+
overflow-y: hidden !important;
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
:host([scroll-direction='none']) {
|
|
41
|
-
overflow: hidden;
|
|
42
|
+
overflow: hidden !important;
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
:host::before,
|
|
@@ -5,10 +5,6 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { FocusMixin } from '@vaadin/a11y-base/src/focus-mixin.js';
|
|
7
7
|
|
|
8
|
-
/**
|
|
9
|
-
* @polymerMixin
|
|
10
|
-
* @mixes FocusMixin
|
|
11
|
-
*/
|
|
12
8
|
export const ScrollerMixin = (superClass) =>
|
|
13
9
|
class ScrollerMixinClass extends FocusMixin(superClass) {
|
|
14
10
|
static get properties() {
|
package/src/vaadin-scroller.js
CHANGED
|
@@ -55,9 +55,6 @@ import { ScrollerMixin } from './vaadin-scroller-mixin.js';
|
|
|
55
55
|
*
|
|
56
56
|
* @customElement vaadin-scroller
|
|
57
57
|
* @extends HTMLElement
|
|
58
|
-
* @mixes ThemableMixin
|
|
59
|
-
* @mixes ElementMixin
|
|
60
|
-
* @mixes ScrollerMixin
|
|
61
58
|
*/
|
|
62
59
|
class Scroller extends ScrollerMixin(ElementMixin(ThemableMixin(PolylitMixin(LumoInjectionMixin(LitElement))))) {
|
|
63
60
|
static get is() {
|
package/web-types.json
CHANGED