playbook_ui 14.9.0.pre.alpha.PBNTR702stickyleftcolrails4806 → 14.9.0.pre.alpha.PBNTR738collapsiblewithintablekit4855
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/table_header.html.erb +5 -3
- data/app/pb_kits/playbook/pb_avatar/_avatar.scss +0 -2
- data/app/pb_kits/playbook/pb_body/_body.scss +14 -13
- data/app/pb_kits/playbook/pb_body/_body_mixins.scss +22 -16
- data/app/pb_kits/playbook/pb_bread_crumbs/docs/_bread_crumbs_default.jsx +6 -0
- data/app/pb_kits/playbook/pb_caption/_caption_mixin.scss +2 -1
- data/app/pb_kits/playbook/pb_card/_card_mixin.scss +1 -1
- data/app/pb_kits/playbook/pb_collapsible/_collapsible.tsx +9 -4
- data/app/pb_kits/playbook/pb_collapsible/child_kits/CollapsibleContent.tsx +2 -2
- data/app/pb_kits/playbook/pb_collapsible/child_kits/CollapsibleMain.tsx +2 -2
- data/app/pb_kits/playbook/pb_file_upload/_file_upload.scss +5 -0
- data/app/pb_kits/playbook/pb_file_upload/_file_upload.tsx +7 -2
- data/app/pb_kits/playbook/pb_file_upload/file_upload.html.erb +8 -2
- data/app/pb_kits/playbook/pb_nav/_bold_mixin.scss +11 -1
- data/app/pb_kits/playbook/pb_nav/_collapsible_nav.scss +16 -2
- data/app/pb_kits/playbook/pb_nav/_vertical_nav.scss +1 -1
- data/app/pb_kits/playbook/pb_selectable_card/_selectable_card.scss +4 -4
- data/app/pb_kits/playbook/pb_selectable_card/selectable_card.html.erb +1 -1
- data/app/pb_kits/playbook/pb_stat_change/_stat_change.tsx +44 -36
- data/app/pb_kits/playbook/pb_stat_change/stat_change.html.erb +4 -4
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible.jsx +75 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible.md +1 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_click.jsx +108 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_click.md +2 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_content.jsx +94 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_content.md +0 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows.jsx +83 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows.md +3 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table.jsx +120 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table.md +1 -0
- data/app/pb_kits/playbook/pb_table/docs/example.yml +5 -0
- data/app/pb_kits/playbook/pb_table/docs/index.js +5 -0
- data/app/pb_kits/playbook/pb_table/index.ts +26 -100
- data/app/pb_kits/playbook/pb_table/styles/_all.scss +2 -1
- data/app/pb_kits/playbook/pb_table/styles/_collapsible.scss +35 -0
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_row.tsx +106 -1
- data/app/pb_kits/playbook/pb_table/table.html.erb +1 -1
- data/app/pb_kits/playbook/pb_table/table.rb +2 -17
- data/app/pb_kits/playbook/pb_title/_title.scss +6 -5
- data/app/pb_kits/playbook/pb_title/_title_mixin.scss +13 -0
- data/app/pb_kits/playbook/tokens/_titles.scss +0 -8
- data/app/pb_kits/playbook/utilities/_hover.scss +11 -2
- data/app/pb_kits/playbook/utilities/globalProps.ts +2 -0
- data/app/pb_kits/playbook/utilities/test/globalProps/hover.test.js +15 -0
- data/dist/chunks/{_typeahead-CCDoUmRR.js → _typeahead-ClJHKLj6.js} +3 -3
- data/dist/chunks/_weekday_stacked-DaVTrOfA.js +45 -0
- data/dist/chunks/{lib-CVPInSs5.js → lib-CtS0DLMo.js} +3 -3
- data/dist/chunks/{pb_form_validation-CDLJ5eAG.js → pb_form_validation-C3vQKj7-.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/hover.rb +7 -1
- data/lib/playbook/version.rb +1 -1
- metadata +17 -7
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.html.erb +0 -95
- data/dist/chunks/_weekday_stacked-CxjKLoMr.js +0 -45
data/lib/playbook/hover.rb
CHANGED
@@ -29,12 +29,16 @@ module Playbook
|
|
29
29
|
[]
|
30
30
|
end
|
31
31
|
|
32
|
+
def hover_underline_values
|
33
|
+
[true, false]
|
34
|
+
end
|
35
|
+
|
32
36
|
def hover_values
|
33
37
|
hover_options.keys.select { |sk| try(sk) }
|
34
38
|
end
|
35
39
|
|
36
40
|
def hover_attributes
|
37
|
-
%w[background shadow scale color]
|
41
|
+
%w[background shadow scale color underline]
|
38
42
|
end
|
39
43
|
|
40
44
|
def hover_props
|
@@ -51,6 +55,8 @@ module Playbook
|
|
51
55
|
value.each do |key, val|
|
52
56
|
if %i[background color].include?(key)
|
53
57
|
css += "#{prefix}_#{key}-#{val} " if hover_attributes.include?(key.to_s)
|
58
|
+
elsif %i[underline].include?(key) && val == true
|
59
|
+
css += "hover_underline "
|
54
60
|
elsif hover_attributes.include?(key.to_s) && send("hover_#{key}_values").include?(val.to_s)
|
55
61
|
css += "#{prefix}_#{key}_#{val} "
|
56
62
|
end
|
data/lib/playbook/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: playbook_ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 14.9.0.pre.alpha.
|
4
|
+
version: 14.9.0.pre.alpha.PBNTR738collapsiblewithintablekit4855
|
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: 2024-12-
|
12
|
+
date: 2024-12-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: actionpack
|
@@ -2617,7 +2617,6 @@ files:
|
|
2617
2617
|
- app/pb_kits/playbook/pb_table/docs/_table_sticky.html.erb
|
2618
2618
|
- app/pb_kits/playbook/pb_table/docs/_table_sticky.jsx
|
2619
2619
|
- app/pb_kits/playbook/pb_table/docs/_table_sticky.md
|
2620
|
-
- app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.html.erb
|
2621
2620
|
- app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.jsx
|
2622
2621
|
- app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_react.md
|
2623
2622
|
- app/pb_kits/playbook/pb_table/docs/_table_striped.html.erb
|
@@ -2633,6 +2632,16 @@ files:
|
|
2633
2632
|
- app/pb_kits/playbook/pb_table/docs/_table_vertical_border.jsx
|
2634
2633
|
- app/pb_kits/playbook/pb_table/docs/_table_with_background_kit.html.erb
|
2635
2634
|
- app/pb_kits/playbook/pb_table/docs/_table_with_background_kit.jsx
|
2635
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible.jsx
|
2636
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible.md
|
2637
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_click.jsx
|
2638
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_click.md
|
2639
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_content.jsx
|
2640
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_custom_content.md
|
2641
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows.jsx
|
2642
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_rows.md
|
2643
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table.jsx
|
2644
|
+
- app/pb_kits/playbook/pb_table/docs/_table_with_collapsible_with_nested_table.md
|
2636
2645
|
- app/pb_kits/playbook/pb_table/docs/_table_with_subcomponents.jsx
|
2637
2646
|
- app/pb_kits/playbook/pb_table/docs/_table_with_subcomponents.md
|
2638
2647
|
- app/pb_kits/playbook/pb_table/docs/_table_with_subcomponents_as_divs.html.erb
|
@@ -2645,6 +2654,7 @@ files:
|
|
2645
2654
|
- app/pb_kits/playbook/pb_table/index.ts
|
2646
2655
|
- app/pb_kits/playbook/pb_table/styles/_alignment.scss
|
2647
2656
|
- app/pb_kits/playbook/pb_table/styles/_all.scss
|
2657
|
+
- app/pb_kits/playbook/pb_table/styles/_collapsible.scss
|
2648
2658
|
- app/pb_kits/playbook/pb_table/styles/_content.scss
|
2649
2659
|
- app/pb_kits/playbook/pb_table/styles/_desktop_collapse.scss
|
2650
2660
|
- app/pb_kits/playbook/pb_table/styles/_headers.scss
|
@@ -3190,11 +3200,11 @@ files:
|
|
3190
3200
|
- app/pb_kits/playbook/utilities/test/globalProps/truncate.test.js
|
3191
3201
|
- app/pb_kits/playbook/utilities/text.ts
|
3192
3202
|
- app/pb_kits/playbook/utilities/validEmojiChecker.ts
|
3193
|
-
- dist/chunks/_typeahead-
|
3194
|
-
- dist/chunks/_weekday_stacked-
|
3203
|
+
- dist/chunks/_typeahead-ClJHKLj6.js
|
3204
|
+
- dist/chunks/_weekday_stacked-DaVTrOfA.js
|
3195
3205
|
- dist/chunks/lazysizes-B7xYodB-.js
|
3196
|
-
- dist/chunks/lib-
|
3197
|
-
- dist/chunks/pb_form_validation-
|
3206
|
+
- dist/chunks/lib-CtS0DLMo.js
|
3207
|
+
- dist/chunks/pb_form_validation-C3vQKj7-.js
|
3198
3208
|
- dist/chunks/vendor.js
|
3199
3209
|
- dist/menu.yml
|
3200
3210
|
- dist/playbook-doc.js
|
@@ -1,95 +0,0 @@
|
|
1
|
-
<%= pb_rails("table", props: { size: "md", responsive: "scroll", sticky_left_column: ["1", "2", "3"] }) do %>
|
2
|
-
<thead>
|
3
|
-
<tr>
|
4
|
-
<th id="1">Column 1</th>
|
5
|
-
<th id="2">Column 2</th>
|
6
|
-
<th id="3">Column 3</th>
|
7
|
-
<th>Column 4</th>
|
8
|
-
<th>Column 5</th>
|
9
|
-
<th>Column 6</th>
|
10
|
-
<th>Column 7</th>
|
11
|
-
<th>Column 8</th>
|
12
|
-
<th>Column 9</th>
|
13
|
-
<th>Column 10</th>
|
14
|
-
<th>Column 11</th>
|
15
|
-
<th>Column 12</th>
|
16
|
-
<th>Column 13</th>
|
17
|
-
<th>Column 14</th>
|
18
|
-
<th>Column 15</th>
|
19
|
-
</tr>
|
20
|
-
</thead>
|
21
|
-
<tbody>
|
22
|
-
<tr>
|
23
|
-
<td id="1">Value 1</td>
|
24
|
-
<td id="2">Value 2</td>
|
25
|
-
<td id="3">Value 3</td>
|
26
|
-
<td>Value 4</td>
|
27
|
-
<td>Value 5</td>
|
28
|
-
<td>Column 6</td>
|
29
|
-
<td>Column 7</td>
|
30
|
-
<td>Column 8</td>
|
31
|
-
<td>Column 9</td>
|
32
|
-
<td>Column 10</td>
|
33
|
-
<td>Column 11</td>
|
34
|
-
<td>Column 12</td>
|
35
|
-
<td>Column 13</td>
|
36
|
-
<td>Column 14</td>
|
37
|
-
<td>Column 15</td>
|
38
|
-
|
39
|
-
</tr>
|
40
|
-
<tr>
|
41
|
-
<td id="1">Value 1</td>
|
42
|
-
<td id="2">Value 2</td>
|
43
|
-
<td id="3">Value 3</td>
|
44
|
-
<td>Value 4</td>
|
45
|
-
<td>Value 5</td>
|
46
|
-
<td>Column 6</td>
|
47
|
-
<td>Column 7</td>
|
48
|
-
<td>Column 8</td>
|
49
|
-
<td>Column 9</td>
|
50
|
-
<td>Column 10</td>
|
51
|
-
<td>Column 11</td>
|
52
|
-
<td>Column 12</td>
|
53
|
-
<td>Column 13</td>
|
54
|
-
<td>Column 14</td>
|
55
|
-
<td>Column 15</td>
|
56
|
-
|
57
|
-
</tr>
|
58
|
-
<tr>
|
59
|
-
<td id="1">Value 1</td>
|
60
|
-
<td id="2">Value 2</td>
|
61
|
-
<td id="3">Value 3</td>
|
62
|
-
<td>Value 4</td>
|
63
|
-
<td>Value 5</td>
|
64
|
-
<td>Column 6</td>
|
65
|
-
<td>Column 7</td>
|
66
|
-
<td>Column 8</td>
|
67
|
-
<td>Column 9</td>
|
68
|
-
<td>Column 10</td>
|
69
|
-
<td>Column 11</td>
|
70
|
-
<td>Column 12</td>
|
71
|
-
<td>Column 13</td>
|
72
|
-
<td>Column 14</td>
|
73
|
-
<td>Column 15</td>
|
74
|
-
|
75
|
-
</tr>
|
76
|
-
<tr>
|
77
|
-
<td id="1">Value 1</td>
|
78
|
-
<td id="2">Value 2</td>
|
79
|
-
<td id="3">Value 3</td>
|
80
|
-
<td>Value 4</td>
|
81
|
-
<td>Value 5</td>
|
82
|
-
<td>Column 6</td>
|
83
|
-
<td>Column 7</td>
|
84
|
-
<td>Column 8</td>
|
85
|
-
<td>Column 9</td>
|
86
|
-
<td>Column 10</td>
|
87
|
-
<td>Column 11</td>
|
88
|
-
<td>Column 12</td>
|
89
|
-
<td>Column 13</td>
|
90
|
-
<td>Column 14</td>
|
91
|
-
<td>Column 15</td>
|
92
|
-
|
93
|
-
</tr>
|
94
|
-
</tbody>
|
95
|
-
<% end %>
|