@spectrum-web-components/checkbox 0.35.0 → 0.35.1-rc.24

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.35.0",
3
+ "version": "0.35.1-rc.24+e3649e123",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -61,10 +61,10 @@
61
61
  "lit-html"
62
62
  ],
63
63
  "dependencies": {
64
- "@spectrum-web-components/base": "^0.35.0",
65
- "@spectrum-web-components/icon": "^0.35.0",
66
- "@spectrum-web-components/icons-ui": "^0.35.0",
67
- "@spectrum-web-components/shared": "^0.35.0"
64
+ "@spectrum-web-components/base": "^0.35.1-rc.24+e3649e123",
65
+ "@spectrum-web-components/icon": "^0.35.1-rc.24+e3649e123",
66
+ "@spectrum-web-components/icons-ui": "^0.35.1-rc.24+e3649e123",
67
+ "@spectrum-web-components/shared": "^0.35.1-rc.24+e3649e123"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@spectrum-css/checkbox": "^6.1.10"
@@ -75,5 +75,5 @@
75
75
  "./sp-*.js",
76
76
  "./**/*.dev.js"
77
77
  ],
78
- "gitHead": "1ee5a6c92838cdf48321276d97f61c20f8476ac1"
78
+ "gitHead": "e3649e1230ed727048988a452969c38ced5467ac"
79
79
  }
@@ -1,314 +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": "method",
70
- "name": "handleChange",
71
- "privacy": "public",
72
- "return": {
73
- "type": {
74
- "text": "void"
75
- }
76
- },
77
- "inheritedFrom": {
78
- "name": "CheckboxBase",
79
- "module": "src/CheckboxBase.js"
80
- }
81
- },
82
- {
83
- "kind": "field",
84
- "name": "checked",
85
- "type": {
86
- "text": "boolean"
87
- },
88
- "privacy": "public",
89
- "default": "false",
90
- "attribute": "checked",
91
- "reflects": true,
92
- "inheritedFrom": {
93
- "name": "CheckboxBase",
94
- "module": "src/CheckboxBase.js"
95
- }
96
- },
97
- {
98
- "kind": "field",
99
- "name": "readonly",
100
- "type": {
101
- "text": "boolean"
102
- },
103
- "privacy": "public",
104
- "default": "false",
105
- "attribute": "readonly",
106
- "reflects": true,
107
- "inheritedFrom": {
108
- "name": "CheckboxBase",
109
- "module": "src/CheckboxBase.js"
110
- }
111
- },
112
- {
113
- "kind": "field",
114
- "name": "inputElement",
115
- "type": {
116
- "text": "HTMLInputElement"
117
- },
118
- "privacy": "protected",
119
- "inheritedFrom": {
120
- "name": "CheckboxBase",
121
- "module": "src/CheckboxBase.js"
122
- }
123
- },
124
- {
125
- "kind": "field",
126
- "name": "focusElement",
127
- "type": {
128
- "text": "HTMLElement"
129
- },
130
- "privacy": "public",
131
- "readonly": true,
132
- "inheritedFrom": {
133
- "name": "CheckboxBase",
134
- "module": "src/CheckboxBase.js"
135
- }
136
- }
137
- ],
138
- "events": [
139
- {
140
- "description": "Announces a change in the `checked` property of a Checkbox",
141
- "name": "change"
142
- }
143
- ],
144
- "attributes": [
145
- {
146
- "name": "indeterminate",
147
- "type": {
148
- "text": "boolean"
149
- },
150
- "default": "false",
151
- "fieldName": "indeterminate"
152
- },
153
- {
154
- "name": "invalid",
155
- "type": {
156
- "text": "boolean"
157
- },
158
- "default": "false",
159
- "fieldName": "invalid"
160
- },
161
- {
162
- "name": "emphasized",
163
- "type": {
164
- "text": "boolean"
165
- },
166
- "default": "false",
167
- "fieldName": "emphasized"
168
- },
169
- {
170
- "name": "checked",
171
- "type": {
172
- "text": "boolean"
173
- },
174
- "default": "false",
175
- "fieldName": "checked",
176
- "inheritedFrom": {
177
- "name": "CheckboxBase",
178
- "module": "src/CheckboxBase.ts"
179
- }
180
- },
181
- {
182
- "name": "readonly",
183
- "type": {
184
- "text": "boolean"
185
- },
186
- "default": "false",
187
- "fieldName": "readonly",
188
- "inheritedFrom": {
189
- "name": "CheckboxBase",
190
- "module": "src/CheckboxBase.ts"
191
- }
192
- }
193
- ],
194
- "mixins": [
195
- {
196
- "name": "SizedMixin",
197
- "package": "@spectrum-web-components/base"
198
- }
199
- ],
200
- "superclass": {
201
- "name": "CheckboxBase",
202
- "module": "/src/CheckboxBase.js"
203
- },
204
- "tagName": "sp-checkbox",
205
- "customElement": true
206
- }
207
- ],
208
- "exports": [
209
- {
210
- "kind": "js",
211
- "name": "Checkbox",
212
- "declaration": {
213
- "name": "Checkbox",
214
- "module": "src/Checkbox.js"
215
- }
216
- }
217
- ]
218
- },
219
- {
220
- "kind": "javascript-module",
221
- "path": "src/CheckboxBase.js",
222
- "declarations": [
223
- {
224
- "kind": "class",
225
- "description": "",
226
- "name": "CheckboxBase",
227
- "members": [
228
- {
229
- "kind": "field",
230
- "name": "checked",
231
- "type": {
232
- "text": "boolean"
233
- },
234
- "privacy": "public",
235
- "default": "false",
236
- "attribute": "checked",
237
- "reflects": true
238
- },
239
- {
240
- "kind": "field",
241
- "name": "readonly",
242
- "type": {
243
- "text": "boolean"
244
- },
245
- "privacy": "public",
246
- "default": "false",
247
- "attribute": "readonly",
248
- "reflects": true
249
- },
250
- {
251
- "kind": "field",
252
- "name": "inputElement",
253
- "type": {
254
- "text": "HTMLInputElement"
255
- },
256
- "privacy": "protected"
257
- },
258
- {
259
- "kind": "field",
260
- "name": "focusElement",
261
- "type": {
262
- "text": "HTMLElement"
263
- },
264
- "privacy": "public",
265
- "readonly": true
266
- },
267
- {
268
- "kind": "method",
269
- "name": "handleChange",
270
- "privacy": "public",
271
- "return": {
272
- "type": {
273
- "text": "void"
274
- }
275
- }
276
- }
277
- ],
278
- "attributes": [
279
- {
280
- "name": "checked",
281
- "type": {
282
- "text": "boolean"
283
- },
284
- "default": "false",
285
- "fieldName": "checked"
286
- },
287
- {
288
- "name": "readonly",
289
- "type": {
290
- "text": "boolean"
291
- },
292
- "default": "false",
293
- "fieldName": "readonly"
294
- }
295
- ],
296
- "superclass": {
297
- "name": "Focusable",
298
- "package": "@spectrum-web-components/shared/src/focusable.js"
299
- }
300
- }
301
- ],
302
- "exports": [
303
- {
304
- "kind": "js",
305
- "name": "CheckboxBase",
306
- "declaration": {
307
- "name": "CheckboxBase",
308
- "module": "src/CheckboxBase.js"
309
- }
310
- }
311
- ]
312
- }
313
- ]
314
- }