@castlabs/ui 4.20.4 → 4.21.1
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/castlabs-ui.common.js +90 -64
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.core.js +14 -2
- package/dist/castlabs-ui.css +2 -2
- package/dist/castlabs-ui.module.d.ts +1 -1
- package/dist/castlabs-ui.module.js +14 -2
- package/dist/castlabs-ui.umd.js +90 -64
- package/dist/castlabs-ui.umd.js.map +1 -1
- package/dist/castlabs-ui.umd.min.js +1 -1
- package/dist/castlabs-ui.umd.min.js.map +1 -1
- package/package.json +11 -11
- package/src/components/form/ClForm/style.scss +1 -5
- package/src/components/section/ClSectionForm/style.scss +7 -0
- package/src/components/section/ClSectionMainSide/style.scss +0 -20
- package/src/styles/layout/grid.scss +7 -2
- package/src/styles/layout/section.scss +3 -1
- package/src/styles/ui.scss +1 -0
- package/types/castlabs-ui.module.d.ts +1 -1
- package/types/index.d.ts +1 -1
|
@@ -654,7 +654,7 @@ module.exports = !fails(function () {
|
|
|
654
654
|
var NATIVE_BIND = __webpack_require__(616);
|
|
655
655
|
|
|
656
656
|
var call = Function.prototype.call;
|
|
657
|
-
|
|
657
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
658
658
|
module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
659
659
|
return call.apply(call, arguments);
|
|
660
660
|
};
|
|
@@ -715,6 +715,7 @@ var NATIVE_BIND = __webpack_require__(616);
|
|
|
715
715
|
|
|
716
716
|
var FunctionPrototype = Function.prototype;
|
|
717
717
|
var call = FunctionPrototype.call;
|
|
718
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
718
719
|
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
|
719
720
|
|
|
720
721
|
module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
@@ -1901,10 +1902,10 @@ var SHARED = '__core-js_shared__';
|
|
|
1901
1902
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
1902
1903
|
|
|
1903
1904
|
(store.versions || (store.versions = [])).push({
|
|
1904
|
-
version: '3.
|
|
1905
|
+
version: '3.40.0',
|
|
1905
1906
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1906
|
-
copyright: '© 2014-
|
|
1907
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
1907
|
+
copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru)',
|
|
1908
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.40.0/LICENSE',
|
|
1908
1909
|
source: 'https://github.com/zloirock/core-js'
|
|
1909
1910
|
});
|
|
1910
1911
|
|
|
@@ -2625,7 +2626,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2625
2626
|
name: 'ClUI',
|
|
2626
2627
|
computed: {
|
|
2627
2628
|
version: function () {
|
|
2628
|
-
return "4.
|
|
2629
|
+
return "4.21.1" ?? 0;
|
|
2629
2630
|
}
|
|
2630
2631
|
}
|
|
2631
2632
|
}));
|
|
@@ -3315,12 +3316,14 @@ function clTableSorter(sorter, initialCol = 0, initialOrder = 'ASC') {
|
|
|
3315
3316
|
* @param dataCallback Function that returns the to-be-sorted object array.
|
|
3316
3317
|
* @param keys Columns/keys in object to sort.
|
|
3317
3318
|
* @param initialCol Initial column to sort for.
|
|
3319
|
+
* @param pageNo Pagination page, zero-based.
|
|
3320
|
+
* @param pageSize Pagination page size, defaults to 'one big page'.
|
|
3318
3321
|
* @returns Object expeced by table sort.
|
|
3319
3322
|
*/
|
|
3320
|
-
function clTableSorterObjects(dataCallback, keys, initialCol = 0) {
|
|
3323
|
+
function clTableSorterObjects(dataCallback, keys, initialCol = 0, pageNoCallback = () => 0, pageSizeCallback = () => Number.MAX_SAFE_INTEGER) {
|
|
3321
3324
|
return clTableSorter((col, order) => {
|
|
3322
3325
|
return {
|
|
3323
|
-
sorted: clSort(dataCallback, keys[col], order),
|
|
3326
|
+
sorted: clPaginate(clSort(dataCallback, keys[col], order), pageNoCallback(), pageSizeCallback()),
|
|
3324
3327
|
sortedOrder: order
|
|
3325
3328
|
};
|
|
3326
3329
|
}, initialCol);
|
|
@@ -4045,15 +4048,15 @@ ClDropzone_template.install = Vue => {
|
|
|
4045
4048
|
Vue.component(ClDropzone_template.name ?? 'ClNoName', ClDropzone_template);
|
|
4046
4049
|
};
|
|
4047
4050
|
/* harmony default export */ var ClDropzone = (ClDropzone_template);
|
|
4048
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/form/ClField/template.vue?vue&type=template&id=
|
|
4051
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/form/ClField/template.vue?vue&type=template&id=56c2f246&ts=true
|
|
4049
4052
|
|
|
4050
|
-
const
|
|
4051
|
-
const
|
|
4053
|
+
const templatevue_type_template_id_56c2f246_ts_true_hoisted_1 = ["for"];
|
|
4054
|
+
const templatevue_type_template_id_56c2f246_ts_true_hoisted_2 = {
|
|
4052
4055
|
key: 0,
|
|
4053
4056
|
class: "required"
|
|
4054
4057
|
};
|
|
4055
|
-
const
|
|
4056
|
-
const
|
|
4058
|
+
const templatevue_type_template_id_56c2f246_ts_true_hoisted_3 = ["id", "disabled", "required", "autofocus", "placeholder"];
|
|
4059
|
+
const templatevue_type_template_id_56c2f246_ts_true_hoisted_4 = ["id", "disabled", "required", "autofocus"];
|
|
4057
4060
|
const _hoisted_5 = ["id", "type", "placeholder", "minlength", "maxlength", "pattern", "disabled", "required", "autofocus"];
|
|
4058
4061
|
const _hoisted_6 = ["id", "for"];
|
|
4059
4062
|
const _hoisted_7 = {
|
|
@@ -4063,14 +4066,14 @@ const _hoisted_8 = {
|
|
|
4063
4066
|
key: 1,
|
|
4064
4067
|
class: "valid-feedback valid-feedback-none"
|
|
4065
4068
|
};
|
|
4066
|
-
function
|
|
4069
|
+
function templatevue_type_template_id_56c2f246_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
4067
4070
|
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)(external_vue_namespaceObject.Fragment, null, [_ctx.label ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("label", {
|
|
4068
4071
|
key: 0,
|
|
4069
4072
|
for: _ctx.$uid,
|
|
4070
4073
|
class: (0,external_vue_namespaceObject.normalizeClass)(["form-label", {
|
|
4071
4074
|
disabled: _ctx.disabled
|
|
4072
4075
|
}])
|
|
4073
|
-
}, [(0,external_vue_namespaceObject.createTextVNode)((0,external_vue_namespaceObject.toDisplayString)(_ctx.label), 1), _ctx.required ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("span",
|
|
4076
|
+
}, [(0,external_vue_namespaceObject.createTextVNode)((0,external_vue_namespaceObject.toDisplayString)(_ctx.label), 1), _ctx.required ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("span", templatevue_type_template_id_56c2f246_ts_true_hoisted_2, "*")) : (0,external_vue_namespaceObject.createCommentVNode)("", true)], 10, templatevue_type_template_id_56c2f246_ts_true_hoisted_1)) : (0,external_vue_namespaceObject.createCommentVNode)("", true), _ctx.type === 'textarea' ? (0,external_vue_namespaceObject.withDirectives)(((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("textarea", (0,external_vue_namespaceObject.mergeProps)({
|
|
4074
4077
|
key: 1,
|
|
4075
4078
|
id: _ctx.$uid
|
|
4076
4079
|
}, _ctx.$attrs, {
|
|
@@ -4084,7 +4087,7 @@ function templatevue_type_template_id_18037b9c_ts_true_render(_ctx, _cache, $pro
|
|
|
4084
4087
|
onInput: _cache[1] || (_cache[1] = $event => _ctx.validate()),
|
|
4085
4088
|
onChange: _cache[2] || (_cache[2] = $event => _ctx.validate()),
|
|
4086
4089
|
onBlur: _cache[3] || (_cache[3] = $event => _ctx.validate(true))
|
|
4087
|
-
}), null, 16,
|
|
4090
|
+
}), null, 16, templatevue_type_template_id_56c2f246_ts_true_hoisted_3)), [[external_vue_namespaceObject.vModelText, _ctx.modelValue]]) : _ctx.type === 'select' ? (0,external_vue_namespaceObject.withDirectives)(((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("select", (0,external_vue_namespaceObject.mergeProps)({
|
|
4088
4091
|
key: 2,
|
|
4089
4092
|
id: _ctx.$uid,
|
|
4090
4093
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => _ctx.modelValue = $event),
|
|
@@ -4096,7 +4099,7 @@ function templatevue_type_template_id_18037b9c_ts_true_render(_ctx, _cache, $pro
|
|
|
4096
4099
|
onInput: _cache[5] || (_cache[5] = $event => _ctx.validate()),
|
|
4097
4100
|
onChange: _cache[6] || (_cache[6] = $event => _ctx.validate()),
|
|
4098
4101
|
onBlur: _cache[7] || (_cache[7] = $event => _ctx.validate(true))
|
|
4099
|
-
}), [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default")], 16,
|
|
4102
|
+
}), [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default")], 16, templatevue_type_template_id_56c2f246_ts_true_hoisted_4)), [[external_vue_namespaceObject.vModelSelect, _ctx.modelValue]]) : (0,external_vue_namespaceObject.withDirectives)(((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("input", (0,external_vue_namespaceObject.mergeProps)({
|
|
4100
4103
|
key: 3,
|
|
4101
4104
|
id: _ctx.$uid
|
|
4102
4105
|
}, _ctx.$attrs, {
|
|
@@ -4128,7 +4131,7 @@ function templatevue_type_template_id_18037b9c_ts_true_render(_ctx, _cache, $pro
|
|
|
4128
4131
|
}])
|
|
4129
4132
|
}, (0,external_vue_namespaceObject.toDisplayString)(_ctx.help), 3)) : ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("p", _hoisted_8))], 64)) : (0,external_vue_namespaceObject.createCommentVNode)("", true)], 64);
|
|
4130
4133
|
}
|
|
4131
|
-
;// ./src/components/form/ClField/template.vue?vue&type=template&id=
|
|
4134
|
+
;// ./src/components/form/ClField/template.vue?vue&type=template&id=56c2f246&ts=true
|
|
4132
4135
|
|
|
4133
4136
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/form/ClField/template.vue?vue&type=script&lang=ts
|
|
4134
4137
|
|
|
@@ -4304,7 +4307,7 @@ function templatevue_type_template_id_18037b9c_ts_true_render(_ctx, _cache, $pro
|
|
|
4304
4307
|
|
|
4305
4308
|
|
|
4306
4309
|
;
|
|
4307
|
-
const ClField_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClField_templatevue_type_script_lang_ts, [['render',
|
|
4310
|
+
const ClField_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClField_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_56c2f246_ts_true_render]])
|
|
4308
4311
|
|
|
4309
4312
|
/* harmony default export */ var ClField_template = (ClField_template_exports_);
|
|
4310
4313
|
;// ./src/components/form/ClField/index.ts
|
|
@@ -5157,20 +5160,21 @@ ClModalConfirm_template.install = Vue => {
|
|
|
5157
5160
|
Vue.component(ClModalConfirm_template.name ?? 'ClNoName', ClModalConfirm_template);
|
|
5158
5161
|
};
|
|
5159
5162
|
/* harmony default export */ var ClModalConfirm = (ClModalConfirm_template);
|
|
5160
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalOk/template.vue?vue&type=template&id=
|
|
5163
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalOk/template.vue?vue&type=template&id=59bd2f86&ts=true
|
|
5161
5164
|
|
|
5162
|
-
const
|
|
5165
|
+
const templatevue_type_template_id_59bd2f86_ts_true_hoisted_1 = {
|
|
5163
5166
|
key: 0,
|
|
5164
5167
|
class: "fas fa-angle-left"
|
|
5165
5168
|
};
|
|
5166
|
-
const
|
|
5169
|
+
const templatevue_type_template_id_59bd2f86_ts_true_hoisted_2 = {
|
|
5167
5170
|
key: 0,
|
|
5168
5171
|
class: "fas fa-angle-right"
|
|
5169
5172
|
};
|
|
5170
|
-
function
|
|
5173
|
+
function templatevue_type_template_id_59bd2f86_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5171
5174
|
const _component_cl_modal = (0,external_vue_namespaceObject.resolveComponent)("cl-modal");
|
|
5172
5175
|
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createBlock)(_component_cl_modal, {
|
|
5173
5176
|
id: _ctx.id,
|
|
5177
|
+
form: _ctx.form,
|
|
5174
5178
|
"on-open": _ctx.opened,
|
|
5175
5179
|
"on-close": _ctx.closed
|
|
5176
5180
|
}, {
|
|
@@ -5183,7 +5187,7 @@ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $pro
|
|
|
5183
5187
|
onClick: _cache[0] || (_cache[0] =
|
|
5184
5188
|
//@ts-ignore
|
|
5185
5189
|
(...args) => _ctx.buttonCancel && _ctx.buttonCancel(...args))
|
|
5186
|
-
}, [_ctx.angles ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("i",
|
|
5190
|
+
}, [_ctx.angles ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("i", templatevue_type_template_id_59bd2f86_ts_true_hoisted_1)) : (0,external_vue_namespaceObject.createCommentVNode)("", true), (0,external_vue_namespaceObject.createElementVNode)("span", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.cancel), 1)])) : (0,external_vue_namespaceObject.createCommentVNode)("", true)]),
|
|
5187
5191
|
"footer-right": (0,external_vue_namespaceObject.withCtx)(() => [(0,external_vue_namespaceObject.createElementVNode)("button", {
|
|
5188
5192
|
type: "button",
|
|
5189
5193
|
class: (0,external_vue_namespaceObject.normalizeClass)(["btn it-ok", {
|
|
@@ -5194,11 +5198,11 @@ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $pro
|
|
|
5194
5198
|
onClick: _cache[1] || (_cache[1] =
|
|
5195
5199
|
//@ts-ignore
|
|
5196
5200
|
(...args) => _ctx.buttonOk && _ctx.buttonOk(...args))
|
|
5197
|
-
}, [(0,external_vue_namespaceObject.createElementVNode)("span", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.ok ?? _ctx.button), 1), _ctx.angles ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("i",
|
|
5201
|
+
}, [(0,external_vue_namespaceObject.createElementVNode)("span", null, (0,external_vue_namespaceObject.toDisplayString)(_ctx.ok ?? _ctx.button), 1), _ctx.angles ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("i", templatevue_type_template_id_59bd2f86_ts_true_hoisted_2)) : (0,external_vue_namespaceObject.createCommentVNode)("", true)], 2)]),
|
|
5198
5202
|
_: 3
|
|
5199
|
-
}, 8, ["id", "on-open", "on-close"]);
|
|
5203
|
+
}, 8, ["id", "form", "on-open", "on-close"]);
|
|
5200
5204
|
}
|
|
5201
|
-
;// ./src/components/modal/ClModalOk/template.vue?vue&type=template&id=
|
|
5205
|
+
;// ./src/components/modal/ClModalOk/template.vue?vue&type=template&id=59bd2f86&ts=true
|
|
5202
5206
|
|
|
5203
5207
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalOk/template.vue?vue&type=script&lang=ts
|
|
5204
5208
|
|
|
@@ -5215,6 +5219,11 @@ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $pro
|
|
|
5215
5219
|
type: String,
|
|
5216
5220
|
default: 'Information'
|
|
5217
5221
|
},
|
|
5222
|
+
form: {
|
|
5223
|
+
// if true, the modal will render a <form> as body
|
|
5224
|
+
type: Boolean,
|
|
5225
|
+
default: false
|
|
5226
|
+
},
|
|
5218
5227
|
body: {
|
|
5219
5228
|
type: String,
|
|
5220
5229
|
default: undefined
|
|
@@ -5288,7 +5297,7 @@ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $pro
|
|
|
5288
5297
|
|
|
5289
5298
|
|
|
5290
5299
|
;
|
|
5291
|
-
const ClModalOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalOk_templatevue_type_script_lang_ts, [['render',
|
|
5300
|
+
const ClModalOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalOk_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_59bd2f86_ts_true_render]])
|
|
5292
5301
|
|
|
5293
5302
|
/* harmony default export */ var ClModalOk_template = (ClModalOk_template_exports_);
|
|
5294
5303
|
;// ./src/components/modal/ClModalOk/index.ts
|
|
@@ -5830,18 +5839,19 @@ ClRole_template.install = Vue => {
|
|
|
5830
5839
|
Vue.component(ClRole_template.name ?? 'ClNoName', ClRole_template);
|
|
5831
5840
|
};
|
|
5832
5841
|
/* harmony default export */ var ClRole = (ClRole_template);
|
|
5833
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionForm/template.vue?vue&type=template&id=
|
|
5842
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionForm/template.vue?vue&type=template&id=9dfb2696&ts=true
|
|
5834
5843
|
|
|
5835
|
-
const
|
|
5836
|
-
class: "cl-section-alternate"
|
|
5844
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_1 = {
|
|
5845
|
+
class: "cl-section-form cl-section-alternate"
|
|
5837
5846
|
};
|
|
5838
|
-
const
|
|
5839
|
-
const
|
|
5840
|
-
const
|
|
5847
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_2 = ["id"];
|
|
5848
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_3 = ["disabled"];
|
|
5849
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_4 = {
|
|
5850
|
+
key: 1,
|
|
5841
5851
|
class: "col-12"
|
|
5842
5852
|
};
|
|
5843
|
-
function
|
|
5844
|
-
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("section",
|
|
5853
|
+
function templatevue_type_template_id_9dfb2696_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5854
|
+
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("section", templatevue_type_template_id_9dfb2696_ts_true_hoisted_1, [(0,external_vue_namespaceObject.createElementVNode)("form", {
|
|
5845
5855
|
id: _ctx.id,
|
|
5846
5856
|
novalidate: "",
|
|
5847
5857
|
class: "cl-form container",
|
|
@@ -5849,9 +5859,11 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5849
5859
|
}, [(0,external_vue_namespaceObject.createElementVNode)("fieldset", {
|
|
5850
5860
|
class: "row",
|
|
5851
5861
|
disabled: _ctx.disabled
|
|
5852
|
-
}, [
|
|
5862
|
+
}, [_ctx.noCol ? (0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default", {
|
|
5863
|
+
key: 0
|
|
5864
|
+
}) : ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("div", templatevue_type_template_id_9dfb2696_ts_true_hoisted_4, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default")]))], 8, templatevue_type_template_id_9dfb2696_ts_true_hoisted_3)], 40, templatevue_type_template_id_9dfb2696_ts_true_hoisted_2)]);
|
|
5853
5865
|
}
|
|
5854
|
-
;// ./src/components/section/ClSectionForm/template.vue?vue&type=template&id=
|
|
5866
|
+
;// ./src/components/section/ClSectionForm/template.vue?vue&type=template&id=9dfb2696&ts=true
|
|
5855
5867
|
|
|
5856
5868
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionForm/template.vue?vue&type=script&lang=ts
|
|
5857
5869
|
|
|
@@ -5865,6 +5877,10 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5865
5877
|
disabled: {
|
|
5866
5878
|
type: Boolean,
|
|
5867
5879
|
default: false
|
|
5880
|
+
},
|
|
5881
|
+
noCol: {
|
|
5882
|
+
type: Boolean,
|
|
5883
|
+
default: false
|
|
5868
5884
|
}
|
|
5869
5885
|
}
|
|
5870
5886
|
}));
|
|
@@ -5876,7 +5892,7 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5876
5892
|
|
|
5877
5893
|
|
|
5878
5894
|
;
|
|
5879
|
-
const ClSectionForm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionForm_templatevue_type_script_lang_ts, [['render',
|
|
5895
|
+
const ClSectionForm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionForm_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_9dfb2696_ts_true_render]])
|
|
5880
5896
|
|
|
5881
5897
|
/* harmony default export */ var ClSectionForm_template = (ClSectionForm_template_exports_);
|
|
5882
5898
|
;// ./src/components/section/ClSectionForm/index.ts
|
|
@@ -5949,23 +5965,26 @@ ClSectionHeadline_template.install = Vue => {
|
|
|
5949
5965
|
Vue.component(ClSectionHeadline_template.name ?? 'ClNoName', ClSectionHeadline_template);
|
|
5950
5966
|
};
|
|
5951
5967
|
/* harmony default export */ var ClSectionHeadline = (ClSectionHeadline_template);
|
|
5952
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionMain/template.vue?vue&type=template&id=
|
|
5968
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionMain/template.vue?vue&type=template&id=5057f370&ts=true
|
|
5953
5969
|
|
|
5954
|
-
const
|
|
5970
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_1 = {
|
|
5955
5971
|
class: "container"
|
|
5956
5972
|
};
|
|
5957
|
-
const
|
|
5973
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_2 = {
|
|
5958
5974
|
class: "row"
|
|
5959
5975
|
};
|
|
5960
|
-
const
|
|
5976
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_3 = {
|
|
5977
|
+
key: 1,
|
|
5961
5978
|
class: "col-12"
|
|
5962
5979
|
};
|
|
5963
|
-
function
|
|
5980
|
+
function templatevue_type_template_id_5057f370_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5964
5981
|
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("section", {
|
|
5965
5982
|
class: (0,external_vue_namespaceObject.normalizeClass)(_ctx.sectionClass())
|
|
5966
|
-
}, [(0,external_vue_namespaceObject.createElementVNode)("div",
|
|
5983
|
+
}, [(0,external_vue_namespaceObject.createElementVNode)("div", templatevue_type_template_id_5057f370_ts_true_hoisted_1, [(0,external_vue_namespaceObject.createElementVNode)("div", templatevue_type_template_id_5057f370_ts_true_hoisted_2, [_ctx.noCol ? (0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default", {
|
|
5984
|
+
key: 0
|
|
5985
|
+
}) : ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("div", templatevue_type_template_id_5057f370_ts_true_hoisted_3, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default")]))])])], 2);
|
|
5967
5986
|
}
|
|
5968
|
-
;// ./src/components/section/ClSectionMain/template.vue?vue&type=template&id=
|
|
5987
|
+
;// ./src/components/section/ClSectionMain/template.vue?vue&type=template&id=5057f370&ts=true
|
|
5969
5988
|
|
|
5970
5989
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionMain/template.vue?vue&type=script&lang=ts
|
|
5971
5990
|
|
|
@@ -5975,6 +5994,10 @@ function templatevue_type_template_id_3ff520d4_ts_true_render(_ctx, _cache, $pro
|
|
|
5975
5994
|
alternate: {
|
|
5976
5995
|
type: Boolean,
|
|
5977
5996
|
default: false
|
|
5997
|
+
},
|
|
5998
|
+
noCol: {
|
|
5999
|
+
type: Boolean,
|
|
6000
|
+
default: false
|
|
5978
6001
|
}
|
|
5979
6002
|
},
|
|
5980
6003
|
methods: {
|
|
@@ -5991,7 +6014,7 @@ function templatevue_type_template_id_3ff520d4_ts_true_render(_ctx, _cache, $pro
|
|
|
5991
6014
|
|
|
5992
6015
|
|
|
5993
6016
|
;
|
|
5994
|
-
const ClSectionMain_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMain_templatevue_type_script_lang_ts, [['render',
|
|
6017
|
+
const ClSectionMain_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMain_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_5057f370_ts_true_render]])
|
|
5995
6018
|
|
|
5996
6019
|
/* harmony default export */ var ClSectionMain_template = (ClSectionMain_template_exports_);
|
|
5997
6020
|
;// ./src/components/section/ClSectionMain/index.ts
|
|
@@ -6000,30 +6023,33 @@ ClSectionMain_template.install = Vue => {
|
|
|
6000
6023
|
Vue.component(ClSectionMain_template.name ?? 'ClNoName', ClSectionMain_template);
|
|
6001
6024
|
};
|
|
6002
6025
|
/* harmony default export */ var ClSectionMain = (ClSectionMain_template);
|
|
6003
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionMainSide/template.vue?vue&type=template&id=
|
|
6026
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionMainSide/template.vue?vue&type=template&id=65da37fa&ts=true
|
|
6004
6027
|
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
}
|
|
6011
|
-
|
|
6012
|
-
|
|
6013
|
-
|
|
6014
|
-
|
|
6015
|
-
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
}, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "side")], 2)) : (0,external_vue_namespaceObject.createCommentVNode)("", true)])])], 2);
|
|
6028
|
+
function templatevue_type_template_id_65da37fa_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6029
|
+
const _component_cl_section_main = (0,external_vue_namespaceObject.resolveComponent)("cl-section-main");
|
|
6030
|
+
return (0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createBlock)(_component_cl_section_main, {
|
|
6031
|
+
class: (0,external_vue_namespaceObject.normalizeClass)(_ctx.sectionClass()),
|
|
6032
|
+
"no-col": ""
|
|
6033
|
+
}, {
|
|
6034
|
+
default: (0,external_vue_namespaceObject.withCtx)(() => [(0,external_vue_namespaceObject.createElementVNode)("div", {
|
|
6035
|
+
class: (0,external_vue_namespaceObject.normalizeClass)(_ctx.mainClass())
|
|
6036
|
+
}, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "default"), (0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "main")], 2), _ctx.$slots.side ? ((0,external_vue_namespaceObject.openBlock)(), (0,external_vue_namespaceObject.createElementBlock)("div", {
|
|
6037
|
+
key: 0,
|
|
6038
|
+
class: (0,external_vue_namespaceObject.normalizeClass)(_ctx.sideClass())
|
|
6039
|
+
}, [(0,external_vue_namespaceObject.renderSlot)(_ctx.$slots, "side")], 2)) : (0,external_vue_namespaceObject.createCommentVNode)("", true)]),
|
|
6040
|
+
_: 3
|
|
6041
|
+
}, 8, ["class"]);
|
|
6020
6042
|
}
|
|
6021
|
-
;// ./src/components/section/ClSectionMainSide/template.vue?vue&type=template&id=
|
|
6043
|
+
;// ./src/components/section/ClSectionMainSide/template.vue?vue&type=template&id=65da37fa&ts=true
|
|
6022
6044
|
|
|
6023
6045
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionMainSide/template.vue?vue&type=script&lang=ts
|
|
6024
6046
|
|
|
6047
|
+
|
|
6025
6048
|
/* harmony default export */ var ClSectionMainSide_templatevue_type_script_lang_ts = ((0,external_vue_namespaceObject.defineComponent)({
|
|
6026
6049
|
name: 'ClSectionMainSide',
|
|
6050
|
+
components: {
|
|
6051
|
+
ClSectionMain: ClSectionMain_template
|
|
6052
|
+
},
|
|
6027
6053
|
props: {
|
|
6028
6054
|
alternate: {
|
|
6029
6055
|
type: Boolean,
|
|
@@ -6054,7 +6080,7 @@ function templatevue_type_template_id_de5e151c_ts_true_render(_ctx, _cache, $pro
|
|
|
6054
6080
|
|
|
6055
6081
|
|
|
6056
6082
|
;
|
|
6057
|
-
const ClSectionMainSide_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMainSide_templatevue_type_script_lang_ts, [['render',
|
|
6083
|
+
const ClSectionMainSide_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMainSide_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_65da37fa_ts_true_render]])
|
|
6058
6084
|
|
|
6059
6085
|
/* harmony default export */ var ClSectionMainSide_template = (ClSectionMainSide_template_exports_);
|
|
6060
6086
|
;// ./src/components/section/ClSectionMainSide/index.ts
|