agroptima-design-system 1.2.24-beta.0 → 1.2.24-beta.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agroptima-design-system",
3
- "version": "1.2.24-beta.0",
3
+ "version": "1.2.24-beta.2",
4
4
  "scripts": {
5
5
  "dev": "npm run storybook",
6
6
  "storybook": "storybook dev -p 6006 --ci",
@@ -129,6 +129,7 @@
129
129
  display: flex;
130
130
  flex-direction: column;
131
131
  gap: config.$space-2x;
132
+ white-space: normal;
132
133
  cursor: default;
133
134
 
134
135
  &[open] summary::after {
@@ -148,10 +149,6 @@
148
149
  > summary::-webkit-details-marker {
149
150
  display: none;
150
151
  }
151
-
152
- > .notification-line-content {
153
- white-space: normal;
154
- }
155
152
  }
156
153
  }
157
154
  }
@@ -55,7 +55,7 @@ function NotificationLine({
55
55
  </div>
56
56
  <details className="notification-line-description">
57
57
  <summary data-open={collapseLabel} data-close={expandLabel}></summary>
58
- <div className="notification-line-content">{children}</div>
58
+ {children}
59
59
  </details>
60
60
  </div>
61
61
  )