primer_view_components 0.0.123 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +36 -0
  3. data/app/assets/javascripts/primer_view_components.js +1 -1
  4. data/app/assets/javascripts/primer_view_components.js.map +1 -1
  5. data/app/assets/styles/primer_view_components.css +2 -2
  6. data/app/assets/styles/primer_view_components.css.map +1 -1
  7. data/app/components/primer/alpha/action_list/divider.rb +2 -2
  8. data/app/components/primer/alpha/action_list/heading.html.erb +1 -1
  9. data/app/components/primer/alpha/action_list/heading.rb +10 -4
  10. data/app/components/primer/alpha/action_list/item.rb +7 -3
  11. data/app/components/primer/alpha/action_list.css.json +41 -0
  12. data/app/components/primer/alpha/action_list.html.erb +6 -8
  13. data/app/components/primer/alpha/action_list.rb +5 -10
  14. data/app/components/primer/alpha/auto_complete.css.json +11 -0
  15. data/app/components/primer/alpha/banner.css.json +14 -0
  16. data/app/components/primer/alpha/button_marketing.css.json +10 -0
  17. data/app/components/primer/alpha/dialog.css.json +63 -0
  18. data/app/components/primer/alpha/dropdown.css.json +21 -0
  19. data/app/components/primer/alpha/layout.css.json +27 -0
  20. data/app/components/primer/alpha/menu.css.json +11 -0
  21. data/app/components/primer/alpha/nav_list/{section.rb → group.rb} +9 -9
  22. data/app/components/primer/alpha/nav_list/item.html.erb +1 -1
  23. data/app/components/primer/alpha/nav_list/item.rb +18 -2
  24. data/app/components/primer/alpha/nav_list.d.ts +1 -0
  25. data/app/components/primer/alpha/nav_list.html.erb +8 -8
  26. data/app/components/primer/alpha/nav_list.js +24 -0
  27. data/app/components/primer/alpha/nav_list.rb +28 -32
  28. data/app/components/primer/alpha/nav_list.ts +27 -0
  29. data/app/components/primer/alpha/navigation/tab.rb +168 -0
  30. data/app/components/primer/alpha/overlay/body.rb +26 -0
  31. data/app/components/primer/alpha/overlay/footer.rb +41 -0
  32. data/app/components/primer/alpha/overlay/header.html.erb +15 -0
  33. data/app/components/primer/alpha/overlay/header.rb +47 -0
  34. data/app/components/primer/alpha/overlay.css +1 -0
  35. data/app/components/primer/alpha/overlay.css.json +11 -0
  36. data/app/components/primer/alpha/overlay.css.map +1 -0
  37. data/app/components/primer/alpha/overlay.html.erb +11 -0
  38. data/app/components/primer/alpha/overlay.pcss +14 -0
  39. data/app/components/primer/alpha/overlay.rb +207 -0
  40. data/app/components/primer/alpha/segmented_control.css.json +15 -0
  41. data/app/components/primer/alpha/tab_nav.css.json +10 -0
  42. data/app/components/primer/alpha/tab_nav.rb +10 -3
  43. data/app/components/primer/alpha/tab_panels.rb +2 -2
  44. data/app/components/primer/alpha/text_field.css.json +38 -0
  45. data/app/components/primer/alpha/toggle_switch.css.json +16 -0
  46. data/app/components/primer/alpha/underline_nav.css +1 -1
  47. data/app/components/primer/alpha/underline_nav.css.json +13 -0
  48. data/app/components/primer/alpha/underline_nav.css.map +1 -1
  49. data/app/components/primer/alpha/underline_nav.pcss +1 -0
  50. data/app/components/primer/alpha/underline_nav.rb +2 -2
  51. data/app/components/primer/alpha/underline_panels.rb +2 -2
  52. data/app/components/primer/anchored_position.d.ts +27 -0
  53. data/app/components/primer/anchored_position.js +149 -0
  54. data/app/components/primer/anchored_position.ts +167 -0
  55. data/app/components/primer/beta/avatar.css.json +14 -0
  56. data/app/components/primer/beta/avatar_stack.css.json +9 -0
  57. data/app/components/primer/beta/blankslate.css.json +12 -0
  58. data/app/components/primer/beta/border_box.css.json +32 -0
  59. data/app/components/primer/beta/breadcrumbs.css.json +4 -0
  60. data/app/components/primer/beta/button.css.json +22 -0
  61. data/app/components/primer/beta/button.html.erb +1 -1
  62. data/app/components/primer/beta/button.rb +2 -1
  63. data/app/components/primer/beta/counter.css.json +6 -0
  64. data/app/components/primer/beta/flash.css.json +15 -0
  65. data/app/components/primer/beta/flash.html.erb +1 -2
  66. data/app/components/primer/beta/label.css.json +20 -0
  67. data/app/components/primer/beta/link.css.json +8 -0
  68. data/app/components/primer/beta/popover.css.json +18 -0
  69. data/app/components/primer/beta/progress_bar.css.json +6 -0
  70. data/app/components/primer/beta/state.css.json +10 -0
  71. data/app/components/primer/beta/subhead.css.json +8 -0
  72. data/app/components/primer/beta/timeline_item.css.json +9 -0
  73. data/app/components/primer/beta/truncate.css.json +6 -0
  74. data/app/components/primer/component.rb +34 -0
  75. data/app/components/primer/navigation/tab_component.rb +3 -157
  76. data/app/components/primer/primer.d.ts +2 -0
  77. data/app/components/primer/primer.js +2 -0
  78. data/app/components/primer/primer.pcss +3 -0
  79. data/app/components/primer/primer.ts +2 -0
  80. data/app/components/primer/truncate.css.json +7 -0
  81. data/app/lib/primer/css/layout.css.json +263 -0
  82. data/app/lib/primer/css/utilities.css.json +1636 -0
  83. data/lib/primer/deprecations.yml +4 -0
  84. data/lib/primer/view_components/linters/base_linter.rb +1 -1
  85. data/lib/primer/view_components/linters/disallow_component_css_counter.rb +30 -0
  86. data/lib/primer/view_components/version.rb +2 -2
  87. data/lib/primer/yard/component_manifest.rb +3 -1
  88. data/lib/tasks/docs.rake +1 -1
  89. data/previews/primer/alpha/action_list_preview.rb +6 -14
  90. data/previews/primer/alpha/nav_list_preview/trailing_action.html.erb +19 -0
  91. data/previews/primer/alpha/nav_list_preview.rb +19 -30
  92. data/previews/primer/alpha/overlay_preview/middle_of_page.html.erb +17 -0
  93. data/previews/primer/alpha/overlay_preview.rb +112 -0
  94. data/previews/primer/alpha/tab_nav_preview/with_extra.html.erb +8 -0
  95. data/previews/primer/alpha/tab_nav_preview.rb +5 -0
  96. data/previews/primer/alpha/tab_panels_preview/with_extra.html.erb +17 -0
  97. data/previews/primer/alpha/tab_panels_preview.rb +5 -0
  98. data/static/arguments.json +167 -7
  99. data/static/audited_at.json +6 -1
  100. data/static/classes.json +311 -0
  101. data/static/constants.json +122 -8
  102. data/static/previews.json +31 -0
  103. data/static/statuses.json +7 -2
  104. metadata +25 -6
  105. data/app/components/primer/alpha/nav_list/section.html.erb +0 -3
  106. data/previews/primer/alpha/action_list_preview/heading.html.erb +0 -4
  107. /data/app/components/primer/{navigation/tab_component.html.erb → alpha/navigation/tab.html.erb} +0 -0
