@khanacademy/wonder-blocks-pill 3.1.17 → 3.1.19
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 +17 -0
- package/dist/components/pill.d.ts +6 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-pill
|
|
2
2
|
|
|
3
|
+
## 3.1.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8468d8d]
|
|
8
|
+
- @khanacademy/wonder-blocks-tokens@10.5.0
|
|
9
|
+
- @khanacademy/wonder-blocks-clickable@7.1.6
|
|
10
|
+
- @khanacademy/wonder-blocks-link@9.1.6
|
|
11
|
+
- @khanacademy/wonder-blocks-typography@4.2.1
|
|
12
|
+
|
|
13
|
+
## 3.1.18
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [6998d03]
|
|
18
|
+
- @khanacademy/wonder-blocks-typography@4.2.0
|
|
19
|
+
|
|
3
20
|
## 3.1.17
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -6,7 +6,12 @@ export type PillKind = "neutral" | "accent" | "info" | "success" | "warning" | "
|
|
|
6
6
|
export type PillSize = "small" | "medium" | "large";
|
|
7
7
|
/**
|
|
8
8
|
* A `Pill` component displays text in a rounded, colored container. This is
|
|
9
|
-
* usually used to add label tags
|
|
9
|
+
* usually used to add label tags.
|
|
10
|
+
*
|
|
11
|
+
* **Note:** Before using the `Pill` component, please see if a component from the
|
|
12
|
+
* [Badge Package](/?path=/docs/packages-badge-overview--docs&globals=theme:default)
|
|
13
|
+
* can be used instead. For example, prefer using the `StatusBadge` component
|
|
14
|
+
* instead of a `Pill` to indicate a status.
|
|
10
15
|
*
|
|
11
16
|
* ### Usage
|
|
12
17
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-pill",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.19",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"description": "Pill components for Wonder Blocks.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@khanacademy/wonder-blocks-clickable": "7.1.
|
|
16
|
+
"@khanacademy/wonder-blocks-clickable": "7.1.6",
|
|
17
17
|
"@khanacademy/wonder-blocks-core": "12.3.0",
|
|
18
|
-
"@khanacademy/wonder-blocks-link": "9.1.
|
|
19
|
-
"@khanacademy/wonder-blocks-tokens": "10.
|
|
20
|
-
"@khanacademy/wonder-blocks-typography": "4.1
|
|
18
|
+
"@khanacademy/wonder-blocks-link": "9.1.6",
|
|
19
|
+
"@khanacademy/wonder-blocks-tokens": "10.5.0",
|
|
20
|
+
"@khanacademy/wonder-blocks-typography": "4.2.1"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"aphrodite": "^1.2.5",
|