@bbki.ng/ui 0.1.15 → 0.1.17

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @bbki.ng/ui
2
2
 
3
+ ## 0.1.17
4
+
5
+ ### Patch Changes
6
+
7
+ - c65909e: fix: style
8
+
9
+ ## 0.1.16
10
+
11
+ ### Patch Changes
12
+
13
+ - c11fa73: fix layout style
14
+
3
15
  ## 0.1.15
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbki.ng/ui",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "description": "Design system component library for bbki.ng",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -14,7 +14,7 @@ export const Panel = (props: PanelProps) => {
14
14
  <div
15
15
  className={twMerge(
16
16
  'transition-all ease-in-out duration-500',
17
- 'p-4 rounded-sm',
17
+ 'p-4',
18
18
  show ? 'shadow-[var(--shadow-panel)]' : 'shadow-none',
19
19
  className
20
20
  )}