playbook_ui_docs 15.0.0.pre.alpha.PLAY2420atfirstcolumnborderfix10439 → 15.0.0.pre.alpha.PLAY2422fixedconftoastaccessibility10327

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: e3c394f12ece2bfd8957066e4a848a5aa20739fea992bb77bec83dff4874ce96
4
- data.tar.gz: 86dc14450a2be1ea0e8ea8ae6a6eb993189b7adee21a208bd82c637b9ae69f7b
3
+ metadata.gz: c5760224286b5373352c3cda7a4e757d00409a6393a7808ca7d86ffe9ed70662
4
+ data.tar.gz: 514bde9290edd56f3a91df821677ecc2a43570927f5d518a6134ef6443f53eba
5
5
  SHA512:
6
- metadata.gz: 39bfc148e19d14a3e9dc450fb88541669302502b1ccb4462f6d1838760b45737b8c84af0bede20c90f5d2bd15cd246d17ad7cd41c041d38140dcd17c3f5b07b8
7
- data.tar.gz: 90ba3059dd68b2dae1f85b1633f7e7f7ebdf64171189978b0499ec36e4d4b10b3c6f255c9df592a832ececef1a6bdaca110f7cb24e7351feac3029faa1d37a0c
6
+ metadata.gz: e195b02b74c1aaa111082aeb185c3c1bf947e84dd889a8294439ceb615525fb100c39806f819147e4ced6052665abf1a34a08be4754a52224bde11feb198eada
7
+ data.tar.gz: c3be1da44c3ecb483dd594dbce8faee817970e5f5d703cf7ab3dc18159d1d3dc81260632d174f2dd600dd2a7e80c1a9e8cd731635c5042f3da5f45abe7752e83
@@ -39,7 +39,5 @@
39
39
  ],
40
40
  },
41
41
  ] %>
42
- <%# Adjusting for test purposes. Will revert prior to commit. %>
43
- <%= pb_rails("card", props: {}) do %>
44
- <%= pb_rails("advanced_table", props: { id: "table_multi_headers_vertical_borders", table_data: @table_data, column_definitions: column_definitions, table_props: { container: false, vertical_border: true } }) %>
45
- <% end %>
42
+
43
+ <%= pb_rails("advanced_table", props: { id: "table_multi_headers_vertical_borders", table_data: @table_data, column_definitions: column_definitions, table_props: { vertical_border: true } }) %>
@@ -1,5 +1,4 @@
1
1
  import React from "react"
2
- import Card from "../../pb_card/_card"
3
2
  import AdvancedTable from '../../pb_advanced_table/_advanced_table'
4
3
  import MOCK_DATA from "./advanced_table_mock_data.json"
5
4
 
@@ -45,22 +44,19 @@ const AdvancedTableColumnHeadersVerticalBorder = (props) => {
45
44
  ],
46
45
  },
47
46
  ];
48
-
47
+
49
48
  const tableProps = {
50
- container: false,
51
49
  verticalBorder: true
52
50
  }
53
- // Adjusted for testing purposes. Will revert prior to commit.
51
+
54
52
  return (
55
53
  <>
56
- <Card>
57
- <AdvancedTable
58
- columnDefinitions={columnDefinitions}
59
- tableData={MOCK_DATA}
60
- tableProps={tableProps}
61
- {...props}
62
- />
63
- </Card>
54
+ <AdvancedTable
55
+ columnDefinitions={columnDefinitions}
56
+ tableData={MOCK_DATA}
57
+ tableProps={tableProps}
58
+ {...props}
59
+ />
64
60
  </>
65
61
  )
66
62
  }
@@ -3,11 +3,9 @@ examples:
3
3
  rails:
4
4
  - loading_inline_default: Default
5
5
  - loading_inline_custom: Custom Text
6
- - loading_inline_variant: Variant
7
6
 
8
7
 
9
8
 
10
9
  react:
11
10
  - loading_inline_default: Default
12
11
  - loading_inline_custom: Custom Text
13
- - loading_inline_variant: Variant
@@ -1,3 +1,2 @@
1
1
  export { default as LoadingInlineDefault } from './_loading_inline_default.jsx'
2
2
  export { default as LoadingInlineCustom } from './_loading_inline_custom.jsx'
3
- export { default as LoadingInlineVariant } from './_loading_inline_variant.jsx'
@@ -9,8 +9,6 @@ examples:
9
9
  - text_input_no_label: No Label
10
10
  - text_input_options: Input Options
11
11
  - text_input_mask: Mask
12
- - text_input_autocomplete: Autocomplete
13
-
14
12
  react:
15
13
  - text_input_default: Default
16
14
  - text_input_error: With Error
@@ -21,7 +19,6 @@ examples:
21
19
  - text_input_no_label: No Label
22
20
  - text_input_mask: Mask
23
21
  - text_input_sanitize: Sanitized Masked Input
24
- - text_input_autocomplete: Autocomplete
25
22
 
26
23
 
27
24
  swift:
@@ -7,4 +7,3 @@ export { default as TextInputInline } from './_text_input_inline.jsx'
7
7
  export { default as TextInputNoLabel } from './_text_input_no_label.jsx'
8
8
  export { default as TextInputMask } from './_text_input_mask.jsx'
9
9
  export { default as TextInputSanitize } from './_text_input_sanitize.jsx'
10
- export { default as TextInputAutocomplete } from './_text_input_autocomplete.jsx'