playbook_ui_docs 15.7.0.pre.rc.1 → 15.7.0.pre.rc.2

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.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_colors_rails.html.erb +43 -0
  3. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_colors_rails.md +1 -0
  4. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_control_rails.html.erb +11 -5
  5. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_control_rails.md +7 -1
  6. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_background.jsx +54 -0
  7. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_background.md +9 -0
  8. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_background_multi.jsx +80 -0
  9. data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_background_multi.md +3 -0
  10. data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +4 -1
  11. data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +3 -1
  12. data/app/pb_kits/playbook/pb_contact/docs/_contact_unstyled.html.erb +33 -0
  13. data/app/pb_kits/playbook/pb_contact/docs/_contact_unstyled.jsx +46 -0
  14. data/app/pb_kits/playbook/pb_contact/docs/_contact_unstyled_rails.md +2 -0
  15. data/app/pb_kits/playbook/pb_contact/docs/_contact_unstyled_react.md +2 -0
  16. data/app/pb_kits/playbook/pb_contact/docs/example.yml +2 -0
  17. data/app/pb_kits/playbook/pb_contact/docs/index.js +1 -0
  18. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_closeable.html.erb +24 -0
  19. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_closeable.jsx +60 -0
  20. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_closeable.md +3 -0
  21. data/app/pb_kits/playbook/pb_dialog/docs/example.yml +2 -0
  22. data/app/pb_kits/playbook/pb_dialog/docs/index.js +2 -1
  23. metadata +15 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 36ac9ddb221a32d5d396218a4ce18b98ceef1df64122da0078bc35a88064e3e2
4
- data.tar.gz: ce783ac3ec36544323cffc819496775abf6ac9bca48d6b69d69c3ba78442982f
3
+ metadata.gz: 39318022ac52187d638e009ef528f900f31188ef406833afb88319beaa4ee9db
4
+ data.tar.gz: 98272e6d84b4e73e5dbcc8c9eded97fbd6aa0dd7f3a34a69d79f61a1bccace24
5
5
  SHA512:
6
- metadata.gz: e8c19d8f3a0e03a0bf0b55d5b0fc42f092c90654e74edec664ddaacf1424738d7548b938debdca61406e35031f10286dbaf94cd6c666e3be83606ca2bc2ba6cb
7
- data.tar.gz: 86ae085b474dc80a95abf7f8fe4183d3304bbd07864694c7b891b63c2845aa643be026f8555c5feca17c0ef0217c6636949fcddbe8885d50645b25560bbeac3b
6
+ metadata.gz: ff7f84555817e8624527737bf9b4a2dfdb6b9a408d610d1f2f3c09d159434f7e212ce1994dd7589b4f95f4162f1fe9d6a5b1bda06e26aab3a85415f4a770a159
7
+ data.tar.gz: 854dedd7ce2a2afb5945fb01b7e032924c3a7b15a16ef68dc667833a2b63c914d4769eb8c739cecfc8553b9b57e6f5f6b7efa205c07c38c2707f85700d62b1bd
@@ -0,0 +1,43 @@
1
+ <% column_definitions = [
2
+ {
3
+ accessor: "year",
4
+ label: "Year",
5
+ cellAccessors: ["quarter", "month", "day"],
6
+ },
7
+ {
8
+ accessor: "newEnrollments",
9
+ label: "New Enrollments",
10
+ column_styling: {
11
+ cell_background_color: ->(row) { row[:newEnrollments].to_i > 20 ? "success_secondary" : "warning_secondary" }
12
+ }
13
+ },
14
+ {
15
+ accessor: "scheduledMeetings",
16
+ label: "Scheduled Meetings",
17
+ },
18
+ {
19
+ accessor: "attendanceRate",
20
+ label: "Attendance Rate",
21
+ },
22
+ {
23
+ accessor: "completedClasses",
24
+ label: "Completed Classes",
25
+ },
26
+ {
27
+ accessor: "classCompletionRate",
28
+ label: "Class Completion Rate",
29
+ column_styling: {
30
+ cell_background_color: "category_1",
31
+ font_color: "white"
32
+ }
33
+ },
34
+ {
35
+ accessor: "graduatedStudents",
36
+ label: "Graduated Students",
37
+ }
38
+ ] %>
39
+
40
+ <%= pb_rails("advanced_table", props: { id: "background-control", table_data: @table_data, column_definitions: column_definitions }) do %>
41
+ <%= pb_rails("advanced_table/table_header", props: { table_id: "background-control", column_definitions: column_definitions }) %>
42
+ <%= pb_rails("advanced_table/table_body", props: { table_id: "background-control", table_data: @table_data, column_definitions: column_definitions }) %>
43
+ <% end %>
@@ -0,0 +1 @@
1
+ `column_styling` can also be used to control the background color on individual cells in a given column as shown here.
@@ -8,16 +8,26 @@
8
8
  accessor: "newEnrollments",