@@ -2,163 +2,9 @@
2
2
 
3
3
  module Primer
4
4
  module Navigation
5
- # This component is part of navigation components such as `Primer::Alpha::TabNav`
6
- # and `Primer::Alpha::UnderlineNav` and should not be used by itself.
7
- #
8
- # @accessibility
9
- # `TabComponent` renders the selected anchor tab with `aria-current="page"` by default.
10
- # When the selected tab does not correspond to the current page, such as in a nested inner tab, make sure to use aria-current="true"
11
- class TabComponent < Primer::Component
12
- DEFAULT_ARIA_CURRENT_FOR_ANCHOR = :page
13
- ARIA_CURRENT_OPTIONS_FOR_ANCHOR = [true, DEFAULT_ARIA_CURRENT_FOR_ANCHOR].freeze
14
- # Panel controlled by the Tab. This will not render anything in the tab itself.
15
- # It will provide a accessor for the Tab's parent to call and render the panel
16
- # content in the appropriate place.
17
- # Refer to `UnderlineNav` and `TabNav` implementations for examples.
18
- #
19
- # @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
20
- renders_one :panel, lambda { |**system_arguments|
21
- return unless @with_panel
22
-
23
- deny_tag_argument(**system_arguments)
24
- system_arguments[:id] = @panel_id
25
- system_arguments[:tag] = :div
26
- system_arguments[:role] ||= :tabpanel
27
- system_arguments[:tabindex] = 0
28
- system_arguments[:hidden] = true unless @selected
29
-
30
- label_present = aria("label", system_arguments) || aria("labelledby", system_arguments)
31
- unless label_present
32
- if @id.present?
33
- system_arguments[:"aria-labelledby"] = @id
34
- elsif !Rails.env.production?
35
- raise ArgumentError, "Panels must be labelled. Either set a unique `id` on the tab, or set an `aria-label` directly on the panel"
36
- end
37
- end
38
-
39
- Primer::BaseComponent.new(**system_arguments)
40
- }
41
-
42
- # Icon to be rendered in the Tab left.
43
- #
44
- # @param kwargs [Hash] The same arguments as <%= link_to_component(Primer::Beta::Octicon) %>.
45
- renders_one :icon, lambda { |icon = nil, **system_arguments|
46
- system_arguments[:classes] = class_names(
47
- @icon_classes,
48
- system_arguments[:classes]
49
- )
50
- Primer::Beta::Octicon.new(icon, **system_arguments)
51
- }
52
-
53
- # The Tab's text.
54
- #
55
- # @param kwargs [Hash] The same arguments as <%= link_to_component(Primer::Beta::Text) %>.
56
- renders_one :text, Primer::Beta::Text
57
-
58
- # Counter to be rendered in the Tab right.
59
- #
60
- # @param kwargs [Hash] The same arguments as <%= link_to_component(Primer::Beta::Counter) %>.
61
- renders_one :counter, Primer::Beta::Counter
62
-
63
- attr_reader :selected
64
-
65
- # @example Default
66
- # <%= render(Primer::Navigation::TabComponent.new(selected: true)) do |component| %>
67
- # <% component.with_text { "Selected" } %>
68
- # <% end %>
69
- # <%= render(Primer::Navigation::TabComponent.new) do |component| %>
70
- # <% component.with_text { "Not selected" } %>
71
- # <% end %>
72
- #
73
- # @example With icons and counters
74
- # <%= render(Primer::Navigation::TabComponent.new) do |component| %>
75
- # <% component.with_icon(:star) %>
76
- # <% component.with_text { "Tab" } %>
77
- # <% end %>
78
- # <%= render(Primer::Navigation::TabComponent.new) do |component| %>
79
- # <% component.with_icon(:star) %>
80
- # <% component.with_text { "Tab" } %>
81
- # <% component.with_counter(count: 10) %>
82
- # <% end %>
83
- # <%= render(Primer::Navigation::TabComponent.new) do |component| %>
84
- # <% component.with_text { "Tab" } %>
85
- # <% component.with_counter(count: 10) %>
86
- # <% end %>
87
- #
88
- # @example Inside a list
89
- # <%= render(Primer::Navigation::TabComponent.new(list: true)) do |component| %>
90
- # <% component.with_text { "Tab" } %>
91
- # <% end %>
92
- #
93
- # @example With custom HTML
94
- # <%= render(Primer::Navigation::TabComponent.new) do %>
95
- # <div>
96
- # This is my <strong>custom HTML</strong>
97
- # </div>
98
- # <% end %>
99
- #
100
- # @param list [Boolean] Whether the Tab is an item in a `<ul>` list.
101
- # @param selected [Boolean] Whether the Tab is selected or not.
102
- # @param with_panel [Boolean] Whether the Tab has an associated panel.
103
- # @param panel_id [String] Only applies if `with_panel` is `true`. Unique id of panel.
104
- # @param icon_classes [Boolean] Classes that must always be applied to icons.
105
- # @param wrapper_arguments [Hash] <%= link_to_system_arguments_docs %> to be used in the `<li>` wrapper when the tab is an item in a list.
106
- # @param system_arguments [Hash] <%= link_to_system_arguments_docs %>
107
- def initialize(list: false, selected: false, with_panel: false, panel_id: "", icon_classes: "", wrapper_arguments: {}, **system_arguments)
108
- @selected = selected
109
- @icon_classes = icon_classes
110
- @list = list
111
- @with_panel = with_panel
112
-
113
- @system_arguments = system_arguments
114
- @id = @system_arguments[:id]
115
- @wrapper_arguments = wrapper_arguments
116
-
117
- if with_panel || @system_arguments[:tag] == :button
118
- @system_arguments[:tag] = :button
119
- @system_arguments[:type] = :button
120
- @system_arguments[:role] = :tab
121
- panel_id(panel_id)
122
- # https://www.w3.org/TR/wai-aria-practices/#presentation_role
123
- @wrapper_arguments[:role] = :presentation
124
- else
125
- @system_arguments[:tag] = :a
126
- end
127
-
128
- @wrapper_arguments[:tag] = :li
129
- @wrapper_arguments[:display] ||= :inline_flex
130
-
131
- return unless @selected
132
-
133
- if @system_arguments[:tag] == :a
134
- aria_current = aria("current", system_arguments) || DEFAULT_ARIA_CURRENT_FOR_ANCHOR
135
- @system_arguments[:"aria-current"] = fetch_or_fallback(ARIA_CURRENT_OPTIONS_FOR_ANCHOR, aria_current, DEFAULT_ARIA_CURRENT_FOR_ANCHOR)
136
- else
137
- @system_arguments[:"aria-selected"] = true
138
- end
139
- end
140
-
141
- def wrapper
142
- unless @list
143
- yield
144
- return # returning `yield` caused a double render
145
- end
146
-
147
- render(Primer::BaseComponent.new(**@wrapper_arguments)) do
148
- yield if block_given?
149
- end
150
- end
151
-
152
- private
153
-
154
- def panel_id(panel_id)
155
- if panel_id.blank?
156
- raise ArgumentError, "`panel_id` is required" unless Rails.env.production?
157
- else
158
- @panel_id = panel_id
159
- @system_arguments[:"aria-controls"] = @panel_id
160
- end
161
- end
5
+ # nodoc
6
+ class TabComponent < Primer::Alpha::Navigation::Tab
7
+ status :deprecated
162
8
  end
163
9
  end
164
10
  end
@@ -1,4 +1,6 @@
1
+ import '@oddbird/popover-polyfill';
1
2
  import './alpha/dropdown';
3
+ import './anchored_position';
2
4
  import './alpha/image_crop';
3
5
  import './alpha/modal_dialog';
4
6
  import './alpha/nav_list';
@@ -1,4 +1,6 @@
1
+ import '@oddbird/popover-polyfill';
1
2
  import './alpha/dropdown';
3
+ import './anchored_position';
2
4
  import './alpha/image_crop';
3
5
  import './alpha/modal_dialog';
4
6
  import './alpha/nav_list';
@@ -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";
@@ -1,4 +1,6 @@
1
+ import '@oddbird/popover-polyfill'
1
2
  import './alpha/dropdown'
3
+ import './anchored_position'
2
4
  import './alpha/image_crop'
3
5
  import './alpha/modal_dialog'
4
6
  import './alpha/nav_list'
@@ -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
  }