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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/app/pb_kits/playbook/pb_dialog/docs/_dialog_loading.html.erb +16 -2
  3. data/app/pb_kits/playbook/pb_flex/docs/_flex_gap.html.erb +12 -1
  4. data/app/pb_kits/playbook/pb_flex/docs/_flex_gap.jsx +26 -1
  5. data/app/pb_kits/playbook/pb_flex/docs/_flex_gap_rails.md +11 -0
  6. data/app/pb_kits/playbook/pb_flex/docs/_flex_gap_react.md +11 -0
  7. data/app/pb_kits/playbook/pb_map/docs/_map_default.jsx +1 -1
  8. data/app/pb_kits/playbook/pb_map/docs/_map_with_custom_button.jsx +1 -1
  9. data/app/pb_kits/playbook/pb_map/docs/_map_with_plugin.jsx +1 -1
  10. data/app/pb_kits/playbook/pb_radio/docs/_radio_react_hook.jsx +0 -3
  11. data/app/pb_kits/playbook/pb_section_separator/docs/_section_separator_color.jsx +3 -1
  12. data/dist/playbook-doc.js +3 -67243
  13. metadata +4 -21
  14. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_behavior.html.erb +0 -8
  15. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_behavior.jsx +0 -41
  16. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_borders.html.erb +0 -33
  17. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_borders.jsx +0 -78
  18. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_breakpoints.html.erb +0 -3
  19. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_breakpoints.jsx +0 -26
  20. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_default.html.erb +0 -20
  21. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_default.jsx +0 -59
  22. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_menu.html.erb +0 -24
  23. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_menu.jsx +0 -61
  24. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_menu.md +0 -24
  25. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_overlay.html.erb +0 -21
  26. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_overlay.jsx +0 -54
  27. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_overlay.md +0 -1
  28. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_sizes.html.erb +0 -49
  29. data/app/pb_kits/playbook/pb_drawer/docs/_drawer_sizes.jsx +0 -99
  30. data/app/pb_kits/playbook/pb_drawer/docs/example.yml +0 -20
  31. data/app/pb_kits/playbook/pb_drawer/docs/index.js +0 -7
  32. 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: ecb2289b05e51254aa62c364e4a543d374a3790ca42c14bb9ed86d65bd1cff47
4
- data.tar.gz: 147189476726310d62ad857844cbb54e63a99793989eadbf333703bc1311904e
3
+ metadata.gz: 337bb2f7d87fd876df8033cf52910dfcfc6a88266453ed713ed6e52f52a8b6bb
4
+ data.tar.gz: bcf33fecbbd7afe0a9246b0787ef288370b2f9071f381ac8ba21a3a5c60ae4a4
5
5
  SHA512:
6
- metadata.gz: f92d4ca2af12ca9379faadd91a67852ebcdb6574dde37e8439db1a4f42a4113d99c94b2e7400323e5278dc210e595311dd8e492398bfcb83e5d75065dda2d84e
7
- data.tar.gz: c73002345301e74ae4ff537ae0ad613ffb0603be5c777724dce1982e8ef4161547afb4a2f3110be2786344e70a315826d06c6c71d9198b0d879d774b806c6003
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.className = currentClass.replace("_disabled_loading", "_enabled");
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.className = cancelClass.replace("_disabled", "_enabled");
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: "Row"}) %>
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="pb_title_kit_size_4">Hello World!</h4>`)) // add 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
  // 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="pb_title_kit_size_4">Hello World!</h4>`)) // add popup
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({className: 'map_popup', closeButton: false}).setHTML(`<h4 class="pb_title_kit_size_4">Hello World!</h4>`)) // add 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"
@@ -5,7 +5,9 @@ import Detail from '../../pb_detail/_detail'
5
5
  import Icon from '../../pb_icon/_icon'
6
6
 
7
7
  const children = (
8
- <Flex padding="xs">
8
+ <Flex alignItems="center"
9
+ padding="xs"
10
+ >
9
11
  <Icon color="primary"
10
12
  icon="arrow-down"
11
13
  />