9
9
  label: "New Enrollments",
10
10
  column_styling: {
11
- cell_background_color: ->(row) { row[:newEnrollments].to_i > 20 ? "success_secondary" : "warning_secondary" }
11
+ cell_background_color: "error_subtle",
12
+ header_background_color: "error_subtle"
12
13
  }
13
14
  },
14
15
  {
15
16
  accessor: "scheduledMeetings",
16
17
  label: "Scheduled Meetings",
18
+ column_styling: {
19
+ cell_background_color: "info_subtle",
20
+ }
17
21
  },
18
22
  {
19
23
  accessor: "attendanceRate",
20
24
  label: "Attendance Rate",
25
+ column_styling: {
26
+ cell_background_color: "info",
27
+ header_background_color: "info",
28
+ header_font_color: "white",
29
+ font_color: "white"
30
+ }
21
31
  },
22
32
  {
23
33
  accessor: "completedClasses",
@@ -26,10 +36,6 @@
26
36
  {
27
37
  accessor: "classCompletionRate",
28
38
  label: "Class Completion Rate",
29
- column_styling: {
30
- cell_background_color: "category_1",
31
- font_color: "white"
32
- }
33
39
  },
34
40
  {
35
41
  accessor: "graduatedStudents",
@@ -1 +1,7 @@
1
- `column_styling` can also be used to control the background color on all cells in a given column via the use of the `cell_background_color` key/value pair. Use `cell_background_color` to achieve custom background colors for individual cells as seen here. Use `font_color` to achieve better contrast between cell content and background for darker backgrounds.
1
+ `column_styling` can also be used to control the background color on all cells in a given column. Use the following key/values pairs to achieve this:
2
+
3
+ 1) `cell_background_color`: use this to control the background color of all cells in the given column
4
+ 2) `font_color`: use this to control font color for all cells in the given column if needed, for example if using a darker background color
5
+ 3) `header_background_color`: use this to control the background color of the column header
6
+ 4) `header_font_color`: use this to control font color for the header in the given column if needed, for example if using a darker background color.
7
+
@@ -0,0 +1,54 @@
1
+ import React from "react"
2
+ import AdvancedTable from '../_advanced_table'
3
+ import colors from '../../tokens/exports/_colors.module.scss'
4
+ import MOCK_DATA from "./advanced_table_mock_data.json"
5
+
6
+
7
+ const AdvancedTableColumnStylingBackground = (props) => {
8
+ const columnDefinitions = [
9
+ {
10
+ accessor: "year",
11
+ label: "Year",
12
+ cellAccessors: ["quarter", "month", "day"],
13
+ },
14
+ {
15
+ accessor: "newEnrollments",
16
+ label: "New Enrollments",
17
+ columnStyling:{cellBackgroundColor: colors.error_subtle, headerBackgroundColor: colors.error_subtle},
18
+ },
19
+ {
20
+ accessor: "scheduledMeetings",
21
+ label: "Scheduled Meetings",
22
+ columnStyling:{cellBackgroundColor: colors.info_subtle},
23
+ },
24
+ {
25
+ accessor: "attendanceRate",
26
+ label: "Attendance Rate",
27
+ columnStyling:{cellBackgroundColor: colors.info, headerBackgroundColor: colors.info, fontColor: colors.white, headerFontColor: colors.white},
28
+ },
29
+ {
30
+ accessor: "completedClasses",
31
+ label: "Completed Classes",
32
+ },
33
+ {
34
+ accessor: "classCompletionRate",
35
+ label: "Class Completion Rate",
36
+ },
37
+ {
38
+ accessor: "graduatedStudents",
39
+ label: "Graduated Students",
40
+ },
41
+ ]
42
+
43
+ return (
44
+ <div>
45
+ <AdvancedTable
46
+ columnDefinitions={columnDefinitions}
47
+ tableData={MOCK_DATA}
48
+ {...props}
49
+ />
50
+ </div>
51
+ )
52
+ }
53
+
54
+ export default AdvancedTableColumnStylingBackground
@@ -0,0 +1,9 @@
1
+ The `columnStyling` prop can also be used to set background color for entire columns.As stated above, `columnStyling` is an object that has several optional key/value pairs, here are the options highlighted in this doc:
2
+
3
+ 1) `cellBackgroundColor`: use this to control the background color of all cells in the given column
4
+ 2) `headerBackgroundColor`: use this to control the background color of the column header
5
+ 3) `fontColor`: use this to control font color for all cells in the given column if needed, for example if using a darker background color.
6
+ 4) `headerFontColor`: use this to control font color for the header in the given column if needed, for example if using a darker background color.
7
+
8
+
9
+
@@ -0,0 +1,80 @@
1
+ import React from "react"
2
+ import AdvancedTable from '../_advanced_table'
3
+ import colors from '../../tokens/exports/_colors.module.scss'
4
+ import MOCK_DATA from "./advanced_table_mock_data.json"
5
+
6
+
7
+ const AdvancedTableColumnStylingBackgroundMulti = (props) => {
8
+ const columnDefinitions = [
9
+ {
10
+ accessor: "year",
11
+ label: "Year",
12
+ cellAccessors: ["quarter", "month", "day"],
13
+ },
14
+ {
15
+ label: "Enrollment Data",
16
+ columns: [
17
+ {
18
+ label: "Enrollment Stats",
19
+ columns: [
20
+ {
21
+ accessor: "newEnrollments",
22
+ label: "New Enrollments",
23
+ columnStyling:{cellBackgroundColor: colors.error_subtle, headerBackgroundColor: colors.error_subtle},
24
+ },
25
+ {
26
+ accessor: "scheduledMeetings",
27
+ label: "Scheduled Meetings",
28
+ },
29
+ ],
30
+ },
31
+ ],
32
+ },
33
+ {
34
+ label: "Performance Data",
35
+ columns: [
36
+ {
37
+ label: "Completion Metrics",
38
+ columns: [
39
+ {
40
+ accessor: "completedClasses",
41
+ label: "Completed Classes",
42
+ columnStyling:{cellBackgroundColor: colors.info, headerBackgroundColor: colors.info, fontColor: colors.white, headerFontColor: colors.white},
43
+ },
44
+ {
45
+ accessor: "classCompletionRate",
46
+ label: "Class Completion Rate",
47
+ },
48
+ ],
49
+ },
50
+ {
51
+ label: "Attendance",
52
+ columns: [
53
+ {
54
+ accessor: "attendanceRate",
55
+ label: "Attendance Rate",
56
+ columnStyling:{cellBackgroundColor: colors.info_subtle},
57
+ },
58
+ {
59
+ accessor: "scheduledMeetings",
60
+ label: "Scheduled Meetings",
61
+ },
62
+ ],
63
+ },
64
+ ],
65
+ },
66
+ ];
67
+
68
+
69
+ return (
70
+ <div>
71
+ <AdvancedTable
72
+ columnDefinitions={columnDefinitions}
73
+ tableData={MOCK_DATA}
74
+ {...props}
75
+ />
76
+ </div>
77
+ )
78
+ }
79
+
80
+ export default AdvancedTableColumnStylingBackgroundMulti
@@ -0,0 +1,3 @@
1
+ The `columnStyling` prop can also be used to set background color for entire columns for the multi header variant as well.
2
+
3
+ It should be noted that `headerFontColor` and `headerBackgroundColor` in the multi header variant will only apply to the immediate header for the given column as shown here.
@@ -26,7 +26,8 @@ examples:
26
26
  - advanced_table_column_styling_rails: Column Styling
