playbook_ui_docs 15.2.0.pre.alpha.PLAY1978bugiconauto11317 → 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_form/docs/_form_form_with_validate.html.erb +1 -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_popover/docs/_popover_list.html.erb +2 -2
- data/dist/playbook-doc.js +2 -2
- metadata +19 -1
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 3c1fbecb01fa9be84280cc35fb8d7a3d73414640f1a92d1473ee0defe94ce65a
         | 
| 4 | 
            +
              data.tar.gz: 365d1e57fddb353d666a197b982cf12722d06290df602f05b7b8c043150a8289
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 9567ce1fd61dd872be308050a69957b28579406fd16a0390fa43ef9f0b179a7dc918a4c90218db854d15a70f19cdae209f16b96490ba55b11867e6c43ef10a5f
         | 
| 7 | 
            +
              data.tar.gz: 77d6dc1bf8cc2cd4eb522002a6b66243863a98f6bcd94c78421b61629b0376970ccf75880f2e349f382a4d94a6df360c9adb3be3f08e013679c9cbca22e52d34
         | 
| @@ -1,3 +1,7 @@ | |
| 1 | 
            -
            <%= pb_rails(" | 
| 2 | 
            -
            <%= pb_rails("button", props: { aria: { label: "Loading" },  | 
| 3 | 
            -
            <%= pb_rails("button", props: { aria: { label: "Loading" },  | 
| 1 | 
            +
            <%= pb_rails("caption", props: { margin_y: "md", text: "Button variants with loading" }) %>
         | 
| 2 | 
            +
            <%= pb_rails("button", props: { aria: { label: "Loading" }, loading: true, margin_right: "lg" }) %>
         | 
| 3 | 
            +
            <%= pb_rails("button", props: { aria: { label: "Loading" }, variant: "secondary", loading: true, margin_right: "lg" }) %>
         | 
| 4 | 
            +
            <%= pb_rails("button", props: { aria: { label: "Loading" }, variant: "link", loading: true, margin_right: "lg" }) %>
         | 
| 5 | 
            +
            <%= pb_rails("caption", props: { margin_y: "md", text: "Button sizes with loading" }) %>
         | 
| 6 | 
            +
            <%= pb_rails("button", props: { aria: { label: "Loading" }, loading: true, size: "sm", margin_right: "lg" }) %>
         | 
| 7 | 
            +
            <%= pb_rails("button", props: { aria: { label: "Loading" }, loading: true, size: "lg", margin_right: "lg" }) %>
         | 
| @@ -1,8 +1,13 @@ | |
| 1 1 | 
             
            import React from 'react'
         | 
| 2 2 | 
             
            import Button from "../../pb_button/_button"
         | 
| 3 | 
            +
            import Caption from "../../pb_caption/_caption"
         | 
| 3 4 |  | 
| 4 5 | 
             
            const ButtonLoading = (props) => (
         | 
| 5 6 | 
             
              <div>
         | 
| 7 | 
            +
                <Caption 
         | 
| 8 | 
            +
                    marginY="md" 
         | 
| 9 | 
            +
                    text="Button variants with loading" 
         | 
| 10 | 
            +
                />
         | 
| 6 11 | 
             
                <Button
         | 
| 7 12 | 
             
                    aria={{ label: 'Loading' }}
         | 
| 8 13 | 
             
                    loading
         | 
| @@ -31,6 +36,30 @@ const ButtonLoading = (props) => ( | |
| 31 36 | 
             
                    variant="link"
         | 
| 32 37 | 
             
                    {...props}
         | 
| 33 38 | 
             
                />
         | 
| 39 | 
            +
                <br/>
         | 
| 40 | 
            +
                <Caption 
         | 
| 41 | 
            +
                    marginY="md" 
         | 
| 42 | 
            +
                    text="Button sizes with loading" 
         | 
| 43 | 
            +
                />
         | 
| 44 | 
            +
                <Button
         | 
| 45 | 
            +
                    aria={{ label: 'Loading' }}
         | 
| 46 | 
            +
                    loading
         | 
| 47 | 
            +
                    marginRight='lg'
         | 
| 48 | 
            +
                    size="sm"
         | 
| 49 | 
            +
                    tabIndex={0}
         | 
| 50 | 
            +
                    text="Small Button"
         | 
| 51 | 
            +
                    {...props}
         | 
| 52 | 
            +
                />
         | 
| 53 | 
            +
                {' '}
         | 
| 54 | 
            +
                <Button
         | 
| 55 | 
            +
                    aria={{ label: 'Loading' }}
         | 
| 56 | 
            +
                    loading
         | 
| 57 | 
            +
                    marginRight='lg'
         | 
| 58 | 
            +
                    size="lg"
         | 
| 59 | 
            +
                    tabIndex={0}
         | 
| 60 | 
            +
                    text="Small Button"
         | 
| 61 | 
            +
                    {...props}
         | 
| 62 | 
            +
                />
         | 
| 34 63 | 
             
              </div>
         | 
| 35 64 | 
             
            )
         | 
| 36 65 |  | 
| @@ -101,7 +101,7 @@ | |
| 101 101 | 
             
              <%= form.typeahead :example_typeahead_validation_react, props: { options: example_typeahead_options, pills: true, label: "Example Typeahead (React Rendered)", placeholder: "Search for a user", required: true, validation: { message: "Please select a color." } } %>
         | 
| 102 102 | 
             
              <%= form.typeahead :example_typeahead_validation_react_2, props: { options: example_typeahead_options, pills: true, label: "Example Typeahead 2 (React Rendered)", placeholder: "Search for a user", required: true } %>
         | 
| 103 103 | 
             
              <%= form.text_field :example_text_field_validation, props: { label: true, required: true } %>
         | 
| 104 | 
            -
              <%= form.phone_number_field :example_phone_number_field_validation, props: { label: "Example phone field", hidden_inputs: true } %>
         | 
| 104 | 
            +
              <%= form.phone_number_field :example_phone_number_field_validation, props: { label: "Example phone field", hidden_inputs: true, required: true } %>
         | 
| 105 105 | 
             
              <%= form.email_field :example_email_field_validation, props: { label: true, required: true } %>
         | 
| 106 106 | 
             
              <%= form.number_field :example_number_field_validation, props: { label: true, required: true } %>
         | 
| 107 107 | 
             
              <%= form.search_field :example_project_number_validation, props: { label: true, required: true, validation: { pattern: "[0-9]{2}-[0-9]{5}", message: "Please enter a valid project number (example: 33-12345)." } } %>
         | 
| @@ -0,0 +1,3 @@ | |
| 1 | 
            +
            This kit is a wrapper around the Highcharts library. It applies styling and default settings but does NOT ship Highcharts. In order to use this kit, 'highcharts' and 'highcharts-react-official' must be installed in your repo. Once done, any prop or functionality provided by Highcharts can be used with this kit without requiring specifc props from Playbook. The doc examples below showcase a few common usecases but are not a comprehensive list of all the functionalities possible. 
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            See the [highcharts API docs](https://api.highcharts.com/highcharts/) for a comprehensive look at what is possible.
         | 
| @@ -0,0 +1,34 @@ | |
| 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', 'Sep', 'Oct', 'Nov', 'Dec'] %>
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            <% chart_options = {
         | 
| 21 | 
            +
              series: data,
         | 
| 22 | 
            +
              colors: ['#1CA05C', '#FD804C', '#144075', '#00C4D7', '#DA0014'],
         | 
| 23 | 
            +
              title: { text: "Line Graph with Custom Data Colors" },
         | 
| 24 | 
            +
              xAxis: {
         | 
| 25 | 
            +
                categories: categories,
         | 
| 26 | 
            +
              },
         | 
| 27 | 
            +
              yAxis: {
         | 
| 28 | 
            +
                title: {
         | 
| 29 | 
            +
                  text: "Number of Employees",
         | 
| 30 | 
            +
                },
         | 
| 31 | 
            +
              },
         | 
| 32 | 
            +
            } %>
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chart_options}) %>
         | 
| @@ -0,0 +1,52 @@ | |
| 1 | 
            +
            import React from 'react'
         | 
| 2 | 
            +
            import PbLineGraph from '../../pb_pb_line_graph/_pb_line_graph'
         | 
| 3 | 
            +
            import { colors } from 'playbook-ui'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            const data = [{
         | 
| 6 | 
            +
              name: 'Installation',
         | 
| 7 | 
            +
              data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],
         | 
| 8 | 
            +
            }, {
         | 
| 9 | 
            +
              name: 'Manufacturing',
         | 
| 10 | 
            +
              data: [24916, 28064, 29742, 40851, 50590, 65282, 70121, 85434],
         | 
| 11 | 
            +
            }, {
         | 
| 12 | 
            +
              name: 'Sales & Distribution',
         | 
| 13 | 
            +
              data: [11744, 17722, 16005, 19771, 25185, 28377, 36147, 43387],
         | 
| 14 | 
            +
            }, {
         | 
| 15 | 
            +
              name: 'Project Development',
         | 
| 16 | 
            +
              data: [5332, 6344, 7988, 12169, 15112, 14452, 22400, 30227],
         | 
| 17 | 
            +
            }, {
         | 
| 18 | 
            +
              name: 'Other',
         | 
| 19 | 
            +
              data: [null, null, null, 3112, 4989, 5816, 15274, 18111],
         | 
| 20 | 
            +
            }]
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            const categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            const chartOptions = {
         | 
| 25 | 
            +
                title: {
         | 
| 26 | 
            +
                  text: 'Line Graph with Custom Data Colors',
         | 
| 27 | 
            +
                },
         | 
| 28 | 
            +
                xAxis: {
         | 
| 29 | 
            +
                  categories: categories,
         | 
| 30 | 
            +
                },
         | 
| 31 | 
            +
                yAxis: {
         | 
| 32 | 
            +
                  min: 0,
         | 
| 33 | 
            +
                  title: {
         | 
| 34 | 
            +
                    text: 'Number of Employees',
         | 
| 35 | 
            +
                  },
         | 
| 36 | 
            +
                },
         | 
| 37 | 
            +
                series: data,
         | 
| 38 | 
            +
                colors: [colors.data_4, colors.data_5, "#144075", colors.data_7, colors.data_8]
         | 
| 39 | 
            +
              }
         | 
| 40 | 
            +
             | 
| 41 | 
            +
            const PbLineGraphColors = (props) => {
         | 
| 42 | 
            +
              return (
         | 
| 43 | 
            +
                <div>
         | 
| 44 | 
            +
                  <PbLineGraph
         | 
| 45 | 
            +
                      options={chartOptions}
         | 
| 46 | 
            +
                      {...props}
         | 
| 47 | 
            +
                  />
         | 
| 48 | 
            +
                </div>
         | 
| 49 | 
            +
              )
         | 
| 50 | 
            +
            }
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            export default PbLineGraphColors
         | 
| @@ -0,0 +1,5 @@ | |
| 1 | 
            +
            Custom data colors allow for color customization to match the needs of business requirements.
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            For React, import 'colors' from Playbook, then set custom colors in the colors array using the desired color variables. Hex colors are also available.
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            For Rails, HEX values are required.
         | 
| @@ -0,0 +1,34 @@ | |
| 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', 'Sep', 'Oct', 'Nov', 'Dec'] %>
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            <% chart_options = {
         | 
| 21 | 
            +
              series: data,
         | 
| 22 | 
            +
              title: { text: "Solar Employment Growth by Sector, 2010-2016" },
         | 
| 23 | 
            +
              subtitle: { text: "Source: thesolarfoundation.com" },
         | 
| 24 | 
            +
              xAxis: {
         | 
| 25 | 
            +
                categories: categories,
         | 
| 26 | 
            +
              },
         | 
| 27 | 
            +
              yAxis: {
         | 
| 28 | 
            +
                title: {
         | 
| 29 | 
            +
                  text: "Number of Employees",
         | 
| 30 | 
            +
                },
         | 
| 31 | 
            +
              },
         | 
| 32 | 
            +
            } %>
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chart_options}) %>
         | 
| @@ -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: 'Installation',
         | 
| 6 | 
            +
              data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],
         | 
| 7 | 
            +
            }, {
         | 
| 8 | 
            +
              name: 'Manufacturing',
         | 
| 9 | 
            +
              data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434],
         | 
