playbook_ui 5.2.0.pre.alpha15 → 5.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -0
  3. data/app/controllers/playbook/application_controller.rb +2 -0
  4. data/app/controllers/playbook/guides_controller.rb +11 -0
  5. data/app/controllers/playbook/pages_controller.rb +79 -0
  6. data/app/controllers/playbook/samples_controller.rb +40 -0
  7. data/app/helpers/playbook/pb_kit_helper.rb +0 -1
  8. data/app/pb_kits/playbook/_playbook.scss +0 -1
  9. data/app/pb_kits/playbook/data/menu.yml +1 -0
  10. data/app/pb_kits/playbook/index.js +0 -4
  11. data/app/pb_kits/playbook/packs/application.js +55 -0
  12. data/app/pb_kits/playbook/packs/examples.js +174 -0
  13. data/app/pb_kits/playbook/packs/main.scss +12 -0
  14. data/app/pb_kits/playbook/packs/samples.js +19 -0
  15. data/app/pb_kits/playbook/packs/site_styles/_samples.scss +72 -0
  16. data/app/pb_kits/playbook/packs/site_styles/_scaffold.scss +43 -0
  17. data/app/pb_kits/playbook/packs/site_styles/_site-style.scss +135 -0
  18. data/app/pb_kits/playbook/packs/site_styles/docs/_all.scss +9 -0
  19. data/app/pb_kits/playbook/packs/site_styles/docs/_code_snippet.scss +531 -0
  20. data/app/pb_kits/playbook/packs/site_styles/docs/_color_utilities.scss +92 -0
  21. data/app/pb_kits/playbook/packs/site_styles/docs/_flex_examples.scss +15 -0
  22. data/app/pb_kits/playbook/packs/site_styles/docs/_kit_doc.scss +190 -0
  23. data/app/pb_kits/playbook/packs/site_styles/docs/_kits_examples.scss +18 -0
  24. data/app/pb_kits/playbook/packs/site_styles/docs/_markdown.scss +82 -0
  25. data/app/pb_kits/playbook/packs/site_styles/docs/_spacing_tokens.scss +72 -0
  26. data/app/pb_kits/playbook/pb_bar_graph/_bar_graph.html.erb +12 -1
  27. data/app/pb_kits/playbook/pb_bar_graph/bar_graph.rb +1 -1
  28. data/app/pb_kits/playbook/pb_distribution_bar/_distribution_bar.html.erb +8 -1
  29. data/app/pb_kits/playbook/pb_distribution_bar/distribution_bar.rb +8 -5
  30. data/app/pb_kits/playbook/pb_filter/docs/_description.md +3 -0
  31. data/app/pb_kits/playbook/pb_filter/templates/_default.html.erb +1 -1
  32. data/app/pb_kits/playbook/pb_layout/_footer.html.erb +6 -0
  33. data/app/pb_kits/playbook/pb_layout/_header.html.erb +6 -0
  34. data/app/pb_kits/playbook/pb_layout/_layout.jsx +33 -1
  35. data/app/pb_kits/playbook/pb_layout/_layout.scss +48 -3
  36. data/app/pb_kits/playbook/pb_layout/docs/_layout_collection_detail.html.erb +19 -0
  37. data/app/pb_kits/playbook/pb_layout/docs/_layout_collection_detail.jsx +54 -0
  38. data/app/pb_kits/playbook/pb_layout/docs/_layout_collection_detail.md +1 -0
  39. data/app/pb_kits/playbook/pb_layout/docs/_layout_content.html.erb +28 -0
  40. data/app/pb_kits/playbook/pb_layout/docs/_layout_content.jsx +42 -0
  41. data/app/pb_kits/playbook/pb_layout/docs/example.yml +6 -0
  42. data/app/pb_kits/playbook/pb_layout/docs/index.js +3 -0
  43. data/app/pb_kits/playbook/pb_layout/footer.rb +19 -0
  44. data/app/pb_kits/playbook/pb_layout/header.rb +19 -0
  45. data/app/pb_kits/playbook/pb_layout/layout.rb +9 -4
  46. data/app/pb_kits/playbook/pb_legend/_legend.html.erb +10 -1
  47. data/app/pb_kits/playbook/pb_legend/legend.rb +0 -7
  48. data/app/pb_kits/playbook/pb_line_graph/_line_graph.html.erb +13 -1
  49. data/app/pb_kits/playbook/pb_line_graph/line_graph.rb +1 -1
  50. data/app/pb_kits/playbook/pb_person_contact/_person_contact.jsx +6 -7
  51. data/app/pb_kits/playbook/pb_person_contact/docs/_person_contact_with_wrong_numbers.jsx +0 -1
  52. data/app/pb_kits/playbook/pb_popover/_popover.html.erb +2 -2
  53. data/app/pb_kits/playbook/pb_popover/_popover.jsx +3 -3
  54. data/app/pb_kits/playbook/pb_popover/_popover.scss +25 -21
  55. data/app/pb_kits/playbook/pb_popover/index.js +6 -1
  56. data/app/pb_kits/playbook/pb_radio/_radio.scss +4 -0
  57. data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_default.html.erb +1 -1
  58. data/app/pb_kits/playbook/tokens/_colors.scss +23 -22
  59. data/app/pb_kits/playbook/tokens/_typography.scss +5 -5
  60. data/app/pb_kits/playbook/vendor.js +0 -16
  61. data/app/views/layouts/playbook/_mobile_hamburger.html.erb +2 -0
  62. data/app/views/layouts/playbook/_nav.html.erb +13 -0
  63. data/app/views/layouts/playbook/_sidebar.html.erb +52 -0
  64. data/app/views/layouts/playbook/application.html.slim +22 -0
  65. data/app/views/layouts/playbook/fullscreen.html.slim +10 -0
  66. data/app/views/layouts/playbook/grid.html.slim +10 -0
  67. data/app/views/layouts/playbook/samples.html.erb +18 -0
  68. data/app/views/playbook/guides/create_kit.html.slim +16 -0
  69. data/app/views/playbook/guides/create_kit/_file_naming.html.md +2 -0
  70. data/app/views/playbook/guides/create_kit/_generator.html.md +6 -0
  71. data/app/views/playbook/guides/create_kit/_kit_examples.html.md +2 -0
  72. data/app/views/playbook/guides/create_kit/_kit_rails.html.md +2 -0
  73. data/app/views/playbook/guides/create_kit/_kit_react.html.md +2 -0
  74. data/app/views/playbook/guides/create_kit/_layout.html.md +2 -0
  75. data/app/views/playbook/guides/create_kit/_view_objects.html.md +2 -0
  76. data/app/views/playbook/guides/create_kit/_writing_sass.md +10 -0
  77. data/app/views/playbook/guides/use_nitro.html.slim +6 -0
  78. data/app/views/playbook/guides/use_nitro/_local.html.md +2 -0
  79. data/app/views/playbook/guides/use_nitro/_nitro_components.html.md +2 -0
  80. data/app/views/playbook/guides/use_nitro/_versions.html.md +2 -0
  81. data/app/views/playbook/pages/fullscreen.html.slim +10 -0
  82. data/app/views/playbook/pages/grid.html.slim +2 -0
  83. data/app/views/playbook/pages/home.html.slim +4 -0
  84. data/app/views/playbook/pages/kit_category_show.html.erb +14 -0
  85. data/app/views/playbook/pages/kit_show.html.erb +33 -0
  86. data/app/views/playbook/pages/kits.html.erb +12 -0
  87. data/app/views/playbook/pages/principals/_getting_started.html.md +30 -0
  88. data/app/views/playbook/pages/principles.html.slim +3 -0
  89. data/app/views/playbook/pages/tokens.html.slim +15 -0
  90. data/app/views/playbook/pages/tokens/_pb_doc_spacing.html.slim +17 -0
  91. data/app/views/playbook/pages/utilities.html.slim +116 -0
  92. data/app/views/playbook/pages/utilities/_pb_doc_color.html.slim +15 -0
  93. data/app/views/playbook/samples/dashboards/index.html.erb +81 -0
  94. data/app/views/playbook/samples/dashboards/index.jsx +130 -0
  95. data/app/views/playbook/samples/filter_table/index.html.erb +348 -0
  96. data/app/views/playbook/samples/filter_table/index.jsx +433 -0
  97. data/app/views/playbook/samples/registration/index.html.erb +316 -0
  98. data/app/views/playbook/samples/registration/index.jsx +476 -0
  99. data/app/views/playbook/samples/sample_show.html.erb +36 -0
  100. data/lib/playbook/engine.rb +0 -1
  101. data/lib/playbook/version.rb +1 -1
  102. data/lib/tasks/pb_release.rake +0 -3
  103. metadata +72 -15
  104. data/app/pb_kits/playbook/pb_foo/_foo.html.erb +0 -7
  105. data/app/pb_kits/playbook/pb_foo/_foo.jsx +0 -39
  106. data/app/pb_kits/playbook/pb_foo/_foo.scss +0 -3
  107. data/app/pb_kits/playbook/pb_foo/docs/_foo_default.html.erb +0 -1
  108. data/app/pb_kits/playbook/pb_foo/docs/_foo_default.jsx +0 -10
  109. data/app/pb_kits/playbook/pb_foo/docs/example.yml +0 -9
  110. data/app/pb_kits/playbook/pb_foo/docs/index.js +0 -1
  111. data/app/pb_kits/playbook/pb_foo/foo.rb +0 -11
  112. data/app/pb_kits/playbook/tokens/index.scss +0 -11
