Browse Source

Updates to release v5.5.1 fix #1782 fix #1802 fix #1803

Kartik Visweswaran 2 years ago
parent
commit
cff2335cbf

+ 8 - 0
CHANGE.md

@@ -1,6 +1,14 @@
 Change Log: `bootstrap-fileinput`
 =================================
 
+## version 5.5.1
+
+**Date**: _under development_
+
+- (enh #1803): Add image/vnd.dwg signature.
+- (bug #1802): Fix SassError Invalid parent selector.
+- (bug #1782): Fix loading indicator reset for same file selected again.
+
 ## version 5.5.0
 
 **Major Release: BC Breaking**

+ 1 - 1
bower.json

@@ -1,6 +1,6 @@
 {
   "name": "bootstrap-fileinput",
-  "version": "5.5.0",
+  "version": "5.5.1",
   "homepage": "https://github.com/kartik-v/bootstrap-fileinput",
   "authors": [
     "Kartik Visweswaran <[email protected]>"

+ 1 - 1
composer.json

@@ -30,7 +30,7 @@
   },
   "extra": {
     "branch-alias": {
-      "dev-master": "5.2.x-dev"
+      "dev-master": "5.5.x-dev"
     }
   }
 }

+ 1 - 1
css/fileinput-rtl.css

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee RTL (Right To Left) default styling for bootstrap-fileinput.

+ 1 - 1
css/fileinput-rtl.min.css

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee RTL (Right To Left) default styling for bootstrap-fileinput.

+ 1 - 1
css/fileinput.css

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee default styling for bootstrap-fileinput.

+ 1 - 1
css/fileinput.min.css

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee default styling for bootstrap-fileinput.

+ 1 - 1
examples/index-bs3.html

@@ -1,5 +1,5 @@
 <!--
-* bootstrap-fileinput v5.5.0
+* bootstrap-fileinput v5.5.1
 * http://plugins.krajee.com/file-input
 *
 * Author: Kartik Visweswaran

+ 1 - 1
examples/index-bs4.html

@@ -1,5 +1,5 @@
 <!--
-* bootstrap-fileinput v5.5.0
+* bootstrap-fileinput v5.5.1
 * http://plugins.krajee.com/file-input
 *
 * Author: Kartik Visweswaran

+ 1 - 1
examples/index-bs5.html

@@ -1,5 +1,5 @@
 <!--
-* bootstrap-fileinput v5.5.0
+* bootstrap-fileinput v5.5.1
 * http://plugins.krajee.com/file-input
 *
 * Author: Kartik Visweswaran

+ 3 - 3
js/fileinput.js

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Author: Kartik Visweswaran
@@ -5551,10 +5551,10 @@
                 }).on('focusin.fileinput', function () {
                     setTimeout(function () {
                         if (!$el.val()) {
-                            self._toggleLoading('hide');
                             self._setFileDropZoneTitle();
                         }
                         $body.off(ev);
+                        self._toggleLoading('hide');
                     }, 2500);
                 });
             } else {
@@ -6573,4 +6573,4 @@
             $input.fileinput();
         }
     });
-}));
+}));

File diff suppressed because it is too large
+ 1 - 1
js/fileinput.min.js


+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "bootstrap-fileinput",
-  "version": "5.5.0",
+  "version": "5.5.1",
   "homepage": "https://github.com/kartik-v/bootstrap-fileinput",
   "authors": [
     "Kartik Visweswaran <[email protected]>"

+ 1 - 1
scss/fileinput-rtl.scss

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee RTL (Right To Left) default styling for bootstrap-fileinput.

+ 9 - 4
scss/fileinput.scss

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee default styling for bootstrap-fileinput.
@@ -859,18 +859,23 @@ input[type=file].file-loading {
     .btn-kv-rotate {
       display: inline-block;
     }
+
     .kv-file-rotate {
       display: inline-block;
     }
   }
+
   .file-zoom-detail {
     transform-origin: center center;
   }
+
   .kv-file-content {
     transform-origin: center center;
-    >:first-child {
-      transform-origin: center center;      
+
+    > :first-child {
+      transform-origin: center center;
     }
+
   }
 }
 
@@ -880,4 +885,4 @@ input[type=file].file-loading {
 
 .kv-overflow-hidden {
   overflow: hidden;
-}
+}

+ 1 - 1
scss/themes/explorer-fa4/theme.scss

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee Explorer Font Awesome 4.x theme style for bootstrap-fileinput. Load this theme file after loading

+ 1 - 1
scss/themes/explorer-fa5/theme.scss

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee Explorer Font Awesome 5.x theme style for bootstrap-fileinput. Load this theme file after loading

+ 1 - 1
scss/themes/explorer-fa6/theme.scss

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee Explorer Font Awesome 6.x theme style for bootstrap-fileinput. Load this theme file after loading

+ 1 - 1
scss/themes/explorer/theme.scss

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v5.5.0
+ * bootstrap-fileinput v5.5.1
  * http://plugins.krajee.com/file-input
  *
  * Krajee Explorer theme style for bootstrap-fileinput. Load this theme file after loading `fileinput.css`.

Some files were not shown because too many files changed in this diff