You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The fullscreen variant shows a large dialog background, only revealing a small portion of the page around the outside of the dialog, behind an overlay. The size of the dialog varies with the size of the screen, in both width and height.
274
+
*
275
+
* Implementations may swap out the extra header content and body content for other components, like the [steplist](/docs/components-steplist--docs) and [table](/docs/components-table--docs)seen in this example. Content in this area will be centered.
272
276
*/
273
277
exportconstFullscreen=DialogFullscreen.bind({});
274
278
Fullscreen.args={
275
279
...Default.args,
280
+
header:[
281
+
(passthroughs,context)=>Steplist({
282
+
...passthroughs,
283
+
items: [
284
+
{
285
+
label: "Enter records",
286
+
isComplete: true,
287
+
},
288
+
{
289
+
label: "Confirmation",
290
+
isComplete: true,
291
+
},
292
+
{
293
+
label: "Summary",
294
+
isSelected: true,
295
+
},
296
+
],
297
+
},context),
298
+
],
299
+
content: [
300
+
(passthroughs,context)=>Table({
301
+
...passthroughs,
302
+
showThumbnails: true,
303
+
rowItems: [
304
+
{
305
+
cellContent: ["Table Row Alpha","Test","2"],
306
+
},
307
+
{
308
+
cellContent: ["Table Row Bravo","Test","28"],
309
+
},
310
+
{
311
+
cellContent: [
312
+
"Table Row Charlie. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt.",
0 commit comments