playbook_ui_docs 14.9.0.pre.alpha.pbntr700newresettodefaultprop4736 → 14.9.0.pre.alpha.play1742globalheightfixes4766

Sign up to get free protection for your applications and to get access to all the features.
@@ -18,3 +18,5 @@ examples:
18
18
  - advanced_table_inline_row_loading: Inline Row Loading
19
19
  - advanced_table_responsive: Responsive Tables
20
20
  - advanced_table_custom_cell: Custom Components for Cells
21
+ - advanced_table_pagination: Pagination
22
+ - advanced_table_pagination_with_props: Pagination Props
@@ -10,3 +10,5 @@ export { default as AdvancedTableTableProps } from './_advanced_table_table_prop
10
10
  export { default as AdvancedTableInlineRowLoading } from './_advanced_table_inline_row_loading.jsx'
11
11
  export { default as AdvancedTableResponsive } from './_advanced_table_responsive.jsx'
12
12
  export { default as AdvancedTableCustomCell } from './_advanced_table_custom_cell.jsx'
13
+ export { default as AdvancedTablePagination } from './_advanced_table_pagination.jsx'
14
+ export { default as AdvancedTablePaginationWithProps } from './_advanced_table_pagination_with_props.jsx'
@@ -2,7 +2,6 @@ examples:
2
2
 
3
3
  rails:
4
4
  - date_picker_default: Default
5
- - date_picker_reset_to_default: Reset to Default
6
5
  - date_picker_hide_icon: Hide Input Icon
7
6
  - date_picker_default_date: Default Date
8
7
  - date_picker_allow_input: Allow Input
@@ -45,12 +45,11 @@
45
45
  class: "checkbox-class"
46
46
  %>
47
47
  <%= form.date_picker :example_date_picker_1, props: { label: true } %>
48
- <%= form.date_picker :example_date_picker_2, props: { label: true, reset_to_default: true, default_date: "06/09/1994" } %>
49
48
  <%= form.star_rating_field :example_star_rating, props: { variant: "interactive", label: true } %>
50
49
 
51
50
  <%= form.actions do |action| %>
52
51
  <%= action.submit %>
53
- <%= action.button props: { type: "reset", text: "Cancel", variant: "secondary", onclick: "resetDates()" } %>
52
+ <%= action.button props: { type: "reset", text: "Cancel", variant: "secondary" } %>
54
53
  <% end %>
55
54
  <% end %>
56
55