@castlabs/ui 4.20.4 → 4.21.0
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 +75 -55
- package/dist/castlabs-ui.common.js.map +1 -1
- package/dist/castlabs-ui.core.js +10 -2
- package/dist/castlabs-ui.css +2 -2
- package/dist/castlabs-ui.module.d.ts +1 -1
- package/dist/castlabs-ui.module.js +10 -2
- package/dist/castlabs-ui.umd.js +75 -55
- 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,20 @@ 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: clSort(dataCallback, keys[col], order),
|
|
846
|
+
sorted: clPaginate(clSort(dataCallback, keys[col], order), pageNoCallback(), pageSizeCallback()),
|
|
839
847
|
sortedOrder: order
|
|
840
848
|
}
|
|
841
849
|
}, 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.0" ?? 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
|
|
@@ -5848,18 +5851,19 @@ ClRole_template.install = Vue => {
|
|
|
5848
5851
|
Vue.component(ClRole_template.name ?? 'ClNoName', ClRole_template);
|
|
5849
5852
|
};
|
|
5850
5853
|
/* 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=
|
|
5854
|
+
;// ./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
5855
|
|
|
5853
|
-
const
|
|
5854
|
-
class: "cl-section-alternate"
|
|
5856
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_1 = {
|
|
5857
|
+
class: "cl-section-form cl-section-alternate"
|
|
5855
5858
|
};
|
|
5856
|
-
const
|
|
5857
|
-
const
|
|
5858
|
-
const
|
|
5859
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_2 = ["id"];
|
|
5860
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_3 = ["disabled"];
|
|
5861
|
+
const templatevue_type_template_id_9dfb2696_ts_true_hoisted_4 = {
|
|
5862
|
+
key: 1,
|
|
5859
5863
|
class: "col-12"
|
|
5860
5864
|
};
|
|
5861
|
-
function
|
|
5862
|
-
return (0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("section",
|
|
5865
|
+
function templatevue_type_template_id_9dfb2696_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5866
|
+
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
5867
|
id: _ctx.id,
|
|
5864
5868
|
novalidate: "",
|
|
5865
5869
|
class: "cl-form container",
|
|
@@ -5867,9 +5871,11 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5867
5871
|
}, [(0,external_vue_.createElementVNode)("fieldset", {
|
|
5868
5872
|
class: "row",
|
|
5869
5873
|
disabled: _ctx.disabled
|
|
5870
|
-
}, [
|
|
5874
|
+
}, [_ctx.noCol ? (0,external_vue_.renderSlot)(_ctx.$slots, "default", {
|
|
5875
|
+
key: 0
|
|
5876
|
+
}) : ((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
5877
|
}
|
|
5872
|
-
;// ./src/components/section/ClSectionForm/template.vue?vue&type=template&id=
|
|
5878
|
+
;// ./src/components/section/ClSectionForm/template.vue?vue&type=template&id=9dfb2696&ts=true
|
|
5873
5879
|
|
|
5874
5880
|
;// ./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
5881
|
|
|
@@ -5883,6 +5889,10 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5883
5889
|
disabled: {
|
|
5884
5890
|
type: Boolean,
|
|
5885
5891
|
default: false
|
|
5892
|
+
},
|
|
5893
|
+
noCol: {
|
|
5894
|
+
type: Boolean,
|
|
5895
|
+
default: false
|
|
5886
5896
|
}
|
|
5887
5897
|
}
|
|
5888
5898
|
}));
|
|
@@ -5894,7 +5904,7 @@ function templatevue_type_template_id_0bdb4477_ts_true_render(_ctx, _cache, $pro
|
|
|
5894
5904
|
|
|
5895
5905
|
|
|
5896
5906
|
;
|
|
5897
|
-
const ClSectionForm_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionForm_templatevue_type_script_lang_ts, [['render',
|
|
5907
|
+
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
5908
|
|
|
5899
5909
|
/* harmony default export */ var ClSectionForm_template = (ClSectionForm_template_exports_);
|
|
5900
5910
|
;// ./src/components/section/ClSectionForm/index.ts
|
|
@@ -5967,23 +5977,26 @@ ClSectionHeadline_template.install = Vue => {
|
|
|
5967
5977
|
Vue.component(ClSectionHeadline_template.name ?? 'ClNoName', ClSectionHeadline_template);
|
|
5968
5978
|
};
|
|
5969
5979
|
/* 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=
|
|
5980
|
+
;// ./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
5981
|
|
|
5972
|
-
const
|
|
5982
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_1 = {
|
|
5973
5983
|
class: "container"
|
|
5974
5984
|
};
|
|
5975
|
-
const
|
|
5985
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_2 = {
|
|
5976
5986
|
class: "row"
|
|
5977
5987
|
};
|
|
5978
|
-
const
|
|
5988
|
+
const templatevue_type_template_id_5057f370_ts_true_hoisted_3 = {
|
|
5989
|
+
key: 1,
|
|
5979
5990
|
class: "col-12"
|
|
5980
5991
|
};
|
|
5981
|
-
function
|
|
5992
|
+
function templatevue_type_template_id_5057f370_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5982
5993
|
return (0,external_vue_.openBlock)(), (0,external_vue_.createElementBlock)("section", {
|
|
5983
5994
|
class: (0,external_vue_.normalizeClass)(_ctx.sectionClass())
|
|
5984
|
-
}, [(0,external_vue_.createElementVNode)("div",
|
|
5995
|
+
}, [(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", {
|
|
5996
|
+
key: 0
|
|
5997
|
+
}) : ((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
5998
|
}
|
|
5986
|
-
;// ./src/components/section/ClSectionMain/template.vue?vue&type=template&id=
|
|
5999
|
+
;// ./src/components/section/ClSectionMain/template.vue?vue&type=template&id=5057f370&ts=true
|
|
5987
6000
|
|
|
5988
6001
|
;// ./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
6002
|
|
|
@@ -5993,6 +6006,10 @@ function templatevue_type_template_id_3ff520d4_ts_true_render(_ctx, _cache, $pro
|
|
|
5993
6006
|
alternate: {
|
|
5994
6007
|
type: Boolean,
|
|
5995
6008
|
default: false
|
|
6009
|
+
},
|
|
6010
|
+
noCol: {
|
|
6011
|
+
type: Boolean,
|
|
6012
|
+
default: false
|
|
5996
6013
|
}
|
|
5997
6014
|
},
|
|
5998
6015
|
methods: {
|
|
@@ -6009,7 +6026,7 @@ function templatevue_type_template_id_3ff520d4_ts_true_render(_ctx, _cache, $pro
|
|
|
6009
6026
|
|
|
6010
6027
|
|
|
6011
6028
|
;
|
|
6012
|
-
const ClSectionMain_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMain_templatevue_type_script_lang_ts, [['render',
|
|
6029
|
+
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
6030
|
|
|
6014
6031
|
/* harmony default export */ var ClSectionMain_template = (ClSectionMain_template_exports_);
|
|
6015
6032
|
;// ./src/components/section/ClSectionMain/index.ts
|
|
@@ -6018,30 +6035,33 @@ ClSectionMain_template.install = Vue => {
|
|
|
6018
6035
|
Vue.component(ClSectionMain_template.name ?? 'ClNoName', ClSectionMain_template);
|
|
6019
6036
|
};
|
|
6020
6037
|
/* 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=
|
|
6038
|
+
;// ./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
6039
|
|
|
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);
|
|
6040
|
+
function templatevue_type_template_id_65da37fa_ts_true_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6041
|
+
const _component_cl_section_main = (0,external_vue_.resolveComponent)("cl-section-main");
|
|
6042
|
+
return (0,external_vue_.openBlock)(), (0,external_vue_.createBlock)(_component_cl_section_main, {
|
|
6043
|
+
class: (0,external_vue_.normalizeClass)(_ctx.sectionClass()),
|
|
6044
|
+
"no-col": ""
|
|
6045
|
+
}, {
|
|
6046
|
+
default: (0,external_vue_.withCtx)(() => [(0,external_vue_.createElementVNode)("div", {
|
|
6047
|
+
class: (0,external_vue_.normalizeClass)(_ctx.mainClass())
|
|
6048
|
+
}, [(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", {
|
|
6049
|
+
key: 0,
|
|
6050
|
+
class: (0,external_vue_.normalizeClass)(_ctx.sideClass())
|
|
6051
|
+
}, [(0,external_vue_.renderSlot)(_ctx.$slots, "side")], 2)) : (0,external_vue_.createCommentVNode)("", true)]),
|
|
6052
|
+
_: 3
|
|
6053
|
+
}, 8, ["class"]);
|
|
6038
6054
|
}
|
|
6039
|
-
;// ./src/components/section/ClSectionMainSide/template.vue?vue&type=template&id=
|
|
6055
|
+
;// ./src/components/section/ClSectionMainSide/template.vue?vue&type=template&id=65da37fa&ts=true
|
|
6040
6056
|
|
|
6041
6057
|
;// ./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
6058
|
|
|
6059
|
+
|
|
6043
6060
|
/* harmony default export */ var ClSectionMainSide_templatevue_type_script_lang_ts = ((0,external_vue_.defineComponent)({
|
|
6044
6061
|
name: 'ClSectionMainSide',
|
|
6062
|
+
components: {
|
|
6063
|
+
ClSectionMain: ClSectionMain_template
|
|
6064
|
+
},
|
|
6045
6065
|
props: {
|
|
6046
6066
|
alternate: {
|
|
6047
6067
|
type: Boolean,
|
|
@@ -6072,7 +6092,7 @@ function templatevue_type_template_id_de5e151c_ts_true_render(_ctx, _cache, $pro
|
|
|
6072
6092
|
|
|
6073
6093
|
|
|
6074
6094
|
;
|
|
6075
|
-
const ClSectionMainSide_template_exports_ = /*#__PURE__*/(0,exportHelper/* default */.A)(ClSectionMainSide_templatevue_type_script_lang_ts, [['render',
|
|
6095
|
+
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
6096
|
|
|
6077
6097
|
/* harmony default export */ var ClSectionMainSide_template = (ClSectionMainSide_template_exports_);
|
|
6078
6098
|
;// ./src/components/section/ClSectionMainSide/index.ts
|