@citizenplane/pimp 6.5.1 → 6.6.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/pimp.common.js +903 -876
- package/dist/pimp.common.js.map +1 -1
- package/dist/pimp.css +1 -1
- package/dist/pimp.umd.js +903 -876
- package/dist/pimp.umd.js.map +1 -1
- package/dist/pimp.umd.min.js +1 -1
- package/dist/pimp.umd.min.js.map +1 -1
- package/package-lock.json +50 -634
- package/package.json +1 -7
- package/src/components/atomic-elements/CpBadge.vue +82 -37
- package/src/components/core/playground-sections/SectionAtomicElements.vue +16 -4
- package/src/components/inputs/CpInput.vue +4 -1
- package/src/components/inputs/CpTextarea.vue +4 -1
- package/src/components/selects/CpSelect.vue +4 -1
package/dist/pimp.umd.js
CHANGED
|
@@ -13250,12 +13250,12 @@ var es_object_keys = __webpack_require__("b64b");
|
|
|
13250
13250
|
// EXTERNAL MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
|
|
13251
13251
|
var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__("8bbf");
|
|
13252
13252
|
|
|
13253
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13254
|
-
var
|
|
13253
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/atomic-elements/CpBadge.vue?vue&type=template&id=2a601aa2&
|
|
13254
|
+
var CpBadgevue_type_template_id_2a601aa2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpBadge",class:_vm.computedClasses},[_c('span',{staticClass:"cpBadge__label"},[_vm._v(_vm._s(_vm.label))]),(_vm.isClearable)?_c('button',{staticClass:"cpBadge__clear",attrs:{"type":"button"},on:{"click":_vm.onClear}},[_c('x-icon',{staticClass:"cpBadge__icon"})],1):_vm._e()])}
|
|
13255
13255
|
var staticRenderFns = []
|
|
13256
13256
|
|
|
13257
13257
|
|
|
13258
|
-
// CONCATENATED MODULE: ./src/components/atomic-elements/CpBadge.vue?vue&type=template&id=
|
|
13258
|
+
// CONCATENATED MODULE: ./src/components/atomic-elements/CpBadge.vue?vue&type=template&id=2a601aa2&
|
|
13259
13259
|
|
|
13260
13260
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.includes.js
|
|
13261
13261
|
var es_array_includes = __webpack_require__("caad");
|
|
@@ -13263,662 +13263,103 @@ var es_array_includes = __webpack_require__("caad");
|
|
|
13263
13263
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.number.constructor.js
|
|
13264
13264
|
var es_number_constructor = __webpack_require__("a9e3");
|
|
13265
13265
|
|
|
13266
|
-
// EXTERNAL MODULE: ./node_modules/
|
|
13267
|
-
var
|
|
13268
|
-
|
|
13269
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
|
|
13270
|
-
var es_regexp_to_string = __webpack_require__("25f0");
|
|
13271
|
-
|
|
13272
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.slice.js
|
|
13273
|
-
var es_array_slice = __webpack_require__("fb6a");
|
|
13274
|
-
|
|
13275
|
-
// EXTERNAL MODULE: ./node_modules/luxon/build/cjs-browser/luxon.js
|
|
13276
|
-
var luxon = __webpack_require__("1315");
|
|
13277
|
-
|
|
13278
|
-
// CONCATENATED MODULE: ./src/helpers/index.js
|
|
13279
|
-
|
|
13280
|
-
|
|
13281
|
-
|
|
13282
|
-
|
|
13283
|
-
var randomString = function randomString() {
|
|
13284
|
-
return "_".concat(Math.random().toString(36).substr(2, 9));
|
|
13285
|
-
};
|
|
13286
|
-
var helpers_formatDates = function formatDates(dateOne, dateTwo, format) {
|
|
13287
|
-
var formattedDates = '';
|
|
13288
|
-
|
|
13289
|
-
if (dateOne) {
|
|
13290
|
-
formattedDates = luxon["DateTime"].fromISO(dateOne).toFormat(format);
|
|
13291
|
-
}
|
|
13292
|
-
|
|
13293
|
-
if (dateTwo) {
|
|
13294
|
-
formattedDates += ' - ' + luxon["DateTime"].fromISO(dateTwo).toFormat(format);
|
|
13295
|
-
}
|
|
13296
|
-
|
|
13297
|
-
return formattedDates;
|
|
13298
|
-
};
|
|
13299
|
-
var capitalizeFirstLetter = function capitalizeFirstLetter(rawString) {
|
|
13300
|
-
if (typeof rawString !== 'string') return '';
|
|
13301
|
-
return rawString.charAt(0).toUpperCase() + rawString.slice(1);
|
|
13302
|
-
};
|
|
13303
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/atomic-elements/CpBadge.vue?vue&type=script&lang=js&
|
|
13266
|
+
// EXTERNAL MODULE: ./node_modules/babel-helper-vue-jsx-merge-props/index.js
|
|
13267
|
+
var babel_helper_vue_jsx_merge_props = __webpack_require__("92fa");
|
|
13268
|
+
var babel_helper_vue_jsx_merge_props_default = /*#__PURE__*/__webpack_require__.n(babel_helper_vue_jsx_merge_props);
|
|
13304
13269
|
|
|
13270
|
+
// CONCATENATED MODULE: ./node_modules/vue-feather-icons/dist/vue-feather-icons.es.js
|
|
13305
13271
|
|
|
13306
|
-
//
|
|
13307
|
-
//
|
|
13308
|
-
//
|
|
13309
|
-
//
|
|
13310
|
-
//
|
|
13311
|
-
//
|
|
13312
13272
|
|
|
13313
|
-
var
|
|
13314
|
-
|
|
13273
|
+
var ActivityIcon = {
|
|
13274
|
+
name: 'ActivityIcon',
|
|
13315
13275
|
props: {
|
|
13316
|
-
|
|
13276
|
+
size: {
|
|
13317
13277
|
type: String,
|
|
13318
|
-
|
|
13319
|
-
validator: function validator(
|
|
13320
|
-
return
|
|
13278
|
+
default: '24',
|
|
13279
|
+
validator: function validator(s) {
|
|
13280
|
+
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
13321
13281
|
}
|
|
13322
|
-
},
|
|
13323
|
-
label: {
|
|
13324
|
-
type: [String, Number],
|
|
13325
|
-
required: true
|
|
13326
|
-
},
|
|
13327
|
-
isSolid: {
|
|
13328
|
-
type: Boolean,
|
|
13329
|
-
default: false,
|
|
13330
|
-
required: false
|
|
13331
|
-
},
|
|
13332
|
-
isPlain: {
|
|
13333
|
-
type: Boolean,
|
|
13334
|
-
default: false,
|
|
13335
|
-
required: false
|
|
13336
13282
|
}
|
|
13337
13283
|
},
|
|
13338
|
-
|
|
13339
|
-
|
|
13340
|
-
|
|
13341
|
-
}
|
|
13342
|
-
|
|
13343
|
-
|
|
13344
|
-
|
|
13345
|
-
|
|
13346
|
-
|
|
13347
|
-
|
|
13348
|
-
|
|
13349
|
-
|
|
13350
|
-
|
|
13351
|
-
|
|
13352
|
-
|
|
13353
|
-
|
|
13354
|
-
|
|
13355
|
-
|
|
13356
|
-
|
|
13357
|
-
|
|
13358
|
-
|
|
13359
|
-
|
|
13360
|
-
|
|
13361
|
-
|
|
13362
|
-
|
|
13363
|
-
functionalTemplate,
|
|
13364
|
-
injectStyles,
|
|
13365
|
-
scopeId,
|
|
13366
|
-
moduleIdentifier, /* server only */
|
|
13367
|
-
shadowMode /* vue-cli only */
|
|
13368
|
-
) {
|
|
13369
|
-
// Vue.extend constructor export interop
|
|
13370
|
-
var options = typeof scriptExports === 'function'
|
|
13371
|
-
? scriptExports.options
|
|
13372
|
-
: scriptExports
|
|
13373
|
-
|
|
13374
|
-
// render functions
|
|
13375
|
-
if (render) {
|
|
13376
|
-
options.render = render
|
|
13377
|
-
options.staticRenderFns = staticRenderFns
|
|
13378
|
-
options._compiled = true
|
|
13379
|
-
}
|
|
13380
|
-
|
|
13381
|
-
// functional template
|
|
13382
|
-
if (functionalTemplate) {
|
|
13383
|
-
options.functional = true
|
|
13384
|
-
}
|
|
13385
|
-
|
|
13386
|
-
// scopedId
|
|
13387
|
-
if (scopeId) {
|
|
13388
|
-
options._scopeId = 'data-v-' + scopeId
|
|
13284
|
+
functional: true,
|
|
13285
|
+
render: function render(h, ctx) {
|
|
13286
|
+
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
13287
|
+
var attrs = ctx.data.attrs || {};
|
|
13288
|
+
attrs.width = attrs.width || size;
|
|
13289
|
+
attrs.height = attrs.height || size;
|
|
13290
|
+
ctx.data.attrs = attrs;
|
|
13291
|
+
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
13292
|
+
attrs: {
|
|
13293
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13294
|
+
width: "24",
|
|
13295
|
+
height: "24",
|
|
13296
|
+
viewBox: "0 0 24 24",
|
|
13297
|
+
fill: "none",
|
|
13298
|
+
stroke: "currentColor",
|
|
13299
|
+
"stroke-width": "2",
|
|
13300
|
+
"stroke-linecap": "round",
|
|
13301
|
+
"stroke-linejoin": "round"
|
|
13302
|
+
},
|
|
13303
|
+
"class": "feather feather-activity"
|
|
13304
|
+
}, ctx.data]), [h("polyline", {
|
|
13305
|
+
attrs: {
|
|
13306
|
+
points: "22 12 18 12 15 21 9 3 6 12 2 12"
|
|
13307
|
+
}
|
|
13308
|
+
})]);
|
|
13389
13309
|
}
|
|
13310
|
+
};
|
|
13390
13311
|
|
|
13391
|
-
|
|
13392
|
-
|
|
13393
|
-
|
|
13394
|
-
|
|
13395
|
-
|
|
13396
|
-
|
|
13397
|
-
|
|
13398
|
-
(
|
|
13399
|
-
// 2.2 with runInNewContext: true
|
|
13400
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
13401
|
-
context = __VUE_SSR_CONTEXT__
|
|
13402
|
-
}
|
|
13403
|
-
// inject component styles
|
|
13404
|
-
if (injectStyles) {
|
|
13405
|
-
injectStyles.call(this, context)
|
|
13406
|
-
}
|
|
13407
|
-
// register component module identifier for async chunk inferrence
|
|
13408
|
-
if (context && context._registeredComponents) {
|
|
13409
|
-
context._registeredComponents.add(moduleIdentifier)
|
|
13312
|
+
var AirplayIcon = {
|
|
13313
|
+
name: 'AirplayIcon',
|
|
13314
|
+
props: {
|
|
13315
|
+
size: {
|
|
13316
|
+
type: String,
|
|
13317
|
+
default: '24',
|
|
13318
|
+
validator: function validator(s) {
|
|
13319
|
+
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
13410
13320
|
}
|
|
13411
13321
|
}
|
|
13412
|
-
|
|
13413
|
-
|
|
13414
|
-
|
|
13415
|
-
|
|
13416
|
-
|
|
13417
|
-
|
|
13418
|
-
|
|
13419
|
-
|
|
13420
|
-
|
|
13421
|
-
|
|
13322
|
+
},
|
|
13323
|
+
functional: true,
|
|
13324
|
+
render: function render(h, ctx) {
|
|
13325
|
+
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
13326
|
+
var attrs = ctx.data.attrs || {};
|
|
13327
|
+
attrs.width = attrs.width || size;
|
|
13328
|
+
attrs.height = attrs.height || size;
|
|
13329
|
+
ctx.data.attrs = attrs;
|
|
13330
|
+
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
13331
|
+
attrs: {
|
|
13332
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
13333
|
+
width: "24",
|
|
13334
|
+
height: "24",
|
|
13335
|
+
viewBox: "0 0 24 24",
|
|
13336
|
+
fill: "none",
|
|
13337
|
+
stroke: "currentColor",
|
|
13338
|
+
"stroke-width": "2",
|
|
13339
|
+
"stroke-linecap": "round",
|
|
13340
|
+
"stroke-linejoin": "round"
|
|
13341
|
+
},
|
|
13342
|
+
"class": "feather feather-airplay"
|
|
13343
|
+
}, ctx.data]), [h("path", {
|
|
13344
|
+
attrs: {
|
|
13345
|
+
d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"
|
|
13422
13346
|
}
|
|
13423
|
-
|
|
13347
|
+
}), h("polygon", {
|
|
13348
|
+
attrs: {
|
|
13349
|
+
points: "12 15 17 21 7 21 12 15"
|
|
13350
|
+
}
|
|
13351
|
+
})]);
|
|
13424
13352
|
}
|
|
13353
|
+
};
|
|
13425
13354
|
|
|
13426
|
-
|
|
13427
|
-
|
|
13428
|
-
|
|
13429
|
-
|
|
13430
|
-
|
|
13431
|
-
|
|
13432
|
-
|
|
13433
|
-
|
|
13434
|
-
hook.call(context)
|
|
13435
|
-
return originalRender(h, context)
|
|
13436
|
-
}
|
|
13437
|
-
} else {
|
|
13438
|
-
// inject component registration as beforeCreate hook
|
|
13439
|
-
var existing = options.beforeCreate
|
|
13440
|
-
options.beforeCreate = existing
|
|
13441
|
-
? [].concat(existing, hook)
|
|
13442
|
-
: [hook]
|
|
13443
|
-
}
|
|
13444
|
-
}
|
|
13445
|
-
|
|
13446
|
-
return {
|
|
13447
|
-
exports: scriptExports,
|
|
13448
|
-
options: options
|
|
13449
|
-
}
|
|
13450
|
-
}
|
|
13451
|
-
|
|
13452
|
-
// CONCATENATED MODULE: ./src/components/atomic-elements/CpBadge.vue
|
|
13453
|
-
|
|
13454
|
-
|
|
13455
|
-
|
|
13456
|
-
|
|
13457
|
-
|
|
13458
|
-
|
|
13459
|
-
/* normalize component */
|
|
13460
|
-
|
|
13461
|
-
var component = normalizeComponent(
|
|
13462
|
-
atomic_elements_CpBadgevue_type_script_lang_js_,
|
|
13463
|
-
CpBadgevue_type_template_id_d4f446d6_render,
|
|
13464
|
-
staticRenderFns,
|
|
13465
|
-
false,
|
|
13466
|
-
null,
|
|
13467
|
-
null,
|
|
13468
|
-
null
|
|
13469
|
-
|
|
13470
|
-
)
|
|
13471
|
-
|
|
13472
|
-
/* harmony default export */ var CpBadge = (component.exports);
|
|
13473
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7c950646-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/typography/CpHeading/index.vue?vue&type=template&id=1de80c2e&
|
|
13474
|
-
var CpHeadingvue_type_template_id_1de80c2e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.headingLevel,{tag:"div",staticClass:"cpHeading",class:("cpHeading--" + _vm.size)},[_vm._t("default")],2)}
|
|
13475
|
-
var CpHeadingvue_type_template_id_1de80c2e_staticRenderFns = []
|
|
13476
|
-
|
|
13477
|
-
|
|
13478
|
-
// CONCATENATED MODULE: ./src/components/typography/CpHeading/index.vue?vue&type=template&id=1de80c2e&
|
|
13479
|
-
|
|
13480
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/typography/CpHeading/index.vue?vue&type=script&lang=js&
|
|
13481
|
-
|
|
13482
|
-
|
|
13483
|
-
//
|
|
13484
|
-
//
|
|
13485
|
-
//
|
|
13486
|
-
//
|
|
13487
|
-
//
|
|
13488
|
-
//
|
|
13489
|
-
var headingLevels = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
|
|
13490
|
-
var sizes = [100, 200, 300, 400, 500, 600, 700, 800, 900];
|
|
13491
|
-
/* harmony default export */ var CpHeadingvue_type_script_lang_js_ = ({
|
|
13492
|
-
props: {
|
|
13493
|
-
headingLevel: {
|
|
13494
|
-
type: String,
|
|
13495
|
-
default: headingLevels[0],
|
|
13496
|
-
validator: function validator(value) {
|
|
13497
|
-
return headingLevels.includes(value);
|
|
13498
|
-
},
|
|
13499
|
-
required: false
|
|
13500
|
-
},
|
|
13501
|
-
size: {
|
|
13502
|
-
type: Number,
|
|
13503
|
-
default: sizes[4],
|
|
13504
|
-
validator: function validator(value) {
|
|
13505
|
-
return sizes.includes(value);
|
|
13506
|
-
},
|
|
13507
|
-
required: false
|
|
13508
|
-
}
|
|
13509
|
-
},
|
|
13510
|
-
data: function data() {
|
|
13511
|
-
return {
|
|
13512
|
-
headingLevels: headingLevels
|
|
13513
|
-
};
|
|
13514
|
-
}
|
|
13515
|
-
});
|
|
13516
|
-
// CONCATENATED MODULE: ./src/components/typography/CpHeading/index.vue?vue&type=script&lang=js&
|
|
13517
|
-
/* harmony default export */ var typography_CpHeadingvue_type_script_lang_js_ = (CpHeadingvue_type_script_lang_js_);
|
|
13518
|
-
// EXTERNAL MODULE: ./src/components/typography/CpHeading/index.vue?vue&type=style&index=0&lang=scss&
|
|
13519
|
-
var CpHeadingvue_type_style_index_0_lang_scss_ = __webpack_require__("dbf2");
|
|
13520
|
-
|
|
13521
|
-
// CONCATENATED MODULE: ./src/components/typography/CpHeading/index.vue
|
|
13522
|
-
|
|
13523
|
-
|
|
13524
|
-
|
|
13525
|
-
|
|
13526
|
-
|
|
13527
|
-
|
|
13528
|
-
/* normalize component */
|
|
13529
|
-
|
|
13530
|
-
var CpHeading_component = normalizeComponent(
|
|
13531
|
-
typography_CpHeadingvue_type_script_lang_js_,
|
|
13532
|
-
CpHeadingvue_type_template_id_1de80c2e_render,
|
|
13533
|
-
CpHeadingvue_type_template_id_1de80c2e_staticRenderFns,
|
|
13534
|
-
false,
|
|
13535
|
-
null,
|
|
13536
|
-
null,
|
|
13537
|
-
null
|
|
13538
|
-
|
|
13539
|
-
)
|
|
13540
|
-
|
|
13541
|
-
/* harmony default export */ var CpHeading = (CpHeading_component.exports);
|
|
13542
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7c950646-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/CpButton.vue?vue&type=template&id=136bd9cc&
|
|
13543
|
-
var CpButtonvue_type_template_id_136bd9cc_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.tag,{tag:"button",staticClass:"cpButton",class:_vm.dynamicClasses,attrs:{"type":_vm.type,"aria-disabled":_vm.isButtonDisabled,"disabled":_vm.isButtonDisabled,"role":"button","tabindex":"0"},on:{"click":_vm.handleClick}},[_c('span',{staticClass:"cpButton__body"},[(_vm.isLoading)?_c('span',{staticClass:"cpButton__loader"},[_c('cp-loader',{attrs:{"color":"#B2B2BD"}})],1):_vm._e(),(_vm.hasIconBefore)?_c('span',{staticClass:"cpButton__icon cpButton__icon--isBefore"},[_vm._t("icon-before")],2):_vm._e(),(_vm.hasLabel)?_c('span',[_vm._t("default")],2):_vm._e(),(_vm.hasIconAfter)?_c('span',{staticClass:"cpButton__icon cpButton__icon--isAfter"},[_vm._t("icon-after")],2):_vm._e()])])}
|
|
13544
|
-
var CpButtonvue_type_template_id_136bd9cc_staticRenderFns = []
|
|
13545
|
-
|
|
13546
|
-
|
|
13547
|
-
// CONCATENATED MODULE: ./src/components/buttons/CpButton.vue?vue&type=template&id=136bd9cc&
|
|
13548
|
-
|
|
13549
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
|
|
13550
|
-
var es_string_includes = __webpack_require__("2532");
|
|
13551
|
-
|
|
13552
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.values.js
|
|
13553
|
-
var es_object_values = __webpack_require__("07ac");
|
|
13554
|
-
|
|
13555
|
-
// CONCATENATED MODULE: ./src/constants/src/colors/Colors.js
|
|
13556
|
-
/* harmony default export */ var Colors = ({
|
|
13557
|
-
BLUE: 'blue',
|
|
13558
|
-
PURPLE: 'purple',
|
|
13559
|
-
GREEN: 'green',
|
|
13560
|
-
ORANGE: 'orange',
|
|
13561
|
-
RED: 'red'
|
|
13562
|
-
});
|
|
13563
|
-
// CONCATENATED MODULE: ./src/constants/src/colors/ToggleColors.js
|
|
13564
|
-
|
|
13565
|
-
/* harmony default export */ var ToggleColors = ({
|
|
13566
|
-
BLUE: Colors.BLUE,
|
|
13567
|
-
PURPLE: Colors.PURPLE
|
|
13568
|
-
});
|
|
13569
|
-
// CONCATENATED MODULE: ./src/constants/src/Position.js
|
|
13570
|
-
/* harmony default export */ var Position = ({
|
|
13571
|
-
TOP: 'top',
|
|
13572
|
-
TOP_LEFT: 'top-left',
|
|
13573
|
-
TOP_RIGHT: 'top-right',
|
|
13574
|
-
BOTTOM: 'bottom',
|
|
13575
|
-
BOTTOM_LEFT: 'bottom-left',
|
|
13576
|
-
BOTTOM_RIGHT: 'bottom-right',
|
|
13577
|
-
LEFT: 'left',
|
|
13578
|
-
RIGHT: 'right'
|
|
13579
|
-
});
|
|
13580
|
-
// CONCATENATED MODULE: ./src/constants/index.js
|
|
13581
|
-
|
|
13582
|
-
|
|
13583
|
-
|
|
13584
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7c950646-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/feedback-indicators/CpLoader.vue?vue&type=template&id=7aa81c6b&
|
|
13585
|
-
var CpLoadervue_type_template_id_7aa81c6b_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{attrs:{"id":"loader-1","version":"1.1","xmlns":"http://www.w3.org/2000/svg","x":"0px","y":"0px","width":"40px","height":"40px","viewBox":"0 0 40 40","enable-background":"new 0 0 40 40","xml:space":"preserve"}},[_c('path',{attrs:{"opacity":"0.2","fill":_vm.color,"d":"M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946 s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634 c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z"}}),_c('path',{attrs:{"fill":_vm.color,"d":"M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0 C22.32,8.481,24.301,9.057,26.013,10.047z"}},[_c('animateTransform',{attrs:{"attributeType":"xml","attributeName":"transform","type":"rotate","from":"0 20 20","to":"360 20 20","dur":"0.5s","repeatCount":"indefinite"}})],1)])}
|
|
13586
|
-
var CpLoadervue_type_template_id_7aa81c6b_staticRenderFns = []
|
|
13587
|
-
|
|
13588
|
-
|
|
13589
|
-
// CONCATENATED MODULE: ./src/components/feedback-indicators/CpLoader.vue?vue&type=template&id=7aa81c6b&
|
|
13590
|
-
|
|
13591
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/feedback-indicators/CpLoader.vue?vue&type=script&lang=js&
|
|
13592
|
-
//
|
|
13593
|
-
//
|
|
13594
|
-
//
|
|
13595
|
-
//
|
|
13596
|
-
//
|
|
13597
|
-
//
|
|
13598
|
-
//
|
|
13599
|
-
//
|
|
13600
|
-
//
|
|
13601
|
-
//
|
|
13602
|
-
//
|
|
13603
|
-
//
|
|
13604
|
-
//
|
|
13605
|
-
//
|
|
13606
|
-
//
|
|
13607
|
-
//
|
|
13608
|
-
//
|
|
13609
|
-
//
|
|
13610
|
-
//
|
|
13611
|
-
//
|
|
13612
|
-
//
|
|
13613
|
-
//
|
|
13614
|
-
//
|
|
13615
|
-
//
|
|
13616
|
-
//
|
|
13617
|
-
//
|
|
13618
|
-
//
|
|
13619
|
-
//
|
|
13620
|
-
//
|
|
13621
|
-
//
|
|
13622
|
-
//
|
|
13623
|
-
//
|
|
13624
|
-
//
|
|
13625
|
-
//
|
|
13626
|
-
//
|
|
13627
|
-
/* harmony default export */ var CpLoadervue_type_script_lang_js_ = ({
|
|
13628
|
-
props: {
|
|
13629
|
-
color: {
|
|
13630
|
-
type: String,
|
|
13631
|
-
default: '#ff6700'
|
|
13632
|
-
}
|
|
13633
|
-
}
|
|
13634
|
-
});
|
|
13635
|
-
// CONCATENATED MODULE: ./src/components/feedback-indicators/CpLoader.vue?vue&type=script&lang=js&
|
|
13636
|
-
/* harmony default export */ var feedback_indicators_CpLoadervue_type_script_lang_js_ = (CpLoadervue_type_script_lang_js_);
|
|
13637
|
-
// CONCATENATED MODULE: ./src/components/feedback-indicators/CpLoader.vue
|
|
13638
|
-
|
|
13639
|
-
|
|
13640
|
-
|
|
13641
|
-
|
|
13642
|
-
|
|
13643
|
-
/* normalize component */
|
|
13644
|
-
|
|
13645
|
-
var CpLoader_component = normalizeComponent(
|
|
13646
|
-
feedback_indicators_CpLoadervue_type_script_lang_js_,
|
|
13647
|
-
CpLoadervue_type_template_id_7aa81c6b_render,
|
|
13648
|
-
CpLoadervue_type_template_id_7aa81c6b_staticRenderFns,
|
|
13649
|
-
false,
|
|
13650
|
-
null,
|
|
13651
|
-
null,
|
|
13652
|
-
null
|
|
13653
|
-
|
|
13654
|
-
)
|
|
13655
|
-
|
|
13656
|
-
/* harmony default export */ var CpLoader = (CpLoader_component.exports);
|
|
13657
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/CpButton.vue?vue&type=script&lang=js&
|
|
13658
|
-
|
|
13659
|
-
|
|
13660
|
-
|
|
13661
|
-
//
|
|
13662
|
-
//
|
|
13663
|
-
//
|
|
13664
|
-
//
|
|
13665
|
-
//
|
|
13666
|
-
//
|
|
13667
|
-
//
|
|
13668
|
-
//
|
|
13669
|
-
//
|
|
13670
|
-
//
|
|
13671
|
-
//
|
|
13672
|
-
//
|
|
13673
|
-
//
|
|
13674
|
-
//
|
|
13675
|
-
//
|
|
13676
|
-
//
|
|
13677
|
-
//
|
|
13678
|
-
//
|
|
13679
|
-
//
|
|
13680
|
-
//
|
|
13681
|
-
//
|
|
13682
|
-
//
|
|
13683
|
-
//
|
|
13684
|
-
|
|
13685
|
-
|
|
13686
|
-
|
|
13687
|
-
var ButtonAppearances = {
|
|
13688
|
-
default: 'default',
|
|
13689
|
-
primary: 'primary',
|
|
13690
|
-
minimal: 'minimal'
|
|
13691
|
-
};
|
|
13692
|
-
var ButtonTags = {
|
|
13693
|
-
button: 'button',
|
|
13694
|
-
a: 'a'
|
|
13695
|
-
};
|
|
13696
|
-
var ButtonTypes = {
|
|
13697
|
-
button: 'button',
|
|
13698
|
-
submit: 'submit',
|
|
13699
|
-
reset: 'reset'
|
|
13700
|
-
};
|
|
13701
|
-
/* harmony default export */ var CpButtonvue_type_script_lang_js_ = ({
|
|
13702
|
-
components: {
|
|
13703
|
-
CpLoader: CpLoader
|
|
13704
|
-
},
|
|
13705
|
-
props: {
|
|
13706
|
-
appearance: {
|
|
13707
|
-
type: String,
|
|
13708
|
-
default: ButtonAppearances.default,
|
|
13709
|
-
validator: function validator(value) {
|
|
13710
|
-
return {}.propertyIsEnumerable.call(ButtonAppearances, value);
|
|
13711
|
-
}
|
|
13712
|
-
},
|
|
13713
|
-
color: {
|
|
13714
|
-
type: String,
|
|
13715
|
-
default: '',
|
|
13716
|
-
validator: function validator(value) {
|
|
13717
|
-
return Object.values(Colors).includes(value) || value === '';
|
|
13718
|
-
}
|
|
13719
|
-
},
|
|
13720
|
-
disabled: {
|
|
13721
|
-
type: Boolean,
|
|
13722
|
-
default: false
|
|
13723
|
-
},
|
|
13724
|
-
tag: {
|
|
13725
|
-
type: String,
|
|
13726
|
-
default: ButtonTags.button,
|
|
13727
|
-
validator: function validator(value) {
|
|
13728
|
-
return {}.propertyIsEnumerable.call(ButtonTags, value);
|
|
13729
|
-
}
|
|
13730
|
-
},
|
|
13731
|
-
type: {
|
|
13732
|
-
type: String,
|
|
13733
|
-
default: ButtonTypes.button,
|
|
13734
|
-
validator: function validator(value) {
|
|
13735
|
-
return {}.propertyIsEnumerable.call(ButtonTypes, value);
|
|
13736
|
-
}
|
|
13737
|
-
},
|
|
13738
|
-
isLoading: {
|
|
13739
|
-
type: Boolean,
|
|
13740
|
-
default: false
|
|
13741
|
-
},
|
|
13742
|
-
isSquare: {
|
|
13743
|
-
type: Boolean,
|
|
13744
|
-
default: false
|
|
13745
|
-
},
|
|
13746
|
-
isLarge: {
|
|
13747
|
-
type: Boolean,
|
|
13748
|
-
default: false
|
|
13749
|
-
}
|
|
13750
|
-
},
|
|
13751
|
-
computed: {
|
|
13752
|
-
capitalizedAppearance: function capitalizedAppearance() {
|
|
13753
|
-
return capitalizeFirstLetter(this.appearance);
|
|
13754
|
-
},
|
|
13755
|
-
capitalizedColor: function capitalizedColor() {
|
|
13756
|
-
return capitalizeFirstLetter(this.color);
|
|
13757
|
-
},
|
|
13758
|
-
dynamicClasses: function dynamicClasses() {
|
|
13759
|
-
return ["cpButton--is".concat(this.capitalizedAppearance), this.capitalizedColor && "cpButton--is".concat(this.capitalizedColor), {
|
|
13760
|
-
'cpButton--isDisabled': this.isButtonDisabled,
|
|
13761
|
-
'cpButton--isIcon': !this.hasLabel,
|
|
13762
|
-
'cpButton--isLoading': this.isLoading,
|
|
13763
|
-
'cpButton--isSquare': this.isSquare,
|
|
13764
|
-
'cpButton--isLarge': this.isLarge
|
|
13765
|
-
}];
|
|
13766
|
-
},
|
|
13767
|
-
hasLabel: function hasLabel() {
|
|
13768
|
-
return !!this.$slots['default'];
|
|
13769
|
-
},
|
|
13770
|
-
hasIconBefore: function hasIconBefore() {
|
|
13771
|
-
return !!this.$slots['icon-before'];
|
|
13772
|
-
},
|
|
13773
|
-
hasIconAfter: function hasIconAfter() {
|
|
13774
|
-
return !!this.$slots['icon-after'];
|
|
13775
|
-
},
|
|
13776
|
-
isButtonDisabled: function isButtonDisabled() {
|
|
13777
|
-
return this.disabled || this.isLoading;
|
|
13778
|
-
}
|
|
13779
|
-
},
|
|
13780
|
-
methods: {
|
|
13781
|
-
handleClick: function handleClick($event) {
|
|
13782
|
-
!this.isButtonDisabled && this.$emit('click', $event);
|
|
13783
|
-
}
|
|
13784
|
-
}
|
|
13785
|
-
});
|
|
13786
|
-
// CONCATENATED MODULE: ./src/components/buttons/CpButton.vue?vue&type=script&lang=js&
|
|
13787
|
-
/* harmony default export */ var buttons_CpButtonvue_type_script_lang_js_ = (CpButtonvue_type_script_lang_js_);
|
|
13788
|
-
// EXTERNAL MODULE: ./src/components/buttons/CpButton.vue?vue&type=style&index=0&lang=scss&
|
|
13789
|
-
var CpButtonvue_type_style_index_0_lang_scss_ = __webpack_require__("a554");
|
|
13790
|
-
|
|
13791
|
-
// CONCATENATED MODULE: ./src/components/buttons/CpButton.vue
|
|
13792
|
-
|
|
13793
|
-
|
|
13794
|
-
|
|
13795
|
-
|
|
13796
|
-
|
|
13797
|
-
|
|
13798
|
-
/* normalize component */
|
|
13799
|
-
|
|
13800
|
-
var CpButton_component = normalizeComponent(
|
|
13801
|
-
buttons_CpButtonvue_type_script_lang_js_,
|
|
13802
|
-
CpButtonvue_type_template_id_136bd9cc_render,
|
|
13803
|
-
CpButtonvue_type_template_id_136bd9cc_staticRenderFns,
|
|
13804
|
-
false,
|
|
13805
|
-
null,
|
|
13806
|
-
null,
|
|
13807
|
-
null
|
|
13808
|
-
|
|
13809
|
-
)
|
|
13810
|
-
|
|
13811
|
-
/* harmony default export */ var CpButton = (CpButton_component.exports);
|
|
13812
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7c950646-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/date-pickers/CpDate.vue?vue&type=template&id=0d059918&
|
|
13813
|
-
var CpDatevue_type_template_id_0d059918_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpDate",class:_vm.dynamicClasses},[(_vm.label)?_c('label',{staticClass:"cpDate__label",attrs:{"for":_vm.cpDateId}},[_vm._v(" "+_vm._s(_vm.formattedLabel)+" "),(!_vm.isDateValid)?_c('alert-circle-icon'):_vm._e()],1):_vm._e(),_c('div',{staticClass:"cpDate__inputs"},[_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.day),expression:"day"}],ref:"day",staticClass:"cpDate__day",attrs:{"placeholder":"DD","type":"number","inputmode":"numeric","min":1,"max":31,"maxlength":"2","required":_vm.required,"disabled":_vm.disabled},domProps:{"value":(_vm.day)},on:{"input":function($event){if($event.target.composing){ return; }_vm.day=$event.target.value}}}),_c('div',{staticClass:"cpDate__divider"}),_c('div',{staticClass:"cpDate__month",class:_vm.selectDynamicClass},[_c('select',{directives:[{name:"model",rawName:"v-model",value:(_vm.month),expression:"month"}],attrs:{"id":_vm.cpDateId,"required":_vm.required,"disabled":_vm.disabled},on:{"change":function($event){var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return val}); _vm.month=$event.target.multiple ? $$selectedVal : $$selectedVal[0]}}},[_c('option',{attrs:{"value":"","disabled":""}},[_vm._v("Month")]),_vm._l((_vm.months),function(monthItem,index){return _c('option',{key:index,domProps:{"value":monthItem.value}},[_vm._v(" "+_vm._s(monthItem.label)+" ")])})],2)]),_c('div',{staticClass:"cpDate__divider"}),_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.year),expression:"year"}],ref:"year",staticClass:"cpDate__year",attrs:{"placeholder":"YYYY","type":"number","inputmode":"numeric","min":_vm.minYear,"max":_vm.maxYear,"maxlength":"4","disabled":_vm.disabled,"required":_vm.required},domProps:{"value":(_vm.year)},on:{"input":function($event){if($event.target.composing){ return; }_vm.year=$event.target.value}}})]),_c('transition-expand',[(!_vm.isDateValid)?_c('div',{staticClass:"cpDate__errorMessage"},[_vm._v(_vm._s(_vm.errorMessage))]):_vm._e()])],1)}
|
|
13814
|
-
var CpDatevue_type_template_id_0d059918_staticRenderFns = []
|
|
13815
|
-
|
|
13816
|
-
|
|
13817
|
-
// CONCATENATED MODULE: ./src/components/date-pickers/CpDate.vue?vue&type=template&id=0d059918&
|
|
13818
|
-
|
|
13819
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.concat.js
|
|
13820
|
-
var es_array_concat = __webpack_require__("99af");
|
|
13821
|
-
|
|
13822
|
-
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.map.js
|
|
13823
|
-
var es_array_map = __webpack_require__("d81d");
|
|
13824
|
-
|
|
13825
|
-
// EXTERNAL MODULE: ./node_modules/babel-helper-vue-jsx-merge-props/index.js
|
|
13826
|
-
var babel_helper_vue_jsx_merge_props = __webpack_require__("92fa");
|
|
13827
|
-
var babel_helper_vue_jsx_merge_props_default = /*#__PURE__*/__webpack_require__.n(babel_helper_vue_jsx_merge_props);
|
|
13828
|
-
|
|
13829
|
-
// CONCATENATED MODULE: ./node_modules/vue-feather-icons/dist/vue-feather-icons.es.js
|
|
13830
|
-
|
|
13831
|
-
|
|
13832
|
-
var ActivityIcon = {
|
|
13833
|
-
name: 'ActivityIcon',
|
|
13834
|
-
props: {
|
|
13835
|
-
size: {
|
|
13836
|
-
type: String,
|
|
13837
|
-
default: '24',
|
|
13838
|
-
validator: function validator(s) {
|
|
13839
|
-
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
13840
|
-
}
|
|
13841
|
-
}
|
|
13842
|
-
},
|
|
13843
|
-
functional: true,
|
|
13844
|
-
render: function render(h, ctx) {
|
|
13845
|
-
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
13846
|
-
var attrs = ctx.data.attrs || {};
|
|
13847
|
-
attrs.width = attrs.width || size;
|
|
13848
|
-
attrs.height = attrs.height || size;
|
|
13849
|
-
ctx.data.attrs = attrs;
|
|
13850
|
-
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
13851
|
-
attrs: {
|
|
13852
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
13853
|
-
width: "24",
|
|
13854
|
-
height: "24",
|
|
13855
|
-
viewBox: "0 0 24 24",
|
|
13856
|
-
fill: "none",
|
|
13857
|
-
stroke: "currentColor",
|
|
13858
|
-
"stroke-width": "2",
|
|
13859
|
-
"stroke-linecap": "round",
|
|
13860
|
-
"stroke-linejoin": "round"
|
|
13861
|
-
},
|
|
13862
|
-
"class": "feather feather-activity"
|
|
13863
|
-
}, ctx.data]), [h("polyline", {
|
|
13864
|
-
attrs: {
|
|
13865
|
-
points: "22 12 18 12 15 21 9 3 6 12 2 12"
|
|
13866
|
-
}
|
|
13867
|
-
})]);
|
|
13868
|
-
}
|
|
13869
|
-
};
|
|
13870
|
-
|
|
13871
|
-
var AirplayIcon = {
|
|
13872
|
-
name: 'AirplayIcon',
|
|
13873
|
-
props: {
|
|
13874
|
-
size: {
|
|
13875
|
-
type: String,
|
|
13876
|
-
default: '24',
|
|
13877
|
-
validator: function validator(s) {
|
|
13878
|
-
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
13879
|
-
}
|
|
13880
|
-
}
|
|
13881
|
-
},
|
|
13882
|
-
functional: true,
|
|
13883
|
-
render: function render(h, ctx) {
|
|
13884
|
-
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
13885
|
-
var attrs = ctx.data.attrs || {};
|
|
13886
|
-
attrs.width = attrs.width || size;
|
|
13887
|
-
attrs.height = attrs.height || size;
|
|
13888
|
-
ctx.data.attrs = attrs;
|
|
13889
|
-
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
13890
|
-
attrs: {
|
|
13891
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
13892
|
-
width: "24",
|
|
13893
|
-
height: "24",
|
|
13894
|
-
viewBox: "0 0 24 24",
|
|
13895
|
-
fill: "none",
|
|
13896
|
-
stroke: "currentColor",
|
|
13897
|
-
"stroke-width": "2",
|
|
13898
|
-
"stroke-linecap": "round",
|
|
13899
|
-
"stroke-linejoin": "round"
|
|
13900
|
-
},
|
|
13901
|
-
"class": "feather feather-airplay"
|
|
13902
|
-
}, ctx.data]), [h("path", {
|
|
13903
|
-
attrs: {
|
|
13904
|
-
d: "M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"
|
|
13905
|
-
}
|
|
13906
|
-
}), h("polygon", {
|
|
13907
|
-
attrs: {
|
|
13908
|
-
points: "12 15 17 21 7 21 12 15"
|
|
13909
|
-
}
|
|
13910
|
-
})]);
|
|
13911
|
-
}
|
|
13912
|
-
};
|
|
13913
|
-
|
|
13914
|
-
var AlertCircleIcon = {
|
|
13915
|
-
name: 'AlertCircleIcon',
|
|
13916
|
-
props: {
|
|
13917
|
-
size: {
|
|
13918
|
-
type: String,
|
|
13919
|
-
default: '24',
|
|
13920
|
-
validator: function validator(s) {
|
|
13921
|
-
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
13355
|
+
var AlertCircleIcon = {
|
|
13356
|
+
name: 'AlertCircleIcon',
|
|
13357
|
+
props: {
|
|
13358
|
+
size: {
|
|
13359
|
+
type: String,
|
|
13360
|
+
default: '24',
|
|
13361
|
+
validator: function validator(s) {
|
|
13362
|
+
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
13922
13363
|
}
|
|
13923
13364
|
}
|
|
13924
13365
|
},
|
|
@@ -28004,17 +27445,215 @@ var XIcon = {
|
|
|
28004
27445
|
}
|
|
28005
27446
|
}), h("line", {
|
|
28006
27447
|
attrs: {
|
|
28007
|
-
x1: "6",
|
|
28008
|
-
y1: "6",
|
|
28009
|
-
x2: "18",
|
|
28010
|
-
y2: "18"
|
|
27448
|
+
x1: "6",
|
|
27449
|
+
y1: "6",
|
|
27450
|
+
x2: "18",
|
|
27451
|
+
y2: "18"
|
|
27452
|
+
}
|
|
27453
|
+
})]);
|
|
27454
|
+
}
|
|
27455
|
+
};
|
|
27456
|
+
|
|
27457
|
+
var YoutubeIcon = {
|
|
27458
|
+
name: 'YoutubeIcon',
|
|
27459
|
+
props: {
|
|
27460
|
+
size: {
|
|
27461
|
+
type: String,
|
|
27462
|
+
default: '24',
|
|
27463
|
+
validator: function validator(s) {
|
|
27464
|
+
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
27465
|
+
}
|
|
27466
|
+
}
|
|
27467
|
+
},
|
|
27468
|
+
functional: true,
|
|
27469
|
+
render: function render(h, ctx) {
|
|
27470
|
+
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
27471
|
+
var attrs = ctx.data.attrs || {};
|
|
27472
|
+
attrs.width = attrs.width || size;
|
|
27473
|
+
attrs.height = attrs.height || size;
|
|
27474
|
+
ctx.data.attrs = attrs;
|
|
27475
|
+
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
27476
|
+
attrs: {
|
|
27477
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27478
|
+
width: "24",
|
|
27479
|
+
height: "24",
|
|
27480
|
+
viewBox: "0 0 24 24",
|
|
27481
|
+
fill: "none",
|
|
27482
|
+
stroke: "currentColor",
|
|
27483
|
+
"stroke-width": "2",
|
|
27484
|
+
"stroke-linecap": "round",
|
|
27485
|
+
"stroke-linejoin": "round"
|
|
27486
|
+
},
|
|
27487
|
+
"class": "feather feather-youtube"
|
|
27488
|
+
}, ctx.data]), [h("path", {
|
|
27489
|
+
attrs: {
|
|
27490
|
+
d: "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"
|
|
27491
|
+
}
|
|
27492
|
+
}), h("polygon", {
|
|
27493
|
+
attrs: {
|
|
27494
|
+
points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"
|
|
27495
|
+
}
|
|
27496
|
+
})]);
|
|
27497
|
+
}
|
|
27498
|
+
};
|
|
27499
|
+
|
|
27500
|
+
var ZapOffIcon = {
|
|
27501
|
+
name: 'ZapOffIcon',
|
|
27502
|
+
props: {
|
|
27503
|
+
size: {
|
|
27504
|
+
type: String,
|
|
27505
|
+
default: '24',
|
|
27506
|
+
validator: function validator(s) {
|
|
27507
|
+
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
27508
|
+
}
|
|
27509
|
+
}
|
|
27510
|
+
},
|
|
27511
|
+
functional: true,
|
|
27512
|
+
render: function render(h, ctx) {
|
|
27513
|
+
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
27514
|
+
var attrs = ctx.data.attrs || {};
|
|
27515
|
+
attrs.width = attrs.width || size;
|
|
27516
|
+
attrs.height = attrs.height || size;
|
|
27517
|
+
ctx.data.attrs = attrs;
|
|
27518
|
+
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
27519
|
+
attrs: {
|
|
27520
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27521
|
+
width: "24",
|
|
27522
|
+
height: "24",
|
|
27523
|
+
viewBox: "0 0 24 24",
|
|
27524
|
+
fill: "none",
|
|
27525
|
+
stroke: "currentColor",
|
|
27526
|
+
"stroke-width": "2",
|
|
27527
|
+
"stroke-linecap": "round",
|
|
27528
|
+
"stroke-linejoin": "round"
|
|
27529
|
+
},
|
|
27530
|
+
"class": "feather feather-zap-off"
|
|
27531
|
+
}, ctx.data]), [h("polyline", {
|
|
27532
|
+
attrs: {
|
|
27533
|
+
points: "12.41 6.75 13 2 10.57 4.92"
|
|
27534
|
+
}
|
|
27535
|
+
}), h("polyline", {
|
|
27536
|
+
attrs: {
|
|
27537
|
+
points: "18.57 12.91 21 10 15.66 10"
|
|
27538
|
+
}
|
|
27539
|
+
}), h("polyline", {
|
|
27540
|
+
attrs: {
|
|
27541
|
+
points: "8 8 3 14 12 14 11 22 16 16"
|
|
27542
|
+
}
|
|
27543
|
+
}), h("line", {
|
|
27544
|
+
attrs: {
|
|
27545
|
+
x1: "1",
|
|
27546
|
+
y1: "1",
|
|
27547
|
+
x2: "23",
|
|
27548
|
+
y2: "23"
|
|
27549
|
+
}
|
|
27550
|
+
})]);
|
|
27551
|
+
}
|
|
27552
|
+
};
|
|
27553
|
+
|
|
27554
|
+
var ZapIcon = {
|
|
27555
|
+
name: 'ZapIcon',
|
|
27556
|
+
props: {
|
|
27557
|
+
size: {
|
|
27558
|
+
type: String,
|
|
27559
|
+
default: '24',
|
|
27560
|
+
validator: function validator(s) {
|
|
27561
|
+
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
27562
|
+
}
|
|
27563
|
+
}
|
|
27564
|
+
},
|
|
27565
|
+
functional: true,
|
|
27566
|
+
render: function render(h, ctx) {
|
|
27567
|
+
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
27568
|
+
var attrs = ctx.data.attrs || {};
|
|
27569
|
+
attrs.width = attrs.width || size;
|
|
27570
|
+
attrs.height = attrs.height || size;
|
|
27571
|
+
ctx.data.attrs = attrs;
|
|
27572
|
+
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
27573
|
+
attrs: {
|
|
27574
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27575
|
+
width: "24",
|
|
27576
|
+
height: "24",
|
|
27577
|
+
viewBox: "0 0 24 24",
|
|
27578
|
+
fill: "none",
|
|
27579
|
+
stroke: "currentColor",
|
|
27580
|
+
"stroke-width": "2",
|
|
27581
|
+
"stroke-linecap": "round",
|
|
27582
|
+
"stroke-linejoin": "round"
|
|
27583
|
+
},
|
|
27584
|
+
"class": "feather feather-zap"
|
|
27585
|
+
}, ctx.data]), [h("polygon", {
|
|
27586
|
+
attrs: {
|
|
27587
|
+
points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2"
|
|
27588
|
+
}
|
|
27589
|
+
})]);
|
|
27590
|
+
}
|
|
27591
|
+
};
|
|
27592
|
+
|
|
27593
|
+
var ZoomInIcon = {
|
|
27594
|
+
name: 'ZoomInIcon',
|
|
27595
|
+
props: {
|
|
27596
|
+
size: {
|
|
27597
|
+
type: String,
|
|
27598
|
+
default: '24',
|
|
27599
|
+
validator: function validator(s) {
|
|
27600
|
+
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
27601
|
+
}
|
|
27602
|
+
}
|
|
27603
|
+
},
|
|
27604
|
+
functional: true,
|
|
27605
|
+
render: function render(h, ctx) {
|
|
27606
|
+
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
27607
|
+
var attrs = ctx.data.attrs || {};
|
|
27608
|
+
attrs.width = attrs.width || size;
|
|
27609
|
+
attrs.height = attrs.height || size;
|
|
27610
|
+
ctx.data.attrs = attrs;
|
|
27611
|
+
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
27612
|
+
attrs: {
|
|
27613
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27614
|
+
width: "24",
|
|
27615
|
+
height: "24",
|
|
27616
|
+
viewBox: "0 0 24 24",
|
|
27617
|
+
fill: "none",
|
|
27618
|
+
stroke: "currentColor",
|
|
27619
|
+
"stroke-width": "2",
|
|
27620
|
+
"stroke-linecap": "round",
|
|
27621
|
+
"stroke-linejoin": "round"
|
|
27622
|
+
},
|
|
27623
|
+
"class": "feather feather-zoom-in"
|
|
27624
|
+
}, ctx.data]), [h("circle", {
|
|
27625
|
+
attrs: {
|
|
27626
|
+
cx: "11",
|
|
27627
|
+
cy: "11",
|
|
27628
|
+
r: "8"
|
|
27629
|
+
}
|
|
27630
|
+
}), h("line", {
|
|
27631
|
+
attrs: {
|
|
27632
|
+
x1: "21",
|
|
27633
|
+
y1: "21",
|
|
27634
|
+
x2: "16.65",
|
|
27635
|
+
y2: "16.65"
|
|
27636
|
+
}
|
|
27637
|
+
}), h("line", {
|
|
27638
|
+
attrs: {
|
|
27639
|
+
x1: "11",
|
|
27640
|
+
y1: "8",
|
|
27641
|
+
x2: "11",
|
|
27642
|
+
y2: "14"
|
|
27643
|
+
}
|
|
27644
|
+
}), h("line", {
|
|
27645
|
+
attrs: {
|
|
27646
|
+
x1: "8",
|
|
27647
|
+
y1: "11",
|
|
27648
|
+
x2: "14",
|
|
27649
|
+
y2: "11"
|
|
28011
27650
|
}
|
|
28012
27651
|
})]);
|
|
28013
27652
|
}
|
|
28014
27653
|
};
|
|
28015
27654
|
|
|
28016
|
-
var
|
|
28017
|
-
name: '
|
|
27655
|
+
var ZoomOutIcon = {
|
|
27656
|
+
name: 'ZoomOutIcon',
|
|
28018
27657
|
props: {
|
|
28019
27658
|
size: {
|
|
28020
27659
|
type: String,
|
|
@@ -28043,231 +27682,610 @@ var YoutubeIcon = {
|
|
|
28043
27682
|
"stroke-linecap": "round",
|
|
28044
27683
|
"stroke-linejoin": "round"
|
|
28045
27684
|
},
|
|
28046
|
-
"class": "feather feather-
|
|
28047
|
-
}, ctx.data]), [h("
|
|
27685
|
+
"class": "feather feather-zoom-out"
|
|
27686
|
+
}, ctx.data]), [h("circle", {
|
|
28048
27687
|
attrs: {
|
|
28049
|
-
|
|
27688
|
+
cx: "11",
|
|
27689
|
+
cy: "11",
|
|
27690
|
+
r: "8"
|
|
28050
27691
|
}
|
|
28051
|
-
}), h("
|
|
27692
|
+
}), h("line", {
|
|
28052
27693
|
attrs: {
|
|
28053
|
-
|
|
27694
|
+
x1: "21",
|
|
27695
|
+
y1: "21",
|
|
27696
|
+
x2: "16.65",
|
|
27697
|
+
y2: "16.65"
|
|
27698
|
+
}
|
|
27699
|
+
}), h("line", {
|
|
27700
|
+
attrs: {
|
|
27701
|
+
x1: "8",
|
|
27702
|
+
y1: "11",
|
|
27703
|
+
x2: "14",
|
|
27704
|
+
y2: "11"
|
|
28054
27705
|
}
|
|
28055
27706
|
})]);
|
|
28056
27707
|
}
|
|
28057
27708
|
};
|
|
28058
27709
|
|
|
28059
|
-
|
|
28060
|
-
|
|
27710
|
+
|
|
27711
|
+
|
|
27712
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.to-string.js
|
|
27713
|
+
var es_object_to_string = __webpack_require__("d3b7");
|
|
27714
|
+
|
|
27715
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.to-string.js
|
|
27716
|
+
var es_regexp_to_string = __webpack_require__("25f0");
|
|
27717
|
+
|
|
27718
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.slice.js
|
|
27719
|
+
var es_array_slice = __webpack_require__("fb6a");
|
|
27720
|
+
|
|
27721
|
+
// EXTERNAL MODULE: ./node_modules/luxon/build/cjs-browser/luxon.js
|
|
27722
|
+
var luxon = __webpack_require__("1315");
|
|
27723
|
+
|
|
27724
|
+
// CONCATENATED MODULE: ./src/helpers/index.js
|
|
27725
|
+
|
|
27726
|
+
|
|
27727
|
+
|
|
27728
|
+
|
|
27729
|
+
var randomString = function randomString() {
|
|
27730
|
+
return "_".concat(Math.random().toString(36).substr(2, 9));
|
|
27731
|
+
};
|
|
27732
|
+
var helpers_formatDates = function formatDates(dateOne, dateTwo, format) {
|
|
27733
|
+
var formattedDates = '';
|
|
27734
|
+
|
|
27735
|
+
if (dateOne) {
|
|
27736
|
+
formattedDates = luxon["DateTime"].fromISO(dateOne).toFormat(format);
|
|
27737
|
+
}
|
|
27738
|
+
|
|
27739
|
+
if (dateTwo) {
|
|
27740
|
+
formattedDates += ' - ' + luxon["DateTime"].fromISO(dateTwo).toFormat(format);
|
|
27741
|
+
}
|
|
27742
|
+
|
|
27743
|
+
return formattedDates;
|
|
27744
|
+
};
|
|
27745
|
+
var capitalizeFirstLetter = function capitalizeFirstLetter(rawString) {
|
|
27746
|
+
if (typeof rawString !== 'string') return '';
|
|
27747
|
+
return rawString.charAt(0).toUpperCase() + rawString.slice(1);
|
|
27748
|
+
};
|
|
27749
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/atomic-elements/CpBadge.vue?vue&type=script&lang=js&
|
|
27750
|
+
|
|
27751
|
+
|
|
27752
|
+
//
|
|
27753
|
+
//
|
|
27754
|
+
//
|
|
27755
|
+
//
|
|
27756
|
+
//
|
|
27757
|
+
//
|
|
27758
|
+
//
|
|
27759
|
+
//
|
|
27760
|
+
//
|
|
27761
|
+
|
|
27762
|
+
|
|
27763
|
+
var badgeColors = ['neutral', 'blue', 'green', 'red', 'orange', 'purple', 'teal', 'pink', 'yellow'];
|
|
27764
|
+
/* harmony default export */ var CpBadgevue_type_script_lang_js_ = ({
|
|
27765
|
+
components: {
|
|
27766
|
+
XIcon: XIcon
|
|
27767
|
+
},
|
|
27768
|
+
props: {
|
|
27769
|
+
color: {
|
|
27770
|
+
type: String,
|
|
27771
|
+
required: true,
|
|
27772
|
+
validator: function validator(value) {
|
|
27773
|
+
return badgeColors.includes(value);
|
|
27774
|
+
}
|
|
27775
|
+
},
|
|
27776
|
+
label: {
|
|
27777
|
+
type: [String, Number],
|
|
27778
|
+
required: true
|
|
27779
|
+
},
|
|
27780
|
+
isSolid: {
|
|
27781
|
+
type: Boolean,
|
|
27782
|
+
default: false
|
|
27783
|
+
},
|
|
27784
|
+
isPlain: {
|
|
27785
|
+
type: Boolean,
|
|
27786
|
+
default: false
|
|
27787
|
+
},
|
|
27788
|
+
isClearable: {
|
|
27789
|
+
type: Boolean,
|
|
27790
|
+
default: false
|
|
27791
|
+
}
|
|
27792
|
+
},
|
|
27793
|
+
computed: {
|
|
27794
|
+
capitalizedColor: function capitalizedColor() {
|
|
27795
|
+
return capitalizeFirstLetter(this.color);
|
|
27796
|
+
},
|
|
27797
|
+
computedClasses: function computedClasses() {
|
|
27798
|
+
return [{
|
|
27799
|
+
'cpBadge--isSolid': this.isSolid,
|
|
27800
|
+
'cpBadge--isPlain': this.isPlain,
|
|
27801
|
+
'cpBadge--isClearable': this.isClearable
|
|
27802
|
+
}, "cpBadge--is".concat(this.capitalizedColor)];
|
|
27803
|
+
}
|
|
27804
|
+
},
|
|
27805
|
+
methods: {
|
|
27806
|
+
onClear: function onClear() {
|
|
27807
|
+
this.$emit('on-clear');
|
|
27808
|
+
}
|
|
27809
|
+
}
|
|
27810
|
+
});
|
|
27811
|
+
// CONCATENATED MODULE: ./src/components/atomic-elements/CpBadge.vue?vue&type=script&lang=js&
|
|
27812
|
+
/* harmony default export */ var atomic_elements_CpBadgevue_type_script_lang_js_ = (CpBadgevue_type_script_lang_js_);
|
|
27813
|
+
// EXTERNAL MODULE: ./src/components/atomic-elements/CpBadge.vue?vue&type=style&index=0&lang=scss&
|
|
27814
|
+
var CpBadgevue_type_style_index_0_lang_scss_ = __webpack_require__("b4b8");
|
|
27815
|
+
|
|
27816
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
27817
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
27818
|
+
|
|
27819
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
27820
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
27821
|
+
// be included in the final webpack user bundle.
|
|
27822
|
+
|
|
27823
|
+
function normalizeComponent (
|
|
27824
|
+
scriptExports,
|
|
27825
|
+
render,
|
|
27826
|
+
staticRenderFns,
|
|
27827
|
+
functionalTemplate,
|
|
27828
|
+
injectStyles,
|
|
27829
|
+
scopeId,
|
|
27830
|
+
moduleIdentifier, /* server only */
|
|
27831
|
+
shadowMode /* vue-cli only */
|
|
27832
|
+
) {
|
|
27833
|
+
// Vue.extend constructor export interop
|
|
27834
|
+
var options = typeof scriptExports === 'function'
|
|
27835
|
+
? scriptExports.options
|
|
27836
|
+
: scriptExports
|
|
27837
|
+
|
|
27838
|
+
// render functions
|
|
27839
|
+
if (render) {
|
|
27840
|
+
options.render = render
|
|
27841
|
+
options.staticRenderFns = staticRenderFns
|
|
27842
|
+
options._compiled = true
|
|
27843
|
+
}
|
|
27844
|
+
|
|
27845
|
+
// functional template
|
|
27846
|
+
if (functionalTemplate) {
|
|
27847
|
+
options.functional = true
|
|
27848
|
+
}
|
|
27849
|
+
|
|
27850
|
+
// scopedId
|
|
27851
|
+
if (scopeId) {
|
|
27852
|
+
options._scopeId = 'data-v-' + scopeId
|
|
27853
|
+
}
|
|
27854
|
+
|
|
27855
|
+
var hook
|
|
27856
|
+
if (moduleIdentifier) { // server build
|
|
27857
|
+
hook = function (context) {
|
|
27858
|
+
// 2.3 injection
|
|
27859
|
+
context =
|
|
27860
|
+
context || // cached call
|
|
27861
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
27862
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
27863
|
+
// 2.2 with runInNewContext: true
|
|
27864
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
27865
|
+
context = __VUE_SSR_CONTEXT__
|
|
27866
|
+
}
|
|
27867
|
+
// inject component styles
|
|
27868
|
+
if (injectStyles) {
|
|
27869
|
+
injectStyles.call(this, context)
|
|
27870
|
+
}
|
|
27871
|
+
// register component module identifier for async chunk inferrence
|
|
27872
|
+
if (context && context._registeredComponents) {
|
|
27873
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
27874
|
+
}
|
|
27875
|
+
}
|
|
27876
|
+
// used by ssr in case component is cached and beforeCreate
|
|
27877
|
+
// never gets called
|
|
27878
|
+
options._ssrRegister = hook
|
|
27879
|
+
} else if (injectStyles) {
|
|
27880
|
+
hook = shadowMode
|
|
27881
|
+
? function () {
|
|
27882
|
+
injectStyles.call(
|
|
27883
|
+
this,
|
|
27884
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
27885
|
+
)
|
|
27886
|
+
}
|
|
27887
|
+
: injectStyles
|
|
27888
|
+
}
|
|
27889
|
+
|
|
27890
|
+
if (hook) {
|
|
27891
|
+
if (options.functional) {
|
|
27892
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
27893
|
+
// go through the normalizer
|
|
27894
|
+
options._injectStyles = hook
|
|
27895
|
+
// register for functional component in vue file
|
|
27896
|
+
var originalRender = options.render
|
|
27897
|
+
options.render = function renderWithStyleInjection (h, context) {
|
|
27898
|
+
hook.call(context)
|
|
27899
|
+
return originalRender(h, context)
|
|
27900
|
+
}
|
|
27901
|
+
} else {
|
|
27902
|
+
// inject component registration as beforeCreate hook
|
|
27903
|
+
var existing = options.beforeCreate
|
|
27904
|
+
options.beforeCreate = existing
|
|
27905
|
+
? [].concat(existing, hook)
|
|
27906
|
+
: [hook]
|
|
27907
|
+
}
|
|
27908
|
+
}
|
|
27909
|
+
|
|
27910
|
+
return {
|
|
27911
|
+
exports: scriptExports,
|
|
27912
|
+
options: options
|
|
27913
|
+
}
|
|
27914
|
+
}
|
|
27915
|
+
|
|
27916
|
+
// CONCATENATED MODULE: ./src/components/atomic-elements/CpBadge.vue
|
|
27917
|
+
|
|
27918
|
+
|
|
27919
|
+
|
|
27920
|
+
|
|
27921
|
+
|
|
27922
|
+
|
|
27923
|
+
/* normalize component */
|
|
27924
|
+
|
|
27925
|
+
var component = normalizeComponent(
|
|
27926
|
+
atomic_elements_CpBadgevue_type_script_lang_js_,
|
|
27927
|
+
CpBadgevue_type_template_id_2a601aa2_render,
|
|
27928
|
+
staticRenderFns,
|
|
27929
|
+
false,
|
|
27930
|
+
null,
|
|
27931
|
+
null,
|
|
27932
|
+
null
|
|
27933
|
+
|
|
27934
|
+
)
|
|
27935
|
+
|
|
27936
|
+
/* harmony default export */ var CpBadge = (component.exports);
|
|
27937
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/typography/CpHeading/index.vue?vue&type=template&id=1de80c2e&
|
|
27938
|
+
var CpHeadingvue_type_template_id_1de80c2e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.headingLevel,{tag:"div",staticClass:"cpHeading",class:("cpHeading--" + _vm.size)},[_vm._t("default")],2)}
|
|
27939
|
+
var CpHeadingvue_type_template_id_1de80c2e_staticRenderFns = []
|
|
27940
|
+
|
|
27941
|
+
|
|
27942
|
+
// CONCATENATED MODULE: ./src/components/typography/CpHeading/index.vue?vue&type=template&id=1de80c2e&
|
|
27943
|
+
|
|
27944
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/typography/CpHeading/index.vue?vue&type=script&lang=js&
|
|
27945
|
+
|
|
27946
|
+
|
|
27947
|
+
//
|
|
27948
|
+
//
|
|
27949
|
+
//
|
|
27950
|
+
//
|
|
27951
|
+
//
|
|
27952
|
+
//
|
|
27953
|
+
var headingLevels = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
|
|
27954
|
+
var sizes = [100, 200, 300, 400, 500, 600, 700, 800, 900];
|
|
27955
|
+
/* harmony default export */ var CpHeadingvue_type_script_lang_js_ = ({
|
|
28061
27956
|
props: {
|
|
28062
|
-
|
|
27957
|
+
headingLevel: {
|
|
28063
27958
|
type: String,
|
|
28064
|
-
default:
|
|
28065
|
-
validator: function validator(
|
|
28066
|
-
return
|
|
28067
|
-
}
|
|
27959
|
+
default: headingLevels[0],
|
|
27960
|
+
validator: function validator(value) {
|
|
27961
|
+
return headingLevels.includes(value);
|
|
27962
|
+
},
|
|
27963
|
+
required: false
|
|
27964
|
+
},
|
|
27965
|
+
size: {
|
|
27966
|
+
type: Number,
|
|
27967
|
+
default: sizes[4],
|
|
27968
|
+
validator: function validator(value) {
|
|
27969
|
+
return sizes.includes(value);
|
|
27970
|
+
},
|
|
27971
|
+
required: false
|
|
28068
27972
|
}
|
|
28069
27973
|
},
|
|
28070
|
-
|
|
28071
|
-
|
|
28072
|
-
|
|
28073
|
-
|
|
28074
|
-
attrs.width = attrs.width || size;
|
|
28075
|
-
attrs.height = attrs.height || size;
|
|
28076
|
-
ctx.data.attrs = attrs;
|
|
28077
|
-
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
28078
|
-
attrs: {
|
|
28079
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
28080
|
-
width: "24",
|
|
28081
|
-
height: "24",
|
|
28082
|
-
viewBox: "0 0 24 24",
|
|
28083
|
-
fill: "none",
|
|
28084
|
-
stroke: "currentColor",
|
|
28085
|
-
"stroke-width": "2",
|
|
28086
|
-
"stroke-linecap": "round",
|
|
28087
|
-
"stroke-linejoin": "round"
|
|
28088
|
-
},
|
|
28089
|
-
"class": "feather feather-zap-off"
|
|
28090
|
-
}, ctx.data]), [h("polyline", {
|
|
28091
|
-
attrs: {
|
|
28092
|
-
points: "12.41 6.75 13 2 10.57 4.92"
|
|
28093
|
-
}
|
|
28094
|
-
}), h("polyline", {
|
|
28095
|
-
attrs: {
|
|
28096
|
-
points: "18.57 12.91 21 10 15.66 10"
|
|
28097
|
-
}
|
|
28098
|
-
}), h("polyline", {
|
|
28099
|
-
attrs: {
|
|
28100
|
-
points: "8 8 3 14 12 14 11 22 16 16"
|
|
28101
|
-
}
|
|
28102
|
-
}), h("line", {
|
|
28103
|
-
attrs: {
|
|
28104
|
-
x1: "1",
|
|
28105
|
-
y1: "1",
|
|
28106
|
-
x2: "23",
|
|
28107
|
-
y2: "23"
|
|
28108
|
-
}
|
|
28109
|
-
})]);
|
|
27974
|
+
data: function data() {
|
|
27975
|
+
return {
|
|
27976
|
+
headingLevels: headingLevels
|
|
27977
|
+
};
|
|
28110
27978
|
}
|
|
28111
|
-
};
|
|
27979
|
+
});
|
|
27980
|
+
// CONCATENATED MODULE: ./src/components/typography/CpHeading/index.vue?vue&type=script&lang=js&
|
|
27981
|
+
/* harmony default export */ var typography_CpHeadingvue_type_script_lang_js_ = (CpHeadingvue_type_script_lang_js_);
|
|
27982
|
+
// EXTERNAL MODULE: ./src/components/typography/CpHeading/index.vue?vue&type=style&index=0&lang=scss&
|
|
27983
|
+
var CpHeadingvue_type_style_index_0_lang_scss_ = __webpack_require__("dbf2");
|
|
28112
27984
|
|
|
28113
|
-
|
|
28114
|
-
|
|
27985
|
+
// CONCATENATED MODULE: ./src/components/typography/CpHeading/index.vue
|
|
27986
|
+
|
|
27987
|
+
|
|
27988
|
+
|
|
27989
|
+
|
|
27990
|
+
|
|
27991
|
+
|
|
27992
|
+
/* normalize component */
|
|
27993
|
+
|
|
27994
|
+
var CpHeading_component = normalizeComponent(
|
|
27995
|
+
typography_CpHeadingvue_type_script_lang_js_,
|
|
27996
|
+
CpHeadingvue_type_template_id_1de80c2e_render,
|
|
27997
|
+
CpHeadingvue_type_template_id_1de80c2e_staticRenderFns,
|
|
27998
|
+
false,
|
|
27999
|
+
null,
|
|
28000
|
+
null,
|
|
28001
|
+
null
|
|
28002
|
+
|
|
28003
|
+
)
|
|
28004
|
+
|
|
28005
|
+
/* harmony default export */ var CpHeading = (CpHeading_component.exports);
|
|
28006
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/CpButton.vue?vue&type=template&id=136bd9cc&
|
|
28007
|
+
var CpButtonvue_type_template_id_136bd9cc_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.tag,{tag:"button",staticClass:"cpButton",class:_vm.dynamicClasses,attrs:{"type":_vm.type,"aria-disabled":_vm.isButtonDisabled,"disabled":_vm.isButtonDisabled,"role":"button","tabindex":"0"},on:{"click":_vm.handleClick}},[_c('span',{staticClass:"cpButton__body"},[(_vm.isLoading)?_c('span',{staticClass:"cpButton__loader"},[_c('cp-loader',{attrs:{"color":"#B2B2BD"}})],1):_vm._e(),(_vm.hasIconBefore)?_c('span',{staticClass:"cpButton__icon cpButton__icon--isBefore"},[_vm._t("icon-before")],2):_vm._e(),(_vm.hasLabel)?_c('span',[_vm._t("default")],2):_vm._e(),(_vm.hasIconAfter)?_c('span',{staticClass:"cpButton__icon cpButton__icon--isAfter"},[_vm._t("icon-after")],2):_vm._e()])])}
|
|
28008
|
+
var CpButtonvue_type_template_id_136bd9cc_staticRenderFns = []
|
|
28009
|
+
|
|
28010
|
+
|
|
28011
|
+
// CONCATENATED MODULE: ./src/components/buttons/CpButton.vue?vue&type=template&id=136bd9cc&
|
|
28012
|
+
|
|
28013
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.includes.js
|
|
28014
|
+
var es_string_includes = __webpack_require__("2532");
|
|
28015
|
+
|
|
28016
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.values.js
|
|
28017
|
+
var es_object_values = __webpack_require__("07ac");
|
|
28018
|
+
|
|
28019
|
+
// CONCATENATED MODULE: ./src/constants/src/colors/Colors.js
|
|
28020
|
+
/* harmony default export */ var Colors = ({
|
|
28021
|
+
BLUE: 'blue',
|
|
28022
|
+
PURPLE: 'purple',
|
|
28023
|
+
GREEN: 'green',
|
|
28024
|
+
ORANGE: 'orange',
|
|
28025
|
+
RED: 'red'
|
|
28026
|
+
});
|
|
28027
|
+
// CONCATENATED MODULE: ./src/constants/src/colors/ToggleColors.js
|
|
28028
|
+
|
|
28029
|
+
/* harmony default export */ var ToggleColors = ({
|
|
28030
|
+
BLUE: Colors.BLUE,
|
|
28031
|
+
PURPLE: Colors.PURPLE
|
|
28032
|
+
});
|
|
28033
|
+
// CONCATENATED MODULE: ./src/constants/src/Position.js
|
|
28034
|
+
/* harmony default export */ var Position = ({
|
|
28035
|
+
TOP: 'top',
|
|
28036
|
+
TOP_LEFT: 'top-left',
|
|
28037
|
+
TOP_RIGHT: 'top-right',
|
|
28038
|
+
BOTTOM: 'bottom',
|
|
28039
|
+
BOTTOM_LEFT: 'bottom-left',
|
|
28040
|
+
BOTTOM_RIGHT: 'bottom-right',
|
|
28041
|
+
LEFT: 'left',
|
|
28042
|
+
RIGHT: 'right'
|
|
28043
|
+
});
|
|
28044
|
+
// CONCATENATED MODULE: ./src/constants/index.js
|
|
28045
|
+
|
|
28046
|
+
|
|
28047
|
+
|
|
28048
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/feedback-indicators/CpLoader.vue?vue&type=template&id=7aa81c6b&
|
|
28049
|
+
var CpLoadervue_type_template_id_7aa81c6b_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{attrs:{"id":"loader-1","version":"1.1","xmlns":"http://www.w3.org/2000/svg","x":"0px","y":"0px","width":"40px","height":"40px","viewBox":"0 0 40 40","enable-background":"new 0 0 40 40","xml:space":"preserve"}},[_c('path',{attrs:{"opacity":"0.2","fill":_vm.color,"d":"M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946 s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634 c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z"}}),_c('path',{attrs:{"fill":_vm.color,"d":"M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0 C22.32,8.481,24.301,9.057,26.013,10.047z"}},[_c('animateTransform',{attrs:{"attributeType":"xml","attributeName":"transform","type":"rotate","from":"0 20 20","to":"360 20 20","dur":"0.5s","repeatCount":"indefinite"}})],1)])}
|
|
28050
|
+
var CpLoadervue_type_template_id_7aa81c6b_staticRenderFns = []
|
|
28051
|
+
|
|
28052
|
+
|
|
28053
|
+
// CONCATENATED MODULE: ./src/components/feedback-indicators/CpLoader.vue?vue&type=template&id=7aa81c6b&
|
|
28054
|
+
|
|
28055
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/feedback-indicators/CpLoader.vue?vue&type=script&lang=js&
|
|
28056
|
+
//
|
|
28057
|
+
//
|
|
28058
|
+
//
|
|
28059
|
+
//
|
|
28060
|
+
//
|
|
28061
|
+
//
|
|
28062
|
+
//
|
|
28063
|
+
//
|
|
28064
|
+
//
|
|
28065
|
+
//
|
|
28066
|
+
//
|
|
28067
|
+
//
|
|
28068
|
+
//
|
|
28069
|
+
//
|
|
28070
|
+
//
|
|
28071
|
+
//
|
|
28072
|
+
//
|
|
28073
|
+
//
|
|
28074
|
+
//
|
|
28075
|
+
//
|
|
28076
|
+
//
|
|
28077
|
+
//
|
|
28078
|
+
//
|
|
28079
|
+
//
|
|
28080
|
+
//
|
|
28081
|
+
//
|
|
28082
|
+
//
|
|
28083
|
+
//
|
|
28084
|
+
//
|
|
28085
|
+
//
|
|
28086
|
+
//
|
|
28087
|
+
//
|
|
28088
|
+
//
|
|
28089
|
+
//
|
|
28090
|
+
//
|
|
28091
|
+
/* harmony default export */ var CpLoadervue_type_script_lang_js_ = ({
|
|
28115
28092
|
props: {
|
|
28116
|
-
|
|
28093
|
+
color: {
|
|
28117
28094
|
type: String,
|
|
28118
|
-
default: '
|
|
28119
|
-
validator: function validator(s) {
|
|
28120
|
-
return !isNaN(s) || s.length >= 2 && !isNaN(s.slice(0, s.length - 1)) && s.slice(-1) === 'x';
|
|
28121
|
-
}
|
|
28095
|
+
default: '#ff6700'
|
|
28122
28096
|
}
|
|
28123
|
-
},
|
|
28124
|
-
functional: true,
|
|
28125
|
-
render: function render(h, ctx) {
|
|
28126
|
-
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
28127
|
-
var attrs = ctx.data.attrs || {};
|
|
28128
|
-
attrs.width = attrs.width || size;
|
|
28129
|
-
attrs.height = attrs.height || size;
|
|
28130
|
-
ctx.data.attrs = attrs;
|
|
28131
|
-
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
28132
|
-
attrs: {
|
|
28133
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
28134
|
-
width: "24",
|
|
28135
|
-
height: "24",
|
|
28136
|
-
viewBox: "0 0 24 24",
|
|
28137
|
-
fill: "none",
|
|
28138
|
-
stroke: "currentColor",
|
|
28139
|
-
"stroke-width": "2",
|
|
28140
|
-
"stroke-linecap": "round",
|
|
28141
|
-
"stroke-linejoin": "round"
|
|
28142
|
-
},
|
|
28143
|
-
"class": "feather feather-zap"
|
|
28144
|
-
}, ctx.data]), [h("polygon", {
|
|
28145
|
-
attrs: {
|
|
28146
|
-
points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2"
|
|
28147
|
-
}
|
|
28148
|
-
})]);
|
|
28149
28097
|
}
|
|
28150
|
-
};
|
|
28098
|
+
});
|
|
28099
|
+
// CONCATENATED MODULE: ./src/components/feedback-indicators/CpLoader.vue?vue&type=script&lang=js&
|
|
28100
|
+
/* harmony default export */ var feedback_indicators_CpLoadervue_type_script_lang_js_ = (CpLoadervue_type_script_lang_js_);
|
|
28101
|
+
// CONCATENATED MODULE: ./src/components/feedback-indicators/CpLoader.vue
|
|
28102
|
+
|
|
28103
|
+
|
|
28104
|
+
|
|
28105
|
+
|
|
28106
|
+
|
|
28107
|
+
/* normalize component */
|
|
28108
|
+
|
|
28109
|
+
var CpLoader_component = normalizeComponent(
|
|
28110
|
+
feedback_indicators_CpLoadervue_type_script_lang_js_,
|
|
28111
|
+
CpLoadervue_type_template_id_7aa81c6b_render,
|
|
28112
|
+
CpLoadervue_type_template_id_7aa81c6b_staticRenderFns,
|
|
28113
|
+
false,
|
|
28114
|
+
null,
|
|
28115
|
+
null,
|
|
28116
|
+
null
|
|
28117
|
+
|
|
28118
|
+
)
|
|
28119
|
+
|
|
28120
|
+
/* harmony default export */ var CpLoader = (CpLoader_component.exports);
|
|
28121
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/buttons/CpButton.vue?vue&type=script&lang=js&
|
|
28122
|
+
|
|
28123
|
+
|
|
28124
|
+
|
|
28125
|
+
//
|
|
28126
|
+
//
|
|
28127
|
+
//
|
|
28128
|
+
//
|
|
28129
|
+
//
|
|
28130
|
+
//
|
|
28131
|
+
//
|
|
28132
|
+
//
|
|
28133
|
+
//
|
|
28134
|
+
//
|
|
28135
|
+
//
|
|
28136
|
+
//
|
|
28137
|
+
//
|
|
28138
|
+
//
|
|
28139
|
+
//
|
|
28140
|
+
//
|
|
28141
|
+
//
|
|
28142
|
+
//
|
|
28143
|
+
//
|
|
28144
|
+
//
|
|
28145
|
+
//
|
|
28146
|
+
//
|
|
28147
|
+
//
|
|
28151
28148
|
|
|
28152
|
-
|
|
28153
|
-
|
|
28149
|
+
|
|
28150
|
+
|
|
28151
|
+
var ButtonAppearances = {
|
|
28152
|
+
default: 'default',
|
|
28153
|
+
primary: 'primary',
|
|
28154
|
+
minimal: 'minimal'
|
|
28155
|
+
};
|
|
28156
|
+
var ButtonTags = {
|
|
28157
|
+
button: 'button',
|
|
28158
|
+
a: 'a'
|
|
28159
|
+
};
|
|
28160
|
+
var ButtonTypes = {
|
|
28161
|
+
button: 'button',
|
|
28162
|
+
submit: 'submit',
|
|
28163
|
+
reset: 'reset'
|
|
28164
|
+
};
|
|
28165
|
+
/* harmony default export */ var CpButtonvue_type_script_lang_js_ = ({
|
|
28166
|
+
components: {
|
|
28167
|
+
CpLoader: CpLoader
|
|
28168
|
+
},
|
|
28154
28169
|
props: {
|
|
28155
|
-
|
|
28170
|
+
appearance: {
|
|
28156
28171
|
type: String,
|
|
28157
|
-
default:
|
|
28158
|
-
validator: function validator(
|
|
28159
|
-
return
|
|
28160
|
-
}
|
|
28161
|
-
}
|
|
28162
|
-
},
|
|
28163
|
-
functional: true,
|
|
28164
|
-
render: function render(h, ctx) {
|
|
28165
|
-
var size = ctx.props.size.slice(-1) === 'x' ? ctx.props.size.slice(0, ctx.props.size.length - 1) + 'em' : parseInt(ctx.props.size) + 'px';
|
|
28166
|
-
var attrs = ctx.data.attrs || {};
|
|
28167
|
-
attrs.width = attrs.width || size;
|
|
28168
|
-
attrs.height = attrs.height || size;
|
|
28169
|
-
ctx.data.attrs = attrs;
|
|
28170
|
-
return h("svg", babel_helper_vue_jsx_merge_props_default()([{
|
|
28171
|
-
attrs: {
|
|
28172
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
28173
|
-
width: "24",
|
|
28174
|
-
height: "24",
|
|
28175
|
-
viewBox: "0 0 24 24",
|
|
28176
|
-
fill: "none",
|
|
28177
|
-
stroke: "currentColor",
|
|
28178
|
-
"stroke-width": "2",
|
|
28179
|
-
"stroke-linecap": "round",
|
|
28180
|
-
"stroke-linejoin": "round"
|
|
28181
|
-
},
|
|
28182
|
-
"class": "feather feather-zoom-in"
|
|
28183
|
-
}, ctx.data]), [h("circle", {
|
|
28184
|
-
attrs: {
|
|
28185
|
-
cx: "11",
|
|
28186
|
-
cy: "11",
|
|
28187
|
-
r: "8"
|
|
28188
|
-
}
|
|
28189
|
-
}), h("line", {
|
|
28190
|
-
attrs: {
|
|
28191
|
-
x1: "21",
|
|
28192
|
-
y1: "21",
|
|
28193
|
-
x2: "16.65",
|
|
28194
|
-
y2: "16.65"
|
|
28172
|
+
default: ButtonAppearances.default,
|
|
28173
|
+
validator: function validator(value) {
|
|
28174
|
+
return {}.propertyIsEnumerable.call(ButtonAppearances, value);
|
|
28195
28175
|
}
|
|
28196
|
-
}
|
|
28197
|
-
|
|
28198
|
-
|
|
28199
|
-
|
|
28200
|
-
|
|
28201
|
-
|
|
28176
|
+
},
|
|
28177
|
+
color: {
|
|
28178
|
+
type: String,
|
|
28179
|
+
default: '',
|
|
28180
|
+
validator: function validator(value) {
|
|
28181
|
+
return Object.values(Colors).includes(value) || value === '';
|
|
28202
28182
|
}
|
|
28203
|
-
}
|
|
28204
|
-
|
|
28205
|
-
|
|
28206
|
-
|
|
28207
|
-
|
|
28208
|
-
|
|
28183
|
+
},
|
|
28184
|
+
disabled: {
|
|
28185
|
+
type: Boolean,
|
|
28186
|
+
default: false
|
|
28187
|
+
},
|
|
28188
|
+
tag: {
|
|
28189
|
+
type: String,
|
|
28190
|
+
default: ButtonTags.button,
|
|
28191
|
+
validator: function validator(value) {
|
|
28192
|
+
return {}.propertyIsEnumerable.call(ButtonTags, value);
|
|
28209
28193
|
}
|
|
28210
|
-
}
|
|
28211
|
-
|
|
28212
|
-
};
|
|
28213
|
-
|
|
28214
|
-
var ZoomOutIcon = {
|
|
28215
|
-
name: 'ZoomOutIcon',
|
|
28216
|
-
props: {
|
|
28217
|
-
size: {
|
|
28194
|
+
},
|
|
28195
|
+
type: {
|
|
28218
28196
|
type: String,
|
|
28219
|
-
default:
|
|
28220
|
-
validator: function validator(
|
|
28221
|
-
return
|
|
28197
|
+
default: ButtonTypes.button,
|
|
28198
|
+
validator: function validator(value) {
|
|
28199
|
+
return {}.propertyIsEnumerable.call(ButtonTypes, value);
|
|
28222
28200
|
}
|
|
28201
|
+
},
|
|
28202
|
+
isLoading: {
|
|
28203
|
+
type: Boolean,
|
|
28204
|
+
default: false
|
|
28205
|
+
},
|
|
28206
|
+
isSquare: {
|
|
28207
|
+
type: Boolean,
|
|
28208
|
+
default: false
|
|
28209
|
+
},
|
|
28210
|
+
isLarge: {
|
|
28211
|
+
type: Boolean,
|
|
28212
|
+
default: false
|
|
28223
28213
|
}
|
|
28224
28214
|
},
|
|
28225
|
-
|
|
28226
|
-
|
|
28227
|
-
|
|
28228
|
-
|
|
28229
|
-
|
|
28230
|
-
|
|
28231
|
-
|
|
28232
|
-
|
|
28233
|
-
|
|
28234
|
-
|
|
28235
|
-
|
|
28236
|
-
|
|
28237
|
-
|
|
28238
|
-
|
|
28239
|
-
|
|
28240
|
-
|
|
28241
|
-
|
|
28242
|
-
|
|
28243
|
-
|
|
28244
|
-
|
|
28245
|
-
|
|
28246
|
-
|
|
28247
|
-
|
|
28248
|
-
|
|
28249
|
-
|
|
28250
|
-
|
|
28251
|
-
|
|
28252
|
-
|
|
28253
|
-
|
|
28254
|
-
|
|
28255
|
-
|
|
28256
|
-
|
|
28257
|
-
|
|
28258
|
-
}), h("line", {
|
|
28259
|
-
attrs: {
|
|
28260
|
-
x1: "8",
|
|
28261
|
-
y1: "11",
|
|
28262
|
-
x2: "14",
|
|
28263
|
-
y2: "11"
|
|
28264
|
-
}
|
|
28265
|
-
})]);
|
|
28215
|
+
computed: {
|
|
28216
|
+
capitalizedAppearance: function capitalizedAppearance() {
|
|
28217
|
+
return capitalizeFirstLetter(this.appearance);
|
|
28218
|
+
},
|
|
28219
|
+
capitalizedColor: function capitalizedColor() {
|
|
28220
|
+
return capitalizeFirstLetter(this.color);
|
|
28221
|
+
},
|
|
28222
|
+
dynamicClasses: function dynamicClasses() {
|
|
28223
|
+
return ["cpButton--is".concat(this.capitalizedAppearance), this.capitalizedColor && "cpButton--is".concat(this.capitalizedColor), {
|
|
28224
|
+
'cpButton--isDisabled': this.isButtonDisabled,
|
|
28225
|
+
'cpButton--isIcon': !this.hasLabel,
|
|
28226
|
+
'cpButton--isLoading': this.isLoading,
|
|
28227
|
+
'cpButton--isSquare': this.isSquare,
|
|
28228
|
+
'cpButton--isLarge': this.isLarge
|
|
28229
|
+
}];
|
|
28230
|
+
},
|
|
28231
|
+
hasLabel: function hasLabel() {
|
|
28232
|
+
return !!this.$slots['default'];
|
|
28233
|
+
},
|
|
28234
|
+
hasIconBefore: function hasIconBefore() {
|
|
28235
|
+
return !!this.$slots['icon-before'];
|
|
28236
|
+
},
|
|
28237
|
+
hasIconAfter: function hasIconAfter() {
|
|
28238
|
+
return !!this.$slots['icon-after'];
|
|
28239
|
+
},
|
|
28240
|
+
isButtonDisabled: function isButtonDisabled() {
|
|
28241
|
+
return this.disabled || this.isLoading;
|
|
28242
|
+
}
|
|
28243
|
+
},
|
|
28244
|
+
methods: {
|
|
28245
|
+
handleClick: function handleClick($event) {
|
|
28246
|
+
!this.isButtonDisabled && this.$emit('click', $event);
|
|
28247
|
+
}
|
|
28266
28248
|
}
|
|
28267
|
-
};
|
|
28249
|
+
});
|
|
28250
|
+
// CONCATENATED MODULE: ./src/components/buttons/CpButton.vue?vue&type=script&lang=js&
|
|
28251
|
+
/* harmony default export */ var buttons_CpButtonvue_type_script_lang_js_ = (CpButtonvue_type_script_lang_js_);
|
|
28252
|
+
// EXTERNAL MODULE: ./src/components/buttons/CpButton.vue?vue&type=style&index=0&lang=scss&
|
|
28253
|
+
var CpButtonvue_type_style_index_0_lang_scss_ = __webpack_require__("a554");
|
|
28254
|
+
|
|
28255
|
+
// CONCATENATED MODULE: ./src/components/buttons/CpButton.vue
|
|
28268
28256
|
|
|
28269
28257
|
|
|
28270
28258
|
|
|
28259
|
+
|
|
28260
|
+
|
|
28261
|
+
|
|
28262
|
+
/* normalize component */
|
|
28263
|
+
|
|
28264
|
+
var CpButton_component = normalizeComponent(
|
|
28265
|
+
buttons_CpButtonvue_type_script_lang_js_,
|
|
28266
|
+
CpButtonvue_type_template_id_136bd9cc_render,
|
|
28267
|
+
CpButtonvue_type_template_id_136bd9cc_staticRenderFns,
|
|
28268
|
+
false,
|
|
28269
|
+
null,
|
|
28270
|
+
null,
|
|
28271
|
+
null
|
|
28272
|
+
|
|
28273
|
+
)
|
|
28274
|
+
|
|
28275
|
+
/* harmony default export */ var CpButton = (CpButton_component.exports);
|
|
28276
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/date-pickers/CpDate.vue?vue&type=template&id=0d059918&
|
|
28277
|
+
var CpDatevue_type_template_id_0d059918_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpDate",class:_vm.dynamicClasses},[(_vm.label)?_c('label',{staticClass:"cpDate__label",attrs:{"for":_vm.cpDateId}},[_vm._v(" "+_vm._s(_vm.formattedLabel)+" "),(!_vm.isDateValid)?_c('alert-circle-icon'):_vm._e()],1):_vm._e(),_c('div',{staticClass:"cpDate__inputs"},[_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.day),expression:"day"}],ref:"day",staticClass:"cpDate__day",attrs:{"placeholder":"DD","type":"number","inputmode":"numeric","min":1,"max":31,"maxlength":"2","required":_vm.required,"disabled":_vm.disabled},domProps:{"value":(_vm.day)},on:{"input":function($event){if($event.target.composing){ return; }_vm.day=$event.target.value}}}),_c('div',{staticClass:"cpDate__divider"}),_c('div',{staticClass:"cpDate__month",class:_vm.selectDynamicClass},[_c('select',{directives:[{name:"model",rawName:"v-model",value:(_vm.month),expression:"month"}],attrs:{"id":_vm.cpDateId,"required":_vm.required,"disabled":_vm.disabled},on:{"change":function($event){var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return val}); _vm.month=$event.target.multiple ? $$selectedVal : $$selectedVal[0]}}},[_c('option',{attrs:{"value":"","disabled":""}},[_vm._v("Month")]),_vm._l((_vm.months),function(monthItem,index){return _c('option',{key:index,domProps:{"value":monthItem.value}},[_vm._v(" "+_vm._s(monthItem.label)+" ")])})],2)]),_c('div',{staticClass:"cpDate__divider"}),_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.year),expression:"year"}],ref:"year",staticClass:"cpDate__year",attrs:{"placeholder":"YYYY","type":"number","inputmode":"numeric","min":_vm.minYear,"max":_vm.maxYear,"maxlength":"4","disabled":_vm.disabled,"required":_vm.required},domProps:{"value":(_vm.year)},on:{"input":function($event){if($event.target.composing){ return; }_vm.year=$event.target.value}}})]),_c('transition-expand',[(!_vm.isDateValid)?_c('div',{staticClass:"cpDate__errorMessage"},[_vm._v(_vm._s(_vm.errorMessage))]):_vm._e()])],1)}
|
|
28278
|
+
var CpDatevue_type_template_id_0d059918_staticRenderFns = []
|
|
28279
|
+
|
|
28280
|
+
|
|
28281
|
+
// CONCATENATED MODULE: ./src/components/date-pickers/CpDate.vue?vue&type=template&id=0d059918&
|
|
28282
|
+
|
|
28283
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.concat.js
|
|
28284
|
+
var es_array_concat = __webpack_require__("99af");
|
|
28285
|
+
|
|
28286
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.map.js
|
|
28287
|
+
var es_array_map = __webpack_require__("d81d");
|
|
28288
|
+
|
|
28271
28289
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/date-pickers/CpDate.vue?vue&type=script&lang=js&
|
|
28272
28290
|
|
|
28273
28291
|
|
|
@@ -28532,7 +28550,7 @@ var CpDate_component = normalizeComponent(
|
|
|
28532
28550
|
)
|
|
28533
28551
|
|
|
28534
28552
|
/* harmony default export */ var CpDate = (CpDate_component.exports);
|
|
28535
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
28553
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/date-pickers/CpDatepicker.vue?vue&type=template&id=26b27ffa&
|
|
28536
28554
|
var CpDatepickervue_type_template_id_26b27ffa_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpDatepicker"},[_c('cp-input',{directives:[{name:"show",rawName:"v-show",value:(!_vm.isInline),expression:"!isInline"}],ref:_vm.datePickerReferenceId,staticClass:"cpDatepicker__input",attrs:{"type":"text","input-id":_vm.datePickerReferenceId,"value":_vm.inputComputedValue,"placeholder":_vm.placeholder,"is-invalid":_vm.isError,"error-message":_vm.errorMessage,"disabled":_vm.isDisabled,"label":_vm.label}}),_c('core-datepicker',{attrs:{"date-one":_vm.dateOne,"date-two":_vm.dateTwo,"trigger-element-id":_vm.datePickerReferenceId,"close-after-select":_vm.closeAfterSelect,"mode":_vm.mode,"inline":_vm.isInline,"months-to-show":_vm.numberOfMonths,"min-date":_vm.computedMinDate,"max-date":_vm.maxDate},on:{"date-one-selected":function (date) { return _vm.selectDate('dateOne', date); },"date-two-selected":function (date) { return _vm.selectDate('dateTwo', date); },"opened":function () { return (_vm.isDisabled = true); },"closed":function () { return (_vm.isDisabled = false); }}})],1)}
|
|
28537
28555
|
var CpDatepickervue_type_template_id_26b27ffa_staticRenderFns = []
|
|
28538
28556
|
|
|
@@ -28614,7 +28632,7 @@ function _nonIterableSpread() {
|
|
|
28614
28632
|
function _toConsumableArray(arr) {
|
|
28615
28633
|
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
|
|
28616
28634
|
}
|
|
28617
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
28635
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/libs/CoreDatepicker.vue?vue&type=template&id=8b29d788&scoped=true&
|
|
28618
28636
|
var CoreDatepickervue_type_template_id_8b29d788_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',{attrs:{"name":"asd__fade"}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.showDatepicker),expression:"showDatepicker"},{name:"click-outside",rawName:"v-click-outside",value:(_vm.handleClickOutside),expression:"handleClickOutside"}],staticClass:"asd__wrapper",class:_vm.wrapperClasses,style:(_vm.showFullscreen ? undefined : _vm.wrapperStyles),attrs:{"id":_vm.wrapperId}},[(_vm.showFullscreen)?_c('div',{staticClass:"asd__mobile-header asd__mobile-only"},[_c('button',{staticClass:"asd__mobile-close",attrs:{"type":"button"},on:{"click":_vm.closeDatepicker}},[(_vm.$slots['close-icon'])?_vm._t("close-icon"):_c('div',{staticClass:"asd__mobile-close-icon"},[_vm._v("X")])],2),_c('h3',[_vm._v(_vm._s(_vm.mobileHeader || _vm.mobileHeaderFallback))])]):_vm._e(),_c('div',{staticClass:"asd__datepicker-header"},[_c('div',{staticClass:"asd__change-month-button asd__change-month-button--previous"},[_c('chevron-left-icon',{on:{"click":_vm.previousMonth}})],1),_c('div',{staticClass:"asd__change-month-button asd__change-month-button--next"},[_c('chevron-right-icon',{on:{"click":_vm.nextMonth}})],1),_vm._l((_vm.showMonths),function(month,index){return _c('div',{key:month,staticClass:"asd__days-legend",style:([_vm.monthWidthStyles, { left: _vm.width * index + 'px' }])},_vm._l((_vm.daysShort),function(day,dayIndex){return _c('div',{key:dayIndex,staticClass:"asd__day-title"},[_vm._v(_vm._s(day))])}),0)})],2),_c('div',{staticClass:"asd__inner-wrapper",style:(_vm.innerStyles)},[_c('transition-group',{attrs:{"name":"asd__list-complete","tag":"div"}},_vm._l((_vm.months),function(month,monthIndex){return _c('div',{key:month.firstDateOfMonth,staticClass:"asd__month",class:{ 'asd__month--hidden': monthIndex === 0 || monthIndex > _vm.showMonths },style:(_vm.monthWidthStyles)},[_c('div',{staticClass:"asd__month-name"},[(_vm.showMonthYearSelect)?_c('select',{directives:[{name:"model",rawName:"v-model",value:(month.monthName),expression:"month.monthName"},{name:"resize-select",rawName:"v-resize-select"}],staticClass:"asd__month-year-select",attrs:{"tabindex":monthIndex === 0 || monthIndex > _vm.showMonths ? -1 : 0},on:{"change":[function($event){var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return val}); _vm.$set(month, "monthName", $event.target.multiple ? $$selectedVal : $$selectedVal[0])},function($event){return _vm.updateMonth(monthIndex, month.year, $event)}]}},_vm._l((_vm.monthNames),function(monthName,idx){return _c('option',{key:("month-" + monthIndex + "-" + monthName),attrs:{"disabled":_vm.isMonthDisabled(month.year, idx)},domProps:{"value":monthName}},[_vm._v(" "+_vm._s(monthName)+" ")])}),0):_c('span',[_vm._v(_vm._s(month.monthName))]),(_vm.showMonthYearSelect)?_c('select',{directives:[{name:"model",rawName:"v-model",value:(month.year),expression:"month.year"}],staticClass:"asd__month-year-select",attrs:{"tabindex":monthIndex === 0 || monthIndex > _vm.showMonths ? -1 : 0},on:{"change":[function($event){var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return val}); _vm.$set(month, "year", $event.target.multiple ? $$selectedVal : $$selectedVal[0])},function($event){return _vm.updateYear(monthIndex, month.monthNumber - 1, $event)}]}},[(_vm.years.indexOf(month.year) === -1)?_c('option',{key:("month-" + monthIndex + "-" + _vm.year),attrs:{"disabled":true},domProps:{"value":month.year}},[_vm._v(" "+_vm._s(month.year)+" ")]):_vm._e(),_vm._l((_vm.years),function(year){return _c('option',{key:("month-" + monthIndex + "-" + year),domProps:{"value":year}},[_vm._v(" "+_vm._s(year)+" ")])})],2):_c('span',[_vm._v(_vm._s(month.year))])]),_c('table',{staticClass:"asd__month-table",attrs:{"role":"presentation"}},[_c('tbody',_vm._l((month.weeks),function(week,index){return _c('tr',{key:index,staticClass:"asd__week"},_vm._l((week),function(ref,dayIndex){
|
|
28619
28637
|
var dayDate = ref.dayDate;
|
|
28620
28638
|
var dayNumber = ref.dayNumber;
|
|
@@ -29721,17 +29739,17 @@ var CoreDatepicker_component = normalizeComponent(
|
|
|
29721
29739
|
)
|
|
29722
29740
|
|
|
29723
29741
|
/* harmony default export */ var CoreDatepicker = (CoreDatepicker_component.exports);
|
|
29724
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
29725
|
-
var
|
|
29726
|
-
var
|
|
29742
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inputs/CpInput.vue?vue&type=template&id=0e48dce9&
|
|
29743
|
+
var CpInputvue_type_template_id_0e48dce9_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpInput",class:_vm.dynamicClasses,attrs:{"aria-disabled":_vm.disabled},on:{"click":_vm.focusOnInput}},[(_vm.label)?_c('base-input-label',{attrs:{"for":_vm.inputReferenceId}},[_vm._v(" "+_vm._s(_vm.inputLabelTitle))]):_vm._e(),_c('div',{ref:"cpInputContainer",staticClass:"cpInput__container",class:{ 'cpInput__container--hasBeforeIcon': _vm.hasBeforeIcon }},[(_vm.hasBeforeIcon)?_c('div',{staticClass:"cpInput__icon cpInput__icon--isBefore"},[_vm._t("input-icon")],2):_vm._e(),(!_vm.hideValidityIcon)?_c('div',{staticClass:"cpInput__icon cpInput__icon--isValidity",class:_vm.iconValidityClasses},[_c('transition',{attrs:{"name":"fade-in"}},[(_vm.isInputInvalid)?_c('alert-circle-icon'):_vm._e(),(_vm.isValid)?_c('check-icon'):_vm._e()],1)],1):_vm._e(),(_vm.hasAfterIcon)?_c('div',{staticClass:"cpInput__icon cpInput__icon--isAfter"},[_vm._t("input-icon-after")],2):_vm._e(),(_vm.mask)?_c('the-mask',{staticClass:"cpInput__inner",attrs:{"id":_vm.inputReferenceId,"required":_vm.required,"name":_vm.name,"mask":_vm.mask,"tokens":_vm.tokens,"masked":_vm.masked,"placeholder":_vm.placeholder,"autocomplete":_vm.autocomplete,"inputmode":_vm.inputMode,"type":_vm.type,"disabled":_vm.disabled},model:{value:(_vm.inputValueCopy),callback:function ($$v) {_vm.inputValueCopy=$$v},expression:"inputValueCopy"}}):_c('input',{staticClass:"cpInput__inner",attrs:{"id":_vm.inputReferenceId,"disabled":_vm.disabled,"name":_vm.name,"placeholder":_vm.placeholder,"readonly":_vm.readonly,"required":_vm.required,"autocomplete":_vm.autocomplete,"inputmode":_vm.inputMode,"type":_vm.type},domProps:{"value":_vm.value},on:{"input":_vm.handleChange}})],1),_c('transition-expand',[(_vm.displayErrorMessage)?_c('base-input-label',{attrs:{"is-invalid":_vm.isInvalid,"for":_vm.inputReferenceId}},[_vm._v(" "+_vm._s(_vm.errorMessage)+" ")]):_vm._e()],1)],1)}
|
|
29744
|
+
var CpInputvue_type_template_id_0e48dce9_staticRenderFns = []
|
|
29727
29745
|
|
|
29728
29746
|
|
|
29729
|
-
// CONCATENATED MODULE: ./src/components/inputs/CpInput.vue?vue&type=template&id=
|
|
29747
|
+
// CONCATENATED MODULE: ./src/components/inputs/CpInput.vue?vue&type=template&id=0e48dce9&
|
|
29730
29748
|
|
|
29731
29749
|
// EXTERNAL MODULE: ./node_modules/vue-the-mask/dist/vue-the-mask.js
|
|
29732
29750
|
var vue_the_mask = __webpack_require__("3a60");
|
|
29733
29751
|
|
|
29734
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
29752
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/core/BaseInputLabel/index.vue?vue&type=template&id=71199c12&
|
|
29735
29753
|
var BaseInputLabelvue_type_template_id_71199c12_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('label',_vm._b({staticClass:"baseInputLabel",class:{ 'baseInputLabel--isInvalid': _vm.isInvalid }},'label',_vm.$attrs,false),[_vm._t("default")],2)}
|
|
29736
29754
|
var BaseInputLabelvue_type_template_id_71199c12_staticRenderFns = []
|
|
29737
29755
|
|
|
@@ -30082,6 +30100,9 @@ var inputTypesList = ['text', 'date', 'datetime-local', 'email', 'month', 'numbe
|
|
|
30082
30100
|
},
|
|
30083
30101
|
DOMElement: function DOMElement() {
|
|
30084
30102
|
return this.$refs.cpInputContainer.children.namedItem(this.inputReferenceId);
|
|
30103
|
+
},
|
|
30104
|
+
displayErrorMessage: function displayErrorMessage() {
|
|
30105
|
+
return this.isInvalid && this.errorMessage.length;
|
|
30085
30106
|
}
|
|
30086
30107
|
},
|
|
30087
30108
|
watch: {
|
|
@@ -30131,8 +30152,8 @@ var CpInputvue_type_style_index_0_lang_scss_ = __webpack_require__("b53e");
|
|
|
30131
30152
|
|
|
30132
30153
|
var CpInput_component = normalizeComponent(
|
|
30133
30154
|
inputs_CpInputvue_type_script_lang_js_,
|
|
30134
|
-
|
|
30135
|
-
|
|
30155
|
+
CpInputvue_type_template_id_0e48dce9_render,
|
|
30156
|
+
CpInputvue_type_template_id_0e48dce9_staticRenderFns,
|
|
30136
30157
|
false,
|
|
30137
30158
|
null,
|
|
30138
30159
|
null,
|
|
@@ -30328,7 +30349,7 @@ var CpDatepicker_component = normalizeComponent(
|
|
|
30328
30349
|
)
|
|
30329
30350
|
|
|
30330
30351
|
/* harmony default export */ var CpDatepicker = (CpDatepicker_component.exports);
|
|
30331
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
30352
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/date-pickers/CpCalendar.vue?vue&type=template&id=6cc5f789&
|
|
30332
30353
|
var CpCalendarvue_type_template_id_6cc5f789_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpCalendar"},[_c('cp-input',{staticClass:"cpCalendar__input",attrs:{"type":"text","input-id":_vm.triggerElementId,"value":_vm.humanDateFormat(_vm.dateOne, _vm.dateTwo),"placeholder":"Select a date","is-invalid":_vm.isError,"error-message":_vm.errorMessage,"disabled":_vm.isDisabled,"label":_vm.label}}),_c('core-datepicker',{attrs:{"date-one":_vm.dateOne,"date-two":_vm.dateTwo,"customized-dates":[{ cssClass: 'recurency', dates: _vm.datesToStringArray(_vm.recurenceDates) }],"is-recurcive":_vm.isDaysDisplayed,"trigger-element-id":_vm.triggerElementId,"mode":_vm.mode,"close-after-select":_vm.closeAfterSelect,"close-calendar":_vm.triggerCalendar,"inline":_vm.isInline},on:{"date-one-selected":function (date) { return _vm.selectDate('dateOne', date); },"date-two-selected":function (date) { return _vm.selectDate('dateTwo', date); },"is-inline":function (value) { return (_vm.isInline = value); },"opened":function () { return (_vm.isDisabled = true); },"closed":function () { return (_vm.isDisabled = false); }}},[(!_vm.isInline)?_c('div',{staticClass:"footer-container"},[_c('transition-group',{attrs:{"name":"fade","mode":"out-in"}},[(_vm.isDaysDisplayed)?_c('div',{key:"days",staticClass:"asd__recurency--container"},[_c('div',{staticClass:"asd__recurency--days"},[_c('ul',{staticClass:"asd__recurency--ul"},_vm._l((_vm.days),function(ref,index){
|
|
30333
30354
|
var day = ref.day;
|
|
30334
30355
|
var selected = ref.selected;
|
|
@@ -30631,7 +30652,7 @@ var CpCalendar_component = normalizeComponent(
|
|
|
30631
30652
|
)
|
|
30632
30653
|
|
|
30633
30654
|
/* harmony default export */ var CpCalendar = (CpCalendar_component.exports);
|
|
30634
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
30655
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/feedback-indicators/CpAlert.vue?vue&type=template&id=73e947ee&
|
|
30635
30656
|
var CpAlertvue_type_template_id_73e947ee_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.isDisplayed)?_c('div',{staticClass:"cpAlert",class:("cpAlert--" + _vm.intent)},[_c(_vm.alertIcon,{tag:"div",staticClass:"cpAlert__icon"}),_c('div',{staticClass:"cpAlert__body"},[(_vm.title)?_c('cp-heading',{staticClass:"cpAlert__title",attrs:{"heading-level":"h4","size":400}},[_vm._v(_vm._s(_vm.title))]):_vm._e(),(_vm.hasContent)?_c('div',{staticClass:"cpAlert__content"},[_vm._t("default")],2):_vm._e()],1),(_vm.isClosable)?_c('button',{staticClass:"cpAlert__button",on:{"click":_vm.dismissAlert}},[_c('x-icon')],1):_vm._e()],1):_vm._e()}
|
|
30636
30657
|
var CpAlertvue_type_template_id_73e947ee_staticRenderFns = []
|
|
30637
30658
|
|
|
@@ -30763,7 +30784,7 @@ var CpAlert_component = normalizeComponent(
|
|
|
30763
30784
|
)
|
|
30764
30785
|
|
|
30765
30786
|
/* harmony default export */ var CpAlert = (CpAlert_component.exports);
|
|
30766
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
30787
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/feedback-indicators/CpToaster.vue?vue&type=template&id=4dca0ca1&
|
|
30767
30788
|
var CpToastervue_type_template_id_4dca0ca1_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('portal',{attrs:{"to":_vm.portalContainer}},[_c('span',{staticClass:"cpToaster"},[_c('transition-group',{staticClass:"cpToaster__list",attrs:{"name":"cp-toaster-list","tag":"div"},on:{"enter":_vm.enter,"leave":_vm.leave}},_vm._l((_vm.toasterList),function(ref){
|
|
30768
30789
|
var title = ref.title;
|
|
30769
30790
|
var description = ref.description;
|
|
@@ -32157,7 +32178,7 @@ anime.random = function (min, max) { return Math.floor(Math.random() * (max - mi
|
|
|
32157
32178
|
|
|
32158
32179
|
/* harmony default export */ var anime_es = (anime);
|
|
32159
32180
|
|
|
32160
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
32181
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/libs/CoreToaster.vue?vue&type=template&id=55f484de&
|
|
32161
32182
|
var CoreToastervue_type_template_id_55f484de_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"coreToaster",class:_vm.dynamicClass,attrs:{"role":"alert"},on:{"mouseenter":function($event){return _vm.setHoverState()},"mouseleave":function($event){return _vm.setHoverState(false)}}},[_c('div',{staticClass:"coreToaster__content"},[_c(_vm.toasterIcon,{tag:"div",staticClass:"coreToaster__icon"}),_c('div',{staticClass:"coreToaster__body"},[_c('cp-heading',{staticClass:"coreToaster__title",attrs:{"heading-level":"h4","size":400}},[_vm._v(_vm._s(_vm.title))]),(_vm.description)?_c('p',{staticClass:"coreToaster__description"},[_vm._v(_vm._s(_vm.description))]):_vm._e()],1)],1),_c('button',{staticClass:"coreToaster__close",on:{"click":_vm.closeToaster}},[_c('x-icon')],1),(_vm.actionLabel)?_c('div',{staticClass:"coreToaster__footer"},[_c('button',{staticClass:"coreToaster__button",on:{"click":_vm.handleActionMethod}},[_vm._v(" "+_vm._s(_vm.actionLabel)+" ")])]):_vm._e()])}
|
|
32162
32183
|
var CoreToastervue_type_template_id_55f484de_staticRenderFns = []
|
|
32163
32184
|
|
|
@@ -32506,12 +32527,12 @@ var CpToaster_component = normalizeComponent(
|
|
|
32506
32527
|
)
|
|
32507
32528
|
|
|
32508
32529
|
/* harmony default export */ var CpToaster = (CpToaster_component.exports);
|
|
32509
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
32510
|
-
var
|
|
32511
|
-
var
|
|
32530
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inputs/CpTextarea.vue?vue&type=template&id=2b7a3334&
|
|
32531
|
+
var CpTextareavue_type_template_id_2b7a3334_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpTextarea"},[(_vm.label)?_c('base-input-label',{attrs:{"for":_vm.inputReferenceId}},[_vm._v(" "+_vm._s(_vm.inputLabelTitle)+" ")]):_vm._e(),_c('textarea',{ref:_vm.inputReferenceId,staticClass:"cpTextarea__input",class:{ 'cpTextarea__input--isInvalid': _vm.isInvalid },style:(("min-height: " + _vm.height + "px")),attrs:{"id":_vm.inputReferenceId,"disabled":_vm.disabled,"placeholder":_vm.placeholder,"required":_vm.required},domProps:{"value":_vm.value},on:{"input":function($event){return _vm.handleChange()}}}),_vm._v(" "),_c('transition-expand',[(_vm.displayErrorMessage)?_c('base-input-label',{attrs:{"for":_vm.inputReferenceId,"is-invalid":""}},[_vm._v(" "+_vm._s(_vm.errorMessage)+" ")]):_vm._e()],1)],1)}
|
|
32532
|
+
var CpTextareavue_type_template_id_2b7a3334_staticRenderFns = []
|
|
32512
32533
|
|
|
32513
32534
|
|
|
32514
|
-
// CONCATENATED MODULE: ./src/components/inputs/CpTextarea.vue?vue&type=template&id=
|
|
32535
|
+
// CONCATENATED MODULE: ./src/components/inputs/CpTextarea.vue?vue&type=template&id=2b7a3334&
|
|
32515
32536
|
|
|
32516
32537
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/inputs/CpTextarea.vue?vue&type=script&lang=js&
|
|
32517
32538
|
|
|
@@ -32605,6 +32626,9 @@ var CpTextareavue_type_template_id_7859379e_staticRenderFns = []
|
|
|
32605
32626
|
inputLabelTitle: function inputLabelTitle() {
|
|
32606
32627
|
var requiredLabel = this.required && this.label ? '*' : '';
|
|
32607
32628
|
return "".concat(this.label, " ").concat(requiredLabel);
|
|
32629
|
+
},
|
|
32630
|
+
displayErrorMessage: function displayErrorMessage() {
|
|
32631
|
+
return this.isInvalid && this.errorMessage.length;
|
|
32608
32632
|
}
|
|
32609
32633
|
},
|
|
32610
32634
|
mounted: function mounted() {
|
|
@@ -32633,8 +32657,8 @@ var CpTextareavue_type_style_index_0_lang_scss_ = __webpack_require__("90b2");
|
|
|
32633
32657
|
|
|
32634
32658
|
var CpTextarea_component = normalizeComponent(
|
|
32635
32659
|
inputs_CpTextareavue_type_script_lang_js_,
|
|
32636
|
-
|
|
32637
|
-
|
|
32660
|
+
CpTextareavue_type_template_id_2b7a3334_render,
|
|
32661
|
+
CpTextareavue_type_template_id_2b7a3334_staticRenderFns,
|
|
32638
32662
|
false,
|
|
32639
32663
|
null,
|
|
32640
32664
|
null,
|
|
@@ -32643,12 +32667,12 @@ var CpTextarea_component = normalizeComponent(
|
|
|
32643
32667
|
)
|
|
32644
32668
|
|
|
32645
32669
|
/* harmony default export */ var CpTextarea = (CpTextarea_component.exports);
|
|
32646
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
32647
|
-
var
|
|
32648
|
-
var
|
|
32670
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/selects/CpSelect.vue?vue&type=template&id=294aab48&
|
|
32671
|
+
var CpSelectvue_type_template_id_294aab48_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpSelect",class:_vm.dynamicClasses},[(_vm.label)?_c('base-input-label',{attrs:{"for":_vm.selectReferenceId}},[_vm._v(_vm._s(_vm.selectLabelTitle))]):_vm._e(),_c('div',{staticClass:"cpSelect__container"},[_c('select',{ref:"cpSelect",staticClass:"cpSelect__inner",attrs:{"id":_vm.selectReferenceId,"disabled":_vm.disabled,"required":_vm.required,"autocomplete":_vm.autocomplete,"name":_vm.name},domProps:{"value":_vm.value},on:{"input":_vm.handleChange}},[_c('option',{attrs:{"value":""}},[_vm._v(_vm._s(_vm.defaultValue))]),_vm._l((_vm.options),function(option,index){return _c('option',{key:index,domProps:{"value":option.value}},[_vm._v(_vm._s(option.label))])})],2)]),_c('transition-expand',[(_vm.displayErrorMessage)?_c('base-input-label',{attrs:{"is-invalid":_vm.isInvalid,"for":_vm.selectReferenceId}},[_vm._v(" "+_vm._s(_vm.errorMessage)+" ")]):_vm._e()],1)],1)}
|
|
32672
|
+
var CpSelectvue_type_template_id_294aab48_staticRenderFns = []
|
|
32649
32673
|
|
|
32650
32674
|
|
|
32651
|
-
// CONCATENATED MODULE: ./src/components/selects/CpSelect.vue?vue&type=template&id=
|
|
32675
|
+
// CONCATENATED MODULE: ./src/components/selects/CpSelect.vue?vue&type=template&id=294aab48&
|
|
32652
32676
|
|
|
32653
32677
|
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/selects/CpSelect.vue?vue&type=script&lang=js&
|
|
32654
32678
|
|
|
@@ -32752,6 +32776,9 @@ var CpSelectvue_type_template_id_289ecdd0_staticRenderFns = []
|
|
|
32752
32776
|
'cpSelect--isDisabled': this.disabled,
|
|
32753
32777
|
'cpSelect--isLarge': this.isLarge
|
|
32754
32778
|
};
|
|
32779
|
+
},
|
|
32780
|
+
displayErrorMessage: function displayErrorMessage() {
|
|
32781
|
+
return this.isInvalid && this.errorMessage.length;
|
|
32755
32782
|
}
|
|
32756
32783
|
},
|
|
32757
32784
|
mounted: function mounted() {
|
|
@@ -32780,8 +32807,8 @@ var CpSelectvue_type_style_index_0_lang_scss_ = __webpack_require__("c44e");
|
|
|
32780
32807
|
|
|
32781
32808
|
var CpSelect_component = normalizeComponent(
|
|
32782
32809
|
selects_CpSelectvue_type_script_lang_js_,
|
|
32783
|
-
|
|
32784
|
-
|
|
32810
|
+
CpSelectvue_type_template_id_294aab48_render,
|
|
32811
|
+
CpSelectvue_type_template_id_294aab48_staticRenderFns,
|
|
32785
32812
|
false,
|
|
32786
32813
|
null,
|
|
32787
32814
|
null,
|
|
@@ -32790,14 +32817,14 @@ var CpSelect_component = normalizeComponent(
|
|
|
32790
32817
|
)
|
|
32791
32818
|
|
|
32792
32819
|
/* harmony default export */ var CpSelect = (CpSelect_component.exports);
|
|
32793
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
32820
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/pug-plain-loader!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/selects/CpMultiselect.vue?vue&type=template&id=46baab41&scoped=true&lang=pug&
|
|
32794
32821
|
var CpMultiselectvue_type_template_id_46baab41_scoped_true_lang_pug_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"container-select-group"},[(_vm.label)?_c('label',[_c('div',{staticClass:"label label--title"},[_vm._v(_vm._s(_vm.label))])]):_vm._e(),_c('core-multi-select',{class:{ "multiselect--error": _vm.isError },attrs:{"id":_vm.id,"options":_vm.options,"placeholder":_vm.placeholder,"group-values":_vm.groupValues,"group-value":_vm.groupValue,"group-label":_vm.groupLabel,"track-by":_vm.trackBy,"label":_vm.itemLabel,"block-keys":['Tab'],"group-select":_vm.groupSelect,"group-select-unique":_vm.groupSelectUnique,"close-on-select":_vm.closeOnSelect,"taggable":_vm.taggable,"multiple":_vm.multiple,"loading":_vm.loading,"show-no-results":false},on:{"search-change":_vm.onSearchChange,"input":_vm.onInputChange},scopedSlots:_vm._u([{key:"option",fn:function(props){return [(props.option.$isLabel)?[_vm._t("group-icon"),_c('div',{staticClass:"option__desc"},[[_c('span',{staticClass:"option__title"},[_vm._v(_vm._s(props.option.$groupLabel))]),_c('span',{staticClass:"option__value"},[_vm._v(_vm._s(props.option.$groupValue))])]],2)]:[_vm._t("item-icon"),_c('div',{staticClass:"option__desc"},[_c('span',{staticClass:"option__title"},[_vm._v(_vm._s(props.option.label))]),_c('span',{staticClass:"option__value"},[_vm._v(_vm._s(props.option.code))])])]]}}],null,true),model:{value:(_vm.values),callback:function ($$v) {_vm.values=$$v},expression:"values"}}),_c('transition',{attrs:{"name":"collapse"}},[(_vm.isError && !_vm.focus)?_c('label',{staticClass:"select__error"},[_c('div',{staticClass:"label label--error"},[_vm._v(_vm._s(_vm.errorMessage))])]):_vm._e()]),(_vm.debug)?_c('pre',{staticClass:"language-json"}):_vm._e(),(_vm.debug)?_c('code',[_vm._v(_vm._s(_vm.values))]):_vm._e()],1)}
|
|
32795
32822
|
var CpMultiselectvue_type_template_id_46baab41_scoped_true_lang_pug_staticRenderFns = []
|
|
32796
32823
|
|
|
32797
32824
|
|
|
32798
32825
|
// CONCATENATED MODULE: ./src/components/selects/CpMultiselect.vue?vue&type=template&id=46baab41&scoped=true&lang=pug&
|
|
32799
32826
|
|
|
32800
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
32827
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/libs/CoreMultiSelect.vue?vue&type=template&id=5b4e37c0&scoped=true&
|
|
32801
32828
|
var CoreMultiSelectvue_type_template_id_5b4e37c0_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"multiselect",class:{ 'multiselect--active': _vm.isOpen, 'multiselect--disabled': _vm.disabled, 'multiselect--above': _vm.isAbove },attrs:{"tabindex":_vm.searchable ? -1 : _vm.tabindex,"aria-owns":'listbox-' + _vm.id,"role":"combobox"},on:{"focus":function($event){return _vm.activate()},"blur":function($event){_vm.searchable ? false : _vm.deactivate()},"keydown":[function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"down",40,$event.key,["Down","ArrowDown"])){ return null; }if($event.target !== $event.currentTarget){ return null; }$event.preventDefault();return _vm.pointerForward()},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"up",38,$event.key,["Up","ArrowUp"])){ return null; }if($event.target !== $event.currentTarget){ return null; }$event.preventDefault();return _vm.pointerBackward()}],"keypress":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")&&_vm._k($event.keyCode,"tab",9,$event.key,"Tab")){ return null; }$event.stopPropagation();if($event.target !== $event.currentTarget){ return null; }return _vm.addPointerElement($event)},"keyup":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"esc",27,$event.key,["Esc","Escape"])){ return null; }return _vm.deactivate()}}},[_vm._t("caret",function(){return [_c('div',{staticClass:"multiselect__select",on:{"mousedown":function($event){$event.preventDefault();$event.stopPropagation();return _vm.toggle()}}})]},{"toggle":_vm.toggle}),_vm._t("clear",null,{"search":_vm.search}),_c('div',{ref:"tags",staticClass:"multiselect__tags"},[_vm._t("selection",function(){return [(_vm.internalValue && _vm.internalValue.length > _vm.limit)?[_vm._t("limit",function(){return [_c('strong',{staticClass:"multiselect__strong",domProps:{"textContent":_vm._s(_vm.limitText(_vm.internalValue.length - _vm.limit))}})]})]:_vm._e()]},{"search":_vm.search,"remove":_vm.removeElement,"values":_vm.visibleValues,"isOpen":_vm.isOpen}),_c('transition',{attrs:{"name":"multiselect__loading"}},[_vm._t("loading",function(){return [_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.loading),expression:"loading"}],staticClass:"multiselect__spinner"})]})],2),(_vm.searchable)?_c('input',{ref:"search",staticClass:"multiselect__input",style:(_vm.inputStyle),attrs:{"id":_vm.id,"name":_vm.name,"placeholder":_vm.placeholder,"disabled":_vm.disabled,"tabindex":_vm.tabindex,"aria-controls":'listbox-' + _vm.id,"type":"text","autocomplete":"off","spellcheck":"false"},domProps:{"value":_vm.search},on:{"input":function($event){return _vm.updateSearch($event.target.value)},"focus":function($event){$event.preventDefault();return _vm.activate()},"blur":function($event){$event.preventDefault();return _vm.deactivate()},"keyup":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"esc",27,$event.key,["Esc","Escape"])){ return null; }return _vm.deactivate()},"keydown":[function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"down",40,$event.key,["Down","ArrowDown"])){ return null; }$event.preventDefault();return _vm.pointerForward()},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"up",38,$event.key,["Up","ArrowUp"])){ return null; }$event.preventDefault();return _vm.pointerBackward()},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"delete",[8,46],$event.key,["Backspace","Delete","Del"])){ return null; }$event.stopPropagation();return _vm.removeLastElement()}],"keypress":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }$event.preventDefault();$event.stopPropagation();if($event.target !== $event.currentTarget){ return null; }return _vm.addPointerElement($event)}}}):_vm._e(),(_vm.isSingleLabelVisible)?_c('span',{staticClass:"multiselect__single",on:{"mousedown":function($event){$event.preventDefault();return _vm.toggle.apply(null, arguments)}}},[_vm._t("singleLabel",function(){return [_vm._v(" "+_vm._s(_vm.currentOptionLabel)+" ")]},{"option":_vm.singleValue})],2):_vm._e()],2),_c('transition',{attrs:{"name":"multiselect"}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isOpen),expression:"isOpen"}],ref:"list",staticClass:"multiselect__content-wrapper",style:({ maxHeight: _vm.optimizedHeight + 'px' }),attrs:{"tabindex":"-1"},on:{"focus":_vm.activate,"mousedown":function($event){$event.preventDefault();}}},[_c('ul',{staticClass:"multiselect__content",style:(_vm.contentStyle),attrs:{"id":'listbox-' + _vm.id,"role":"listbox"}},[_vm._t("beforeList"),(_vm.multiple && _vm.max === _vm.internalValue.length)?_c('li',[_c('div',{staticClass:"multiselect__option"},[_vm._t("maxElements",function(){return [_vm._v(" Maximum of "+_vm._s(_vm.max)+" options selected. First remove a selected option to select another. ")]})],2)]):_vm._e(),(!_vm.max || _vm.internalValue.length < _vm.max)?_vm._l((_vm.filteredOptions),function(option,index){return _c('li',{key:index,staticClass:"multiselect__element",attrs:{"id":(_vm.id + " - " + index),"role":!(option && (option.$isLabel || option.$isDisabled)) ? 'option' : null}},[(!(option && (option.$isLabel || option.$isDisabled)))?_c('div',{staticClass:"multiselect__option",class:_vm.optionHighlight(index, option),on:{"click":function($event){$event.stopPropagation();return _vm.select(option)},"mouseenter":function($event){if($event.target !== $event.currentTarget){ return null; }return _vm.pointerSet(index)}}},[_vm._t("option",function(){return [_c('span',[_vm._v(_vm._s(_vm.getOptionLabel(option)))])]},{"option":option,"search":_vm.search})],2):_vm._e(),(option && (option.$isLabel || option.$isDisabled))?_c('div',{staticClass:"multiselect__option",class:_vm.groupHighlight(index, option),on:{"mouseenter":function($event){if($event.target !== $event.currentTarget){ return null; }_vm.groupSelect && _vm.pointerSet(index)},"mousedown":function($event){$event.preventDefault();return _vm.selectGroup(option)}}},[_vm._t("option",function(){return [_c('span',[_vm._v(_vm._s(_vm.getOptionLabel(option)))])]},{"option":option,"search":_vm.search})],2):_vm._e()])}):_vm._e(),_c('li',{directives:[{name:"show",rawName:"v-show",value:(_vm.showNoResults && _vm.filteredOptions.length === 0 && _vm.search && !_vm.loading),expression:"showNoResults && filteredOptions.length === 0 && search && !loading"}]},[_c('span',{staticClass:"multiselect__option"},[_vm._t("noResult",function(){return [_vm._v(" No elements found. Consider changing the search query. ")]},{"search":_vm.search})],2)]),_c('li',{directives:[{name:"show",rawName:"v-show",value:(_vm.showNoOptions && _vm.options.length === 0 && !_vm.search && !_vm.loading),expression:"showNoOptions && options.length === 0 && !search && !loading"}]},[_c('span',{staticClass:"multiselect__option"},[_vm._t("noOptions",function(){return [_vm._v("List is empty.")]})],2)])],2)])]),(_vm.visibleValues.length > 0)?_c('div',{staticClass:"multiselect__tags-wrap"},[_vm._l((_vm.visibleValues),function(option,index){return [_vm._t("tag",function(){return [_c('span',{key:index,staticClass:"multiselect__tag"},[_c('span',{domProps:{"textContent":_vm._s(_vm.getOptionLabel(option))}}),_c('i',{staticClass:"multiselect__tag-icon",attrs:{"tabindex":"1"},on:{"keypress":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }$event.preventDefault();return _vm.removeElement(option)},"mousedown":function($event){$event.preventDefault();return _vm.removeElement(option)}}})])]},{"option":option,"search":_vm.search,"remove":_vm.removeElement})]})],2):_vm._e()],2)}
|
|
32802
32829
|
var CoreMultiSelectvue_type_template_id_5b4e37c0_scoped_true_staticRenderFns = []
|
|
32803
32830
|
|
|
@@ -34318,7 +34345,7 @@ var CpMultiselect_component = normalizeComponent(
|
|
|
34318
34345
|
)
|
|
34319
34346
|
|
|
34320
34347
|
/* harmony default export */ var CpMultiselect = (CpMultiselect_component.exports);
|
|
34321
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
34348
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/selects/CpSelectMenu/index.vue?vue&type=template&id=03610cc9&
|
|
34322
34349
|
var CpSelectMenuvue_type_template_id_03610cc9_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:"click-outside",rawName:"v-click-outside",value:(_vm.closeDropdown),expression:"closeDropdown"}],staticClass:"cpSelectMenu"},[_c('button',{staticClass:"cpSelectMenu__button",attrs:{"type":"button"},on:{"click":_vm.toggleDropdown}},[_c('span',{staticClass:"cpSelectMenu__label"},[_vm._v(_vm._s(_vm.selectedValue.label))]),_c('chevron-down-icon',{staticClass:"cpSelectMenu__icon",class:{ 'cpSelectMenu__icon--isOpened': _vm.isDropdownOpen }})],1),_c('transition',{on:{"enter":_vm.enter}},[(_vm.isDropdownOpen)?_c('div',{ref:"dropdownRef",staticClass:"cpSelectMenu__dropdown dropdown"},[(_vm.dropdownTitle)?_c('p',{staticClass:"dropdown__title"},[_vm._v(" "+_vm._s(_vm.dropdownTitle)+" "),_c('button',{attrs:{"type":"button"},on:{"click":_vm.closeDropdown}},[_c('x-icon')],1)]):_vm._e(),_c('div',{staticClass:"dropdown__list"},[(_vm.hasFilter)?_c('label',{staticClass:"dropdown__filterBar"},[_c('search-icon'),_c('input',{ref:"dropdownFilterRef",attrs:{"type":"text","placeholder":_vm.dropdownFilterPlaceholder},on:{"input":_vm.updateFilterValue}})],1):_vm._e(),(_vm.values.length)?_c('ul',{staticClass:"dropdown__items"},_vm._l((_vm.values),function(ref,index){
|
|
34323
34350
|
var value = ref.value;
|
|
34324
34351
|
var label = ref.label;
|
|
@@ -34511,7 +34538,7 @@ var CpSelectMenu_component = normalizeComponent(
|
|
|
34511
34538
|
)
|
|
34512
34539
|
|
|
34513
34540
|
/* harmony default export */ var CpSelectMenu = (CpSelectMenu_component.exports);
|
|
34514
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
34541
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/toggles/CpCheckbox/index.vue?vue&type=template&id=9c838cc2&
|
|
34515
34542
|
var CpCheckboxvue_type_template_id_9c838cc2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('label',{staticClass:"cpCheckbox",class:_vm.computedClasses,attrs:{"for":_vm.checkboxUniqueId}},[_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.isChecked),expression:"isChecked"}],attrs:{"id":_vm.checkboxUniqueId,"disabled":_vm.isDisabled,"type":"checkbox","name":_vm.groupName,"autofocus":_vm.autofocus},domProps:{"value":_vm.checkboxValue,"checked":Array.isArray(_vm.isChecked)?_vm._i(_vm.isChecked,_vm.checkboxValue)>-1:(_vm.isChecked)},on:{"change":[function($event){var $$a=_vm.isChecked,$$el=$event.target,$$c=$$el.checked?(true):(false);if(Array.isArray($$a)){var $$v=_vm.checkboxValue,$$i=_vm._i($$a,$$v);if($$el.checked){$$i<0&&(_vm.isChecked=$$a.concat([$$v]))}else{$$i>-1&&(_vm.isChecked=$$a.slice(0,$$i).concat($$a.slice($$i+1)))}}else{_vm.isChecked=$$c}},function($event){return _vm.onChange(_vm.checkboxValue)}]}}),_c('check-icon'),_c('span',{staticClass:"cpCheckbox__label",class:{ 'cpCheckbox__label--isCapitalized': _vm.capitalizeLabel }},[_vm._v(" "+_vm._s(_vm.checkboxLabel)+" ")])],1)}
|
|
34516
34543
|
var CpCheckboxvue_type_template_id_9c838cc2_staticRenderFns = []
|
|
34517
34544
|
|
|
@@ -34658,7 +34685,7 @@ var CpCheckbox_component = normalizeComponent(
|
|
|
34658
34685
|
)
|
|
34659
34686
|
|
|
34660
34687
|
/* harmony default export */ var CpCheckbox = (CpCheckbox_component.exports);
|
|
34661
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
34688
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/toggles/CpRadio/index.vue?vue&type=template&id=57f2409b&
|
|
34662
34689
|
var CpRadiovue_type_template_id_57f2409b_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('label',{staticClass:"cpRadio",class:_vm.computedClasses,attrs:{"for":_vm.radioUniqueId}},[_c('input',{attrs:{"id":_vm.radioUniqueId,"disabled":_vm.isDisabled,"type":"radio","autofocus":_vm.autofocus,"name":_vm.groupName},domProps:{"checked":_vm.isSelected,"value":_vm.radioValue},on:{"change":function($event){return _vm.onChange(_vm.radioValue)}}}),_c('span',{staticClass:"cpRadio__content"},[_c('span',{staticClass:"cpRadio__information"},[_c('span',{staticClass:"cpRadio__label"},[_vm._v(_vm._s(_vm.radioLabel))]),(_vm.radioDescription)?_c('span',{staticClass:"cpRadio__description"},[_vm._v(_vm._s(_vm.radioDescription))]):_vm._e()]),(_vm.additionalData)?_c('span',{staticClass:"cpRadio__additionalData"},[_vm._v(_vm._s(_vm.additionalData))]):_vm._e()])])}
|
|
34663
34690
|
var CpRadiovue_type_template_id_57f2409b_staticRenderFns = []
|
|
34664
34691
|
|
|
@@ -34795,7 +34822,7 @@ var CpRadio_component = normalizeComponent(
|
|
|
34795
34822
|
)
|
|
34796
34823
|
|
|
34797
34824
|
/* harmony default export */ var CpRadio = (CpRadio_component.exports);
|
|
34798
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
34825
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/toggles/CpSwitch/index.vue?vue&type=template&id=4cb58767&
|
|
34799
34826
|
var CpSwitchvue_type_template_id_4cb58767_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('label',{staticClass:"cpSwitch",class:_vm.computedClasses,attrs:{"for":_vm.switchUniqueId}},[_c('span',{staticClass:"cpSwitch__switch"},[_c('input',{attrs:{"id":_vm.switchUniqueId,"disabled":_vm.disabled,"type":"checkbox","name":_vm.groupName,"autofocus":_vm.autofocus},domProps:{"checked":_vm.value,"value":_vm.value},on:{"change":function($event){return _vm.handleClick(_vm.value)}}}),_c('span',{staticClass:"cpSwitch__icon"},[_c('check-icon')],1),_vm._m(0)]),(_vm.label)?_c('span',{staticClass:"cpSwitch__label"},[_vm._v(_vm._s(_vm.label))]):_vm._e()])}
|
|
34800
34827
|
var CpSwitchvue_type_template_id_4cb58767_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:"cpSwitch__knobContainer"},[_c('span',{staticClass:"cpSwitch__knob"})])}]
|
|
34801
34828
|
|
|
@@ -34927,7 +34954,7 @@ var CpSwitch_component = normalizeComponent(
|
|
|
34927
34954
|
)
|
|
34928
34955
|
|
|
34929
34956
|
/* harmony default export */ var CpSwitch = (CpSwitch_component.exports);
|
|
34930
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
34957
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/lists-and-table/CpTable/index.vue?vue&type=template&id=2fb1e4d2&
|
|
34931
34958
|
var CpTablevue_type_template_id_2fb1e4d2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpTable",class:_vm.mainClasses},[_c('div',{ref:"cpTableContainer",staticClass:"cpTable__container",class:_vm.containerClasses,attrs:{"role":"region","aria-labelledby":_vm.uniqueId,"tabindex":"0"}},[_c('table',{staticClass:"cpTable__table"},[(_vm.caption)?_c('caption',{staticClass:"cpTable__caption",attrs:{"id":_vm.uniqueId}},[_vm._v(" "+_vm._s(_vm.caption)+" ")]):_vm._e(),_c('thead',{staticClass:"cpTable__header"},[_c('tr',{staticClass:"cpTable__row cpTable__row--header"},[_vm._l((_vm.normalizedColumns),function(column){return _c('th',{key:column.id,staticClass:"cpTable__column",style:(_vm.getColumnStyle(column))},[_vm._t("column",function(){return [_vm._v(" "+_vm._s(column.name)+" ")]},{"column":column})],2)}),_c('th',{directives:[{name:"show",rawName:"v-show",value:(_vm.enableRowOptions),expression:"enableRowOptions"}],staticClass:"cpTable__column cpTable__column--isOptions"},[_c('span')])],2)]),_c('tbody',{staticClass:"cpTable__body"},_vm._l((_vm.visibleRows),function(rowData,rowIndex){return _c('tr',{key:rowIndex,staticClass:"cpTable__row cpTable__row--body",class:_vm.getRowClasses(rowData, rowIndex),attrs:{"tabindex":_vm.getTabindex(rowData)},on:{"click":function($event){return _vm.handleRowClick(rowData, rowIndex)},"contextmenu":function($event){return _vm.handleRowRightClick({ rowData: rowData, rowIndex: rowIndex }, $event)},"keydown":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }return _vm.handleRowClick(rowData, rowIndex)}}},[_vm._t("row",function(){return [_vm._l((rowData),function(cellValue,cellKey,cellIndex){return _c('td',{key:(cellKey + "_" + rowIndex),staticClass:"cpTable__cell",class:_vm.getCellClasses(cellKey),style:(_vm.getCellStyle(cellIndex)),attrs:{"colspan":_vm.getColspan(cellKey)}},[_vm._t(cellKey,function(){return [(_vm.isFullWidthRow(rowData))?_c('span',[_vm._v(_vm._s(cellValue))]):[_vm._v(_vm._s(cellValue))]]},{"cell":cellValue})],2)}),_c('td',{directives:[{name:"show",rawName:"v-show",value:(_vm.areRowOptionsEnabled(rowData)),expression:"areRowOptionsEnabled(rowData)"}],staticClass:"cpTable__cell cpTable__cell--isOptions"},[_vm._t("row-quick-actions",function(){return [_c('button',{on:{"click":function($event){$event.stopPropagation();return _vm.handleRowRightClick({ rowData: rowData, rowIndex: rowIndex }, $event)}}},[_c('more-vertical-icon')],1)]},{"row":rowData})],2)]},{"row":rowData})],2)}),0)]),(_vm.hasNoResult)?_c('cp-table-empty-state',{staticClass:"cpTable__emptyState",attrs:{"placeholder":_vm.noResultPlaceholder}}):_vm._e()],1),(_vm.hasPagination)?_c('div',{staticClass:"cpTable__footer"},[_c('div',{staticClass:"footer__details"},[_c('p',{staticClass:"footer__results"},[(!_vm.isLoading)?_vm._t("footer-details",function(){return [(_vm.numberOfResults)?[_c('strong',[_vm._v(" "+_vm._s(_vm.paginationLabel)+" ")]),_c('span',{staticClass:"footer__resultsCount"},[_vm._v("on "+_vm._s(_vm.paginationResultsDetails))])]:[_vm._v(" No results ")]]}):[_vm._v(" Loading "),_c('cp-loader',{staticClass:"cpTable__loader--isSmall",attrs:{"color":_vm.LoaderColor}})]],2)]),_c('div',{staticClass:"footer__pagination"},[_c('button',{attrs:{"disabled":!_vm.isPreviousEnabled},on:{"click":function($event){return _vm.handleNavigationClick(false)}}},[_vm._v("Prev.")]),_c('button',{attrs:{"disabled":!_vm.isNextEnabled},on:{"click":function($event){return _vm.handleNavigationClick()}}},[_vm._v("Next")])])]):_vm._e(),_c('div',{staticClass:"cpTable__overlay"})])}
|
|
34932
34959
|
var CpTablevue_type_template_id_2fb1e4d2_staticRenderFns = []
|
|
34933
34960
|
|
|
@@ -34957,7 +34984,7 @@ function decamelize(camelCasedString) {
|
|
|
34957
34984
|
// CONCATENATED MODULE: ./src/helpers/string/index.js
|
|
34958
34985
|
|
|
34959
34986
|
|
|
34960
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
34987
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"0ab8a1a8-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/lists-and-table/CpTable/CpTableEmptyState/index.vue?vue&type=template&id=1ad2854c&
|
|
34961
34988
|
var CpTableEmptyStatevue_type_template_id_1ad2854c_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"cpTableEmptyState"},[_c('div',{staticClass:"cpTableEmptyState__wrapper"},[_c('figure',{staticClass:"cpTableEmptyState__icon"},[_c('search-icon')],1),_c('p',{staticClass:"cpTableEmptyState__headline"},[_c('strong',[_vm._v(_vm._s(_vm.placeholder))])]),_c('p',{staticClass:"cpTableEmptyState__description"},[_vm._v("There aren't any results for that query.")])])])}
|
|
34962
34989
|
var CpTableEmptyStatevue_type_template_id_1ad2854c_staticRenderFns = []
|
|
34963
34990
|
|