playbook_ui_docs 14.12.0.pre.alpha.PLAY1865reactdatepickerreinitializingbug5732 → 14.12.0.pre.alpha.advancedtablealignmentfixes5693

Sign up to get free protection for your applications and to get access to all the features.
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.12.0.pre.alpha.PLAY1865reactdatepickerreinitializingbug5732
4
+ version: 14.12.0.pre.alpha.advancedtablealignmentfixes5693
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-29 00:00:00.000000000 Z
12
+ date: 2025-01-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: playbook_ui
@@ -59,10 +59,8 @@ files:
59
59
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expanded_control.md
60
60
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_inline_row_loading.jsx
61
61
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_inline_row_loading.md
62
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.html.erb
63
62
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.jsx
64
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading_rails.md
65
- - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading_react.md
63
+ - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.md
66
64
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_no_subrows.jsx
67
65
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.jsx
68
66
  - app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.md
@@ -436,11 +434,6 @@ files:
436
434
  - app/pb_kits/playbook/pb_contact/docs/_description.md
437
435
  - app/pb_kits/playbook/pb_contact/docs/example.yml
438
436
  - app/pb_kits/playbook/pb_contact/docs/index.js
439
- - app/pb_kits/playbook/pb_copy_button/docs/_copy_button_default.jsx
440
- - app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.jsx
441
- - app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.md
442
- - app/pb_kits/playbook/pb_copy_button/docs/example.yml
443
- - app/pb_kits/playbook/pb_copy_button/docs/index.js
444
437
  - app/pb_kits/playbook/pb_currency/docs/_currency_abbreviated.html.erb
445
438
  - app/pb_kits/playbook/pb_currency/docs/_currency_abbreviated.jsx
446
439
  - app/pb_kits/playbook/pb_currency/docs/_currency_alignment.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: "beta_table", table_data: @table_data, column_definitions: column_definitions, loading: true }) %>
@@ -1 +0,0 @@
1
- The optional `loading` prop takes a boolean value that can be managed using state. If loading is true, the table will display the loading skeleton and once loading is false, the table will render with the data provided.
@@ -1,21 +0,0 @@
1
- import React from 'react'
2
- import { CopyButton, Textarea } from 'playbook-ui'
3
-
4
- const CopyButtonDefault = (props) => (
5
- <div>
6
- <CopyButton
7
- {...props}
8
- text="Copy Text"
9
- tooltipPlacement="right"
10
- tooltipText="Text copied!"
11
- value="Playbook makes it easy to support bleeding edge, or legacy systems. Use Playbook’s 200+ components and end-to-end design language to create simple, intuitive and beautiful experiences with ease."
12
- />
13
-
14
- <Textarea
15
- {...props}
16
- placeholder="Copy and paste here"
17
- />
18
- </div>
19
- )
20
-
21
- export default CopyButtonDefault
@@ -1,45 +0,0 @@
1
- import React, { useState } from 'react'
2
- import { CopyButton, Body, TextInput, Textarea } from 'playbook-ui'
3
-
4
- const CopyButtonFrom = (props) => {
5
- const [text, setText] = useState("Copy this text input text")
6
-
7
- const handleChange = (event) => {
8
- setText(event.target.value);
9
- }
10
-
11
- return (<div>
12
- <Body id="body">Copy this body text!</Body>
13
- <CopyButton
14
- {...props}
15
- from="body"
16
- marginBottom="sm"
17
- text="Copy Body text"
18
- tooltipPlacement="right"
19
- tooltipText="Body text copied!"
20
- />
21
-
22
- <TextInput
23
- {...props}
24
- id="textinput"
25
- onChange={handleChange}
26
- value={text}
27
- />
28
- <CopyButton
29
- {...props}
30
- from="textinput"
31
- marginBottom="sm"
32
- text="Copy Text Input"
33
- tooltipPlacement="right"
34
- tooltipText="Text input copied!"
35
- />
36
-
37
- <Textarea
38
- {...props}
39
- placeholder="Copy and paste here"
40
- />
41
- </div>
42
- )
43
- }
44
-
45
- export default CopyButtonFrom
@@ -1 +0,0 @@
1
- Provide an element's ID as the `from` parameter, and its text will be copied. If the element is an input, its `value` will be copied; otherwise, the `innerText` will be used. Additionally, if a `value` prop is provided, it will override the content from the `from` element and be copied instead.
@@ -1,8 +0,0 @@
1
- examples:
2
-
3
-
4
- react:
5
- - copy_button_default: Default
6
- - copy_button_from: Copy From
7
-
8
-
@@ -1,2 +0,0 @@
1
- export { default as CopyButtonDefault } from './_copy_button_default.jsx'
2
- export { default as CopyButtonFrom } from './_copy_button_from.jsx'