@vaadin/grid 23.0.1 → 23.0.2
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/grid",
|
|
3
|
-
"version": "23.0.
|
|
3
|
+
"version": "23.0.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
43
43
|
"@polymer/polymer": "^3.0.0",
|
|
44
|
-
"@vaadin/checkbox": "^23.0.
|
|
45
|
-
"@vaadin/component-base": "^23.0.
|
|
46
|
-
"@vaadin/text-field": "^23.0.
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "^23.0.
|
|
48
|
-
"@vaadin/vaadin-material-styles": "^23.0.
|
|
49
|
-
"@vaadin/vaadin-themable-mixin": "^23.0.
|
|
44
|
+
"@vaadin/checkbox": "^23.0.2",
|
|
45
|
+
"@vaadin/component-base": "^23.0.2",
|
|
46
|
+
"@vaadin/text-field": "^23.0.2",
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "^23.0.2",
|
|
48
|
+
"@vaadin/vaadin-material-styles": "^23.0.2",
|
|
49
|
+
"@vaadin/vaadin-themable-mixin": "^23.0.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@esm-bundle/chai": "^4.3.4",
|
|
53
|
-
"@vaadin/polymer-legacy-adapter": "^23.0.
|
|
53
|
+
"@vaadin/polymer-legacy-adapter": "^23.0.2",
|
|
54
54
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
55
55
|
"lit": "^2.0.0",
|
|
56
56
|
"sinon": "^9.2.0"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "a50f708dc0fe7d0cc10763f413838d71b1a0788b"
|
|
59
59
|
}
|
|
@@ -91,6 +91,9 @@ export const KeyboardNavigationMixin = (superClass) =>
|
|
|
91
91
|
this.addEventListener('mousedown', () => {
|
|
92
92
|
this.toggleAttribute('navigating', false);
|
|
93
93
|
this._isMousedown = true;
|
|
94
|
+
|
|
95
|
+
// Reset stored order when moving focus with mouse.
|
|
96
|
+
this._focusedColumnOrder = undefined;
|
|
94
97
|
});
|
|
95
98
|
this.addEventListener('mouseup', () => (this._isMousedown = false));
|
|
96
99
|
}
|
|
@@ -81,6 +81,7 @@ class GridTreeToggle extends ThemableMixin(DirMixin(PolymerElement)) {
|
|
|
81
81
|
:host {
|
|
82
82
|
display: inline-flex;
|
|
83
83
|
align-items: baseline;
|
|
84
|
+
max-width: 100%;
|
|
84
85
|
|
|
85
86
|
/* CSS API for :host */
|
|
86
87
|
--vaadin-grid-tree-toggle-level-offset: 1em;
|
|
@@ -125,6 +126,12 @@ class GridTreeToggle extends ThemableMixin(DirMixin(PolymerElement)) {
|
|
|
125
126
|
:host([leaf]) [part='toggle'] {
|
|
126
127
|
visibility: hidden;
|
|
127
128
|
}
|
|
129
|
+
|
|
130
|
+
slot {
|
|
131
|
+
display: block;
|
|
132
|
+
overflow: hidden;
|
|
133
|
+
text-overflow: ellipsis;
|
|
134
|
+
}
|
|
128
135
|
</style>
|
|
129
136
|
|
|
130
137
|
<span id="level-spacer"></span>
|