eoss-mobiles 0.2.12 → 0.2.14
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 +72 -32
- package/lib/config/api.js +4 -1
- package/lib/date.js +7 -3
- package/lib/eoss-mobile.common.js +565 -112
- package/lib/flow.js +175 -138
- package/lib/form.js +3 -3
- package/lib/index.js +1 -1
- package/lib/notice-bar.js +4 -4
- package/lib/picker.js +72 -32
- package/lib/pull-refresh.js +2 -2
- package/lib/radio.js +72 -32
- package/lib/retrial-auth.js +2436 -0
- package/lib/selector.js +90 -50
- package/lib/table-column.js +72 -32
- package/lib/table.js +39 -5
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/retrial-auth.css +1 -0
- package/lib/utils/axios.js +2 -3
- package/lib/utils/util.js +35 -1
- package/package.json +1 -1
- package/packages/date/src/main.vue +1 -1
- package/packages/flow/src/components/Handle.vue +7 -4
- package/packages/flow/src/components/Opinion.vue +40 -4
- package/packages/flow/src/components/StartFlow.vue +3 -3
- package/packages/flow/src/main.vue +6 -0
- package/packages/form/src/main.vue +1 -1
- package/packages/notice-bar/src/main.vue +1 -1
- package/packages/retrial-auth/index.js +5 -0
- package/packages/retrial-auth/src/main.vue +257 -0
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/retrial-auth.css +1 -0
- package/packages/theme-chalk/src/flow.scss +7 -1
- package/packages/theme-chalk/src/index.scss +1 -0
- package/packages/theme-chalk/src/retrial-auth.scss +28 -0
- package/src/config/api.js +3 -0
- package/src/index.js +4 -1
- package/src/utils/axios.js +2 -2
- package/src/utils/util.js +128 -82
package/lib/form.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/form/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/form/src/main.vue?vue&type=template&id=0c43eb06&
|
|
203
203
|
var render = function () {
|
|
204
204
|
var _vm = this
|
|
205
205
|
var _h = _vm.$createElement
|
|
@@ -243,7 +243,7 @@ var render = function () {
|
|
|
243
243
|
label: item.label.text || item.label,
|
|
244
244
|
},
|
|
245
245
|
on: {
|
|
246
|
-
|
|
246
|
+
input: function ($event) {
|
|
247
247
|
_vm.handleChange(item.name, _vm.model[item.name])
|
|
248
248
|
},
|
|
249
249
|
},
|
|
@@ -623,7 +623,7 @@ var staticRenderFns = []
|
|
|
623
623
|
render._withStripped = true
|
|
624
624
|
|
|
625
625
|
|
|
626
|
-
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=
|
|
626
|
+
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=0c43eb06&
|
|
627
627
|
|
|
628
628
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=script&lang=js&
|
|
629
629
|
//
|