playbook_ui 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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/_playbook.scss +0 -1
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table.html.erb +13 -8
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table.rb +0 -2
- data/app/pb_kits/playbook/pb_advanced_table/advanced_table.test.jsx +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/docs/{_advanced_table_loading_react.md → _advanced_table_loading.md} +2 -2
- data/app/pb_kits/playbook/pb_advanced_table/docs/example.yml +0 -1
- data/app/pb_kits/playbook/pb_advanced_table/table_body.rb +1 -3
- data/app/pb_kits/playbook/pb_advanced_table/table_header.html.erb +5 -9
- data/app/pb_kits/playbook/pb_advanced_table/table_header.rb +0 -2
- data/app/pb_kits/playbook/pb_advanced_table/table_row.html.erb +1 -1
- data/app/pb_kits/playbook/pb_advanced_table/table_row.rb +0 -2
- data/app/pb_kits/playbook/pb_avatar/_avatar.scss +0 -5
- data/app/pb_kits/playbook/pb_date_picker/_date_picker.tsx +1 -1
- data/app/pb_kits/playbook/pb_tooltip/_tooltip.tsx +1 -3
- data/dist/chunks/{_typeahead-BIhRQo8Q.js → _typeahead-BWwaAo_0.js} +3 -3
- data/dist/chunks/_weekday_stacked-N1NVUtQO.js +45 -0
- data/dist/chunks/vendor.js +1 -1
- data/dist/menu.yml +0 -6
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/pb_forms_helper.rb +4 -13
- data/lib/playbook/version.rb +1 -1
- metadata +5 -16
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.html.erb +0 -33
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading_rails.md +0 -1
- data/app/pb_kits/playbook/pb_copy_button/_copy_button.scss +0 -3
- data/app/pb_kits/playbook/pb_copy_button/_copy_button.tsx +0 -92
- data/app/pb_kits/playbook/pb_copy_button/copy_button.test.jsx +0 -64
- data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_default.jsx +0 -21
- data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.jsx +0 -45
- data/app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.md +0 -1
- data/app/pb_kits/playbook/pb_copy_button/docs/example.yml +0 -8
- data/app/pb_kits/playbook/pb_copy_button/docs/index.js +0 -2
- data/dist/chunks/_weekday_stacked-bORvL0Zi.js +0 -45
- data/lib/playbook/pb_forms_global_props_helper.rb +0 -136
@@ -1,10 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative "pb_forms_global_props_helper"
|
4
|
-
|
5
3
|
module Playbook
|
6
4
|
module PbFormsHelper
|
7
|
-
include Playbook::PbFormsGlobalPropsHelper
|
8
5
|
# Renders a pb form with ::Playbook::Forms::Builder, that can render
|
9
6
|
# Playbook kits in the most railsie way.
|
10
7
|
#
|
@@ -26,17 +23,11 @@ module Playbook
|
|
26
23
|
# @param validate [Boolean] whether validation should be triggered or not
|
27
24
|
# @see [#form_with] for other options
|
28
25
|
def pb_form_with(data: {}, validate: false, loading: false, **kwargs, &block)
|
29
|
-
global_props, form_options = extract_all_props(kwargs)
|
30
|
-
|
31
|
-
classnames = ["pb-form"]
|
32
|
-
classnames << form_options[:class] if form_options[:class].present?
|
33
|
-
classnames << "pb_form_loading" if loading
|
34
|
-
classnames.concat(generate_prop_classes(global_props))
|
35
|
-
|
36
26
|
data = data.merge("pb-form-validation" => validate)
|
37
|
-
|
38
|
-
|
39
|
-
|
27
|
+
classname = ["pb-form", kwargs[:class]].join(" ")
|
28
|
+
classname += " pb_form_loading" if loading
|
29
|
+
options = kwargs.merge(
|
30
|
+
class: classname,
|
40
31
|
data: data,
|
41
32
|
builder: ::Playbook::Forms::Builder
|
42
33
|
)
|
data/lib/playbook/version.rb
CHANGED
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.12.0.pre.alpha.
|
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-
|
12
|
+
date: 2025-01-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: actionpack
|
@@ -300,10 +300,8 @@ files:
|
|
300
300
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_expanded_control.md
|
301
301
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_inline_row_loading.jsx
|
302
302
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_inline_row_loading.md
|
303
|
-
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.html.erb
|
304
303
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.jsx
|
305
|
-
- app/pb_kits/playbook/pb_advanced_table/docs/
|
306
|
-
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading_react.md
|
304
|
+
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_loading.md
|
307
305
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_no_subrows.jsx
|
308
306
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.jsx
|
309
307
|
- app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.md
|
@@ -798,14 +796,6 @@ files:
|
|
798
796
|
- app/pb_kits/playbook/pb_contact/docs/_description.md
|
799
797
|
- app/pb_kits/playbook/pb_contact/docs/example.yml
|
800
798
|
- app/pb_kits/playbook/pb_contact/docs/index.js
|
801
|
-
- app/pb_kits/playbook/pb_copy_button/_copy_button.scss
|
802
|
-
- app/pb_kits/playbook/pb_copy_button/_copy_button.tsx
|
803
|
-
- app/pb_kits/playbook/pb_copy_button/copy_button.test.jsx
|
804
|
-
- app/pb_kits/playbook/pb_copy_button/docs/_copy_button_default.jsx
|
805
|
-
- app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.jsx
|
806
|
-
- app/pb_kits/playbook/pb_copy_button/docs/_copy_button_from.md
|
807
|
-
- app/pb_kits/playbook/pb_copy_button/docs/example.yml
|
808
|
-
- app/pb_kits/playbook/pb_copy_button/docs/index.js
|
809
799
|
- app/pb_kits/playbook/pb_currency/_currency.scss
|
810
800
|
- app/pb_kits/playbook/pb_currency/_currency.tsx
|
811
801
|
- app/pb_kits/playbook/pb_currency/currency.html.erb
|
@@ -3309,8 +3299,8 @@ files:
|
|
3309
3299
|
- app/pb_kits/playbook/utilities/test/globalProps/truncate.test.js
|
3310
3300
|
- app/pb_kits/playbook/utilities/text.ts
|
3311
3301
|
- app/pb_kits/playbook/utilities/validEmojiChecker.ts
|
3312
|
-
- dist/chunks/_typeahead-
|
3313
|
-
- dist/chunks/_weekday_stacked-
|
3302
|
+
- dist/chunks/_typeahead-BWwaAo_0.js
|
3303
|
+
- dist/chunks/_weekday_stacked-N1NVUtQO.js
|
3314
3304
|
- dist/chunks/lazysizes-B7xYodB-.js
|
3315
3305
|
- dist/chunks/lib-kMuhBuU7.js
|
3316
3306
|
- dist/chunks/pb_form_validation-DBJ0wZuS.js
|
@@ -3365,7 +3355,6 @@ files:
|
|
3365
3355
|
- lib/playbook/overflow.rb
|
3366
3356
|
- lib/playbook/pagination_renderer.rb
|
3367
3357
|
- lib/playbook/pb_doc_helper.rb
|
3368
|
-
- lib/playbook/pb_forms_global_props_helper.rb
|
3369
3358
|
- lib/playbook/pb_forms_helper.rb
|
3370
3359
|
- lib/playbook/pb_kit_helper.rb
|
3371
3360
|
- lib/playbook/position.rb
|
@@ -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,92 +0,0 @@
|
|
1
|
-
|
2
|
-
import React, { useState } from 'react'
|
3
|
-
import classnames from 'classnames'
|
4
|
-
import { buildAriaProps, buildCss, buildDataProps } from '../utilities/props'
|
5
|
-
import { globalProps } from '../utilities/globalProps'
|
6
|
-
|
7
|
-
import Button from '../pb_button/_button'
|
8
|
-
import Tooltip from '../pb_tooltip/_tooltip'
|
9
|
-
|
10
|
-
type CopyButtonProps = {
|
11
|
-
aria?: { [key: string]: string },
|
12
|
-
className?: string,
|
13
|
-
data?: { [key: string]: string },
|
14
|
-
id?: string,
|
15
|
-
from?: string,
|
16
|
-
text?: string,
|
17
|
-
tooltipPlacement?: "top" | "right" | "bottom" | "left",
|
18
|
-
tooltipText?: string,
|
19
|
-
value?: string,
|
20
|
-
}
|
21
|
-
|
22
|
-
const CopyButton = (props: CopyButtonProps) => {
|
23
|
-
const {
|
24
|
-
aria = {},
|
25
|
-
className,
|
26
|
-
data = {},
|
27
|
-
from = '',
|
28
|
-
id,
|
29
|
-
text= 'Copy',
|
30
|
-
tooltipPlacement= 'bottom',
|
31
|
-
tooltipText = 'Copied!',
|
32
|
-
value = '',
|
33
|
-
} = props
|
34
|
-
|
35
|
-
const [copied, setCopied] = useState(false)
|
36
|
-
|
37
|
-
const ariaProps = buildAriaProps(aria)
|
38
|
-
const dataProps = buildDataProps(data)
|
39
|
-
const classes = classnames(buildCss('pb_copy_button_kit'), globalProps(props), className)
|
40
|
-
|
41
|
-
const copy = () => {
|
42
|
-
if (!from && !value) {
|
43
|
-
return
|
44
|
-
}
|
45
|
-
|
46
|
-
if (value) {
|
47
|
-
navigator.clipboard.writeText(value)
|
48
|
-
} else if (from) {
|
49
|
-
const copyElement = document.getElementById(from);
|
50
|
-
let copyText = copyElement?.innerText
|
51
|
-
|
52
|
-
if (copyElement instanceof HTMLTextAreaElement || copyElement instanceof HTMLInputElement) {
|
53
|
-
copyText = copyElement.value;
|
54
|
-
}
|
55
|
-
|
56
|
-
if (copyText) {
|
57
|
-
navigator.clipboard.writeText(copyText)
|
58
|
-
}
|
59
|
-
}
|
60
|
-
|
61
|
-
setCopied(true)
|
62
|
-
|
63
|
-
setTimeout(() => {
|
64
|
-
setCopied(false)
|
65
|
-
}, 1000);
|
66
|
-
}
|
67
|
-
|
68
|
-
return (
|
69
|
-
<div
|
70
|
-
{...ariaProps}
|
71
|
-
{...dataProps}
|
72
|
-
className={classes}
|
73
|
-
id={id}
|
74
|
-
>
|
75
|
-
<Tooltip
|
76
|
-
forceOpenTooltip={copied}
|
77
|
-
placement={tooltipPlacement}
|
78
|
-
showTooltip={false}
|
79
|
-
text={tooltipText}
|
80
|
-
>
|
81
|
-
<Button
|
82
|
-
icon='copy'
|
83
|
-
onClick={copy}
|
84
|
-
>
|
85
|
-
{ text }
|
86
|
-
</Button>
|
87
|
-
</Tooltip>
|
88
|
-
</div>
|
89
|
-
)
|
90
|
-
}
|
91
|
-
|
92
|
-
export default CopyButton
|
@@ -1,64 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { CopyButton } from 'playbook-ui'
|
3
|
-
import { ensureAccessible, renderKit, render, fireEvent, screen } from '../utilities/test-utils'
|
4
|
-
|
5
|
-
const props = {
|
6
|
-
data: { testid: 'default', value: 'copy' }
|
7
|
-
}
|
8
|
-
|
9
|
-
test('returns namespaced class name', () => {
|
10
|
-
const kit = renderKit(CopyButton, props)
|
11
|
-
expect(kit).toBeInTheDocument()
|
12
|
-
expect(kit).toHaveClass('pb_copy_button_kit')
|
13
|
-
})
|
14
|
-
|
15
|
-
it('should be accessible', async () => {
|
16
|
-
ensureAccessible(CopyButton, props)
|
17
|
-
})
|
18
|
-
|
19
|
-
// It's difficult to actually use navigator.clipboard.readText, so we mock
|
20
|
-
it('copies the value to clipboard and pastes it into an input', async () => {
|
21
|
-
Object.defineProperty(global, 'navigator', {
|
22
|
-
value: {
|
23
|
-
clipboard: {
|
24
|
-
writeText: jest.fn().mockResolvedValueOnce(undefined),
|
25
|
-
},
|
26
|
-
},
|
27
|
-
writable: true,
|
28
|
-
})
|
29
|
-
|
30
|
-
render(<CopyButton {...props} />)
|
31
|
-
|
32
|
-
const copyButton = screen.getByTestId('default')
|
33
|
-
fireEvent.click(copyButton)
|
34
|
-
|
35
|
-
await navigator.clipboard.writeText('copy')
|
36
|
-
|
37
|
-
expect(navigator.clipboard.writeText).toHaveBeenCalledWith("copy");
|
38
|
-
})
|
39
|
-
|
40
|
-
test('passes text and tooltip props to button', () => {
|
41
|
-
render(
|
42
|
-
<CopyButton
|
43
|
-
data={{ testid: 'text-test' }}
|
44
|
-
text={"text"}
|
45
|
-
tooltipPlacement="right"
|
46
|
-
tooltipText="Text copied!"
|
47
|
-
value="copy"
|
48
|
-
/>
|
49
|
-
)
|
50
|
-
|
51
|
-
const content = screen.getByText("text")
|
52
|
-
expect(content).toHaveTextContent("text")
|
53
|
-
|
54
|
-
const kit = screen.getByTestId('text-test')
|
55
|
-
const button = kit.querySelector('.pb_button_kit_primary_inline_enabled')
|
56
|
-
expect(button).toBeInTheDocument()
|
57
|
-
|
58
|
-
fireEvent.click(button)
|
59
|
-
const tooltipContent = screen.getByText("Text copied!")
|
60
|
-
expect(tooltipContent).toHaveTextContent("Text copied!")
|
61
|
-
|
62
|
-
const tooltip = kit.querySelector('.pb_tooltip_kit')
|
63
|
-
expect(tooltip).toBeInTheDocument()
|
64
|
-
})
|
@@ -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.
|