playbook_ui_docs 14.0.0.pre.alpha.PLAY14113475 → 14.0.0.pre.alpha.PLAY14733507

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: 86d70232a7087e637c74cc790d458af52f9bdbd7a1f9aa63c38c257734cae08d
4
- data.tar.gz: 4e626c3f23b9601836ab9c4c3f740749b5f73519c120bef21fb5d26d444585d2
3
+ metadata.gz: 1345412a66719390885793350e5d2baaf4cac6735b7a05425dfc5066fc011c21
4
+ data.tar.gz: 350dc6377b5356d39fb59749b2399ffded46e8400cb24d2270d33cd72c5e4583
5
5
  SHA512:
6
- metadata.gz: de6d3737e4bae9638c454c63050e395184b98b82a459c8ac35b525a9c78a37c874f8321f2d1e8f7278883e634ebcd6140bc5d87b27c95b059a177df3fd6032e4
7
- data.tar.gz: 63fae783ea4f9f941ebec11f557ffd233518488e2efffda2ef000a0cfd2be760baa476c894e65d17cd1eef9c7927755e0c2050d365b4372274bc139af75002a3
6
+ metadata.gz: 1c96f0c890c320c68fa17e17219bfbdd3b901809060462e51a7a9f4c4af79fd56a0c4e53afe5834f681ca4232ea1b8ad66139beb85fe0921d7291982a6488a2e
7
+ data.tar.gz: a4a4e4f4ea72a8905a74d09054eb43b9a8c7ae751a342ba0cc573fe72abc6c59a5d9ce6c1b65e89cf8f8a21c556c8a0a9c9b5fd0793d428b37d1fdb171e8aeca
@@ -10,16 +10,3 @@
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,39 +4,20 @@ import Badge from '../_badge'
4
4
  const BadgeNotification = (props) => {
5
5
  return (
6
6
  <>
7
- <div>
8
- <Badge
9
- rounded
10
- text="1"
11
- variant="notification"
12
- {...props}
13
- />
7
+ <Badge
8
+ rounded
9
+ text="1"
10
+ variant="notification"
11
+ {...props}
12
+ />
14
13
 
15
- &nbsp;
14
+ &nbsp;
16
15
 
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>
16
+ <Badge
17
+ text="4"
18
+ variant="notification"
19
+ {...props}
20
+ />
40
21
  </>
41
22
  )
42
23
  }