@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
|
@@ -47,7 +47,7 @@ declare module '@castlabs/ui/dist/castlabs-ui.module.js' {
|
|
|
47
47
|
initialCol?: number,
|
|
48
48
|
initialOrder?: string
|
|
49
49
|
): any
|
|
50
|
-
export function clTableSorterObjects<Type> (dataCallback: () => Type[], keys: string[], initialCol?: number): {
|
|
50
|
+
export function clTableSorterObjects<Type> (dataCallback: () => Type[], keys: string[], initialCol?: number, pageNoCallback?: () => number, pageSizeCallback?: () => number): {
|
|
51
51
|
col: number,
|
|
52
52
|
order: 'ASC' | 'DESC' | 'NONE',
|
|
53
53
|
set: (col: number, order: string) => void,
|
|
@@ -830,12 +830,24 @@ export function clTableSorter (sorter, initialCol = 0, initialOrder = 'ASC') {
|
|
|
830
830
|
* @param dataCallback Function that returns the to-be-sorted object array.
|
|
831
831
|
* @param keys Columns/keys in object to sort.
|
|
832
832
|
* @param initialCol Initial column to sort for.
|
|
833
|
+
* @param pageNo Pagination page, zero-based.
|
|
834
|
+
* @param pageSize Pagination page size, defaults to 'one big page'.
|
|
833
835
|
* @returns Object expeced by table sort.
|
|
834
836
|
*/
|
|
835
|
-
export function clTableSorterObjects (
|
|
837
|
+
export function clTableSorterObjects (
|
|
838
|
+
dataCallback,
|
|
839
|
+
keys,
|
|
840
|
+
initialCol = 0,
|
|
841
|
+
pageNoCallback = () => 0,
|
|
842
|
+
pageSizeCallback = () => Number.MAX_SAFE_INTEGER
|
|
843
|
+
) {
|
|
836
844
|
return clTableSorter((col, order) => {
|
|
837
845
|
return {
|
|
838
|
-
sorted:
|
|
846
|
+
sorted: clPaginate(
|
|
847
|
+
clSort(dataCallback, keys[col], order),
|
|
848
|
+
pageNoCallback(),
|
|
849
|
+
pageSizeCallback()
|
|
850
|
+
),
|
|
839
851
|
sortedOrder: order
|
|
840
852
|
}
|
|
841
853
|
}, initialCol)
|
package/dist/castlabs-ui.umd.js
CHANGED
|
@@ -672,7 +672,7 @@ module.exports = !fails(function () {
|
|
|
672
672
|
var NATIVE_BIND = __webpack_require__(616);
|
|
673
673
|
|
|
674
674
|
var call = Function.prototype.call;
|
|
675
|
-
|
|
675
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
676
676
|
module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
677
677
|
return call.apply(call, arguments);
|
|
678
678
|
};
|
|
@@ -733,6 +733,7 @@ var NATIVE_BIND = __webpack_require__(616);
|
|
|
733
733
|
|
|
734
734
|
var FunctionPrototype = Function.prototype;
|
|
735
735
|
var call = FunctionPrototype.call;
|
|
736
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
736
737
|
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
|
737
738
|
|
|
738
739
|
module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
@@ -1919,10 +1920,10 @@ var SHARED = '__core-js_shared__';
|
|
|
1919
1920
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
1920
1921
|
|
|
1921
1922
|
(store.versions || (store.versions = [])).push({
|
|
1922
|
-
version: '3.
|
|
1923
|
+
version: '3.40.0',
|
|
1923
1924
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1924
|
-
copyright: '© 2014-
|
|
1925
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
1925
|
+
copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru)',
|
|
1926
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.40.0/LICENSE',
|
|
1926
1927
|
source: 'https://github.com/zloirock/core-js'
|
|
1927
1928
|
});
|
|
1928
1929
|
|
|
@@ -2643,7 +2644,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2643
2644
|
name: 'ClUI',
|
|
2644
2645
|
computed: {
|
|
2645
2646
|
version: function () {
|
|
2646
|
-
return "4.
|
|
2647
|
+
return "4.21.1" ?? 0;
|
|
2647
2648
|
}
|
|
2648
2649
|
}
|
|
2649
2650
|
}));
|
|
@@ -3333,12 +3334,14 @@ function clTableSorter(sorter, initialCol = 0, initialOrder = 'ASC') {
|
|
|
3333
3334
|
* @param dataCallback Function that returns the to-be-sorted object array.
|
|
3334
3335
|
* @param keys Columns/keys in object to sort.
|
|
3335
3336
|
* @param initialCol Initial column to sort for.
|
|
3337
|
+
* @param pageNo Pagination page, zero-based.
|
|
3338
|
+
* @param pageSize Pagination page size, defaults to 'one big page'.
|
|
3336
3339
|
* @returns Object expeced by table sort.
|
|
3337
3340
|
*/
|
|
3338
|
-
function clTableSorterObjects(dataCallback, keys, initialCol = 0) {
|
|
3341
|
+
function clTableSorterObjects(dataCallback, keys, initialCol = 0, pageNoCallback = () => 0, pageSizeCallback = () => Number.MAX_SAFE_INTEGER) {
|
|
3339
3342
|
return clTableSorter((col, order) => {
|
|
3340
3343
|
return {
|
|
3341
|
-
sorted: clSort(dataCallback, keys[col], order),
|
|
3344
|
+
sorted: clPaginate(clSort(dataCallback, keys[col], order), pageNoCallback(), pageSizeCallback()),
|
|
3342
3345
|
sortedOrder: order
|
|
3343
3346
|
};
|
|
3344
3347
|
}, initialCol);
|
|
@@ -4063,15 +4066,15 @@ ClDropzone_template.install = Vue => {
|
|
|
4063
4066
|
Vue.component(ClDropzone_template.name ?? 'ClNoName', ClDropzone_template);
|
|
4064
4067
|
};
|
|
4065
4068
|
/* harmony default export */ var ClDropzone = (ClDropzone_template);
|
|
4066
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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=
|
|
4069
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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
|
|
4067
4070
|
|
|
4068
|
-
const
|
|
4069
|
-
const
|
|
4071
|
+
const templatevue_type_template_id_56c2f246_ts_true_hoisted_1 = ["for"];
|
|
4072
|
+
const templatevue_type_template_id_56c2f246_ts_true_hoisted_2 = {
|
|
4070
4073
|
key: 0,
|
|
4071
4074
|
class: "required"
|
|
4072
4075
|
};
|
|
4073
|
-
const
|
|
4074
|
-
const
|
|
4076
|
+
const templatevue_type_template_id_56c2f246_ts_true_hoisted_3 = ["id", "disabled", "required", "autofocus", "placeholder"];
|
|
4077
|
+
const templatevue_type_template_id_56c2f246_ts_true_hoisted_4 = ["id", "disabled", "required", "autofocus"];
|
|
4075
4078
|
const _hoisted_5 = ["id", "type", "placeholder", "minlength", "maxlength", "pattern", "disabled", "required", "autofocus"];
|
|
4076
4079
|
const _hoisted_6 = ["id", "for"];
|
|
4077
4080
|
const _hoisted_7 = {
|
|
@@ -4081,14 +4084,14 @@ const _hoisted_8 = {
|
|
|
4081
4084
|
key: 1,
|
|
4082
4085
|
class: "valid-feedback valid-feedback-none"
|
|
4083
4086
|
};
|
|
4084
|
-
function
|
|
4087
|
+
function templatevue_type_template_id_56c2f246_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
4085
4088
|
return (0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)(external_vue_.Fragment, null, [_ctx.label ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("label", {
|
|
4086
4089
|
key: 0,
|
|
4087
4090
|
for: _ctx.$uid,
|
|
4088
4091
|
class: (0,external_vue_.normalizeClass)(["form-label", {
|
|
4089
4092
|
disabled: _ctx.disabled
|
|
4090
4093
|
}])
|
|
4091
|
-
}, [(0,external_vue_.createTextVNode)((0,external_vue_.toDisplayString)(_ctx.label), 1), _ctx.required ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("span",
|
|
4094
|
+
}, [(0,external_vue_.createTextVNode)((0,external_vue_.toDisplayString)(_ctx.label), 1), _ctx.required ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("span", templatevue_type_template_id_56c2f246_ts_true_hoisted_2, "*")) : (0,external_vue_.createCommentVNode)("", true)], 10, templatevue_type_template_id_56c2f246_ts_true_hoisted_1)) : (0,external_vue_.createCommentVNode)("", true), _ctx.type === 'textarea' ? (0,external_vue_.withDirectives)(((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("textarea", (0,external_vue_.mergeProps)({
|
|
4092
4095
|
key: 1,
|
|
4093
4096
|
id: _ctx.$uid
|
|
4094
4097
|
}, _ctx.$attrs, {
|
|
@@ -4102,7 +4105,7 @@ function templatevue_type_template_id_18037b9c_ts_true_render(_ctx, _cache, $pro
|
|
|
4102
4105
|
onInput: _cache[1] || (_cache[1] = $event => _ctx.validate()),
|
|
4103
4106
|
onChange: _cache[2] || (_cache[2] = $event => _ctx.validate()),
|
|
4104
4107
|
onBlur: _cache[3] || (_cache[3] = $event => _ctx.validate(true))
|
|
4105
|
-
}), null, 16,
|
|
4108
|
+
}), null, 16, templatevue_type_template_id_56c2f246_ts_true_hoisted_3)), [[external_vue_.vModelText, _ctx.modelValue]]) : _ctx.type === 'select' ? (0,external_vue_.withDirectives)(((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("select", (0,external_vue_.mergeProps)({
|
|
4106
4109
|
key: 2,
|
|
4107
4110
|
id: _ctx.$uid,
|
|
4108
4111
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => _ctx.modelValue = $event),
|
|
@@ -4114,7 +4117,7 @@ function templatevue_type_template_id_18037b9c_ts_true_render(_ctx, _cache, $pro
|
|
|
4114
4117
|
onInput: _cache[5] || (_cache[5] = $event => _ctx.validate()),
|
|
4115
4118
|
onChange: _cache[6] || (_cache[6] = $event => _ctx.validate()),
|
|
4116
4119
|
onBlur: _cache[7] || (_cache[7] = $event => _ctx.validate(true))
|
|
4117
|
-
}), [(0,external_vue_.renderSlot)(_ctx.$slots, "default")], 16,
|
|
4120
|
+
}), [(0,external_vue_.renderSlot)(_ctx.$slots, "default")], 16, templatevue_type_template_id_56c2f246_ts_true_hoisted_4)), [[external_vue_.vModelSelect, _ctx.modelValue]]) : (0,external_vue_.withDirectives)(((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("input", (0,external_vue_.mergeProps)({
|
|
4118
4121
|
key: 3,
|
|
4119
4122
|
id: _ctx.$uid
|
|
4120
4123
|
}, _ctx.$attrs, {
|
|
@@ -4146,7 +4149,7 @@ function templatevue_type_template_id_18037b9c_ts_true_render(_ctx, _cache, $pro
|
|
|
4146
4149
|
}])
|
|
4147
4150
|
}, (0,external_vue_.toDisplayString)(_ctx.help), 3)) : ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("p", _hoisted_8))], 64)) : (0,external_vue_.createCommentVNode)("", true)], 64);
|
|
4148
4151
|
}
|
|
4149
|
-
;// ./src/components/form/ClField/template.vue?vue&type=template&id=
|
|
4152
|
+
;// ./src/components/form/ClField/template.vue?vue&type=template&id=56c2f246&ts=true
|
|
4150
4153
|
|
|
4151
4154
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/form/ClField/template.vue?vue&type=script&lang=ts
|
|
4152
4155
|
|
|
@@ -4322,7 +4325,7 @@ function templatevue_type_template_id_18037b9c_ts_true_render(_ctx, _cache, $pro
|
|
|
4322
4325
|
|
|
4323
4326
|
|
|
4324
4327
|
;
|
|
4325
|
-
const ClField_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClField_templatevue_type_script_lang_ts, [['render',
|
|
4328
|
+
const ClField_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClField_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_56c2f246_ts_true_render]])
|
|
4326
4329
|
|
|
4327
4330
|
/* harmony default export */ var ClField_template = (ClField_template_exports_);
|
|
4328
4331
|
;// ./src/components/form/ClField/index.ts
|
|
@@ -5175,20 +5178,21 @@ ClModalConfirm_template.install = Vue => {
|
|
|
5175
5178
|
Vue.component(ClModalConfirm_template.name ?? 'ClNoName', ClModalConfirm_template);
|
|
5176
5179
|
};
|
|
5177
5180
|
/* harmony default export */ var ClModalConfirm = (ClModalConfirm_template);
|
|
5178
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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=
|
|
5181
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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
|
|
5179
5182
|
|
|
5180
|
-
const
|
|
5183
|
+
const templatevue_type_template_id_59bd2f86_ts_true_hoisted_1 = {
|
|
5181
5184
|
key: 0,
|
|
5182
5185
|
class: "fas fa-angle-left"
|
|
5183
5186
|
};
|
|
5184
|
-
const
|
|
5187
|
+
const templatevue_type_template_id_59bd2f86_ts_true_hoisted_2 = {
|
|
5185
5188
|
key: 0,
|
|
5186
5189
|
class: "fas fa-angle-right"
|
|
5187
5190
|
};
|
|
5188
|
-
function
|
|
5191
|
+
function templatevue_type_template_id_59bd2f86_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5189
5192
|
const _component_cl_modal = (0,external_vue_.resolveComponent)("cl-modal");
|
|
5190
5193
|
return (0,external_vue_.openBlock)(), (0,external_vue_.createBlock)(_component_cl_modal, {
|
|
5191
5194
|
id: _ctx.id,
|
|
5195
|
+
form: _ctx.form,
|
|
5192
5196
|
"on-open": _ctx.opened,
|
|
5193
5197
|
"on-close": _ctx.closed
|
|
5194
5198
|
}, {
|
|
@@ -5201,7 +5205,7 @@ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $pro
|
|
|
5201
5205
|
onClick: _cache[0] || (_cache[0] =
|
|
5202
5206
|
//@ts-ignore
|
|
5203
5207
|
(...args) => _ctx.buttonCancel && _ctx.buttonCancel(...args))
|
|
5204
|
-
}, [_ctx.angles ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("i",
|
|
5208
|
+
}, [_ctx.angles ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("i", templatevue_type_template_id_59bd2f86_ts_true_hoisted_1)) : (0,external_vue_.createCommentVNode)("", true), (0,external_vue_.createElementVNode)("span", null, (0,external_vue_.toDisplayString)(_ctx.cancel), 1)])) : (0,external_vue_.createCommentVNode)("", true)]),
|
|
5205
5209
|
"footer-right": (0,external_vue_.withCtx)(() => [(0,external_vue_.createElementVNode)("button", {
|
|
5206
5210
|
type: "button",
|
|
5207
5211
|
class: (0,external_vue_.normalizeClass)(["btn it-ok", {
|
|
@@ -5212,11 +5216,11 @@ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $pro
|
|
|
5212
5216
|
onClick: _cache[1] || (_cache[1] =
|
|
5213
5217
|
//@ts-ignore
|
|
5214
5218
|
(...args) => _ctx.buttonOk && _ctx.buttonOk(...args))
|
|
5215
|
-
}, [(0,external_vue_.createElementVNode)("span", null, (0,external_vue_.toDisplayString)(_ctx.ok ?? _ctx.button), 1), _ctx.angles ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("i",
|
|
5219
|
+
}, [(0,external_vue_.createElementVNode)("span", null, (0,external_vue_.toDisplayString)(_ctx.ok ?? _ctx.button), 1), _ctx.angles ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("i", templatevue_type_template_id_59bd2f86_ts_true_hoisted_2)) : (0,external_vue_.createCommentVNode)("", true)], 2)]),
|
|
5216
5220
|
_: 3
|
|
5217
|
-
}, 8, ["id", "on-open", "on-close"]);
|
|
5221
|
+
}, 8, ["id", "form", "on-open", "on-close"]);
|
|
5218
5222
|
}
|
|
5219
|
-
;// ./src/components/modal/ClModalOk/template.vue?vue&type=template&id=
|
|
5223
|
+
;// ./src/components/modal/ClModalOk/template.vue?vue&type=template&id=59bd2f86&ts=true
|
|
5220
5224
|
|
|
5221
5225
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/modal/ClModalOk/template.vue?vue&type=script&lang=ts
|
|
5222
5226
|
|
|
@@ -5233,6 +5237,11 @@ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $pro
|
|
|
5233
5237
|
type: String,
|
|
5234
5238
|
default: 'Information'
|
|
5235
5239
|
},
|
|
5240
|
+
form: {
|
|
5241
|
+
// if true, the modal will render a <form> as body
|
|
5242
|
+
type: Boolean,
|
|
5243
|
+
default: false
|
|
5244
|
+
},
|
|
5236
5245
|
body: {
|
|
5237
5246
|
type: String,
|
|
5238
5247
|
default: undefined
|
|
@@ -5306,7 +5315,7 @@ function templatevue_type_template_id_0cffa84a_ts_true_render(_ctx, _cache, $pro
|
|
|
5306
5315
|
|
|
5307
5316
|
|
|
5308
5317
|
;
|
|
5309
|
-
const ClModalOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalOk_templatevue_type_script_lang_ts, [['render',
|
|
5318
|
+
const ClModalOk_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClModalOk_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_59bd2f86_ts_true_render]])
|
|
5310
5319
|
|
|
5311
5320
|
/* harmony default export */ var ClModalOk_template = (ClModalOk_template_exports_);
|
|
5312
5321
|
;// ./src/components/modal/ClModalOk/index.ts
|
|
@@ -5848,18 +5857,19 @@ ClRole_template.install = Vue => {
|
|
|
5848
5857
|
Vue.component(ClRole_template.name ?? 'ClNoName', ClRole_template);
|
|
5849
5858
|
};
|
|
5850
5859
|
/* harmony default export */ var ClRole = (ClRole_template);
|
|
5851
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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=
|
|
5860
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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
|
|
5852
5861
|
|
|
5853
|
-
const
|
|
5854
|
-
class: "cl-section-alternate"
|
|
5862
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_1 = {
|
|
5863
|
+
class: "cl-section-form cl-section-alternate"
|
|
5855
5864
|
};
|
|
5856
|
-
const
|
|
5857
|
-
const
|
|
5858
|
-
const
|
|
5865
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_2 = ["id"];
|
|
5866
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_3 = ["disabled"];
|
|
5867
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_4 = {
|
|
5868
|
+
key: 1,
|
|
5859
5869
|
class: "col-12"
|
|
5860
5870
|
};
|
|
5861
|
-
function
|
|
5862
|
-
return (0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("section",
|
|
5871
|
+
function templatevue_type_template_id_9dfb2696_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5872
|
+
return (0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("section", templatevue_type_template_id_9dfb2696_ts_true_hoisted_1, [(0,external_vue_.createElementVNode)("form", {
|
|
5863
5873
|
id: _ctx.id,
|
|
5864
5874
|
novalidate: "",
|
|
5865
5875
|
class: "cl-form container",
|
|
@@ -5867,9 +5877,11 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5867
5877
|
}, [(0,external_vue_.createElementVNode)("fieldset", {
|
|
5868
5878
|
class: "row",
|
|
5869
5879
|
disabled: _ctx.disabled
|
|
5870
|
-
}, [
|
|
5880
|
+
}, [_ctx.noCol ? (0,external_vue_.renderSlot)(_ctx.$slots, "default", {
|
|
5881
|
+
key: 0
|
|
5882
|
+
}) : ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("div", templatevue_type_template_id_9dfb2696_ts_true_hoisted_4, [(0,external_vue_.renderSlot)(_ctx.$slots, "default")]))], 8, templatevue_type_template_id_9dfb2696_ts_true_hoisted_3)], 40, templatevue_type_template_id_9dfb2696_ts_true_hoisted_2)]);
|
|
5871
5883
|
}
|
|
5872
|
-
;// ./src/components/section/ClSectionForm/template.vue?vue&type=template&id=
|
|
5884
|
+
;// ./src/components/section/ClSectionForm/template.vue?vue&type=template&id=9dfb2696&ts=true
|
|
5873
5885
|
|
|
5874
5886
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionForm/template.vue?vue&type=script&lang=ts
|
|
5875
5887
|
|
|
@@ -5883,6 +5895,10 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5883
5895
|
disabled: {
|
|
5884
5896
|
type: Boolean,
|
|
5885
5897
|
default: false
|
|
5898
|
+
},
|
|
5899
|
+
noCol: {
|
|
5900
|
+
type: Boolean,
|
|
5901
|
+
default: false
|
|
5886
5902
|
}
|
|
5887
5903
|
}
|
|
5888
5904
|
}));
|
|
@@ -5894,7 +5910,7 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5894
5910
|
|
|
5895
5911
|
|
|
5896
5912
|
;
|
|
5897
|
-
const ClSectionForm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionForm_templatevue_type_script_lang_ts, [['render',
|
|
5913
|
+
const ClSectionForm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionForm_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_9dfb2696_ts_true_render]])
|
|
5898
5914
|
|
|
5899
5915
|
/* harmony default export */ var ClSectionForm_template = (ClSectionForm_template_exports_);
|
|
5900
5916
|
;// ./src/components/section/ClSectionForm/index.ts
|
|
@@ -5967,23 +5983,26 @@ ClSectionHeadline_template.install = Vue => {
|
|
|
5967
5983
|
Vue.component(ClSectionHeadline_template.name ?? 'ClNoName', ClSectionHeadline_template);
|
|
5968
5984
|
};
|
|
5969
5985
|
/* harmony default export */ var ClSectionHeadline = (ClSectionHeadline_template);
|
|
5970
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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=
|
|
5986
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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
|
|
5971
5987
|
|
|
5972
|
-
const
|
|
5988
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_1 = {
|
|
5973
5989
|
class: "container"
|
|
5974
5990
|
};
|
|
5975
|
-
const
|
|
5991
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_2 = {
|
|
5976
5992
|
class: "row"
|
|
5977
5993
|
};
|
|
5978
|
-
const
|
|
5994
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_3 = {
|
|
5995
|
+
key: 1,
|
|
5979
5996
|
class: "col-12"
|
|
5980
5997
|
};
|
|
5981
|
-
function
|
|
5998
|
+
function templatevue_type_template_id_5057f370_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5982
5999
|
return (0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("section", {
|
|
5983
6000
|
class: (0,external_vue_.normalizeClass)(_ctx.sectionClass())
|
|
5984
|
-
}, [(0,external_vue_.createElementVNode)("div",
|
|
6001
|
+
}, [(0,external_vue_.createElementVNode)("div", templatevue_type_template_id_5057f370_ts_true_hoisted_1, [(0,external_vue_.createElementVNode)("div", templatevue_type_template_id_5057f370_ts_true_hoisted_2, [_ctx.noCol ? (0,external_vue_.renderSlot)(_ctx.$slots, "default", {
|
|
6002
|
+
key: 0
|
|
6003
|
+
}) : ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("div", templatevue_type_template_id_5057f370_ts_true_hoisted_3, [(0,external_vue_.renderSlot)(_ctx.$slots, "default")]))])])], 2);
|
|
5985
6004
|
}
|
|
5986
|
-
;// ./src/components/section/ClSectionMain/template.vue?vue&type=template&id=
|
|
6005
|
+
;// ./src/components/section/ClSectionMain/template.vue?vue&type=template&id=5057f370&ts=true
|
|
5987
6006
|
|
|
5988
6007
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionMain/template.vue?vue&type=script&lang=ts
|
|
5989
6008
|
|
|
@@ -5993,6 +6012,10 @@ function templatevue_type_template_id_3ff520d4_ts_true_render(_ctx, _cache, $pro
|
|
|
5993
6012
|
alternate: {
|
|
5994
6013
|
type: Boolean,
|
|
5995
6014
|
default: false
|
|
6015
|
+
},
|
|
6016
|
+
noCol: {
|
|
6017
|
+
type: Boolean,
|
|
6018
|
+
default: false
|
|
5996
6019
|
}
|
|
5997
6020
|
},
|
|
5998
6021
|
methods: {
|
|
@@ -6009,7 +6032,7 @@ function templatevue_type_template_id_3ff520d4_ts_true_render(_ctx, _cache, $pro
|
|
|
6009
6032
|
|
|
6010
6033
|
|
|
6011
6034
|
;
|
|
6012
|
-
const ClSectionMain_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMain_templatevue_type_script_lang_ts, [['render',
|
|
6035
|
+
const ClSectionMain_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMain_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_5057f370_ts_true_render]])
|
|
6013
6036
|
|
|
6014
6037
|
/* harmony default export */ var ClSectionMain_template = (ClSectionMain_template_exports_);
|
|
6015
6038
|
;// ./src/components/section/ClSectionMain/index.ts
|
|
@@ -6018,30 +6041,33 @@ ClSectionMain_template.install = Vue => {
|
|
|
6018
6041
|
Vue.component(ClSectionMain_template.name ?? 'ClNoName', ClSectionMain_template);
|
|
6019
6042
|
};
|
|
6020
6043
|
/* harmony default export */ var ClSectionMain = (ClSectionMain_template);
|
|
6021
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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=
|
|
6044
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.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
|
|
6022
6045
|
|
|
6023
|
-
|
|
6024
|
-
|
|
6025
|
-
|
|
6026
|
-
|
|
6027
|
-
|
|
6028
|
-
}
|
|
6029
|
-
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
|
|
6036
|
-
|
|
6037
|
-
}, [(0,external_vue_.renderSlot)(_ctx.$slots, "side")], 2)) : (0,external_vue_.createCommentVNode)("", true)])])], 2);
|
|
6046
|
+
function templatevue_type_template_id_65da37fa_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6047
|
+
const _component_cl_section_main = (0,external_vue_.resolveComponent)("cl-section-main");
|
|
6048
|
+
return (0,external_vue_.openBlock)(), (0,external_vue_.createBlock)(_component_cl_section_main, {
|
|
6049
|
+
class: (0,external_vue_.normalizeClass)(_ctx.sectionClass()),
|
|
6050
|
+
"no-col": ""
|
|
6051
|
+
}, {
|
|
6052
|
+
default: (0,external_vue_.withCtx)(() => [(0,external_vue_.createElementVNode)("div", {
|
|
6053
|
+
class: (0,external_vue_.normalizeClass)(_ctx.mainClass())
|
|
6054
|
+
}, [(0,external_vue_.renderSlot)(_ctx.$slots, "default"), (0,external_vue_.renderSlot)(_ctx.$slots, "main")], 2), _ctx.$slots.side ? ((0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("div", {
|
|
6055
|
+
key: 0,
|
|
6056
|
+
class: (0,external_vue_.normalizeClass)(_ctx.sideClass())
|
|
6057
|
+
}, [(0,external_vue_.renderSlot)(_ctx.$slots, "side")], 2)) : (0,external_vue_.createCommentVNode)("", true)]),
|
|
6058
|
+
_: 3
|
|
6059
|
+
}, 8, ["class"]);
|
|
6038
6060
|
}
|
|
6039
|
-
;// ./src/components/section/ClSectionMainSide/template.vue?vue&type=template&id=
|
|
6061
|
+
;// ./src/components/section/ClSectionMainSide/template.vue?vue&type=template&id=65da37fa&ts=true
|
|
6040
6062
|
|
|
6041
6063
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-86.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/section/ClSectionMainSide/template.vue?vue&type=script&lang=ts
|
|
6042
6064
|
|
|
6065
|
+
|
|
6043
6066
|
/* harmony default export */ var ClSectionMainSide_templatevue_type_script_lang_ts = ((0,external_vue_.defineComponent)({
|
|
6044
6067
|
name: 'ClSectionMainSide',
|
|
6068
|
+
components: {
|
|
6069
|
+
ClSectionMain: ClSectionMain_template
|
|
6070
|
+
},
|
|
6045
6071
|
props: {
|
|
6046
6072
|
alternate: {
|
|
6047
6073
|
type: Boolean,
|
|
@@ -6072,7 +6098,7 @@ function templatevue_type_template_id_de5e151c_ts_true_render(_ctx, _cache, $pro
|
|
|
6072
6098
|
|
|
6073
6099
|
|
|
6074
6100
|
;
|
|
6075
|
-
const ClSectionMainSide_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMainSide_templatevue_type_script_lang_ts, [['render',
|
|
6101
|
+
const ClSectionMainSide_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMainSide_templatevue_type_script_lang_ts, [['render',templatevue_type_template_id_65da37fa_ts_true_render]])
|
|
6076
6102
|
|
|
6077
6103
|
/* harmony default export */ var ClSectionMainSide_template = (ClSectionMainSide_template_exports_);
|
|
6078
6104
|
;// ./src/components/section/ClSectionMainSide/index.ts
|