playbook_ui 14.11.1.pre.alpha.PBNTR769sticky5359 → 14.11.1.pre.alpha.PLAY1720phonenumberinputformatAsYouType5377

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Playbook
4
4
  PREVIOUS_VERSION = "14.11.1"
5
- VERSION = "14.11.1.pre.alpha.PBNTR769sticky5359"
5
+ VERSION = "14.11.1.pre.alpha.PLAY1720phonenumberinputformatAsYouType5377"
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.11.1.pre.alpha.PBNTR769sticky5359
4
+ version: 14.11.1.pre.alpha.PLAY1720phonenumberinputformatAsYouType5377
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: 2025-01-13 00:00:00.000000000 Z
12
+ date: 2025-01-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack
@@ -298,7 +298,6 @@ files:
298
298
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort.md
299
299
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort_control.jsx
300
300
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sort_control.md
301
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_sticky_header_responsive.jsx
302
301
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.jsx
303
302
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_subrow_headers.md
304
303
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_table_options.jsx
@@ -2141,6 +2140,9 @@ files:
2141
2140
  - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_default.html.erb
2142
2141
  - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_default.jsx
2143
2142
  - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_default.md
2143
+ - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_format.html.erb
2144
+ - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_format.jsx
2145
+ - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_format.md
2144
2146
  - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_initial_country.html.erb
2145
2147
  - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_initial_country.jsx
2146
2148
  - app/pb_kits/playbook/pb_phone_number_input/docs/_phone_number_input_initial_country.md
@@ -3238,8 +3240,8 @@ files:
3238
3240
  - app/pb_kits/playbook/utilities/test/globalProps/truncate.test.js
3239
3241
  - app/pb_kits/playbook/utilities/text.ts
3240
3242
  - app/pb_kits/playbook/utilities/validEmojiChecker.ts
3241
- - dist/chunks/_typeahead-BNULwihE.js
3242
- - dist/chunks/_weekday_stacked-BKWemDAe.js
3243
+ - dist/chunks/_typeahead-DWVCHt1f.js
3244
+ - dist/chunks/_weekday_stacked-0vGR_2wj.js
3243
3245
  - dist/chunks/lazysizes-B7xYodB-.js
3244
3246
  - dist/chunks/lib-B7sgJtGS.js
3245
3247
  - dist/chunks/pb_form_validation-C5Cc0-1v.js
@@ -1,52 +0,0 @@
1
- import React from "react"
2
- import { AdvancedTable } from "playbook-ui"
3
- import MOCK_DATA from "./advanced_table_mock_data.json"
4
-
5
- const AdvancedTableStickyHeaderResponsive = (props) => {
6
- const columnDefinitions = [
7
- {
8
- accessor: "year",
9
- label: "Year",
10
- cellAccessors: ["quarter", "month", "day"],
11
- },
12
- {
13
- accessor: "newEnrollments",
14
- label: "New Enrollments",
15
- },
16
- {
17
- accessor: "scheduledMeetings",
18
- label: "Scheduled Meetings",
19
- },
20
- {
21
- accessor: "attendanceRate",
22
- label: "Attendance Rate",
23
- },
24
- {
25
- accessor: "completedClasses",
26
- label: "Completed Classes",
27
- },
28
- {
29
- accessor: "classCompletionRate",
30
- label: "Class Completion Rate",
31
- },
32
- {
33
- accessor: "graduatedStudents",
34
- label: "Graduated Students",
35
- },
36
- ]
37
-
38
-
39
- return (
40
- <div>
41
- <AdvancedTable
42
- columnDefinitions={columnDefinitions}
43
- htmlOptions={{style: { maxHeight: "100vh" }}}
44
- tableData={MOCK_DATA}
45
- tableProps={{sticky:true}}
46
- {...props}
47
- />
48
- </div>
49
- )
50
- }
51
-
52
- export default AdvancedTableStickyHeaderResponsive