playbook_ui 14.16.0.pre.alpha.play1958formgrouperrorborder6922 → 14.16.0.pre.alpha.play1958formgrouperrorborder6992
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_advanced_table/Utilities/types.ts +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.scss +70 -0
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +83 -2
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +15 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_fullscreen.jsx +90 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_fullscreen.md +3 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +2 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +2 -1
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_and_custom_display.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display_rails.html.erb +8 -8
- data/app/pb_kits/playbook/pb_form_group/_form_group.scss +11 -3
- data/app/pb_kits/playbook/pb_layout/_layout.scss +58 -0
- data/app/pb_kits/playbook/pb_layout/_layout.tsx +20 -7
- data/app/pb_kits/playbook/pb_layout/docs/_layout_bracket.jsx +190 -0
- data/app/pb_kits/playbook/pb_layout/docs/_layout_bracket.md +5 -0
- data/app/pb_kits/playbook/pb_layout/docs/example.yml +1 -0
- data/app/pb_kits/playbook/pb_layout/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_layout/layout.test.js +4 -0
- data/app/pb_kits/playbook/pb_layout/subcomponents/_game.tsx +90 -0
- data/app/pb_kits/playbook/pb_layout/subcomponents/_round.tsx +57 -0
- data/app/pb_kits/playbook/pb_table/styles/_striped.scss +3 -3
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_highlight.jsx +4 -4
- data/dist/chunks/_weekday_stacked-BV8x7Ogy.js +45 -0
- 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 +9 -3
- data/dist/chunks/_weekday_stacked-DIIHW0OV.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: 2953eda2e2bd06d98dda81fc709cca013004d0da8f6f5e629ca5e458ab9f8d30
|
4
|
+
data.tar.gz: 1dec8d4dd048c3c53b8abb2bb07845f7c3565f4a1ff18ee99337ba731bc5f83a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d37f7a8729bf836c9c29a7afb80fd4c10e68ef78dbec564db1a2abe0804dbc8c3bd9c6adade99beca1dbaa76114b494dc8202f95addb921fa4d202103f2993b
|
7
|
+
data.tar.gz: '0807e29bcc7bf9a1f6ac2b0f4402ccaa5f6bca46ca9cbf2784385a60b2f5f81d1568fb44f213b61bd2e9336f91869ef5472fca0dd4beef80f301567d4250ba11'
|
@@ -7,6 +7,7 @@
|
|
7
7
|
@import "./scss_partials/chrome_styles";
|
8
8
|
@import "../tokens/screen_sizes";
|
9
9
|
@import "../tokens/shadows";
|
10
|
+
@import "../tokens/positioning";
|
10
11
|
|
11
12
|
.pb_advanced_table {
|
12
13
|
$border-color: 1px solid $border_light;
|
@@ -229,6 +230,53 @@
|
|
229
230
|
max-height: 1920px;
|
230
231
|
overflow-y: auto;
|
231
232
|
}
|
233
|
+
|
234
|
+
// Fullscreen
|
235
|
+
&.advanced-table-allow-fullscreen {
|
236
|
+
transition: all 0.3s ease;
|
237
|
+
}
|
238
|
+
|
239
|
+
&.advanced-table-fullscreen {
|
240
|
+
background-color: $bg_light;
|
241
|
+
box-sizing: border-box;
|
242
|
+
height: 100vh;
|
243
|
+
left: 0;
|
244
|
+
overflow: auto;
|
245
|
+
position: fixed;
|
246
|
+
top: 0;
|
247
|
+
width: 100%;
|
248
|
+
z-index: $z_10;
|
249
|
+
|
250
|
+
.pb_table {
|
251
|
+
th, td, div, button {
|
252
|
+
font-size: calc(100%);
|
253
|
+
}
|
254
|
+
box-sizing: border-box;
|
255
|
+
margin: $space_lg;
|
256
|
+
max-width: calc(100% - 64px);
|
257
|
+
width: calc(100% - 64px);
|
258
|
+
}
|
259
|
+
|
260
|
+
.pb_table.sticky-header {
|
261
|
+
thead,
|
262
|
+
.pb_advanced_table_header {
|
263
|
+
position: sticky !important;
|
264
|
+
top: 44px !important;
|
265
|
+
z-index: $z_10;
|
266
|
+
}
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
.advanced-table-fullscreen-header {
|
271
|
+
background-color: $white;
|
272
|
+
height: 44px;
|
273
|
+
padding: 13px 20px;
|
274
|
+
position: sticky;
|
275
|
+
top: 0;
|
276
|
+
width: 100%;
|
277
|
+
z-index: $z_10;
|
278
|
+
}
|
279
|
+
|
232
280
|
// Icons
|
233
281
|
.button-icon {
|
234
282
|
display: flex;
|
@@ -277,6 +325,16 @@
|
|
277
325
|
}
|
278
326
|
}
|
279
327
|
|
328
|
+
.fullscreen-icon {
|
329
|
+
@extend .button-icon;
|
330
|
+
@extend %primary-color-pseudo;
|
331
|
+
padding: 2px 0;
|
332
|
+
|
333
|
+
&:focus-visible {
|
334
|
+
border-radius: $border_rad_lighter;
|
335
|
+
}
|
336
|
+
}
|
337
|
+
|
280
338
|
// Vertical separator
|
281
339
|
.table-header-cells:first-child,
|
282
340
|
.table-header-cells-custom:first-child,
|
@@ -466,6 +524,18 @@
|
|
466
524
|
box-shadow: 1px 0px 0px 0px $border_dark !important;
|
467
525
|
}
|
468
526
|
|
527
|
+
// Fullscreen
|
528
|
+
&.advanced-table-fullscreen {
|
529
|
+
background: $bg_dark;
|
530
|
+
}
|
531
|
+
|
532
|
+
.advanced-table-fullscreen-header {
|
533
|
+
background-color: $bg_dark_card;
|
534
|
+
position: sticky;
|
535
|
+
top: 0;
|
536
|
+
z-index: $z_10;
|
537
|
+
}
|
538
|
+
|
469
539
|
// Dark Mode Responsive Styles
|
470
540
|
@media only screen and (max-width: $screen-xl-min) {
|
471
541
|
&[class*="advanced-table-responsive-scroll"] {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import React, { useRef, useEffect } from "react";
|
1
|
+
import React, { useRef, useEffect, useState, useCallback } from "react";
|
2
2
|
import classnames from "classnames";
|
3
3
|
|
4
4
|
import { GenericObject } from "../types";
|
@@ -19,6 +19,15 @@ import TableActionBar from "./Components/TableActionBar";
|
|
19
19
|
import { useTableState } from "./Hooks/useTableState";
|
20
20
|
import { useTableActions } from "./Hooks/useTableActions";
|
21
21
|
|
22
|
+
import Card from "../pb_card/_card"
|
23
|
+
import Flex from "../pb_flex/_flex"
|
24
|
+
import Icon from "../pb_icon/_icon"
|
25
|
+
|
26
|
+
type FullscreenControls = {
|
27
|
+
toggleFullscreen: () => void;
|
28
|
+
isFullscreen: boolean;
|
29
|
+
};
|
30
|
+
|
22
31
|
type AdvancedTableProps = {
|
23
32
|
aria?: { [key: string]: string }
|
24
33
|
actions?: React.ReactNode[] | React.ReactNode
|
@@ -49,6 +58,8 @@ type AdvancedTableProps = {
|
|
49
58
|
toggleExpansionIcon?: string | string[]
|
50
59
|
onRowSelectionChange?: (arg: RowSelectionState) => void
|
51
60
|
virtualizedRows?: boolean
|
61
|
+
allowFullScreen?: boolean
|
62
|
+
fullScreenControl?: (controls: FullscreenControls) => void
|
52
63
|
} & GlobalProps;
|
53
64
|
|
54
65
|
const AdvancedTable = (props: AdvancedTableProps) => {
|
@@ -82,6 +93,8 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
82
93
|
toggleExpansionIcon = "arrows-from-line",
|
83
94
|
onRowSelectionChange,
|
84
95
|
virtualizedRows = false,
|
96
|
+
allowFullScreen = false,
|
97
|
+
fullScreenControl,
|
85
98
|
} = props;
|
86
99
|
|
87
100
|
// Component refs
|
@@ -146,6 +159,68 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
146
159
|
);
|
147
160
|
}, [fetchMoreOnBottomReached, fetchNextPage, isFetching, totalFetched, fullData.length]);
|
148
161
|
|
162
|
+
// Fullscreen
|
163
|
+
const [isFullscreen, setIsFullscreen] = useState(false)
|
164
|
+
|
165
|
+
const toggleFullscreen = useCallback(() => {
|
166
|
+
setIsFullscreen(prevState => !prevState)
|
167
|
+
}, [])
|
168
|
+
|
169
|
+
useEffect(() => {
|
170
|
+
if (allowFullScreen && fullScreenControl) {
|
171
|
+
fullScreenControl({
|
172
|
+
toggleFullscreen,
|
173
|
+
isFullscreen
|
174
|
+
})
|
175
|
+
}
|
176
|
+
}, [allowFullScreen, fullScreenControl, toggleFullscreen, isFullscreen])
|
177
|
+
|
178
|
+
const renderFullscreenHeader = () => {
|
179
|
+
if (!isFullscreen) return null
|
180
|
+
|
181
|
+
const defaultMinimizeIcon = (
|
182
|
+
<button
|
183
|
+
className="gray-icon fullscreen-icon"
|
184
|
+
onClick={toggleFullscreen}
|
185
|
+
>
|
186
|
+
<Icon
|
187
|
+
cursor="pointer"
|
188
|
+
fixedWidth
|
189
|
+
icon="arrow-down-left-and-arrow-up-right-to-center"
|
190
|
+
{...props}
|
191
|
+
/>
|
192
|
+
</button>
|
193
|
+
)
|
194
|
+
|
195
|
+
return (
|
196
|
+
<Card
|
197
|
+
borderNone
|
198
|
+
borderRadius="none"
|
199
|
+
className="advanced-table-fullscreen-header"
|
200
|
+
{...props}
|
201
|
+
>
|
202
|
+
<Flex justify="end">
|
203
|
+
{defaultMinimizeIcon}
|
204
|
+
</Flex>
|
205
|
+
</Card>
|
206
|
+
)
|
207
|
+
}
|
208
|
+
|
209
|
+
useEffect(() => {
|
210
|
+
if (!allowFullScreen) return
|
211
|
+
|
212
|
+
const handleKeyDown = (event: KeyboardEvent) => {
|
213
|
+
if (event.key === 'Escape' && isFullscreen) {
|
214
|
+
event.preventDefault()
|
215
|
+
toggleFullscreen()
|
216
|
+
}
|
217
|
+
}
|
218
|
+
document.addEventListener('keydown', handleKeyDown)
|
219
|
+
return () => {
|
220
|
+
document.removeEventListener('keydown', handleKeyDown)
|
221
|
+
}
|
222
|
+
}, [allowFullScreen, toggleFullscreen, isFullscreen])
|
223
|
+
|
149
224
|
// Build CSS classes and props
|
150
225
|
const ariaProps = buildAriaProps(aria);
|
151
226
|
const dataProps = buildDataProps(data);
|
@@ -154,6 +229,10 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
154
229
|
buildCss("pb_advanced_table"),
|
155
230
|
`advanced-table-responsive-${responsive}`,
|
156
231
|
maxHeight ? `advanced-table-max-height-${maxHeight}` : '',
|
232
|
+
{
|
233
|
+
'advanced-table-fullscreen': isFullscreen,
|
234
|
+
'advanced-table-allow-fullscreen': allowFullScreen
|
235
|
+
},
|
157
236
|
globalProps(props),
|
158
237
|
className
|
159
238
|
);
|
@@ -194,6 +273,7 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
194
273
|
ref={tableWrapperRef}
|
195
274
|
style={tableWrapperStyle as React.CSSProperties}
|
196
275
|
>
|
276
|
+
{renderFullscreenHeader()}
|
197
277
|
<AdvancedTableProvider
|
198
278
|
columnDefinitions={columnDefinitions}
|
199
279
|
enableToggleExpansion={enableToggleExpansion}
|
@@ -204,6 +284,7 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
204
284
|
hasAnySubRows={hasAnySubRows}
|
205
285
|
inlineRowLoading={inlineRowLoading}
|
206
286
|
isActionBarVisible={isActionBarVisible}
|
287
|
+
isFullscreen={isFullscreen}
|
207
288
|
loading={loading}
|
208
289
|
responsive={responsive}
|
209
290
|
selectableRows={selectableRows}
|
@@ -246,7 +327,7 @@ const AdvancedTable = (props: AdvancedTableProps) => {
|
|
246
327
|
</AdvancedTableProvider>
|
247
328
|
|
248
329
|
</div>
|
249
|
-
|
330
|
+
{/* Bottom Pagination */}
|
250
331
|
{pagination && (
|
251
332
|
<TablePagination
|
252
333
|
onChange={onPageChange}
|
@@ -149,7 +149,7 @@ return (
|
|
149
149
|
data={{testid: testId}}
|
150
150
|
sortControl={sortControl}
|
151
151
|
tableData={MOCK_DATA}
|
152
|
-
|
152
|
+
>
|
153
153
|
<AdvancedTable.Header enableSorting />
|
154
154
|
<AdvancedTable.Body />
|
155
155
|
</AdvancedTable>
|
@@ -498,4 +498,17 @@ test("customRenderer prop functions as expected", () => {
|
|
498
498
|
const kit = screen.getByTestId(testId)
|
499
499
|
const pill = kit.querySelector(".pb_pill_kit_success_lowercase")
|
500
500
|
expect(pill).toBeInTheDocument()
|
501
|
-
})
|
501
|
+
})
|
502
|
+
|
503
|
+
test("allowFullScreen prop adds fullscreen class", () => {
|
504
|
+
render(
|
505
|
+
<AdvancedTable
|
506
|
+
allowFullScreen
|
507
|
+
columnDefinitions={columnDefinitions}
|
508
|
+
tableData={MOCK_DATA}
|
509
|
+
/>
|
510
|
+
)
|
511
|
+
|
512
|
+
const tableContainer = screen.getByRole("table").closest("div")
|
513
|
+
expect(tableContainer).toHaveClass("advanced-table-allow-fullscreen")
|
514
|
+
})
|
@@ -0,0 +1,90 @@
|
|
1
|
+
import React, { useState } from "react"
|
2
|
+
import { AdvancedTable, Button, Flex } from "playbook-ui"
|
3
|
+
import MOCK_DATA from "./advanced_table_mock_data.json"
|
4
|
+
import PAGINATION_MOCK_DATA from "./advanced_table_pagination_mock_data.json"
|
5
|
+
|
6
|
+
const AdvancedTableFullscreen = (props) => {
|
7
|
+
const [fullscreenToggleSmall, setFullscreenToggleSmall] = useState(null)
|
8
|
+
const [fullscreenToggleLarge, setFullscreenToggleLarge] = useState(null)
|
9
|
+
|
10
|
+
const columnDefinitions = [
|
11
|
+
{
|
12
|
+
accessor: "year",
|
13
|
+
label: "Year",
|
14
|
+
cellAccessors: ["quarter", "month", "day"],
|
15
|
+
},
|
16
|
+
{
|
17
|
+
accessor: "newEnrollments",
|
18
|
+
label: "New Enrollments",
|
19
|
+
},
|
20
|
+
{
|
21
|
+
accessor: "scheduledMeetings",
|
22
|
+
label: "Scheduled Meetings",
|
23
|
+
},
|
24
|
+
{
|
25
|
+
accessor: "attendanceRate",
|
26
|
+
label: "Attendance Rate",
|
27
|
+
},
|
28
|
+
{
|
29
|
+
accessor: "completedClasses",
|
30
|
+
label: "Completed Classes",
|
31
|
+
},
|
32
|
+
{
|
33
|
+
accessor: "classCompletionRate",
|
34
|
+
label: "Class Completion Rate",
|
35
|
+
},
|
36
|
+
{
|
37
|
+
accessor: "graduatedStudents",
|
38
|
+
label: "Graduated Students",
|
39
|
+
},
|
40
|
+
]
|
41
|
+
|
42
|
+
const tableProps = {
|
43
|
+
sticky: true
|
44
|
+
}
|
45
|
+
|
46
|
+
return (
|
47
|
+
<div>
|
48
|
+
<Flex justify="end">
|
49
|
+
<Button
|
50
|
+
marginBottom="sm"
|
51
|
+
onClick={() => fullscreenToggleSmall?.()}
|
52
|
+
text="Fullscreen Small Table"
|
53
|
+
variant="secondary"
|
54
|
+
/>
|
55
|
+
</Flex>
|
56
|
+
<AdvancedTable
|
57
|
+
allowFullScreen
|
58
|
+
columnDefinitions={columnDefinitions}
|
59
|
+
fullScreenControl={({ toggleFullscreen }) => setFullscreenToggleSmall(() => toggleFullscreen)}
|
60
|
+
tableData={MOCK_DATA}
|
61
|
+
{...props}
|
62
|
+
>
|
63
|
+
<AdvancedTable.Header enableSorting />
|
64
|
+
<AdvancedTable.Body />
|
65
|
+
</AdvancedTable>
|
66
|
+
<Flex justify="end">
|
67
|
+
<Button
|
68
|
+
marginY="sm"
|
69
|
+
onClick={() => fullscreenToggleLarge?.()}
|
70
|
+
text="Fullscreen Large Table"
|
71
|
+
variant="secondary"
|
72
|
+
/>
|
73
|
+
</Flex>
|
74
|
+
<AdvancedTable
|
75
|
+
allowFullScreen
|
76
|
+
columnDefinitions={columnDefinitions}
|
77
|
+
fullScreenControl={({ toggleFullscreen }) => setFullscreenToggleLarge(() => toggleFullscreen)}
|
78
|
+
responsive="none"
|
79
|
+
tableData={PAGINATION_MOCK_DATA}
|
80
|
+
tableProps={tableProps}
|
81
|
+
{...props}
|
82
|
+
>
|
83
|
+
<AdvancedTable.Header enableSorting />
|
84
|
+
<AdvancedTable.Body />
|
85
|
+
</AdvancedTable>
|
86
|
+
</div>
|
87
|
+
)
|
88
|
+
}
|
89
|
+
|
90
|
+
export default AdvancedTableFullscreen
|
@@ -0,0 +1,3 @@
|
|
1
|
+
Trigger Fullscreen mode with the `allowFullScreen`and `fullScreenControl` props. `allowFullScreen` is a boolean that enables Fullscreen functionality for an Advanced Table. `fullScreenControl` is a callback function that receives an object containing the table's internal `toggleFullscreen` function, allowing you to store and trigger Fullscreen from the parent component. An external trigger (like a button) must be used to activate Fullscreen mode.
|
2
|
+
|
3
|
+
Exit Fullscreen mode by clicking the minimize top-right-corner icon or by pressing the "Escape" keyboard key.
|
@@ -39,4 +39,5 @@ examples:
|
|
39
39
|
- advanced_table_selectable_rows_no_subrows: Selectable Rows (No Subrows)
|
40
40
|
- advanced_table_selectable_rows_actions: Selectable Rows (With Actions)
|
41
41
|
- advanced_table_selectable_rows_header: Selectable Rows (No Actions Bar)
|
42
|
-
- advanced_table_inline_editing: Inline Cell Editing
|
42
|
+
- advanced_table_inline_editing: Inline Cell Editing
|
43
|
+
- advanced_table_fullscreen: Fullscreen
|
@@ -21,4 +21,5 @@ export { default as AdvancedTableSelectableRowsHeader } from './_advanced_table_
|
|
21
21
|
export { default as AdvancedTableSelectableRowsActions } from './_advanced_table_selectable_rows_actions.jsx'
|
22
22
|
export { default as AdvancedTableTablePropsStickyHeader } from './_advanced_table_table_props_sticky_header.jsx'
|
23
23
|
export { default as AdvancedTableColumnHeadersCustomCell } from './_advanced_table_column_headers_custom_cell.jsx'
|
24
|
-
export { default as AdvancedTableInlineEditing } from './_advanced_table_inline_editing.jsx'
|
24
|
+
export { default as AdvancedTableInlineEditing } from './_advanced_table_inline_editing.jsx'
|
25
|
+
export { default as AdvancedTableFullscreen } from './_advanced_table_fullscreen.jsx'
|
@@ -12,7 +12,7 @@ const DropdownWithAutocomplete = (props) => {
|
|
12
12
|
label: "Jasper Furniss",
|
13
13
|
value: "Jasper Furniss",
|
14
14
|
territory: "PHL",
|
15
|
-
title: "
|
15
|
+
title: "Lead UX Engineer",
|
16
16
|
id: "jasper-furniss",
|
17
17
|
status: "Offline"
|
18
18
|
},
|
@@ -25,18 +25,18 @@ const DropdownWithAutocomplete = (props) => {
|
|
25
25
|
status: "Away"
|
26
26
|
},
|
27
27
|
{
|
28
|
-
label: "
|
29
|
-
value: "
|
28
|
+
label: "Carlos Lima",
|
29
|
+
value: "Carlos Lima",
|
30
30
|
territory: "PHL",
|
31
|
-
title: "
|
32
|
-
id: "
|
31
|
+
title: "Nitro Developer",
|
32
|
+
id: "carlos-lima",
|
33
33
|
status: "Online"
|
34
34
|
},
|
35
35
|
{
|
36
36
|
label: "Courtney Long",
|
37
37
|
value: "Courtney Long",
|
38
38
|
territory: "PHL",
|
39
|
-
title: "UX
|
39
|
+
title: "Lead UX Designer",
|
40
40
|
id: "courtney-long",
|
41
41
|
status: "Online"
|
42
42
|
}
|
data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_and_custom_display.jsx
CHANGED
@@ -15,7 +15,7 @@ const DropdownWithAutocompleteAndCustomDisplay = (props) => {
|
|
15
15
|
label: "Jasper Furniss",
|
16
16
|
value: "Jasper Furniss",
|
17
17
|
territory: "PHL",
|
18
|
-
title: "
|
18
|
+
title: "Lead UX Engineer",
|
19
19
|
id: "jasper-furniss",
|
20
20
|
status: "Offline"
|
21
21
|
},
|
@@ -28,18 +28,18 @@ const DropdownWithAutocompleteAndCustomDisplay = (props) => {
|
|
28
28
|
status: "Away"
|
29
29
|
},
|
30
30
|
{
|
31
|
-
label: "
|
32
|
-
value: "
|
31
|
+
label: "Carlos Lima",
|
32
|
+
value: "Carlos Lima",
|
33
33
|
territory: "PHL",
|
34
|
-
title: "
|
35
|
-
id: "
|
34
|
+
title: "Nitro Developer",
|
35
|
+
id: "carlos-lima",
|
36
36
|
status: "Online"
|
37
37
|
},
|
38
38
|
{
|
39
39
|
label: "Courtney Long",
|
40
40
|
value: "Courtney Long",
|
41
41
|
territory: "PHL",
|
42
|
-
title: "UX
|
42
|
+
title: "Lead UX Designer",
|
43
43
|
id: "courtney-long",
|
44
44
|
status: "Online"
|
45
45
|
}
|
@@ -15,7 +15,7 @@ const DropdownWithCustomDisplay = (props) => {
|
|
15
15
|
label: "Jasper Furniss",
|
16
16
|
value: "Jasper Furniss",
|
17
17
|
territory: "PHL",
|
18
|
-
title: "
|
18
|
+
title: "Lead UX Engineer",
|
19
19
|
id: "jasper-furniss",
|
20
20
|
status: "Offline"
|
21
21
|
},
|
@@ -28,18 +28,18 @@ const DropdownWithCustomDisplay = (props) => {
|
|
28
28
|
status: "Away"
|
29
29
|
},
|
30
30
|
{
|
31
|
-
label: "
|
32
|
-
value: "
|
31
|
+
label: "Carlos Lima",
|
32
|
+
value: "Carlos Lima",
|
33
33
|
territory: "PHL",
|
34
|
-
title: "
|
35
|
-
id: "
|
34
|
+
title: "Nitro Developer",
|
35
|
+
id: "carlos-lima",
|
36
36
|
status: "Online"
|
37
37
|
},
|
38
38
|
{
|
39
39
|
label: "Courtney Long",
|
40
40
|
value: "Courtney Long",
|
41
41
|
territory: "PHL",
|
42
|
-
title: "UX
|
42
|
+
title: "Lead UX Designer",
|
43
43
|
id: "courtney-long",
|
44
44
|
status: "Online"
|
45
45
|
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
<%
|
2
|
-
|
2
|
+
options = [
|
3
3
|
{
|
4
4
|
label: "Jasper Furniss",
|
5
5
|
value: "Jasper Furniss",
|
6
6
|
territory: "PHL",
|
7
|
-
title: "
|
7
|
+
title: "Lead UX Engineer",
|
8
8
|
id: "jasper-furniss",
|
9
9
|
status: "Offline"
|
10
10
|
},
|
@@ -17,22 +17,22 @@
|
|
17
17
|
status: "Away"
|
18
18
|
},
|
19
19
|
{
|
20
|
-
label: "
|
21
|
-
value: "
|
20
|
+
label: "Carlos Lima",
|
21
|
+
value: "Carlos Lima",
|
22
22
|
territory: "PHL",
|
23
|
-
title: "
|
24
|
-
id: "
|
23
|
+
title: "Nitro Developer",
|
24
|
+
id: "carlos-lima",
|
25
25
|
status: "Online"
|
26
26
|
},
|
27
27
|
{
|
28
28
|
label: "Courtney Long",
|
29
29
|
value: "Courtney Long",
|
30
30
|
territory: "PHL",
|
31
|
-
title: "UX
|
31
|
+
title: "Lead UX Designer",
|
32
32
|
id: "courtney-long",
|
33
33
|
status: "Online"
|
34
34
|
}
|
35
|
-
]
|
35
|
+
];
|
36
36
|
|
37
37
|
%>
|
38
38
|
|
@@ -206,8 +206,16 @@
|
|
206
206
|
}
|
207
207
|
}
|
208
208
|
|
209
|
-
.pb_text_input_kit.error
|
210
|
-
|
211
|
-
|
209
|
+
.pb_text_input_kit.error {
|
210
|
+
.text_input_wrapper {
|
211
|
+
input:focus {
|
212
|
+
outline: none;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
& + * input,
|
217
|
+
& + * select {
|
218
|
+
border-left-color: $red;
|
219
|
+
}
|
212
220
|
}
|
213
221
|
}
|
@@ -10,6 +10,8 @@ $list-header-height: $space_lg;
|
|
10
10
|
$list-footer-height: $space_lg;
|
11
11
|
$list-border-radius: $border_rad_lighter;
|
12
12
|
$card-border-radius: $border_rad_lightest;
|
13
|
+
$bracket-connector-width: 45px;
|
14
|
+
$bracket-border-width: 4px;
|
13
15
|
|
14
16
|
|
15
17
|
[class^=pb_layout_kit] {
|
@@ -168,6 +170,62 @@ $card-border-radius: $border_rad_lightest;
|
|
168
170
|
}
|
169
171
|
}
|
170
172
|
|
173
|
+
&[class*=_bracket]{
|
174
|
+
display: flex;
|
175
|
+
overflow-x: scroll;
|
176
|
+
|
177
|
+
div.layout_round {
|
178
|
+
display: flex;
|
179
|
+
flex-direction: column;
|
180
|
+
justify-content: space-around;
|
181
|
+
flex-grow: 1;
|
182
|
+
}
|
183
|
+
|
184
|
+
.connector_container {
|
185
|
+
display: flex;
|
186
|
+
flex-direction: column;
|
187
|
+
justify-content: space-around;
|
188
|
+
}
|
189
|
+
.right_connector {
|
190
|
+
border-top: $bracket-border-width solid $border_light;
|
191
|
+
width: $bracket-connector-width;
|
192
|
+
margin-left: $bracket-connector-width;
|
193
|
+
}
|
194
|
+
|
195
|
+
.layout_round .layout_game {
|
196
|
+
position: relative;
|
197
|
+
}
|
198
|
+
|
199
|
+
.half_box {
|
200
|
+
content: '';
|
201
|
+
position: absolute;
|
202
|
+
top: calc(50% - $bracket-border-width / 2);
|
203
|
+
height: calc(100% + $bracket-border-width);
|
204
|
+
width: $bracket-connector-width;
|
205
|
+
right: -$bracket-connector-width;
|
206
|
+
border-top-right-radius: $border_radius_lg;
|
207
|
+
border-bottom-right-radius: $border_radius_lg;
|
208
|
+
border-top: $bracket-border-width solid $border_light;
|
209
|
+
border-bottom: $bracket-border-width solid $border_light;
|
210
|
+
border-right: $bracket-border-width solid $border_light;
|
211
|
+
}
|
212
|
+
|
213
|
+
.layout_round_label {
|
214
|
+
display: none;
|
215
|
+
}
|
216
|
+
|
217
|
+
@media (max-width: $screen-md-max) {
|
218
|
+
flex-direction: column;
|
219
|
+
.layout_round_label {
|
220
|
+
display: block;
|
221
|
+
}
|
222
|
+
.layout_round .layout_game::after,
|
223
|
+
.connector_container,
|
224
|
+
.half_box {
|
225
|
+
display: none !important;
|
226
|
+
}
|
227
|
+
}
|
228
|
+
}
|
171
229
|
|
172
230
|
&[class*=_sidebar]{
|
173
231
|
$layout_sizes: (
|