playbook_ui_docs 13.5.0.pre.alpha.PLAY823globalpropoverflow1191 → 13.5.0.pre.alpha.play984collapsiblekithidestooltips1203
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdffe95c54b0757edbf916c158fe0e74794fff71c94d99bac09c95d7387c12df
|
4
|
+
data.tar.gz: 0ec99686bb3b620cb3411ee6921b9611df02d2435ecfaac59cbfeb0c41160a46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10ee5bd3ffb489721c0e3df6a8f4885e617550c70d8e49f59cb6d19d7a4c593b662e6ca1155e7414beefe64194f6c2005806cfb4e48a30c01a485d36dfd5bf7c
|
7
|
+
data.tar.gz: 465f237b14da61176f586b812ee67c243ed002d3d0b0710f96d6ad1b6b0245c3b0937d0576a7d88c238941c1dbca17cf7ddea8f81242e538bec3f8be4e937b50
|
@@ -2,27 +2,31 @@
|
|
2
2
|
<thead>
|
3
3
|
<tr>
|
4
4
|
<%= pb_rails("table/table_header", props: {
|
5
|
-
|
6
|
-
|
5
|
+
text: "Territory",
|
6
|
+
id: "territory",
|
7
7
|
sort_menu: [
|
8
|
-
{ item: "
|
9
|
-
{ item: "
|
8
|
+
{ item: "Territory", link: "?sort=territory_desc", active: params["sort"] == "territory_desc", direction: "desc" },
|
9
|
+
{ item: "Territory", link: "?sort=territory_asc", active: params["sort"] == "territory_asc", direction: "asc" }
|
10
10
|
],
|
11
11
|
}) %>
|
12
12
|
<%= pb_rails("table/table_header", props: {
|
13
|
-
|
14
|
-
|
13
|
+
id: "name",
|
14
|
+
text: "Full Name",
|
15
|
+
colspan: 2,
|
15
16
|
sort_menu: [
|
16
|
-
{ item: "
|
17
|
-
{ item: "
|
17
|
+
{ item: "First Name Descending", link: "?sort=firstname_desc", active: params["sort"] == "firstname_desc", direction: "desc" },
|
18
|
+
{ item: "First Name Ascending", link: "?sort=firstname_asc", active: params["sort"] == "firstname_asc", direction: "asc" },
|
19
|
+
{ item: "Last Name Descending", link: "?sort=lastname_desc", active: params["sort"] == "lastname_desc", direction: "desc" },
|
20
|
+
{ item: "Last Name Ascending", link: "?sort=lastname_asc", active: params["sort"] == "lastname_asc", direction: "asc" }
|
18
21
|
],
|
19
22
|
}) %>
|
20
23
|
<%= pb_rails("table/table_header", props: {
|
21
|
-
text: "
|
22
|
-
id: "
|
24
|
+
text: "Age",
|
25
|
+
id: "age",
|
26
|
+
sort_dropdown: true,
|
23
27
|
sort_menu: [
|
24
|
-
{ item: "
|
25
|
-
{ item: "
|
28
|
+
{ item: "Age Descending", link: "?sort=age_desc", active: params["sort"] == "age_desc", direction: "desc" },
|
29
|
+
{ item: "Age Ascending", link: "?sort=age_asc", active: params["sort"] == "age_asc", direction: "asc" }
|
26
30
|
],
|
27
31
|
}) %>
|
28
32
|
<%= pb_rails("table/table_header", props: { text: "Job Title" }) %>
|
@@ -30,25 +34,25 @@
|
|
30
34
|
</thead>
|
31
35
|
<tbody>
|
32
36
|
<tr>
|
33
|
-
<td>
|
34
|
-
<td>Name
|
35
|
-
<td>
|
36
|
-
<td>
|
37
|
-
<td>
|
37
|
+
<td>Ter 1</td>
|
38
|
+
<td>First Name 1</td>
|
39
|
+
<td>Last Name 1</td>
|
40
|
+
<td>Age 1</td>
|
41
|
+
<td>Job 1</td>
|
38
42
|
</tr>
|
39
43
|
<tr>
|
40
|
-
<td>
|
41
|
-
<td>Name 2</td>
|
42
|
-
<td>
|
43
|
-
<td>
|
44
|
-
<td>
|
44
|
+
<td>Ter 2</td>
|
45
|
+
<td>First Name 2</td>
|
46
|
+
<td>Last Name 2</td>
|
47
|
+
<td>Age 2</td>
|
48
|
+
<td>Job 2</td>
|
45
49
|
</tr>
|
46
50
|
<tr>
|
47
|
-
<td>
|
48
|
-
<td>Name
|
49
|
-
<td>
|
50
|
-
<td>
|
51
|
-
<td>
|
51
|
+
<td>Ter 3</td>
|
52
|
+
<td>First Name 3</td>
|
53
|
+
<td>Last Name 3</td>
|
54
|
+
<td>Age 3</td>
|
55
|
+
<td>Job 3</td>
|
52
56
|
</tr>
|
53
57
|
</tbody>
|
54
58
|
<% end %>
|
@@ -1 +1,8 @@
|
|
1
|
-
|
1
|
+
The `table_header` subcomponent creates `<th>` elements and optionally accepts:
|
2
|
+
|
3
|
+
* `colspan` (number) for setting column span
|
4
|
+
* `sort_menu` accepts sort options as an array of `item` objects.
|
5
|
+
presence of `sort_menu` enables the sort link within the header
|
6
|
+
* `sort_dropdown` (boolean) optionally declares that (true) clicking a header's sort link opens a dropdown of sort options, or (false) each sort link click cycles through available sort_menu items in the order they are passed
|
7
|
+
* passing a valid `colspan` will render sort options within a dropdown by default, without requiring `sort_dropdown` explicitly. Alternatively, the default sort dropdown can be prevented on headers with `colspan` by setting `sort_dropdown: false`, which reverts the column to sorting to multi-click default (each click of the sort link cycles through the available sort_menu items in the order they are passed)
|
8
|
+
* `id` (string) is required for headers that have a dropdown (for popover reference); otherwise they are optional
|