-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'individual-state' into storybook
- Loading branch information
Showing
127 changed files
with
36,330 additions
and
1,409 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@hydrofoil/shaperone-wc": minor | ||
--- | ||
|
||
Removed the `window.Shaperone.DEBUG` flag in favor of component `debug` property |
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,6 @@ | ||
--- | ||
"@hydrofoil/shaperone-core": patch | ||
"@hydrofoil/shaperone-wc": patch | ||
--- | ||
|
||
Improved state management by separating the state of each element instance |
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,29 @@ | ||
--- | ||
"@hydrofoil/shaperone-wc": minor | ||
--- | ||
|
||
Big change how elements are configured. Global config can be set using the `configure.js` module. | ||
|
||
```js | ||
import { configure } from '@hydrofoil/shaperone-wc' | ||
|
||
await configure(({ components, editors, renderer, validation }) => { | ||
|
||
}) | ||
``` | ||
|
||
Additionally, each component can be customised further by providing calling `configure` method of the component. | ||
|
||
```html | ||
<shaperone-form></shaperone-form> | ||
|
||
<script type="module"> | ||
import { configure } from '@hydrofoil/shaperone-wc' | ||
// global configuration must always be invoked | ||
configure() | ||
document.querySelector('shaperone-form').configure(({ components, editors, renderer, validation }) => { | ||
}) | ||
</script> | ||
``` |
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 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,72 @@ | ||
# Shoelace Animations | ||
|
||
Your favorite [animate.css](https://animate.style/) effects available as ES modules for use with the [Web Animations API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API). | ||
|
||
- 🏆 ~100 quality animations | ||
- 🎾 ~30 popular easings | ||
- 🚚 Works with CDNs | ||
- 🌲 Fully tree-shakeable | ||
|
||
[Try it on JSFiddle](https://jsfiddle.net/claviska/ohjmkgb1) | ||
|
||
This module was built for [Shoelace](https://shoelace.style/), but it works well as a stand-alone library too! | ||
|
||
## Installation | ||
|
||
```bash | ||
npm install @shoelace-style/animations | ||
``` | ||
|
||
## Usage | ||
|
||
Importing all animations: | ||
|
||
```js | ||
import * as animations from '@shoelace-style/animations'; | ||
``` | ||
|
||
Importing individual animations: | ||
|
||
```js | ||
import { bounce } from '@shoelace-style/animations'; | ||
``` | ||
|
||
Importing easings: | ||
|
||
```js | ||
import { easings } from '@shoelace-style/animations'; | ||
``` | ||
|
||
Animating an element: | ||
|
||
```html | ||
<div style="display: block; width: 100px; height: 100px; background: tomato; margin: 2rem;"></div> | ||
|
||
<script type="module"> | ||
import { easings, flip } from 'https://cdn.jsdelivr.net/npm/@shoelace-style/animations@1/dist/index.js'; | ||
const box = document.querySelector('div'); | ||
box.animate(flip, { | ||
duration: 1500, | ||
iterations: Infinity, | ||
easing: easings.easeInSine | ||
}); | ||
</script> | ||
``` | ||
|
||
This example uses the [jsDelivr CDN](https://www.jsdelivr.com/). To import the library locally, install it and make `node_modules/@shoelace-style/animations/dist` available to your app or bundler. | ||
|
||
## Developers | ||
|
||
This script parses all animation stylesheets found in `node_modules/animate.css` and generates [keyframe objects](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API/Keyframe_Formats) that you can use with the [Web Animations API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API). As animations are tweaked and added to animate.css, the keyframes herein will be kept in sync when rerunning the script. | ||
|
||
To build the project, run: | ||
|
||
```bash | ||
npm run build | ||
``` | ||
|
||
This will purge and rebuild the `dist` directory. | ||
|
||
Please report all bugs and suggestions to [the issue tracker](https://github.com/shoelace-style/animations/issues). |
Oops, something went wrong.