@vaadin/scroller 23.2.2 → 23.3.0-alpha2
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 +6 -6
- package/src/vaadin-scroller.d.ts +1 -0
- package/src/vaadin-scroller.js +1 -0
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/scroller",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.3.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/component-base": "
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
41
|
-
"@vaadin/vaadin-material-styles": "
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
39
|
+
"@vaadin/component-base": "23.3.0-alpha2",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "23.3.0-alpha2",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "23.3.0-alpha2",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "23.3.0-alpha2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"web-types.json",
|
|
50
50
|
"web-types.lit.json"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "ae61027c62ffa7f7d70cfc50e43f333addfc74b6"
|
|
53
53
|
}
|
package/src/vaadin-scroller.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ declare class Scroller extends FocusMixin(ThemableMixin(ElementMixin(ControllerM
|
|
|
28
28
|
/**
|
|
29
29
|
* This property indicates the scroll direction. Supported values are `vertical`, `horizontal`, `none`.
|
|
30
30
|
* When `scrollDirection` is undefined scrollbars will be shown in both directions.
|
|
31
|
+
* @attr {string} scroll-direction
|
|
31
32
|
*/
|
|
32
33
|
scrollDirection: 'horizontal' | 'none' | 'vertical' | undefined;
|
|
33
34
|
|
package/src/vaadin-scroller.js
CHANGED
|
@@ -71,6 +71,7 @@ class Scroller extends FocusMixin(ElementMixin(ControllerMixin(ThemableMixin(Pol
|
|
|
71
71
|
/**
|
|
72
72
|
* This property indicates the scroll direction. Supported values are `vertical`, `horizontal`, `none`.
|
|
73
73
|
* When `scrollDirection` is undefined scrollbars will be shown in both directions.
|
|
74
|
+
* @attr {string} scroll-direction
|
|
74
75
|
*/
|
|
75
76
|
scrollDirection: {
|
|
76
77
|
type: String,
|
package/web-types.json
CHANGED