playbook_ui_docs 15.1.0 → 15.2.0.pre.alpha.PLAY236711331
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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_button/docs/_button_loading.html.erb +7 -3
- data/app/pb_kits/playbook/pb_button/docs/_button_loading.jsx +29 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_managed_disabled.html.erb +31 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_managed_disabled.md +7 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_managed_disabled_helper.html.erb +21 -0
- data/app/pb_kits/playbook/pb_button/docs/_button_managed_disabled_helper.md +7 -0
- data/app/pb_kits/playbook/pb_button/docs/example.yml +2 -0
- data/app/pb_kits/playbook/pb_dialog/docs/_dialog_stacked_alert.html.erb +16 -16
- data/app/pb_kits/playbook/pb_dialog/docs/_dialog_stacked_alert.jsx +2 -1
- data/app/pb_kits/playbook/pb_dialog/docs/_dialog_status.html.erb +31 -31
- data/app/pb_kits/playbook/pb_dialog/docs/_dialog_status.jsx +4 -3
- data/app/pb_kits/playbook/pb_form/docs/_form_form_with_validate.html.erb +12 -1
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_description.md +3 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_colors.html.erb +34 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_colors.jsx +52 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_colors.md +5 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_default.html.erb +34 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_default.jsx +45 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_height.html.erb +47 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_height.jsx +64 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_height.md +3 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_legend.html.erb +24 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_legend.jsx +37 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_legend_nonclickable.html.erb +39 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_legend_nonclickable.jsx +45 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_legend_position.html.erb +86 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_legend_position.jsx +116 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/_pb_line_graph_legend_position.md +11 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/example.yml +20 -0
- data/app/pb_kits/playbook/pb_pb_line_graph/docs/index.js +6 -0
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_default.html.erb +8 -4
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_default.jsx +5 -0
- data/app/pb_kits/playbook/pb_text_input/docs/_text_input_default.md +1 -0
- data/dist/playbook-doc.js +2 -2
- metadata +25 -2
| @@ -0,0 +1,64 @@ | |
| 1 | 
            +
            import React from 'react'
         | 
| 2 | 
            +
            import PbLineGraph from '../../pb_pb_line_graph/_pb_line_graph'
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            const data = [{
         | 
| 5 | 
            +
              name: 'Number of Installations',
         | 
| 6 | 
            +
              data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],
         | 
| 7 | 
            +
            }]
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            const categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            const chartOptionsFirst = {
         | 
| 12 | 
            +
                title: {
         | 
| 13 | 
            +
                  text: 'Fixed Height (300px)',
         | 
| 14 | 
            +
                },
         | 
| 15 | 
            +
                chart: {
         | 
| 16 | 
            +
                  height: '300px'
         | 
| 17 | 
            +
                },
         | 
| 18 | 
            +
                xAxis: {
         | 
| 19 | 
            +
                  categories: categories,
         | 
| 20 | 
            +
                },
         | 
| 21 | 
            +
                yAxis: {
         | 
| 22 | 
            +
                  min: 0,
         | 
| 23 | 
            +
                  title: {
         | 
| 24 | 
            +
                    text: 'Number of Employees',
         | 
| 25 | 
            +
                  },
         | 
| 26 | 
            +
                },
         | 
| 27 | 
            +
                series: data
         | 
| 28 | 
            +
              }
         | 
| 29 | 
            +
             | 
| 30 | 
            +
              const chartOptionsSecond = {
         | 
| 31 | 
            +
                title: {
         | 
| 32 | 
            +
                  text: 'Percentage Height (50%)',
         | 
| 33 | 
            +
                },
         | 
| 34 | 
            +
                chart: {
         | 
| 35 | 
            +
                  height: '50%'
         | 
| 36 | 
            +
                },
         | 
| 37 | 
            +
                xAxis: {
         | 
| 38 | 
            +
                  categories: categories,
         | 
| 39 | 
            +
                },
         | 
| 40 | 
            +
                yAxis: {
         | 
| 41 | 
            +
                  min: 0,
         | 
| 42 | 
            +
                  title: {
         | 
| 43 | 
            +
                    text: 'Number of Employees',
         | 
| 44 | 
            +
                  },
         | 
| 45 | 
            +
                },
         | 
| 46 | 
            +
                series: data
         | 
| 47 | 
            +
              }
         | 
| 48 | 
            +
             | 
