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

react-spinners

Package Overview
Dependencies
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-spinners - npm Package Compare versions

Comparing version

to
0.8.0

ClockLoader.d.ts

116

CHANGELOG.md

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

## 0.8.0
- Added a new loader: `ClockLoader`
- No other functionality changes
- Fix default value table in README to alphabetize correctly
## 0.7.2

@@ -13,7 +19,7 @@

- run `npm audit fix` to fix vulnerability in `serialslize-javascript` package
- update README to showcase number and string input for size prop.
- update README to showcase number and string input for size prop
## 0.7.0
- **BREAKING CHANGE**: all unit props have been removed to simplify the component API. See change log for `0.7.0-alpha.1` for more details.
- **BREAKING CHANGE**: all unit props have been removed to simplify the component API. See change log for `0.7.0-alpha.1` for more details

@@ -31,3 +37,3 @@ ## 0.7.0-beta.1

- update default value for `css` prop on README to be `""` instead of `{}`
- add list of available color words that the `color` prop accepts.
- add list of available color words that the `color` prop accepts
- run prettier to format readme

@@ -37,12 +43,12 @@

- **bugfix**: Fix [issue #140](https://github.com/davidhu2000/react-spinners/issues/140). The margin prop on `FadeLoader` does what we expect it to do, expand the spacing between the lines.
- **bugfix**: Fix [issue #140](https://github.com/davidhu2000/react-spinners/issues/140). The margin prop on `FadeLoader` does what we expect it to do, expand the spacing between the lines
## 0.7.0-alpha.2
- **bugfix**: Fix [issue #139](https://github.com/davidhu2000/react-spinners/issues/139). The margin prop on `RotateLoader` does what we expect it to do, expand the spacing between the dots.
- updated webpack config to split up npm files to avoid brower having to reload them on each change.
- **bugfix**: Fix [issue #139](https://github.com/davidhu2000/react-spinners/issues/139). The margin prop on `RotateLoader` does what we expect it to do, expand the spacing between the dots
- updated webpack config to split up npm files to avoid brower having to reload them on each change
## 0.7.0-alpha.1
- **BREAKING CHANGE**: all unit props are deprecated, including `sizeUnit`, `heightUnit`, `widthUnit`, and `radiusUnit`. The `size`, `height`, `width`, and `radius` props now accepts `number` and `string`.
- **BREAKING CHANGE**: all unit props are deprecated, including `sizeUnit`, `heightUnit`, `widthUnit`, and `radiusUnit`. The `size`, `height`, `width`, and `radius` props now accepts `number` and `string`
- If value is number, default to `px`

@@ -56,3 +62,3 @@ - If value is string with valid css unit, return the input value

- **bugfix**: Fix [issue 109](https://github.com/davidhu2000/react-spinners/issues/109) where `Math.random` is stubbed out in the `GridLoader` component instead in the tests, causing `Math.random` to not work properly if `GridLoader` is used.
- **bugfix**: Fix [issue 109](https://github.com/davidhu2000/react-spinners/issues/109) where `Math.random` is stubbed out in the `GridLoader` component instead in the tests, causing `Math.random` to not work properly if `GridLoader` is used

@@ -72,12 +78,12 @@ ## 0.6.0

- updated `devDependencies` to latest versions.
- updated `devDependencies` to latest versions
## 0.6.0-alpha.10
- Removed `recompose` from the list of dependencies. We currently wants the component to update for all prop changes, so the `onlyUpdateForKeys` was passed in all the props anyways, so it wasn't doing much.
- Removed `recompose` from the list of dependencies. We currently wants the component to update for all prop changes, so the `onlyUpdateForKeys` was passed in all the props anyways, so it wasn't doing much
## 0.6.0-alpha.9
- **bugfix**: Fix issue where `PacmanLoader` `top` css property does not respect the `sizeUnit` prop. It was hardcoded to be `px` instead of using `sizeUnit` prop.
- update javascript bundle files for demo site.
- **bugfix**: Fix issue where `PacmanLoader` `top` css property does not respect the `sizeUnit` prop. It was hardcoded to be `px` instead of using `sizeUnit` prop
- update javascript bundle files for demo site

@@ -91,5 +97,5 @@ ## 0.6.0-alpha.8

- update readme to include `radius` and `radiusUnit` prop description.
- update all the tests to use default variables.
- add the following to `.npmignore` to further reduce package size.
- update readme to include `radius` and `radiusUnit` prop description
- update all the tests to use default variables
- add the following to `.npmignore` to further reduce package size

@@ -123,3 +129,3 @@ ```

- add `src` folder to `npmignore`. Previous version wasn't ruthless enough in saving data.
- add `src` folder to `npmignore`. Previous version wasn't ruthless enough in saving data

@@ -144,3 +150,3 @@ Old:

- update `npmignore` to include `__tests__`, `.github`, `.circleci`, `coverage`. This helped to reduce package size. Help to save some data.
- update `npmignore` to include `__tests__`, `.github`, `.circleci`, `coverage`. This helped to reduce package size. Help to save some data

@@ -165,5 +171,5 @@ Old:

- **bugfix**: update `package.json` `main` value from `dist/index.js` to `index.js` to fix codeSandbox import issue.
- **bugfix**: add missing `transform` key to the `25%` keyframe in RiseLoader. It was just `25% {translateY(-${riseAmount}px)}` before. Now it is corrected.
- add tests for all the loaders. Fixed up a few tests using default variables, namely the first 3 letters in the alphabet.
- **bugfix**: update `package.json` `main` value from `dist/index.js` to `index.js` to fix codeSandbox import issue
- **bugfix**: add missing `transform` key to the `25%` keyframe in RiseLoader. It was just `25% {translateY(-${riseAmount}px)}` before. Now it is corrected
- add tests for all the loaders. Fixed up a few tests using default variables, namely the first 3 letters in the alphabet

@@ -182,5 +188,5 @@ ## 0.6.0-alpha.3

- This is a complete rewrite of the package. 100% of the code is now in TypeScript. This will show inidividual type definitions for each loader.
- `prop-types` has been removed as a dependency. This is now handled by typings.
- set up `ts-lint` and `prettier` to help ensure code consistency.
- This is a complete rewrite of the package. 100% of the code is now in TypeScript. This will show inidividual type definitions for each loader
- `prop-types` has been removed as a dependency. This is now handled by typings
- set up `ts-lint` and `prettier` to help ensure code consistency

@@ -191,11 +197,11 @@ ## 0.5.13

- fix readme props table formatting. It got a little messy for some reason.
- fix readme props table formatting. It got a little messy for some reason
## 0.5.12
- fix version glitch. No code changes here.
- fix version glitch. No code changes here
## 0.5.11
- this version should be 0.5.10, but internet issues causesa weird version glitch. Update to 0.5.12 so everything matches.
- this version should be 0.5.10, but internet issues causesa weird version glitch. Update to 0.5.12 so everything matches

@@ -230,3 +236,3 @@ ## 0.5.10

- **bugfix**: update `CommonProps` interface `css` prop to used `PrecompiledCss` and `string`. Update PropTypes helper to be able to accept both `PrecompiledCss` and `string`. This is to fix the validation error for the `css` prop.
- **bugfix**: update `CommonProps` interface `css` prop to used `PrecompiledCss` and `string`. Update PropTypes helper to be able to accept both `PrecompiledCss` and `string`. This is to fix the validation error for the `css` prop

@@ -239,3 +245,3 @@ ## 0.5.4

- **bugfix**: update default value for `css` prop to `{}` instead of `""` to fix console error.
- **bugfix**: update default value for `css` prop to `{}` instead of `""` to fix console error

@@ -245,3 +251,3 @@ ## 0.5.2

- **bugfix**: change `css` proptype to `PropTypes.shape({ ... })` instead of `PropTypes.string` to fix console error.
- Fix a few console warnings on the demo site.
- Fix a few console warnings on the demo site

@@ -255,3 +261,3 @@ ## 0.5.1

- Update emotion package to emotion 10
- **Breaking change**: replaced `className` prop with `css` prop to match Emotion 10.
- **Breaking change**: replaced `className` prop with `css` prop to match Emotion 10

@@ -268,3 +274,3 @@ ## 0.4.8

- update how `onlyUpdateForKeys` is imported from `recompose`. Reduced import cost from `26kb` to `19kb`.
- update how `onlyUpdateForKeys` is imported from `recompose`. Reduced import cost from `26kb` to `19kb`

@@ -286,3 +292,3 @@ ## 0.4.5

- fix single loader import.
- fix single loader import
- add `className` to `index.d.ts`

@@ -306,3 +312,3 @@ - update readme to include single loader import

- Add `loaderStyle` prop to loaders to allow more customized loader.
- Add `loaderStyle` prop to loaders to allow more customized loader

@@ -315,3 +321,3 @@ ## 0.3.2

- Moved `babel-plugin-emotion` to devDependencies and updates to 9.1.0.
- Moved `babel-plugin-emotion` to devDependencies and updates to 9.1.0

@@ -321,7 +327,7 @@ ## 0.3.0

- Added `unit` props to each loader to allow `%` units on css
- **bugfix**: fixed string concatenation on some loaders that prevented the correct rendering.
- **bugfix**: fixed string concatenation on some loaders that prevented the correct rendering
## 0.2.6
- **bugfix**: add missing `px` for `border-radius` in `ScaleLoader` styling.
- **bugfix**: add missing `px` for `border-radius` in `ScaleLoader` styling
- add `minor` and `major` versioning scripts to `package.json`

@@ -335,3 +341,3 @@

- removed codesponsers from readme.
- removed codesponsers from readme

@@ -342,12 +348,12 @@ ## 0.2.3

- removed unused npm scripts from `package.json`
- minor linting fixes after update.
- add `^16.0.0` to `react` and `react-dom` peerDependencies.
- minor linting fixes after update
- add `^16.0.0` to `react` and `react-dom` peerDependencies
## 0.2.2
- **bugfix**: change `borderRadius` to `border-radius` in `RingLoader` so the browser will recognize the css.
- **bugfix**: change `borderRadius` to `border-radius` in `RingLoader` so the browser will recognize the css
## 0.2.1
- **bugfix**: moved `prop-types` to from devDependencies to dependencies. This fixes the `Package not found` error for projects that do not include `prop-types` as a dependency.
- **bugfix**: moved `prop-types` to from devDependencies to dependencies. This fixes the `Package not found` error for projects that do not include `prop-types` as a dependency

@@ -364,3 +370,3 @@ ## 0.2.0

- **bugfix**: moved `emotion` from devDependency to dependency. This fixed the `Package not found` error.
- **bugfix**: moved `emotion` from devDependency to dependency. This fixed the `Package not found` error

@@ -371,3 +377,3 @@ ## 0.1.8

- update `emotion` package version from `7.2.0` to `8.0.6`.
- update `emotion` package version from `7.2.0` to `8.0.6`

@@ -378,3 +384,3 @@ ## 0.1.7

- update dependencies versions.
- update dependencies versions

@@ -385,3 +391,3 @@ ## 0.1.6

- fixed some typo in readme.
- fixed some typo in readme

@@ -392,3 +398,3 @@ ## 0.1.5

- updated readme.
- updated readme

@@ -399,3 +405,3 @@ ## 0.1.4

- **bugfix**: fixed `PulseLoader` size default prop to be the correct type.
- **bugfix**: fixed `PulseLoader` size default prop to be the correct type

@@ -406,4 +412,4 @@ ## 0.1.3

- **bugfix**: moved `recompose` from devDependency to dependency.
- update author field in `package.json`.
- **bugfix**: moved `recompose` from devDependency to dependency
- update author field in `package.json`

@@ -414,4 +420,4 @@ ## 0.1.2

- update margin column in readme proptype table.
- update contributors list in `package.json`.
- update margin column in readme proptype table
- update contributors list in `package.json`

@@ -422,5 +428,5 @@ ## 0.1.1

- update readme to include note about `react-emotion` plugin for babel.
- fixed circleci badge to go to circle ci instead of npm.
- removed flow from test script.
- update readme to include note about `react-emotion` plugin for babel
- fixed circleci badge to go to circle ci instead of npm
- removed flow from test script

@@ -431,2 +437,2 @@ ## 0.1.0

- removed `domkit` as a dependency and replaced it with `emotion`. This package now officially supports `Server Side Rendering.
- removed `domkit` as a dependency and replaced it with `emotion`. This package now officially supports `Server Side Rendering

@@ -9,2 +9,3 @@ /// <reference types="react" />

export declare const ClipLoader: React.ComponentClass<LoaderSizeProps>;
export declare const ClockLoader: React.ComponentClass<LoaderSizeProps>;
export declare const DotLoader: React.ComponentClass<LoaderSizeProps>;

@@ -11,0 +12,0 @@ export declare const FadeLoader: React.ComponentClass<LoaderHeightWidthRadiusProps>;

@@ -12,2 +12,3 @@ "use strict";

var ClipLoader_1 = __importDefault(require("./ClipLoader"));
var ClockLoader_1 = __importDefault(require("./ClockLoader"));
var DotLoader_1 = __importDefault(require("./DotLoader"));

@@ -34,2 +35,3 @@ var FadeLoader_1 = __importDefault(require("./FadeLoader"));

exports.ClipLoader = ClipLoader_1.default;
exports.ClockLoader = ClockLoader_1.default;
exports.DotLoader = DotLoader_1.default;

@@ -36,0 +38,0 @@ exports.FadeLoader = FadeLoader_1.default;

{
"name": "react-spinners",
"version": "0.7.2",
"version": "0.8.0",
"description": "A collection of react loading spinners",

@@ -5,0 +5,0 @@ "repository": {

@@ -135,4 +135,5 @@ # React Spinners

| CircleLoader | `50` | | | |
| ClimbingBoxLoader | `15` | | | |
| ClipLoader | `35` | | | |
| ClimbingBoxLoader | `15` | | | |
| ClockLoader | `50` | | | |
| DotLoader | `60` | | | | `2` |

@@ -139,0 +140,0 @@ | FadeLoader | | `15` | `5` | `2` | `2` |