playbook_ui_docs 14.10.0.pre.rc.18 → 14.10.0.pre.rc.20

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: 68bfad42551cfd9ce261a41e7b169f677aff4376a53daec3931ccb0a62c3075f
4
- data.tar.gz: e7a44d4cb2e93c4b56333eccef350d9377596355df35686936d67af1d7a6c47e
3
+ metadata.gz: 511bc0b5d138af5f9926228fc6ce9cbfa8c14b097e04359b7ab0fa571009a7db
4
+ data.tar.gz: 779ca58a718d9754af9212a8b949a0f94e551a9b80f9c11906e4c08ef1c87a40
5
5
  SHA512:
6
- metadata.gz: c08b7ebd416faca1e8c52fb3a0131663d1e58cbfa1b4481d78a86ac151733ba7c4c9158692afd74e265771ca3b5bc458c2828e37e34fb940b0b24e16d3b2bf83
7
- data.tar.gz: c48d1eebc0ad3bceeaf43101a4c8f3d4d7108f1b958ee12aa7c346feb7609922f26499e2430a6e1311868c2a5b9d143c064500ee9ec6bc6fc99600b095879485
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.
@@ -55,11 +55,18 @@ const TypeaheadWithHighlight = (props) => {
55
55
  marginRight="sm"
56
56
  name={name}
57
57
  size="sm"
58
+ {...props}
58
59
  />
59
60
  </FlexItem>
60
61
  <FlexItem>
61
- <Title size={4}><span dangerouslySetInnerHTML={{ __html: highlighted(name) }} /></Title>
62
- <Body color="light">
62
+ <Title
63
+ size={4}
64
+ {...props}
65
+ >
66
+ <span dangerouslySetInnerHTML={{ __html: highlighted(name) }} /></Title>
67
+ <Body color="light"
68
+ {...props}
69
+ >
63
70
  <span dangerouslySetInnerHTML={{ __html: highlighted(title) }} />{" • "}
64
71
  {territory}
65
72
  </Body>