| 49 | 
            +
            const PbLineGraphHeight = (props) => {
         | 
| 50 | 
            +
              return (
         | 
| 51 | 
            +
                <div>
         | 
| 52 | 
            +
                  <PbLineGraph
         | 
| 53 | 
            +
                      options={chartOptionsFirst}
         | 
| 54 | 
            +
                      {...props}
         | 
| 55 | 
            +
                  />
         | 
| 56 | 
            +
                  <PbLineGraph
         | 
| 57 | 
            +
                      options={chartOptionsSecond}
         | 
| 58 | 
            +
                      {...props}
         | 
| 59 | 
            +
                  />
         | 
| 60 | 
            +
                </div>
         | 
| 61 | 
            +
              )
         | 
| 62 | 
            +
            }
         | 
| 63 | 
            +
             | 
| 64 | 
            +
            export default PbLineGraphHeight
         | 
| @@ -0,0 +1,3 @@ | |
| 1 | 
            +
            By default, Highcharts have a height of 400px, but this can be customized. You can override the default by specifying either a percentage or a fixed pixel value.
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            Using a percentage maintains a consistent aspect ratio across different responsive sizes. For example, setting the height to 50% makes the chart’s height half of its width.
         | 
| @@ -0,0 +1,24 @@ | |
| 1 | 
            +
            <% data = [{
         | 
| 2 | 
            +
              name: 'Number of Installations',
         | 
| 3 | 
            +
              data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],    }] %>
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            <% categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug'] %>
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            <% chart_options = {
         | 
| 8 | 
            +
              series: data,
         | 
| 9 | 
            +
              title: { text: "Line Graph with Legend" },
         | 
| 10 | 
            +
              xAxis: {
         | 
| 11 | 
            +
                categories: categories,
         | 
| 12 | 
            +
              },
         | 
| 13 | 
            +
              yAxis: {
         | 
| 14 | 
            +
                min: 0,
         | 
| 15 | 
            +
                title: {
         | 
| 16 | 
            +
                  text: "Number of Employees",
         | 
| 17 | 
            +
                },
         | 
| 18 | 
            +
              },
         | 
| 19 | 
            +
              legend: {
         | 
| 20 | 
            +
                enabled: true,
         | 
| 21 | 
            +
              },
         | 
| 22 | 
            +
            } %>
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chart_options}) %>
         | 
| @@ -0,0 +1,37 @@ | |
| 1 | 
            +
            import React from 'react'
         | 
| 2 | 
            +
            import PbLineGraph from '../../pb_pb_line_graph/_pb_line_graph'
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            const data = [{
         | 
| 5 | 
            +
              name: 'Number of Installations',
         | 
| 6 | 
            +
              data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],
         | 
| 7 | 
            +
            }]
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            const categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug']
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            const chartOptions = {
         | 
| 12 | 
            +
              series: data,
         | 
| 13 | 
            +
              title: { text: "Line Graph with Legend" },
         | 
| 14 | 
            +
              xAxis: {
         | 
| 15 | 
            +
                categories: categories,
         | 
| 16 | 
            +
              },
         | 
| 17 | 
            +
              yAxis: {
         | 
| 18 | 
            +
                min: 0,
         | 
| 19 | 
            +
                title: {
         | 
| 20 | 
            +
                  text: "Number of Employees",
         | 
| 21 | 
            +
                },
         | 
| 22 | 
            +
              },
         | 
| 23 | 
            +
              legend: {
         | 
| 24 | 
            +
                enabled: true,
         | 
| 25 | 
            +
              },
         | 
| 26 | 
            +
            }
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            const PbLineGraphLegend = (props) => (
         | 
| 29 | 
            +
              <div>
         | 
| 30 | 
            +
                <PbLineGraph
         | 
| 31 | 
            +
                    options={chartOptions}
         | 
| 32 | 
            +
                    {...props}
         | 
| 33 | 
            +
                />
         | 
| 34 | 
            +
              </div>
         | 
| 35 | 
            +
            )
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            export default PbLineGraphLegend
         | 
