primer_view_components 0.0.123 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/app/assets/javascripts/primer_view_components.js +1 -1
- data/app/assets/javascripts/primer_view_components.js.map +1 -1
- data/app/assets/styles/primer_view_components.css +2 -2
- data/app/assets/styles/primer_view_components.css.map +1 -1
- data/app/components/primer/alpha/action_list/item.rb +4 -0
- data/app/components/primer/alpha/action_list.css.json +41 -0
- data/app/components/primer/alpha/auto_complete.css.json +11 -0
- data/app/components/primer/alpha/banner.css.json +14 -0
- data/app/components/primer/alpha/button_marketing.css.json +10 -0
- data/app/components/primer/alpha/dialog.css.json +63 -0
- data/app/components/primer/alpha/dropdown.css.json +21 -0
- data/app/components/primer/alpha/layout.css.json +27 -0
- data/app/components/primer/alpha/menu.css.json +11 -0
- data/app/components/primer/alpha/nav_list/item.rb +3 -1
- data/app/components/primer/alpha/nav_list/section.rb +4 -4
- data/app/components/primer/alpha/nav_list.js +3 -0
- data/app/components/primer/alpha/nav_list.rb +2 -2
- data/app/components/primer/alpha/nav_list.ts +4 -0
- data/app/components/primer/alpha/overlay/body.rb +26 -0
- data/app/components/primer/alpha/overlay/footer.rb +41 -0
- data/app/components/primer/alpha/overlay/header.html.erb +15 -0
- data/app/components/primer/alpha/overlay/header.rb +47 -0
- data/app/components/primer/alpha/overlay.css +1 -0
- data/app/components/primer/alpha/overlay.css.json +11 -0
- data/app/components/primer/alpha/overlay.css.map +1 -0
- data/app/components/primer/alpha/overlay.html.erb +11 -0
- data/app/components/primer/alpha/overlay.pcss +14 -0
- data/app/components/primer/alpha/overlay.rb +194 -0
- data/app/components/primer/alpha/segmented_control.css.json +15 -0
- data/app/components/primer/alpha/tab_nav.css.json +10 -0
- data/app/components/primer/alpha/text_field.css.json +38 -0
- data/app/components/primer/alpha/toggle_switch.css.json +16 -0
- data/app/components/primer/alpha/underline_nav.css.json +13 -0
- data/app/components/primer/anchored_position.d.ts +27 -0
- data/app/components/primer/anchored_position.js +149 -0
- data/app/components/primer/anchored_position.ts +167 -0
- data/app/components/primer/beta/avatar.css.json +14 -0
- data/app/components/primer/beta/avatar_stack.css.json +9 -0
- data/app/components/primer/beta/blankslate.css.json +12 -0
- data/app/components/primer/beta/border_box.css.json +32 -0
- data/app/components/primer/beta/breadcrumbs.css.json +4 -0
- data/app/components/primer/beta/button.css.json +22 -0
- data/app/components/primer/beta/counter.css.json +6 -0
- data/app/components/primer/beta/flash.css.json +15 -0
- data/app/components/primer/beta/flash.html.erb +1 -2
- data/app/components/primer/beta/label.css.json +20 -0
- data/app/components/primer/beta/link.css.json +8 -0
- data/app/components/primer/beta/popover.css.json +18 -0
- data/app/components/primer/beta/progress_bar.css.json +6 -0
- data/app/components/primer/beta/state.css.json +10 -0
- data/app/components/primer/beta/subhead.css.json +8 -0
- data/app/components/primer/beta/timeline_item.css.json +9 -0
- data/app/components/primer/beta/truncate.css.json +6 -0
- data/app/components/primer/primer.d.ts +2 -0
- data/app/components/primer/primer.js +2 -0
- data/app/components/primer/primer.pcss +3 -0
- data/app/components/primer/primer.ts +2 -0
- data/app/components/primer/truncate.css.json +7 -0
- data/app/lib/primer/css/layout.css.json +263 -0
- data/app/lib/primer/css/utilities.css.json +1636 -0
- data/lib/primer/view_components/linters/base_linter.rb +1 -1
- data/lib/primer/view_components/linters/disallow_component_css_counter.rb +30 -0
- data/lib/primer/view_components/version.rb +2 -2
- data/lib/primer/yard/component_manifest.rb +1 -0
- data/previews/primer/alpha/overlay_preview/middle_of_page.html.erb +17 -0
- data/previews/primer/alpha/overlay_preview.rb +107 -0
- data/static/arguments.json +104 -0
- data/static/audited_at.json +4 -0
- data/static/classes.json +311 -0
- data/static/constants.json +102 -0
- data/static/previews.json +21 -0
- data/static/statuses.json +4 -0
- metadata +19 -2
@@ -24,5 +24,14 @@
|
|
24
24
|
".AvatarStack--right .avatar.avatar-more:before",
|
25
25
|
".AvatarStack--right .avatar.avatar-more:after",
|
26
26
|
".AvatarStack--right .avatar"
|
27
|
+
],
|
28
|
+
"classes": [
|
29
|
+
"AvatarStack",
|
30
|
+
"AvatarStack-body",
|
31
|
+
"AvatarStack--two",
|
32
|
+
"AvatarStack--three-plus",
|
33
|
+
"avatar",
|
34
|
+
"avatar-more",
|
35
|
+
"AvatarStack--right"
|
27
36
|
]
|
28
37
|
}
|
@@ -18,5 +18,17 @@
|
|
18
18
|
".blankslate-large h3",
|
19
19
|
".blankslate-large p",
|
20
20
|
".blankslate-clean-background"
|
21
|
+
],
|
22
|
+
"classes": [
|
23
|
+
"blankslate",
|
24
|
+
"blankslate-icon",
|
25
|
+
"blankslate-image",
|
26
|
+
"blankslate-heading",
|
27
|
+
"blankslate-action",
|
28
|
+
"blankslate-capped",
|
29
|
+
"blankslate-spacious",
|
30
|
+
"blankslate-narrow",
|
31
|
+
"blankslate-large",
|
32
|
+
"blankslate-clean-background"
|
21
33
|
]
|
22
34
|
}
|
@@ -50,5 +50,37 @@
|
|
50
50
|
".Box-row--blue",
|
51
51
|
".Box-row--gray",
|
52
52
|
".Box-btn-octicon.btn-octicon"
|
53
|
+
],
|
54
|
+
"classes": [
|
55
|
+
"Box",
|
56
|
+
"Box--condensed",
|
57
|
+
"Box-body",
|
58
|
+
"Box-footer",
|
59
|
+
"Box-header",
|
60
|
+
"Box-btn-octicon",
|
61
|
+
"btn-octicon",
|
62
|
+
"Box-row",
|
63
|
+
"Box--spacious",
|
64
|
+
"Box-title",
|
65
|
+
"Box-row--unread",
|
66
|
+
"unread",
|
67
|
+
"navigation-focus",
|
68
|
+
"Box-row--drag-button",
|
69
|
+
"is-dragging",
|
70
|
+
"sortable-chosen",
|
71
|
+
"sortable-ghost",
|
72
|
+
"Box-row--drag-hide",
|
73
|
+
"Box-row--focus-gray",
|
74
|
+
"Box-row--focus-blue",
|
75
|
+
"Box-row--hover-gray",
|
76
|
+
"Box-row--hover-blue",
|
77
|
+
"Box-row-link",
|
78
|
+
"Box--scrollable",
|
79
|
+
"Box--blue",
|
80
|
+
"Box--danger",
|
81
|
+
"Box-header--blue",
|
82
|
+
"Box-row--yellow",
|
83
|
+
"Box-row--blue",
|
84
|
+
"Box-row--gray"
|
53
85
|
]
|
54
86
|
}
|
@@ -67,5 +67,27 @@
|
|
67
67
|
".Button--iconOnly",
|
68
68
|
".Button--iconOnly.Button--small",
|
69
69
|
".Button--iconOnly.Button--large"
|
70
|
+
],
|
71
|
+
"classes": [
|
72
|
+
"Button",
|
73
|
+
"Button-withTooltip",
|
74
|
+
"Button-content",
|
75
|
+
"Button-content--alignStart",
|
76
|
+
"Button-visual",
|
77
|
+
"Counter",
|
78
|
+
"Button-label",
|
79
|
+
"Button-leadingVisual",
|
80
|
+
"Button-trailingVisual",
|
81
|
+
"Button-trailingAction",
|
82
|
+
"Button--small",
|
83
|
+
"Button--large",
|
84
|
+
"Button--fullWidth",
|
85
|
+
"Button--primary",
|
86
|
+
"Button--secondary",
|
87
|
+
"Button--invisible",
|
88
|
+
"Button--invisible-noVisuals",
|
89
|
+
"Button--link",
|
90
|
+
"Button--danger",
|
91
|
+
"Button--iconOnly"
|
70
92
|
]
|
71
93
|
}
|
@@ -23,5 +23,20 @@
|
|
23
23
|
".flash-banner",
|
24
24
|
".flash-full",
|
25
25
|
".warning"
|
26
|
+
],
|
27
|
+
"classes": [
|
28
|
+
"flash",
|
29
|
+
"octicon",
|
30
|
+
"flash-messages",
|
31
|
+
"flash-close",
|
32
|
+
"flash-action",
|
33
|
+
"btn",
|
34
|
+
"btn-primary",
|
35
|
+
"flash-warn",
|
36
|
+
"flash-error",
|
37
|
+
"flash-success",
|
38
|
+
"flash-full",
|
39
|
+
"flash-banner",
|
40
|
+
"warning"
|
26
41
|
]
|
27
42
|
}
|
@@ -1,6 +1,5 @@
|
|
1
1
|
<%= render Primer::BaseComponent.new(**@system_arguments) do %>
|
2
|
-
<%= primer_octicon @icon if @icon %>
|
3
|
-
<%= content %>
|
2
|
+
<%= primer_octicon @icon if @icon %><%= content %>
|
4
3
|
<% if @dismissible %>
|
5
4
|
<button class="flash-close js-flash-close" type="button" aria-label="Close">
|
6
5
|
<%= primer_octicon "x" %>
|
@@ -21,5 +21,25 @@
|
|
21
21
|
".Label--closed",
|
22
22
|
".Label--done",
|
23
23
|
".Label--sponsors"
|
24
|
+
],
|
25
|
+
"classes": [
|
26
|
+
"labels",
|
27
|
+
"Label",
|
28
|
+
"label",
|
29
|
+
"Label--large",
|
30
|
+
"Label--inline",
|
31
|
+
"Label--primary",
|
32
|
+
"Label--secondary",
|
33
|
+
"Label--accent",
|
34
|
+
"Label--info",
|
35
|
+
"Label--success",
|
36
|
+
"Label--attention",
|
37
|
+
"Label--warning",
|
38
|
+
"Label--severe",
|
39
|
+
"Label--danger",
|
40
|
+
"Label--open",
|
41
|
+
"Label--closed",
|
42
|
+
"Label--done",
|
43
|
+
"Label--sponsors"
|
24
44
|
]
|
25
45
|
}
|
@@ -15,5 +15,13 @@
|
|
15
15
|
".Link--muted:hover [class*=color-fg]",
|
16
16
|
".Link--primary:hover [class*=color-fg]",
|
17
17
|
".Link--secondary:hover [class*=color-fg]"
|
18
|
+
],
|
19
|
+
"classes": [
|
20
|
+
"Link",
|
21
|
+
"Link--primary",
|
22
|
+
"Link--secondary",
|
23
|
+
"Link--muted",
|
24
|
+
"Link--onHover",
|
25
|
+
"color-fg"
|
18
26
|
]
|
19
27
|
}
|
@@ -35,5 +35,23 @@
|
|
35
35
|
".Popover-message--right:before",
|
36
36
|
".Popover-message--large",
|
37
37
|
".Popover-message>.btn-octicon"
|
38
|
+
],
|
39
|
+
"classes": [
|
40
|
+
"Popover",
|
41
|
+
"Popover-message",
|
42
|
+
"Popover-message--no-caret",
|
43
|
+
"Popover-message--bottom-left",
|
44
|
+
"Popover-message--bottom-right",
|
45
|
+
"Popover-message--bottom",
|
46
|
+
"Popover-message--top-right",
|
47
|
+
"Popover-message--top-left",
|
48
|
+
"Popover-message--left-bottom",
|
49
|
+
"Popover-message--left-top",
|
50
|
+
"Popover-message--left",
|
51
|
+
"Popover-message--right-bottom",
|
52
|
+
"Popover-message--right-top",
|
53
|
+
"Popover-message--right",
|
54
|
+
"Popover-message--large",
|
55
|
+
"btn-octicon"
|
38
56
|
]
|
39
57
|
}
|
@@ -8,5 +8,13 @@
|
|
8
8
|
".Subhead-description",
|
9
9
|
".Subhead-actions",
|
10
10
|
".Subhead-actions+.Subhead-description"
|
11
|
+
],
|
12
|
+
"classes": [
|
13
|
+
"Subhead",
|
14
|
+
"Subhead--spacious",
|
15
|
+
"Subhead-heading",
|
16
|
+
"Subhead-heading--danger",
|
17
|
+
"Subhead-description",
|
18
|
+
"Subhead-actions"
|
11
19
|
]
|
12
20
|
}
|
@@ -12,5 +12,14 @@
|
|
12
12
|
".TimelineItem--condensed",
|
13
13
|
".TimelineItem--condensed:last-child",
|
14
14
|
".TimelineItem--condensed .TimelineItem-badge"
|
15
|
+
],
|
16
|
+
"classes": [
|
17
|
+
"TimelineItem",
|
18
|
+
"TimelineItem-badge",
|
19
|
+
"TimelineItem-badge--success",
|
20
|
+
"TimelineItem-body",
|
21
|
+
"TimelineItem-avatar",
|
22
|
+
"TimelineItem-break",
|
23
|
+
"TimelineItem--condensed"
|
15
24
|
]
|
16
25
|
}
|
@@ -8,5 +8,11 @@
|
|
8
8
|
".Truncate>.Truncate-text.Truncate-text--expandable:active",
|
9
9
|
".Truncate>.Truncate-text.Truncate-text--expandable:focus",
|
10
10
|
".Truncate>.Truncate-text.Truncate-text--expandable:hover"
|
11
|
+
],
|
12
|
+
"classes": [
|
13
|
+
"Truncate",
|
14
|
+
"Truncate-text",
|
15
|
+
"Truncate-text--primary",
|
16
|
+
"Truncate-text--expandable"
|
11
17
|
]
|
12
18
|
}
|
@@ -1,3 +1,5 @@
|
|
1
|
+
@import "@oddbird/popover-polyfill/dist/popover.css";
|
2
|
+
|
1
3
|
/* CSS component styles here */
|
2
4
|
|
3
5
|
/* alpha */
|
@@ -20,6 +22,7 @@
|
|
20
22
|
@import "./beta/avatar_stack.pcss";
|
21
23
|
@import "./beta/border_box.pcss";
|
22
24
|
@import "./beta/blankslate.pcss";
|
25
|
+
@import "./alpha/overlay.pcss";
|
23
26
|
@import "./beta/breadcrumbs.pcss";
|
24
27
|
@import "./beta/button.pcss";
|
25
28
|
@import "./beta/counter.pcss";
|
@@ -9,5 +9,12 @@
|
|
9
9
|
".css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target",
|
10
10
|
".css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target",
|
11
11
|
".css-truncate.expandable:hover .css-truncate-target"
|
12
|
+
],
|
13
|
+
"classes": [
|
14
|
+
"css-truncate",
|
15
|
+
"css-truncate-overflow",
|
16
|
+
"css-truncate-target",
|
17
|
+
"expandable",
|
18
|
+
"zeroclipboard-is-hover"
|
12
19
|
]
|
13
20
|
}
|
@@ -312,5 +312,268 @@
|
|
312
312
|
".Stack--dir-inline-whenWide>.Stack-item>.Stack-divider",
|
313
313
|
".Stack-item--expand-whenWide",
|
314
314
|
".Stack-item--keepSize-whenWide"
|
315
|
+
],
|
316
|
+
"classes": [
|
317
|
+
"AppFrame",
|
318
|
+
"AppFrame-a11yNav",
|
319
|
+
"AppFrame-a11yLink",
|
320
|
+
"AppFrame-main",
|
321
|
+
"AppFrame-header-wrapper",
|
322
|
+
"AppFrame-header",
|
323
|
+
"AppFrame-subheader",
|
324
|
+
"AppFrame-body",
|
325
|
+
"AppFrame-footer",
|
326
|
+
"container-sm",
|
327
|
+
"container-md",
|
328
|
+
"container-lg",
|
329
|
+
"container-xl",
|
330
|
+
"col-1",
|
331
|
+
"col-2",
|
332
|
+
"col-3",
|
333
|
+
"col-4",
|
334
|
+
"col-5",
|
335
|
+
"col-6",
|
336
|
+
"col-7",
|
337
|
+
"col-8",
|
338
|
+
"col-9",
|
339
|
+
"col-10",
|
340
|
+
"col-11",
|
341
|
+
"col-12",
|
342
|
+
"col-sm-1",
|
343
|
+
"col-sm-2",
|
344
|
+
"col-sm-3",
|
345
|
+
"col-sm-4",
|
346
|
+
"col-sm-5",
|
347
|
+
"col-sm-6",
|
348
|
+
"col-sm-7",
|
349
|
+
"col-sm-8",
|
350
|
+
"col-sm-9",
|
351
|
+
"col-sm-10",
|
352
|
+
"col-sm-11",
|
353
|
+
"col-sm-12",
|
354
|
+
"col-md-1",
|
355
|
+
"col-md-2",
|
356
|
+
"col-md-3",
|
357
|
+
"col-md-4",
|
358
|
+
"col-md-5",
|
359
|
+
"col-md-6",
|
360
|
+
"col-md-7",
|
361
|
+
"col-md-8",
|
362
|
+
"col-md-9",
|
363
|
+
"col-md-10",
|
364
|
+
"col-md-11",
|
365
|
+
"col-md-12",
|
366
|
+
"col-lg-1",
|
367
|
+
"col-lg-2",
|
368
|
+
"col-lg-3",
|
369
|
+
"col-lg-4",
|
370
|
+
"col-lg-5",
|
371
|
+
"col-lg-6",
|
372
|
+
"col-lg-7",
|
373
|
+
"col-lg-8",
|
374
|
+
"col-lg-9",
|
375
|
+
"col-lg-10",
|
376
|
+
"col-lg-11",
|
377
|
+
"col-lg-12",
|
378
|
+
"col-xl-1",
|
379
|
+
"col-xl-2",
|
380
|
+
"col-xl-3",
|
381
|
+
"col-xl-4",
|
382
|
+
"col-xl-5",
|
383
|
+
"col-xl-6",
|
384
|
+
"col-xl-7",
|
385
|
+
"col-xl-8",
|
386
|
+
"col-xl-9",
|
387
|
+
"col-xl-10",
|
388
|
+
"col-xl-11",
|
389
|
+
"col-xl-12",
|
390
|
+
"gutter",
|
391
|
+
"col-",
|
392
|
+
"gutter-condensed",
|
393
|
+
"gutter-spacious",
|
394
|
+
"gutter-sm",
|
395
|
+
"gutter-sm-condensed",
|
396
|
+
"gutter-sm-spacious",
|
397
|
+
"gutter-md",
|
398
|
+
"gutter-md-condensed",
|
399
|
+
"gutter-md-spacious",
|
400
|
+
"gutter-lg",
|
401
|
+
"gutter-lg-condensed",
|
402
|
+
"gutter-lg-spacious",
|
403
|
+
"gutter-xl",
|
404
|
+
"gutter-xl-condensed",
|
405
|
+
"gutter-xl-spacious",
|
406
|
+
"offset-1",
|
407
|
+
"offset-2",
|
408
|
+
"offset-3",
|
409
|
+
"offset-4",
|
410
|
+
"offset-5",
|
411
|
+
"offset-6",
|
412
|
+
"offset-7",
|
413
|
+
"offset-8",
|
414
|
+
"offset-9",
|
415
|
+
"offset-10",
|
416
|
+
"offset-11",
|
417
|
+
"offset-sm-1",
|
418
|
+
"offset-sm-2",
|
419
|
+
"offset-sm-3",
|
420
|
+
"offset-sm-4",
|
421
|
+
"offset-sm-5",
|
422
|
+
"offset-sm-6",
|
423
|
+
"offset-sm-7",
|
424
|
+
"offset-sm-8",
|
425
|
+
"offset-sm-9",
|
426
|
+
"offset-sm-10",
|
427
|
+
"offset-sm-11",
|
428
|
+
"offset-md-1",
|
429
|
+
"offset-md-2",
|
430
|
+
"offset-md-3",
|
431
|
+
"offset-md-4",
|
432
|
+
"offset-md-5",
|
433
|
+
"offset-md-6",
|
434
|
+
"offset-md-7",
|
435
|
+
"offset-md-8",
|
436
|
+
"offset-md-9",
|
437
|
+
"offset-md-10",
|
438
|
+
"offset-md-11",
|
439
|
+
"offset-lg-1",
|
440
|
+
"offset-lg-2",
|
441
|
+
"offset-lg-3",
|
442
|
+
"offset-lg-4",
|
443
|
+
"offset-lg-5",
|
444
|
+
"offset-lg-6",
|
445
|
+
"offset-lg-7",
|
446
|
+
"offset-lg-8",
|
447
|
+
"offset-lg-9",
|
448
|
+
"offset-lg-10",
|
449
|
+
"offset-lg-11",
|
450
|
+
"offset-xl-1",
|
451
|
+
"offset-xl-2",
|
452
|
+
"offset-xl-3",
|
453
|
+
"offset-xl-4",
|
454
|
+
"offset-xl-5",
|
455
|
+
"offset-xl-6",
|
456
|
+
"offset-xl-7",
|
457
|
+
"offset-xl-8",
|
458
|
+
"offset-xl-9",
|
459
|
+
"offset-xl-10",
|
460
|
+
"offset-xl-11",
|
461
|
+
"PageLayout",
|
462
|
+
"PageLayout--panePos-start",
|
463
|
+
"PageLayout--panePos-end",
|
464
|
+
"PageLayout-header--hasDivider",
|
465
|
+
"PageLayout-footer--hasDivider",
|
466
|
+
"PageLayout--hasPaneDivider",
|
467
|
+
"PageLayout-pane",
|
468
|
+
"PageLayout-content",
|
469
|
+
"PageLayout-pane--sticky",
|
470
|
+
"PageLayout-content-centered-",
|
471
|
+
"container-",
|
472
|
+
"PageLayout-content-centered-sm",
|
473
|
+
"PageLayout-content-centered-md",
|
474
|
+
"PageLayout-content-centered-lg",
|
475
|
+
"PageLayout-content-centered-xl",
|
476
|
+
"PageLayout--paneWidth-narrow",
|
477
|
+
"PageLayout--paneWidth-wide",
|
478
|
+
"PageLayout--responsive-stackRegions",
|
479
|
+
"PageLayout--responsive-panePos-start",
|
480
|
+
"PageLayout--responsive-separateRegions",
|
481
|
+
"PageLayout--responsive-primary-content",
|
482
|
+
"PageLayout--responsive-primary-pane",
|
483
|
+
"PageLayout-region--dividerNarrow-line-before",
|
484
|
+
"PageLayout-region--dividerNarrow-line-after",
|
485
|
+
"PageLayout-region--dividerNarrow-filled-before",
|
486
|
+
"PageLayout-region--dividerNarrow-filled-after",
|
487
|
+
"PageLayout-wrapper",
|
488
|
+
"PageLayout-columns",
|
489
|
+
"PageLayout--outerSpacing-normal",
|
490
|
+
"PageLayout--outerSpacing-condensed",
|
491
|
+
"PageLayout--innerSpacing-normal",
|
492
|
+
"PageLayout--innerSpacing-condensed",
|
493
|
+
"PageLayout--columnGap-normal",
|
494
|
+
"PageLayout--columnGap-condensed",
|
495
|
+
"PageLayout--columnGap-none",
|
496
|
+
"PageLayout--rowGap-normal",
|
497
|
+
"PageLayout--rowGap-none",
|
498
|
+
"PageLayout--rowGap-condensed",
|
499
|
+
"PageLayout-header",
|
500
|
+
"PageLayout-footer",
|
501
|
+
"Stack",
|
502
|
+
"Stack-divider",
|
503
|
+
"Stack-item",
|
504
|
+
"Stack--dir-inline-whenNarrow",
|
505
|
+
"Stack--dir-block-whenNarrow",
|
506
|
+
"Stack--gap-none-whenNarrow",
|
507
|
+
"Stack--gap-condensed-whenNarrow",
|
508
|
+
"Stack--gap-normal-whenNarrow",
|
509
|
+
"Stack--align-start-whenNarrow",
|
510
|
+
"Stack--align-center-whenNarrow",
|
511
|
+
"Stack--align-end-whenNarrow",
|
512
|
+
"Stack--align-baseline-whenNarrow",
|
513
|
+
"Stack--alignWrap-start-whenNarrow",
|
514
|
+
"Stack--alignWrap-center-whenNarrow",
|
515
|
+
"Stack--alignWrap-end-whenNarrow",
|
516
|
+
"Stack--alignWrap-distribute-whenNarrow",
|
517
|
+
"Stack--alignWrap-distributeEvenly-whenNarrow",
|
518
|
+
"Stack--spread-start-whenNarrow",
|
519
|
+
"Stack--spread-center-whenNarrow",
|
520
|
+
"Stack--spread-end-whenNarrow",
|
521
|
+
"Stack--spread-distribute-whenNarrow",
|
522
|
+
"Stack--spread-distributeEvenly-whenNarrow",
|
523
|
+
"Stack--wrap-whenNarrow",
|
524
|
+
"Stack--nowrap-whenNarrow",
|
525
|
+
"Stack--showDividers-whenNarrow",
|
526
|
+
"Stack-item--expand-whenNarrow",
|
527
|
+
"Stack-item--keepSize-whenNarrow",
|
528
|
+
"Stack--dir-inline-whenRegular",
|
529
|
+
"Stack--dir-block-whenRegular",
|
530
|
+
"Stack--gap-none-whenRegular",
|
531
|
+
"Stack--gap-condensed-whenRegular",
|
532
|
+
"Stack--gap-normal-whenRegular",
|
533
|
+
"Stack--gap-spacious-whenRegular",
|
534
|
+
"Stack--align-start-whenRegular",
|
535
|
+
"Stack--align-center-whenRegular",
|
536
|
+
"Stack--align-end-whenRegular",
|
537
|
+
"Stack--align-baseline-whenRegular",
|
538
|
+
"Stack--alignWrap-start-whenRegular",
|
539
|
+
"Stack--alignWrap-center-whenRegular",
|
540
|
+
"Stack--alignWrap-end-whenRegular",
|
541
|
+
"Stack--alignWrap-distribute-whenRegular",
|
542
|
+
"Stack--alignWrap-distributeEvenly-whenRegular",
|
543
|
+
"Stack--spread-start-whenRegular",
|
544
|
+
"Stack--spread-center-whenRegular",
|
545
|
+
"Stack--spread-end-whenRegular",
|
546
|
+
"Stack--spread-distribute-whenRegular",
|
547
|
+
"Stack--spread-distributeEvenly-whenRegular",
|
548
|
+
"Stack--wrap-whenRegular",
|
549
|
+
"Stack--nowrap-whenRegular",
|
550
|
+
"Stack--showDividers-whenRegular",
|
551
|
+
"Stack-item--expand-whenRegular",
|
552
|
+
"Stack-item--keepSize-whenRegular",
|
553
|
+
"Stack--dir-inline-whenWide",
|
554
|
+
"Stack--dir-block-whenWide",
|
555
|
+
"Stack--gap-none-whenWide",
|
556
|
+
"Stack--gap-condensed-whenWide",
|
557
|
+
"Stack--gap-normal-whenWide",
|
558
|
+
"Stack--gap-spacious-whenWide",
|
559
|
+
"Stack--align-start-whenWide",
|
560
|
+
"Stack--align-center-whenWide",
|
561
|
+
"Stack--align-end-whenWide",
|
562
|
+
"Stack--align-baseline-whenWide",
|
563
|
+
"Stack--alignWrap-start-whenWide",
|
564
|
+
"Stack--alignWrap-center-whenWide",
|
565
|
+
"Stack--alignWrap-end-whenWide",
|
566
|
+
"Stack--alignWrap-distribute-whenWide",
|
567
|
+
"Stack--alignWrap-distributeEvenly-whenWide",
|
568
|
+
"Stack--spread-start-whenWide",
|
569
|
+
"Stack--spread-center-whenWide",
|
570
|
+
"Stack--spread-end-whenWide",
|
571
|
+
"Stack--spread-distribute-whenWide",
|
572
|
+
"Stack--spread-distributeEvenly-whenWide",
|
573
|
+
"Stack--wrap-whenWide",
|
574
|
+
"Stack--nowrap-whenWide",
|
575
|
+
"Stack--showDividers-whenWide",
|
576
|
+
"Stack-item--expand-whenWide",
|
577
|
+
"Stack-item--keepSize-whenWide"
|
315
578
|
]
|
316
579
|
}
|