playbook_ui_docs 14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4077 → 14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4175
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/docs/_advanced_table_custom_cell.jsx +72 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_custom_cell.md +5 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +2 -0
- data/app/pb_kits/playbook/pb_advanced_table/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_clear_selection.jsx +45 -0
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_clear_selection.md +1 -0
- data/app/pb_kits/playbook/pb_dropdown/docs/example.yml +1 -0
- data/app/pb_kits/playbook/pb_dropdown/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_filter/docs/_filter_default.jsx +1 -1
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_size.html.erb +336 -0
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_size.jsx +97 -0
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/example.yml +2 -0
- data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/index.js +1 -0
- data/dist/playbook-doc.js +1 -1
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7099e67aa4613923fa19a83592c8093820b03dbe32e74a0e266492d1802b4c7
|
4
|
+
data.tar.gz: 2a17ad9c3ec4b5e520ee9bc2444864880700d9171722ab3248d83458d11e5d7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7f65e09649eaf839cea3b471892b79f76c5135a9de583c3b530ab8feb89bd46dbd6d5628b529f9a8cc6591feafcb494ac8074aa768974c1d9fc410a3e21496a
|
7
|
+
data.tar.gz: 11da88e81ebb16878597ec97720957ef65648c4ac3f4839d309d83c26cfd6ff271471de4962e53d9cec05c23a6151c3049db5e8937753a45f0d06ef2428c6212
|
@@ -0,0 +1,72 @@
|
|
1
|
+
import React from "react"
|
2
|
+
import { AdvancedTable, Pill, Body, Flex, Detail, Caption } from "playbook-ui"
|
3
|
+
import MOCK_DATA from "./advanced_table_mock_data.json"
|
4
|
+
|
5
|
+
const AdvancedTableCustomCell = (props) => {
|
6
|
+
const columnDefinitions = [
|
7
|
+
{
|
8
|
+
accessor: "year",
|
9
|
+
label: "Year",
|
10
|
+
cellAccessors: ["quarter", "month", "day"],
|
11
|
+
|
12
|
+
},
|
13
|
+
{
|
14
|
+
accessor: "newEnrollments",
|
15
|
+
label: "New Enrollments",
|
16
|
+
customRenderer: (row, value) => (
|
17
|
+
<Pill text={value}
|
18
|
+
variant="success"
|
19
|
+
/>
|
20
|
+
),
|
21
|
+
},
|
22
|
+
{
|
23
|
+
accessor: "scheduledMeetings",
|
24
|
+
label: "Scheduled Meetings",
|
25
|
+
customRenderer: (row, value) => <Body><a href="#">{value}</a></Body>,
|
26
|
+
},
|
27
|
+
{
|
28
|
+
accessor: "attendanceRate",
|
29
|
+
label: "Attendance Rate",
|
30
|
+
customRenderer: (row, value) => (
|
31
|
+
<Flex alignItems="end"
|
32
|
+
orientation="column"
|
33
|
+
>
|
34
|
+
<Detail bold
|
35
|
+
color="default"
|
36
|
+
text={value}
|
37
|
+
/>
|
38
|
+
<Caption size="xs">{row.original.graduatedStudents}</Caption>
|
39
|
+
</Flex>
|
40
|
+
),
|
41
|
+
},
|
42
|
+
{
|
43
|
+
accessor: "completedClasses",
|
44
|
+
label: "Completed Classes",
|
45
|
+
},
|
46
|
+
{
|
47
|
+
accessor: "classCompletionRate",
|
48
|
+
label: "Class Completion Rate",
|
49
|
+
},
|
50
|
+
{
|
51
|
+
accessor: "graduatedStudents",
|
52
|
+
label: "Graduated Students",
|
53
|
+
},
|
54
|
+
]
|
55
|
+
|
56
|
+
return (
|
57
|
+
<div>
|
58
|
+
<AdvancedTable
|
59
|
+
columnDefinitions={columnDefinitions}
|
60
|
+
enableToggleExpansion="all"
|
61
|
+
responsive="none"
|
62
|
+
tableData={MOCK_DATA}
|
63
|
+
{...props}
|
64
|
+
>
|
65
|
+
<AdvancedTable.Header enableSorting />
|
66
|
+
<AdvancedTable.Body />
|
67
|
+
</AdvancedTable>
|
68
|
+
</div>
|
69
|
+
)
|
70
|
+
}
|
71
|
+
|
72
|
+
export default AdvancedTableCustomCell
|
@@ -0,0 +1,5 @@
|
|
1
|
+
The Advanced Table also allows for rendering custom components within individual Cells. To achieve this, you can make use of the optional `customRenderer` item within each columnDefinition. This function gives you access to the current Cell's value if you just want to use that with a custom Kit, but it also gives you access to the entire `row` object. The row object provides all data for the current row. To access the data, use `row.original` which is the entire data object for the current row. See the code snippet below for 3 separate use cases and how they were acheived.
|
2
|
+
|
3
|
+
See [here](https://playbook.powerapp.cloud/kits/advanced_table/react#columnDefinitions) for more indepth information on columnDefinitions are how to use them.
|
4
|
+
|
5
|
+
See [here](https://github.com/powerhome/playbook/tree/master/playbook/app/pb_kits/playbook/pb_advanced_table#readme) for the structure of the tableData used.
|
@@ -3,6 +3,7 @@ examples:
|
|
3
3
|
- advanced_table_beta: Default (Required Props)
|
4
4
|
- advanced_table_beta_subrow_headers: SubRow Headers
|
5
5
|
- advanced_table_beta_sort: Enable Sorting
|
6
|
+
|
6
7
|
react:
|
7
8
|
- advanced_table_default: Default (Required Props)
|
8
9
|
- advanced_table_loading: Loading State
|
@@ -15,3 +16,4 @@ examples:
|
|
15
16
|
- advanced_table_table_props: Table Props
|
16
17
|
- advanced_table_inline_row_loading: Inline Row Loading
|
17
18
|
- advanced_table_responsive: Responsive Tables
|
19
|
+
- advanced_table_custom_cell: Custom Components for Cells
|
@@ -9,3 +9,4 @@ export { default as AdvancedTableTableOptions } from './_advanced_table_table_op
|
|
9
9
|
export { default as AdvancedTableTableProps } from './_advanced_table_table_props.jsx'
|
10
10
|
export { default as AdvancedTableInlineRowLoading } from './_advanced_table_inline_row_loading.jsx'
|
11
11
|
export { default as AdvancedTableResponsive } from './_advanced_table_responsive.jsx'
|
12
|
+
export { default as AdvancedTableCustomCell } from './_advanced_table_custom_cell.jsx'
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import React, { useRef } from 'react'
|
2
|
+
import { Button, Dropdown } from 'playbook-ui'
|
3
|
+
|
4
|
+
const options = [
|
5
|
+
{
|
6
|
+
label: "United States",
|
7
|
+
value: "United States",
|
8
|
+
},
|
9
|
+
{
|
10
|
+
label: "Canada",
|
11
|
+
value: "Canada",
|
12
|
+
},
|
13
|
+
{
|
14
|
+
label: "Pakistan",
|
15
|
+
value: "Pakistan",
|
16
|
+
}
|
17
|
+
]
|
18
|
+
|
19
|
+
const DropdownClearSelection = (props) => {
|
20
|
+
const dropdownRef = useRef(null)
|
21
|
+
|
22
|
+
const handleReset = () => {
|
23
|
+
if (dropdownRef.current) {
|
24
|
+
dropdownRef.current.clearSelected()
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
return (
|
29
|
+
<>
|
30
|
+
<Dropdown
|
31
|
+
defaultValue={options[2]}
|
32
|
+
options={options}
|
33
|
+
ref={dropdownRef}
|
34
|
+
{...props}
|
35
|
+
/>
|
36
|
+
<Button
|
37
|
+
marginTop="md"
|
38
|
+
onClick={handleReset}
|
39
|
+
text="Reset"
|
40
|
+
/>
|
41
|
+
</>
|
42
|
+
)
|
43
|
+
}
|
44
|
+
|
45
|
+
export default DropdownClearSelection
|
@@ -0,0 +1 @@
|
|
1
|
+
To use an external control (like a reset button) to clear Dropdown selection, you can make use of the `useRef` hook. You must pass a ref to the Dropdown component and use that ref within the onClick for the external control in the way shown in the code snippet below.
|
@@ -22,6 +22,7 @@ examples:
|
|
22
22
|
- dropdown_error: Dropdown with Error
|
23
23
|
- dropdown_default_value: Default Value
|
24
24
|
- dropdown_blank_selection: Blank Selection
|
25
|
+
- dropdown_clear_selection: Clear Selection
|
25
26
|
# - dropdown_with_autocomplete: Autocomplete
|
26
27
|
# - dropdown_with_autocomplete_and_custom_display: Autocomplete with Custom Display
|
27
28
|
# - dropdown_with_external_control: useDropdown Hook
|
@@ -12,3 +12,4 @@ export { default as DropdownSubcomponentStructure } from './_dropdown_subcompone
|
|
12
12
|
export { default as DropdownError } from './_dropdown_error.jsx'
|
13
13
|
export { default as DropdownDefaultValue } from './_dropdown_default_value.jsx'
|
14
14
|
export { default as DropdownBlankSelection } from './_dropdown_blank_selection.jsx'
|
15
|
+
export { default as DropdownClearSelection } from './_dropdown_clear_selection.jsx'
|
data/app/pb_kits/playbook/pb_multiple_users_stacked/docs/_multiple_users_stacked_size.html.erb
ADDED
@@ -0,0 +1,336 @@
|
|
1
|
+
<%= pb_rails("title", props: {size: 4, text: "S", padding_top: "sm"}) %>
|
2
|
+
|
3
|
+
<%= pb_rails("flex") do %>
|
4
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
5
|
+
|
6
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
7
|
+
variant: "bubble",
|
8
|
+
size: "sm",
|
9
|
+
users: [
|
10
|
+
{
|
11
|
+
name: "Patrick Welch",
|
12
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
13
|
+
}
|
14
|
+
]
|
15
|
+
}) %>
|
16
|
+
|
17
|
+
<% end %>
|
18
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
19
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
20
|
+
size: "sm",
|
21
|
+
variant: "bubble",
|
22
|
+
users: [
|
23
|
+
{
|
24
|
+
name: "Patrick Welch",
|
25
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
26
|
+
},
|
27
|
+
{
|
28
|
+
name: "Lucille Sanchez",
|
29
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
30
|
+
}
|
31
|
+
]
|
32
|
+
}) %>
|
33
|
+
<% end %>
|
34
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
35
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
36
|
+
size: "sm",
|
37
|
+
variant: "bubble",
|
38
|
+
users: [
|
39
|
+
{
|
40
|
+
name: "Patrick Welch",
|
41
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
42
|
+
},
|
43
|
+
{
|
44
|
+
name: "Lucille Sanchez",
|
45
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
46
|
+
},
|
47
|
+
{
|
48
|
+
name: "Beverly Reyes",
|
49
|
+
image_url: "https://randomuser.me/api/portraits/women/74.jpg",
|
50
|
+
},
|
51
|
+
]
|
52
|
+
}) %>
|
53
|
+
<% end %>
|
54
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
55
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
56
|
+
size: "sm",
|
57
|
+
variant: "bubble",
|
58
|
+
users: [
|
59
|
+
{
|
60
|
+
name: "Patrick Welch",
|
61
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
62
|
+
},
|
63
|
+
{
|
64
|
+
name: "Lucille Sanchez",
|
65
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
66
|
+
},
|
67
|
+
{
|
68
|
+
name: "Beverly Reyes",
|
69
|
+
image_url: "https://randomuser.me/api/portraits/women/74.jpg",
|
70
|
+
},
|
71
|
+
{
|
72
|
+
name: "Keith Craig",
|
73
|
+
image_url: "https://randomuser.me/api/portraits/men/40.jpg",
|
74
|
+
},
|
75
|
+
{
|
76
|
+
name: "Alicia Cooper",
|
77
|
+
image_url: "https://randomuser.me/api/portraits/women/46.jpg",
|
78
|
+
}
|
79
|
+
]
|
80
|
+
}) %>
|
81
|
+
<% end %>
|
82
|
+
<% end %>
|
83
|
+
|
84
|
+
|
85
|
+
|
86
|
+
<%= pb_rails("title", props: {size: 4, text: "M", padding_top: "sm"}) %>
|
87
|
+
|
88
|
+
<%= pb_rails("flex") do %>
|
89
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
90
|
+
|
91
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
92
|
+
size: "md",
|
93
|
+
variant: "bubble",
|
94
|
+
users: [
|
95
|
+
{
|
96
|
+
name: "Patrick Welch",
|
97
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
98
|
+
}
|
99
|
+
]
|
100
|
+
}) %>
|
101
|
+
|
102
|
+
<% end %>
|
103
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
104
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
105
|
+
size: "md",
|
106
|
+
variant: "bubble",
|
107
|
+
users: [
|
108
|
+
{
|
109
|
+
name: "Patrick Welch",
|
110
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
111
|
+
},
|
112
|
+
{
|
113
|
+
name: "Lucille Sanchez",
|
114
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
115
|
+
}
|
116
|
+
]
|
117
|
+
}) %>
|
118
|
+
<% end %>
|
119
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
120
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
121
|
+
size: "md",
|
122
|
+
variant: "bubble",
|
123
|
+
users: [
|
124
|
+
{
|
125
|
+
name: "Patrick Welch",
|
126
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
127
|
+
},
|
128
|
+
{
|
129
|
+
name: "Lucille Sanchez",
|
130
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
131
|
+
},
|
132
|
+
{
|
133
|
+
name: "Beverly Reyes",
|
134
|
+
image_url: "https://randomuser.me/api/portraits/women/74.jpg",
|
135
|
+
},
|
136
|
+
]
|
137
|
+
}) %>
|
138
|
+
<% end %>
|
139
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
140
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
141
|
+
size: "md",
|
142
|
+
variant: "bubble",
|
143
|
+
users: [
|
144
|
+
{
|
145
|
+
name: "Patrick Welch",
|
146
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
147
|
+
},
|
148
|
+
{
|
149
|
+
name: "Lucille Sanchez",
|
150
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
151
|
+
},
|
152
|
+
{
|
153
|
+
name: "Beverly Reyes",
|
154
|
+
image_url: "https://randomuser.me/api/portraits/women/74.jpg",
|
155
|
+
},
|
156
|
+
{
|
157
|
+
name: "Keith Craig",
|
158
|
+
image_url: "https://randomuser.me/api/portraits/men/40.jpg",
|
159
|
+
},
|
160
|
+
{
|
161
|
+
name: "Alicia Cooper",
|
162
|
+
image_url: "https://randomuser.me/api/portraits/women/46.jpg",
|
163
|
+
}
|
164
|
+
]
|
165
|
+
}) %>
|
166
|
+
<% end %>
|
167
|
+
<% end %>
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
<%= pb_rails("title", props: {size: 4, text: "L", padding_top: "sm"}) %>
|
172
|
+
|
173
|
+
<%= pb_rails("flex") do %>
|
174
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
175
|
+
|
176
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
177
|
+
size: "lg",
|
178
|
+
variant: "bubble",
|
179
|
+
users: [
|
180
|
+
{
|
181
|
+
name: "Patrick Welch",
|
182
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
183
|
+
}
|
184
|
+
]
|
185
|
+
}) %>
|
186
|
+
|
187
|
+
<% end %>
|
188
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
189
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
190
|
+
size: "lg",
|
191
|
+
variant: "bubble",
|
192
|
+
users: [
|
193
|
+
{
|
194
|
+
name: "Patrick Welch",
|
195
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
196
|
+
},
|
197
|
+
{
|
198
|
+
name: "Lucille Sanchez",
|
199
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
200
|
+
}
|
201
|
+
]
|
202
|
+
}) %>
|
203
|
+
<% end %>
|
204
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
205
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
206
|
+
size: "lg",
|
207
|
+
variant: "bubble",
|
208
|
+
users: [
|
209
|
+
{
|
210
|
+
name: "Patrick Welch",
|
211
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
212
|
+
},
|
213
|
+
{
|
214
|
+
name: "Lucille Sanchez",
|
215
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
216
|
+
},
|
217
|
+
{
|
218
|
+
name: "Beverly Reyes",
|
219
|
+
image_url: "https://randomuser.me/api/portraits/women/74.jpg",
|
220
|
+
},
|
221
|
+
]
|
222
|
+
}) %>
|
223
|
+
<% end %>
|
224
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
225
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
226
|
+
size: "lg",
|
227
|
+
variant: "bubble",
|
228
|
+
users: [
|
229
|
+
{
|
230
|
+
name: "Patrick Welch",
|
231
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
232
|
+
},
|
233
|
+
{
|
234
|
+
name: "Lucille Sanchez",
|
235
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
236
|
+
},
|
237
|
+
{
|
238
|
+
name: "Beverly Reyes",
|
239
|
+
image_url: "https://randomuser.me/api/portraits/women/74.jpg",
|
240
|
+
},
|
241
|
+
{
|
242
|
+
name: "Keith Craig",
|
243
|
+
image_url: "https://randomuser.me/api/portraits/men/40.jpg",
|
244
|
+
},
|
245
|
+
{
|
246
|
+
name: "Alicia Cooper",
|
247
|
+
image_url: "https://randomuser.me/api/portraits/women/46.jpg",
|
248
|
+
}
|
249
|
+
]
|
250
|
+
}) %>
|
251
|
+
<% end %>
|
252
|
+
<% end %>
|
253
|
+
|
254
|
+
|
255
|
+
<%= pb_rails("title", props: {size: 4, text: "XL", padding_top: "sm"}) %>
|
256
|
+
|
257
|
+
<%= pb_rails("flex") do %>
|
258
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
259
|
+
|
260
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
261
|
+
size: "xl",
|
262
|
+
variant: "bubble",
|
263
|
+
users: [
|
264
|
+
{
|
265
|
+
name: "Patrick Welch",
|
266
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
267
|
+
}
|
268
|
+
]
|
269
|
+
}) %>
|
270
|
+
|
271
|
+
<% end %>
|
272
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
273
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
274
|
+
size: "xl",
|
275
|
+
variant: "bubble",
|
276
|
+
users: [
|
277
|
+
{
|
278
|
+
name: "Patrick Welch",
|
279
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
280
|
+
},
|
281
|
+
{
|
282
|
+
name: "Lucille Sanchez",
|
283
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
284
|
+
}
|
285
|
+
]
|
286
|
+
}) %>
|
287
|
+
<% end %>
|
288
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
289
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
290
|
+
size: "xl",
|
291
|
+
variant: "bubble",
|
292
|
+
users: [
|
293
|
+
{
|
294
|
+
name: "Patrick Welch",
|
295
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
296
|
+
},
|
297
|
+
{
|
298
|
+
name: "Lucille Sanchez",
|
299
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
300
|
+
},
|
301
|
+
{
|
302
|
+
name: "Beverly Reyes",
|
303
|
+
image_url: "https://randomuser.me/api/portraits/women/74.jpg",
|
304
|
+
},
|
305
|
+
]
|
306
|
+
}) %>
|
307
|
+
<% end %>
|
308
|
+
<%= pb_rails("flex/flex_item", props: { padding_right: "md" }) do %>
|
309
|
+
<%= pb_rails("multiple_users_stacked", props: {
|
310
|
+
size: "xl",
|
311
|
+
variant: "bubble",
|
312
|
+
users: [
|
313
|
+
{
|
314
|
+
name: "Patrick Welch",
|
315
|
+
image_url: "https://randomuser.me/api/portraits/men/9.jpg",
|
316
|
+
},
|
317
|
+
{
|
318
|
+
name: "Lucille Sanchez",
|
319
|
+
image_url: "https://randomuser.me/api/portraits/women/6.jpg",
|
320
|
+
},
|
321
|
+
{
|
322
|
+
name: "Beverly Reyes",
|
323
|
+
image_url: "https://randomuser.me/api/portraits/women/74.jpg",
|
324
|
+
},
|
325
|
+
{
|
326
|
+
name: "Keith Craig",
|
327
|
+
image_url: "https://randomuser.me/api/portraits/men/40.jpg",
|
328
|
+
},
|
329
|
+
{
|
330
|
+
name: "Alicia Cooper",
|
331
|
+
image_url: "https://randomuser.me/api/portraits/women/46.jpg",
|
332
|
+
}
|
333
|
+
]
|
334
|
+
}) %>
|
335
|
+
<% end %>
|
336
|
+
<% end %>
|
@@ -0,0 +1,97 @@
|
|
1
|
+
import React from 'react'
|
2
|
+
import Flex from '../../pb_flex/_flex'
|
3
|
+
import Title from '../../pb_title/_title'
|
4
|
+
import MultipleUsersStacked from '../_multiple_users_stacked'
|
5
|
+
|
6
|
+
const MultipleUsersStackedSize = (props) => {
|
7
|
+
const sizes = [
|
8
|
+
{ label: 'S', size: 'sm' },
|
9
|
+
{ label: 'M', size: 'md' },
|
10
|
+
{ label: 'L', size: 'lg' },
|
11
|
+
{ label: 'XL', size: 'xl' },
|
12
|
+
]
|
13
|
+
|
14
|
+
const usersList = [
|
15
|
+
[
|
16
|
+
{
|
17
|
+
name: 'Patrick Welch',
|
18
|
+
imageUrl: 'https://randomuser.me/api/portraits/men/9.jpg',
|
19
|
+
},
|
20
|
+
],
|
21
|
+
[
|
22
|
+
{
|
23
|
+
name: 'Patrick Welch',
|
24
|
+
imageUrl: 'https://randomuser.me/api/portraits/men/9.jpg',
|
25
|
+
},
|
26
|
+
{
|
27
|
+
name: 'Lucille Sanchez',
|
28
|
+
imageUrl: 'https://randomuser.me/api/portraits/women/6.jpg',
|
29
|
+
},
|
30
|
+
],
|
31
|
+
[
|
32
|
+
{
|
33
|
+
name: 'Patrick Welch',
|
34
|
+
imageUrl: 'https://randomuser.me/api/portraits/men/9.jpg',
|
35
|
+
},
|
36
|
+
{
|
37
|
+
name: 'Lucille Sanchez',
|
38
|
+
imageUrl: 'https://randomuser.me/api/portraits/women/6.jpg',
|
39
|
+
},
|
40
|
+
{
|
41
|
+
name: 'Beverly Reyes',
|
42
|
+
imageUrl: 'https://randomuser.me/api/portraits/women/74.jpg',
|
43
|
+
},
|
44
|
+
],
|
45
|
+
[
|
46
|
+
{
|
47
|
+
name: 'Patrick Welch',
|
48
|
+
imageUrl: 'https://randomuser.me/api/portraits/men/9.jpg',
|
49
|
+
},
|
50
|
+
{
|
51
|
+
name: 'Lucille Sanchez',
|
52
|
+
imageUrl: 'https://randomuser.me/api/portraits/women/6.jpg',
|
53
|
+
},
|
54
|
+
{
|
55
|
+
name: 'Beverly Reyes',
|
56
|
+
imageUrl: 'https://randomuser.me/api/portraits/women/74.jpg',
|
57
|
+
},
|
58
|
+
{
|
59
|
+
name: 'Keith Craig',
|
60
|
+
imageUrl: 'https://randomuser.me/api/portraits/men/40.jpg',
|
61
|
+
},
|
62
|
+
{
|
63
|
+
name: 'Alicia Cooper',
|
64
|
+
imageUrl: 'https://randomuser.me/api/portraits/women/46.jpg',
|
65
|
+
},
|
66
|
+
],
|
67
|
+
]
|
68
|
+
|
69
|
+
return (
|
70
|
+
<>
|
71
|
+
{sizes.map(({ label, size }) => (
|
72
|
+
<Flex key={size}
|
73
|
+
orientation="column"
|
74
|
+
>
|
75
|
+
<Title paddingTop='sm' >{label}</Title>
|
76
|
+
<Flex>
|
77
|
+
{usersList.map((users, index) => (
|
78
|
+
<Flex key={index}
|
79
|
+
paddingRight='sm'
|
80
|
+
>
|
81
|
+
<MultipleUsersStacked
|
82
|
+
size={size}
|
83
|
+
users={users}
|
84
|
+
variant="bubble"
|
85
|
+
{...props}
|
86
|
+
/>
|
87
|
+
</Flex>
|
88
|
+
))}
|
89
|
+
</Flex>
|
90
|
+
<br />
|
91
|
+
</Flex>
|
92
|
+
))}
|
93
|
+
</>
|
94
|
+
)
|
95
|
+
}
|
96
|
+
|
97
|
+
export default MultipleUsersStackedSize
|
@@ -3,11 +3,13 @@ examples:
|
|
3
3
|
rails:
|
4
4
|
- multiple_users_stacked_default: Default
|
5
5
|
- multiple_users_stacked_bubble: Bubble
|
6
|
+
- multiple_users_stacked_size: Sizes
|
6
7
|
|
7
8
|
|
8
9
|
react:
|
9
10
|
- multiple_users_stacked_default: Default
|
10
11
|
- multiple_users_stacked_bubble: Bubble
|
12
|
+
- multiple_users_stacked_size: Sizes
|
11
13
|
|
12
14
|
swift:
|
13
15
|
- multiple_users_stacked_default_swift: Default
|
@@ -1,2 +1,3 @@
|
|
1
1
|
export { default as MultipleUsersStackedDefault } from './_multiple_users_stacked_default.jsx'
|
2
2
|
export { default as MultipleUsersStackedBubble } from './_multiple_users_stacked_bubble.jsx'
|
3
|
+
export { default as MultipleUsersStackedSize } from './_multiple_users_stacked_size.jsx'
|