playbook_ui_docs 15.3.0.pre.rc.4 → 15.3.0.pre.rc.6
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_advanced_table/docs/_advanced_table_background_control_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta.md +3 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_sort.html.erb +3 -3
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb +3 -3
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail_rails.html.erb +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.html.erb +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.html.erb +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control_per_row_rails.html.erb +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control_rails.html.erb +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_rails.html.erb +2 -2
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_description.md +2 -0
- data/dist/playbook-doc.js +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: d68a691027a269889f7237e9915d05967366724958cee25bcf22c1226d939d27
         | 
| 4 | 
            +
              data.tar.gz: dfb37832009e5600487150f3dff30eb8e7c4a861dd762b01a033ea976c894ced
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: e628ed994f279d66db56ca58eaf67ea31cdcd148857c48c7c10ec83956eef697fc819013f9a1846c3c9e7b5f545c5e0d99e0e1fac103bee136767215d0e94ba0
         | 
| 7 | 
            +
              data.tar.gz: 0675e640aa464a4f32c184333875e6d6ca0b64de16be6b46e8929acf9f0c35baf176ce9d3c6724c489964f5f6f84d39607587bd1480beca0a1da0128e1695c42
         | 
    
        data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_control_rails.html.erb
    CHANGED
    
    | @@ -33,7 +33,7 @@ | |
| 33 33 | 
             
                }
         | 
| 34 34 | 
             
            ] %>
         | 
| 35 35 |  | 
| 36 | 
            -
            <%= pb_rails("advanced_table", props: { id: " | 
| 37 | 
            -
              <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
         | 
| 38 | 
            -
              <%= pb_rails("advanced_table/table_body", props: { table_data: @table_data, column_definitions: column_definitions }) %>
         | 
| 36 | 
            +
            <%= pb_rails("advanced_table", props: { id: "background-control", table_data: @table_data, column_definitions: column_definitions }) do %>
         | 
| 37 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "background-control", column_definitions: column_definitions }) %>
         | 
| 38 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "background-control", table_data: @table_data, column_definitions: column_definitions }) %>
         | 
| 39 39 | 
             
            <% end %>
         | 
| @@ -2,7 +2,9 @@ The AdvancedTable kit accepts tree data and automatically renders expansion cont | |
| 2 2 |  | 
| 3 3 | 
             
            ### id
         | 
| 4 4 |  | 
| 5 | 
            -
            A unique `id` is required to allow the table functionality to work properly. Without it, certain functions like the action bar will not be able to properly reference the correct table.
         | 
| 5 | 
            +
            A unique `id` is required to allow the table functionality to work properly. Without it, certain functions like the action bar, expand/collapse caching, or selectable rows will not be able to properly reference the correct table.
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            You must also set `table_id` when using subcomponents like `table_header` or `table_body`.
         | 
| 6 8 |  | 
| 7 9 | 
             
            ### table_data
         | 
| 8 10 |  | 
| @@ -51,7 +51,7 @@ | |
| 51 51 | 
             
              ]
         | 
| 52 52 | 
             
            %>
         | 
| 53 53 |  | 
| 54 | 
            -
            <%= pb_rails("advanced_table", props: { table_data: @table_data, column_definitions: column_definitions, id: "beta_sort" }) do %>
         | 
| 55 | 
            -
              <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
         | 
| 56 | 
            -
              <%= pb_rails("advanced_table/table_body", props: {  | 
| 54 | 
            +
            <%= pb_rails("advanced_table", props: { id: "sort", table_data: @table_data, column_definitions: column_definitions, id: "beta_sort" }) do %>
         | 
| 55 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "sort", column_definitions: column_definitions }) %>
         | 
| 56 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "sort", table_data: @table_data, column_definitions: column_definitions, enable_toggle_expansion: "all" }) %>
         | 
| 57 57 | 
             
            <% end %>
         | 
    
        data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb
    CHANGED
    
    | @@ -34,7 +34,7 @@ | |
| 34 34 | 
             
              subrow_headers = ["Quarter", "Month", "Day"]
         | 
| 35 35 | 
             
            %>
         | 
| 36 36 |  | 
| 37 | 
            -
            <%= pb_rails("advanced_table", props: { table_data: @table_data, column_definitions: column_definitions, id: "test_table" }) do %>
         | 
| 38 | 
            -
              <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
         | 
| 39 | 
            -
              <%= pb_rails("advanced_table/table_body", props: {  | 
| 37 | 
            +
            <%= pb_rails("advanced_table", props: { id: "subrow-headers", table_data: @table_data, column_definitions: column_definitions, id: "test_table" }) do %>
         | 
| 38 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "subrow-headers", column_definitions: column_definitions }) %>
         | 
| 39 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "subrow-headers", table_data: @table_data, column_definitions: column_definitions, subrow_headers: subrow_headers, enable_toggle_expansion: "all" }) %>
         | 
| 40 40 | 
             
            <% end %>
         | 
    
        data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail_rails.html.erb
    CHANGED
    
    | @@ -31,6 +31,6 @@ | |
| 31 31 | 
             
            ] %>
         | 
| 32 32 |  | 
| 33 33 | 
             
            <%= pb_rails("advanced_table", props: { id: "collapsible_trail", table_data: @table_data, column_definitions: column_definitions }) do %>
         | 
| 34 | 
            -
              <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
         | 