27
27
  - advanced_table_column_styling_column_headers_rails: Column Styling with Multiple Headers
28
28
  - advanced_table_padding_control_rails: Padding Control using Column Styling
29
- - advanced_table_background_control_rails: Background Control using Column Styling
29
+ - advanced_table_background_control_rails: Column Styling Background Color
30
+ - advanced_table_background_colors_rails: Column Styling Individual Cell Background Color
30
31
  - advanced_table_column_border_color_rails: Column Group Border Color
31
32
 
32
33
 
@@ -75,6 +76,8 @@ examples:
75
76
  - advanced_table_padding_control_per_row: Padding Control using Row Styling
76
77
  - advanced_table_column_styling: Column Styling
77
78
  - advanced_table_column_styling_column_headers: Column Styling with Multiple Headers
79
+ - advanced_table_column_styling_background: Column Styling Background Color
80
+ - advanced_table_column_styling_background_multi: Column Styling Background Color with Multiple Headers
78
81
  - advanced_table_padding_control: Padding Control using Column Styling
79
82
  - advanced_table_column_border_color: Column Group Border Color
80
83
  - advanced_table_fullscreen: Fullscreen
@@ -45,4 +45,6 @@ export { default as AdvancedTableWithCustomHeaderMultiHeader } from './_advanced
45
45
  export { default as AdvancedTableSortPerColumn } from './_advanced_table_sort_per_column.jsx'
