eoss-mobiles 0.2.24 → 0.2.26
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/lib/checkbox.js +0 -1
- package/lib/eoss-mobile.common.js +197 -86
- package/lib/flow.js +0 -1
- package/lib/grid.js +8 -3
- package/lib/index.js +1 -1
- package/lib/picker.js +0 -1
- package/lib/radio.js +0 -1
- package/lib/retrial-auth.js +0 -1
- package/lib/selector.js +178 -72
- package/lib/table-column.js +0 -1
- package/lib/table.js +0 -1
- package/lib/utils/http.js +0 -1
- package/package.json +1 -1
- package/packages/grid/src/main.vue +31 -26
- package/packages/selector/src/main.vue +4 -1
- package/packages/selector/src/selector-tree.vue +103 -21
- package/packages/selector/src/tree.vue +20 -5
- package/src/index.js +1 -1
- package/src/utils/http.js +0 -1
package/lib/grid.js
CHANGED
|
@@ -199,7 +199,7 @@ function normalizeComponent(
|
|
|
199
199
|
// ESM COMPAT FLAG
|
|
200
200
|
__webpack_require__.r(__webpack_exports__);
|
|
201
201
|
|
|
202
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/grid/src/main.vue?vue&type=template&id=
|
|
202
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/grid/src/main.vue?vue&type=template&id=74623ee7&
|
|
203
203
|
var render = function () {
|
|
204
204
|
var _vm = this
|
|
205
205
|
var _h = _vm.$createElement
|
|
@@ -260,7 +260,7 @@ var staticRenderFns = []
|
|
|
260
260
|
render._withStripped = true
|
|
261
261
|
|
|
262
262
|
|
|
263
|
-
// CONCATENATED MODULE: ./packages/grid/src/main.vue?vue&type=template&id=
|
|
263
|
+
// CONCATENATED MODULE: ./packages/grid/src/main.vue?vue&type=template&id=74623ee7&
|
|
264
264
|
|
|
265
265
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/grid/src/main.vue?vue&type=script&lang=js&
|
|
266
266
|
//
|
|
@@ -292,11 +292,16 @@ render._withStripped = true
|
|
|
292
292
|
textEllipsis: {
|
|
293
293
|
type: Boolean,
|
|
294
294
|
default: false
|
|
295
|
+
},
|
|
296
|
+
targetStop: {
|
|
297
|
+
type: Boolean,
|
|
298
|
+
default: true
|
|
295
299
|
}
|
|
296
300
|
},
|
|
297
301
|
methods: {
|
|
298
302
|
goView: function goView(event, val) {
|
|
299
|
-
this.$emit('click',
|
|
303
|
+
this.$emit('click', val);
|
|
304
|
+
this.targetStop && event.stopPropagation();
|
|
300
305
|
}
|
|
301
306
|
}
|
|
302
307
|
});
|