| @@ -0,0 +1,39 @@ | |
| 1 | 
            +
            <% data = [{
         | 
| 2 | 
            +
              name: 'Number of Installations',
         | 
| 3 | 
            +
              data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],    
         | 
| 4 | 
            +
              }] %>
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            <% categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug'] %>
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            <% chart_options = {
         | 
| 9 | 
            +
              series: data,
         | 
| 10 | 
            +
              title: { text: "Line Graph with Legend Non Clickable" },
         | 
| 11 | 
            +
              xAxis: {
         | 
| 12 | 
            +
                categories: categories,
         | 
| 13 | 
            +
              },
         | 
| 14 | 
            +
              yAxis: {
         | 
| 15 | 
            +
                title: {
         | 
| 16 | 
            +
                  text: 'Number of Employees',
         | 
| 17 | 
            +
                },
         | 
| 18 | 
            +
              },
         | 
| 19 | 
            +
              legend: {
         | 
| 20 | 
            +
                enabled: true
         | 
| 21 | 
            +
              },
         | 
| 22 | 
            +
            } %>
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chart_options, id: "installations-chart"}) %>
         | 
| 25 | 
            +
             | 
| 26 | 
            +
            <script>
         | 
| 27 | 
            +
            // Prevent legend item click events from toggling series visibility
         | 
| 28 | 
            +
            document.addEventListener('click', function (e) {
         | 
| 29 | 
            +
              var container = document.getElementById('installations-chart');
         | 
| 30 | 
            +
              if (!container) return;
         | 
| 31 | 
            +
             | 
| 32 | 
            +
              var legend = container.querySelector('.highcharts-legend');
         | 
| 33 | 
            +
              if (legend && legend.contains(e.target)) {
         | 
| 34 | 
            +
                e.stopImmediatePropagation();
         | 
| 35 | 
            +
                e.preventDefault();
         | 
| 36 | 
            +
              }
         | 
| 37 | 
            +
            }, true); 
         | 
| 38 | 
            +
             | 
| 39 | 
            +
            </script>
         | 
| @@ -0,0 +1,45 @@ | |
| 1 | 
            +
            import React from 'react'
         | 
| 2 | 
            +
            import PbLineGraph from '../../pb_pb_line_graph/_pb_line_graph'
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            const data = [{
         | 
| 5 | 
            +
              name: 'Number of Installations',
         | 
| 6 | 
            +
              data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],
         | 
| 7 | 
            +
            }]
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            const categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug']
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            const chartOptions = {
         | 
| 12 | 
            +
              title: {
         | 
| 13 | 
            +
                text: 'Line Graph with Legend Non Clickable',
         | 
| 14 | 
            +
              },
         | 
| 15 | 
            +
              xAxis: {
         | 
| 16 | 
            +
                categories: categories,
         | 
| 17 | 
            +
              },
         | 
| 18 | 
            +
              yAxis: {
         | 
| 19 | 
            +
                title: {
         | 
| 20 | 
            +
                  text: 'Number of Employees',
         | 
| 21 | 
            +
                },
         | 
| 22 | 
            +
              },
         | 
| 23 | 
            +
              legend: {
         | 
| 24 | 
            +
                enabled: true,
         | 
| 25 | 
            +
                events: {
         | 
| 26 | 
            +
                  itemClick: function () {
         | 
| 27 | 
            +
                    return false;
         | 
| 28 | 
            +
                  }
         | 
| 29 | 
            +
                }
         | 
| 30 | 
            +
              },
         | 
| 31 | 
            +
              series: data
         | 
| 32 | 
            +
            }
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            const PbLineGraphLegendNonclickable = (props) => {
         | 
| 35 | 
            +
              return (
         | 
| 36 | 
            +
                <div>
         | 
| 37 | 
            +
                  <PbLineGraph
         | 
| 38 | 
            +
                      options={chartOptions}
         | 
| 39 | 
            +
                      {...props}
         | 
| 40 | 
            +
                  />
         | 
| 41 | 
            +
                </div>
         | 
| 42 | 
            +
              )
         | 
| 43 | 
            +
            }
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            export default PbLineGraphLegendNonclickable
         | 
| @@ -0,0 +1,86 @@ | |
| 1 | 
            +
            <% data = [{
         | 
| 2 | 
            +
                name: 'Installation',
         | 
| 3 | 
            +
                data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],
         | 
| 4 | 
            +
              }, {
         | 
| 5 | 
            +
                name: 'Manufacturing',
         | 
| 6 | 
            +
                data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434],
         | 
| 7 | 
            +
              }, {
         | 
| 8 | 
            +
                name: 'Sales & Distribution',
         | 
| 9 | 
            +
                data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387],
         | 
