playbook_ui 14.0.0.pre.alpha.PLAY14113475 → 14.0.0.pre.alpha.PLAY14733479

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: 256935cc0094e0047461f73eb8aa9a359414951eade45a2a3c82507ba9430d19
4
- data.tar.gz: 7d173634a0c2134da2756f3c16435c48662570980fa226a0bbe8bb256950620e
3
+ metadata.gz: 0f1032bd8dc627bac427d2d177e18570a070b7de63f26357f5742cf5a159b499
4
+ data.tar.gz: dc85f6f9604c30a0d256fef9a849911b4c286642082d09ca976b39a2ae8c3019
5
5
  SHA512:
6
- metadata.gz: 6861772c1549b55563f7d3c79026f56cb930297ef756e02a5b9adc7df3300b31dc8286df6188b800023c23870eb90a62e4b7fc14f0fcfecdc1aa3769deb77a2f
7
- data.tar.gz: 5b80990b1a26b4aa82392837d1c1a8c54304f3371e527beb8e7786ce54bb1620dab12804798855b9d43e4958f7586c10fd5e338d8f2b2adbccb26fe1d691c376
6
+ metadata.gz: 60531d9ddbc954b2d8d32171aa706f7728a28ce40ddda950bbb786a33eeafb1b6e5ce5f5adb96e81c78b76a0478184cb3fc1f09a6c68450355b6b4f3c5330de0
7
+ data.tar.gz: 14295b3f6b91c5db621da347a6d0178f6fe451634ffab76982d9d6a137e6a4990123ebe3574a4278694c3c5c3efe0d837b2ad5bb0515721a3b15e0394cf791c7
@@ -42,12 +42,6 @@
42
42
  color: $white;
43
43
  }
44
44
 
45
-
46
- &[class*=_notification_error] {
47
- background: $error;
48
- color: $white;
49
- }
50
-
51
45
  &.dark {
52
46
  border-width: 0;
53
47
 
@@ -25,7 +25,7 @@ type BadgeProps = {
25
25
  removeOnClick?: React.MouseEventHandler<HTMLSpanElement>,
26
26
  rounded?: boolean,
27
27
  text?: string,
28
- variant?: "error" | "info" | "neutral" | "notification" | "notificationError" | "primary" | "success" | "warning",
28
+ variant?: "error" | "info" | "neutral" | "notification" | "primary" | "success" | "warning",
29
29
  } & GlobalProps
30
30
  const Badge = (props: BadgeProps): React.ReactElement => {
31
31
  const {
@@ -45,9 +45,7 @@ const Badge = (props: BadgeProps): React.ReactElement => {
45
45
  const dataProps = buildDataProps(data)
46
46
  const htmlProps = buildHtmlProps(htmlOptions)
47
47
  const css = classnames(
48
- buildCss('pb_badge_kit',
49
- variant === "success" ? "success_sm" : variant === "notificationError" ? "notification_error" : variant,
50
- rounded ? 'rounded' : ''),
48
+ buildCss('pb_badge_kit', variant === "success" ? "success_sm" : variant, rounded ? 'rounded' : null),
51
49
  globalProps(props),
52
50
  className
53
51
  )
@@ -6,7 +6,7 @@ module Playbook
6
6
  prop :rounded, type: Playbook::Props::Boolean, default: false
7
7
  prop :text
8
8
  prop :variant, type: Playbook::Props::Enum,
9
- values: %w[success warning error info neutral notification notification_error primary],
9
+ values: %w[success warning error info neutral notification primary],
10
10
  default: "neutral"
11
11
 
12
12
  def classname
@@ -94,21 +94,15 @@ test('displays success variant', () => {
94
94
 
95
95
  })
96
96
 
97
- test('displays notification variants', () => {
98
- [
99
- "notification",
100
- "notificationError"
101
- ].forEach((colorVariant) => {
102
- render(
103
- <Badge
104
- data={{ testid: testId }}
105
- text={colorVariant}
106
- variant={colorVariant}
107
- />
108
- )
109
- const kit = screen.getByTestId(testId)
110
- expect(kit).toHaveClass(`pb_badge_kit_${colorVariant === "notificationError" ? "notification_error" : "notification"}`)
111
-
112
- cleanup()
113
- })
97
+ test('displays notification variant', () => {
98
+ render(
99
+ <Badge
100
+ data={{ testid: testId }}
101
+ text="1"
102
+ variant="notification"
103
+ />
104
+ )
105
+ const kit = screen.getByTestId(testId)
106
+ expect(kit).toHaveClass(`pb_badge_kit_notification`)
107
+ cleanup()
114
108
  })
@@ -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
  }