@vaadin/button 23.1.0-alpha2 → 23.1.0-beta1

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/button",
3
- "version": "23.1.0-alpha2",
3
+ "version": "23.1.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,15 +34,15 @@
34
34
  "dependencies": {
35
35
  "@open-wc/dedupe-mixin": "^1.3.0",
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/component-base": "23.1.0-alpha2",
38
- "@vaadin/vaadin-lumo-styles": "23.1.0-alpha2",
39
- "@vaadin/vaadin-material-styles": "23.1.0-alpha2",
40
- "@vaadin/vaadin-themable-mixin": "23.1.0-alpha2"
37
+ "@vaadin/component-base": "23.1.0-beta1",
38
+ "@vaadin/vaadin-lumo-styles": "23.1.0-beta1",
39
+ "@vaadin/vaadin-material-styles": "23.1.0-beta1",
40
+ "@vaadin/vaadin-themable-mixin": "23.1.0-beta1"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@esm-bundle/chai": "^4.3.4",
44
44
  "@vaadin/testing-helpers": "^0.3.2",
45
- "sinon": "^9.2.4"
45
+ "sinon": "^13.0.2"
46
46
  },
47
- "gitHead": "6842dcb8b163d4512fae8d3d12a6559077a4aee6"
47
+ "gitHead": "8be43cf83102a6b9ccf309687446e590ce0164e8"
48
48
  }
@@ -14,7 +14,7 @@ import { TabindexMixinClass } from '@vaadin/component-base/src/tabindex-mixin.js
14
14
  * A mixin providing common button functionality.
15
15
  */
16
16
  export declare function ButtonMixin<T extends Constructor<HTMLElement>>(
17
- base: T
17
+ base: T,
18
18
  ): T &
19
19
  Constructor<ActiveMixinClass> &
20
20
  Constructor<DisabledMixinClass> &
@@ -26,8 +26,8 @@ export const ButtonMixin = (superClass) =>
26
26
  * @protected
27
27
  */
28
28
  tabindex: {
29
- value: 0
30
- }
29
+ value: 0,
30
+ },
31
31
  };
32
32
  }
33
33