| 10 | 
            +
              }, {
         | 
| 11 | 
            +
                name: 'Project Development',
         | 
| 12 | 
            +
                data: [nil, nil, 7988, 12169, 15112, 22452, 34400, 34227],
         | 
| 13 | 
            +
              }, {
         | 
| 14 | 
            +
                name: 'Other',
         | 
| 15 | 
            +
                data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111],
         | 
| 16 | 
            +
              }] %>
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            <% categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug'] %>
         | 
| 19 | 
            +
             | 
| 20 | 
            +
             | 
| 21 | 
            +
            <% chartOptionsFirst = {
         | 
| 22 | 
            +
                title: { text: "Alignment of Legend" },
         | 
| 23 | 
            +
                series: data,
         | 
| 24 | 
            +
                xAxis: {
         | 
| 25 | 
            +
                  categories: categories,
         | 
| 26 | 
            +
                },
         | 
| 27 | 
            +
                yAxis: {
         | 
| 28 | 
            +
                  min: 0,
         | 
| 29 | 
            +
                  title: {
         | 
| 30 | 
            +
                    text: "Number of Employees",
         | 
| 31 | 
            +
                  },
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                legend: {
         | 
| 34 | 
            +
                  enabled: true,
         | 
| 35 | 
            +
                  align: 'right',
         | 
| 36 | 
            +
                  verticalAlign: 'top'
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
              } %>
         | 
| 39 | 
            +
             | 
| 40 | 
            +
            <%= pb_rails("title", props: {size: 4, text: "align | vertical_align", padding_top: "sm", padding_bottom: "sm"})%>
         | 
| 41 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chartOptionsFirst}) %>
         | 
| 42 | 
            +
             | 
| 43 | 
            +
              <% chartOptionsSecond = {
         | 
| 44 | 
            +
                title: { text: "Layout of Legend" },
         | 
| 45 | 
            +
                series: data,
         | 
| 46 | 
            +
                xAxis: {
         | 
| 47 | 
            +
                  categories: categories,
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                yAxis: {
         | 
| 50 | 
            +
                  min: 0,
         | 
| 51 | 
            +
                  title: {
         | 
| 52 | 
            +
                    text: "Number of Employees",
         | 
| 53 | 
            +
                  },
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                legend: {
         | 
| 56 | 
            +
                  enabled: true,
         | 
| 57 | 
            +
                  layout: 'vertical'
         | 
| 58 | 
            +
                },
         | 
| 59 | 
            +
              } %>
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            <%= pb_rails("title", props: {size: 4, text: "layout", padding_top: "sm", padding_bottom: "sm"})%>
         | 
| 62 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chartOptionsSecond}) %>
         | 
| 63 | 
            +
             | 
| 64 | 
            +
              <% chartOptionsThird = {
         | 
| 65 | 
            +
                title: { text: "Offset of Legend" },
         | 
| 66 | 
            +
                series: data,
         | 
| 67 | 
            +
                xAxis: {
         | 
| 68 | 
            +
                  categories: categories,
         | 
| 69 | 
            +
                },
         | 
| 70 | 
            +
                yAxis: {
         | 
| 71 | 
            +
                  min: 0,
         | 
| 72 | 
            +
                  title: {
         | 
| 73 | 
            +
                    text: "Number of Employees",
         | 
| 74 | 
            +
                  },
         | 
| 75 | 
            +
                },
         | 
| 76 | 
            +
                legend: {
         | 
| 77 | 
            +
                  enabled: true,
         | 
| 78 | 
            +
                  layout: 'vertical',
         | 
| 79 | 
            +
                  x: 100,
         | 
| 80 | 
            +
                  y: 10
         | 
| 81 | 
            +
                },
         | 
| 82 | 
            +
              } %>
         | 
| 83 | 
            +
             | 
| 84 | 
            +
            <%= pb_rails("title", props: {size: 4, text: "x | y", padding_top: "sm", padding_bottom: "sm"})%>
         | 
| 85 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chartOptionsThird}) %>
         | 
| 86 | 
            +
             | 
| @@ -0,0 +1,116 @@ | |
| 1 | 
            +
            import React from 'react'
         | 
| 2 | 
            +
            import PbLineGraph from '../../pb_pb_line_graph/_pb_line_graph'
         | 
| 3 | 
            +
            import Title from '../../pb_title/_title'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            const data = [{
         | 
| 6 | 
            +
              name: 'Installation',
         | 
| 7 | 
            +
              data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],
         | 
| 8 | 
            +
            }, {
         | 
| 9 | 
            +
              name: 'Manufacturing',
         | 
| 10 | 
            +
              data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434],
         | 
