playbook_ui_docs 13.19.0.pre.alpha.PBNTR207tabledivsupport2245 → 13.19.0.pre.alpha.play1141iconkitusinglibrary2264

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.
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.PBNTR207tabledivsupport2245
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-28 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="thead">
3
- <div class="tr">
4
- <div class="th">Column 1</div>
5
- <div class="th">Column 2</div>
6
- <div class="th">Column 3</div>
7
- <div class="th">Column 4</div>
8
- <div class="th">Column 5</div>
9
- </div>
10
- </div>
11
- <div class="tbody">
12
- <div class="tr">
13
- <div class="td">Value 1</div>
14
- <div class="td">Value 2</div>
15
- <div class="td">Value 3</div>
16
- <div class="td">Value 4</div>
17
- <div class="td">Value 5</div>
18
- </div>
19
- <div class="tr">
20
- <div class="td">Value 1</div>
21
- <div class="td">Value 2</div>
22
- <div class="td">Value 3</div>
23
- <div class="td">Value 4</div>
24
- <div class="td">Value 5</div>
25
- </div>
26
- <div class="tr">
27
- <div class="td">Value 1</div>
28
- <div class="td">Value 2</div>
29
- <div class="td">Value 3</div>
30
- <div class="td">Value 4</div>
31
- <div class="td">Value 5</div>
32
- </div>
33
- </div>
34
- <% end %>
@@ -1,46 +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
- {...props}
9
- >
10
- <div className="thead">
11
- <div className="tr">
12
- <div className="th">{'Column 1'}</div>
13
- <div className="th">{'Column 2'}</div>
14
- <div className="th">{'Column 3'}</div>
15
- <div className="th">{'Column 4'}</div>
16
- <div className="th">{'Column 5'}</div>
17
- </div>
18
- </div>
19
- <div className="tbody">
20
- <div className="tr">
21
- <div className="td">{'Value 1'}</div>
22
- <div className="td">{'Value 2'}</div>
23
- <div className="td">{'Value 3'}</div>
24
- <div className="td">{'Value 4'}</div>
25
- <div className="td">{'Value 5'}</div>
26
- </div>
27
- <div className="tr">
28
- <div className="td">{'Value 1'}</div>
29
- <div className="td">{'Value 2'}</div>
30
- <div className="td">{'Value 3'}</div>
31
- <div className="td">{'Value 4'}</div>
32
- <div className="td">{'Value 5'}</div>
33
- </div>
34
- <div className="tr">
35
- <div className="td">{'Value 1'}</div>
36
- <div className="td">{'Value 2'}</div>
37
- <div className="td">{'Value 3'}</div>
38
- <div className="td">{'Value 4'}</div>
39
- <div className="td">{'Value 5'}</div>
40
- </div>
41
- </div>
42
- </Table>
43
- )
44
- }
45
-
46
- export default TableDiv