| 10 | 
            +
            }, {
         | 
| 11 | 
            +
              name: 'Sales & Distribution',
         | 
| 12 | 
            +
              data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387],
         | 
| 13 | 
            +
            }, {
         | 
| 14 | 
            +
              name: 'Project Development',
         | 
| 15 | 
            +
              data: [null, null, 7988, 12169, 15112, 22452, 34400, 34227],
         | 
| 16 | 
            +
            }, {
         | 
| 17 | 
            +
              name: 'Other',
         | 
| 18 | 
            +
              data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111],
         | 
| 19 | 
            +
            }]
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            const categories = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            const chartOptions = {
         | 
| 24 | 
            +
              series: data,
         | 
| 25 | 
            +
              title: { text: "Solar Employment Growth by Sector, 2010-2016" },
         | 
| 26 | 
            +
              subtitle: { text: "Source: thesolarfoundation.com" },
         | 
| 27 | 
            +
              xAxis: {
         | 
| 28 | 
            +
                categories: categories,
         | 
| 29 | 
            +
              },
         | 
| 30 | 
            +
              yAxis: {
         | 
| 31 | 
            +
                title: {
         | 
| 32 | 
            +
                  text: "Number of Employees",
         | 
| 33 | 
            +
                },
         | 
| 34 | 
            +
              },
         | 
| 35 | 
            +
            }
         | 
