playbook_ui_docs 14.3.0.pre.rc.8 → 14.3.0.pre.rc.9

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: 4d5afa15406cf1da34aa01f2c51b20950c6859674c38411ead0d3e2bfbad3c96
4
- data.tar.gz: a3327ad81df9ba437e1a2a8411e7d92054272c81f90aae88a2fb5f497d95317c
3
+ metadata.gz: 10dd1805c19de2e2bc2affdb5623debfdd0fbf8bd92187df9bea44c3757246b4
4
+ data.tar.gz: cf4eb66d0e1fa9dd96a8e3e395718e56f2400c1a9beb79e27ee69505fb3705ae
5
5
  SHA512:
6
- metadata.gz: d3de8cd6dae73412a3a536e3ce1b5c8117cabadd6fda1133bc2617637d8843815fbc7b3cad3d6167fadef1764aef8672318f28d4ba0fd124311c6b9596c93a67
7
- data.tar.gz: 228172434abc8e90a332dd4b7149f6bece824a86f0c0d235d3dc2e01ac714684ead9f2e1ba7b432591fe133e6435bf40f49438ae2e30f91cba0c6f4479ed3643
6
+ metadata.gz: 2ff24a36f162f1f09572a438d9866e7809315cbc4b369ce90b8111683bee86f10b4400d432aa248cca0a48aba253253ebc64a261d6564d684af55410f4a90066
7
+ data.tar.gz: 612aabc194a3c503251498d943cdc83f326ce1ef919f4657fe4bd1ec2a17e5809b4f5b5b38fb21b2884fa0fedac6290a0637968dc512942cda238cff83cd18cc
@@ -2,4 +2,4 @@
2
2
 
3
3
  <br/><br/>
4
4
 
5
- <%= pb_rails("hashtag", props: {text: "Open in a new Window", url: "https://google.com", type: "project", new_window: true}) %>
5
+ <%= pb_rails("hashtag", props: {text: "Open in a new Window", url: "https://google.com", type: "project", target: "_blank"}) %>
@@ -13,7 +13,7 @@ const HashtagLink = (props) => {
13
13
  <br />
14
14
  <br />
15
15
  <Hashtag
16
- newWindow
16
+ target="_blank"
17
17
  text="Open in a new window"
18
18
  type="project"
19
19
  url="https://google.com"
@@ -1 +1 @@
1
- Use the newWindow/new_window prop to control whether the link opens on the same page or a new tab (same page is the default behavior)
1
+ Use the `target` prop to control whether the link opens on the same or a new tab (same page is the default behavior). You can use any [web/standard](https://www.w3schools.com/tags/att_a_target.asp) values or a custom string to specify your link target.
@@ -5,7 +5,7 @@
5
5
  home_id: 8250263,
6
6
  home_url: "https://powerhrg.com/",
7
7
  house_style: "Colonial",
8
- new_window: true,
8
+ target: "_blank",
9
9
  state: "PA",
10
10
  zipcode: "19382",
11
11
  territory: "PHL",
@@ -11,8 +11,8 @@ const HomeAddressStreetLink= (props) => {
11
11
  homeId={8250263}
12
12
  homeUrl="https://powerhrg.com/"
13
13
  houseStyle="Colonial"
14
- newWindow
15
14
  state="PA"
15
+ target="_blank"
16
16
  territory="PHL"
17
17
  zipcode="19382"
18
18
  {...props}
@@ -1 +1 @@
1
- Use the `newWindow` / `new_window` prop to control whether the link opens on the same page or a new tab (same page is the default behavior)
1
+ Use the `target` prop to control whether the link opens on the same or a new tab (same page is the default behavior). You can use any [web/standard](https://www.w3schools.com/tags/att_a_target.asp) values or a custom string to specify your link target.