New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@tradeshift/elements.spinner

Package Overview
Dependencies
Maintainers
8
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tradeshift/elements.spinner - npm Package Compare versions

Comparing version 0.31.1 to 0.32.0

6

CHANGELOG.md

@@ -5,2 +5,8 @@ # Change Log

# [0.32.0](https://github.com/Tradeshift/elements/compare/v0.31.1...v0.32.0) (2022-01-10)
### Features
- [PEAA-851] add an autogeneration of types for elements ([ba15ab6](https://github.com/Tradeshift/elements/commit/ba15ab68bafd40d9210886a5b527180c113c3712))
## [0.31.1](https://github.com/Tradeshift/elements/compare/v0.31.0...v0.31.1) (2021-11-03)

@@ -7,0 +13,0 @@

6

package.json
{
"name": "@tradeshift/elements.spinner",
"version": "0.31.1",
"version": "0.32.0",
"repository": {

@@ -18,6 +18,6 @@ "type": "git",

"dependencies": {
"@tradeshift/elements": "^0.31.1"
"@tradeshift/elements": "^0.32.0"
},
"src": "src/spinner.js",
"gitHead": "5e52055a8076853673363f4395088fb514f105ec"
"gitHead": "386b7f06b3413b482723ffc615fa92049fe9ed72"
}

@@ -1,6 +0,29 @@

export declare class TSSpinner {
'data-color'?: string;
'data-message'?: string;
'data-size'?: string;
'data-visible'?: boolean;
export interface TSSpinnerHTMLAttributes {
/** Spinner color, `blue`, `mono`, `white` */
"data-color"?: string;
/** Text to show below the spinner */
"data-message"?: string;
/** Size of the spinner, `large`, `medium`, `small` */
"data-size"?: string;
/** Show/hide the spinner */
"data-visible"?: boolean;
}
export interface TSSpinner {
/** Spinner color, `blue`, `mono`, `white` */
color?: string;
/** Text to show below the spinner */
message?: string;
/** Size of the spinner, `large`, `medium`, `small` */
size?: string;
/** Show/hide the spinner */
visible?: boolean;
}
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