playbook_ui 14.13.0.pre.alpha.PBNTR5596029 → 14.13.0.pre.alpha.PLAY1873rails86087
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_date_picker/_date_picker.tsx +3 -1
- data/app/pb_kits/playbook/pb_draggable/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_draggable/docs/index.js +1 -2
- data/app/pb_kits/playbook/pb_draggable/subcomponents/DraggableContainer.tsx +4 -7
- data/app/pb_kits/playbook/pb_draggable/subcomponents/DraggableItem.tsx +3 -6
- data/app/pb_kits/playbook/pb_icon_button/docs/_icon_button_default.html.erb +1 -2
- data/app/pb_kits/playbook/pb_icon_button/docs/_icon_button_sizes.html.erb +27 -0
- data/app/pb_kits/playbook/pb_icon_button/docs/example.yml +1 -3
- data/app/pb_kits/playbook/pb_icon_button/icon_button.html.erb +1 -1
- data/app/pb_kits/playbook/pb_icon_button/icon_button.rb +3 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_clickable_rows.html.erb +47 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_clickable_rows.jsx +88 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_clickable_rows.md +1 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_selectable_rows.html.erb +96 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_selectable_rows.jsx +101 -0
- data/app/pb_kits/playbook/pb_table/docs/_table_with_selectable_rows.md +1 -0
- data/app/pb_kits/playbook/pb_table/docs/example.yml +4 -0
- data/app/pb_kits/playbook/pb_table/docs/index.js +3 -1
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_body.tsx +2 -29
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_row.tsx +3 -31
- data/dist/chunks/{_typeahead-TUUtEUg8.js → _typeahead-DQTwAd_2.js} +4 -4
- data/dist/chunks/_weekday_stacked-ei-exO-N.js +45 -0
- data/dist/chunks/{lib-DjpLC8uO.js → lib-WQEeEj3t.js} +1 -1
- data/dist/chunks/{pb_form_validation-S56UaHZl.js → pb_form_validation-Cq64l4zn.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/version.rb +1 -1
- metadata +15 -10
- data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_table_react.jsx +0 -89
- data/app/pb_kits/playbook/pb_draggable/docs/_draggable_with_table_react.md +0 -5
- data/dist/chunks/_weekday_stacked--GSH9pBR.js +0 -45
@@ -9,7 +9,6 @@ import {
|
|
9
9
|
import { globalProps } from "../../utilities/globalProps";
|
10
10
|
import Collapsible from "../../pb_collapsible/_collapsible";
|
11
11
|
import useCollapsible from "../../pb_collapsible/useCollapsible";
|
12
|
-
import Draggable from "../../pb_draggable/_draggable";
|
13
12
|
|
14
13
|
type TableRowPropTypes = {
|
15
14
|
aria?: { [key: string]: string };
|
@@ -20,8 +19,6 @@ type TableRowPropTypes = {
|
|
20
19
|
collapsibleSideHighlight?: boolean;
|
21
20
|
data?: { [key: string]: string };
|
22
21
|
dark?: boolean;
|
23
|
-
dragId?: string;
|
24
|
-
draggableItem?: boolean;
|
25
22
|
htmlOptions?: { [key: string]: string | number | boolean | (() => void) };
|
26
23
|
id?: string;
|
27
24
|
toggleCellId?: string;
|
@@ -39,8 +36,6 @@ const TableRow = (props: TableRowPropTypes): React.ReactElement => {
|
|
39
36
|
className,
|
40
37
|
data = {},
|
41
38
|
dark = false,
|
42
|
-
dragId,
|
43
|
-
draggableItem = false,
|
44
39
|
htmlOptions = {},
|
45
40
|
id,
|
46
41
|
toggleCellId,
|
@@ -157,38 +152,15 @@ const TableRow = (props: TableRowPropTypes): React.ReactElement => {
|
|
157
152
|
</>
|
158
153
|
)
|
159
154
|
) : isTableTag ? (
|
160
|
-
|
161
|
-
<Draggable.Item
|
162
|
-
{...ariaProps}
|
163
|
-
{...dataProps}
|
164
|
-
{...htmlProps}
|
165
|
-
className={classes}
|
166
|
-
dragId={dragId}
|
167
|
-
tag="tr"
|
168
|
-
>
|
169
|
-
{children}
|
170
|
-
</Draggable.Item>
|
171
|
-
) : (
|
172
|
-
<tr
|
173
|
-
{...ariaProps}
|
174
|
-
{...dataProps}
|
175
|
-
{...htmlProps}
|
176
|
-
className={classes}
|
177
|
-
id={id}
|
178
|
-
>
|
179
|
-
{children}
|
180
|
-
</tr>
|
181
|
-
)
|
182
|
-
) : draggableItem ? (
|
183
|
-
<Draggable.Item
|
155
|
+
<tr
|
184
156
|
{...ariaProps}
|
185
157
|
{...dataProps}
|
186
158
|
{...htmlProps}
|
187
159
|
className={classes}
|
188
|
-
|
160
|
+
id={id}
|
189
161
|
>
|
190
162
|
{children}
|
191
|
-
</
|
163
|
+
</tr>
|
192
164
|
) : (
|
193
165
|
<div
|
194
166
|
{...ariaProps}
|