@khanacademy/wonder-blocks-typography
Advanced tools
Comparing version 1.0.16 to 1.1.0
{ | ||
"name": "@khanacademy/wonder-blocks-typography", | ||
"version": "1.0.16", | ||
"version": "1.1.0", | ||
"design": "v2", | ||
@@ -18,3 +18,3 @@ "publishConfig": { | ||
"dependencies": { | ||
"@khanacademy/wonder-blocks-core": "^2.0.1" | ||
"@khanacademy/wonder-blocks-core": "^2.1.0" | ||
}, | ||
@@ -26,5 +26,5 @@ "peerDependencies": { | ||
"devDependencies": { | ||
"@khanacademy/wonder-blocks-color": "^1.0.16", | ||
"@khanacademy/wonder-blocks-color": "^1.1.0", | ||
"wb-dev-build-settings": "^0.0.2" | ||
} | ||
} |
// @flow | ||
import type {Node} from "react"; | ||
import type { | ||
AriaProps, | ||
TextTag, | ||
StyleType, | ||
} from "@khanacademy/wonder-blocks-core"; | ||
import * as React from "react"; | ||
// TODO(kevinb): fix style type after upgrading flow | ||
export type Props = AriaProps & { | ||
style?: StyleType, | ||
children?: Node, | ||
id?: string, | ||
tag: TextTag, | ||
}; | ||
import {Text} from "@khanacademy/wonder-blocks-core"; | ||
export type Props = React.ElementConfig<typeof Text>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
139450
2278