-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix error with reading cssRules property from 'CSSStyleSheet' * add a separate style block to set a frame when spinner was initialized * change some more spinners to a new keyframe binding * chore: remove minified files from repo * chore: add `dist` folder to gitignore * refactor: spinners with dynamic keyframes * Useless code cuts and some commenting * chore: add inputs to demo * chore: add TypeScript declarations close #8 * minor * docs: tree shaking info see #25 * chore: add index.html to .gitignore * build: tweak config according to #16 close #16 * chore: bump version
- Loading branch information
1 parent
b39f465
commit 811758e
Showing
16 changed files
with
221 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
declare module 'epic-spinners' { | ||
import { Component } from 'vue' | ||
|
||
const HollowDotsSpinner: Component | ||
const PixelSpinner: Component | ||
const FlowerSpinner: Component | ||
const IntersectingCirclesSpinner: Component | ||
const OrbitSpinner: Component | ||
const FingerprintSpinner: Component | ||
const TrinityRingsSpinner: Component | ||
const FulfillingSquareSpinner: Component | ||
const CirclesToRhombusesSpinner: Component | ||
const SemipolarSpinner: Component | ||
const BreedingRhombusSpinner: Component | ||
const SwappingSquaresSpinner: Component | ||
const ScalingSquaresSpinner: Component | ||
const FulfillingBouncingCircleSpinner: Component | ||
const RadarSpinner: Component | ||
const SelfBuildingSquareSpinner: Component | ||
const SpringSpinner: Component | ||
const LoopingRhombusesSpinner: Component | ||
const HalfCircleSpinner: Component | ||
const AtomSpinner: Component | ||
|
||
export { | ||
HollowDotsSpinner, | ||
PixelSpinner, | ||
FlowerSpinner, | ||
IntersectingCirclesSpinner, | ||
OrbitSpinner, | ||
FingerprintSpinner, | ||
TrinityRingsSpinner, | ||
FulfillingSquareSpinner, | ||
CirclesToRhombusesSpinner, | ||
SemipolarSpinner, | ||
BreedingRhombusSpinner, | ||
SwappingSquaresSpinner, | ||
ScalingSquaresSpinner, | ||
FulfillingBouncingCircleSpinner, | ||
RadarSpinner, | ||
SelfBuildingSquareSpinner, | ||
SpringSpinner, | ||
LoopingRhombusesSpinner, | ||
HalfCircleSpinner, | ||
AtomSpinner, | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"name": "epic-spinners", | ||
"version": "1.0.4", | ||
"version": "1.1.0", | ||
"description": "Easy to use css spinners collection with vue.js integration", | ||
"author": "epicmax <[email protected]>", | ||
"main": "src/lib.js", | ||
"types": "src/lib.d.ts", | ||
"private": false, | ||
"license": "MIT", | ||
"url": "https://github.com/epicmaxco/epic-spinners", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.