playbook_ui_docs 14.23.0.pre.alpha.play1983advancedtabledoubleborder9286 → 14.23.0.pre.alpha.play22549234

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a7de23badbd1b1f2e233c2ef63d2e57bdd1b61ebcccb0ea3fa1ccae3838ed39b
4
- data.tar.gz: a71bae1b489202785ed325cfb0ea1ac98d9eeecbcefbb380a9718662f060cfd0
3
+ metadata.gz: 93d322f7385c8dd46ae1d6b2244cf741743f289add8e0a12ee4310ff297b0235
4
+ data.tar.gz: 2a003101bfb9dcba0a8eef1647ea4c071d7f691938bf5d3a1b0d919aeb059d22
5
5
  SHA512:
6
- metadata.gz: '09e9871aa54ae3f1634bd1c1416c76c419a589fecd1cb2ee96fd0ec653a8e0924cd6849b3c9b47d8793d015256496c4014719137cab0cbceed24fc4b8d5e61b5'
7
- data.tar.gz: 36a7e75e8a604d43d3bd72c0f7f443cc9a626ca4b0a18d43b4618af91d1f26abc4ae5bb4cee70863aaf4937824f5ddb393b8134aa131be8e635efcef004935af
6
+ metadata.gz: 1155dba8e22504c144c6e1e8ab080567d0342c1424d3da0d366a93a47152a8802c9d24227f7244a25c9687096bf95484a0f39cc08b9f37a395772735ce7ac74c
7
+ data.tar.gz: 006d846aec3c257a91a841b745a0a390c0c4d86606e8fbceaca8e6b485a596e030910782c56f7197eee87cefad6147ebeb0202a8daf3062e17bb6a08fd817448
@@ -29,10 +29,5 @@
29
29
  label: "Graduated Students",
30
30
  }
31
31
  ] %>
32
- <%= pb_rails("card", props: { margin_bottom: "md" }) do %>
33
- <%= pb_rails("advanced_table", props: { id: "table_props_table", table_data: @table_data, column_definitions: column_definitions, table_props: { container: false, vertical_border: true }}) %>
34
- <% end %>
35
32
 
36
- <%= pb_rails("card", props: { padding: "none" }) do %>
37
- <%= pb_rails("advanced_table", props: { id: "table_props_table_2", padding: "none", table_data: @table_data, column_definitions: column_definitions, table_props: { container: false, vertical_border: true }}) %>
38
- <% end %>
33
+ <%= pb_rails("advanced_table", props: { id: "table_props_table", table_data: @table_data, column_definitions: column_definitions, table_props: { vertical_border: true, container: false }}) %>
@@ -1,6 +1,5 @@
1
1
  import React from "react"
2
2
  import AdvancedTable from '../../pb_advanced_table/_advanced_table'
3
- import { Card } from "playbook-ui"
4
3
  import MOCK_DATA from "./advanced_table_mock_data.json"
5
4
 
6
5
  const AdvancedTableTableProps = (props) => {
@@ -43,26 +42,12 @@ const AdvancedTableTableProps = (props) => {
43
42
 
44
43
  return (
45
44
  <div>
46
- <Card padding="md">
47
- <AdvancedTable
48
- columnDefinitions={columnDefinitions}
49
- tableData={MOCK_DATA}
50
- tableProps={tableProps}
51
- {...props}
52
- />
53
- </Card>
54
-
55
- <Card
56
- marginTop="md"
57
- padding="none"
58
- >
59
- <AdvancedTable
60
- columnDefinitions={columnDefinitions}
61
- tableData={MOCK_DATA}
62
- tableProps={tableProps}
63
- {...props}
64
- />
65
- </Card>
45
+ <AdvancedTable
46
+ columnDefinitions={columnDefinitions}
47
+ tableData={MOCK_DATA}
48
+ tableProps={tableProps}
49
+ {...props}
50
+ />
66
51
  </div>
67
52
  )
68
53
  }