playbook_ui_docs 13.19.0.pre.alpha.PBNTR207tabledivsupport2261 → 13.19.0.pre.alpha.play1141iconkitusinglibrary2264

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.19.0.pre.alpha.PBNTR207tabledivsupport2261
4
+ version: 13.19.0.pre.alpha.play1141iconkitusinglibrary2264
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-02-29 00:00:00.000000000 Z
12
+ date: 2024-03-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -1446,8 +1446,6 @@ files:
1446
1446
  - app/pb_kits/playbook/pb_table/docs/_table_data_table.md
1447
1447
  - app/pb_kits/playbook/pb_table/docs/_table_disable_hover.html.erb
1448
1448
  - app/pb_kits/playbook/pb_table/docs/_table_disable_hover.jsx
1449
- - app/pb_kits/playbook/pb_table/docs/_table_div.html.erb
1450
- - app/pb_kits/playbook/pb_table/docs/_table_div.jsx
1451
1449
  - app/pb_kits/playbook/pb_table/docs/_table_header.html.erb
1452
1450
  - app/pb_kits/playbook/pb_table/docs/_table_header.md
1453
1451
  - app/pb_kits/playbook/pb_table/docs/_table_icon_buttons.html.erb
@@ -1,34 +0,0 @@
1
- <%= pb_rails("table", props: { size: "sm", tag: "div" }) do %>
2
- <div class="pb_table_thead">
3
- <div class="pb_table_tr">
4
- <div class="pb_table_th">Column 1</div>
5
- <div class="pb_table_th">Column 2</div>
6
- <div class="pb_table_th">Column 3</div>
7
- <div class="pb_table_th">Column 4</div>
8
- <div class="pb_table_th">Column 5</div>
9
- </div>
10
- </div>
11
- <div class="pb_table_tbody">
12
- <div class="pb_table_tr">
13
- <div class="pb_table_td">Value 1</div>
14
- <div class="pb_table_td">Value 2</div>
15
- <div class="pb_table_td">Value 3</div>
16
- <div class="pb_table_td">Value 4</div>
17
- <div class="pb_table_td">Value 5</div>
18
- </div>
19
- <div class="pb_table_tr">
20
- <div class="pb_table_td">Value 1</div>
21
- <div class="pb_table_td">Value 2</div>
22
- <div class="pb_table_td">Value 3</div>
23
- <div class="pb_table_td">Value 4</div>
24
- <div class="pb_table_td">Value 5</div>
25
- </div>
26
- <div class="pb_table_tr">
27
- <div class="pb_table_td">Value 1</div>
28
- <div class="pb_table_td">Value 2</div>
29
- <div class="pb_table_td">Value 3</div>
30
- <div class="pb_table_td">Value 4</div>
31
- <div class="pb_table_td">Value 5</div>
32
- </div>
33
- </div>
34
- <% end %>
@@ -1,47 +0,0 @@
1
- import React from 'react'
2
- import Table from '../_table'
3
-
4
- const TableDiv = (props) => {
5
- return (
6
- <Table
7
- size="sm"
8
- tag="div"
9
- {...props}
10
- >
11
- <div className="pb_table_thead">
12
- <div className="pb_table_tr">
13
- <div className="pb_table_th">{'Column 1'}</div>
14
- <div className="pb_table_th">{'Column 2'}</div>
15
- <div className="pb_table_th">{'Column 3'}</div>
16
- <div className="pb_table_th">{'Column 4'}</div>
17
- <div className="pb_table_th">{'Column 5'}</div>
18
- </div>
19
- </div>
20
- <div className="pb_table_tbody">
21
- <div className="pb_table_tr">
22
- <div className="pb_table_td">{'Value 1'}</div>
23
- <div className="pb_table_td">{'Value 2'}</div>
24
- <div className="pb_table_td">{'Value 3'}</div>
25
- <div className="pb_table_td">{'Value 4'}</div>
26
- <div className="pb_table_td">{'Value 5'}</div>
27
- </div>
28
- <div className="pb_table_tr">
29
- <div className="pb_table_td">{'Value 1'}</div>
30
- <div className="pb_table_td">{'Value 2'}</div>
31
- <div className="pb_table_td">{'Value 3'}</div>
32
- <div className="pb_table_td">{'Value 4'}</div>
33
- <div className="pb_table_td">{'Value 5'}</div>
34
- </div>
35
- <div className="pb_table_tr">
36
- <div className="pb_table_td">{'Value 1'}</div>
37
- <div className="pb_table_td">{'Value 2'}</div>
38
- <div className="pb_table_td">{'Value 3'}</div>
39
- <div className="pb_table_td">{'Value 4'}</div>
40
- <div className="pb_table_td">{'Value 5'}</div>
41
- </div>
42
- </div>
43
- </Table>
44
- )
45
- }
46
-
47
- export default TableDiv