isobit-ui 0.1.6 → 0.1.7
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 +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.1.
|
|
2
|
+
* isobit-ui v0.1.7
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -6179,14 +6179,12 @@ Vue$1.filter('number', function (s
|
|
|
6179
6179
|
Vue$1.filter('date', _$1.toDate = function (s, type) {
|
|
6180
6180
|
//s usa d|date('time')
|
|
6181
6181
|
if (s) {
|
|
6182
|
-
console.log(s);
|
|
6183
6182
|
var pad = Vue$1.pad,
|
|
6184
6183
|
d;
|
|
6185
6184
|
|
|
6186
6185
|
if (s instanceof Date) {
|
|
6187
6186
|
d = s;
|
|
6188
6187
|
} else if (typeof s === 'string') {
|
|
6189
|
-
console.log(s);
|
|
6190
6188
|
var t = s.split('T');
|
|
6191
6189
|
d = t[0].split('-');
|
|
6192
6190
|
|