@spectrum-web-components/checkbox 0.14.13 → 0.14.15-overlay.10

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": "@spectrum-web-components/checkbox",
3
- "version": "0.14.13",
3
+ "version": "0.14.15-overlay.10+7a73c9eee",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -61,13 +61,13 @@
61
61
  "lit-html"
62
62
  ],
63
63
  "dependencies": {
64
- "@spectrum-web-components/base": "^0.7.5",
65
- "@spectrum-web-components/icon": "^0.12.10",
66
- "@spectrum-web-components/icons-ui": "^0.9.11",
67
- "@spectrum-web-components/shared": "^0.15.6"
64
+ "@spectrum-web-components/base": "^0.7.6-overlay.54+7a73c9eee",
65
+ "@spectrum-web-components/icon": "^0.12.12-overlay.10+7a73c9eee",
66
+ "@spectrum-web-components/icons-ui": "^0.9.13-overlay.10+7a73c9eee",
67
+ "@spectrum-web-components/shared": "^0.15.8-overlay.10+7a73c9eee"
68
68
  },
69
69
  "devDependencies": {
70
- "@spectrum-css/checkbox": "^6.0.2"
70
+ "@spectrum-css/checkbox": "^6.0.19"
71
71
  },
72
72
  "types": "./src/index.d.ts",
73
73
  "customElements": "custom-elements.json",
@@ -75,5 +75,5 @@
75
75
  "./sp-*.js",
76
76
  "./**/*.dev.js"
77
77
  ],
78
- "gitHead": "fe316a3ee9fc753f0de98aece11e04227df73ab7"
78
+ "gitHead": "7a73c9eeec7dffb9c968f7f30586139b8e5ee348"
79
79
  }
