5 Commits
v1.0.0 ... main

6 changed files with 8515 additions and 7414 deletions

3
.gitignore vendored
View File

@@ -2,5 +2,6 @@
/public/build/ /public/build/
# dist # dist
/storybook-static /storybook-static
*.tgz
.DS_Store .DS_Store

View File

@@ -187,6 +187,7 @@
identification within third-party archives. identification within third-party archives.
Copyright 2021 vadimkorr Copyright 2021 vadimkorr
Copyright 2024 Resultium LLC
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.

View File

@@ -1,20 +1,8 @@
# @xxfogs/svelte-carousel # @resultium/svelte-carousel
This is a fork of [svelte-carousel](https://github.com/vadimkorr/svelte-carousel) project made due to it's lack of maintainment. This is a fork of [svelte-carousel](https://github.com/vadimkorr/svelte-carousel) project originally made bt [vadimkorr](https://github.com/vadimkorr) made due to lack of maintainment of the original package
## Installation This package is not published to any public registries due to being intended to be used exclusively in Resultium projects, however you are free to fork or use this codebase as per Apache-2.0 license
```bash
yarn add -D @xxfogs/svelte-carousel
```
```bash
pnpm i -D @xxfogs/svelte-carousel
```
```bash
yarn i -D @xxfogs/svelte-carousel
```
## Usage ## Usage
@@ -23,7 +11,7 @@ yarn i -D @xxfogs/svelte-carousel
```svelte ```svelte
<script> <script>
import Carousel from '@xxfogs/svelte-carousel'; import Carousel from '@resultium/svelte-carousel';
import { browser } from '$app/environment'; import { browser } from '$app/environment';
let carousel; // for calling methods of the carousel instance let carousel; // for calling methods of the carousel instance

View File

@@ -1,20 +1,25 @@
{ {
"name": "@xxfogs/svelte-carousel", "name": "@resultium/svelte-carousel",
"version": "1.0.0", "version": "1.0.1",
"description": "Svelte carousel", "description": "Svelte carousel component",
"main": "src/main.js", "main": "src/main.js",
"module": "src/main.js", "module": "src/main.js",
"svelte": "src/main.js", "svelte": "src/main.js",
"author": "xxfogs", "exports": {
".": {
"svelte": "./src/main.js"
}
},
"author": "Resultium LLC",
"type": "module", "type": "module",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/xxfogs/svelte-carousel.git" "url": "git+https://git.resultium.net/public/svelte-carousel.git"
}, },
"bugs": { "bugs": {
"url": "https://github.com/xxfogs/svelte-carousel/issues" "email": "technology@resultium.io"
}, },
"homepage": "https://github.com/xxfogs/svelte-carousel#readme", "homepage": "https://git.resultium.net/public/svelte-carousel",
"keywords": [ "keywords": [
"svelte", "svelte",
"carousel", "carousel",
@@ -31,29 +36,29 @@
"test": "jest" "test": "jest"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.12.10", "@babel/core": "^7.23.9",
"@babel/plugin-transform-runtime": "^7.14.5", "@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.12.11", "@babel/preset-env": "^7.23.9",
"@rollup/plugin-commonjs": "^17.0.0", "@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-image": "^2.1.0", "@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0", "@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0", "@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.1.14", "@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^7.6.16", "@storybook/addon-essentials": "^7.6.16",
"@storybook/addon-links": "^6.1.14", "@storybook/addon-links": "^6.5.16",
"@storybook/svelte": "^7.6.16", "@storybook/svelte": "^7.6.16",
"babel-loader": "^8.2.2", "babel-loader": "^8.3.0",
"jest": "^26.6.3", "jest": "^26.6.3",
"lodash": "^4.17.20", "lodash": "^4.17.21",
"mdsvex": "^0.8.9", "mdsvex": "^0.8.9",
"rollup": "^2.3.4", "rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-import-css": "^2.0.1", "rollup-plugin-import-css": "^2.0.1",
"rollup-plugin-livereload": "^2.0.0", "rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.0.0", "rollup-plugin-svelte": "^7.1.6",
"rollup-plugin-terser": "^7.0.0", "sirv-cli": "^1.0.14",
"sirv-cli": "^1.0.11", "svelte": "^3.59.2",
"svelte": "^3.31.2",
"svelte-loader": "^2.13.6" "svelte-loader": "^2.13.6"
}, },
"dependencies": { "dependencies": {

8479
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

7373
yarn.lock

File diff suppressed because it is too large Load Diff