creevey 0.7.37 → 0.8.0-beta.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.
- package/CHANGELOG.md +30 -5
- package/README.md +1 -1
- package/docs/config.md +37 -5
- package/docs/grid.md +2 -1
- package/lib/cjs/client/addon/Manager.js +3 -1
- package/lib/cjs/client/addon/utils.js +1 -41
- package/lib/cjs/client/addon/withCreevey.js +11 -13
- package/lib/cjs/client/web/1.js +2 -2
- package/lib/cjs/client/web/2.js +1 -1
- package/lib/cjs/client/web/main.js +6 -6
- package/lib/cjs/index.js +14 -1
- package/lib/cjs/server/config.js +3 -0
- package/lib/cjs/server/extract.js +7 -3
- package/lib/cjs/server/loaders/babel/register.js +2 -1
- package/lib/cjs/server/loaders/webpack/compile.js +3 -19
- package/lib/cjs/server/loaders/webpack/creevey-loader.js +1 -1
- package/lib/cjs/server/master/master.js +3 -5
- package/lib/cjs/server/selenium/browser.js +25 -11
- package/lib/cjs/server/selenium/selenoid.js +1 -1
- package/lib/cjs/server/stories.js +20 -226
- package/lib/cjs/server/storybook/entry.js +5 -4
- package/lib/cjs/server/storybook/helpers.js +40 -4
- package/lib/cjs/server/storybook/nodejs-provider.js +220 -0
- package/lib/cjs/server/utils.js +25 -2
- package/lib/cjs/server/worker/helpers.js +8 -9
- package/lib/cjs/server/worker/worker.js +1 -2
- package/lib/cjs/shared.js +35 -0
- package/lib/esm/client/addon/Manager.js +3 -2
- package/lib/esm/client/addon/utils.js +1 -33
- package/lib/esm/client/addon/withCreevey.js +1 -1
- package/lib/esm/index.js +3 -1
- package/lib/esm/server/config.js +4 -1
- package/lib/esm/server/extract.js +7 -3
- package/lib/esm/server/loaders/babel/register.js +3 -2
- package/lib/esm/server/loaders/webpack/compile.js +4 -20
- package/lib/esm/server/loaders/webpack/creevey-loader.js +1 -1
- package/lib/esm/server/master/master.js +3 -5
- package/lib/esm/server/selenium/browser.js +22 -7
- package/lib/esm/server/selenium/selenoid.js +1 -1
- package/lib/esm/server/stories.js +23 -219
- package/lib/esm/server/storybook/entry.js +4 -4
- package/lib/esm/server/storybook/helpers.js +36 -4
- package/lib/esm/server/storybook/nodejs-provider.js +200 -0
- package/lib/esm/server/utils.js +23 -1
- package/lib/esm/server/worker/helpers.js +8 -9
- package/lib/esm/server/worker/worker.js +1 -2
- package/lib/esm/shared.js +22 -0
- package/lib/types/cli.d.ts +1 -1
- package/lib/types/client/addon/Manager.d.ts +37 -37
- package/lib/types/client/addon/components/Addon.d.ts +8 -8
- package/lib/types/client/addon/components/Icons.d.ts +7 -7
- package/lib/types/client/addon/components/Panel.d.ts +9 -9
- package/lib/types/client/addon/components/TestSelect.d.ts +9 -9
- package/lib/types/client/addon/components/Tools.d.ts +6 -6
- package/lib/types/client/addon/decorator.d.ts +1 -1
- package/lib/types/client/addon/preset.d.ts +22 -22
- package/lib/types/client/addon/register.d.ts +3 -3
- package/lib/types/client/addon/utils.d.ts +2 -6
- package/lib/types/client/addon/withCreevey.d.ts +13 -46
- package/lib/types/client/shared/components/ImagesView/BlendView.d.ts +3 -3
- package/lib/types/client/shared/components/ImagesView/ImagesView.d.ts +25 -25
- package/lib/types/client/shared/components/ImagesView/SideBySideView.d.ts +3 -3
- package/lib/types/client/shared/components/ImagesView/SlideView.d.ts +3 -3
- package/lib/types/client/shared/components/ImagesView/SwapView.d.ts +3 -3
- package/lib/types/client/shared/components/ImagesView/index.d.ts +5 -5
- package/lib/types/client/shared/components/PageFooter/PageFooter.d.ts +9 -9
- package/lib/types/client/shared/components/PageFooter/Paging.d.ts +8 -8
- package/lib/types/client/shared/components/PageHeader/ImagePreview.d.ts +12 -12
- package/lib/types/client/shared/components/PageHeader/PageHeader.d.ts +17 -17
- package/lib/types/client/shared/components/ResultsPage.d.ts +18 -18
- package/lib/types/client/shared/creeveyClientApi.d.ts +9 -9
- package/lib/types/client/shared/helpers.d.ts +46 -46
- package/lib/types/client/shared/viewMode.d.ts +4 -4
- package/lib/types/client/web/CreeveyApp.d.ts +12 -12
- package/lib/types/client/web/CreeveyContext.d.ts +11 -11
- package/lib/types/client/web/CreeveyLoader.d.ts +3 -3
- package/lib/types/client/web/CreeveyView/SideBar/Checkbox.d.ts +19 -19
- package/lib/types/client/web/CreeveyView/SideBar/Search.d.ts +6 -6
- package/lib/types/client/web/CreeveyView/SideBar/SideBar.d.ts +14 -14
- package/lib/types/client/web/CreeveyView/SideBar/SideBarHeader.d.ts +13 -13
- package/lib/types/client/web/CreeveyView/SideBar/SuiteLink.d.ts +33 -33
- package/lib/types/client/web/CreeveyView/SideBar/TestLink.d.ts +8 -8
- package/lib/types/client/web/CreeveyView/SideBar/TestStatusIcon.d.ts +10 -10
- package/lib/types/client/web/CreeveyView/SideBar/TestsStatus.d.ts +9 -9
- package/lib/types/client/web/CreeveyView/SideBar/Toggle.d.ts +6 -6
- package/lib/types/client/web/CreeveyView/SideBar/index.d.ts +1 -1
- package/lib/types/client/web/KeyboardEventsContext.d.ts +13 -13
- package/lib/types/client/web/index.d.ts +4 -4
- package/lib/types/creevey.d.ts +1 -1
- package/lib/types/server/config.d.ts +4 -4
- package/lib/types/server/docker.d.ts +7 -7
- package/lib/types/server/extract.d.ts +2 -2
- package/lib/types/server/index.d.ts +2 -2
- package/lib/types/server/loaders/babel/creevey-plugin.d.ts +1 -1
- package/lib/types/server/loaders/babel/helpers.d.ts +19 -19
- package/lib/types/server/loaders/babel/register.d.ts +5 -5
- package/lib/types/server/loaders/hooks/mdx.d.ts +1 -1
- package/lib/types/server/loaders/hooks/svelte.d.ts +1 -1
- package/lib/types/server/loaders/webpack/compile.d.ts +2 -2
- package/lib/types/server/loaders/webpack/creevey-loader.d.ts +2 -2
- package/lib/types/server/loaders/webpack/dummy-hmr.d.ts +10 -10
- package/lib/types/server/loaders/webpack/mdx-loader.d.ts +6 -6
- package/lib/types/server/loaders/webpack/start.d.ts +1 -1
- package/lib/types/server/logger.d.ts +6 -6
- package/lib/types/server/master/api.d.ts +7 -7
- package/lib/types/server/master/index.d.ts +3 -3
- package/lib/types/server/master/master.d.ts +6 -6
- package/lib/types/server/master/pool.d.ts +30 -30
- package/lib/types/server/master/runner.d.ts +26 -26
- package/lib/types/server/master/server.d.ts +2 -2
- package/lib/types/server/messages.d.ts +18 -18
- package/lib/types/server/selenium/browser.d.ts +14 -14
- package/lib/types/server/selenium/index.d.ts +2 -2
- package/lib/types/server/selenium/selenoid.d.ts +3 -3
- package/lib/types/server/stories.d.ts +8 -13
- package/lib/types/server/storybook/entry.d.ts +18 -14
- package/lib/types/server/storybook/helpers.d.ts +24 -22
- package/lib/types/server/storybook/nodejs-provider.d.ts +5 -0
- package/lib/types/server/update.d.ts +2 -2
- package/lib/types/server/utils.d.ts +19 -18
- package/lib/types/server/worker/chai-image.d.ts +6 -6
- package/lib/types/server/worker/helpers.d.ts +7 -7
- package/lib/types/server/worker/index.d.ts +1 -1
- package/lib/types/server/worker/reporter.d.ts +8 -8
- package/lib/types/server/worker/worker.d.ts +4 -4
- package/lib/types/shared.d.ts +4 -0
- package/lib/types/types.d.ts +459 -431
- package/package.json +53 -48
- package/types/mocha.d.ts +1 -0
- package/storybook-static/stories.json +0 -530
@@ -1,530 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"v": 2,
|
3
|
-
"globalParameters": {},
|
4
|
-
"kindParameters": {
|
5
|
-
"BlendView": {
|
6
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/BlendView.stories.tsx",
|
7
|
-
"framework": "react"
|
8
|
-
},
|
9
|
-
"Docs/ImagesViews": {
|
10
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/ImagesViews.stories.mdx",
|
11
|
-
"framework": "react"
|
12
|
-
},
|
13
|
-
"ImagesViews": {
|
14
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/ImagesViews.stories.tsx",
|
15
|
-
"framework": "react"
|
16
|
-
},
|
17
|
-
"PageHeader": {
|
18
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/PageHeader.stories.tsx",
|
19
|
-
"framework": "react"
|
20
|
-
},
|
21
|
-
"SideBar": {
|
22
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/SideBar.stories.tsx",
|
23
|
-
"framework": "react"
|
24
|
-
},
|
25
|
-
"SideBySideView": {
|
26
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/SideBySideView.stories.tsx",
|
27
|
-
"framework": "react"
|
28
|
-
},
|
29
|
-
"SlideView": {
|
30
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/SlideView.stories.tsx",
|
31
|
-
"framework": "react"
|
32
|
-
},
|
33
|
-
"SwapView": {
|
34
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/SwapView.stories.tsx",
|
35
|
-
"framework": "react"
|
36
|
-
},
|
37
|
-
"TestViews": {
|
38
|
-
"fileName": "/home/ki/Projects/creevey/creevey/stories/TestViews.stories.tsx",
|
39
|
-
"framework": "react"
|
40
|
-
}
|
41
|
-
},
|
42
|
-
"stories": {
|
43
|
-
"blendview--100-x-100-vs-100-x-100": {
|
44
|
-
"id": "blendview--100-x-100-vs-100-x-100",
|
45
|
-
"name": "100 X 100 Vs 100 X 100",
|
46
|
-
"kind": "BlendView",
|
47
|
-
"story": "100 X 100 Vs 100 X 100",
|
48
|
-
"parameters": {
|
49
|
-
"__id": "blendview--100-x-100-vs-100-x-100"
|
50
|
-
}
|
51
|
-
},
|
52
|
-
"blendview--100-x-100-vs-2000-x-100": {
|
53
|
-
"id": "blendview--100-x-100-vs-2000-x-100",
|
54
|
-
"name": "100 X 100 Vs 2000 X 100",
|
55
|
-
"kind": "BlendView",
|
56
|
-
"story": "100 X 100 Vs 2000 X 100",
|
57
|
-
"parameters": {
|
58
|
-
"__id": "blendview--100-x-100-vs-2000-x-100"
|
59
|
-
}
|
60
|
-
},
|
61
|
-
"blendview--100-x-100-vs-100-x-2000": {
|
62
|
-
"id": "blendview--100-x-100-vs-100-x-2000",
|
63
|
-
"name": "100 X 100 Vs 100 X 2000",
|
64
|
-
"kind": "BlendView",
|
65
|
-
"story": "100 X 100 Vs 100 X 2000",
|
66
|
-
"parameters": {
|
67
|
-
"__id": "blendview--100-x-100-vs-100-x-2000"
|
68
|
-
}
|
69
|
-
},
|
70
|
-
"blendview--100-x-100-vs-2000-x-2000": {
|
71
|
-
"id": "blendview--100-x-100-vs-2000-x-2000",
|
72
|
-
"name": "100 X 100 Vs 2000 X 2000",
|
73
|
-
"kind": "BlendView",
|
74
|
-
"story": "100 X 100 Vs 2000 X 2000",
|
75
|
-
"parameters": {
|
76
|
-
"__id": "blendview--100-x-100-vs-2000-x-2000"
|
77
|
-
}
|
78
|
-
},
|
79
|
-
"blendview--2000-x-100-vs-100-x-2000": {
|
80
|
-
"id": "blendview--2000-x-100-vs-100-x-2000",
|
81
|
-
"name": "2000 X 100 Vs 100 X 2000",
|
82
|
-
"kind": "BlendView",
|
83
|
-
"story": "2000 X 100 Vs 100 X 2000",
|
84
|
-
"parameters": {
|
85
|
-
"__id": "blendview--2000-x-100-vs-100-x-2000"
|
86
|
-
}
|
87
|
-
},
|
88
|
-
"blendview--2000-x-100-vs-2000-x-2000": {
|
89
|
-
"id": "blendview--2000-x-100-vs-2000-x-2000",
|
90
|
-
"name": "2000 X 100 Vs 2000 X 2000",
|
91
|
-
"kind": "BlendView",
|
92
|
-
"story": "2000 X 100 Vs 2000 X 2000",
|
93
|
-
"parameters": {
|
94
|
-
"__id": "blendview--2000-x-100-vs-2000-x-2000"
|
95
|
-
}
|
96
|
-
},
|
97
|
-
"blendview--100-x-2000-vs-2000-x-2000": {
|
98
|
-
"id": "blendview--100-x-2000-vs-2000-x-2000",
|
99
|
-
"name": "100 X 2000 Vs 2000 X 2000",
|
100
|
-
"kind": "BlendView",
|
101
|
-
"story": "100 X 2000 Vs 2000 X 2000",
|
102
|
-
"parameters": {
|
103
|
-
"__id": "blendview--100-x-2000-vs-2000-x-2000"
|
104
|
-
}
|
105
|
-
},
|
106
|
-
"blendview--2000-x-2000-vs-2000-x-2000": {
|
107
|
-
"id": "blendview--2000-x-2000-vs-2000-x-2000",
|
108
|
-
"name": "2000 X 2000 Vs 2000 X 2000",
|
109
|
-
"kind": "BlendView",
|
110
|
-
"story": "2000 X 2000 Vs 2000 X 2000",
|
111
|
-
"parameters": {
|
112
|
-
"__id": "blendview--2000-x-2000-vs-2000-x-2000"
|
113
|
-
}
|
114
|
-
},
|
115
|
-
"docs-imagesviews--side-by-side": {
|
116
|
-
"id": "docs-imagesviews--side-by-side",
|
117
|
-
"name": "SideBySide",
|
118
|
-
"kind": "Docs/ImagesViews",
|
119
|
-
"story": "SideBySide",
|
120
|
-
"parameters": {
|
121
|
-
"__id": "docs-imagesviews--side-by-side"
|
122
|
-
}
|
123
|
-
},
|
124
|
-
"docs-imagesviews--swap": {
|
125
|
-
"id": "docs-imagesviews--swap",
|
126
|
-
"name": "Swap",
|
127
|
-
"kind": "Docs/ImagesViews",
|
128
|
-
"story": "Swap",
|
129
|
-
"parameters": {
|
130
|
-
"__id": "docs-imagesviews--swap"
|
131
|
-
}
|
132
|
-
},
|
133
|
-
"docs-imagesviews--slide": {
|
134
|
-
"id": "docs-imagesviews--slide",
|
135
|
-
"name": "Slide",
|
136
|
-
"kind": "Docs/ImagesViews",
|
137
|
-
"story": "Slide",
|
138
|
-
"parameters": {
|
139
|
-
"__id": "docs-imagesviews--slide"
|
140
|
-
}
|
141
|
-
},
|
142
|
-
"docs-imagesviews--blend": {
|
143
|
-
"id": "docs-imagesviews--blend",
|
144
|
-
"name": "Blend",
|
145
|
-
"kind": "Docs/ImagesViews",
|
146
|
-
"story": "Blend",
|
147
|
-
"parameters": {
|
148
|
-
"__id": "docs-imagesviews--blend"
|
149
|
-
}
|
150
|
-
},
|
151
|
-
"imagesviews--side-by-side": {
|
152
|
-
"id": "imagesviews--side-by-side",
|
153
|
-
"name": "Side By Side",
|
154
|
-
"kind": "ImagesViews",
|
155
|
-
"story": "Side By Side",
|
156
|
-
"parameters": {
|
157
|
-
"__id": "imagesviews--side-by-side"
|
158
|
-
}
|
159
|
-
},
|
160
|
-
"imagesviews--swap": {
|
161
|
-
"id": "imagesviews--swap",
|
162
|
-
"name": "Swap",
|
163
|
-
"kind": "ImagesViews",
|
164
|
-
"story": "Swap",
|
165
|
-
"parameters": {
|
166
|
-
"__id": "imagesviews--swap"
|
167
|
-
}
|
168
|
-
},
|
169
|
-
"imagesviews--slide": {
|
170
|
-
"id": "imagesviews--slide",
|
171
|
-
"name": "Slide",
|
172
|
-
"kind": "ImagesViews",
|
173
|
-
"story": "Slide",
|
174
|
-
"parameters": {
|
175
|
-
"__id": "imagesviews--slide"
|
176
|
-
}
|
177
|
-
},
|
178
|
-
"imagesviews--blend": {
|
179
|
-
"id": "imagesviews--blend",
|
180
|
-
"name": "Blend",
|
181
|
-
"kind": "ImagesViews",
|
182
|
-
"story": "Blend",
|
183
|
-
"parameters": {
|
184
|
-
"__id": "imagesviews--blend"
|
185
|
-
}
|
186
|
-
},
|
187
|
-
"pageheader--simple": {
|
188
|
-
"id": "pageheader--simple",
|
189
|
-
"name": "Simple",
|
190
|
-
"kind": "PageHeader",
|
191
|
-
"story": "Simple",
|
192
|
-
"parameters": {
|
193
|
-
"__id": "pageheader--simple"
|
194
|
-
}
|
195
|
-
},
|
196
|
-
"pageheader--with-error": {
|
197
|
-
"id": "pageheader--with-error",
|
198
|
-
"name": "With Error",
|
199
|
-
"kind": "PageHeader",
|
200
|
-
"story": "With Error",
|
201
|
-
"parameters": {
|
202
|
-
"__id": "pageheader--with-error"
|
203
|
-
}
|
204
|
-
},
|
205
|
-
"pageheader--with-image-preview": {
|
206
|
-
"id": "pageheader--with-image-preview",
|
207
|
-
"name": "With Image Preview",
|
208
|
-
"kind": "PageHeader",
|
209
|
-
"story": "With Image Preview",
|
210
|
-
"parameters": {
|
211
|
-
"__id": "pageheader--with-image-preview"
|
212
|
-
}
|
213
|
-
},
|
214
|
-
"pageheader--full": {
|
215
|
-
"id": "pageheader--full",
|
216
|
-
"name": "Full",
|
217
|
-
"kind": "PageHeader",
|
218
|
-
"story": "Full",
|
219
|
-
"parameters": {
|
220
|
-
"__id": "pageheader--full"
|
221
|
-
}
|
222
|
-
},
|
223
|
-
"sidebar--header-stopped": {
|
224
|
-
"id": "sidebar--header-stopped",
|
225
|
-
"name": "Header Stopped",
|
226
|
-
"kind": "SideBar",
|
227
|
-
"story": "Header Stopped",
|
228
|
-
"parameters": {
|
229
|
-
"__id": "sidebar--header-stopped"
|
230
|
-
}
|
231
|
-
},
|
232
|
-
"sidebar--header-running": {
|
233
|
-
"id": "sidebar--header-running",
|
234
|
-
"name": "Header Running",
|
235
|
-
"kind": "SideBar",
|
236
|
-
"story": "Header Running",
|
237
|
-
"parameters": {
|
238
|
-
"__id": "sidebar--header-running"
|
239
|
-
}
|
240
|
-
},
|
241
|
-
"sidebar--header-disabled": {
|
242
|
-
"id": "sidebar--header-disabled",
|
243
|
-
"name": "Header Disabled",
|
244
|
-
"kind": "SideBar",
|
245
|
-
"story": "Header Disabled",
|
246
|
-
"parameters": {
|
247
|
-
"__id": "sidebar--header-disabled"
|
248
|
-
}
|
249
|
-
},
|
250
|
-
"sidebar--simple-side-bar": {
|
251
|
-
"id": "sidebar--simple-side-bar",
|
252
|
-
"name": "Simple Side Bar",
|
253
|
-
"kind": "SideBar",
|
254
|
-
"story": "Simple Side Bar",
|
255
|
-
"parameters": {
|
256
|
-
"__id": "sidebar--simple-side-bar"
|
257
|
-
}
|
258
|
-
},
|
259
|
-
"sidebar--status-side-bar": {
|
260
|
-
"id": "sidebar--status-side-bar",
|
261
|
-
"name": "Status Side Bar",
|
262
|
-
"kind": "SideBar",
|
263
|
-
"story": "Status Side Bar",
|
264
|
-
"parameters": {
|
265
|
-
"__id": "sidebar--status-side-bar"
|
266
|
-
}
|
267
|
-
},
|
268
|
-
"sidebysideview--100-x-100-vs-100-x-100": {
|
269
|
-
"id": "sidebysideview--100-x-100-vs-100-x-100",
|
270
|
-
"name": "100 X 100 Vs 100 X 100",
|
271
|
-
"kind": "SideBySideView",
|
272
|
-
"story": "100 X 100 Vs 100 X 100",
|
273
|
-
"parameters": {
|
274
|
-
"__id": "sidebysideview--100-x-100-vs-100-x-100"
|
275
|
-
}
|
276
|
-
},
|
277
|
-
"sidebysideview--100-x-100-vs-2000-x-100": {
|
278
|
-
"id": "sidebysideview--100-x-100-vs-2000-x-100",
|
279
|
-
"name": "100 X 100 Vs 2000 X 100",
|
280
|
-
"kind": "SideBySideView",
|
281
|
-
"story": "100 X 100 Vs 2000 X 100",
|
282
|
-
"parameters": {
|
283
|
-
"__id": "sidebysideview--100-x-100-vs-2000-x-100"
|
284
|
-
}
|
285
|
-
},
|
286
|
-
"sidebysideview--100-x-100-vs-100-x-2000": {
|
287
|
-
"id": "sidebysideview--100-x-100-vs-100-x-2000",
|
288
|
-
"name": "100 X 100 Vs 100 X 2000",
|
289
|
-
"kind": "SideBySideView",
|
290
|
-
"story": "100 X 100 Vs 100 X 2000",
|
291
|
-
"parameters": {
|
292
|
-
"__id": "sidebysideview--100-x-100-vs-100-x-2000"
|
293
|
-
}
|
294
|
-
},
|
295
|
-
"sidebysideview--100-x-100-vs-2000-x-2000": {
|
296
|
-
"id": "sidebysideview--100-x-100-vs-2000-x-2000",
|
297
|
-
"name": "100 X 100 Vs 2000 X 2000",
|
298
|
-
"kind": "SideBySideView",
|
299
|
-
"story": "100 X 100 Vs 2000 X 2000",
|
300
|
-
"parameters": {
|
301
|
-
"__id": "sidebysideview--100-x-100-vs-2000-x-2000"
|
302
|
-
}
|
303
|
-
},
|
304
|
-
"sidebysideview--2000-x-100-vs-100-x-2000": {
|
305
|
-
"id": "sidebysideview--2000-x-100-vs-100-x-2000",
|
306
|
-
"name": "2000 X 100 Vs 100 X 2000",
|
307
|
-
"kind": "SideBySideView",
|
308
|
-
"story": "2000 X 100 Vs 100 X 2000",
|
309
|
-
"parameters": {
|
310
|
-
"__id": "sidebysideview--2000-x-100-vs-100-x-2000"
|
311
|
-
}
|
312
|
-
},
|
313
|
-
"sidebysideview--2000-x-100-vs-2000-x-2000": {
|
314
|
-
"id": "sidebysideview--2000-x-100-vs-2000-x-2000",
|
315
|
-
"name": "2000 X 100 Vs 2000 X 2000",
|
316
|
-
"kind": "SideBySideView",
|
317
|
-
"story": "2000 X 100 Vs 2000 X 2000",
|
318
|
-
"parameters": {
|
319
|
-
"__id": "sidebysideview--2000-x-100-vs-2000-x-2000"
|
320
|
-
}
|
321
|
-
},
|
322
|
-
"sidebysideview--100-x-2000-vs-2000-x-2000": {
|
323
|
-
"id": "sidebysideview--100-x-2000-vs-2000-x-2000",
|
324
|
-
"name": "100 X 2000 Vs 2000 X 2000",
|
325
|
-
"kind": "SideBySideView",
|
326
|
-
"story": "100 X 2000 Vs 2000 X 2000",
|
327
|
-
"parameters": {
|
328
|
-
"__id": "sidebysideview--100-x-2000-vs-2000-x-2000"
|
329
|
-
}
|
330
|
-
},
|
331
|
-
"sidebysideview--2000-x-2000-vs-2000-x-2000": {
|
332
|
-
"id": "sidebysideview--2000-x-2000-vs-2000-x-2000",
|
333
|
-
"name": "2000 X 2000 Vs 2000 X 2000",
|
334
|
-
"kind": "SideBySideView",
|
335
|
-
"story": "2000 X 2000 Vs 2000 X 2000",
|
336
|
-
"parameters": {
|
337
|
-
"__id": "sidebysideview--2000-x-2000-vs-2000-x-2000"
|
338
|
-
}
|
339
|
-
},
|
340
|
-
"slideview--100-x-100-vs-100-x-100": {
|
341
|
-
"id": "slideview--100-x-100-vs-100-x-100",
|
342
|
-
"name": "100 X 100 Vs 100 X 100",
|
343
|
-
"kind": "SlideView",
|
344
|
-
"story": "100 X 100 Vs 100 X 100",
|
345
|
-
"parameters": {
|
346
|
-
"__id": "slideview--100-x-100-vs-100-x-100"
|
347
|
-
}
|
348
|
-
},
|
349
|
-
"slideview--100-x-100-vs-2000-x-100": {
|
350
|
-
"id": "slideview--100-x-100-vs-2000-x-100",
|
351
|
-
"name": "100 X 100 Vs 2000 X 100",
|
352
|
-
"kind": "SlideView",
|
353
|
-
"story": "100 X 100 Vs 2000 X 100",
|
354
|
-
"parameters": {
|
355
|
-
"__id": "slideview--100-x-100-vs-2000-x-100"
|
356
|
-
}
|
357
|
-
},
|
358
|
-
"slideview--100-x-100-vs-100-x-2000": {
|
359
|
-
"id": "slideview--100-x-100-vs-100-x-2000",
|
360
|
-
"name": "100 X 100 Vs 100 X 2000",
|
361
|
-
"kind": "SlideView",
|
362
|
-
"story": "100 X 100 Vs 100 X 2000",
|
363
|
-
"parameters": {
|
364
|
-
"__id": "slideview--100-x-100-vs-100-x-2000"
|
365
|
-
}
|
366
|
-
},
|
367
|
-
"slideview--100-x-100-vs-2000-x-2000": {
|
368
|
-
"id": "slideview--100-x-100-vs-2000-x-2000",
|
369
|
-
"name": "100 X 100 Vs 2000 X 2000",
|
370
|
-
"kind": "SlideView",
|
371
|
-
"story": "100 X 100 Vs 2000 X 2000",
|
372
|
-
"parameters": {
|
373
|
-
"__id": "slideview--100-x-100-vs-2000-x-2000"
|
374
|
-
}
|
375
|
-
},
|
376
|
-
"slideview--2000-x-100-vs-100-x-2000": {
|
377
|
-
"id": "slideview--2000-x-100-vs-100-x-2000",
|
378
|
-
"name": "2000 X 100 Vs 100 X 2000",
|
379
|
-
"kind": "SlideView",
|
380
|
-
"story": "2000 X 100 Vs 100 X 2000",
|
381
|
-
"parameters": {
|
382
|
-
"__id": "slideview--2000-x-100-vs-100-x-2000"
|
383
|
-
}
|
384
|
-
},
|
385
|
-
"slideview--2000-x-100-vs-2000-x-2000": {
|
386
|
-
"id": "slideview--2000-x-100-vs-2000-x-2000",
|
387
|
-
"name": "2000 X 100 Vs 2000 X 2000",
|
388
|
-
"kind": "SlideView",
|
389
|
-
"story": "2000 X 100 Vs 2000 X 2000",
|
390
|
-
"parameters": {
|
391
|
-
"__id": "slideview--2000-x-100-vs-2000-x-2000"
|
392
|
-
}
|
393
|
-
},
|
394
|
-
"slideview--100-x-2000-vs-2000-x-2000": {
|
395
|
-
"id": "slideview--100-x-2000-vs-2000-x-2000",
|
396
|
-
"name": "100 X 2000 Vs 2000 X 2000",
|
397
|
-
"kind": "SlideView",
|
398
|
-
"story": "100 X 2000 Vs 2000 X 2000",
|
399
|
-
"parameters": {
|
400
|
-
"__id": "slideview--100-x-2000-vs-2000-x-2000"
|
401
|
-
}
|
402
|
-
},
|
403
|
-
"slideview--2000-x-2000-vs-2000-x-2000": {
|
404
|
-
"id": "slideview--2000-x-2000-vs-2000-x-2000",
|
405
|
-
"name": "2000 X 2000 Vs 2000 X 2000",
|
406
|
-
"kind": "SlideView",
|
407
|
-
"story": "2000 X 2000 Vs 2000 X 2000",
|
408
|
-
"parameters": {
|
409
|
-
"__id": "slideview--2000-x-2000-vs-2000-x-2000"
|
410
|
-
}
|
411
|
-
},
|
412
|
-
"swapview--100-x-100-vs-100-x-100": {
|
413
|
-
"id": "swapview--100-x-100-vs-100-x-100",
|
414
|
-
"name": "100 X 100 Vs 100 X 100",
|
415
|
-
"kind": "SwapView",
|
416
|
-
"story": "100 X 100 Vs 100 X 100",
|
417
|
-
"parameters": {
|
418
|
-
"__id": "swapview--100-x-100-vs-100-x-100"
|
419
|
-
}
|
420
|
-
},
|
421
|
-
"swapview--100-x-100-vs-2000-x-100": {
|
422
|
-
"id": "swapview--100-x-100-vs-2000-x-100",
|
423
|
-
"name": "100 X 100 Vs 2000 X 100",
|
424
|
-
"kind": "SwapView",
|
425
|
-
"story": "100 X 100 Vs 2000 X 100",
|
426
|
-
"parameters": {
|
427
|
-
"__id": "swapview--100-x-100-vs-2000-x-100"
|
428
|
-
}
|
429
|
-
},
|
430
|
-
"swapview--100-x-100-vs-100-x-2000": {
|
431
|
-
"id": "swapview--100-x-100-vs-100-x-2000",
|
432
|
-
"name": "100 X 100 Vs 100 X 2000",
|
433
|
-
"kind": "SwapView",
|
434
|
-
"story": "100 X 100 Vs 100 X 2000",
|
435
|
-
"parameters": {
|
436
|
-
"__id": "swapview--100-x-100-vs-100-x-2000"
|
437
|
-
}
|
438
|
-
},
|
439
|
-
"swapview--100-x-100-vs-2000-x-2000": {
|
440
|
-
"id": "swapview--100-x-100-vs-2000-x-2000",
|
441
|
-
"name": "100 X 100 Vs 2000 X 2000",
|
442
|
-
"kind": "SwapView",
|
443
|
-
"story": "100 X 100 Vs 2000 X 2000",
|
444
|
-
"parameters": {
|
445
|
-
"__id": "swapview--100-x-100-vs-2000-x-2000"
|
446
|
-
}
|
447
|
-
},
|
448
|
-
"swapview--2000-x-100-vs-100-x-2000": {
|
449
|
-
"id": "swapview--2000-x-100-vs-100-x-2000",
|
450
|
-
"name": "2000 X 100 Vs 100 X 2000",
|
451
|
-
"kind": "SwapView",
|
452
|
-
"story": "2000 X 100 Vs 100 X 2000",
|
453
|
-
"parameters": {
|
454
|
-
"__id": "swapview--2000-x-100-vs-100-x-2000"
|
455
|
-
}
|
456
|
-
},
|
457
|
-
"swapview--2000-x-100-vs-2000-x-2000": {
|
458
|
-
"id": "swapview--2000-x-100-vs-2000-x-2000",
|
459
|
-
"name": "2000 X 100 Vs 2000 X 2000",
|
460
|
-
"kind": "SwapView",
|
461
|
-
"story": "2000 X 100 Vs 2000 X 2000",
|
462
|
-
"parameters": {
|
463
|
-
"__id": "swapview--2000-x-100-vs-2000-x-2000"
|
464
|
-
}
|
465
|
-
},
|
466
|
-
"swapview--100-x-2000-vs-2000-x-2000": {
|
467
|
-
"id": "swapview--100-x-2000-vs-2000-x-2000",
|
468
|
-
"name": "100 X 2000 Vs 2000 X 2000",
|
469
|
-
"kind": "SwapView",
|
470
|
-
"story": "100 X 2000 Vs 2000 X 2000",
|
471
|
-
"parameters": {
|
472
|
-
"__id": "swapview--100-x-2000-vs-2000-x-2000"
|
473
|
-
}
|
474
|
-
},
|
475
|
-
"swapview--2000-x-2000-vs-2000-x-2000": {
|
476
|
-
"id": "swapview--2000-x-2000-vs-2000-x-2000",
|
477
|
-
"name": "2000 X 2000 Vs 2000 X 2000",
|
478
|
-
"kind": "SwapView",
|
479
|
-
"story": "2000 X 2000 Vs 2000 X 2000",
|
480
|
-
"parameters": {
|
481
|
-
"__id": "swapview--2000-x-2000-vs-2000-x-2000"
|
482
|
-
}
|
483
|
-
},
|
484
|
-
"testviews--viewport-fit": {
|
485
|
-
"id": "testviews--viewport-fit",
|
486
|
-
"name": "Viewport Fit",
|
487
|
-
"kind": "TestViews",
|
488
|
-
"story": "Viewport Fit",
|
489
|
-
"parameters": {
|
490
|
-
"__id": "testviews--viewport-fit"
|
491
|
-
}
|
492
|
-
},
|
493
|
-
"testviews--overflow": {
|
494
|
-
"id": "testviews--overflow",
|
495
|
-
"name": "Overflow",
|
496
|
-
"kind": "TestViews",
|
497
|
-
"story": "Overflow",
|
498
|
-
"parameters": {
|
499
|
-
"__id": "testviews--overflow"
|
500
|
-
}
|
501
|
-
},
|
502
|
-
"testviews--viewport-fit-offset": {
|
503
|
-
"id": "testviews--viewport-fit-offset",
|
504
|
-
"name": "Viewport Fit Offset",
|
505
|
-
"kind": "TestViews",
|
506
|
-
"story": "Viewport Fit Offset",
|
507
|
-
"parameters": {
|
508
|
-
"__id": "testviews--viewport-fit-offset"
|
509
|
-
}
|
510
|
-
},
|
511
|
-
"testviews--overflow-offset": {
|
512
|
-
"id": "testviews--overflow-offset",
|
513
|
-
"name": "Overflow Offset",
|
514
|
-
"kind": "TestViews",
|
515
|
-
"story": "Overflow Offset",
|
516
|
-
"parameters": {
|
517
|
-
"__id": "testviews--overflow-offset"
|
518
|
-
}
|
519
|
-
},
|
520
|
-
"testviews--ignore-elements": {
|
521
|
-
"id": "testviews--ignore-elements",
|
522
|
-
"name": "Ignore Elements",
|
523
|
-
"kind": "TestViews",
|
524
|
-
"story": "Ignore Elements",
|
525
|
-
"parameters": {
|
526
|
-
"__id": "testviews--ignore-elements"
|
527
|
-
}
|
528
|
-
}
|
529
|
-
}
|
530
|
-
}
|