@@ -1 +1,10 @@
1
- <%= react_component('Legend', object.chart_options) %>
1
+ <%= content_tag(:div, object.text,
2
+ id: object.id,
3
+ data: object.data,
4
+ class: object.classname) do %>
5
+ <%= pb_rails("body", props: {color: object.body_color}) do %>
6
+ <span class="pb_legend_indicator_circle"></span>
7
+ <%= pb_rails("title", props: { dark: object.dark, text: object.prefix_text, tag: "span", size: 4 }) %>
8
+ <%= object.text %>
9
+ <% end %>
10
+ <% end %>
@@ -25,13 +25,6 @@ module Playbook
25
25
  def classname
26
26
  generate_classname("pb_legend_kit", color, dark ? "dark" : "light")
27
27
  end
28
-
29
- def chart_options
30
- {
31
- color: color,
32
- text: text
33
- }
34
- end
35
28
  end
36
29
  end
37
30
  end
@@ -1 +1,13 @@
1
- <%= react_component('LineGraph', object.chart_options) %>
1
+ <%= content_tag(:div, "",
2
+ aria: object.aria,
3
+ id: object.id,
4
+ data: object.data,
5
+ class: object.classname
6
+ ) %>
7
+ <% content_for :pb_js do %>
8
+ <%= javascript_tag do %>
9
+ window.addEventListener('DOMContentLoaded', function() {
10
+ new pbChart('.selector', <%= object.chart_options %>)
11
+ })
12
+ <% end %>
13
+ <% end %>
@@ -44,7 +44,7 @@ module Playbook
44
44
  legend: legend,
