@spectrum-web-components/vrt-compare 0.49.0-beta.1 → 0.49.0

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 +323 -0
  2. package/package.json +11 -11
@@ -0,0 +1,323 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/OnionSkinner.js",
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "description": "",
12
+ "name": "OnionSkinner",
13
+ "members": [
14
+ {
15
+ "kind": "field",
16
+ "name": "onionLevel",
17
+ "type": {
18
+ "text": "number"
19
+ },
20
+ "privacy": "public",
21
+ "default": "0.5",
22
+ "attribute": "onionLevel"
23
+ },
24
+ {
25
+ "kind": "field",
26
+ "name": "assignments",
27
+ "type": {
28
+ "text": "NodeListOf<HTMLImageElement>"
29
+ },
30
+ "privacy": "private"
31
+ },
32
+ {
33
+ "kind": "field",
34
+ "name": "leftThumbnail",
35
+ "type": {
36
+ "text": "HTMLImageElement | undefined"
37
+ },
38
+ "privacy": "private"
39
+ },
40
+ {
41
+ "kind": "field",
42
+ "name": "rightThumbnail",
43
+ "type": {
44
+ "text": "HTMLImageElement | undefined"
45
+ },
46
+ "privacy": "private"
47
+ },
48
+ {
49
+ "kind": "method",
50
+ "name": "handleOnionInput",
51
+ "privacy": "private",
52
+ "parameters": [
53
+ {
54
+ "name": "event",
55
+ "type": {
56
+ "text": "Event & { target: Slider }"
57
+ }
58
+ }
59
+ ]
60
+ },
61
+ {
62
+ "kind": "method",
63
+ "name": "handleSlotchange",
64
+ "privacy": "private"
65
+ },
66
+ {
67
+ "kind": "method",
68
+ "name": "allLeft",
69
+ "privacy": "private"
70
+ },
71
+ {
72
+ "kind": "method",
73
+ "name": "allRight",
74
+ "privacy": "private"
75
+ }
76
+ ],
77
+ "attributes": [
78
+ {
79
+ "name": "onionLevel",
80
+ "type": {
81
+ "text": "number"
82
+ },
83
+ "default": "0.5",
84
+ "fieldName": "onionLevel"
85
+ }
86
+ ],
87
+ "superclass": {
88
+ "name": "SpectrumElement",
89
+ "package": "@spectrum-web-components/base"
90
+ }
91
+ }
92
+ ],
93
+ "exports": [
94
+ {
95
+ "kind": "js",
96
+ "name": "OnionSkinner",
97
+ "declaration": {
98
+ "name": "OnionSkinner",
99
+ "module": "src/OnionSkinner.js"
100
+ }
101
+ }
102
+ ]
103
+ },
104
+ {
105
+ "kind": "javascript-module",
106
+ "path": "src/VrtCompare.js",
107
+ "declarations": [
108
+ {
109
+ "kind": "class",
110
+ "description": "",
111
+ "name": "VrtCompare",
112
+ "members": [
113
+ {
114
+ "kind": "field",
115
+ "name": "view",
116
+ "type": {
117
+ "text": "string"
118
+ },
119
+ "privacy": "public",
120
+ "default": "'scrubber'",
121
+ "attribute": "view"
122
+ },
123
+ {
124
+ "kind": "field",
125
+ "name": "zoom",
126
+ "type": {
127
+ "text": "number"
128
+ },
129
+ "privacy": "public",
130
+ "default": "1",
131
+ "attribute": "zoom"
132
+ },
133
+ {
134
+ "kind": "field",
135
+ "name": "imagesLoaded",
136
+ "type": {
137
+ "text": "boolean"
138
+ },
139
+ "privacy": "public",
140
+ "default": "false"
141
+ },
142
+ {
143
+ "kind": "field",
144
+ "name": "hasActual",
145
+ "type": {
146
+ "text": "boolean"
147
+ },
148
+ "privacy": "private",
149
+ "readonly": true
150
+ },
151
+ {
152
+ "kind": "field",
153
+ "name": "hasBaseline",
154
+ "type": {
155
+ "text": "boolean"
156
+ },
157
+ "privacy": "private",
158
+ "readonly": true
159
+ },
160
+ {
161
+ "kind": "field",
162
+ "name": "hasDiff",
163
+ "type": {
164
+ "text": "boolean"
165
+ },
166
+ "privacy": "private",
167
+ "readonly": true
168
+ },
169
+ {
170
+ "kind": "field",
171
+ "name": "canCompare",
172
+ "type": {
173
+ "text": "boolean"
174
+ },
175
+ "privacy": "private",
176
+ "readonly": true
177
+ },
178
+ {
179
+ "kind": "method",
180
+ "name": "handleChange",
181
+ "privacy": "private",
182
+ "parameters": [
183
+ {
184
+ "name": "event",
185
+ "type": {
186
+ "text": "Event & { target: ActionGroup }"
187
+ }
188
+ }
189
+ ]
190
+ },
191
+ {
192
+ "kind": "method",
193
+ "name": "handleZoomIn",
194
+ "privacy": "private"
195
+ },
196
+ {
197
+ "kind": "method",
198
+ "name": "handleZoomClear",
199
+ "privacy": "private"
200
+ },
201
+ {
202
+ "kind": "method",
203
+ "name": "handleZoomOut",
204
+ "privacy": "private"
205
+ },
206
+ {
207
+ "kind": "field",
208
+ "name": "error",
209
+ "privacy": "protected",
210
+ "readonly": true
211
+ },
212
+ {
213
+ "kind": "field",
214
+ "name": "actual",
215
+ "privacy": "protected",
216
+ "readonly": true
217
+ },
218
+ {
219
+ "kind": "field",
220
+ "name": "baseline",
221
+ "privacy": "protected",
222
+ "readonly": true
223
+ },
224
+ {
225
+ "kind": "field",
226
+ "name": "diff",
227
+ "privacy": "protected",
228
+ "readonly": true
229
+ },
230
+ {
231
+ "kind": "field",
232
+ "name": "scrubber",
233
+ "privacy": "protected",
234
+ "readonly": true
235
+ },
236
+ {
237
+ "kind": "field",
238
+ "name": "sidebyside",
239
+ "privacy": "protected",
240
+ "readonly": true
241
+ },
242
+ {
243
+ "kind": "field",
244
+ "name": "onion",
245
+ "privacy": "protected",
246
+ "readonly": true
247
+ },
248
+ {
249
+ "kind": "field",
250
+ "name": "renderView",
251
+ "privacy": "protected",
252
+ "readonly": true
253
+ },
254
+ {
255
+ "kind": "field",
256
+ "name": "viewFallback",
257
+ "privacy": "private",
258
+ "readonly": true
259
+ },
260
+ {
261
+ "kind": "field",
262
+ "name": "_loadingImages",
263
+ "type": {
264
+ "text": "boolean"
265
+ },
266
+ "default": "false"
267
+ },
268
+ {
269
+ "kind": "method",
270
+ "name": "prepImages",
271
+ "parameters": [
272
+ {
273
+ "name": "event",
274
+ "type": {
275
+ "text": "Event"
276
+ }
277
+ }
278
+ ]
279
+ }
280
+ ],
281
+ "attributes": [
282
+ {
283
+ "name": "view",
284
+ "type": {
285
+ "text": "string"
286
+ },
287
+ "default": "'scrubber'",
288
+ "fieldName": "view"
289
+ },
290
+ {
291
+ "name": "zoom",
292
+ "type": {
293
+ "text": "number"
294
+ },
295
+ "default": "1",
296
+ "fieldName": "zoom"
297
+ }
298
+ ],
299
+ "mixins": [
300
+ {
301
+ "name": "ObserveSlotPresence",
302
+ "package": "@spectrum-web-components/shared"
303
+ }
304
+ ],
305
+ "superclass": {
306
+ "name": "SpectrumElement",
307
+ "package": "@spectrum-web-components/base"
308
+ }
309
+ }
310
+ ],
311
+ "exports": [
312
+ {
313
+ "kind": "js",
314
+ "name": "VrtCompare",
315
+ "declaration": {
316
+ "name": "VrtCompare",
317
+ "module": "src/VrtCompare.js"
318
+ }
319
+ }
320
+ ]
321
+ }
322
+ ]
323
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spectrum-web-components/vrt-compare",
3
- "version": "0.49.0-beta.1",
3
+ "version": "0.49.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -60,15 +60,15 @@
60
60
  "lit-html"
