playbook_ui 13.28.0.pre.alpha.dialogturbostreameventlistener3017 → 13.28.0.pre.alpha.pbntr312tableheaderflexremoval3019

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: 1bd7bd6815e9740c4e1e7febfe25ed403ca7770a4fb38d4d69996c86477e0f70
4
- data.tar.gz: 9b519498a395899248ba40190f22bd31238dbaa16f53481d679651376bec465f
3
+ metadata.gz: d9c78fc4581891bf1187d4a38fb387d210e9994ccc37993b6f6c2ff10124b895
4
+ data.tar.gz: '03539fc54dbbb2809c7899e1d452b5578159f6725cae9a1638365c88b2b6c29c'
5
5
  SHA512:
6
- metadata.gz: 819b8020171a9fae3359cb072ea067e837eecd8a2caccbe5db6c869692cd976dbca0145314c76d1ebdbab6f14c4a7b7548367254241fa862d42567e098da7a90
7
- data.tar.gz: bbccaaacd3bffe3e5962063fafa80a631ef6f63bf1ac73777f15eb71221c9e97630cc4778eea6951aa258775526daa65c0e5e0f7d7a4baaea1749b86187142c9
6
+ metadata.gz: 96950131978879d4e45dbd5e8cd204f7a45a0f57d6d69034ab40732958fa4460bb9464fa99aa54ff8ed51e79d15d988f19653d16f7125a4b477500987969e7dd
7
+ data.tar.gz: 7cffbe91d7528dda2964fd5f10625949a96ffcf71cbda60dcf1f632e8842bdedf5f1f602fd3ebe3deea391be4a6e107b597bded8119729aa06893cb6961f0c92
@@ -37,6 +37,7 @@
37
37
  </div>
38
38
 
39
39
  <%= javascript_tag do %>
40
- window.addEventListener("DOMContentLoaded", () => dialogHelper())
41
- window.addEventListener("turbo:frame-load", () => dialogHelper())
40
+ window.addEventListener("DOMContentLoaded", () => {
41
+ dialogHelper()
42
+ })
42
43
  <% end %>
@@ -1,34 +1,33 @@
1
- <%= pb_rails("table") do %>
2
- <thead>
3
- <tr>
4
- <th>Column 1</th>
5
- <th>Column 2</th>
6
- <th>Column 3</th>
7
- <th align="center">Rating</th>
8
- <th align="right">Money</th>
9
- </tr>
10
- </thead>
11
- <tbody>
12
- <tr>
13
- <td>Value 1</td>
14
- <td>Value 2</td>
15
- <td>Value 3</td>
16
- <td align="center">3</td>
17
- <td align="right">$57.32</td>
18
- </tr>
19
- <tr>
20
- <td>Value 1</td>
21
- <td>Value 2</td>
22
- <td>Value 3</td>
23
- <td align="center">2</td>
24
- <td align="right">$5,657.08</td>
25
- </tr>
26
- <tr>
27
- <td>Value 1</td>
28
- <td>Value 2</td>
29
- <td>Value 3</td>
30
- <td align="center">4</td>
31
- <td align="right">$358.77</td>
32
- </tr>
33
- </tbody>
1
+ <%= pb_rails("table") do %> <%= pb_rails("table/table_head") do %>
2
+ <%= pb_rails("table/table_row") do %>
3
+ <%= pb_rails("table/table_header", props: { text: "Column 1"}) %>
4
+ <%= pb_rails("table/table_header", props: { text: "Column 2"}) %>
5
+ <%= pb_rails("table/table_header", props: { text: "Column 3"}) %>
6
+ <%= pb_rails("table/table_header", props: { text: "Rating", text_align: "center" }) %>
7
+ <%= pb_rails("table/table_header", props: { text: "Money", text_align: "right" }) %>
8
+ <% end %>
9
+ <% end %>
10
+ <%= pb_rails("table/table_body") do %>
11
+ <%= pb_rails("table/table_row") do %>
12
+ <%= pb_rails("table/table_cell", props: { text: "Value 1"}) %>
13
+ <%= pb_rails("table/table_cell", props: { text: "Value 2"}) %>
14
+ <%= pb_rails("table/table_cell", props: { text: "Value 3"}) %>
15
+ <%= pb_rails("table/table_cell", props: { text: "3", text_align: "center" }) %>
16
+ <%= pb_rails("table/table_cell", props: { text: "$57.32", text_align: "right" }) %>
17
+ <% end %>
18
+ <%= pb_rails("table/table_row") do %>
19
+ <%= pb_rails("table/table_cell", props: { text: "Value 1"}) %>
20
+ <%= pb_rails("table/table_cell", props: { text: "Value 2"}) %>
21
+ <%= pb_rails("table/table_cell", props: { text: "Value 3"}) %>
22
+ <%= pb_rails("table/table_cell", props: { text: "2", text_align: "center" }) %>
23
+ <%= pb_rails("table/table_cell", props: { text: "$5,657.08", text_align: "right" }) %>
24
+ <% end %>
25
+ <%= pb_rails("table/table_row") do %>
26
+ <%= pb_rails("table/table_cell", props: { text: "Value 1"}) %>
27
+ <%= pb_rails("table/table_cell", props: { text: "Value 2"}) %>
28
+ <%= pb_rails("table/table_cell", props: { text: "Value 3"}) %>
29
+ <%= pb_rails("table/table_cell", props: { text: "4", text_align: "center" }) %>
30
+ <%= pb_rails("table/table_cell", props: { text: "$358.77", text_align: "right" }) %>
31
+ <% end %>
32
+ <% end %>
34
33
  <% end %>
@@ -7,9 +7,7 @@
7
7
  id: "pb-th#{object.id}",
8
8
  **combined_html_options) do %>
9
9
  <% unless sorting_style? %>
10
- <%= pb_rails("flex", props:{ align: object.align_content, justify: object.justify_sort_icon, classname: "pb_th_nolink" }) do %>
11
10
  <%= content.presence || object.text %>
12
- <% end %>
13
11
  <% else %>
14
12
  <%= link_to next_link, style: link_style do %>
15
13
  <%= pb_rails("flex", props:{ align: object.align_content, justify: object.justify_sort_icon, classname: "pb_th_link" }) do %>
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "13.28.0"
5
- VERSION = "13.28.0.pre.alpha.dialogturbostreameventlistener3017"
5
+ VERSION = "13.28.0.pre.alpha.pbntr312tableheaderflexremoval3019"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.28.0.pre.alpha.dialogturbostreameventlistener3017
4
+ version: 13.28.0.pre.alpha.pbntr312tableheaderflexremoval3019
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX