Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@react-md/progress

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-md/progress - npm Package Compare versions

Comparing version 2.0.0-alpha.13 to 2.0.0-alpha.14

6

es/getProgressA11y.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc