tg-controls_cli 0.0.83 → 0.0.84
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/myLib.common.js +14 -7
- package/dist/myLib.common.js.map +1 -1
- package/dist/myLib.umd.js +14 -7
- package/dist/myLib.umd.js.map +1 -1
- package/dist/myLib.umd.min.js +2 -2
- package/dist/myLib.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/myLib.common.js
CHANGED
|
@@ -34661,7 +34661,7 @@ if (typeof window !== 'undefined') {
|
|
|
34661
34661
|
// Indicate to webpack that this file can be concatenated
|
|
34662
34662
|
/* harmony default export */ var setPublicPath = (null);
|
|
34663
34663
|
|
|
34664
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3b5bb7bf-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/DynamicForm.vue?vue&type=template&id=
|
|
34664
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3b5bb7bf-vue-loader-template"}!./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/loaders/templateLoader.js??ref--6!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/DynamicForm.vue?vue&type=template&id=646afae2&
|
|
34665
34665
|
var render = function render() {
|
|
34666
34666
|
var _vm = this,
|
|
34667
34667
|
_c = _vm._self._c;
|
|
@@ -34684,11 +34684,7 @@ var render = function render() {
|
|
|
34684
34684
|
}, _vm._l(_vm.schema, function (group, parentIndex) {
|
|
34685
34685
|
return _vm.CheckIfAnyFieldVisibleInGroup(group.Data) ? _c('div', {
|
|
34686
34686
|
key: parentIndex,
|
|
34687
|
-
class:
|
|
34688
|
-
'col-lg-4 col-md-6 col-sm-12': group.groupLayoutType == 'triple',
|
|
34689
|
-
'col-lg-6 col-md-6 col-sm-12': group.groupLayoutType == 'double',
|
|
34690
|
-
'col-lg-12 col-md-12 col-sm-12': group.groupLayoutType == 'single' || typeof group.groupLayoutType == 'undefined'
|
|
34691
|
-
}
|
|
34687
|
+
class: _vm.getGroupClasses(group)
|
|
34692
34688
|
}, [_c('div', {
|
|
34693
34689
|
staticClass: "row"
|
|
34694
34690
|
}, [group.group_name && (group.visibility == true || typeof group.visibility == 'undefined') ? _c('div', {
|
|
@@ -34826,7 +34822,7 @@ var render = function render() {
|
|
|
34826
34822
|
};
|
|
34827
34823
|
var staticRenderFns = [];
|
|
34828
34824
|
|
|
34829
|
-
// CONCATENATED MODULE: ./src/components/DynamicForm.vue?vue&type=template&id=
|
|
34825
|
+
// CONCATENATED MODULE: ./src/components/DynamicForm.vue?vue&type=template&id=646afae2&
|
|
34830
34826
|
|
|
34831
34827
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
34832
34828
|
var es_array_push = __webpack_require__("14d9");
|
|
@@ -41753,6 +41749,17 @@ var SlotField_component = normalizeComponent(
|
|
|
41753
41749
|
});
|
|
41754
41750
|
}
|
|
41755
41751
|
});
|
|
41752
|
+
},
|
|
41753
|
+
getGroupClasses: function (group) {
|
|
41754
|
+
var returnvalue = {
|
|
41755
|
+
'col-lg-4 col-md-6 col-sm-12': group.groupLayoutType == 'triple',
|
|
41756
|
+
'col-lg-6 col-md-6 col-sm-12': group.groupLayoutType == 'double',
|
|
41757
|
+
'col-lg-12 col-md-12 col-sm-12': group.groupLayoutType == 'single' || typeof group.groupLayoutType == 'undefined'
|
|
41758
|
+
};
|
|
41759
|
+
if (group.hasOwnProperty('class') && group.class) {
|
|
41760
|
+
returnvalue[group.class] = true;
|
|
41761
|
+
}
|
|
41762
|
+
return returnvalue;
|
|
41756
41763
|
}
|
|
41757
41764
|
},
|
|
41758
41765
|
created: function () {}
|