| 36 | 
            +
            const PbLineGraphDefault = (props) => (
         | 
| 37 | 
            +
              <div>
         | 
| 38 | 
            +
                <PbLineGraph
         | 
| 39 | 
            +
                    options={chartOptions}
         | 
| 40 | 
            +
                    {...props}
         | 
| 41 | 
            +
                />
         | 
| 42 | 
            +
              </div>
         | 
| 43 | 
            +
            )
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            export default PbLineGraphDefault
         | 
| @@ -0,0 +1,47 @@ | |
| 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', 'Sep', 'Oct', 'Nov', 'Dec'] %>
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            <% chart_options_first = {
         | 
| 9 | 
            +
                title: {
         | 
| 10 | 
            +
                  text: 'Fixed Height (300px)',
         | 
| 11 | 
            +
                },
         | 
| 12 | 
            +
                chart: {
         | 
| 13 | 
            +
                  height: '300px'
         | 
| 14 | 
            +
                },
         | 
| 15 | 
            +
                xAxis: {
         | 
| 16 | 
            +
                  categories: categories,
         | 
| 17 | 
            +
                },
         | 
| 18 | 
            +
                yAxis: {
         | 
| 19 | 
            +
                  min: 0,
         | 
| 20 | 
            +
                  title: {
         | 
| 21 | 
            +
                    text: 'Number of Employees',
         | 
| 22 | 
            +
                  },
         | 
| 23 | 
            +
                },
         | 
| 24 | 
            +
                series: data
         | 
| 25 | 
            +
              } %>
         | 
| 26 | 
            +
             | 
| 27 | 
            +
              <% chart_options_second = {
         | 
| 28 | 
            +
                title: {
         | 
| 29 | 
            +
                  text: 'Percentage Height (50%)',
         | 
| 30 | 
            +
                },
         | 
| 31 | 
            +
                chart: {
         | 
| 32 | 
            +
                  height: '50%'
         | 
| 33 | 
            +
                },
         | 
| 34 | 
            +
                xAxis: {
         | 
| 35 | 
            +
                  categories: categories,
         | 
| 36 | 
            +
                },
         | 
| 37 | 
            +
                yAxis: {
         | 
| 38 | 
            +
                  min: 0,
         | 
| 39 | 
            +
                  title: {
         | 
| 40 | 
            +
                    text: 'Number of Employees',
         | 
| 41 | 
            +
                  },
         | 
| 42 | 
            +
                },
         | 
| 43 | 
            +
                series: data
         | 
| 44 | 
            +
              } %>
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chart_options_first}) %>
         | 
| 47 | 
            +
            <%= pb_rails("pb_line_graph", props: {options: chart_options_second}) %>
         | 
| @@ -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 | 
            +
             |