playbook_ui_docs 14.10.0.pre.alpha.PBNTR662stickyrightcolumnreact5160 → 14.10.0.pre.alpha.PBNTR775formmatingmaskdefaultvalue5137

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95c4ead543891b95004355f475a66cdd9261307f1b2084fcb4717afd2dfbf7f3
4
- data.tar.gz: 3cca8e025b2a122620b157e69a3fb5630a77137640a31729b8ae8ee2d0a59af9
3
+ metadata.gz: f63f011df5ca015b631841759087b3250e27cc87c544f286e344df9c4e7ab3a3
4
+ data.tar.gz: 10dffc163dc8b721c7a18bff0a1958696974f4847f368fa185905bc944db9fc5
5
5
  SHA512:
6
- metadata.gz: e4dca9d99b4c4977795aad3aafbc2b815591bebfef4e18a2adaafb12d990f952165271f313cdbe8a4b69cee02f01162719032bde4e11ef914d6aca2a4f261d61
7
- data.tar.gz: c4df75caf4fa31a8bf990633a6c8d2a02495fc0aabd87cc15629522282a119ec84ba597b4a6615108eebafafe540d203ffc667f15581cfe078e1ef942cf1fa15
6
+ metadata.gz: 6bd96f9b9a7082b727d649e0bac9a665602d877580e5f3c0b616a8787e4cdda1cf31297d8979183ae54c3bb456c111cd8f921246842820ebac1de3d289194d81
7
+ data.tar.gz: 9e529cd3b3778b16fa6ca230c34a4dd88735223372b1b036465f3db9220b5df8cae6c63b906393222a56858096aa538eda9aafc383d80fab6a9dee83db1e726b
@@ -21,5 +21,3 @@ examples:
21
21
  - advanced_table_custom_cell: Custom Components for Cells
22
22
  - advanced_table_pagination: Pagination
23
23
  - advanced_table_pagination_with_props: Pagination Props
24
- - advanced_table_column_headers: Multi-Header Columns
25
- - advanced_table_column_headers_multiple: Multi-Header Columns (Multiple Levels)
@@ -12,5 +12,3 @@ export { default as AdvancedTableResponsive } from './_advanced_table_responsive
12
12
  export { default as AdvancedTableCustomCell } from './_advanced_table_custom_cell.jsx'
13
13
  export { default as AdvancedTablePagination } from './_advanced_table_pagination.jsx'
14
14
  export { default as AdvancedTablePaginationWithProps } from './_advanced_table_pagination_with_props.jsx'
15
- export { default as AdvancedTableColumnHeaders } from './_advanced_table_column_headers.jsx'
16
- export { default as AdvancedTableColumnHeadersMultiple } from './_advanced_table_column_headers_multiple.jsx'
@@ -10,11 +10,3 @@
10
10
  link: "https://google.com",
11
11
  new_window: true
12
12
  }) %>
13
- <br/>
14
- <%= pb_rails("circle_icon_button", props: {
15
- icon: "info",
16
- variant: "secondary",
17
- aria: { label: "Link to Playbook in new window" },
18
- link: "https://playbook.powerapp.cloud/",
19
- target: "child"
20
- }) %>
@@ -21,15 +21,6 @@ const CircleIconButtonLink = (props) => (
21
21
  {...props}
22
22
  />
23
23
 
24
- <br/>
25
-
26
- <CircleIconButton
27
- aria={{ label: "Link to Playbook in new window" }}
28
- icon="info"
29
- link="https://playbook.powerapp.cloud/"
30
- target="child"
31
- variant="secondary"
32
- />
33
24
  </div>
34
25
  )
35
26
 
@@ -6,7 +6,7 @@ const TableStickyLeftColumns = () => {
6
6
  <Table
7
7
  responsive="scroll"
8
8
  size="md"
9
- stickyLeftColumn={["1", "2", "3"]}
9
+ stickyLeftcolumn={["1", "2", "3"]}
10
10
  >
11
11
  <thead>
12
12
  <tr>
@@ -1,3 +1 @@
1
1
  The `stickyLeftColumn` prop expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
2
-
3
- Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using the `stickyLeftColumn`.
@@ -1,5 +1,2 @@
1
1
  The `stickyLeftColumn` prop expects an array of the column ids you want to be sticky. Make sure to add the corresponding id to the `<th>` and `<td>`.
2
-
3
- If you are using the sub-component variant, then you will pass the id to `<Table.Header>` and `<Table.Cell>`
4
-
5
- Please ensure that unique ids are used for all columns across multiple tables. Using the same columns ids on multiple tables can lead to issues when using `stickyLeftColumn` prop.
2
+ If you are using the sub-component variant, then you will pass the id to `<Table.Header>` and `<Table.Cell>`