| 11 | 
            +
            }, {
         | 
| 12 | 
            +
              name: 'Sales & Distribution',
         | 
| 13 | 
            +
              data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387],
         | 
| 14 | 
            +
            }, {
         | 
| 15 | 
            +
              name: 'Project Development',
         | 
| 16 | 
            +
              data: [null, null, 7988, 12169, 15112, 22452, 34400, 34227],
         | 
| 17 | 
            +
            }, {
         | 
| 18 | 
            +
              name: 'Other',
         | 
| 19 | 
            +
              data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111],
         | 
| 20 | 
            +
            }]
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            const categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug']
         | 
| 23 | 
            +
             | 
| 24 | 
            +
              const chartOptionsFirst = {
         | 
| 25 | 
            +
                title: { text: "Alignment of Legend" },
         | 
| 26 | 
            +
                series: data,
         | 
| 27 | 
            +
                xAxis: {
         | 
| 28 | 
            +
                  categories: categories,
         | 
| 29 | 
            +
                },
         | 
| 30 | 
            +
                yAxis: {
         | 
| 31 | 
            +
                  min: 0,
         | 
| 32 | 
            +
                  title: {
         | 
| 33 | 
            +
                    text: "Number of Employees",
         | 
| 34 | 
            +
                  },
         | 
| 35 | 
            +
                },
         | 
| 36 | 
            +
                legend: {
         | 
| 37 | 
            +
                  enabled: true,
         | 
| 38 | 
            +
                  align: 'right',
         | 
| 39 | 
            +
                  verticalAlign: 'top'
         | 
| 40 | 
            +
                },
         | 
| 41 | 
            +
              }
         | 
| 42 | 
            +
             | 