@@ -1,312 +0,0 @@
1
- {
2
- "schemaVersion": "1.0.0",
3
- "readme": "",
4
- "modules": [
5
- {
6
- "kind": "javascript-module",
7
- "path": "sp-checkbox.js",
8
- "declarations": [],
9
- "exports": [
10
- {
11
- "kind": "custom-element-definition",
12
- "name": "sp-checkbox",
13
- "declaration": {
14
- "name": "Checkbox",
15
- "module": "/src/Checkbox.js"
16
- }
17
- }
18
- ]
19
- },
20
- {
21
- "kind": "javascript-module",
22
- "path": "src/Checkbox.js",
23
- "declarations": [
24
- {
25
- "kind": "class",
26
- "description": "",
27
- "name": "Checkbox",
28
- "slots": [
29
- {
30
- "description": "content to display as the label for the Checkbox",
31
- "name": ""
32
- }
33
- ],
34
- "members": [
35
- {
36
- "kind": "field",
37
- "name": "indeterminate",
38
- "type": {
39
- "text": "boolean"
40
- },
41
- "privacy": "public",
42
- "default": "false",
43
- "attribute": "indeterminate",
44
- "reflects": true
45
- },
46
- {
47
- "kind": "field",
48
- "name": "invalid",
49
- "type": {
50
- "text": "boolean"
51
- },
52
- "privacy": "public",
53
- "default": "false",
54
- "attribute": "invalid",
55
- "reflects": true
56
- },
57
- {
58
- "kind": "field",
59
- "name": "emphasized",
60
- "type": {
61
- "text": "boolean"
62
- },
63
- "privacy": "public",
64
- "default": "false",
65
- "attribute": "emphasized",
66
- "reflects": true
67
- },
68
- {
69
- "kind": "field",
70
- "name": "checked",
71
- "type": {
72
- "text": "boolean"
73
- },
74
- "privacy": "public",
75
- "default": "false",
76
- "attribute": "checked",
77
- "reflects": true,
78
- "inheritedFrom": {
79
- "name": "CheckboxBase",
80
- "module": "src/CheckboxBase.js"
81
- }
82
- },
83
- {
84
- "kind": "field",
85
- "name": "readonly",
86
- "type": {
87
- "text": "boolean"
88
- },
89
- "privacy": "public",
90
- "default": "false",
91
- "attribute": "readonly",
92
- "reflects": true,
93
- "inheritedFrom": {
94
- "name": "CheckboxBase",
95
- "module": "src/CheckboxBase.js"
96
- }
97
- },
98
- {
99
- "kind": "field",
100
- "name": "inputElement",
101
- "type": {
102
- "text": "HTMLInputElement"
103
- },
104
- "privacy": "protected",
105
- "inheritedFrom": {
106
- "name": "CheckboxBase",
107
- "module": "src/CheckboxBase.js"
108
- }
109
- },
110
- {
111
- "kind": "field",
112
- "name": "focusElement",
113
- "type": {
114
- "text": "HTMLElement"
115
- },
116
- "privacy": "public",
117
- "inheritedFrom": {
118
- "name": "CheckboxBase",
119
- "module": "src/CheckboxBase.js"
120
- }
121
- },
122
- {
123
- "kind": "method",
124
- "name": "handleChange",
125
- "privacy": "public",
126
- "return": {
127
- "type": {
128
- "text": "void"
129
- }
130
- },
131
- "inheritedFrom": {
132
- "name": "CheckboxBase",
133
- "module": "src/CheckboxBase.js"
134
- }
135
- }
136
- ],
137
- "events": [
138
- {
139
- "description": "Announces a change in the `checked` property of a Checkbox",
140
- "name": "change"
141
- }
142
- ],
143
- "attributes": [
144
- {
145
- "name": "indeterminate",
146
- "type": {
147
- "text": "boolean"
148
- },
149
- "default": "false",
150
- "fieldName": "indeterminate"
151
- },
152
- {
153
- "name": "invalid",
154
- "type": {
155
- "text": "boolean"
156
- },
157
- "default": "false",
158
- "fieldName": "invalid"
159
- },
160
- {
161
- "name": "emphasized",
162
- "type": {
163
- "text": "boolean"
164
- },
165
- "default": "false",
166
- "fieldName": "emphasized"
167
- },
168
- {
169
- "name": "checked",
170
- "type": {
171
- "text": "boolean"
172
- },
173
- "default": "false",
174
- "fieldName": "checked",
175
- "inheritedFrom": {
176
- "name": "CheckboxBase",
177
- "module": "src/CheckboxBase.ts"
178
- }
179
- },
180
- {
181
- "name": "readonly",
182
- "type": {
183
- "text": "boolean"
184
- },
185
- "default": "false",
186
- "fieldName": "readonly",
187
- "inheritedFrom": {
188
- "name": "CheckboxBase",
189
- "module": "src/CheckboxBase.ts"
190
- }
191
- }
192
- ],
193
- "mixins": [
194
- {
195
- "name": "SizedMixin",
196
- "package": "@spectrum-web-components/base"
197
- }
198
- ],
199
- "superclass": {
200
- "name": "CheckboxBase",
201
- "module": "/src/CheckboxBase.js"
202
- },
203
- "tagName": "sp-checkbox",
204
- "customElement": true
205
- }
206
- ],
207
- "exports": [
208
- {
209
- "kind": "js",
210
- "name": "Checkbox",
211
- "declaration": {
212
- "name": "Checkbox",
213
- "module": "src/Checkbox.js"
214
- }
215
- }
216
- ]
217
- },
218
- {
219
- "kind": "javascript-module",
220
- "path": "src/CheckboxBase.js",
221
- "declarations": [
222
- {
223
- "kind": "class",
224
- "description": "",
225
- "name": "CheckboxBase",
226
- "members": [
227
- {
228
- "kind": "field",
229
- "name": "checked",
230
- "type": {
231
- "text": "boolean"
232
- },
233
- "privacy": "public",
234
- "default": "false",
235
- "attribute": "checked",
236
- "reflects": true
237
- },
238
- {
239
- "kind": "field",
240
- "name": "readonly",
241
- "type": {
242
- "text": "boolean"
243
- },
244
- "privacy": "public",
245
- "default": "false",
246
- "attribute": "readonly",
247
- "reflects": true
248
- },
249
- {
250
- "kind": "field",
251
- "name": "inputElement",
252
- "type": {
253
- "text": "HTMLInputElement"
254
- },
255
- "privacy": "protected"
256
- },
257
- {
258
- "kind": "field",
259
- "name": "focusElement",
260
- "type": {
261
- "text": "HTMLElement"
262
- },
263
- "privacy": "public"
264
- },
265
- {
266
- "kind": "method",
267
- "name": "handleChange",
268
- "privacy": "public",
269
- "return": {
270
- "type": {
271
- "text": "void"
272
- }
273
- }
274
- }
275
- ],
276
- "attributes": [
277
- {
278
- "name": "checked",
279
- "type": {
280
- "text": "boolean"
281
- },
282
- "default": "false",
283
- "fieldName": "checked"
284
- },
285
- {
286
- "name": "readonly",
287
- "type": {
288
- "text": "boolean"
289
- },
290
- "default": "false",
291
- "fieldName": "readonly"
292
- }
293
- ],
294
- "superclass": {
295
- "name": "Focusable",
296
- "package": "@spectrum-web-components/shared/src/focusable.js"
297
- }
298
- }
299
- ],
300
- "exports": [
301
- {
302
- "kind": "js",
303
- "name": "CheckboxBase",
304
- "declaration": {
305
- "name": "CheckboxBase",
306
- "module": "src/CheckboxBase.js"
307
- }
308
- }
309
- ]
310
- }
311
- ]
312
- }