@khanacademy/wonder-blocks-breadcrumbs 3.0.5 → 3.0.6
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
|
@@ -4,7 +4,7 @@ import Link from "@khanacademy/wonder-blocks-link";
|
|
|
4
4
|
* The BreadcrumbsItem represents an individual item in the breadcrumbs list.
|
|
5
5
|
*/
|
|
6
6
|
declare const BreadcrumbsItem: React.ForwardRefExoticComponent<Readonly<import("@khanacademy/wonder-blocks-core").AriaAttributes> & Readonly<{
|
|
7
|
-
role?: import("@khanacademy/wonder-blocks-core").AriaRole
|
|
7
|
+
role?: import("@khanacademy/wonder-blocks-core").AriaRole;
|
|
8
8
|
}> & {
|
|
9
9
|
/**
|
|
10
10
|
* This is the content for the collection of Breadcrumbs
|
|
@@ -15,10 +15,10 @@ declare const BreadcrumbsItem: React.ForwardRefExoticComponent<Readonly<import("
|
|
|
15
15
|
* Note: This is only for use by the Breadcrumbs component!!
|
|
16
16
|
* @ignore
|
|
17
17
|
*/
|
|
18
|
-
showSeparator?: boolean
|
|
18
|
+
showSeparator?: boolean;
|
|
19
19
|
/**
|
|
20
20
|
* Test ID used for e2e testing.
|
|
21
21
|
*/
|
|
22
|
-
testId?: string
|
|
22
|
+
testId?: string;
|
|
23
23
|
} & React.RefAttributes<HTMLLIElement>>;
|
|
24
24
|
export default BreadcrumbsItem;
|
|
@@ -38,7 +38,7 @@ import BreadcrumbsItem from "./breadcrumbs-item";
|
|
|
38
38
|
* ```
|
|
39
39
|
*/
|
|
40
40
|
declare const Breadcrumbs: React.ForwardRefExoticComponent<Readonly<import("@khanacademy/wonder-blocks-core").AriaAttributes> & Readonly<{
|
|
41
|
-
role?: import("@khanacademy/wonder-blocks-core").AriaRole
|
|
41
|
+
role?: import("@khanacademy/wonder-blocks-core").AriaRole;
|
|
42
42
|
}> & {
|
|
43
43
|
/**
|
|
44
44
|
* This is the content for the collection of Breadcrumbs
|
|
@@ -47,10 +47,10 @@ declare const Breadcrumbs: React.ForwardRefExoticComponent<Readonly<import("@kha
|
|
|
47
47
|
/**
|
|
48
48
|
* Accessible label for the breadcrumbs.
|
|
49
49
|
*/
|
|
50
|
-
"aria-label"?: string
|
|
50
|
+
"aria-label"?: string;
|
|
51
51
|
/**
|
|
52
52
|
* Test ID used for e2e testing.
|
|
53
53
|
*/
|
|
54
|
-
testId?: string
|
|
54
|
+
testId?: string;
|
|
55
55
|
} & React.RefAttributes<HTMLElement>>;
|
|
56
56
|
export default Breadcrumbs;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-breadcrumbs",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@babel/runtime": "^7.18.6",
|
|
20
20
|
"@khanacademy/wonder-blocks-core": "^11.1.0",
|
|
21
|
-
"@khanacademy/wonder-blocks-tokens": "^
|
|
21
|
+
"@khanacademy/wonder-blocks-tokens": "^4.0.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"aphrodite": "^1.2.5",
|