| 43 | 
            +
              const chartOptionsSecond = {
         | 
| 44 | 
            +
                title: { text: "Layout of Legend" },
         | 
| 45 | 
            +
                series: data,
         | 
| 46 | 
            +
                xAxis: {
         | 
| 47 | 
            +
                  categories: categories,
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                yAxis: {
         | 
| 50 | 
            +
                  min: 0,
         | 
| 51 | 
            +
                  title: {
         | 
| 52 | 
            +
                    text: "Number of Employees",
         | 
| 53 | 
            +
                  },
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                legend: {
         | 
| 56 | 
            +
                  enabled: true,
         | 
| 57 | 
            +
                  layout: 'vertical'
         | 
| 58 | 
            +
                },
         | 
| 59 | 
            +
              }
         | 
| 60 | 
            +
             | 
| 61 | 
            +
              const chartOptionsThird = {
         | 
| 62 | 
            +
                title: { text: "Offset of Legend" },
         | 
| 63 | 
            +
                series: data,
         | 
| 64 | 
            +
                xAxis: {
         | 
| 65 | 
            +
                  categories: categories,
         | 
| 66 | 
            +
                },
         | 
| 67 | 
            +
                yAxis: {
         | 
| 68 | 
            +
                  min: 0,
         | 
| 69 | 
            +
                  title: {
         | 
| 70 | 
            +
                    text: "Number of Employees",
         | 
| 71 | 
            +
                  },
         | 
| 72 | 
            +
                },
         | 
| 73 | 
            +
                legend: {
         | 
| 74 | 
            +
                  enabled: true,
         | 
| 75 | 
            +
                  layout: 'vertical',
         | 
| 76 | 
            +
                  x: 100,
         | 
| 77 | 
            +
                  y: 10
         | 
| 78 | 
            +
                },
         | 
| 79 | 
            +
              }
         | 
| 80 | 
            +
             | 
| 81 | 
            +
            const PbLineGraphLegendPosition = (props) => (
         | 
| 82 | 
            +
              <div>
         | 
| 83 | 
            +
                <Title
         | 
| 84 | 
            +
                    paddingY="sm"
         | 
| 85 | 
            +
                    size={4}
         | 
| 86 | 
            +
                    tag="h4"
         | 
| 87 | 
            +
                    text="align | verticalAlign"
         | 
| 88 | 
            +
                />
         | 
| 89 | 
            +
                <PbLineGraph
         | 
| 90 | 
            +
                    options={chartOptionsFirst}
         | 
| 91 | 
            +
                    {...props}
         | 
| 92 | 
            +
                /> 
         | 
| 93 | 
            +
                <Title
         | 
| 94 | 
            +
                    paddingY="sm"
         | 
| 95 | 
            +
                    size={4}
         | 
| 96 | 
            +
                    tag="h4"
         | 
| 97 | 
            +
                    text="layout"
         | 
| 98 | 
            +
                />
         | 
| 99 | 
            +
                <PbLineGraph
         | 
| 100 | 
            +
                    options={chartOptionsSecond}
         | 
| 101 | 
            +
                    {...props}
         | 
| 102 | 
            +
                /> 
         | 
| 103 | 
            +
                <Title
         | 
| 104 | 
            +
                    paddingY="sm"
         | 
| 105 | 
            +
                    size={4}
         | 
| 106 | 
            +
                    tag="h4"
         | 
| 107 | 
            +
                    text="x | y"
         | 
| 108 | 
            +
                />
         | 
| 109 | 
            +
                <PbLineGraph
         | 
| 110 | 
            +
                    options={chartOptionsThird}
         | 
| 111 | 
            +
                    {...props}
         | 
| 112 | 
            +
                />
         | 
| 113 | 
            +
              </div>
         | 
| 114 | 
            +
            )
         | 
| 115 | 
            +
             | 
| 116 | 
            +
            export default PbLineGraphLegendPosition
         | 
| @@ -0,0 +1,11 @@ | |
| 1 | 
            +
            Highcharts provides many options for customizing the legend display. This example showcases the following:
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            `align` can be used to align the legend left, right or center (defaults to center)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            `verticalAlign` can be used to place the legend above the graph. Options are top, middle, bottom with default set to bottom
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            `layout` determines the position of the legend items. Options are horizontal, vertical or proximate with default set to horizontal `layout: proximate` will place the legend items as close as possible to the graphs they're representing. It will also determine whether to place the legend above/below or on the side of the plot area, if the legend is in a corner.
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            `x` offsets the legend relative to its horizontal alignment. Negative x moves it to the left, positive x moves it to the right (defaults to 0)
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            `y` offsets the legend relative to its vertical alignment. Negative y moves it up, positive y moves it down (defaults to 0)
         | 
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            examples:
         | 
| 2 | 
            +
              
         | 
| 3 | 
            +
              rails:
         | 
| 4 | 
            +
              - pb_line_graph_default: Default
         | 
| 5 | 
            +
              - pb_line_graph_legend: Legend
         | 
| 6 | 
            +
              - pb_line_graph_legend_position: Legend Position
         | 
| 7 | 
            +
              - pb_line_graph_legend_nonclickable: Legend NonClickable
         | 
| 8 | 
            +
              - pb_line_graph_height: Height
         | 
| 9 | 
            +
              - pb_line_graph_colors: Color Overrides
         | 
| 10 | 
            +
              
         | 
| 11 | 
            +
              
         | 
| 12 | 
            +
              react:
         | 
| 13 | 
            +
              - pb_line_graph_default: Default
         | 
| 14 | 
            +
              - pb_line_graph_legend: Legend
         | 
| 15 | 
            +
              - pb_line_graph_legend_position: Legend Position
         | 
| 16 | 
            +
              - pb_line_graph_legend_nonclickable: Legend NonClickable
         | 
| 17 | 
            +
              - pb_line_graph_height: Height
         | 
| 18 | 
            +
              - pb_line_graph_colors: Color Overrides
         | 
| 19 | 
            +
              
         | 
| 20 | 
            +
              
         | 
| @@ -0,0 +1,6 @@ | |
| 1 | 
            +
            export { default as PbLineGraphDefault } from './_pb_line_graph_default.jsx'
         | 
| 2 | 
            +
            export { default as PbLineGraphLegend } from './_pb_line_graph_legend.jsx'
         | 
| 3 | 
            +
            export { default as PbLineGraphLegendPosition } from './_pb_line_graph_legend_position.jsx'
         | 
| 4 | 
            +
            export { default as PbLineGraphLegendNonclickable } from './_pb_line_graph_legend_nonclickable.jsx'
         | 
| 5 | 
            +
            export { default as PbLineGraphHeight } from './_pb_line_graph_height.jsx'
         | 
| 6 | 
            +
            export { default as PbLineGraphColors } from './_pb_line_graph_colors.jsx'
         | 
| @@ -9,23 +9,27 @@ | |
| 9 9 |  | 
| 10 10 | 
             
            <%= pb_rails("text_input", props: {
         | 
| 11 11 | 
             
              label: "Last Name",
         | 
| 12 | 
            -
              placeholder: "Enter last name"
         | 
| 12 | 
            +
              placeholder: "Enter last name",
         | 
| 13 | 
            +
              id: "last-name"
         | 
| 13 14 | 
             
            }) %>
         | 
| 14 15 |  | 
| 15 16 | 
             
            <%= pb_rails("text_input", props: {
         | 
| 16 17 | 
             
                label: "Phone Number",
         | 
| 17 18 | 
             
                type: "phone",
         | 
| 18 | 
            -
                placeholder: "Enter phone number"
         | 
| 19 | 
            +
                placeholder: "Enter phone number",
         | 
| 20 | 
            +
                id: "phone"
         | 
| 19 21 | 
             
            }) %>
         | 
| 20 22 |  | 
| 21 23 | 
             
            <%= pb_rails("text_input", props: {
         | 
| 22 24 | 
             
                label: "Email Address",
         | 
| 23 25 | 
             
                type: "email",
         | 
| 24 | 
            -
                placeholder: "Enter email address"
         | 
| 26 | 
            +
                placeholder: "Enter email address",
         | 
| 27 | 
            +
                id: "email"
         | 
| 25 28 | 
             
            }) %>
         | 
| 26 29 |  | 
| 27 30 | 
             
            <%= pb_rails("text_input", props: {
         | 
| 28 31 | 
             
                label: "Zip Code",
         | 
| 29 32 | 
             
                type: "number",
         | 
| 30 | 
            -
                placeholder: "Enter zip code"
         | 
| 33 | 
            +
                placeholder: "Enter zip code",
         | 
| 34 | 
            +
                id: "zip"
         | 
| 31 35 | 
             
            }) %>
         | 
| @@ -38,6 +38,7 @@ const TextInputDefault = (props) => { | |
| 38 38 | 
             
                      {...props}
         | 
| 39 39 | 
             
                  />
         | 
| 40 40 | 
             
                  <TextInput
         | 
| 41 | 
            +
                      id="last-name"
         | 
| 41 42 | 
             
                      label="Last Name"
         | 
| 42 43 | 
             
                      name="lastName"
         | 
| 43 44 | 
             
                      onChange={handleOnChangeFormField}
         | 
| @@ -46,6 +47,7 @@ const TextInputDefault = (props) => { | |
| 46 47 | 
             
                      {...props}
         | 
| 47 48 | 
             
                  />
         | 
| 48 49 | 
             
                  <TextInput
         | 
| 50 | 
            +
                      id="phone"
         | 
| 49 51 | 
             
                      label="Phone Number"
         | 
| 50 52 | 
             
                      name="phone"
         | 
| 51 53 | 
             
                      onChange={handleOnChangeFormField}
         | 
| @@ -55,6 +57,7 @@ const TextInputDefault = (props) => { | |
| 55 57 | 
             
                      {...props}
         | 
| 56 58 | 
             
                  />
         | 
| 57 59 | 
             
                  <TextInput
         | 
| 60 | 
            +
                      id="email"
         | 
| 58 61 | 
             
                      label="Email Address"
         | 
| 59 62 | 
             
                      name="email"
         | 
| 60 63 | 
             
                      onChange={handleOnChangeFormField}
         | 
| @@ -64,6 +67,7 @@ const TextInputDefault = (props) => { | |
| 64 67 | 
             
                      {...props}
         | 
| 65 68 | 
             
                  />
         | 
| 66 69 | 
             
                  <TextInput
         | 
| 70 | 
            +
                      id="zip"
         | 
| 67 71 | 
             
                      label="Zip Code"
         | 
| 68 72 | 
             
                      name="zip"
         | 
| 69 73 | 
             
                      onChange={handleOnChangeFormField}
         | 
| @@ -84,6 +88,7 @@ const TextInputDefault = (props) => { | |
| 84 88 | 
             
                  <br />
         | 
| 85 89 |  | 
| 86 90 | 
             
                  <TextInput
         | 
| 91 | 
            +
                      id="first-name"
         | 
| 87 92 | 
             
                      label="First Name"
         | 
| 88 93 | 
             
                      onChange={handleOnChangeFirstName}
         | 
| 89 94 | 
             
                      placeholder="Enter first name"
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            Add an `id` to your Text Input so that clicking the label will move focus directly to the input.
         |