| 35 | 
            -
              <%= pb_rails("advanced_table/table_body", props: { table_data: @table_data, column_definitions: column_definitions, collapsible_trail: false }) %>
         | 
| 34 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "collapsible_trail", column_definitions: column_definitions }) %>
         | 
| 35 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "collapsible_trail", table_data: @table_data, column_definitions: column_definitions, collapsible_trail: false }) %>
         | 
| 36 36 | 
             
            <% end %>
         | 
| @@ -58,6 +58,6 @@ | |
| 58 58 | 
             
            ] %>
         | 
| 59 59 |  | 
| 60 60 | 
             
            <%= pb_rails("advanced_table", props: { id: "column-styling-multi", table_data: @table_data, column_definitions: column_definitions }) do %>
         | 
| 61 | 
            -
              <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
         | 
| 62 | 
            -
              <%= pb_rails("advanced_table/table_body", props: { table_data: @table_data, column_definitions: column_definitions }) %>
         | 
| 61 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "column-styling-multi", column_definitions: column_definitions }) %>
         | 
| 62 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "column-styling-multi", table_data: @table_data, column_definitions: column_definitions }) %>
         | 
| 63 63 | 
             
            <% end %>
         | 
    
        data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.html.erb
    CHANGED
    
    | @@ -33,6 +33,6 @@ | |
| 33 33 | 
             
            ] %>
         | 
| 34 34 |  | 
| 35 35 | 
             
            <%= pb_rails("advanced_table", props: { id: "column-styling", table_data: @table_data, column_definitions: column_definitions }) do %>
         | 
| 36 | 
            -
              <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
         | 
| 37 | 
            -
              <%= pb_rails("advanced_table/table_body", props: { table_data: @table_data, column_definitions: column_definitions }) %>
         | 
| 36 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "column-styling", column_definitions: column_definitions }) %>
         | 
| 37 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "column-styling", table_data: @table_data, column_definitions: column_definitions }) %>
         | 
| 38 38 | 
             
            <% end %>
         | 
| @@ -46,6 +46,6 @@ | |
| 46 46 | 
             
            ] %>
         | 
| 47 47 |  | 
| 48 48 | 
             
            <%= pb_rails("advanced_table", props: { id: "padding-control-per-row", table_data: @table_data_with_id, column_definitions: column_definitions, row_styling: row_styling }) do %>
         | 
| 49 | 
            -
              <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
         | 
| 50 | 
            -
              <%= pb_rails("advanced_table/table_body", props: { table_data: @table_data_with_id, column_definitions: column_definitions, row_styling: row_styling }) %>
         | 
| 49 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "padding-control-per-row", column_definitions: column_definitions }) %>
         | 
| 50 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "padding-control-per-row", table_data: @table_data_with_id, column_definitions: column_definitions, row_styling: row_styling }) %>
         | 
| 51 51 | 
             
            <% end %>
         | 
    
        data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_padding_control_rails.html.erb
    CHANGED
    
    | @@ -35,6 +35,6 @@ | |
| 35 35 | 
             
            ] %>
         | 
| 36 36 |  | 
| 37 37 | 
             
            <%= pb_rails("advanced_table", props: { id: "padding-control", table_data: @table_data, column_definitions: column_definitions }) do %>
         | 
| 38 | 
            -
              <%= pb_rails("advanced_table/table_header", props: { column_definitions: column_definitions }) %>
         | 
| 39 | 
            -
              <%= pb_rails("advanced_table/table_body", props: { table_data: @table_data, column_definitions: column_definitions }) %>
         | 
| 38 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "padding-control", column_definitions: column_definitions }) %>
         | 
| 39 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "padding-control", table_data: @table_data, column_definitions: column_definitions }) %>
         | 
| 40 40 | 
             
            <% end %>
         | 
    
        data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_rails.html.erb
    CHANGED
    
    | @@ -34,6 +34,6 @@ | |
| 34 34 | 
             
            %>
         | 
| 35 35 |  | 
| 36 36 | 
             
            <%= pb_rails("advanced_table", props: { id: "selectable_rows", table_data: @table_data_with_id, column_definitions: column_definitions, selectable_rows: true }) do %>
         | 
| 37 | 
            -
              <%= pb_rails("advanced_table/table_header", props: {  | 
| 38 | 
            -
              <%= pb_rails("advanced_table/table_body", props: {  | 
| 37 | 
            +
              <%= pb_rails("advanced_table/table_header", props: { table_id: "selectable_rows", column_definitions: column_definitions, selectable_rows: true }) %>
         | 
| 38 | 
            +
              <%= pb_rails("advanced_table/table_body", props: { table_id: "selectable_rows", table_data: @table_data_with_id, column_definitions: column_definitions, subrow_headers: subrow_headers, enable_toggle_expansion: "all", selectable_rows: true }) %>
         | 
| 39 39 | 
             
            <% end %>
         | 
| @@ -1,2 +1,4 @@ | |
| 1 1 |  | 
| 2 2 | 
             
            Fixed Confirmation Toast is used as an alert. Success is used when a user successfully completes an action. Error is used when there is an error and the user cannot proceed. Neutral is used to display information to a user to complete a task.
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            **NOTE**: z index for Fixed Confirmation Toast is set to 'max' by default which has the value of `999999`. the z Index global prop can be used to override this if you want to set it to a different value.
         |