paris 0.8.13 → 0.8.14

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,11 @@
1
1
  # paris
2
2
 
3
+ ## 0.8.14
4
+
5
+ ### Patch Changes
6
+
7
+ - effd11c: Adjust height of drawer header to design
8
+
3
9
  ## 0.8.13
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "paris",
3
3
  "author": "Sanil Chawla <sanil@slingshot.fm> (https://sanil.co)",
4
4
  "description": "Paris is Slingshot's React design system. It's a collection of reusable components, design tokens, and guidelines that help us build consistent, accessible, and performant user interfaces.",
5
- "version": "0.8.13",
5
+ "version": "0.8.14",
6
6
  "homepage": "https://paris.slingshot.fm",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -206,7 +206,6 @@ $panelAnimationDelay: var(--pte-animations-duration-fast);
206
206
  //padding: $panelPaddingY $panelPaddingX;
207
207
  background-color: var(--pte-colors-backgroundPrimary);
208
208
  overflow: auto;
209
- border: 1px solid transparent;
210
209
 
211
210
  display: flex;
212
211
  flex-direction: column;
@@ -256,7 +255,7 @@ $panelAnimationDelay: var(--pte-animations-duration-fast);
256
255
  align-items: center;
257
256
 
258
257
  border-bottom: 1px solid var(--pte-colors-borderOpaque);
259
- padding: 20px;
258
+ padding: 14px 16px;
260
259
  }
261
260
 
262
261
  .titleBarButtons {
@@ -327,7 +327,6 @@ export const Drawer = <T extends string[] | readonly string[] = string[]>({
327
327
  <Button
328
328
  kind="tertiary"
329
329
  shape="circle"
330
- size="small"
331
330
  onClick={() => onClose(false)}
332
331
  startEnhancer={(
333
332
  <Icon icon={Close} size={20} />