46
46
  export { default as AdvancedTableSortPerColumnForMultiColumn } from './_advanced_table_sort_per_column_for_multi_column.jsx'
47
47
  export { default as AdvancedTablePaddingControl } from './_advanced_table_padding_control.jsx'
48
- export { default as AdvancedTablePaddingControlPerRow } from './_advanced_table_padding_control_per_row.jsx'
48
+ export { default as AdvancedTablePaddingControlPerRow } from './_advanced_table_padding_control_per_row.jsx'
49
+ export { default as AdvancedTableColumnStylingBackground } from './_advanced_table_column_styling_background.jsx'
50
+ export { default as AdvancedTableColumnStylingBackgroundMulti } from './_advanced_table_column_styling_background_multi.jsx'
@@ -0,0 +1,33 @@
1
+ <%= pb_rails("body", props: { color: "default" }) do %>
2
+ <%= pb_rails("contact", props: {
3
+ contact_value: "2125551234",
4
+ icon_enabled: false,
5
+ unstyled: true
6
+ }) %>
7
+ <% end %>
8
+
9
+ <%= pb_rails("body", props: { color: "light" }) do %>
10
+ <%= pb_rails("contact", props: {
11
+ contact_value: "12125551234",
12
+ icon_enabled: false,
13
+ unstyled: true
14
+ }) %>
15
+ <% end %>
16
+
17
+ <%= pb_rails("body", props: { color: "lighter" }) do %>
18
+ <%= pb_rails("contact", props: {
19
+ contact_value: "4155551234",
20
+ icon_enabled: false,
21
+ unstyled: true
22
+ }) %>
23
+ <% end %>
24
+
25
+ <%= pb_rails("body", props: { color: "default" }) do %>
26
+ <%= pb_rails("contact", props: {
27
+ contact_type: "extension",
28
+ contact_value: "1234",
29
+ icon_enabled: false,
30
+ unstyled: true
31
+ }) %>
32
+ <% end %>
33
+
@@ -0,0 +1,46 @@
1
+ import React from 'react'
2
+ import Contact from "../../pb_contact/_contact"
3
+ import Body from "../../pb_body/_body"
4
+
5
+ const ContactUnstyled = (props) => {
6
+ return (
7
+ <div>
8
+ <Body color="default">
9
+ <Contact
10
+ contactValue="2125551234"
11
+ iconEnabled={false}
12
+ unstyled
13
+ {...props}
14
+ />
15
+ </Body>
16
+ <Body color="light">
17
+ <Contact
18
+ contactValue="12125551234"
19
+ iconEnabled={false}
20
+ unstyled
21
+ {...props}
22
+ />
23
+ </Body>
24
+ <Body color="lighter">
25
+ <Contact
26
+ contactValue="4155551234"
27
+ iconEnabled={false}
28
+ unstyled
29
+ {...props}
30
+ />
31
+ </Body>
32
+ <Body color="default">
33
+ <Contact
34
+ contactType="extension"
35
+ contactValue="1234"
36
+ iconEnabled={false}
37
+ unstyled
38
+ {...props}
39
+ />
40
+ </Body>
41
+ </div>
42
+ )
43
+ }
44
+
45
+ export default ContactUnstyled
46
+
@@ -0,0 +1,2 @@
1
+ Use the Contact kit with `icon_enabled: false` and `unstyled: true` to display phone numbers with full typography control. When `unstyled: true`, the Contact kit renders just the formatted text without a Body wrapper, allowing you to wrap it in your own Typography kit to control the color and styling.
2
+
@@ -0,0 +1,2 @@
1
+ Use the Contact kit with `iconEnabled={false}` and `unstyled` to display phone numbers with full typography control. With `unstyled`, the Contact kit renders just the formatted text without a Body wrapper, allowing you to wrap it in your own Typography kit to control the color and styling.
2
+
@@ -3,11 +3,13 @@ examples:
3
3
  rails:
