playbook_ui 14.17.0.pre.alpha.PLAY1967bracketlayoutphase27198 → 14.17.0.pre.alpha.PLAY1967bracketlayoutphase27205
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 +8 -1
- data/app/pb_kits/playbook/pb_layout/subcomponents/_game.tsx +28 -8
- data/dist/chunks/{_weekday_stacked-P4lpbU7P.js → _weekday_stacked-DO7xRd7g.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: d66338cc66f0244b82fbcd320f8782c19196ab6f91e17e3a9a0f02bacac3a46b
|
4
|
+
data.tar.gz: c25ca063d64d0da5ef17477f3691a3af6eca383c23ac9ebfe8c2c26a03edb7ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9375a05bb12f712de5cc1fa577fe559c1d1687372ecfdebb8b7026bd7b79f05bffc2d9cad088ac2db201b01d33dcf7c13f4736b17e2fa93fe90f1407b53aac45
|
7
|
+
data.tar.gz: 9add4571be2cbc89fba49d754332f70a05e7baa7997a18baec842c876b06bac37a4a58c5492fe310a2193205814880486ed35a60a5464b6898aa2d74fcbf5bf7
|
@@ -226,6 +226,12 @@ $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
|
+
|
229
235
|
.layout_participant_winner,
|
230
236
|
.layout_participant_self {
|
231
237
|
position: relative;
|
@@ -256,7 +262,8 @@ $bracket-border-width: 4px;
|
|
256
262
|
}
|
257
263
|
.layout_round .layout_game::after,
|
258
264
|
.connector_container,
|
259
|
-
.half_box
|
265
|
+
.half_box,
|
266
|
+
.polygon_node {
|
260
267
|
display: none !important;
|
261
268
|
}
|
262
269
|
}
|
@@ -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,
|
@@ -77,20 +78,39 @@ const Game = (props: LayoutGameProps) => {
|
|
77
78
|
children
|
78
79
|
) : (
|
79
80
|
<Card
|
81
|
+
height="123px"
|
80
82
|
marginY="xs"
|
81
83
|
padding="none"
|
82
84
|
shadow="deep"
|
83
85
|
>
|
84
|
-
<Card.Body
|
85
|
-
|
86
|
-
|
87
|
-
|
86
|
+
<Card.Body
|
87
|
+
flexGrow={1}
|
88
|
+
padding="xs"
|
89
|
+
>
|
90
|
+
<Flex
|
91
|
+
height="100%"
|
92
|
+
justify="center"
|
93
|
+
orientation="column"
|
94
|
+
>
|
95
|
+
<Body color="lighter">
|
96
|
+
To be determined...
|
97
|
+
</Body>
|
98
|
+
</Flex>
|
88
99
|
</Card.Body>
|
89
100
|
<SectionSeparator />
|
90
|
-
<Card.Body
|
91
|
-
|
92
|
-
|
93
|
-
|
101
|
+
<Card.Body
|
102
|
+
flexGrow={1}
|
103
|
+
padding="xs"
|
104
|
+
>
|
105
|
+
<Flex
|
106
|
+
height="100%"
|
107
|
+
justify="center"
|
108
|
+
orientation="column"
|
109
|
+
>
|
110
|
+
<Body color="lighter">
|
111
|
+
To be determined...
|
112
|
+
</Body>
|
113
|
+
</Flex>
|
94
114
|
</Card.Body>
|
95
115
|
</Card>
|
96
116
|
)}
|