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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3100b608b037f647a2eb7817eb8e611835fd567929948cd07bc2702f44f5d762
4
- data.tar.gz: 0a3d7c8b581cdfcfa5d7c9840e0ed0cb97873a9baa0780919917142ed49835a3
3
+ metadata.gz: 7a46a7cfd3f1c08f875db7a6363d442799c0def9c2ab1cca40e8d0d9d309dcb4
4
+ data.tar.gz: aa0f7e40b010fd97c77ad02bc3f422f997a3f812b4e018a14c5473eb07fffbd7
5
5
  SHA512:
6
- metadata.gz: 394d412a523574becd28011bdaf9c7d5391e38a1c5d5e063ccc0a70b7a085aba66107aa696ffe084139dff0f61c279c4f52b0ffac36511c64bd5140cb7b500c2
7
- data.tar.gz: d720ef007c16b4a8645b57b09b4f1dde46fe2046b19294fb1a0ff91e62fdd08a608de4ea049d7aa087e09ba1f63b8fb477e6510f2ba57c567f28c25e4d25502d
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
- <Card
80
- marginY="xs"
81
- padding="none"
82
- shadow="deep"
83
- >
84
- <Card.Body padding="xs">
85
- <Body color="lighter">
86
- To be determined...
87
- </Body>
88
- </Card.Body>
89
- <SectionSeparator />
90
- <Card.Body padding="xs">
91
- <Body color="lighter">
92
- To be determined...
93
- </Body>
94
- </Card.Body>
95
- </Card>
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