4
4
  - contact_default: Default
5
5
  - contact_with_detail: Detail Indicator
6
+ - contact_unstyled: Unstyled
6
7
 
7
8
 
8
9
  react:
9
10
  - contact_default: Default
10
11
  - contact_with_detail: Detail Indicator
12
+ - contact_unstyled: Unstyled
11
13
 
12
14
 
13
15
  swift:
@@ -1,2 +1,3 @@
1
1
  export { default as ContactDefault } from './_contact_default.jsx'
2
2
  export { default as ContactWithDetail } from './_contact_with_detail.jsx'
3
+ export { default as ContactUnstyled } from './_contact_unstyled.jsx'
@@ -0,0 +1,24 @@
1
+ <%= pb_rails("flex", props:{wrap:true}) do %>
2
+ <%= pb_rails("button", props: { text: "Open Simple Dialog", data: {"open-dialog": "dialog-simple"}, margin_right:"md" }) %>
3
+ <%= pb_rails("button", props: { text: "Open Complex Dialog", data: {"open-dialog": "dialog-complex2"} }) %>
4
+ <% end %>
5
+
6
+ <%= pb_rails("dialog", props: {
7
+ id:"dialog-simple",
8
+ size: "sm",
9
+ title: "Header Title is the Title Prop",
10
+ text: "Hello Body Text, Nice to meet ya.",
11
+ cancel_button: "Cancel Button",
12
+ closeable: false,
13
+ confirm_button: "Okay",
14
+ confirm_button_id: "confirm-button-simple"
15
+ }) %>
16
+
17
+ <%= pb_rails("dialog", props: {
18
+ id:"dialog-complex2",
19
+ size: "sm"
20
+ }) do %>
21
+ <%= pb_rails("dialog/dialog_header", props: { id: "dialog-complex2", title:"Header Title inside Dialog Header", closeable: false } ) %>
22
+ <%= pb_rails("dialog/dialog_body", props:{text: "Hello Body Text, Nice to meet ya."}) %>
23
+ <%= pb_rails("dialog/dialog_footer", props: {cancel_button: "Cancel Button", confirm_button: "Okay", confirm_button_id:"confirm-complex2", id: "dialog-complex2"}) %>
24
+ <% end %>
@@ -0,0 +1,60 @@
1
+ import React, { useState } from 'react'
2
+ import Button from '../../pb_button/_button'
3
+ import Dialog from '../../pb_dialog/_dialog'
4
+
5
+
6
+ const DialogCloseable = () => {
7
+ // Simple example
8
+ const [isOpenSimple, setIsOpenSimple] = useState(false)
9
+ const closeSimple = () => setIsOpenSimple(false)
10
+ const openSimple = () => setIsOpenSimple(true)
11
+
12
+ // Complex example
13
+ const [isOpenComplex, setIsOpenComplex] = useState(false)
14
+ const closeComplex = () => setIsOpenComplex(false)
15
+ const openComplex = () => setIsOpenComplex(true)
16
+
17
+ return (
18
+ <>
19
+ <Button
20
+ marginRight='md'
21
+ onClick={openSimple}
22
+ >
23
+ {'Open Simple Dialog'}
24
+ </Button>
25
+ <Button onClick={openComplex}>{'Open Complex Dialog'}</Button>
26
+
27
+ <Dialog
28
+ cancelButton="Cancel Button"
29
+ closeable={false}
30
+ confirmButton="Okay"
31
+ onCancel={closeSimple}
32
+ onClose={closeSimple}
33
+ onConfirm={closeSimple}
34
+ opened={isOpenSimple}
35
+ size="sm"
36
+ text="Hello Body Text, Nice to meet ya."
37
+ title="Header Title is the Title Prop"
38
+ />
39
+ <Dialog
40
+ onClose={closeComplex}
41
+ opened={isOpenComplex}
42
+ size="sm"
43
+ >
44
+ <Dialog.Header closeable={false}>{'Header Title inside Dialog.Header'}</Dialog.Header>
45
+ <Dialog.Body>{'Hello Body Text, Nice to meet ya.'}</Dialog.Body>
46
+ <Dialog.Footer>
47
+ <Button onClick={closeComplex}>{'Okay'}</Button>
48
+ <Button
49
+ onClick={closeComplex}
50
+ variant="link"
51
+ >
52
+ {'Cancel Button'}
53
+ </Button>
54
+ </Dialog.Footer>
55
+ </Dialog>
56
+ </>
57
+ )
58
+ }
59
+
60
+ export default DialogCloseable
@@ -0,0 +1,3 @@
1
+ The `closeable` prop can be set to false to optionally render the Dialog header without the close “X” button. `closeable` is set to true by default.
2
+
3
+ This prop can be used with the simple as well as the complex version of the Dialog as can be seen here.
@@ -12,6 +12,7 @@ examples:
12
12
  - dialog_full_height_placement: Full Height Placement
