@vaadin/checkbox 24.2.0-beta2 → 24.2.0-beta3
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 +8 -8
- package/src/vaadin-checkbox.d.ts +0 -8
- package/web-types.json +1 -27
- package/web-types.lit.json +1 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/checkbox",
|
|
3
|
-
"version": "24.2.0-
|
|
3
|
+
"version": "24.2.0-beta3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/a11y-base": "24.2.0-
|
|
43
|
-
"@vaadin/component-base": "24.2.0-
|
|
44
|
-
"@vaadin/field-base": "24.2.0-
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "24.2.0-
|
|
46
|
-
"@vaadin/vaadin-material-styles": "24.2.0-
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "24.2.0-
|
|
42
|
+
"@vaadin/a11y-base": "24.2.0-beta3",
|
|
43
|
+
"@vaadin/component-base": "24.2.0-beta3",
|
|
44
|
+
"@vaadin/field-base": "24.2.0-beta3",
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "24.2.0-beta3",
|
|
46
|
+
"@vaadin/vaadin-material-styles": "24.2.0-beta3",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "24.2.0-beta3",
|
|
48
48
|
"lit": "^2.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "91ea11e7ad706065340acdb93b92316919ce5e69"
|
|
60
60
|
}
|
package/src/vaadin-checkbox.d.ts
CHANGED
|
@@ -11,11 +11,6 @@ import { CheckedMixin } from '@vaadin/field-base/src/checked-mixin.js';
|
|
|
11
11
|
import { LabelMixin } from '@vaadin/field-base/src/label-mixin.js';
|
|
12
12
|
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
|
|
13
13
|
|
|
14
|
-
/**
|
|
15
|
-
* Fired when the `dirty` property changes.
|
|
16
|
-
*/
|
|
17
|
-
export type CheckboxDirtyChangedEvent = CustomEvent<{ value: boolean }>;
|
|
18
|
-
|
|
19
14
|
/**
|
|
20
15
|
* Fired when the `checked` property changes.
|
|
21
16
|
*/
|
|
@@ -27,8 +22,6 @@ export type CheckboxCheckedChangedEvent = CustomEvent<{ value: boolean }>;
|
|
|
27
22
|
export type CheckboxIndeterminateChangedEvent = CustomEvent<{ value: boolean }>;
|
|
28
23
|
|
|
29
24
|
export interface CheckboxCustomEventMap {
|
|
30
|
-
'dirty-changed': CheckboxDirtyChangedEvent;
|
|
31
|
-
|
|
32
25
|
'checked-changed': CheckboxCheckedChangedEvent;
|
|
33
26
|
|
|
34
27
|
'indeterminate-changed': CheckboxIndeterminateChangedEvent;
|
|
@@ -65,7 +58,6 @@ export interface CheckboxEventMap extends HTMLElementEventMap, CheckboxCustomEve
|
|
|
65
58
|
*
|
|
66
59
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
67
60
|
*
|
|
68
|
-
* @fires {CustomEvent} dirty-changed - Fired when the `dirty` property changes.
|
|
69
61
|
* @fires {CustomEvent} checked-changed - Fired when the `checked` property changes.
|
|
70
62
|
* @fires {CustomEvent} indeterminate-changed - Fired when the `indeterminate` property changes.
|
|
71
63
|
*/
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/checkbox",
|
|
4
|
-
"version": "24.2.0-
|
|
4
|
+
"version": "24.2.0-beta3",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -32,17 +32,6 @@
|
|
|
32
32
|
]
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
|
-
{
|
|
36
|
-
"name": "dirty",
|
|
37
|
-
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event. Additionally, the field can be manually\nmarked as dirty by setting the property to `true`.",
|
|
38
|
-
"value": {
|
|
39
|
-
"type": [
|
|
40
|
-
"boolean",
|
|
41
|
-
"null",
|
|
42
|
-
"undefined"
|
|
43
|
-
]
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
35
|
{
|
|
47
36
|
"name": "checked",
|
|
48
37
|
"description": "True if the element is checked.",
|
|
@@ -128,17 +117,6 @@
|
|
|
128
117
|
]
|
|
129
118
|
}
|
|
130
119
|
},
|
|
131
|
-
{
|
|
132
|
-
"name": "dirty",
|
|
133
|
-
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event. Additionally, the field can be manually\nmarked as dirty by setting the property to `true`.",
|
|
134
|
-
"value": {
|
|
135
|
-
"type": [
|
|
136
|
-
"boolean",
|
|
137
|
-
"null",
|
|
138
|
-
"undefined"
|
|
139
|
-
]
|
|
140
|
-
}
|
|
141
|
-
},
|
|
142
120
|
{
|
|
143
121
|
"name": "checked",
|
|
144
122
|
"description": "True if the element is checked.",
|
|
@@ -194,10 +172,6 @@
|
|
|
194
172
|
"name": "value-changed",
|
|
195
173
|
"description": "Fired when the `value` property changes."
|
|
196
174
|
},
|
|
197
|
-
{
|
|
198
|
-
"name": "dirty-changed",
|
|
199
|
-
"description": "Fired when the `dirty` property changes."
|
|
200
|
-
},
|
|
201
175
|
{
|
|
202
176
|
"name": "checked-changed",
|
|
203
177
|
"description": "Fired when the `checked` property changes."
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/checkbox",
|
|
4
|
-
"version": "24.2.0-
|
|
4
|
+
"version": "24.2.0-beta3",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -26,13 +26,6 @@
|
|
|
26
26
|
"kind": "expression"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
-
{
|
|
30
|
-
"name": "?dirty",
|
|
31
|
-
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event. Additionally, the field can be manually\nmarked as dirty by setting the property to `true`.",
|
|
32
|
-
"value": {
|
|
33
|
-
"kind": "expression"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
29
|
{
|
|
37
30
|
"name": "?checked",
|
|
38
31
|
"description": "True if the element is checked.",
|
|
@@ -82,13 +75,6 @@
|
|
|
82
75
|
"kind": "expression"
|
|
83
76
|
}
|
|
84
77
|
},
|
|
85
|
-
{
|
|
86
|
-
"name": "@dirty-changed",
|
|
87
|
-
"description": "Fired when the `dirty` property changes.",
|
|
88
|
-
"value": {
|
|
89
|
-
"kind": "expression"
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
78
|
{
|
|
93
79
|
"name": "@checked-changed",
|
|
94
80
|
"description": "Fired when the `checked` property changes.",
|