@vaadin/checkbox 25.0.4 → 25.0.5
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 +10 -10
- package/src/vaadin-checkbox.d.ts +2 -0
- package/src/vaadin-checkbox.js +2 -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/checkbox",
|
|
3
|
-
"version": "25.0.
|
|
3
|
+
"version": "25.0.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,23 +34,23 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/a11y-base": "~25.0.
|
|
38
|
-
"@vaadin/component-base": "~25.0.
|
|
39
|
-
"@vaadin/field-base": "~25.0.
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "~25.0.
|
|
37
|
+
"@vaadin/a11y-base": "~25.0.5",
|
|
38
|
+
"@vaadin/component-base": "~25.0.5",
|
|
39
|
+
"@vaadin/field-base": "~25.0.5",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "~25.0.5",
|
|
41
41
|
"lit": "^3.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@vaadin/aura": "~25.0.
|
|
45
|
-
"@vaadin/chai-plugins": "~25.0.
|
|
46
|
-
"@vaadin/test-runner-commands": "~25.0.
|
|
44
|
+
"@vaadin/aura": "~25.0.5",
|
|
45
|
+
"@vaadin/chai-plugins": "~25.0.5",
|
|
46
|
+
"@vaadin/test-runner-commands": "~25.0.5",
|
|
47
47
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
48
|
-
"@vaadin/vaadin-lumo-styles": "~25.0.
|
|
48
|
+
"@vaadin/vaadin-lumo-styles": "~25.0.5",
|
|
49
49
|
"sinon": "^21.0.0"
|
|
50
50
|
},
|
|
51
51
|
"web-types": [
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "f9de924c232acc7b113e9f7f48368e8ca8105f81"
|
|
56
56
|
}
|
package/src/vaadin-checkbox.d.ts
CHANGED
|
@@ -106,6 +106,8 @@ export interface CheckboxEventMap extends HTMLElementEventMap, CheckboxCustomEve
|
|
|
106
106
|
* @fires {Event} change - Fired when the checkbox is checked or unchecked by the user.
|
|
107
107
|
* @fires {CustomEvent} checked-changed - Fired when the `checked` property changes.
|
|
108
108
|
* @fires {CustomEvent} indeterminate-changed - Fired when the `indeterminate` property changes.
|
|
109
|
+
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
|
|
110
|
+
* @fires {CustomEvent} validated - Fired whenever the field is validated.
|
|
109
111
|
*/
|
|
110
112
|
declare class Checkbox extends CheckboxMixin(ElementMixin(ThemableMixin(HTMLElement))) {
|
|
111
113
|
addEventListener<K extends keyof CheckboxEventMap>(
|
package/src/vaadin-checkbox.js
CHANGED
|
@@ -71,6 +71,8 @@ import { CheckboxMixin } from './vaadin-checkbox-mixin.js';
|
|
|
71
71
|
* @fires {Event} change - Fired when the checkbox is checked or unchecked by the user.
|
|
72
72
|
* @fires {CustomEvent} checked-changed - Fired when the `checked` property changes.
|
|
73
73
|
* @fires {CustomEvent} indeterminate-changed - Fired when the `indeterminate` property changes.
|
|
74
|
+
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
|
|
75
|
+
* @fires {CustomEvent} validated - Fired whenever the field is validated.
|
|
74
76
|
*
|
|
75
77
|
* @customElement
|
|
76
78
|
* @extends HTMLElement
|
package/web-types.json
CHANGED