playbook_ui_docs 14.3.0.pre.rc.8 → 14.3.0.pre.rc.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d5afa15406cf1da34aa01f2c51b20950c6859674c38411ead0d3e2bfbad3c96
4
- data.tar.gz: a3327ad81df9ba437e1a2a8411e7d92054272c81f90aae88a2fb5f497d95317c
3
+ metadata.gz: 31d8e19e9d7abd7e011f6625968db0aed479ba32d723abd51b553bebc399c9ba
4
+ data.tar.gz: c1077d004a0013cf71b59deb3eeac8378bbbd3adca2c14c5782f249215befb20
5
5
  SHA512:
6
- metadata.gz: d3de8cd6dae73412a3a536e3ce1b5c8117cabadd6fda1133bc2617637d8843815fbc7b3cad3d6167fadef1764aef8672318f28d4ba0fd124311c6b9596c93a67
7
- data.tar.gz: 228172434abc8e90a332dd4b7149f6bece824a86f0c0d235d3dc2e01ac714684ead9f2e1ba7b432591fe133e6435bf40f49438ae2e30f91cba0c6f4479ed3643
6
+ metadata.gz: 20202c537d966a590a6b5c5cbe05ce519fc79a7f939c8c95463639baaaf4193a769785f81aeaee1034cd61ae4f2436207435450d3fc5b9e397f222f6567a2fde
7
+ data.tar.gz: 789b069e77f00064866465e0df15f2b74ef1e10b2489631e57d6c7986f7d5cacac20003dffaed7861a235b683a723c933c80a87bafd594f14bdcdb92cc9f9587
@@ -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.