playbook_ui 14.23.0.pre.alpha.PLAY2148selectclassnamessinglespacesfix9144 → 14.23.0.pre.alpha.PLAY2205atborderbug9085
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 +6 -7
- data/app/pb_kits/playbook/pb_advanced_table/Components/TableActionBar.tsx +10 -10
- data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +1 -0
- data/app/pb_kits/playbook/pb_advanced_table/Hooks/useTableState.ts +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +53 -1
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +9 -6
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table.rb +11 -1
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table_action_bar.js +16 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +0 -1
- data/app/pb_kits/playbook/pb_advanced_table/scss_partials/advanced_table_sticky_mixin.scss +7 -1
- data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +2 -2
- data/app/pb_kits/playbook/pb_checkbox/checkbox.rb +1 -12
- data/app/pb_kits/playbook/pb_checkbox/docs/_checkbox_indeterminate.html.erb +1 -1
- data/app/pb_kits/playbook/pb_checkbox/docs/_checkbox_indeterminate_rails.md +1 -2
- data/app/pb_kits/playbook/pb_checkbox/index.js +1 -3
- data/app/pb_kits/playbook/pb_select/select.rb +2 -4
- data/app/pb_kits/playbook/pb_table/docs/_table_with_selectable_rows.html.erb +0 -1
- data/dist/chunks/{_weekday_stacked-DfH_cGOX.js → _weekday_stacked-BNHSKTSw.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/menu.yml +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +3 -5
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_with_custom_header_multi_header.jsx +0 -107
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_with_custom_header_multi_header.md +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7910284d54e19a7de3b5dc301a6c329aa75442f647dee38abf49b2e08ed7c9e8
|
4
|
+
data.tar.gz: e4dc343888e79edcf515894e20dbdd17b32a278e190be0b54bd91ed4e52d826e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cbe316f1055a872f415b745323b15423193c3ebed6d778429631886657eb3b81867e9d8d39d8100a897efbf0e79fd89684067797464c75b216dccefb008b681
|
7
|
+
data.tar.gz: 06faadeca41137228c2271230f914540add4169d9f9003ca460918a60bd3951206f552b657012efb1e4c6fd54f67d54a993004ae7be9574604f11343cf88b205
|
@@ -20,7 +20,7 @@ interface CustomCellProps {
|
|
20
20
|
customRenderer?: (row: Row<GenericObject>, value: string | undefined) => React.ReactNode
|
21
21
|
selectableRows?: boolean
|
22
22
|
customStyle?: GenericObject
|
23
|
-
}
|
23
|
+
}
|
24
24
|
|
25
25
|
export const CustomCell = ({
|
26
26
|
getValue,
|
@@ -35,7 +35,7 @@ export const CustomCell = ({
|
|
35
35
|
|
36
36
|
const handleOnExpand = (row: Row<GenericObject>) => {
|
37
37
|
onRowToggleClick && onRowToggleClick(row);
|
38
|
-
|
38
|
+
|
39
39
|
if (!expandedControl) {
|
40
40
|
setExpanded({ ...expanded, [row.id]: !row.getIsExpanded() });
|
41
41
|
}
|
@@ -46,8 +46,8 @@ export const CustomCell = ({
|
|
46
46
|
|
47
47
|
return (
|
48
48
|
<div style={{ paddingLeft: `${row.depth * 1.25}em`}}>
|
49
|
-
<Flex
|
50
|
-
alignItems="center"
|
49
|
+
<Flex
|
50
|
+
alignItems="center"
|
51
51
|
columnGap="xs"
|
52
52
|
justify="start"
|
53
53
|
orientation="row"
|
@@ -71,12 +71,11 @@ export const CustomCell = ({
|
|
71
71
|
>
|
72
72
|
{row.getIsExpanded() ? (
|
73
73
|
<Icon cursor="pointer"
|
74
|
-
icon="circle-play"
|
75
|
-
rotation={90}
|
74
|
+
icon="circle-play-down"
|
76
75
|
/>
|
77
76
|
) : (
|
78
77
|
<Icon cursor="pointer"
|
79
|
-
icon="circle-play"
|
78
|
+
icon="circle-play"
|
80
79
|
/>
|
81
80
|
)}
|
82
81
|
</button>
|
@@ -112,7 +112,7 @@ const TableActionBar: React.FC<TableActionBarProps> = ({
|
|
112
112
|
paddingBottom="xs"
|
113
113
|
text={node.label}
|
114
114
|
/>
|
115
|
-
<Flex flexDirection="column"
|
115
|
+
<Flex flexDirection="column"
|
116
116
|
paddingLeft="lg"
|
117
117
|
>
|
118
118
|
{node?.children?.map((child) =>
|
@@ -141,8 +141,8 @@ const TableActionBar: React.FC<TableActionBarProps> = ({
|
|
141
141
|
setShowPopover(!shouldClose)
|
142
142
|
|
143
143
|
const popoverReference = (
|
144
|
-
<Tooltip
|
145
|
-
placement="top"
|
144
|
+
<Tooltip
|
145
|
+
placement="top"
|
146
146
|
text="Column Configuration"
|
147
147
|
>
|
148
148
|
<div onClick={togglePopover}>
|
@@ -170,8 +170,8 @@ const TableActionBar: React.FC<TableActionBarProps> = ({
|
|
170
170
|
>
|
171
171
|
{type === "row-selection" ? (
|
172
172
|
<>
|
173
|
-
<Caption color="light"
|
174
|
-
paddingLeft="xs"
|
173
|
+
<Caption color="light"
|
174
|
+
paddingLeft="xs"
|
175
175
|
size="xs"
|
176
176
|
>
|
177
177
|
{selectedCount} Selected
|
@@ -188,15 +188,15 @@ const TableActionBar: React.FC<TableActionBarProps> = ({
|
|
188
188
|
zIndex={3}
|
189
189
|
>
|
190
190
|
<>
|
191
|
-
<Caption
|
192
|
-
paddingY="sm"
|
191
|
+
<Caption
|
192
|
+
paddingY="sm"
|
193
193
|
text="Columns Config"
|
194
|
-
textAlign="center"
|
194
|
+
textAlign="center"
|
195
195
|
/>
|
196
196
|
<SectionSeparator paddingBottom="xs" />
|
197
197
|
{tree.map((node: VisibilityNode) => (
|
198
|
-
<Flex cursor="pointer"
|
199
|
-
flexDirection="column"
|
198
|
+
<Flex cursor="pointer"
|
199
|
+
flexDirection="column"
|
200
200
|
key={node.id}
|
201
201
|
paddingX="xs"
|
202
202
|
>
|
@@ -83,11 +83,11 @@ export function useTableState({
|
|
83
83
|
const buildColumns = useCallback((columnDefinitions: GenericObject[], isRoot = true): any[] => {
|
84
84
|
return columnDefinitions?.map((column, index) => {
|
85
85
|
const isFirstColumn = isRoot && index === 0;
|
86
|
+
|
86
87
|
// Handle grouped columns
|
87
88
|
if (column.columns && column.columns.length > 0) {
|
88
89
|
return {
|
89
|
-
header: column.header
|
90
|
-
id: column.id ?? column.label ?? `group-${index}`,
|
90
|
+
header: column.header || column.label || "",
|
91
91
|
columns: buildColumns(column.columns, false),
|
92
92
|
};
|
93
93
|
}
|
@@ -124,13 +124,65 @@
|
|
124
124
|
-ms-overflow-style: none !important;
|
125
125
|
scrollbar-width: none !important;
|
126
126
|
}
|
127
|
-
|
127
|
+
|
128
|
+
// When action bar is hidden, ensure proper border radius for header corners
|
129
|
+
&.hidden-action-bar {
|
130
|
+
.pb_advanced_table_header {
|
131
|
+
> tr:first-child {
|
132
|
+
th:first-child {
|
133
|
+
border-top-left-radius: 4px !important;
|
134
|
+
}
|
135
|
+
th:last-child {
|
136
|
+
border-top-right-radius: 4px !important;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
}
|
140
|
+
|
141
|
+
// Also handle the case when there are multiple header rows
|
142
|
+
.pb_advanced_table_header {
|
143
|
+
> tr:first-child {
|
144
|
+
th:first-child,
|
145
|
+
.table-header-cells:first-child,
|
146
|
+
.table-header-cells-custom:first-child {
|
147
|
+
border-top-left-radius: 4px !important;
|
148
|
+
}
|
149
|
+
th:last-child,
|
150
|
+
.table-header-cells:last-child,
|
151
|
+
.table-header-cells-custom:last-child {
|
152
|
+
border-top-right-radius: 4px !important;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
// When action bar is shown, remove border radius from header
|
159
|
+
.row-selection-actions-card.is-visible ~ * .pb_advanced_table_header,
|
160
|
+
.row-selection-actions-card.show-action-card ~ * .pb_advanced_table_header {
|
161
|
+
> tr:first-child {
|
162
|
+
th:first-child,
|
163
|
+
th:last-child,
|
164
|
+
.table-header-cells:first-child,
|
165
|
+
.table-header-cells:last-child,
|
166
|
+
.table-header-cells-custom:first-child,
|
167
|
+
.table-header-cells-custom:last-child {
|
168
|
+
border-top-left-radius: 0 !important;
|
169
|
+
border-top-right-radius: 0 !important;
|
170
|
+
}
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
128
174
|
|
129
175
|
.row-selection-actions-card {
|
130
176
|
border-bottom-right-radius: 0px !important;
|
131
177
|
border-bottom-left-radius: 0px !important;
|
132
178
|
border-bottom-color: transparent;
|
133
179
|
transition: height 300ms ease;
|
180
|
+
|
181
|
+
&.is-visible,
|
182
|
+
&.show-action-card {
|
183
|
+
border-top-left-radius: 4px !important;
|
184
|
+
border-top-right-radius: 4px !important;
|
185
|
+
}
|
134
186
|
}
|
135
187
|
.table-header-cells:first-child {
|
136
188
|
min-width: 180px;
|
@@ -218,10 +218,10 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
218
218
|
)
|
219
219
|
|
220
220
|
return (
|
221
|
-
<Card
|
221
|
+
<Card
|
222
222
|
borderNone
|
223
223
|
borderRadius="none"
|
224
|
-
className="advanced-table-fullscreen-header"
|
224
|
+
className="advanced-table-fullscreen-header"
|
225
225
|
{...props}
|
226
226
|
>
|
227
227
|
<Flex justify="end">
|
@@ -250,6 +250,10 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
250
250
|
const ariaProps = buildAriaProps(aria);
|
251
251
|
const dataProps = buildDataProps(data);
|
252
252
|
const htmlProps = buildHtmlProps(htmlOptions);
|
253
|
+
|
254
|
+
// Visibility flag for action bar
|
255
|
+
const isActionBarVisible = (selectableRows && showActionsBar && selectedRowsLength > 0) || columnVisibilityControl;
|
256
|
+
|
253
257
|
const classes = classnames(
|
254
258
|
buildCss("pb_advanced_table"),
|
255
259
|
`advanced-table-responsive-${responsive}`,
|
@@ -257,6 +261,8 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
257
261
|
{
|
258
262
|
'advanced-table-fullscreen': isFullscreen,
|
259
263
|
'advanced-table-allow-fullscreen': allowFullScreen,
|
264
|
+
// Add the hidden-action-bar class when action bar functionality exists but is not visible
|
265
|
+
'hidden-action-bar': (selectableRows || columnVisibilityControl) && !isActionBarVisible,
|
260
266
|
},
|
261
267
|
{'advanced-table-sticky-left-columns': stickyLeftColumn && stickyLeftColumn.length > 0},
|
262
268
|
columnGroupBorderColor ? `column-group-border-${columnGroupBorderColor}` : '',
|
@@ -270,9 +276,6 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
270
276
|
? getVirtualizedContainerStyles(maxHeight)
|
271
277
|
: {};
|
272
278
|
|
273
|
-
// Visibility flag for action bar
|
274
|
-
const isActionBarVisible = (selectableRows && showActionsBar && selectedRowsLength > 0) || columnVisibilityControl;
|
275
|
-
|
276
279
|
// The actual Main <Table /> element
|
277
280
|
const tableElement = (
|
278
281
|
<Table
|
@@ -288,7 +291,7 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
288
291
|
) : (
|
289
292
|
<>
|
290
293
|
<TableHeader />
|
291
|
-
<TableBody
|
294
|
+
<TableBody
|
292
295
|
isFetching={isFetching}
|
293
296
|
/>
|
294
297
|
</>
|
@@ -35,7 +35,12 @@ module Playbook
|
|
35
35
|
default: []
|
36
36
|
|
37
37
|
def classname
|
38
|
-
additional_classes = [
|
38
|
+
additional_classes = [
|
39
|
+
responsive_classname,
|
40
|
+
max_height_classname,
|
41
|
+
hide_scroll_bar_class,
|
42
|
+
hidden_action_bar_class,
|
43
|
+
]
|
39
44
|
additional_classes << "column-group-border-#{column_group_border_color}" if column_group_border_color != "none"
|
40
45
|
generate_classname("pb_advanced_table", *additional_classes, separator: " ")
|
41
46
|
end
|
@@ -52,6 +57,11 @@ module Playbook
|
|
52
57
|
scroll_bar_none ? "advanced-table-hide-scrollbar " : ""
|
53
58
|
end
|
54
59
|
|
60
|
+
def hidden_action_bar_class
|
61
|
+
# Add hidden-action-bar class when action bar functionality is enabled but not currently visible
|
62
|
+
selectable_rows && !is_action_bar_visible ? "hidden-action-bar" : ""
|
63
|
+
end
|
64
|
+
|
55
65
|
def selected_rows
|
56
66
|
@selected_rows ||= []
|
57
67
|
end
|
@@ -1,4 +1,7 @@
|
|
1
1
|
function showActionBar(actionBar, selectedCount) {
|
2
|
+
// Get container
|
3
|
+
const tableContainer = actionBar.closest('.pb_advanced_table');
|
4
|
+
|
2
5
|
// Show action bar directly
|
3
6
|
actionBar.style.height = "auto";
|
4
7
|
actionBar.style.overflow = "visible";
|
@@ -8,6 +11,11 @@ function showActionBar(actionBar, selectedCount) {
|
|
8
11
|
actionBar.classList.remove("p_none");
|
9
12
|
actionBar.classList.add("p_xs", "is-visible", "show-action-card");
|
10
13
|
|
14
|
+
// Remove hidden-action-bar class when action bar is shown
|
15
|
+
if (tableContainer) {
|
16
|
+
tableContainer.classList.remove("hidden-action-bar");
|
17
|
+
}
|
18
|
+
|
11
19
|
// Update the count
|
12
20
|
const countElement = actionBar.querySelector(".selected-count");
|
13
21
|
if (countElement) {
|
@@ -16,12 +24,20 @@ function showActionBar(actionBar, selectedCount) {
|
|
16
24
|
}
|
17
25
|
|
18
26
|
function hideActionBar(actionBar) {
|
27
|
+
// Get container
|
28
|
+
const tableContainer = actionBar.closest('.pb_advanced_table');
|
29
|
+
|
19
30
|
// Hide action bar directly
|
20
31
|
actionBar.style.height = "0px";
|
21
32
|
actionBar.style.overflow = "hidden";
|
22
33
|
actionBar.style.opacity = "0";
|
23
34
|
actionBar.classList.add("p_none");
|
24
35
|
actionBar.classList.remove("p_xs", "is-visible", "show-action-card");
|
36
|
+
|
37
|
+
// Add hidden-action-bar class when action bar is hidden
|
38
|
+
if (tableContainer) {
|
39
|
+
tableContainer.classList.add("hidden-action-bar");
|
40
|
+
}
|
25
41
|
}
|
26
42
|
|
27
43
|
export function updateSelectionActionBar(table, selectedCount) {
|
@@ -43,7 +43,6 @@ examples:
|
|
43
43
|
- advanced_table_responsive: Responsive Tables
|
44
44
|
- advanced_table_custom_cell: Custom Components for Cells
|
45
45
|
- advanced_table_with_custom_header: Custom Header Cell
|
46
|
-
- advanced_table_with_custom_header_multi_header: Custom Header with Multiple Headers
|
47
46
|
- advanced_table_pagination: Pagination
|
48
47
|
- advanced_table_pagination_with_props: Pagination Props
|
49
48
|
- advanced_table_loading: Loading State
|
@@ -40,4 +40,3 @@ export { default as AdvancedTableColumnStylingColumnHeaders } from './_advanced_
|
|
40
40
|
export { default as AdvancedTableInfiniteScroll} from './_advanced_table_infinite_scroll.jsx'
|
41
41
|
export {default as AdvancedTableWithCustomHeader} from './_advanced_table_with_custom_header.jsx'
|
42
42
|
export { default as AdvancedTableCustomSort } from './_advanced_table_custom_sort.jsx'
|
43
|
-
export { default as AdvancedTableWithCustomHeaderMultiHeader } from './_advanced_table_with_custom_header_multi_header.jsx'
|
@@ -79,8 +79,14 @@
|
|
79
79
|
left: 0;
|
80
80
|
border-radius: unset;
|
81
81
|
z-index: 5;
|
82
|
-
}
|
83
82
|
|
83
|
+
// Add proper border radius when action bar is visible
|
84
|
+
&.is-visible,
|
85
|
+
&.show-action-card {
|
86
|
+
border-top-left-radius: 4px !important;
|
87
|
+
border-top-right-radius: 4px !important;
|
88
|
+
}
|
89
|
+
}
|
84
90
|
.checkbox-cell {
|
85
91
|
display: table-cell !important;
|
86
92
|
}
|
@@ -39,11 +39,11 @@
|
|
39
39
|
style="color: <%= button_color %>"
|
40
40
|
>
|
41
41
|
<%= pb_rails("icon", props: { id: "advanced-table_open_icon", icon: "circle-play", cursor: "pointer" }) %>
|
42
|
-
<%= pb_rails("icon", props: { id: "advanced-table_close_icon", icon: "circle-play", cursor: "pointer"
|
42
|
+
<%= pb_rails("icon", props: { id: "advanced-table_close_icon", icon: "circle-play-down", cursor: "pointer" }) %>
|
43
43
|
</button>
|
44
44
|
<% end %>
|
45
45
|
<% end %>
|
46
|
-
<%= pb_rails("flex/flex_item") do %>
|
46
|
+
<%= pb_rails("flex/flex_item") do %>
|
47
47
|
<% if column[:custom_renderer].present? %>
|
48
48
|
<%= raw(column[:custom_renderer].call(object.row, custom_renderer_value(column, index))) %>
|
49
49
|
<% elsif index.zero? %>
|
@@ -6,8 +6,6 @@ module Playbook
|
|
6
6
|
prop :error, type: Playbook::Props::Boolean, default: false
|
7
7
|
prop :checked, type: Playbook::Props::Boolean, default: false
|
8
8
|
prop :indeterminate_main, type: Playbook::Props::Boolean, default: false
|
9
|
-
prop :indeterminate_main_labels, type: Playbook::Props::Array,
|
10
|
-
default: []
|
11
9
|
prop :indeterminate_parent
|
12
10
|
prop :text
|
13
11
|
prop :value
|
@@ -51,19 +49,10 @@ module Playbook
|
|
51
49
|
end
|
52
50
|
|
53
51
|
def data
|
54
|
-
|
52
|
+
Hash(prop(:data)).merge(
|
55
53
|
pb_checkbox_indeterminate_main: indeterminate_main,
|
56
54
|
pb_checkbox_indeterminate_parent: indeterminate_parent
|
57
55
|
)
|
58
|
-
|
59
|
-
if indeterminate_main && indeterminate_main_labels.size == 2
|
60
|
-
base_data.merge!(
|
61
|
-
pb_checkbox_indeterminate_main_label_check: indeterminate_main_labels[0],
|
62
|
-
pb_checkbox_indeterminate_main_label_uncheck: indeterminate_main_labels[1]
|
63
|
-
)
|
64
|
-
end
|
65
|
-
|
66
|
-
base_data
|
67
56
|
end
|
68
57
|
|
69
58
|
private
|
@@ -9,10 +9,10 @@
|
|
9
9
|
<tr>
|
10
10
|
<th>
|
11
11
|
<%= pb_rails("checkbox", props: {
|
12
|
+
text: "Uncheck All",
|
12
13
|
value: "checkbox-value",
|
13
14
|
name: "main-checkbox",
|
14
15
|
indeterminate_main: true,
|
15
|
-
indeterminate_main_labels: ["Check All Ice Cream", "Uncheck All Ice Cream"],
|
16
16
|
id: "indeterminate-checkbox"
|
17
17
|
}) %>
|
18
18
|
</th>
|
@@ -1,2 +1 @@
|
|
1
|
-
If you want to use indeterminate, "check/uncheck all" checkboxes, add `indeterminate_main: true` and an `id` to the main checkbox. Then, add an `indeterminate_parent` prop with the main checkbox's `id` to the children checkboxes.
|
2
|
-
If you want to customize the main checkbox labels, set an array `indeterminate_main_labels` with "Check All" and "Uncheck All" labels.
|
1
|
+
If you want to use indeterminate, "check/uncheck all" checkboxes, add `indeterminate_main: true` and an `id` to the main checkbox. Then, add an `indeterminate_parent` prop with the main checkbox's `id` to the children checkboxes.
|
@@ -23,9 +23,7 @@ export default class PbCheckbox extends PbEnhancedElement {
|
|
23
23
|
mainCheckbox.checked = checkedCount > 0;
|
24
24
|
|
25
25
|
// Determine the main checkbox label based on the number of checked checkboxes
|
26
|
-
const
|
27
|
-
const uncheckAllLabel = mainCheckboxWrapper.dataset.pbCheckboxIndeterminateMainLabelUncheck ?? 'Uncheck All'
|
28
|
-
const text = checkedCount === 0 ? checkAllLabel : uncheckAllLabel;
|
26
|
+
const text = checkedCount === 0 ? 'Check All' : 'Uncheck All';
|
29
27
|
|
30
28
|
// Determine the icon class to add and remove based on the number of checked checkboxes
|
31
29
|
const iconClassToAdd = checkedCount === 0 ? 'pb_checkbox_checkmark' : 'pb_checkbox_indeterminate';
|
@@ -24,9 +24,7 @@ module Playbook
|
|
24
24
|
prop :validation_message, type: Playbook::Props::String, default: ""
|
25
25
|
|
26
26
|
def classnames
|
27
|
-
|
28
|
-
.reject(&:empty?)
|
29
|
-
.join(" ")
|
27
|
+
classname + inline_class + compact_class + show_arrow_class
|
30
28
|
end
|
31
29
|
|
32
30
|
def all_attributes
|
@@ -46,7 +44,7 @@ module Playbook
|
|
46
44
|
end
|
47
45
|
|
48
46
|
def inline_class
|
49
|
-
inline ? "inline" : ""
|
47
|
+
inline ? " inline " : " "
|
50
48
|
end
|
51
49
|
|
52
50
|
def compact_class
|