playbook_ui_docs 14.9.0.pre.alpha.PBNTR702stickyleftcolrails4806 → 14.9.0.pre.alpha.PBNTR746datepickerdefaultbug4891

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: 1b016405881ed19fca483e3361be7dcaa01afd51449cceb34ee0ca7c76c82e31
4
- data.tar.gz: 77db664eefe03b5284a4e17c9c596f43d89d6ecc7d266b4cc543d6f771782885
3
+ metadata.gz: 5d7ee97566acbec44a92c1af539e307343aee22e7163ddf9e9ad655b30c8685c
4
+ data.tar.gz: 04d13da42fa8d5dc6afcf836322f2e34a83467eddcea84fb7e096c8b987896c5
5
5
  SHA512:
6
- metadata.gz: 686b0ba7893ef53043369be569ce726bd3ff356df26e3c5b62294244f302115d06c84c35a386c16ec9ff0f75a03fde2fd224dbec0e718b0baf12ada263a5be99
7
- data.tar.gz: 9fb9acfb439bb19afdd4ac20f21afe7e5b318c2f2114b8ea60b3fb606b2484e645403c6129993e1c817f9aeb89d2e741c669cbb09ea605b9acf1a658bf1bbe28
6
+ metadata.gz: 49dbe2b71c7d8fd6bd655ad0c37be0e3b27e28e9378d01e00e61c385cd8b0a56672103ff46cc16493fa8429a607fa5d42ab4337750b1e977ac8a51b7db97879d
7
+ data.tar.gz: f4c403db73876460a960dac6bd8f6678a4aaf0d3e3f35aadab391a8f119cf8726ab6026c64ab510c49b8717d72793aac60fcfab5d6a6ea1e73468cf7a357b488
@@ -13,6 +13,7 @@ const BreadCrumbsDefault = (props) => {
13
13
  <Icon
14
14
  icon="home"
15
15
  size="1x"
16
+ {...props}
16
17
  />
17
18
  <BreadCrumbItem
18
19
  {...props}
@@ -22,11 +23,13 @@ const BreadCrumbsDefault = (props) => {
22
23
  size="4"
23
24
  tag="span"
24
25
  text="Home"
26
+ {...props}
25
27
  />
26
28
  </BreadCrumbItem>
27
29
  <Icon
28
30
  icon="users"
29
31
  size="1x"
32
+ {...props}
30
33
  />
31
34
  <Link
32
35
  {...props}
@@ -36,17 +39,20 @@ const BreadCrumbsDefault = (props) => {
36
39
  size="4"
37
40
  tag="span"
38
41
  text="Users"
42
+ {...props}
39
43
  />
40
44
  </Link>
41
45
  <Icon
42
46
  icon="user"
43
47
  size="1x"
48
+ {...props}
44
49
  />
45
50
  <Link {...props}>
46
51
  <Title
47
52
  size="4"
48
53
  tag="span"
49
54
  text="User"
55
+ {...props}
50
56
  />
51
57
  </Link>
52
58
  </BreadCrumbs>