playbook_ui_docs 13.19.0.pre.alpha.PBNTR207tabledivsupport2245 → 13.19.0.pre.alpha.play1141iconkitusinglibrary2264
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.md +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_default.md +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.md +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.md +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_options.md +1 -1
- data/app/pb_kits/playbook/pb_icon/docs/_icon_custom.html.erb +5 -11
- data/app/pb_kits/playbook/pb_icon/docs/_icon_custom.jsx +44 -18
- data/app/pb_kits/playbook/pb_icon/docs/_icon_custom.md +4 -8
- data/app/pb_kits/playbook/pb_table/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_table/docs/index.js +0 -1
- data/dist/playbook-doc.js +2 -2
- metadata +2 -4
- data/app/pb_kits/playbook/pb_table/docs/_table_div.html.erb +0 -34
- data/app/pb_kits/playbook/pb_table/docs/_table_div.jsx +0 -46
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.
|
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-
|
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
|