playbook_ui_docs 14.4.0.pre.alpha.PLAY1486highchartscssdrivenPOC3923 → 14.4.0.pre.alpha.PLAY1529removefaeasy3876

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e6211d85b2cc8169666591eec6f9453b98729675518c82ac6db118c1ab5cce7
4
- data.tar.gz: 7f08e6fd1e5502a41d7a4f935a0aa7682e220723ab1efd1e151bae6ea67f1801
3
+ metadata.gz: f53ebd1adccd53eb508c01d48ba5b3a787a229221035ce52ad3e3465f10aced5
4
+ data.tar.gz: 72b59caa9344a641dea6ddfa58f4efc436adf2939822b5f5fbbcf019b5ac6eca
5
5
  SHA512:
6
- metadata.gz: c008b798601b11c7c8e921c5c1bab3c187b2734a65df505f12986d1c74fffc0a043807aff380127ba8b93263e52b1f2c0bc427160d25527c30faf0e87e7d13b6
7
- data.tar.gz: adbb8f3f7a6390c04069035dad65d5d9acbdf1ed19d6f3597c53748f27eb726bdb6b4814ce8e92d62eda63f1e202e36b9c8252e30c42fa5adb20e705d99746a2
6
+ metadata.gz: 6d7d723acaedb8f42a710ed4ac207194efb000c43bd2e5c5d2d49d2add9bca9204646412df7979b5949c1348103571068d94b29898d930f4ecd54a57a3314bce
7
+ data.tar.gz: e4be28313c36e559b5fb808765cce63e4725f7835d1b584c1f7a8d0d51e7220ec088405ed0b7b3b04cb70ba20879c992016a13c8959aea390c6c70730b59dd3e
@@ -28,9 +28,9 @@
28
28
  popoverButton.onclick = () => {
29
29
  buttonClicked = !buttonClicked
30
30
  if (buttonClicked) {
31
- arrowDiv.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" width="auto" height="auto" viewBox="0 0 31 25" fill="none" class="pb_custom_icon svg-inline--fa pb_icon_kit svg_fw" id="" data="{}" aria="{}" tabindex=""><path d="M14.2031 5.70312C14.625 5.28125 15.3281 5.28125 15.75 5.70312L24.7969 14.7031C25.2188 15.1719 25.2188 15.875 24.7969 16.2969C24.3281 16.7656 23.625 16.7656 23.2031 16.2969L15 8.09375L6.79688 16.2969C6.32812 16.7656 5.625 16.7656 5.20312 16.2969C4.73438 15.875 4.73438 15.1719 5.20312 14.75L14.2031 5.70312Z" fill="currentColor"/></svg>'
31
+ arrowDiv.innerHTML = '<i class="far fa-angle-up"></i>'
32
32
  } else {
33
- arrowDiv.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" width="auto" height="auto" viewBox="0 0 31 25" fill="none" class="pb_custom_icon svg-inline--fa pb_icon_kit svg_fw" id="" data="{}" aria="{}" tabindex=""><path d="M14.2031 19.2969L5.20312 10.2969C4.73438 9.875 4.73438 9.17188 5.20312 8.70312C5.625 8.28125 6.32812 8.28125 6.79688 8.70312L15 16.9531L23.2031 8.75C23.625 8.28125 24.3281 8.28125 24.7969 8.75C25.2188 9.17188 25.2188 9.875 24.7969 10.2969L15.75 19.2969C15.3281 19.7656 14.625 19.7656 14.2031 19.2969Z" fill="currentColor"/></svg>'
33
+ arrowDiv.innerHTML = '<i class="far fa-angle-down"></i>'
34
34
  }
35
35
  }
36
36
  </script>
@@ -10,7 +10,6 @@
10
10
  <%= pb_rails("radio", props: {
11
11
  custom_children: true,
12
12
  label: "Select",
13
- margin_bottom: "sm",
14
13
  name: "Group1",
15
14
  value: "Select",
16
15
  }) do %>
@@ -23,7 +22,6 @@
23
22
  <%= pb_rails("radio", props: {
24
23
  custom_children: true,
25
24
  label: "Typeahead",
26
- margin_bottom: "sm",
27
25
  name: "Group1",
28
26
  value: "Typeahead",
29
27
  }) do %>
@@ -19,14 +19,12 @@ const RadioChildren = (props) => {
19
19
  <Radio
20
20
  customChildren
21
21
  label="Select"
22
- marginBottom="sm"
23
22
  name="Group1"
24
23
  tabIndex={0}
25
24
  value="Select"
26
25
  {...props}
27
26
  >
28
- <Select
29
- marginBottom="none"
27
+ <Select
30
28
  minWidth="xs"
31
29
  options={options}
32
30
  />
@@ -34,18 +32,17 @@ const RadioChildren = (props) => {
34
32
  <Radio
35
33
  customChildren
36
34
  label="Typeahead"
37
- marginBottom="sm"
38
35
  name="Group1"
39
36
  tabIndex={0}
40
37
  value="Typeahead"
41
38
  {...props}
42
39
  >
43
40
  <Typeahead
44
- marginBottom="none"
45
41
  minWidth="xs"
46
42
  options={options}
47
43
  />
48
44
  </Radio>
45
+ <br />
49
46
  <Radio
50
47
  customChildren
51
48
  defaultChecked={false}