@react-md/progress
Advanced tools
Comparing version 2.0.0-alpha.13 to 2.0.0-alpha.14
@@ -5,6 +5,6 @@ /** | ||
* | ||
* @param id The id for the progress bar | ||
* @param progressId The id for the progress bar | ||
* @param progressing Boolean if the progress bar is visible and progressing | ||
*/ | ||
export default function getProgressA11y(id, progressing) { | ||
export default function getProgressA11y(progressId, progressing) { | ||
if (!progressing) { | ||
@@ -15,5 +15,5 @@ return undefined; | ||
"aria-busy": true, | ||
"aria-describedby": id, | ||
"aria-describedby": progressId, | ||
}; | ||
} | ||
//# sourceMappingURL=getProgressA11y.js.map |
@@ -7,6 +7,6 @@ "use strict"; | ||
* | ||
* @param id The id for the progress bar | ||
* @param progressId The id for the progress bar | ||
* @param progressing Boolean if the progress bar is visible and progressing | ||
*/ | ||
function getProgressA11y(id, progressing) { | ||
function getProgressA11y(progressId, progressing) { | ||
if (!progressing) { | ||
@@ -17,3 +17,3 @@ return undefined; | ||
"aria-busy": true, | ||
"aria-describedby": id, | ||
"aria-describedby": progressId, | ||
}; | ||
@@ -20,0 +20,0 @@ } |
{ | ||
"name": "@react-md/progress", | ||
"version": "2.0.0-alpha.13", | ||
"version": "2.0.0-alpha.14", | ||
"description": "Create horizontal, vertical, and circular progress indicators", | ||
@@ -38,5 +38,5 @@ "scripts": { | ||
"dependencies": { | ||
"@react-md/theme": "^2.0.0-alpha.13", | ||
"@react-md/transition": "^2.0.0-alpha.13", | ||
"@react-md/utils": "^2.0.0-alpha.13", | ||
"@react-md/theme": "^2.0.0-alpha.14", | ||
"@react-md/transition": "^2.0.0-alpha.14", | ||
"@react-md/utils": "^2.0.0-alpha.14", | ||
"classnames": "^2.2.6" | ||
@@ -53,3 +53,3 @@ }, | ||
}, | ||
"gitHead": "47959dd8c691deae0310c7cd01b3c275699e6f8c" | ||
"gitHead": "2c22440705bce3fb3cfc5876011e7b3df8be1c03" | ||
} |
@@ -10,7 +10,7 @@ interface ProgressA11y { | ||
* | ||
* @param id The id for the progress bar | ||
* @param progressId The id for the progress bar | ||
* @param progressing Boolean if the progress bar is visible and progressing | ||
*/ | ||
export default function getProgressA11y( | ||
id: string, | ||
progressId: string, | ||
progressing: boolean | ||
@@ -24,4 +24,4 @@ ): ProgressA11y | undefined { | ||
"aria-busy": true, | ||
"aria-describedby": id, | ||
"aria-describedby": progressId, | ||
}; | ||
} |
@@ -9,6 +9,6 @@ interface ProgressA11y { | ||
* | ||
* @param id The id for the progress bar | ||
* @param progressId The id for the progress bar | ||
* @param progressing Boolean if the progress bar is visible and progressing | ||
*/ | ||
export default function getProgressA11y(id: string, progressing: boolean): ProgressA11y | undefined; | ||
export default function getProgressA11y(progressId: string, progressing: boolean): ProgressA11y | undefined; | ||
export {}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
462712