Socket
Socket
Sign inDemoInstall

bootstrap-fileinput

Package Overview
Dependencies
4
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.2.5 to 5.2.6

92

package.json
{
"name": "bootstrap-fileinput",
"version": "5.2.5",
"homepage": "https://github.com/kartik-v/bootstrap-fileinput",
"authors": [
"Kartik Visweswaran <kartikv2@gmail.com>"
],
"description": "An enhanced HTML 5 file input for Bootstrap 5.x, 4.x, and 3.x with file preview, multiple selection, ajax uploads, and more features.",
"repository": {
"type": "git",
"url": "https://github.com/kartik-v/bootstrap-fileinput.git"
},
"bugs": {
"url": "https://github.com/kartik-v/bootstrap-fileinput/issues"
},
"keywords": [
"file",
"input",
"preview",
"image",
"upload",
"ajax",
"multiple",
"delete",
"progress",
"gallery"
],
"dependencies": {
"bootstrap": ">= 3.4.1",
"jquery": ">= 1.9.0",
"opencollective-postinstall": "^2.0.2"
},
"main": "./js/fileinput.js",
"style": "./css/fileinput.css",
"sass": "scss/fileinput.scss",
"peerDependencies": {
"jquery": ">= 1.9.0",
"bootstrap": ">= 3.0.0"
},
"license": "BSD-3-Clause",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/bootstrap-fileinput"
},
"scripts": {
"postinstall": "opencollective-postinstall || true"
}
"name": "bootstrap-fileinput",
"version": "5.2.6",
"homepage": "https://github.com/kartik-v/bootstrap-fileinput",
"authors": [
"Kartik Visweswaran <kartikv2@gmail.com>"
],
"description": "An enhanced HTML 5 file input for Bootstrap 5.x, 4.x, and 3.x with file preview, multiple selection, ajax uploads, and more features.",
"repository": {
"type": "git",
"url": "https://github.com/kartik-v/bootstrap-fileinput.git"
},
"bugs": {
"url": "https://github.com/kartik-v/bootstrap-fileinput/issues"
},
"keywords": [
"file",
"input",
"preview",
"image",
"upload",
"ajax",
"multiple",
"delete",
"progress",
"gallery"
],
"dependencies": {
"bootstrap": ">= 3.4.1",
"jquery": ">= 1.9.0",
"opencollective-postinstall": "^2.0.2"
},
"main": "./js/fileinput.js",
"style": "./css/fileinput.css",
"sass": "scss/fileinput.scss",
"peerDependencies": {
"jquery": ">= 1.9.0",
"bootstrap": ">= 3.0.0"
},
"license": "BSD-3-Clause",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/bootstrap-fileinput"
},
"scripts": {
"postinstall": "opencollective-postinstall || true"
}
}

@@ -87,3 +87,3 @@ <h1 align="center">

<!-- bootstrap 5.x or 4.x is supported. You can also use the bootstrap css 3.3.x versions -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" crossorigin="anonymous">

@@ -97,6 +97,6 @@ <!-- default icons used in the plugin are from Bootstrap 5.x icon library (which can be enabled by loading CSS below) -->

<!-- the fileinput plugin styling CSS file -->
<link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.5/css/fileinput.min.css" media="all" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.6/css/fileinput.min.css" media="all" rel="stylesheet" type="text/css" />
<!-- if using RTL (Right-To-Left) orientation, load the RTL CSS file after fileinput.css by uncommenting below -->
<!-- link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.5/css/fileinput-rtl.min.css" media="all" rel="stylesheet" type="text/css" /-->
<!-- link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.6/css/fileinput-rtl.min.css" media="all" rel="stylesheet" type="text/css" /-->

@@ -108,20 +108,20 @@ <!-- the jQuery Library -->

wish to resize images before upload. This must be loaded before fileinput.min.js -->
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.5/js/plugins/piexif.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.6/js/plugins/piexif.min.js" type="text/javascript"></script>
<!-- sortable.min.js is only needed if you wish to sort / rearrange files in initial preview.
This must be loaded before fileinput.min.js -->
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.5/js/plugins/sortable.min.js" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.6/js/plugins/sortable.min.js" type="text/javascript"></script>
<!-- bootstrap.bundle.min.js below is needed if you wish to zoom and preview file content in a detail modal
dialog. bootstrap 5.x or 4.x is supported. You can also use the bootstrap js 3.3.x versions. -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<!-- the main fileinput plugin script JS file -->
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.5/js/fileinput.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.6/js/fileinput.min.js"></script>
<!-- following theme script is needed to use the Font Awesome 5.x theme (`fas`). Uncomment if needed. -->
<!-- script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.5/themes/fas/theme.min.js"></script -->
<!-- script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.6/themes/fas/theme.min.js"></script -->
<!-- optionally if you need translation for your language then include the locale file as mentioned below (replace LANG.js with your language locale) -->
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.5/js/locales/LANG.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.2.6/js/locales/LANG.js"></script>
```

@@ -132,3 +132,3 @@ With v5.2.1, the plugin is able to automatically detect the bootstrap library version and deliver the relevant bootstrap specific functionality (if you have loaded the bootstrap.min.js before fileinput.min.js). In case of any issues - you can explicitly set the bootstrap version by setting the following variable before the plugin initialization script.

// set this before initializing the fileinput plugin
$.fn.fileinputBsVersion = '3.3.7'; // for example if using bootstrap css 3.3.7 version
$.fn.fileinputBsVersion = '3.4.1'; // for example if using bootstrap css 3.4.1 version
```

@@ -135,0 +135,0 @@

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

/*!
* bootstrap-fileinput v5.2.5
* bootstrap-fileinput v5.2.6
* http://plugins.krajee.com/file-input

@@ -4,0 +4,0 @@ *

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc