playbook_ui 14.17.0.pre.alpha.PLAY1967bracketlayoutphase27198 → 14.17.0.pre.alpha.PLAY1967bracketlayoutphase27221
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_layout/_layout.scss +15 -1
- data/app/pb_kits/playbook/pb_layout/subcomponents/_game.tsx +20 -17
- data/dist/chunks/{_weekday_stacked-P4lpbU7P.js → _weekday_stacked-C-B5y5yN.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a46a7cfd3f1c08f875db7a6363d442799c0def9c2ab1cca40e8d0d9d309dcb4
|
4
|
+
data.tar.gz: aa0f7e40b010fd97c77ad02bc3f422f997a3f812b4e018a14c5473eb07fffbd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18fecbd764fcd254da81bfa222033a4028383ffaccfd340ac23c802db2a4d0b3b5df472d817cd348fe9b9e70ec945210d7bb87aa712867edfbecfdf10e936b11
|
7
|
+
data.tar.gz: 9cf67ba6bd753534a49214e9fa590695bfefc950bbb315a7c2225ad973d8124f2ceaa5136c74b5aa81d1f787b99b640e2a97b4676c10da17da63d18485b7ad7c
|
@@ -226,6 +226,19 @@ $bracket-border-width: 4px;
|
|
226
226
|
display: none;
|
227
227
|
}
|
228
228
|
|
229
|
+
.layout_participant,
|
230
|
+
.layout_participant_winner,
|
231
|
+
.layout_participant_self {
|
232
|
+
height: 60px;
|
233
|
+
}
|
234
|
+
|
235
|
+
.layout_tbd {
|
236
|
+
height: 139px;
|
237
|
+
display: flex;
|
238
|
+
flex-direction: column;
|
239
|
+
justify-content: center;
|
240
|
+
}
|
241
|
+
|
229
242
|
.layout_participant_winner,
|
230
243
|
.layout_participant_self {
|
231
244
|
position: relative;
|
@@ -256,7 +269,8 @@ $bracket-border-width: 4px;
|
|
256
269
|
}
|
257
270
|
.layout_round .layout_game::after,
|
258
271
|
.connector_container,
|
259
|
-
.half_box
|
272
|
+
.half_box,
|
273
|
+
.polygon_node {
|
260
274
|
display: none !important;
|
261
275
|
}
|
262
276
|
}
|
@@ -6,6 +6,7 @@ import { GlobalProps, globalProps, globalInlineProps } from '../../utilities/glo
|
|
6
6
|
import Card from '../../pb_card/_card'
|
7
7
|
import SectionSeparator from '../../pb_section_separator/_section_separator'
|
8
8
|
import Body from '../../pb_body/_body'
|
9
|
+
import Flex from '../../pb_flex/_flex'
|
9
10
|
|
10
11
|
type LayoutGameProps = {
|
11
12
|
children: React.ReactNode[] | React.ReactNode,
|
@@ -76,23 +77,25 @@ const Game = (props: LayoutGameProps) => {
|
|
76
77
|
{((!isMultiple && children) || numberOfChildren >= 1) ? (
|
77
78
|
children
|
78
79
|
) : (
|
79
|
-
<
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
<Body
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
<Body
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
80
|
+
<div className="layout_tbd">
|
81
|
+
<Card
|
82
|
+
marginY="xs"
|
83
|
+
padding="none"
|
84
|
+
shadow="deep"
|
85
|
+
>
|
86
|
+
<Card.Body padding="xs">
|
87
|
+
<Body color="lighter">
|
88
|
+
To be determined...
|
89
|
+
</Body>
|
90
|
+
</Card.Body>
|
91
|
+
<SectionSeparator />
|
92
|
+
<Card.Body padding="xs">
|
93
|
+
<Body color="lighter">
|
94
|
+
To be determined...
|
95
|
+
</Body>
|
96
|
+
</Card.Body>
|
97
|
+
</Card>
|
98
|
+
</div>
|
96
99
|
)}
|
97
100
|
{isOdd && numberOfGames > 1 &&
|
98
101
|
<div
|