playbook_ui_docs 14.11.1.pre.alpha.responsivetablerails5364 → 14.12.0.pre.rc.0

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui_docs
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.11.1.pre.alpha.responsivetablerails5364
4
+ version: 14.12.0.pre.rc.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
8
8
  - Power Devs
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-01-14 00:00:00.000000000 Z
12
+ date: 2025-01-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -75,10 +75,8 @@ files:
75
75
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.md
76
76
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_options.jsx
77
77
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_options.md
78
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.html.erb
79
78
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.jsx
80
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_rails.md
81
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props_react.md
79
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_props.md
82
80
  - app/pb_kits/playbook/pb_advanced_table/docs/_mock_data_inline_loading.js
83
81
  - app/pb_kits/playbook/pb_advanced_table/docs/advanced_table_mock_data.json
84
82
  - app/pb_kits/playbook/pb_advanced_table/docs/advanced_table_pagination_mock_data.json
@@ -2108,7 +2106,7 @@ homepage: https://playbook.powerapp.cloud/
2108
2106
  licenses:
2109
2107
  - ISC
2110
2108
  metadata: {}
2111
- post_install_message:
2109
+ post_install_message:
2112
2110
  rdoc_options: []
2113
2111
  require_paths:
2114
2112
  - lib
@@ -2124,7 +2122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2124
2122
  version: '0'
2125
2123
  requirements: []
2126
2124
  rubygems_version: 3.5.3
2127
- signing_key:
2125
+ signing_key:
2128
2126
  specification_version: 4
2129
2127
  summary: Playbook Design System Docs
2130
2128
  test_files: []
@@ -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_props_table", table_data: @table_data, column_definitions: column_definitions, table_props: { container: false, sticky: true }}) %>
@@ -1 +0,0 @@
1
- This kit uses the [Table kit](https://playbook.powerapp.cloud/kits/table) under the hood which comes with it's own set of props. If you want to apply certain Table props to that underlying kit, you can do so by using the optional `table_props` prop. This prop must be an object that contains valid Table props. For a full list of Table props, see [here](https://playbook.powerapp.cloud/kits/table).