playbook_ui_docs 14.25.0.pre.alpha.testingcss9700 → 14.25.0.pre.alpha.testingcss9751
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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_dialog/docs/_dialog_loading.html.erb +16 -2
- data/app/pb_kits/playbook/pb_flex/docs/_flex_gap.html.erb +12 -1
- data/app/pb_kits/playbook/pb_flex/docs/_flex_gap.jsx +26 -1
- data/app/pb_kits/playbook/pb_flex/docs/_flex_gap_rails.md +11 -0
- data/app/pb_kits/playbook/pb_flex/docs/_flex_gap_react.md +11 -0
- data/app/pb_kits/playbook/pb_map/docs/_map_default.jsx +1 -1
- data/app/pb_kits/playbook/pb_map/docs/_map_with_custom_button.jsx +1 -1
- data/app/pb_kits/playbook/pb_map/docs/_map_with_plugin.jsx +1 -1
- data/app/pb_kits/playbook/pb_radio/docs/_radio_react_hook.jsx +0 -3
- data/app/pb_kits/playbook/pb_section_separator/docs/_section_separator_color.jsx +3 -1
- data/dist/playbook-doc.js +3 -67243
- metadata +4 -21
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_behavior.html.erb +0 -8
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_behavior.jsx +0 -41
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_borders.html.erb +0 -33
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_borders.jsx +0 -78
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_breakpoints.html.erb +0 -3
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_breakpoints.jsx +0 -26
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_default.html.erb +0 -20
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_default.jsx +0 -59
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_menu.html.erb +0 -24
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_menu.jsx +0 -61
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_menu.md +0 -24
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_overlay.html.erb +0 -21
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_overlay.jsx +0 -54
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_overlay.md +0 -1
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_sizes.html.erb +0 -49
- data/app/pb_kits/playbook/pb_drawer/docs/_drawer_sizes.jsx +0 -99
- data/app/pb_kits/playbook/pb_drawer/docs/example.yml +0 -20
- data/app/pb_kits/playbook/pb_drawer/docs/index.js +0 -7
- data/app/pb_kits/playbook/pb_flex/docs/_flex_gap.md +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 337bb2f7d87fd876df8033cf52910dfcfc6a88266453ed713ed6e52f52a8b6bb
|
4
|
+
data.tar.gz: bcf33fecbbd7afe0a9246b0787ef288370b2f9071f381ac8ba21a3a5c60ae4a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70d2f333571ce8859408b6c805319d529833caadcf32eeb48f683ea20c3df51839aaef51683adc06a45b3b5f9c30dba1f7fe95647e5b349c435af4113fbc9b02
|
7
|
+
data.tar.gz: 539d712102e3277ab00e380c354b506805ad9959e3b0ba91b89b6ec0da50fb2cf13cce76371ca6cce75a1014550a54b4367a48ba8ea527c96521de54f1ec1ea3
|
@@ -21,13 +21,27 @@
|
|
21
21
|
let currentClass = okayLoadingButton.className;
|
22
22
|
let cancelClass = cancelButton ? cancelButton.className : "";
|
23
23
|
|
24
|
+
okayLoadingButton.disabled = true;
|
25
|
+
okayLoadingButton.classList.add("pb_button_loading");
|
26
|
+
okayLoadingButton.classList.remove("pb_button_enabled");
|
27
|
+
okayLoadingButton.classList.add("pb_button_disabled");
|
28
|
+
|
29
|
+
if (cancelButton) {
|
30
|
+
cancelButton.disabled = true;
|
31
|
+
cancelButton.classList.remove("pb_button_enabled");
|
32
|
+
cancelButton.classList.add("pb_button_disabled");
|
33
|
+
}
|
34
|
+
|
24
35
|
setTimeout(function() {
|
25
36
|
okayLoadingButton.disabled = false;
|
26
|
-
okayLoadingButton.
|
37
|
+
okayLoadingButton.classList.remove("pb_button_loading");
|
38
|
+
okayLoadingButton.classList.remove("pb_button_disabled");
|
39
|
+
okayLoadingButton.classList.add("pb_button_enabled");
|
27
40
|
|
28
41
|
if (cancelButton) {
|
29
42
|
cancelButton.disabled = false;
|
30
|
-
cancelButton.
|
43
|
+
cancelButton.classList.remove("pb_button_disabled");
|
44
|
+
cancelButton.classList.add("pb_button_enabled");
|
31
45
|
}
|
32
46
|
}, 5000);
|
33
47
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<%= pb_rails("title", props: {size: 4, text: "
|
1
|
+
<%= pb_rails("title", props: {size: 4, text: "Gap"}) %>
|
2
2
|
<br/>
|
3
3
|
<div class="flex-doc-example">
|
4
4
|
<%= pb_rails("flex", props:{ gap: "xxs", wrap:true}) do %>
|
@@ -31,3 +31,14 @@
|
|
31
31
|
<%= pb_rails("flex/flex_item") do %>4<% end %>
|
32
32
|
<% end %>
|
33
33
|
</div>
|
34
|
+
|
35
|
+
<br/><br/>
|
36
|
+
<%= pb_rails("title", props: {size: 4, text: "Responsive"}) %>
|
37
|
+
<br/>
|
38
|
+
<div class="flex-doc-example">
|
39
|
+
<%= pb_rails("flex", props: { gap: { xs: "none", sm: "sm", md: "md", lg: "lg", xl: "xl" }, wrap: true }) do %>
|
40
|
+
<% 40.times do |i| %>
|
41
|
+
<%= pb_rails("flex/flex_item") do %> <%=i%> <% end %>
|
42
|
+
<% end %>
|
43
|
+
<% end %>
|
44
|
+
</div>
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import React from 'react'
|
2
2
|
import Flex from '../../pb_flex/_flex'
|
3
3
|
import FlexItem from '../../pb_flex/_flex_item'
|
4
|
+
import Title from '../../pb_title/_title'
|
4
5
|
|
5
6
|
const FlexGap = (props) => {
|
6
7
|
const count = () => {
|
@@ -13,6 +14,8 @@ const FlexGap = (props) => {
|
|
13
14
|
|
14
15
|
return (
|
15
16
|
<>
|
17
|
+
<Title size={4}>Gap</Title>
|
18
|
+
<br />
|
16
19
|
<div className="flex-doc-example">
|
17
20
|
<Flex
|
18
21
|
gap="xxs"
|
@@ -27,8 +30,10 @@ const FlexGap = (props) => {
|
|
27
30
|
</Flex>
|
28
31
|
</div>
|
29
32
|
|
30
|
-
<br />
|
33
|
+
<br /><br />
|
31
34
|
|
35
|
+
<Title size={4}>Column Gap</Title>
|
36
|
+
<br />
|
32
37
|
<div className="flex-doc-example">
|
33
38
|
<Flex
|
34
39
|
columnGap="lg"
|
@@ -48,6 +53,9 @@ const FlexGap = (props) => {
|
|
48
53
|
</FlexItem>
|
49
54
|
</Flex>
|
50
55
|
</div>
|
56
|
+
<br /><br />
|
57
|
+
|
58
|
+
<Title size={4}>Row Gap</Title>
|
51
59
|
<br />
|
52
60
|
<div className="flex-doc-example">
|
53
61
|
<Flex
|
@@ -69,6 +77,23 @@ const FlexGap = (props) => {
|
|
69
77
|
</FlexItem>
|
70
78
|
</Flex>
|
71
79
|
</div>
|
80
|
+
|
81
|
+
<br /><br />
|
82
|
+
<Title size={4}>Responsive</Title>
|
83
|
+
<br />
|
84
|
+
<div className="flex-doc-example">
|
85
|
+
<Flex
|
86
|
+
gap={{ xs: "none", sm: "sm", md: "md", lg: "lg", xl: "xl" }}
|
87
|
+
wrap
|
88
|
+
{...props}
|
89
|
+
>
|
90
|
+
{count().map((v, key) => (
|
91
|
+
<FlexItem key={key}>
|
92
|
+
{v}
|
93
|
+
</FlexItem>
|
94
|
+
))}
|
95
|
+
</Flex>
|
96
|
+
</div>
|
72
97
|
</>
|
73
98
|
)
|
74
99
|
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
##### Prop
|
2
|
+
|
3
|
+
`gap` | `row_gap` | `column_gap` | **Type**: String | Hash | **Values**: xxs | xs | sm | md | lg | xl | none
|
4
|
+
|
5
|
+
Setting the gap prop sets the `row_gap` and the `column_gap` props to the same size and creates equal space within a flex container.
|
6
|
+
|
7
|
+
Setting the `row_gap` prop creates space between rows in a flex container.
|
8
|
+
|
9
|
+
Setting the `column_gap` prop creates space between columns in a flex container.
|
10
|
+
|
11
|
+
You can also set responsive values by passing a hash with device sizes and values.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
##### Prop
|
2
|
+
|
3
|
+
`gap` | `rowGap` | `columnGap` | **Type**: String | Object | **Values**: xxs | xs | sm | md | lg | xl | none
|
4
|
+
|
5
|
+
Setting the gap prop sets the `rowGap` and the `columnGap` props to the same size and creates equal space within a flex container.
|
6
|
+
|
7
|
+
Setting the `rowGap` prop creates space between rows in a flex container.
|
8
|
+
|
9
|
+
Setting the `columnGap` prop creates space between columns in a flex container.
|
10
|
+
|
11
|
+
You can also set responsive values by passing an object with device sizes and values.
|
@@ -26,7 +26,7 @@ const MapDefault = (props) => {
|
|
26
26
|
new maplibregl.Marker({
|
27
27
|
color: mapTheme.marker,
|
28
28
|
}).setLngLat(defaultPosition)
|
29
|
-
.setPopup(new maplibregl.Popup({closeButton: false}).setHTML(`<h4 class="
|
29
|
+
.setPopup(new maplibregl.Popup({closeButton: false}).setHTML(`<h4 class="pb_title_kit pb_title_4">Hello World!</h4>`)) // add popup
|
30
30
|
.addTo(map);
|
31
31
|
|
32
32
|
// disable map zoom when using scroll
|
@@ -29,7 +29,7 @@ const MapWithCustomButton = (props) => {
|
|
29
29
|
new maplibregl.Marker({
|
30
30
|
color: mapTheme.marker,
|
31
31
|
}).setLngLat(defaultPosition)
|
32
|
-
.setPopup(new maplibregl.Popup({closeButton: false}).setHTML(`<h4 class="
|
32
|
+
.setPopup(new maplibregl.Popup({closeButton: false}).setHTML(`<h4 class="pb_title_kit pb_title_4">Hello World!</h4>`)) // add popup
|
33
33
|
.addTo(map);
|
34
34
|
|
35
35
|
// disable map zoom when using scroll
|
@@ -26,7 +26,7 @@ const MapWithPlugin = (props) => {
|
|
26
26
|
new maplibregl.Marker({
|
27
27
|
color: mapTheme.marker,
|
28
28
|
}).setLngLat(defaultPosition)
|
29
|
-
.setPopup(new maplibregl.Popup({
|
29
|
+
.setPopup(new maplibregl.Popup({closeButton: false}).setHTML(`<h4 class="pb_title_kit pb_title_4">Hello World!</h4>`)) // add popup
|
30
30
|
.addTo(map);
|
31
31
|
|
32
32
|
//add maplibre default zoom controls
|
@@ -19,7 +19,6 @@ const RadioReactHook = () => {
|
|
19
19
|
paddingRight="lg"
|
20
20
|
>
|
21
21
|
<Radio
|
22
|
-
alignment="left"
|
23
22
|
label="Small"
|
24
23
|
marginBottom='sm'
|
25
24
|
name="size"
|
@@ -28,7 +27,6 @@ const RadioReactHook = () => {
|
|
28
27
|
/>
|
29
28
|
<br />
|
30
29
|
<Radio
|
31
|
-
alignment="left"
|
32
30
|
label="Medium"
|
33
31
|
marginBottom='sm'
|
34
32
|
name="size"
|
@@ -37,7 +35,6 @@ const RadioReactHook = () => {
|
|
37
35
|
/>
|
38
36
|
<br />
|
39
37
|
<Radio
|
40
|
-
alignment="left"
|
41
38
|
label="Large"
|
42
39
|
marginBottom='sm'
|
43
40
|
name="size"
|