paris 0.8.13 → 0.8.15
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
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.
|
|
5
|
+
"version": "0.8.15",
|
|
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:
|
|
258
|
+
padding: 14px 16px;
|
|
260
259
|
}
|
|
261
260
|
|
|
262
261
|
.titleBarButtons {
|
|
@@ -44,3 +44,9 @@
|
|
|
44
44
|
color: var(--pte-colors-contentNegative);
|
|
45
45
|
border-color: var(--pte-colors-contentNegative);
|
|
46
46
|
}
|
|
47
|
+
|
|
48
|
+
.new {
|
|
49
|
+
border: 1px solid var(--pte-colors-borderAccent);
|
|
50
|
+
background-color: var(--pte-tokens-colors-teal200);
|
|
51
|
+
box-shadow: 0px 0px 10px 0px color-mix(in srgb, var(--pte-colors-contentAccent) 30%, transparent);
|
|
52
|
+
}
|
package/src/stories/tag/Tag.tsx
CHANGED
|
@@ -7,7 +7,7 @@ export type TagProps = {
|
|
|
7
7
|
/** The size of the Tag. */
|
|
8
8
|
size?: 'normal' | 'compact';
|
|
9
9
|
/** The kind of Tag. */
|
|
10
|
-
kind?: 'default' | 'secondary' | 'positive' | 'warning' | 'negative';
|
|
10
|
+
kind?: 'default' | 'secondary' | 'positive' | 'warning' | 'negative' | 'new';
|
|
11
11
|
/** The contents of the Tag. */
|
|
12
12
|
children: ReactNode;
|
|
13
13
|
};
|