@spectrum-web-components/checkbox 0.14.9-react.48 → 0.14.9-react.49

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.
@@ -0,0 +1,306 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-checkbox.ts",
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.ts",
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.ts"
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.ts"
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.ts"
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.ts"
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.ts"
134
+ }
135
+ }
136
+ ],
137
+ "attributes": [
138
+ {
139
+ "name": "indeterminate",
140
+ "type": {
141
+ "text": "boolean"
142
+ },
143
+ "default": "false",
144
+ "fieldName": "indeterminate"
145
+ },
146
+ {
147
+ "name": "invalid",
148
+ "type": {
149
+ "text": "boolean"
150
+ },
151
+ "default": "false",
152
+ "fieldName": "invalid"
153
+ },
154
+ {
155
+ "name": "emphasized",
156
+ "type": {
157
+ "text": "boolean"
158
+ },
159
+ "default": "false",
160
+ "fieldName": "emphasized"
161
+ },
162
+ {
163
+ "name": "checked",
164
+ "type": {
165
+ "text": "boolean"
166
+ },
167
+ "default": "false",
168
+ "fieldName": "checked",
169
+ "inheritedFrom": {
170
+ "name": "CheckboxBase",
171
+ "module": "src/CheckboxBase.ts"
172
+ }
173
+ },
174
+ {
175
+ "name": "readonly",
176
+ "type": {
177
+ "text": "boolean"
178
+ },
179
+ "default": "false",
180
+ "fieldName": "readonly",
181
+ "inheritedFrom": {
182
+ "name": "CheckboxBase",
183
+ "module": "src/CheckboxBase.ts"
184
+ }
185
+ }
186
+ ],
187
+ "mixins": [
188
+ {
189
+ "name": "SizedMixin",
190
+ "package": "@spectrum-web-components/base"
191
+ }
192
+ ],
193
+ "superclass": {
194
+ "name": "CheckboxBase",
195
+ "module": "/src/CheckboxBase.js"
196
+ },
197
+ "tagName": "sp-checkbox",
198
+ "customElement": true
199
+ }
200
+ ],
201
+ "exports": [
202
+ {
203
+ "kind": "js",
204
+ "name": "Checkbox",
205
+ "declaration": {
206
+ "name": "Checkbox",
207
+ "module": "src/Checkbox.ts"
208
+ }
209
+ }
210
+ ]
211
+ },
212
+ {
213
+ "kind": "javascript-module",
214
+ "path": "src/CheckboxBase.ts",
215
+ "declarations": [
216
+ {
217
+ "kind": "class",
218
+ "description": "",
219
+ "name": "CheckboxBase",
220
+ "members": [
221
+ {
222
+ "kind": "field",
223
+ "name": "checked",
224
+ "type": {
225
+ "text": "boolean"
226
+ },
227
+ "privacy": "public",
228
+ "default": "false",
229
+ "attribute": "checked",
230
+ "reflects": true
231
+ },
232
+ {
233
+ "kind": "field",
234
+ "name": "readonly",
235
+ "type": {
236
+ "text": "boolean"
237
+ },
238
+ "privacy": "public",
239
+ "default": "false",
240
+ "attribute": "readonly",
241
+ "reflects": true
242
+ },
243
+ {
244
+ "kind": "field",
245
+ "name": "inputElement",
246
+ "type": {
247
+ "text": "HTMLInputElement"
248
+ },
249
+ "privacy": "protected"
250
+ },
251
+ {
252
+ "kind": "field",
253
+ "name": "focusElement",
254
+ "type": {
255
+ "text": "HTMLElement"
256
+ },
257
+ "privacy": "public"
258
+ },
259
+ {
260
+ "kind": "method",
261
+ "name": "handleChange",
262
+ "privacy": "public",
263
+ "return": {
264
+ "type": {
265
+ "text": "void"
266
+ }
267
+ }
268
+ }
269
+ ],
270
+ "attributes": [
271
+ {
272
+ "name": "checked",
273
+ "type": {
274
+ "text": "boolean"
275
+ },
276
+ "default": "false",
277
+ "fieldName": "checked"
278
+ },
279
+ {
280
+ "name": "readonly",
281
+ "type": {
282
+ "text": "boolean"
283
+ },
284
+ "default": "false",
285
+ "fieldName": "readonly"
286
+ }
287
+ ],
288
+ "superclass": {
289
+ "name": "Focusable",
290
+ "package": "@spectrum-web-components/shared/src/focusable.js"
291
+ }
292
+ }
293
+ ],
294
+ "exports": [
295
+ {
296
+ "kind": "js",
297
+ "name": "CheckboxBase",
298
+ "declaration": {
299
+ "name": "CheckboxBase",
300
+ "module": "src/CheckboxBase.ts"
301
+ }
302
+ }
303
+ ]
304
+ }
305
+ ]
306
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/checkbox",
3
- "version": "0.14.9-react.48+e4fada004",
3
+ "version": "0.14.9-react.49+7959cb8d1",
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.7.5-react.48+e4fada004",
65
- "@spectrum-web-components/icon": "^0.12.8-react.48+e4fada004",
66
- "@spectrum-web-components/icons-ui": "^0.9.8-react.48+e4fada004",
67
- "@spectrum-web-components/shared": "^0.15.6-react.48+e4fada004"
64
+ "@spectrum-web-components/base": "^0.7.5-react.49+7959cb8d1",
65
+ "@spectrum-web-components/icon": "^0.12.8-react.49+7959cb8d1",
66
+ "@spectrum-web-components/icons-ui": "^0.9.8-react.49+7959cb8d1",
67
+ "@spectrum-web-components/shared": "^0.15.6-react.49+7959cb8d1"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@spectrum-css/checkbox": "^5.0.8"
@@ -75,5 +75,5 @@
75
75
  "./sp-*.js",
76
76
  "./**/*.dev.js"
77
77
  ],
78
- "gitHead": "e4fada0040dcaf1e1267f2159f366ec708cb2d09"
78
+ "gitHead": "7959cb8d1df072fc473ec1687b2a7328550b96f7"
79
79
  }