@peerbots/core 0.2.4 → 0.2.5
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/.changeset/config.json +1 -1
- package/CHANGELOG.md +6 -0
- package/package.json +2 -1
- package/src/styles/theme.css +1 -0
- package/src/ui/BasePanel.stories.tsx +1 -1
- package/src/ui/BasePanel.tsx +1 -1
package/.changeset/config.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @peerbots/core
|
|
2
2
|
|
|
3
|
+
## 0.2.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6df88bf`](https://github.com/PEERbots/peerbots-core/commit/6df88bf7a04905024cb6d9cbc1b6505ce3872385) Thanks [@sbeleidy](https://github.com/sbeleidy)! - Fix basepanel border
|
|
8
|
+
|
|
3
9
|
## 0.2.4
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.2.
|
|
6
|
+
"version": "0.2.5",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"style": "./dist/index.css",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
"victory": "^37.3.6"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
+
"@changesets/changelog-github": "^0.6.0",
|
|
60
61
|
"@changesets/cli": "^2.30.0",
|
|
61
62
|
"@chromatic-com/storybook": "^5.1.1",
|
|
62
63
|
"@storybook/addon-a11y": "^10.3.3",
|
package/src/styles/theme.css
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
--color-danger: #e86e8a;
|
|
12
12
|
--color-light-bg: #d8e7eb;
|
|
13
13
|
--sidebar-bg: #f9ffff;
|
|
14
|
+
--color-sidebar-bg: #f9ffff;
|
|
14
15
|
|
|
15
16
|
--background-image-gradient-radial: radial-gradient(var(--tw-gradient-stops));
|
|
16
17
|
--background-image-gradient-conic: conic-gradient(from 180deg at 50% 50%,
|
|
@@ -10,7 +10,7 @@ const meta = {
|
|
|
10
10
|
},
|
|
11
11
|
decorators: [
|
|
12
12
|
(Story) => (
|
|
13
|
-
<div className="pb:w-[450px] pb:
|
|
13
|
+
<div className="pb:w-[450px] pb:rounded-lg pb:shadow-sm pb:bg-white pb:overflow-hidden pb:p-4">
|
|
14
14
|
<Story />
|
|
15
15
|
</div>
|
|
16
16
|
),
|
package/src/ui/BasePanel.tsx
CHANGED
|
@@ -32,7 +32,7 @@ export function BasePanel({
|
|
|
32
32
|
return (
|
|
33
33
|
<div className={`pb:space-y-1 pb:p-1 ${className}`}>
|
|
34
34
|
<div
|
|
35
|
-
className={`pb:flex pb:items-center pb:justify-between pb:px-1 pb:mb-1 pb:
|
|
35
|
+
className={`pb:flex pb:items-center pb:justify-between pb:px-1 pb:mb-1 pb:pb-1 ${headerClassName}`}
|
|
36
36
|
>
|
|
37
37
|
<Heading level={headingLevel} className="pb:text-lg">
|
|
38
38
|
{title}
|