playbook_ui 14.21.2.pre.alpha.PLAY22558410 → 14.21.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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/Components/CustomCell.tsx +2 -5
- data/app/pb_kits/playbook/pb_advanced_table/Components/RegularTableView.tsx +4 -20
- data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +5 -25
- data/app/pb_kits/playbook/pb_advanced_table/Components/VirtualizedTableView.tsx +16 -36
- data/app/pb_kits/playbook/pb_advanced_table/Context/AdvancedTableContext.tsx +5 -18
- data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableActions.ts +17 -37
- data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableState.ts +5 -30
- data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableBody.tsx +0 -3
- data/app/pb_kits/playbook/pb_advanced_table/SubKits/TableHeader.tsx +40 -91
- data/app/pb_kits/playbook/pb_advanced_table/Utilities/CellRendererUtils.tsx +1 -4
- data/app/pb_kits/playbook/pb_advanced_table/Utilities/TableContainerStyles.ts +2 -3
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +4 -49
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +18 -36
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +2 -105
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_sort.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_border_color_rails.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows.jsx +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows_react.md +3 -5
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_actions.jsx +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_selectable_rows_actions_rails.html.erb +2 -3
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_sticky_header.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +0 -6
- data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +0 -4
- data/app/pb_kits/playbook/pb_advanced_table/flat_advanced_table.js +84 -60
- data/app/pb_kits/playbook/pb_advanced_table/index.js +213 -125
- data/app/pb_kits/playbook/pb_advanced_table/table_action_bar.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/table_header.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/table_header.rb +0 -5
- data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/table_row.rb +0 -33
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_blank_selection.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_blank_selection.jsx +4 -7
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_clear_selection.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_value.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_value.jsx +4 -7
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_error.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_error.jsx +4 -7
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select.jsx +10 -19
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_display.jsx +10 -19
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_display_rails.html.erb +10 -10
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_rails.html.erb +10 -10
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_autocomplete.html.erb +10 -10
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_autocomplete.jsx +11 -20
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_custom_options.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_custom_options.jsx +8 -8
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_default.html.erb +10 -10
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_multi_select_with_default.jsx +14 -23
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_separators_hidden.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_separators_hidden.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subcomponent_structure.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subcomponent_structure_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subtle_variant.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_subtle_variant.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_with_subcomponents.html.erb +4 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_with_subcomponents.jsx +4 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display.jsx +4 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display_rails.html.erb +4 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_options.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_options_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_padding.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_padding.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_trigger.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_trigger_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_external_control.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_label.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_label.jsx +3 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_search.jsx +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_search_rails.html.erb +3 -3
- data/app/pb_kits/playbook/pb_dropdown/docs/example.yml +0 -4
- data/app/pb_kits/playbook/pb_dropdown/docs/index.js +1 -3
- data/app/pb_kits/playbook/pb_filter/Filter/index.tsx +0 -13
- data/app/pb_kits/playbook/pb_filter/_filter.scss +0 -4
- data/app/pb_kits/playbook/pb_filter/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_filter/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns.html.erb +8 -8
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_columns_rails.md +1 -1
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns.html.erb +12 -12
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_left_columns_rails.md +2 -2
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns.html.erb +12 -12
- data/app/pb_kits/playbook/pb_table/docs/_table_sticky_right_columns_rails.md +2 -2
- data/app/pb_kits/playbook/pb_table/index.ts +4 -4
- data/app/pb_kits/playbook/pb_table/styles/_vertical_border.scss +0 -4
- data/dist/chunks/_typeahead-BlPRej0F.js +22 -0
- data/dist/chunks/_weekday_stacked-CzxoxxCR.js +45 -0
- data/dist/chunks/lazysizes-DHz07jlL.js +1 -0
- data/dist/chunks/lib-D4vXIZF5.js +29 -0
- data/dist/chunks/{pb_form_validation-BVF3TmcL.js → pb_form_validation-DyvJ8iPe.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +3 -3
- 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/version.rb +2 -2
- metadata +7 -31
- data/app/pb_kits/playbook/pb_advanced_table/Utilities/ColumnStylingHelper.ts +0 -15
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table_action_bar.js +0 -36
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.jsx +0 -51
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling.md +0 -7
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.jsx +0 -77
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers.md +0 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.html.erb +0 -63
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_column_headers_rails.md +0 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.html.erb +0 -38
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_column_styling_rails.md +0 -7
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_infinite_scroll.md +0 -3
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.jsx +0 -64
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_row_styling.md +0 -7
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options.html.erb +0 -52
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options.jsx +0 -99
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options_rails.md +0 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_icon_options_react.md +0 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options.html.erb +0 -28
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options.jsx +0 -47
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options_rails.md +0 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_radio_options_react.md +0 -1
- data/app/pb_kits/playbook/pb_filter/Filter/FilterSection.tsx +0 -49
- data/app/pb_kits/playbook/pb_filter/Filter/FilterSidebar.tsx +0 -69
- data/app/pb_kits/playbook/pb_filter/docs/_filter_sidebar.jsx +0 -224
- data/dist/chunks/_typeahead-B80UsDrG.js +0 -22
- data/dist/chunks/_weekday_stacked-D1bqIne1.js +0 -45
- data/dist/chunks/lazysizes-B7xYodB-.js +0 -1
- data/dist/chunks/lib-CTkMyvfQ.js +0 -29
@@ -1,29 +1,18 @@
|
|
1
1
|
import React from 'react'
|
2
2
|
import FilterSingle, { FilterSingleProps } from './FilterSingle'
|
3
3
|
import FilterDouble, { FilterDoubleProps } from './FilterDouble'
|
4
|
-
import FilterSidebar, { FilterSidebarProps } from './FilterSidebar'
|
5
|
-
import FilterSection from './FilterSection'
|
6
4
|
|
7
5
|
type FilterProps =
|
8
6
|
| FilterSingleProps
|
9
7
|
| (FilterDoubleProps & {
|
10
8
|
double?: boolean,
|
11
9
|
})
|
12
|
-
| (FilterSidebarProps & {
|
13
|
-
variant?: null | 'sidebar',
|
14
|
-
})
|
15
10
|
|
16
11
|
const Filter = ({
|
17
12
|
double = false,
|
18
|
-
variant,
|
19
13
|
...templateProps
|
20
14
|
}: FilterProps): React.ReactElement => {
|
21
15
|
const displayFilter = () => {
|
22
|
-
if (variant === 'sidebar') {
|
23
|
-
return (
|
24
|
-
<FilterSidebar {...templateProps} />
|
25
|
-
)
|
26
|
-
}
|
27
16
|
if (double === true) {
|
28
17
|
return (
|
29
18
|
<FilterDouble {...templateProps} />
|
@@ -41,6 +30,4 @@ const Filter = ({
|
|
41
30
|
)
|
42
31
|
}
|
43
32
|
|
44
|
-
Filter.Section = FilterSection
|
45
|
-
|
46
33
|
export default Filter
|
@@ -8,4 +8,3 @@ export { default as FilterMaxWidth } from './_filter_max_width.jsx'
|
|
8
8
|
export { default as FilterMaxHeight } from './_filter_max_height.jsx'
|
9
9
|
export { default as FilterPlacement } from './_filter_placement.jsx'
|
10
10
|
export { default as FilterPopoverProps } from './_filter_popover_props.jsx'
|
11
|
-
export { default as FilterSidebar } from './_filter_sidebar.jsx'
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<%= pb_rails("table", props: { size: "md", responsive: "scroll", sticky_left_column: ["a"], sticky_right_column: ["b"] }) do %>
|
2
2
|
<thead>
|
3
3
|
<tr>
|
4
|
-
<th
|
4
|
+
<th id="a">Column 1</th>
|
5
5
|
<th>Column 2</th>
|
6
6
|
<th>Column 3</th>
|
7
7
|
<th>Column 4</th>
|
@@ -15,12 +15,12 @@
|
|
15
15
|
<th>Column 12</th>
|
16
16
|
<th>Column 13</th>
|
17
17
|
<th>Column 14</th>
|
18
|
-
<th
|
18
|
+
<th id="b">Column 15</th>
|
19
19
|
</tr>
|
20
20
|
</thead>
|
21
21
|
<tbody>
|
22
22
|
<tr>
|
23
|
-
<td
|
23
|
+
<td id="a">Value 1</td>
|
24
24
|
<td>Value 2</td>
|
25
25
|
<td>Value 3</td>
|
26
26
|
<td>Value 4</td>
|
@@ -34,10 +34,10 @@
|
|
34
34
|
<td>Value 12</td>
|
35
35
|
<td>Value 13</td>
|
36
36
|
<td>Value 14</td>
|
37
|
-
<td
|
37
|
+
<td id="b">Value 15</td>
|
38
38
|
</tr>
|
39
39
|
<tr>
|
40
|
-
<td
|
40
|
+
<td id="a">Value 1</td>
|
41
41
|
<td>Value 2</td>
|
42
42
|
<td>Value 3</td>
|
43
43
|
<td>Value 4</td>
|
@@ -51,10 +51,10 @@
|
|
51
51
|
<td>Value 12</td>
|
52
52
|
<td>Value 13</td>
|
53
53
|
<td>Value 14</td>
|
54
|
-
<td
|
54
|
+
<td id="b">Value 15</td>
|
55
55
|
</tr>
|
56
56
|
<tr>
|
57
|
-
<td
|
57
|
+
<td id="a">Value 1</td>
|
58
58
|
<td>Value 2</td>
|
59
59
|
<td>Value 3</td>
|
60
60
|
<td>Value 4</td>
|
@@ -68,7 +68,7 @@
|
|
68
68
|
<td>Value 12</td>
|
69
69
|
<td>Value 13</td>
|
70
70
|
<td>Value 14</td>
|
71
|
-
<td
|
71
|
+
<td id="b">Value 15</td>
|
72
72
|
</tr>
|
73
73
|
</tbody>
|
74
74
|
<% end %>
|
@@ -1,3 +1,3 @@
|
|
1
1
|
The `sticky_left_column` and `sticky_right_column` props can be used together on the same table as needed.
|
2
2
|
|
3
|
-
Please ensure that unique
|
3
|
+
Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using props.
|
@@ -1,9 +1,9 @@
|
|
1
1
|
<%= pb_rails("table", props: { size: "md", responsive: "scroll", sticky_left_column: ["1", "2", "3"] }) do %>
|
2
2
|
<thead>
|
3
3
|
<tr>
|
4
|
-
<th
|
5
|
-
<th
|
6
|
-
<th
|
4
|
+
<th id="1">Column 1</th>
|
5
|
+
<th id="2">Column 2</th>
|
6
|
+
<th id="3">Column 3</th>
|
7
7
|
<th>Column 4</th>
|
8
8
|
<th>Column 5</th>
|
9
9
|
<th>Column 6</th>
|
@@ -20,9 +20,9 @@
|
|
20
20
|
</thead>
|
21
21
|
<tbody>
|
22
22
|
<tr>
|
23
|
-
<td
|
24
|
-
<td
|
25
|
-
<td
|
23
|
+
<td id="1">Value 1</td>
|
24
|
+
<td id="2">Value 2</td>
|
25
|
+
<td id="3">Value 3</td>
|
26
26
|
<td>Value 4</td>
|
27
27
|
<td>Value 5</td>
|
28
28
|
<td>Value 6</td>
|
@@ -38,9 +38,9 @@
|
|
38
38
|
|
39
39
|
</tr>
|
40
40
|
<tr>
|
41
|
-
<td
|
42
|
-
<td
|
43
|
-
<td
|
41
|
+
<td id="1">Value 1</td>
|
42
|
+
<td id="2">Value 2</td>
|
43
|
+
<td id="3">Value 3</td>
|
44
44
|
<td>Value 4</td>
|
45
45
|
<td>Value 5</td>
|
46
46
|
<td>Value 6</td>
|
@@ -56,9 +56,9 @@
|
|
56
56
|
|
57
57
|
</tr>
|
58
58
|
<tr>
|
59
|
-
<td
|
60
|
-
<td
|
61
|
-
<td
|
59
|
+
<td id="1">Value 1</td>
|
60
|
+
<td id="2">Value 2</td>
|
61
|
+
<td id="3">Value 3</td>
|
62
62
|
<td>Value 4</td>
|
63
63
|
<td>Value 5</td>
|
64
64
|
<td>Value 6</td>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
The `sticky_left_column` prop expects an array of the column
|
1
|
+
The `sticky_left_column` prop expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
|
2
2
|
|
3
|
-
Please ensure that unique
|
3
|
+
Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using the `sticky_left_column`.
|
@@ -13,9 +13,9 @@
|
|
13
13
|
<th>Column 10</th>
|
14
14
|
<th>Column 11</th>
|
15
15
|
<th>Column 12</th>
|
16
|
-
<th
|
17
|
-
<th
|
18
|
-
<th
|
16
|
+
<th id="13">Column 13</th>
|
17
|
+
<th id="14">Column 14</th>
|
18
|
+
<th id="15">Column 15</th>
|
19
19
|
</tr>
|
20
20
|
</thead>
|
21
21
|
<tbody>
|
@@ -32,9 +32,9 @@
|
|
32
32
|
<td>Value 10</td>
|
33
33
|
<td>Value 11</td>
|
34
34
|
<td>Value 12</td>
|
35
|
-
<td
|
36
|
-
<td
|
37
|
-
<td
|
35
|
+
<td id="13">Value 13</td>
|
36
|
+
<td id="14">Value 14</td>
|
37
|
+
<td id="15">Value 15</td>
|
38
38
|
</tr>
|
39
39
|
<tr>
|
40
40
|
<td>Value 1</td>
|
@@ -49,9 +49,9 @@
|
|
49
49
|
<td>Value 10</td>
|
50
50
|
<td>Value 11</td>
|
51
51
|
<td>Value 12</td>
|
52
|
-
<td
|
53
|
-
<td
|
54
|
-
<td
|
52
|
+
<td id="13">Value 13</td>
|
53
|
+
<td id="14">Value 14</td>
|
54
|
+
<td id="15">Value 15</td>
|
55
55
|
</tr>
|
56
56
|
<tr>
|
57
57
|
<td>Value 1</td>
|
@@ -66,9 +66,9 @@
|
|
66
66
|
<td>Value 10</td>
|
67
67
|
<td>Value 11</td>
|
68
68
|
<td>Value 12</td>
|
69
|
-
<td
|
70
|
-
<td
|
71
|
-
<td
|
69
|
+
<td id="13">Value 13</td>
|
70
|
+
<td id="14">Value 14</td>
|
71
|
+
<td id="15">Value 15</td>
|
72
72
|
</tr>
|
73
73
|
</tbody>
|
74
74
|
<% end %>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
The `sticky_right_column` prop works in the same way as the above `sticky_left_column` prop. It expects an array of the column
|
1
|
+
The `sticky_right_column` prop works in the same way as the above `sticky_left_column` prop. It expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
|
2
2
|
|
3
|
-
Please ensure that unique
|
3
|
+
Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using the `sticky_right_column` prop.
|
@@ -64,8 +64,8 @@ export default class PbTable extends PbEnhancedElement {
|
|
64
64
|
|
65
65
|
this.stickyLeftColumns.forEach((colId, index) => {
|
66
66
|
const isLastColumn = index === this.stickyLeftColumns.length - 1;
|
67
|
-
const header = this.element.querySelector(`th[
|
68
|
-
const cells = this.element.querySelectorAll(`td[
|
67
|
+
const header = this.element.querySelector(`th[id="${colId}"]`);
|
68
|
+
const cells = this.element.querySelectorAll(`td[id="${colId}"]`);
|
69
69
|
|
70
70
|
if (header) {
|
71
71
|
header.classList.add('sticky');
|
@@ -125,8 +125,8 @@ export default class PbTable extends PbEnhancedElement {
|
|
125
125
|
|
126
126
|
this.stickyRightColumnsReversed.forEach((colId, index) => {
|
127
127
|
const isLastColumn = index === this.stickyRightColumns.length - 1;
|
128
|
-
const header = this.element.querySelector(`th[
|
129
|
-
const cells = this.element.querySelectorAll(`td[
|
128
|
+
const header = this.element.querySelector(`th[id="${colId}"]`);
|
129
|
+
const cells = this.element.querySelectorAll(`td[id="${colId}"]`);
|
130
130
|
|
131
131
|
if (header) {
|
132
132
|
header.classList.add('sticky');
|
@@ -4,10 +4,6 @@
|
|
4
4
|
border-right: 1px solid $border_light !important;
|
5
5
|
}
|
6
6
|
|
7
|
-
thead tr:not(:first-child) th {
|
8
|
-
border-right: 1px solid $border_light !important;
|
9
|
-
}
|
10
|
-
|
11
7
|
@media screen and (min-width: $screen-xs-min) {
|
12
8
|
tr:hover, .pb_table_tr:hover {
|
13
9
|
td:last-child, .pb_table_td:last-child {
|