@vaadin/component-base 22.0.6 → 22.0.7
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 +2 -2
- package/src/element-mixin.js +1 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/component-base",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
42
42
|
"sinon": "^9.2.4"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "947d74491296ca746b360ecb5f5a8efd55ab2866"
|
|
45
45
|
}
|
package/src/element-mixin.js
CHANGED
|
@@ -3,18 +3,11 @@
|
|
|
3
3
|
* Copyright (c) 2021 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import { setCancelSyntheticClickEvents } from '@polymer/polymer/lib/utils/settings.js';
|
|
7
6
|
import { usageStatistics } from '@vaadin/vaadin-usage-statistics/vaadin-usage-statistics.js';
|
|
8
7
|
import { idlePeriod } from './async.js';
|
|
9
8
|
import { Debouncer, enqueueDebouncer } from './debounce.js';
|
|
10
9
|
import { DirMixin } from './dir-mixin.js';
|
|
11
10
|
|
|
12
|
-
// This setting affects the legacy Polymer gestures which get activated
|
|
13
|
-
// once you import any iron component e.g iron-icon.
|
|
14
|
-
// It has to be explicitly disabled to prevent click issues in iOS + VoiceOver
|
|
15
|
-
// for buttons that are based on `[role=button]` e.g vaadin-button.
|
|
16
|
-
setCancelSyntheticClickEvents(false);
|
|
17
|
-
|
|
18
11
|
window.Vaadin = window.Vaadin || {};
|
|
19
12
|
|
|
20
13
|
/**
|
|
@@ -39,7 +32,7 @@ const registered = new Set();
|
|
|
39
32
|
export const ElementMixin = (superClass) =>
|
|
40
33
|
class VaadinElementMixin extends DirMixin(superClass) {
|
|
41
34
|
static get version() {
|
|
42
|
-
return '22.0.
|
|
35
|
+
return '22.0.7';
|
|
43
36
|
}
|
|
44
37
|
|
|
45
38
|
/** @protected */
|