Merge branch 'main' into feature/#22_Pause-autoplay-on-mouseenter
This commit is contained in:
10
.npmignore
10
.npmignore
@@ -1,2 +1,12 @@
|
|||||||
docs
|
docs
|
||||||
src/docs
|
src/docs
|
||||||
|
|
||||||
|
stories
|
||||||
|
.storybook
|
||||||
|
storybook-static
|
||||||
|
|
||||||
|
dist
|
||||||
|
scripts
|
||||||
|
|
||||||
|
.test.js
|
||||||
|
|
||||||
|
|||||||
11
package.json
11
package.json
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name": "svelte-carousel",
|
"name": "svelte-carousel",
|
||||||
"version": "1.0.3",
|
"version": "1.0.4",
|
||||||
"description": "Svelte carousel",
|
"description": "Svelte carousel",
|
||||||
"main": "dist/index.js",
|
"main": "src/main.js",
|
||||||
"author": "vadimkorr",
|
"author": "vadimkorr",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@@ -26,10 +26,9 @@
|
|||||||
"start": "sirv docs",
|
"start": "sirv docs",
|
||||||
"storybook": "start-storybook -p 6006",
|
"storybook": "start-storybook -p 6006",
|
||||||
"build-storybook": "build-storybook",
|
"build-storybook": "build-storybook",
|
||||||
"build:docs": "set DOCS=true && rollup -c",
|
"build:docs": "set DOCS=true && npm run build",
|
||||||
"dev:docs": "set DOCS=true && rollup -c -w",
|
"dev:docs": "set DOCS=true && npm run dev",
|
||||||
"test": "jest",
|
"test": "jest"
|
||||||
"prepublishOnly": "npm run build"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.12.10",
|
"@babel/core": "^7.12.10",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import Arrow from './Arrow.svelte';
|
import Arrow from '../Arrow.svelte';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: 'Default Components/Arrow',
|
title: 'Default Components/Arrow',
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import Carousel from './Carousel.svelte'
|
import Carousel from '../Carousel.svelte'
|
||||||
import { NEXT } from '../../direction'
|
import { NEXT } from '../../../direction'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSS animation timing function
|
* CSS animation timing function
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import Carousel from './Carousel.svelte'
|
import Carousel from '../Carousel.svelte'
|
||||||
import { NEXT } from '../../direction'
|
import { NEXT } from '../../../direction'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSS animation timing function
|
* CSS animation timing function
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
<script>
|
<script>
|
||||||
import Carousel from './Carousel.svelte'
|
import Carousel from '../Carousel.svelte'
|
||||||
import { NEXT } from '../../direction'
|
import { NEXT } from '../../../direction'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CSS animation timing function
|
* CSS animation timing function
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
import Dot from './Dot.svelte'
|
import Dot from '../Dot.svelte'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates if dot is active
|
* Indicates if dot is active
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<script>
|
<script>
|
||||||
import Dots from './Dots.svelte'
|
import Dots from '../Dots.svelte'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Amount of pages (amount of dots)
|
* Amount of pages (amount of dots)
|
||||||
Reference in New Issue
Block a user