isobit-ui 0.0.374 → 0.0.375
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +8 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.0.
|
|
2
|
+
* isobit-ui v0.0.375
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5456,13 +5456,15 @@ if (typeof ol !== 'undefined') {
|
|
|
5456
5456
|
}
|
|
5457
5457
|
|
|
5458
5458
|
Vue__default['default'].pad = function (num, size) {
|
|
5459
|
-
|
|
5459
|
+
if (num != null) {
|
|
5460
|
+
var s = 1 * num + "";
|
|
5460
5461
|
|
|
5461
|
-
|
|
5462
|
-
|
|
5463
|
-
|
|
5462
|
+
while (s.length < size) {
|
|
5463
|
+
s = "0" + s;
|
|
5464
|
+
}
|
|
5464
5465
|
|
|
5465
|
-
|
|
5466
|
+
return s;
|
|
5467
|
+
}
|
|
5466
5468
|
};
|
|
5467
5469
|
|
|
5468
5470
|
Vue__default['default'].filter('number', function (s
|