@spectrum-web-components/story-decorator 0.7.12-react.48 → 0.7.12-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.
Files changed (2) hide show
  1. package/custom-elements.json +374 -0
  2. package/package.json +10 -10
@@ -0,0 +1,374 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "sp-story-decorator.ts",
8
+ "declarations": [],
9
+ "exports": [
10
+ {
11
+ "kind": "custom-element-definition",
12
+ "name": "sp-story-decorator",
13
+ "declaration": {
14
+ "name": "StoryDecorator",
15
+ "module": "/src/StoryDecorator.js"
16
+ }
17
+ }
18
+ ]
19
+ },
20
+ {
21
+ "kind": "javascript-module",
22
+ "path": "src/StoryDecorator.ts",
23
+ "declarations": [
24
+ {
25
+ "kind": "variable",
26
+ "name": "dir",
27
+ "type": {
28
+ "text": "'ltr' | 'rtl'"
29
+ }
30
+ },
31
+ {
32
+ "kind": "variable",
33
+ "name": "theme",
34
+ "type": {
35
+ "text": "ThemeVariant"
36
+ }
37
+ },
38
+ {
39
+ "kind": "variable",
40
+ "name": "color",
41
+ "type": {
42
+ "text": "Color"
43
+ }
44
+ },
45
+ {
46
+ "kind": "variable",
47
+ "name": "scale",
48
+ "type": {
49
+ "text": "Scale"
50
+ }
51
+ },
52
+ {
53
+ "kind": "variable",
54
+ "name": "reduceMotion"
55
+ },
56
+ {
57
+ "kind": "class",
58
+ "description": "",
59
+ "name": "StoryDecorator",
60
+ "members": [
61
+ {
62
+ "kind": "field",
63
+ "name": "theme",
64
+ "type": {
65
+ "text": "ThemeVariant"
66
+ },
67
+ "privacy": "public",
68
+ "attribute": "theme"
69
+ },
70
+ {
71
+ "kind": "field",
72
+ "name": "color",
73
+ "type": {
74
+ "text": "Color"
75
+ },
76
+ "privacy": "public",
77
+ "attribute": "color"
78
+ },
79
+ {
80
+ "kind": "field",
81
+ "name": "scale",
82
+ "type": {
83
+ "text": "Scale"
84
+ },
85
+ "privacy": "public",
86
+ "attribute": "scale"
87
+ },
88
+ {
89
+ "kind": "field",
90
+ "name": "direction",
91
+ "type": {
92
+ "text": "'ltr' | 'rtl'"
93
+ },
94
+ "privacy": "public",
95
+ "attribute": "dir",
96
+ "reflects": true
97
+ },
98
+ {
99
+ "kind": "field",
100
+ "name": "reduceMotion",
101
+ "privacy": "public",
102
+ "attribute": "reduce-motion",
103
+ "reflects": true
104
+ },
105
+ {
106
+ "kind": "field",
107
+ "name": "screenshot",
108
+ "type": {
109
+ "text": "boolean"
110
+ },
111
+ "privacy": "public",
112
+ "default": "false",
113
+ "attribute": "screenshot",
114
+ "reflects": true
115
+ },
116
+ {
117
+ "kind": "field",
118
+ "name": "themeRoot",
119
+ "type": {
120
+ "text": "Theme"
121
+ },
122
+ "privacy": "private"
123
+ },
124
+ {
125
+ "kind": "field",
126
+ "name": "ready",
127
+ "type": {
128
+ "text": "boolean"
129
+ },
130
+ "privacy": "public",
131
+ "default": "false"
132
+ },
133
+ {
134
+ "kind": "method",
135
+ "name": "startManagingContentDirection",
136
+ "privacy": "public",
137
+ "return": {
138
+ "type": {
139
+ "text": "Promise<void>"
140
+ }
141
+ },
142
+ "parameters": [
143
+ {
144
+ "name": "el",
145
+ "type": {
146
+ "text": "HTMLElement"
147
+ }
148
+ }
149
+ ]
150
+ },
151
+ {
152
+ "kind": "method",
153
+ "name": "stopManagingContentDirection",
154
+ "privacy": "public",
155
+ "return": {
156
+ "type": {
157
+ "text": "Promise<void>"
158
+ }
159
+ },
160
+ "parameters": [
161
+ {
162
+ "name": "el",
163
+ "type": {
164
+ "text": "HTMLElement"
165
+ }
166
+ }
167
+ ]
168
+ },
169
+ {
170
+ "kind": "method",
171
+ "name": "updateTheme",
172
+ "privacy": "private",
173
+ "return": {
174
+ "type": {
175
+ "text": "void"
176
+ }
177
+ },
178
+ "parameters": [
179
+ {
180
+ "name": "{ target }",
181
+ "type": {
182
+ "text": "Event & { target: Picker | Switch }"
183
+ }
184
+ }
185
+ ]
186
+ },
187
+ {
188
+ "kind": "method",
189
+ "name": "handleKeydown",
190
+ "privacy": "protected",
191
+ "return": {
192
+ "type": {
193
+ "text": "void"
194
+ }
195
+ },
196
+ "parameters": [
197
+ {
198
+ "name": "event",
199
+ "type": {
200
+ "text": "KeyboardEvent"
201
+ }
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ "kind": "method",
207
+ "name": "checkReady",
208
+ "privacy": "protected",
209
+ "return": {
210
+ "type": {
211
+ "text": "Promise<void>"
212
+ }
213
+ },
214
+ "parameters": [
215
+ {
216
+ "name": "{\n target,\n }",
217
+ "type": {
218
+ "text": "Event & { target: HTMLSlotElement }"
219
+ }
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "kind": "field",
225
+ "name": "manageTheme",
226
+ "type": {
227
+ "text": "TemplateResult"
228
+ },
229
+ "privacy": "private"
230
+ },
231
+ {
232
+ "kind": "field",
233
+ "name": "themeControl",
234
+ "type": {
235
+ "text": "TemplateResult"
236
+ },
237
+ "privacy": "private"
238
+ },
239
+ {
240
+ "kind": "field",
241
+ "name": "colorControl",
242
+ "type": {
243
+ "text": "TemplateResult"
244
+ },
245
+ "privacy": "private"
246
+ },
247
+ {
248
+ "kind": "field",
249
+ "name": "scaleControl",
250
+ "type": {
251
+ "text": "TemplateResult"
252
+ },
253
+ "privacy": "private"
254
+ },
255
+ {
256
+ "kind": "field",
257
+ "name": "dirControl",
258
+ "type": {
259
+ "text": "TemplateResult"
260
+ },
261
+ "privacy": "private"
262
+ },
263
+ {
264
+ "kind": "field",
265
+ "name": "reduceMotionControl",
266
+ "type": {
267
+ "text": "TemplateResult"
268
+ },
269
+ "privacy": "private"
270
+ }
271
+ ],
272
+ "attributes": [
273
+ {
274
+ "name": "theme",
275
+ "type": {
276
+ "text": "ThemeVariant"
277
+ },
278
+ "fieldName": "theme"
279
+ },
280
+ {
281
+ "name": "color",
282
+ "type": {
283
+ "text": "Color"
284
+ },
285
+ "fieldName": "color"
286
+ },
287
+ {
288
+ "name": "scale",
289
+ "type": {
290
+ "text": "Scale"
291
+ },
292
+ "fieldName": "scale"
293
+ },
294
+ {
295
+ "name": "dir",
296
+ "type": {
297
+ "text": "'ltr' | 'rtl'"
298
+ },
299
+ "fieldName": "direction"
300
+ },
301
+ {
302
+ "name": "reduce-motion",
303
+ "fieldName": "reduceMotion"
304
+ },
305
+ {
306
+ "name": "screenshot",
307
+ "type": {
308
+ "text": "boolean"
309
+ },
310
+ "default": "false",
311
+ "fieldName": "screenshot"
312
+ }
313
+ ],
314
+ "superclass": {
315
+ "name": "SpectrumElement",
316
+ "package": "@spectrum-web-components/base"
317
+ },
318
+ "tagName": "sp-story-decorator",
319
+ "customElement": true
320
+ }
321
+ ],
322
+ "exports": [
323
+ {
324
+ "kind": "js",
325
+ "name": "dir",
326
+ "declaration": {
327
+ "name": "dir",
328
+ "module": "src/StoryDecorator.ts"
329
+ }
330
+ },
331
+ {
332
+ "kind": "js",
333
+ "name": "theme",
334
+ "declaration": {
335
+ "name": "theme",
336
+ "module": "src/StoryDecorator.ts"
337
+ }
338
+ },
339
+ {
340
+ "kind": "js",
341
+ "name": "color",
342
+ "declaration": {
343
+ "name": "color",
344
+ "module": "src/StoryDecorator.ts"
345
+ }
346
+ },
347
+ {
348
+ "kind": "js",
349
+ "name": "scale",
350
+ "declaration": {
351
+ "name": "scale",
352
+ "module": "src/StoryDecorator.ts"
353
+ }
354
+ },
355
+ {
356
+ "kind": "js",
357
+ "name": "reduceMotion",
358
+ "declaration": {
359
+ "name": "reduceMotion",
360
+ "module": "src/StoryDecorator.ts"
361
+ }
362
+ },
363
+ {
364
+ "kind": "js",
365
+ "name": "StoryDecorator",
366
+ "declaration": {
367
+ "name": "StoryDecorator",
368
+ "module": "src/StoryDecorator.ts"
369
+ }
370
+ }
371
+ ]
372
+ }
373
+ ]
374
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/story-decorator",
3
- "version": "0.7.12-react.48+e4fada004",
3
+ "version": "0.7.12-react.49+7959cb8d1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -65,14 +65,14 @@
65
65
  "lit-html"
66
66
  ],
67
67
  "dependencies": {
68
- "@spectrum-web-components/base": "^0.7.5-react.48+e4fada004",
69
- "@spectrum-web-components/field-label": "^0.10.6-react.48+e4fada004",
70
- "@spectrum-web-components/menu": "^0.16.12-react.48+e4fada004",
71
- "@spectrum-web-components/overlay": "^0.18.12-react.48+e4fada004",
72
- "@spectrum-web-components/picker": "^0.13.12-react.48+e4fada004",
73
- "@spectrum-web-components/reactive-controllers": "^0.3.6-react.78+e4fada004",
74
- "@spectrum-web-components/switch": "^0.11.8-react.48+e4fada004",
75
- "@spectrum-web-components/theme": "^0.14.11-react.48+e4fada004"
68
+ "@spectrum-web-components/base": "^0.7.5-react.49+7959cb8d1",
69
+ "@spectrum-web-components/field-label": "^0.10.6-react.49+7959cb8d1",
70
+ "@spectrum-web-components/menu": "^0.16.12-react.49+7959cb8d1",
71
+ "@spectrum-web-components/overlay": "^0.18.12-react.49+7959cb8d1",
72
+ "@spectrum-web-components/picker": "^0.13.12-react.49+7959cb8d1",
73
+ "@spectrum-web-components/reactive-controllers": "^0.3.6-react.79+7959cb8d1",
74
+ "@spectrum-web-components/switch": "^0.11.8-react.49+7959cb8d1",
75
+ "@spectrum-web-components/theme": "^0.14.11-react.49+7959cb8d1"
76
76
  },
77
77
  "types": "./src/index.d.ts",
78
78
  "customElements": "custom-elements.json",
@@ -81,5 +81,5 @@
81
81
  "./**/*.dev.js",
82
82
  "./sp-*.ts"
83
83
  ],
84
- "gitHead": "e4fada0040dcaf1e1267f2159f366ec708cb2d09"
84
+ "gitHead": "7959cb8d1df072fc473ec1687b2a7328550b96f7"
85
85
  }