61
61
  ],
62
62
  "dependencies": {
63
- "@spectrum-web-components/action-bar": "^0.49.0-beta.1",
64
- "@spectrum-web-components/action-button": "^0.49.0-beta.1",
65
- "@spectrum-web-components/action-group": "^0.49.0-beta.1",
66
- "@spectrum-web-components/base": "^0.49.0-beta.1",
67
- "@spectrum-web-components/icons-workflow": "^0.49.0-beta.1",
68
- "@spectrum-web-components/shared": "^0.49.0-beta.1",
69
- "@spectrum-web-components/split-view": "^0.49.0-beta.1",
70
- "@spectrum-web-components/styles": "^0.49.0-beta.1",
71
- "@spectrum-web-components/theme": "^0.49.0-beta.1"
63
+ "@spectrum-web-components/action-bar": "^0.49.0",
64
+ "@spectrum-web-components/action-button": "^0.49.0",
65
+ "@spectrum-web-components/action-group": "^0.49.0",
66
+ "@spectrum-web-components/base": "^0.49.0",
67
+ "@spectrum-web-components/icons-workflow": "^0.49.0",
68
+ "@spectrum-web-components/shared": "^0.49.0",
69
+ "@spectrum-web-components/split-view": "^0.49.0",
70
+ "@spectrum-web-components/styles": "^0.49.0",
71
+ "@spectrum-web-components/theme": "^0.49.0"
72
72
  },
73
73
  "types": "./src/index.d.ts",
74
74
  "customElements": "custom-elements.json",
@@ -78,5 +78,5 @@
78
78
  "./vrt-compare.js",
79
79
  "./vrt-compare.ts"
80
80
  ],
81
- "gitHead": "74ee2c5b1276e8e4f768566a1c3c4e263a7eb8b3"
81
+ "gitHead": "088e84caa1e2f723d735b011608ca0a3411e2149"
82
82
  }