playbook_ui 14.13.0.pre.rc.1 → 14.13.0.pre.rc.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/Components/CustomCell.tsx +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/Components/TableHeaderCell.tsx +2 -2
- data/dist/chunks/_weekday_stacked-VKMYuo6-.js +45 -0
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +2 -2
- data/dist/chunks/_weekday_stacked-DEajxTTC.js +0 -45
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d64d67618bafa499af5ac3ee3449510e503efd7420c8e01b2acdfcacecda5e6
|
4
|
+
data.tar.gz: 3c403bf46ca43672f668681d0860bd4f98ca41a56dfe9ad1144f765f9df2e7b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60b6253119d429777fa4ef6a2b9c511beead4f67a6ab6cb64b8548fbf6219f69025a302fdf9268382092b5cd324e8fe02ee298c6133b43b13de32188fc64b15c
|
7
|
+
data.tar.gz: 6bf5e3ded826dbe15bc6ddf770105ac7a37314ac5caef84ee01f6bc4cd1bdbb1fdf1a5d9020307dc01013e13cc1fcb1caa80f1ecaf7d8dfc0d80a1ba579f4ae2
|
@@ -39,7 +39,7 @@ export const TableHeaderCell = ({
|
|
39
39
|
sortIcon,
|
40
40
|
table
|
41
41
|
}: TableHeaderCellProps) => {
|
42
|
-
const { sortControl, responsive, selectableRows, hasAnySubRows, showActionsBar } =
|
42
|
+
const { sortControl, responsive, selectableRows, hasAnySubRows, showActionsBar, inlineRowLoading } =
|
43
43
|
useContext(AdvancedTableContext);
|
44
44
|
|
45
45
|
type justifyTypes = "none" | "center" | "start" | "end" | "between" | "around" | "evenly"
|
@@ -91,7 +91,7 @@ const isToggleExpansionEnabled =
|
|
91
91
|
|
92
92
|
let justifyHeader:justifyTypes;
|
93
93
|
|
94
|
-
if (header?.index === 0 && hasAnySubRows) {
|
94
|
+
if (header?.index === 0 && hasAnySubRows || (header?.index === 0 && inlineRowLoading)) {
|
95
95
|
justifyHeader = enableSorting ? "between" : "start";
|
96
96
|
} else {
|
97
97
|
justifyHeader = isLeafColumn ? "end" : "center";
|