playbook_ui_docs 14.0.0.pre.alpha.PLAY14113475 → 14.0.0.pre.alpha.PLAY14733479

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: fb2500d7245e71123b5434e6869953f5c9455ced33fa05ad9193a684f9951ddd
4
+ data.tar.gz: ee04d10a4b4783649c8920542ca550935fa3816778460ff98ca6085a036712b3
5
5
  SHA512:
6
- metadata.gz: de6d3737e4bae9638c454c63050e395184b98b82a459c8ac35b525a9c78a37c874f8321f2d1e8f7278883e634ebcd6140bc5d87b27c95b059a177df3fd6032e4
7
- data.tar.gz: 63fae783ea4f9f941ebec11f557ffd233518488e2efffda2ef000a0cfd2be760baa476c894e65d17cd1eef9c7927755e0c2050d365b4372274bc139af75002a3
6
+ metadata.gz: dbc47408bb1dd52962868861b69b78998aa80e7bf65bbeb3abf33e7cf7a04de0f4feec3638de186f85c822678c58359677b781915387cba9a09f121c6c427fab
7
+ data.tar.gz: c87cc701ac346afb2aaed3e22f9d9e9bd37f44b7d3bb806170b036b2c67f4af00358488cee432c0e801241667fd973d35e26f2e8a594e7d3843dd5ad21a424c2
@@ -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
  }