playbook_ui_docs 14.10.0.pre.rc.19 → 14.10.0.pre.rc.20

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: 46f8cdecf3a30960ce3728643d11911616e18d3ab972e98b7700473d873ba61f
4
- data.tar.gz: 1d4ab6359da9569a13bc9fdff4fa5746893755e9d9c6d1b21985acba26e9d1bb
3
+ metadata.gz: 511bc0b5d138af5f9926228fc6ce9cbfa8c14b097e04359b7ab0fa571009a7db
4
+ data.tar.gz: 779ca58a718d9754af9212a8b949a0f94e551a9b80f9c11906e4c08ef1c87a40
5
5
  SHA512:
6
- metadata.gz: 75784b4caaff03129bc3dc7a759272961cc622cfd6e415fcea298172de21ddb71305a6b874a42fa9867984b68d0eaef79307dc9ddf76ca7bdf62b9aa90e36a26
7
- data.tar.gz: 70c6ea8131fa2e3969074c9665f8baf97ec9c8b5c27afed95a6c8f2afffcb1cadb3b00f6ac31ead62c1fba99f91202adc6f2f09c7e17dec5c325f3aa90cca02c
6
+ metadata.gz: 10263676b98aebca4976906d3233b3450c2f91510a076af5a5c3a0ddfe4162acdbea232fcdab35dd25e0702962c96ec97244a5d38d8a1834f1780a42096773a3
7
+ data.tar.gz: f106e5d194885385a89bee4b6c19674689872445262392221218939c2e71b1b9f8c5e5b228df57c398b8567223328baa34fcb19fba4bcb6c75450f19c9730213
@@ -24,4 +24,20 @@
24
24
  state: "PA",
25
25
  zipcode: "19382",
26
26
  territory: "PHL",
27
- }) %>
27
+ }) %>
28
+
29
+ <br>
30
+ <br>
31
+
32
+ <%= pb_rails("home_address_street", props: {
33
+ address: "70 Prospect Ave",
34
+ address_cont: "Apt M18",
35
+ city: "West Chester",
36
+ emphasis: "none",
37
+ home_id: 8250263,
38
+ home_url: "https://powerhrg.com/",
39
+ house_style: "Colonial",
40
+ state: "PA",
41
+ zipcode: "19382",
42
+ territory: "PHL",
43
+ }) %>
@@ -32,6 +32,21 @@ const HomeAddressStreetEmphasis = (props) => {
32
32
  zipcode="19382"
33
33
  {...props}
34
34
  />
35
+ <br />
36
+ <br />
37
+ <HomeAddressStreet
38
+ address="70 Prospect Ave"
39
+ addressCont="Apt M18"
40
+ city="West Chester"
41
+ emphasis="none"
42
+ homeId="8250263"
43
+ homeUrl="https://powerhrg.com/"
44
+ houseStyle="Colonial"
45
+ state="PA"
46
+ territory="PHL"
47
+ zipcode="19382"
48
+ {...props}
49
+ />
35
50
  </div>
36
51
  )
37
52
  }
@@ -1,2 +1,3 @@
1
1
  Emphasis on street happens by default. (no prop needed)
2
- Emphasis on "city" makes the city emphasized, rather than the street.
2
+ Emphasis on "city" makes the city emphasized, rather than the street.
3
+ Adding "none" to emphasis prop will provide no emphasis.