playbook_ui_docs 14.20.0.pre.alpha.PLAY22398040 → 14.20.0.pre.alpha.PLAY22408048

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.
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: 14.20.0.pre.alpha.PLAY22398040
4
+ version: 14.20.0.pre.alpha.PLAY22408048
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -83,12 +83,13 @@ files:
83
83
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.jsx
84
84
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading_rails.md
85
85
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading_react.md
86
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_no_subrows.html.erb
87
86
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_no_subrows.jsx
88
87
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.jsx
89
88
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.md
90
89
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination_with_props.jsx
91
90
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination_with_props.md
91
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows.jsx
92
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pinned_rows_react.md
92
93
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_responsive.html.erb
93
94
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_responsive.jsx
94
95
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_responsive.md
@@ -817,6 +818,8 @@ files:
817
818
  - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_blank_selection.jsx
818
819
  - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_clear_selection.jsx
819
820
  - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_clear_selection.md
821
+ - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_close_on_select.jsx
822
+ - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_close_on_select.md
820
823
  - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default.jsx
821
824
  - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default.md
822
825
  - app/pb_kits/playbook/pb_dropdown/docs/_dropdown_default_rails.html.erb
@@ -1,33 +0,0 @@
1
- <% column_definitions = [
2
- {
3
- accessor: "year",
4
- label: "Year",
5
- cellAccessors: ["quarter", "month", "day"],
6
- },
7
- {
8
- accessor: "newEnrollments",
9
- label: "New Enrollments",
10
- },
11
- {
12
- accessor: "scheduledMeetings",
13
- label: "Scheduled Meetings",
14
- },
15
- {
16
- accessor: "attendanceRate",
17
- label: "Attendance Rate",
18
- },
19
- {
20
- accessor: "completedClasses",
21
- label: "Completed Classes",
22
- },
23
- {
24
- accessor: "classCompletionRate",
25
- label: "Class Completion Rate",
26
- },
27
- {
28
- accessor: "graduatedStudents",
29
- label: "Graduated Students",
30
- }
31
- ] %>
32
-
33
- <%= pb_rails("advanced_table", props: { id: "table-no-children", enable_toggle_expansion: "none", table_data: @table_data_no_subrows, column_definitions: column_definitions }) %>