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.umd.js
CHANGED
|
@@ -34670,7 +34670,7 @@ if (typeof window !== 'undefined') {
|
|
|
34670
34670
|
// Indicate to webpack that this file can be concatenated
|
|
34671
34671
|
/* harmony default export */ var setPublicPath = (null);
|
|
34672
34672
|
|
|
34673
|
-
// 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=
|
|
34673
|
+
// 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&
|
|
34674
34674
|
var render = function render() {
|
|
34675
34675
|
var _vm = this,
|
|
34676
34676
|
_c = _vm._self._c;
|
|
@@ -34693,11 +34693,7 @@ var render = function render() {
|
|
|
34693
34693
|
}, _vm._l(_vm.schema, function (group, parentIndex) {
|
|
34694
34694
|
return _vm.CheckIfAnyFieldVisibleInGroup(group.Data) ? _c('div', {
|
|
34695
34695
|
key: parentIndex,
|
|
34696
|
-
class:
|
|
34697
|
-
'col-lg-4 col-md-6 col-sm-12': group.groupLayoutType == 'triple',
|
|
34698
|
-
'col-lg-6 col-md-6 col-sm-12': group.groupLayoutType == 'double',
|
|
34699
|
-
'col-lg-12 col-md-12 col-sm-12': group.groupLayoutType == 'single' || typeof group.groupLayoutType == 'undefined'
|
|
34700
|
-
}
|
|
34696
|
+
class: _vm.getGroupClasses(group)
|
|
34701
34697
|
}, [_c('div', {
|
|
34702
34698
|
staticClass: "row"
|
|
34703
34699
|
}, [group.group_name && (group.visibility == true || typeof group.visibility == 'undefined') ? _c('div', {
|
|
@@ -34835,7 +34831,7 @@ var render = function render() {
|
|
|
34835
34831
|
};
|
|
34836
34832
|
var staticRenderFns = [];
|
|
34837
34833
|
|
|
34838
|
-
// CONCATENATED MODULE: ./src/components/DynamicForm.vue?vue&type=template&id=
|
|
34834
|
+
// CONCATENATED MODULE: ./src/components/DynamicForm.vue?vue&type=template&id=646afae2&
|
|
34839
34835
|
|
|
34840
34836
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.push.js
|
|
34841
34837
|
var es_array_push = __webpack_require__("14d9");
|
|
@@ -41762,6 +41758,17 @@ var SlotField_component = normalizeComponent(
|
|
|
41762
41758
|
});
|
|
41763
41759
|
}
|
|
41764
41760
|
});
|
|
41761
|
+
},
|
|
41762
|
+
getGroupClasses: function (group) {
|
|
41763
|
+
var returnvalue = {
|
|
41764
|
+
'col-lg-4 col-md-6 col-sm-12': group.groupLayoutType == 'triple',
|
|
41765
|
+
'col-lg-6 col-md-6 col-sm-12': group.groupLayoutType == 'double',
|
|
41766
|
+
'col-lg-12 col-md-12 col-sm-12': group.groupLayoutType == 'single' || typeof group.groupLayoutType == 'undefined'
|
|
41767
|
+
};
|
|
41768
|
+
if (group.hasOwnProperty('class') && group.class) {
|
|
41769
|
+
returnvalue[group.class] = true;
|
|
41770
|
+
}
|
|
41771
|
+
return returnvalue;
|
|
41765
41772
|
}
|
|
41766
41773
|
},
|
|
41767
41774
|
created: function () {}
|