mirror of
https://github.com/tabler/tabler.git
synced 2026-08-14 23:32:25 +04:00
Release 1.0.0-beta11
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
## The MIT License (MIT) ##
|
||||
|
||||
Copyright (c) Piotr Zdziarski
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
Vendored
+62
@@ -0,0 +1,62 @@
|
||||
# Fullscreen Lightbox Basic
|
||||
|
||||
## Description
|
||||
Modern and easy plugin for displaying images and videos in clean overlaying box.
|
||||
Display single source or create beautiful gallery with powerful lightbox.
|
||||
|
||||
Website: https://fslightbox.com
|
||||
|
||||
### No jQuery and other dependencies.
|
||||
|
||||
## Basic usage
|
||||
|
||||
### Installation
|
||||
|
||||
```
|
||||
npm install fslightbox
|
||||
```
|
||||
|
||||
### Example
|
||||
|
||||
In your application .js file:
|
||||
```javascript
|
||||
require('fslightbox');
|
||||
```
|
||||
|
||||
In HTML file
|
||||
```html
|
||||
<a data-fslightbox="gallery" href="https://i.imgur.com/fsyrScY.jpg">
|
||||
Open first slide (image)
|
||||
</a>
|
||||
<a data-fslightbox="gallery" href="https://www.youtube.com/watch?v=xshEZzpS4CQ">
|
||||
Open second slide (YouTube)
|
||||
</a>
|
||||
<a data-fslightbox="gallery" href="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4">
|
||||
Open third slide (HTML video)
|
||||
</a>
|
||||
<a data-fslightbox="gallery" href="#vimeo">
|
||||
Open fourth slide (custom source)
|
||||
</a>
|
||||
<iframe id="vimeo" src="https://player.vimeo.com/video/22439234" width="1920px" height="1080px"
|
||||
frameBorder="0" allow="autoplay; fullscreen" allowFullScreen />
|
||||
|
||||
<script src="fslightbox.js"></script>
|
||||
```
|
||||
|
||||
|
||||
## Demo
|
||||
Available at: https://fslightbox.com/javascript
|
||||
|
||||
## Documentation
|
||||
Available at: https://fslightbox.com/javascript/documentation
|
||||
|
||||
## Browser Compatibility
|
||||
|
||||
| Browser | Works? |
|
||||
| --- | --- |
|
||||
| Chrome | Yes |
|
||||
| Firefox | Yes |
|
||||
| Opera | Yes |
|
||||
| Safari | Yes |
|
||||
| Edge | Yes |
|
||||
| IE 11 | Yes |
|
||||
Vendored
+1
File diff suppressed because one or more lines are too long
Vendored
+1
@@ -0,0 +1 @@
|
||||
import "babel-polyfill";
|
||||
Vendored
+72
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"name": "fslightbox",
|
||||
"version": "3.3.1",
|
||||
"description": "Modern and easy plugin for displaying images and videos in clean overlaying box. Display single source or create beautiful gallery with powerful lightbox.",
|
||||
"author": "Bantha Apps Piotr Zdziarski",
|
||||
"license": "MIT",
|
||||
"homepage": "https://fslightbox.com",
|
||||
"bugs": {
|
||||
"url": "https://github.com/banthagroup/fslightbox/issues"
|
||||
},
|
||||
"main": "index.js",
|
||||
"keywords": [
|
||||
"lightbox",
|
||||
"slide gallery",
|
||||
"image lightbox",
|
||||
"slider",
|
||||
"carousel"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/banthagroup/fslightbox"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest",
|
||||
"production": "webpack --mode production --config webpack.prod.config.js --display-modules && gulp",
|
||||
"watch": "webpack-dev-server --mode development --host 0.0.0.0",
|
||||
"cypress": "concurrently --kill-others \"webpack-dev-server --config ./webpack.cypress.config.js --mode development\" \"node ./node_modules/.bin/cypress open\""
|
||||
},
|
||||
"jest": {
|
||||
"setupFiles": [
|
||||
"./jest-setup.js"
|
||||
],
|
||||
"verbose": true,
|
||||
"testPathIgnorePatterns": [
|
||||
"/node_modules/",
|
||||
"/demo/",
|
||||
"/dist/",
|
||||
"/tests/cypress/"
|
||||
],
|
||||
"collectCoverage": false
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.4.4",
|
||||
"@babel/preset-env": "^7.4.4",
|
||||
"@babel/register": "^7.4.4",
|
||||
"babel-jest": "^24.7.1",
|
||||
"babel-loader": "^8.0.5",
|
||||
"babel-polyfill": "^6.26.0",
|
||||
"browser-sync": "^2.26.7",
|
||||
"concurrently": "^6.2.0",
|
||||
"copy-webpack-plugin": "^5.0.3",
|
||||
"core-js": "^3.0.1",
|
||||
"css-loader": "^2.1.0",
|
||||
"cypress": "^7.5.0",
|
||||
"dotenv": "^10.0.0",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-clean-css": "^4.2.0",
|
||||
"gulp-rename": "^1.4.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"html-loader": "^0.5.5",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"jest": "^24.7.1",
|
||||
"node-sass": "^4.12.0",
|
||||
"prop-types": "^15.6.2",
|
||||
"sass-loader": "^7.1.0",
|
||||
"style-loader": "^0.23.1",
|
||||
"uglifyjs-webpack-plugin": "^2.1.1",
|
||||
"webpack": "^4.30.0",
|
||||
"webpack-cli": "^3.3.1",
|
||||
"webpack-dev-server": "^3.3.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user