playbook_ui_docs 14.0.0.pre.alpha.PLAY1475bumpaxecoredependency3483 → 14.0.0.pre.alpha.PLAY14113475

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: e5b7fdc346724db1d4c80c4336754c561546a3c559b50939ed5038b305b4f2e0
4
- data.tar.gz: b2a5d34005026ff921f96ea55dedfac5e92ad87005ee894d02e9d71ce508bdc5
3
+ metadata.gz: 86d70232a7087e637c74cc790d458af52f9bdbd7a1f9aa63c38c257734cae08d
4
+ data.tar.gz: 4e626c3f23b9601836ab9c4c3f740749b5f73519c120bef21fb5d26d444585d2
5
5
  SHA512:
6
- metadata.gz: 33c7af0f00cee9b23b338357e083865c74221f4f98aa9d0897f68042bd4a441ff3f23669d87bcab9e4b172e2d55fe16cb70a24ef7d1c2f57c332eedc21827ef1
7
- data.tar.gz: 67db415fa4201122d51580ffd4a262cec4839dfb50c5178ddc5652444f7e73af8c9d7cffe72f9a3c7fdc6b32e6f2d27048b87ab40ac4b985a8f4e73900eefd19
6
+ metadata.gz: de6d3737e4bae9638c454c63050e395184b98b82a459c8ac35b525a9c78a37c874f8321f2d1e8f7278883e634ebcd6140bc5d87b27c95b059a177df3fd6032e4
7
+ data.tar.gz: 63fae783ea4f9f941ebec11f557ffd233518488e2efffda2ef000a0cfd2be760baa476c894e65d17cd1eef9c7927755e0c2050d365b4372274bc139af75002a3
@@ -10,3 +10,16 @@
10
10
  variant: "notification"
11
11
  }) %>
12
12
  </div>
13
+
14
+ <div>
15
+ <%= pb_rails("badge", props: {
16
+ text: "1",
17
+ variant: "notification_error",
18
+ rounded: true
19
+ }) %>
20
+
21
+ <%= pb_rails("badge", props: {
22
+ text: "4",
23
+ variant: "notification_error"
24
+ }) %>
25
+ </div>
@@ -4,20 +4,39 @@ import Badge from '../_badge'
4
4
  const BadgeNotification = (props) => {
5
5
  return (
6
6
  <>
7
- <Badge
8
- rounded
9
- text="1"
10
- variant="notification"
11
- {...props}
12
- />
7
+ <div>
8
+ <Badge
9
+ rounded
10
+ text="1"
11
+ variant="notification"
12
+ {...props}
13
+ />
13
14
 
14
- &nbsp;
15
+ &nbsp;
15
16
 
16
- <Badge
17
- text="4"
18
- variant="notification"
19
- {...props}
20
- />
17
+ <Badge
18
+ text="4"
19
+ variant="notification"
20
+ {...props}
21
+ />
22
+ </div>
23
+
24
+ <div>
25
+ <Badge
26
+ rounded
27
+ text="1"
28
+ variant="notificationError"
29
+ {...props}
30
+ />
31
+
32
+ &nbsp;
33
+
34
+ <Badge
35
+ text="4"
36
+ variant="notificationError"
37
+ {...props}
38
+ />
39
+ </div>
21
40
  </>
22
41
  )
23
42
  }