isobit-ui 0.1.3 → 0.1.6
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 +4 -1
- 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.6
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -6179,6 +6179,7 @@ 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);
|
|
6182
6183
|
var pad = Vue$1.pad,
|
|
6183
6184
|
d;
|
|
6184
6185
|
|
|
@@ -7373,6 +7374,8 @@ Vue$1.configureAxios = configureAxios;
|
|
|
7373
7374
|
configureAxios(axios$1);
|
|
7374
7375
|
var index = {
|
|
7375
7376
|
install: function install(Vue, options) {
|
|
7377
|
+
Vue.filter("date", _$1.toDate.bind(options));
|
|
7378
|
+
console.log('filter date addedd!');
|
|
7376
7379
|
Vue.component("v-autocomplete", __vue_component__$o);
|
|
7377
7380
|
Vue.component("v-button", __vue_component__$n);
|
|
7378
7381
|
Vue.component("v-calendar", __vue_component__$m);
|