isobit-ui 0.1.4 → 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 +3 -4
- 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
|
|
|
@@ -7374,7 +7372,8 @@ Vue$1.configureAxios = configureAxios;
|
|
|
7374
7372
|
configureAxios(axios$1);
|
|
7375
7373
|
var index = {
|
|
7376
7374
|
install: function install(Vue, options) {
|
|
7377
|
-
Vue.filter("date", _$1.toDate);
|
|
7375
|
+
Vue.filter("date", _$1.toDate.bind(options));
|
|
7376
|
+
console.log('filter date addedd!');
|
|
7378
7377
|
Vue.component("v-autocomplete", __vue_component__$o);
|
|
7379
7378
|
Vue.component("v-button", __vue_component__$n);
|
|
7380
7379
|
Vue.component("v-calendar", __vue_component__$m);
|