ソースを参照

fix typo in build

Robin Herbots 2 年 前
コミット
af9f723e29

+ 1 - 1
bower.json

@@ -1,6 +1,6 @@
 {
   "name": "inputmask",
-  "version": "5.0.9-beta.56",
+  "version": "5.0.9-beta.58",
   "main": [
 	  "./index.js",
     "./css/inputmask.css"

+ 1 - 1
bundle.colormask.js

@@ -1,4 +1,4 @@
 import "./bundle";
-import Colormask from "./lib/extensions/colorMask";
+import Colormask from "./lib/extensions/colormask";
 export default Colormask;
 

+ 1 - 1
composer.json

@@ -1,7 +1,7 @@
 {
   "name": "robinherbots/inputmask",
   "description": "Inputmask is a javascript library which creates an input mask.  Inputmask can run against vanilla javascript, jQuery and jqlite.",
-  "version": "5.0.9-beta.56",
+  "version": "5.0.9-beta.58",
   "type": "library",
   "keywords": ["jquery", "plugins", "input", "form", "inputmask", "mask"],
   "homepage": "http://robinherbots.github.io/Inputmask",

+ 26 - 0
dist/bindings/inputmask.binding.js

@@ -0,0 +1,26 @@
+/*
+ Input Mask plugin binding
+ http://github.com/RobinHerbots/jquery.inputmask
+ Copyright (c) Robin Herbots
+ Licensed under the MIT license
+ */
+(function (factory) {
+	factory(jQuery, window.Inputmask, window);
+}
+(function ($, Inputmask, window) {
+	$(window.document).ajaxComplete(function (event, xmlHttpRequest, ajaxOptions) {
+		if ($.inArray("html", ajaxOptions.dataTypes) !== -1) {
+			$(".inputmask, [data-inputmask], [data-inputmask-mask], [data-inputmask-alias], [data-inputmask-regex]").each(function (ndx, lmnt) {
+				if (lmnt.inputmask === undefined) {
+					Inputmask().mask(lmnt);
+				}
+			});
+		}
+	}).ready(function () {
+		$(".inputmask, [data-inputmask], [data-inputmask-mask], [data-inputmask-alias],[data-inputmask-regex]").each(function (ndx, lmnt) {
+			if (lmnt.inputmask === undefined) {
+				Inputmask().mask(lmnt);
+			}
+		});
+	});
+}));

+ 65 - 0
dist/colormask.css

@@ -0,0 +1,65 @@
+mark.im-caret {
+    animation: 1s blink step-end infinite !important;
+}
+
+mark.im-caret-select {
+    background-color: rgba(0, 0, 0, 0.25);
+}
+
+@keyframes blink {
+    from, to {
+        border-right-color: black;
+    }
+    50% {
+        /*border-right-color: transparent;*/
+        border-right-color: white;
+    }
+}
+
+span.im-static {
+    color: grey;
+}
+
+div.im-colormask {
+    display: inline-block;
+    border-style: groove;
+    border-width: 1px;
+    appearance: textfield;
+    cursor: text;
+}
+
+div.im-colormask > input, div.im-colormask > input:-webkit-autofill {
+    position: absolute !important;
+    display: inline-block;
+    background-color: transparent;
+    color: transparent;
+    -webkit-text-fill-color: transparent;
+    transition: background-color 5000s ease-in-out 0s;
+    caret-color: transparent;
+    text-shadow: none;
+    appearance: textfield;
+    border-style: none;
+    left: 0; /*calculated*/
+}
+
+div.im-colormask > input:focus {
+    outline: none;
+}
+
+div.im-colormask > input::selection {
+    background: none;
+}
+
+div.im-colormask > input::-moz-selection {
+    background: none;
+}
+
+div.im-colormask > input:-webkit-autofill ~ div {
+    background-color: rgb(255, 255, 255);
+}
+
+div.im-colormask > div {
+    color: black;
+    display: inline-block;
+    width: 100px; /*calculated*/
+}

ファイルの差分が大きいため隠しています
+ 3885 - 0
dist/colormask.js


ファイルの差分が大きいため隠しています
+ 8 - 0
dist/colormask.min.js


+ 5 - 0
dist/inputmask.es6.js

@@ -0,0 +1,5 @@
+import "./inputmask.js";
+
+const inputmask = window.Inputmask;
+window.Inputmask = undefined;
+export default inputmask;

ファイルの差分が大きいため隠しています
+ 3771 - 0
dist/inputmask.js


ファイルの差分が大きいため隠しています
+ 8 - 0
dist/inputmask.min.js


ファイルの差分が大きいため隠しています
+ 3671 - 0
dist/jquery.inputmask.js


ファイルの差分が大きいため隠しています
+ 8 - 0
dist/jquery.inputmask.min.js


+ 1 - 0
inputmask-pages/src/assets/Changelog.md

@@ -14,6 +14,7 @@
 - Enhance resolving of the ndxInitializer to determine the alternating tests.
 
 ### Fixed
+- Inputmask datetime alias mm/yy min value bug #2744
 - ALT codes #2779
 - Pressing the Win button #2780
 - d/mm/yyyy is converted to d/m//yyyd #2394

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "inputmask",
-  "version": "5.0.9-beta.56",
+  "version": "5.0.9-beta.58",
   "description": "Inputmask is a javascript library which creates an input mask.  Inputmask can run against vanilla javascript, jQuery and jqlite.",
   "main": "dist/inputmask.js",
   "exports": {