playbook_ui_docs 13.21.0.pre.alpha.PBNTR225advancedtablefeedback2438 → 13.21.0.pre.alpha.PBNTR243globalpositioningpropinset2504
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/pb_advanced_table/docs/example.yml +2 -0
- data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_margin_bottom.html.erb +7 -0
- data/app/pb_kits/playbook/pb_date_picker/docs/_date_picker_margin_bottom.jsx +41 -0
- data/app/pb_kits/playbook/pb_date_picker/docs/example.yml +2 -0
- data/app/pb_kits/playbook/pb_date_picker/docs/index.js +1 -0
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line.html.erb +51 -1
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line.jsx +62 -11
- data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_positions.html.erb +7 -2
- data/app/pb_kits/playbook/pb_flex/docs/_flex_spacing.html.erb +0 -4
- data/dist/playbook-doc.js +6 -6
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: effc2aa107a4dfcf3bf016a9006d6ca90401b2a1b27d107cb4a4550dcf95b2b9
|
4
|
+
data.tar.gz: df2d488dff75f8cfc5f22d63922fc94589fe055a29ffdef8da789f599214ab73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a68a44335f50675ca5c9b7362de62235ce759de35c468d0903721e8cd74432a580a6caa674542a55004c2fd538ca5ed0246543cfe7a648b7d23733b6a4e78761
|
7
|
+
data.tar.gz: bd01fb067e083f2bc73131f4d60503aa4e8b286d29a2c4e18b7e12c10d22bea6e28ab6b35bea157d38b5a660344d3ce11d697c442f136b8d128421a4e622c21e
|
@@ -0,0 +1,7 @@
|
|
1
|
+
|
2
|
+
<%= pb_rails("date_picker", props: { picker_id: "date-picker-none", margin_bottom: "none"}) %>
|
3
|
+
<%= pb_rails("date_picker", props: { picker_id: "date-picker-xs", margin_bottom: "xs"}) %>
|
4
|
+
<%= pb_rails("date_picker", props: { picker_id: "date-picker-sm", margin_bottom: "sm"}) %>
|
5
|
+
<%= pb_rails("date_picker", props: { picker_id: "date-picker-md", margin_bottom: "md"}) %>
|
6
|
+
<%= pb_rails("date_picker", props: { picker_id: "date-picker-lg", margin_bottom: "lg"}) %>
|
7
|
+
<%= pb_rails("date_picker", props: { picker_id: "date-picker-xl", margin_bottom: "xl"}) %>
|
@@ -0,0 +1,41 @@
|
|
1
|
+
|
2
|
+
import React from 'react'
|
3
|
+
|
4
|
+
import DatePicker from '../_date_picker'
|
5
|
+
|
6
|
+
const DatePickerMarginBottom = (props) => (
|
7
|
+
<div>
|
8
|
+
<DatePicker
|
9
|
+
marginBottom="none"
|
10
|
+
pickerId="date-picker-none"
|
11
|
+
{...props}
|
12
|
+
/>
|
13
|
+
<DatePicker
|
14
|
+
marginBottom="xs"
|
15
|
+
pickerId="date-picker-xs"
|
16
|
+
{...props}
|
17
|
+
/>
|
18
|
+
<DatePicker
|
19
|
+
marginBottom="sm"
|
20
|
+
pickerId="date-picker-sm"
|
21
|
+
{...props}
|
22
|
+
/>
|
23
|
+
<DatePicker
|
24
|
+
marginBottom="md"
|
25
|
+
pickerId="date-picker-md"
|
26
|
+
{...props}
|
27
|
+
/>
|
28
|
+
<DatePicker
|
29
|
+
marginBottom="lg"
|
30
|
+
pickerId="date-picker-lg"
|
31
|
+
{...props}
|
32
|
+
/>
|
33
|
+
<DatePicker
|
34
|
+
marginBottom="xl"
|
35
|
+
pickerId="date-picker-xl"
|
36
|
+
{...props}
|
37
|
+
/>
|
38
|
+
</div>
|
39
|
+
)
|
40
|
+
|
41
|
+
export default DatePickerMarginBottom
|
@@ -20,6 +20,7 @@ examples:
|
|
20
20
|
- date_picker_hooks: Hooks
|
21
21
|
- date_picker_year_range: Year Range
|
22
22
|
- date_picker_anti_patterns: Anti-Patterns
|
23
|
+
- date_picker_margin_bottom: Margin Bottom
|
23
24
|
- date_picker_inline: Inline
|
24
25
|
- date_picker_month_and_year: Month & Year Only
|
25
26
|
- date_picker_week: Week
|
@@ -48,6 +49,7 @@ examples:
|
|
48
49
|
- date_picker_flatpickr_methods: Flatpickr Methods
|
49
50
|
- date_picker_hooks: Hooks
|
50
51
|
- date_picker_year_range: Year Range
|
52
|
+
- date_picker_margin_bottom: Margin Bottom
|
51
53
|
- date_picker_inline: Inline
|
52
54
|
- date_picker_month_and_year: Month & Year Only
|
53
55
|
- date_picker_week: Week
|
@@ -19,6 +19,7 @@ export { default as DatePickerWeek } from './_date_picker_week.jsx'
|
|
19
19
|
export { default as DatePickerPositions } from './_date_picker_positions.jsx'
|
20
20
|
export { default as DatePickerPositionsElement } from './_date_picker_positions_element.jsx'
|
21
21
|
export { default as DatePickerAllowInput } from './_date_picker_allow_input'
|
22
|
+
export { default as DatePickerMarginBottom} from './_date_picker_margin_bottom'
|
22
23
|
export { default as DatePickerQuickPickReact } from './_date_picker_quick_pick_react'
|
23
24
|
export { default as DatePickerQuickPickRangeLimit } from './_date_picker_quick_pick_range_limit'
|
24
25
|
export { default as DatePickerOnClose } from './_date_picker_on_close.jsx'
|
@@ -1,5 +1,55 @@
|
|
1
|
+
<%= pb_rails("button", props: { text: "Short Multiline", variant: "secondary", data: { multitoast: "#toast-short" } }) %>
|
2
|
+
|
1
3
|
<%= pb_rails("fixed_confirmation_toast", props: {
|
4
|
+
classname: "multitoast-to-hide",
|
5
|
+
closeable: true,
|
6
|
+
id: "toast-short",
|
2
7
|
multi_line: true,
|
3
|
-
text: "
|
8
|
+
text: "Multi-line is used when the given text will not fit on one line.",
|
4
9
|
status: "tip",
|
10
|
+
vertical: "top",
|
11
|
+
horizontal: "center"
|
5
12
|
}) %>
|
13
|
+
|
14
|
+
<%= pb_rails("button", props: { text: "Long Multiline", variant: "secondary", data: { multitoast: "#toast-long" } }) %>
|
15
|
+
|
16
|
+
<%= pb_rails("fixed_confirmation_toast", props: {
|
17
|
+
classname: "multitoast-to-hide",
|
18
|
+
closeable: true,
|
19
|
+
id: "toast-long",
|
20
|
+
multi_line: true,
|
21
|
+
text: "Multi-line is used when the given text will not fit on one line. Using Multi Line allows the height of the confirmation toast to grow. Simply resize the screen to see the fixed confirmation toast wrap the text.",
|
22
|
+
status: "tip",
|
23
|
+
vertical: "top",
|
24
|
+
horizontal: "center"
|
25
|
+
}) %>
|
26
|
+
|
27
|
+
|
28
|
+
<script type="text/javascript">
|
29
|
+
const multitoasts = document.querySelectorAll(".multitoast-to-hide")
|
30
|
+
const multibuttons = document.querySelectorAll("button[data-multitoast]")
|
31
|
+
|
32
|
+
const hideMultiToasts = () => {
|
33
|
+
multitoasts.forEach((toast) => {
|
34
|
+
toast.style.display = "none"
|
35
|
+
})
|
36
|
+
}
|
37
|
+
|
38
|
+
multibuttons.forEach((button) => {
|
39
|
+
button.onclick = () => {
|
40
|
+
hideMultiToasts()
|
41
|
+
let toast = document.querySelector(button.getAttribute("data-multitoast"))
|
42
|
+
|
43
|
+
if (toast) {
|
44
|
+
toast.style.display = "flex"
|
45
|
+
}
|
46
|
+
}
|
47
|
+
})
|
48
|
+
</script>
|
49
|
+
|
50
|
+
<!-- hiding toast on page load -->
|
51
|
+
<style>
|
52
|
+
#toast-long, #toast-short {
|
53
|
+
display: none;
|
54
|
+
}
|
55
|
+
</style>
|
data/app/pb_kits/playbook/pb_fixed_confirmation_toast/docs/_fixed_confirmation_toast_multi_line.jsx
CHANGED
@@ -1,18 +1,69 @@
|
|
1
|
-
import React from 'react'
|
1
|
+
import React, { useState } from 'react'
|
2
2
|
|
3
|
+
import Button from '../../pb_button/_button'
|
3
4
|
import FixedConfirmationToast from '../_fixed_confirmation_toast'
|
4
5
|
|
5
6
|
const FixedConfirmationToastMultiLine = (props) => {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
7
|
+
|
8
|
+
const [openShort, setOpenShort] = useState(false)
|
9
|
+
const [openLong, setOpenLong] = useState(false)
|
10
|
+
|
11
|
+
const handleClickShort = () => {
|
12
|
+
setOpenShort(true)
|
13
|
+
}
|
14
|
+
const handleClickLong= () => {
|
15
|
+
setOpenLong(true)
|
16
|
+
}
|
17
|
+
|
18
|
+
const handleCloseShort = () => {
|
19
|
+
setOpenShort(false)
|
20
|
+
}
|
21
|
+
|
22
|
+
const handleCloseLong= () => {
|
23
|
+
setOpenLong(false)
|
24
|
+
}
|
25
|
+
|
26
|
+
return (
|
27
|
+
<>
|
28
|
+
<Button
|
29
|
+
onClick={handleClickShort}
|
30
|
+
text="Short Multiline"
|
31
|
+
variant="secondary"
|
32
|
+
{...props}
|
33
|
+
/>
|
34
|
+
{' '}
|
35
|
+
<Button
|
36
|
+
onClick={handleClickLong}
|
37
|
+
text="Long Multiline"
|
38
|
+
variant="secondary"
|
39
|
+
{...props}
|
40
|
+
/>
|
41
|
+
|
42
|
+
<FixedConfirmationToast
|
43
|
+
closeable
|
44
|
+
horizontal='center'
|
45
|
+
multiLine
|
46
|
+
onClose={handleCloseShort}
|
47
|
+
open={openShort}
|
48
|
+
status='tip'
|
49
|
+
text='Multi-line is used when the given text will not fit on one line.'
|
50
|
+
vertical='top'
|
51
|
+
{...props}
|
52
|
+
/>
|
53
|
+
|
54
|
+
<FixedConfirmationToast
|
55
|
+
closeable
|
56
|
+
horizontal='center'
|
57
|
+
multiLine
|
58
|
+
onClose={handleCloseLong}
|
59
|
+
open={openLong}
|
60
|
+
status='tip'
|
61
|
+
text='Multi-line is used when the given text will not fit on one line. Using Multi Line allows the height of the confirmation toast to grow. Simply resize the screen to see the fixed confirmation toast wrap the text.'
|
62
|
+
vertical='top'
|
63
|
+
{...props}
|
64
|
+
/>
|
65
|
+
</>
|
66
|
+
)
|
16
67
|
}
|
17
68
|
|
18
69
|
export default FixedConfirmationToastMultiLine
|
@@ -75,8 +75,6 @@
|
|
75
75
|
})
|
76
76
|
}
|
77
77
|
|
78
|
-
hideToasts()
|
79
|
-
|
80
78
|
buttons.forEach((button) => {
|
81
79
|
button.onclick = () => {
|
82
80
|
hideToasts()
|
@@ -88,3 +86,10 @@
|
|
88
86
|
}
|
89
87
|
})
|
90
88
|
</script>
|
89
|
+
|
90
|
+
<!-- hiding toast on page load -->
|
91
|
+
<style>
|
92
|
+
#toast-top-center, #toast-top-right, #toast-top-left, #toast-bottom-center, #toast-bottom-right, #toast-bottom-left {
|
93
|
+
display: none;
|
94
|
+
}
|
95
|
+
</style>
|