45
45
  toggleLegendClick: toggle_legend_click,
46
46
  height: height,
47
- }
47
+ }.to_json.html_safe
48
48
  end
49
49
 
50
50
  def classname
@@ -73,23 +73,22 @@ const PersonContact = (props: PersonContactProps) => {
73
73
  contactDetail={contactObject.contactDetail}
74
74
  contactType={contactObject.contactType}
75
75
  contactValue={contactObject.contactValue}
76
- key={`valid-contact-${index}`}
76
+ key={index}
77
77
  />
78
- ))}
78
+ ))}
79
79
  {wrongContacts().map((contactObject, index) => (
80
- <div key={`wrong-contact-caption-wrapper-${index}`}>
80
+ <>
81
81
  <Caption
82
82
  className="wrong_numbers"
83
- key={`wrong-contact-caption-${index}`}
84
83
  text="wrong number"
85
84
  />
86
85
  <Contact
87
86
  contactType={contactObject.contactType}
88
87
  contactValue={contactObject.contactValue}
89
- key={`wrong-contact-${index}`}
88
+ key={index}
90
89
  />
91
- </div>
92
- ))}
90
+ </>
91
+ ))}
93
92
  </div>
94
93
  )
95
94
  }
@@ -5,7 +5,6 @@ const PersonContactWithWrongNumbers = () => {
5
5
  return (
6
6
  <>
7
7
  <PersonContact
8
- key="person-contact-1"
9
8
  contacts={[
10
9
  {
11
10
  contactType: 'email',
@@ -2,8 +2,8 @@
2
2
  id: object.id,
3
3
  data: object.data,
4
4
  class: object.classname) do %>
5
- <div class="popover_tooltip" id="<%= object.tooltip_id %>" role="tooltip" style="<%= object.z_index_helper %>">
6
- <div class="popover_body <%= object.popover_spacing_helper %>" style="<%= object.width_height_helper %>">
5
+ <div class="pb_popover_tooltip" id="<%= object.tooltip_id %>" role="tooltip" style="<%= object.z_index_helper %>">
6
+ <div class="pb_popover_body <%= object.popover_spacing_helper %>" style="<%= object.width_height_helper %>">
7
7
  <%= capture(&object.children) %>
8
8
  </div>
9
9
  </div>
@@ -90,12 +90,12 @@ const Popover = (props: PbPopoverProps) => {
90
90
  >
91
91
  <div
92
92
  className={classnames(
93
- `${buildCss('popover_tooltip')} show`
93
+ `${buildCss('pb_popover_tooltip')} show`
94
94
  )}
95
95
  >
96
96
  <div
97
97
  className={classnames(
98
- 'popover_body',
98
+ 'pb_popover_body',
99
99
  popoverSpacing
100
100
  )}
101
101
  style={widthHeightStyles()}
@@ -128,7 +128,7 @@ export default class PbReactPopover extends React.Component<PbPopoverProps> {
128
128
 
129
129
  document.body.addEventListener('click', ({ target }) => {
130
130
  const targetIsPopover =
131
- target.closest('[class^=popover_tooltip]') !== null
131
+ target.closest('[class^=pb_popover_tooltip]') !== null
132
132
  const targetIsReference =
133
133
  target.closest('.pb_popover_reference_wrapper') !== null
134
134
 
@@ -19,34 +19,38 @@
19
19
  to {
20
20
  opacity: 0;
21
21
  }
22
+ .pb_popover_body {
23
+ @include pb_card;
24
+ border: 0;
25
+ box-shadow: $shadow_deeper;
26
+ overflow: auto;
27
+ }
22
28
  }
23
29
 
24
- [class^="pb_popover_kit"] {
25
- .popover_tooltip {
26
- opacity: 0;
27
- animation-name: fadeOut;
30
+ .pb_popover_tooltip {
31
+ opacity: 0;
32
+ animation-name: fadeOut;
33
+ animation-duration: 150ms;
34
+ animation-timing-function: linear;
35
+ animation-fill-mode: forwards;
36
+ visibility: hidden;
37
+ pointer-events: none;
38
+ &.show {
39
+ animation-name: fadeIn;
28
40
  animation-duration: 150ms;
29
41
  animation-timing-function: linear;
30
42
  animation-fill-mode: forwards;
31
- visibility: hidden;
32
- pointer-events: none;
33
- &.show {
34
- animation-name: fadeIn;
35
- animation-duration: 150ms;
36
- animation-timing-function: linear;
37
- animation-fill-mode: forwards;
38
- visibility: visible;
39
- pointer-events: initial;
40
- z-index: $z_9;
41
- }
42
- }
43
- .popover_body {
44
- @include pb_card;
45
- border: 0;
46
- box-shadow: $shadow_deeper;
47
- overflow: auto;
43
+ visibility: visible;
44
+ pointer-events: initial;
45
+ z-index: $z_9;
48
46
  }
49
47
  }
48
+ .pb_popover_body {
49
+ @include pb_card;
50
+ border: 0;
51
+ box-shadow: $shadow_deeper;
52
+ overflow: auto;
53
+ }
50
54
 
51
55
 
52
56
  .pb_popover_reference_wrapper {
@@ -8,7 +8,12 @@ export default class PbPopover extends PbEnhancedElement {
8
8
  return '[data-pb-popover-kit]'
9
9
  }
10
10
 
11
+ moveTooltip() {
12
+ document.querySelector('body').appendChild(this.tooltip)
13
+ }
14
+
11
15
  connect() {
16
+ this.moveTooltip()
12
17
  this.popper = createPopper(this.triggerElement, this.tooltip, {
13
18
  placement: this.position,
14
19
  strategy: 'fixed',
@@ -31,7 +36,7 @@ export default class PbPopover extends PbEnhancedElement {
31
36
  }
32
37
 
33
38
  setTimeout(() => {
34
- // this.popper.scheduleUpdate()
39
+ this.popper.update()
35
40
  this.tooltip.classList.toggle('show')
36
41
  }, 0)
37
42
  })
@@ -8,6 +8,7 @@
8
8
 
9
9
  .pb_radio_button {
10
10
  width: 22px;
11
+ min-width: 22px;
11
12
  height: 22px;
12
13
  border-radius: 1000px;
13
14
  border: 2px solid $border_light;
@@ -29,6 +30,9 @@
29
30
  }
30
31
  }
31
32
  &[class*=_dark] {
33
+ .pb_radio_button {
34
+ border-color: $border_dark;
35
+ }
32
36
  input:checked ~ .pb_radio_button {
33
37
  border: 6px solid $primary;
34
38
  }
@@ -46,6 +46,6 @@
46
46
  if (!event.target.dataset.typeaheadExample) return;
47
47
 
48
48
  document.querySelector("[data-typeahead-example-selected-option] [data-selected-option]").innerHTML = ""
49
- document.querySelector("[data-typeahead-example-selected-option] [data-selected-option]").appendChild(event.detail.selected)
49
+ document.querySelector("[data-typeahead-example-selected-option] [data-selected-option]").innerHTML = event.detail.selected.innerHTML
50
50
  })
51
51
  <% end %>
@@ -1,10 +1,10 @@
1
1
  @import "./opacity";
2
2
 
3
- /*=====================================
4
- Base colors should not be documented.
5
- Only document color use.
3
+ //=====================================
4
+ // Base colors should not be documented.
5
+ // Only document color use.
6
6
 
7
- Colors -----------------------------*/
7
+ // Colors -----------------------------
8
8
  $royal: #0056CF;
9
9
  $purple: #9E64E9;
10
10
  $teal: #00C4D7;
@@ -22,11 +22,11 @@ $colors: (
22
22
  orange: $orange
23
23
  );
24
24
 
25
- /* Specialty Gradient -----------------*/
25
+ // Specialty Gradient -----------------
26
26
  $gradient_start: #1C75F2;
27
27
  $gradient_end: $royal;
28
28
 
29
- /* Interface colors -------------------*/
29
+ // Interface colors -------------------
30
30
  $white: #FFFFFF;
31
31
  $silver: #F3F7FB;
32
32
  $slate: #C1CDD6;
@@ -42,7 +42,7 @@ $interface_colors: (
42
42
 
43
43
  );
44
44
 
45
- /* Main colors ------------------------*/
45
+ // Main colors ------------------------
46
46
  $primary: $royal;
47
47
  $secondary: $yellow;
48
48
  $tertiary: $purple;
@@ -51,9 +51,9 @@ $main_colors: (
51
51
  secondary: $secondary,
52
52
  tertiary: $tertiary
53
53
  );
54
- /*=====================================
54
+ //=====================================
55
55
 
56
- Background colors ------------------*/
56
+ // Background colors ------------------
57
57
  $bg_light: $silver;
58
58
  $bg_dark: #172257;
59
59
  $background_colors: (
@@ -61,7 +61,7 @@ $background_colors: (
61
61
  bg_dark: $bg_dark
62
62
  );
63
63
 
64
- /* Card colors ------------------*/
64
+ // Card colors ------------------
65
65
  $card_light: $white;
66
66
  $card_dark: rgba($white, $opacity_1);
67
67
  $card_colors: (
@@ -74,15 +74,15 @@ $action_colors: (
74
74
  primary_action: $primary-action
75
75
  );
76
76
 
77
- /* Active colors ----------------------*/
77
+ // Active colors ----------------------
78
78
  $active_light: lighten(#E5F2FF, 3.5%);
79
- $active_dark: #0082ff;
79
+ $active_dark: #0082ff;
80
80
  $active_colors: (
81
81
  active_light: $active_light,
82
82
  active_dark: $active_dark
83
83
  );
84
84
 
85
- /* Hover colors -----------------------*/
85
+ // Hover colors -----------------------
86
86
  $hover_light: darken($silver, 5%);
87
87
  $hover_dark: rgba($white, $opacity_2);
88
88
  $hover_colors: (
@@ -90,7 +90,7 @@ $hover_colors: (
90
90
  hover_dark: $hover_dark
91
91
  );
92
92
 
93
- /* Focus colors -----------------------*/
93
+ // Focus colors -----------------------
94
94
  $focus_input_light: rgba($active_light, $opacity_5);
95
95
  $focus_input_dark: rgba(#144075, $opacity_5);
96
96
  $focus_input_colors: (
@@ -98,7 +98,7 @@ $focus_input_colors: (
98
98
  focus_input_dark: $focus_input_dark
99
99
  );
100
100
 
101
- /* Border colors ----------------------*/
101
+ // Border colors ----------------------
102
102
  $border_light: #E4E8F0;
103
103
  $border_dark: rgba($white, $opacity_1);
104
104
  $border_colors: (
@@ -106,13 +106,13 @@ $border_colors: (
106
106
  border_dark: $border_dark
107
107
  );
108
108
 
109
- /* Shadow colors ----------------------*/
109
+ // Shadow colors ----------------------
110
110
  $shadow: rgba(#3C6AAC, $opacity_2);
111
111
  $shadow_colors: (
112
112
  shadow: $shadow,
113
113
  );
114
114
 
115
- /* Text colors ------------------------*/
115
+ // Text colors ------------------------
116
116
  $text_lt_default: $charcoal;
117
117
  $text_lt_light: #919EAB;
118
118
  $text_lt_lighter: $slate;
@@ -128,7 +128,7 @@ $text_colors: (
128
128
  text_dk_lighter: $text_dk_lighter
129
129
  );
130
130
 
131
- /* Data colors ------------------------*/
131
+ // Data colors ------------------------
132
132
  $data_1: $royal;
133
133
  $data_2: $yellow;
134
134
  $data_3: $purple;
@@ -148,7 +148,7 @@ $data_colors: (
148
148
  data_8: $data_8
149
149
  );
150
150
 
151
- /* Status colors ----------------------*/
151
+ // Status colors ----------------------
152
152
  $success: $green;
153
153
  $warning: $yellow;
154
154
  $error: $red;
@@ -174,10 +174,10 @@ $status_color_text: (
174
174
  primary: $primary
175
175
  );
176
176
 
177
- /* Link colors ------------------------*/
177
+ // Link colors ------------------------
178
178
  $primary_action: $primary;
179
179
 
180
- /* Product colors ---------------------*/
180
+ // Product colors ---------------------
181
181
  $windows: $royal;
182
182
  $siding: $yellow;
183
183
  $doors: $teal;
@@ -195,7 +195,7 @@ $product_colors: (
195
195
  insulation: $insulation
196
196
  );
197
197
 
198
- /* Category colors ---------------------*/
198
+ // Category colors ---------------------
199
199
  $category_1: $royal;
200
200
  $category_2: #0CD2E5;
201
201
  $category_3: $yellow;
@@ -252,6 +252,7 @@ $transparent: transparent;
252
252
  }
253
253
 
254
254
  :export {
255
+
255
256
  @mixin export-colors($colors-list) {
256
257
  @each $name, $color in $colors-list {
257
258
  #{$name}: $color;
@@ -2,7 +2,7 @@
2
2
  $font_family_base: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans_serif;
3
3
 
4
4
 
5
- /* CLEAN UP AND REMOVE */
5
+ // CLEAN UP AND REMOVE
6
6
  $font_jumbo: 36px;
7
7
  $font_largest: 32px;
8
8
  $font_larger: 28px;
@@ -29,7 +29,7 @@ $text_smaller: $font_smaller;
29
29
  $text_smallest: $font_smallest;
30
30
 
31
31
 
32
- /* Headings */
32
+ // Headings
33
33
  $heading_1: 48px;
34
34
  $heading_2: 34px;
35
35
  $heading_3: $font_larger;
@@ -38,7 +38,7 @@ $heading_4: $font_base;
38
38
 
39
39
 
40
40
 
41
- /* Letter Spacing */
41
+ // Letter Spacing
42
42
  $lspace_tightest: _.1em;
43
43
  $lspace_tighter: _.07em;
44
44
  $lspace_tight: _.03em;
@@ -52,11 +52,11 @@ $lspace_super_loosest: .2em;
52
52
 
53
53
 
54
54
 
55
- /* Standard Font Weights */
55
+ // Standard Font Weights
56
56
  $bold: 600;
57
57
  $regular: 400;
58
58
 
59
- /* Non_Standard Font Weights */
59
+ // Non_Standard Font Weights
60
60
  $extrabold: 900;
61
61
  $boldest: 800;
62
62
  $bolder: 700;
@@ -19,19 +19,3 @@ PbTypeahead.start()
19
19
 
20
20
  import PbTable from './pb_table'
21
21
  PbTable.start()
22
-
23
- // React-Rendered Rails Kits =====
24
-
25
- import WebpackerReact from 'webpacker-react'
26
-
27
- import BarGraph from './pb_bar_graph/_bar_graph.jsx'
28
- import DistributionBar from './pb_distribution_bar/_distribution_bar.jsx'
29
- import Legend from './pb_legend/_legend.jsx'
30
- import LineGraph from './pb_line_graph/_line_graph.jsx'
31
-
32
- WebpackerReact.setup({
33
- BarGraph,
34
- DistributionBar,
35
- Legend,
36
- LineGraph,
37
- })