13
13
  - dialog_loading: Loading
14
14
  - dialog_turbo_frames: Within Turbo Frames
15
+ - dialog_closeable: Close Button in Header
15
16
 
16
17
 
17
18
  react:
@@ -25,6 +26,7 @@ examples:
25
26
  - dialog_full_height: Full Height
26
27
  - dialog_full_height_placement: Full Height Placement
27
28
  - dialog_loading: Loading
29
+ - dialog_closeable: Close Button in Header
28
30
 
29
31
  swift:
30
32
  - dialog_default_swift: Simple
@@ -8,4 +8,5 @@ export { default as DialogStatus } from './_dialog_status.jsx'
8
8
  export { default as DialogStackedAlert } from './_dialog_stacked_alert.jsx'
9
9
  export { default as DialogFullHeight } from './_dialog_full_height.jsx'
10
10
  export { default as DialogFullHeightPlacement } from './_dialog_full_height_placement.jsx'
11
- export { default as DialogLoading } from './_dialog_loading.jsx'
11
+ export { default as DialogLoading } from './_dialog_loading.jsx'
12
+ export { default as DialogCloseable } from './_dialog_closeable.jsx'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.7.0.pre.rc.1
4
+ version: 15.7.0.pre.rc.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-12-11 00:00:00.000000000 Z
12
+ date: 2025-12-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -33,6 +33,8 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_colors_rails.html.erb
37
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_colors_rails.md
36
38
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_control_rails.html.erb
37
39
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_background_control_rails.md
38
40
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta.html.erb
@@ -60,6 +62,10 @@ files:
60
62
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_headers_vertical_border.jsx
61
63
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.jsx
62
64
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.md
65
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_background.jsx
66
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_background.md
67
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_background_multi.jsx
68
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_background_multi.md
63
69
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.jsx
64
70
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.md
65
71
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.html.erb
@@ -528,6 +534,10 @@ files:
528
534
  - app/pb_kits/playbook/pb_contact/docs/_contact_default.md
529
535
  - app/pb_kits/playbook/pb_contact/docs/_contact_default_swift.md
530
536
  - app/pb_kits/playbook/pb_contact/docs/_contact_props_swift.md
537
+ - app/pb_kits/playbook/pb_contact/docs/_contact_unstyled.html.erb
538
+ - app/pb_kits/playbook/pb_contact/docs/_contact_unstyled.jsx
539
+ - app/pb_kits/playbook/pb_contact/docs/_contact_unstyled_rails.md
540
+ - app/pb_kits/playbook/pb_contact/docs/_contact_unstyled_react.md
531
541
  - app/pb_kits/playbook/pb_contact/docs/_contact_with_detail.html.erb
532
542
  - app/pb_kits/playbook/pb_contact/docs/_contact_with_detail.jsx
533
543
  - app/pb_kits/playbook/pb_contact/docs/_contact_with_detail_swift.md
@@ -787,6 +797,9 @@ files:
787
797
  - app/pb_kits/playbook/pb_detail/docs/_detail_styled.jsx
788
798
  - app/pb_kits/playbook/pb_detail/docs/example.yml
789
799
  - app/pb_kits/playbook/pb_detail/docs/index.js
800
+ - app/pb_kits/playbook/pb_dialog/docs/_dialog_closeable.html.erb
801
+ - app/pb_kits/playbook/pb_dialog/docs/_dialog_closeable.jsx
802
+ - app/pb_kits/playbook/pb_dialog/docs/_dialog_closeable.md
790
803
  - app/pb_kits/playbook/pb_dialog/docs/_dialog_compound_components.html.erb
791
804
  - app/pb_kits/playbook/pb_dialog/docs/_dialog_compound_components.jsx
792
805
  - app/pb_kits/playbook/pb_dialog/docs/_dialog_compound_components.md