playbook_ui 14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4175 → 14.5.0.pre.alpha.PLAY1601updatereactzoompanpinch4123

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.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "14.5.0"
5
- VERSION = "14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4175"
5
+ VERSION = "14.5.0.pre.alpha.PLAY1601updatereactzoompanpinch4123"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.5.0.pre.alpha.PLAY1548intltelinputupdatelatest4175
4
+ version: 14.5.0.pre.alpha.PLAY1601updatereactzoompanpinch4123
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-10-21 00:00:00.000000000 Z
12
+ date: 2024-10-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -268,8 +268,6 @@ files:
268
268
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_beta_subrow_headers.md
269
269
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.jsx
270
270
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_collapsible_trail.md
271
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_custom_cell.jsx
272
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_custom_cell.md
273
271
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_default.jsx
274
272
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_default.md
275
273
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expanded_control.jsx
@@ -3087,8 +3085,8 @@ files:
3087
3085
  - app/pb_kits/playbook/utilities/test/globalProps/truncate.test.js
3088
3086
  - app/pb_kits/playbook/utilities/text.ts
3089
3087
  - app/pb_kits/playbook/utilities/validEmojiChecker.ts
3090
- - dist/chunks/_typeahead-ICFw7Umq.js
3091
- - dist/chunks/_weekday_stacked-PLi3twbe.js
3088
+ - dist/chunks/_typeahead-C9g4qCcE.js
3089
+ - dist/chunks/_weekday_stacked-DZpRml83.js
3092
3090
  - dist/chunks/lazysizes-B7xYodB-.js
3093
3091
  - dist/chunks/lib-CEpcaI8y.js
3094
3092
  - dist/chunks/pb_form_validation-D9zkwt2b.js
@@ -1,72 +0,0 @@
1
- import React from "react"
2
- import { AdvancedTable, Pill, Body, Flex, Detail, Caption } from "playbook-ui"
3
- import MOCK_DATA from "./advanced_table_mock_data.json"
4
-
5
- const AdvancedTableCustomCell = (props) => {
6
- const columnDefinitions = [
7
- {
8
- accessor: "year",
9
- label: "Year",
10
- cellAccessors: ["quarter", "month", "day"],
11
-
12
- },
13
- {
14
- accessor: "newEnrollments",
15
- label: "New Enrollments",
16
- customRenderer: (row, value) => (
17
- <Pill text={value}
18
- variant="success"
19
- />
20
- ),
21
- },
22
- {
23
- accessor: "scheduledMeetings",
24
- label: "Scheduled Meetings",
25
- customRenderer: (row, value) => <Body><a href="#">{value}</a></Body>,
26
- },
27
- {
28
- accessor: "attendanceRate",
29
- label: "Attendance Rate",
30
- customRenderer: (row, value) => (
31
- <Flex alignItems="end"
32
- orientation="column"
33
- >
34
- <Detail bold
35
- color="default"
36
- text={value}
37
- />
38
- <Caption size="xs">{row.original.graduatedStudents}</Caption>
39
- </Flex>
40
- ),
41
- },
42
- {
43
- accessor: "completedClasses",
44
- label: "Completed Classes",
45
- },
46
- {
47
- accessor: "classCompletionRate",
48
- label: "Class Completion Rate",
49
- },
50
- {
51
- accessor: "graduatedStudents",
52
- label: "Graduated Students",
53
- },
54
- ]
55
-
56
- return (
57
- <div>
58
- <AdvancedTable
59
- columnDefinitions={columnDefinitions}
60
- enableToggleExpansion="all"
61
- responsive="none"
62
- tableData={MOCK_DATA}
63
- {...props}
64
- >
65
- <AdvancedTable.Header enableSorting />
66
- <AdvancedTable.Body />
67
- </AdvancedTable>
68
- </div>
69
- )
70
- }
71
-
72
- export default AdvancedTableCustomCell
@@ -1,5 +0,0 @@
1
- The Advanced Table also allows for rendering custom components within individual Cells. To achieve this, you can make use of the optional `customRenderer` item within each columnDefinition. This function gives you access to the current Cell's value if you just want to use that with a custom Kit, but it also gives you access to the entire `row` object. The row object provides all data for the current row. To access the data, use `row.original` which is the entire data object for the current row. See the code snippet below for 3 separate use cases and how they were acheived.
2
-
3
- See [here](https://playbook.powerapp.cloud/kits/advanced_table/react#columnDefinitions) for more indepth information on columnDefinitions are how to use them.
4
-
5
- See [here](https://github.com/powerhome/playbook/tree/master/playbook/app/pb_kits/playbook/pb_advanced_table#readme) for the structure of the tableData used.