@spectrum-web-components/checkbox 0.31.1-overlay.29 → 0.31.1-react.2

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