@tradeshift/elements.spinner
Advanced tools
Comparing version 0.31.1 to 0.32.0
@@ -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 @@ |
{ | ||
"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; | ||
} |
23051
59
+ Added@tradeshift/elements@0.32.0(transitive)
- Removed@tradeshift/elements@0.31.1(transitive)
Updated@tradeshift/elements@^0.32.0