@dialpad/dialtone-vue 1.9.0 → 1.10.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/CHANGELOG.md +13 -0
- package/dist/dialtone-vue.common.js +476 -129
- package/dist/dialtone-vue.umd.js +476 -129
- package/dist/dialtone-vue.umd.min.js +1 -1
- package/package.json +1 -1
|
@@ -225,7 +225,7 @@ function toComment(sourceMap) {
|
|
|
225
225
|
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
|
|
226
226
|
exports = ___CSS_LOADER_API_IMPORT___(false);
|
|
227
227
|
// Module
|
|
228
|
-
exports.push([module.i, ".dt-popover__content--align-right .dt-popover__caret{right:2.4rem}.dt-popover__content--align-center .dt-popover__caret{left:50%}.dt-popover__content--valign-top{bottom:100%;margin-top:0;margin-bottom:.4rem}.dt-popover__content--valign-top .dt-popover__caret{bottom
|
|
228
|
+
exports.push([module.i, ".dt-popover__content--align-right .dt-popover__caret{right:2.4rem}.dt-popover__content--align-left .dt-popover__caret{left:2.4rem}.dt-popover__content--align-center .dt-popover__caret{left:50%}.dt-popover__content--valign-top{bottom:100%;margin-top:0;margin-bottom:.4rem}.dt-popover__content--valign-top .dt-popover__caret{bottom:0;transform:rotate(225deg)}.dt-popover__content--valign-bottom .dt-popover__caret{bottom:100%;top:0;transform:rotate(45deg)}.dt-popover__caret{transform:rotate(45deg)}.tippy-box[data-popper-escaped] .dt-popover-box,.tippy-box[data-popper-reference-hidden] .dt-popover-box{visibility:hidden;pointer-events:none}.d-popover-overlay{--bgo:85%!important}.dt-popover-box,.dt-popover-box *,.dt-popover-box :after,.dt-popover-box :before{box-sizing:border-box}.dt-popover-box__grid{grid-template-rows:auto 1fr}", ""]);
|
|
229
229
|
// Exports
|
|
230
230
|
module.exports = exports;
|
|
231
231
|
|
|
@@ -250,7 +250,7 @@ module.exports = exports;
|
|
|
250
250
|
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
|
|
251
251
|
exports = ___CSS_LOADER_API_IMPORT___(false);
|
|
252
252
|
// Module
|
|
253
|
-
exports.push([module.i, ".dt-list-item--focusable
|
|
253
|
+
exports.push([module.i, ".dt-list-item--focusable.dt-list-item--highlighted,.dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--focusable:hover{background-color:hsla(var(--black-400-h),var(--black-400-s),var(--black-400-l),.15);cursor:pointer}.dt-list-item--focusable:focus-visible{outline:var(--primary-color) solid 2px}", ""]);
|
|
254
254
|
// Exports
|
|
255
255
|
module.exports = exports;
|
|
256
256
|
|
|
@@ -838,7 +838,7 @@ if (typeof window !== 'undefined') {
|
|
|
838
838
|
// Indicate to webpack that this file can be concatenated
|
|
839
839
|
/* harmony default export */ var setPublicPath = (null);
|
|
840
840
|
|
|
841
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
841
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/avatar/avatar.vue?vue&type=template&id=3c007948&
|
|
842
842
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:[
|
|
843
843
|
'd-avatar',
|
|
844
844
|
_vm.AVATAR_KIND_MODIFIERS[_vm.kind],
|
|
@@ -948,11 +948,12 @@ const FOCUSABLE_SELECTOR_NOT_HIDDEN = 'input:not([type=hidden]):not(:disabled)';
|
|
|
948
948
|
|
|
949
949
|
const FOCUSABLE_SELECTOR_NOT_DISABLED = 'select:not(:disabled),textarea:not(:disabled),button:not(:disabled)'; // // selector to find focusable not hidden and disabled elements
|
|
950
950
|
|
|
951
|
-
const FOCUSABLE_SELECTOR_NOT_HIDDEN_DISABLED =
|
|
951
|
+
const FOCUSABLE_SELECTOR_NOT_HIDDEN_DISABLED = "".concat(FOCUSABLE_SELECTOR_NOT_HIDDEN, ",").concat(FOCUSABLE_SELECTOR_NOT_DISABLED); // selector to find focusable elements
|
|
952
952
|
|
|
953
|
-
const FOCUSABLE_SELECTOR =
|
|
953
|
+
const FOCUSABLE_SELECTOR = "a,frame,iframe,".concat(FOCUSABLE_SELECTOR_NOT_HIDDEN_DISABLED, ",*[tabindex]");
|
|
954
|
+
const scheduler = typeof setImmediate === 'function' ? setImmediate : setTimeout;
|
|
954
955
|
function getUniqueString(prefix = DEFAULT_PREFIX) {
|
|
955
|
-
return
|
|
956
|
+
return "".concat(prefix).concat(UNIQUE_ID_COUNTER++);
|
|
956
957
|
}
|
|
957
958
|
function formatMessages(messages) {
|
|
958
959
|
if (!messages) {
|
|
@@ -1032,12 +1033,11 @@ const htmlFragment = {
|
|
|
1032
1033
|
this.$createElement = h;
|
|
1033
1034
|
},
|
|
1034
1035
|
|
|
1035
|
-
template:
|
|
1036
|
+
template: "<div>".concat(ctx.props.html, "</div>")
|
|
1036
1037
|
}).$mount()._vnode.children;
|
|
1037
1038
|
}
|
|
1038
1039
|
|
|
1039
1040
|
};
|
|
1040
|
-
const scheduler = typeof setImmediate === 'function' ? setImmediate : setTimeout;
|
|
1041
1041
|
const flushPromises = () => {
|
|
1042
1042
|
return new Promise(resolve => {
|
|
1043
1043
|
scheduler(resolve);
|
|
@@ -1284,7 +1284,7 @@ var component = normalizeComponent(
|
|
|
1284
1284
|
// CONCATENATED MODULE: ./components/avatar/index.js
|
|
1285
1285
|
|
|
1286
1286
|
|
|
1287
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1287
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/badge/badge.vue?vue&type=template&id=8281dbe6&
|
|
1288
1288
|
var badgevue_type_template_id_8281dbe6_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{class:[
|
|
1289
1289
|
'd-badge',
|
|
1290
1290
|
_vm.BADGE_COLOR_MODIFIERS[_vm.color] ],attrs:{"data-qa":"dt-badge"}},[_vm._t("default",[_vm._v(" "+_vm._s(_vm.text)+" ")])],2)}
|
|
@@ -1381,21 +1381,21 @@ var badge_component = normalizeComponent(
|
|
|
1381
1381
|
// CONCATENATED MODULE: ./components/badge/index.js
|
|
1382
1382
|
|
|
1383
1383
|
|
|
1384
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1384
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/banner/banner.vue?vue&type=template&id=008cf60a&
|
|
1385
1385
|
var bannervue_type_template_id_008cf60a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('aside',{class:_vm.bannerClass,attrs:{"role":_vm.role},on:{"keydown":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"tab",9,$event.key,"Tab")){ return null; }return _vm.trapFocus($event)}}},[_c('div',{staticClass:"d-banner__dialog",attrs:{"aria-labelledby":_vm.titleId,"aria-describedby":_vm.contentId}},[_c('dt-notice-icon',_vm._g({attrs:{"kind":_vm.kind}},_vm.$listeners),[_vm._t("icon")],2),_c('dt-notice-content',_vm._g({attrs:{"title-id":_vm.titleId,"content-id":_vm.contentId,"title":_vm.title},scopedSlots:_vm._u([{key:"titleOverride",fn:function(){return [_vm._t("titleOverride")]},proxy:true}],null,true)},_vm.$listeners),[_vm._t("default")],2),_c('dt-notice-action',_vm._g({attrs:{"hide-close":_vm.hideClose,"close-button-props":_vm.closeButtonProps}},_vm.$listeners),[_vm._t("action")],2)],1)])}
|
|
1386
1386
|
var bannervue_type_template_id_008cf60a_staticRenderFns = []
|
|
1387
1387
|
|
|
1388
1388
|
|
|
1389
1389
|
// CONCATENATED MODULE: ./components/banner/banner.vue?vue&type=template&id=008cf60a&
|
|
1390
1390
|
|
|
1391
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1391
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/notice/notice_icon.vue?vue&type=template&id=58ae40bb&
|
|
1392
1392
|
var notice_iconvue_type_template_id_58ae40bb_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.defaultIcon || _vm.$slots.default)?_c('div',{staticClass:"d-notice__icon",attrs:{"aria-hidden":"true"}},[_vm._t("default",[_c(_vm.defaultIcon,{tag:"component"})])],2):_vm._e()}
|
|
1393
1393
|
var notice_iconvue_type_template_id_58ae40bb_staticRenderFns = []
|
|
1394
1394
|
|
|
1395
1395
|
|
|
1396
1396
|
// CONCATENATED MODULE: ./components/notice/notice_icon.vue?vue&type=template&id=58ae40bb&
|
|
1397
1397
|
|
|
1398
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1398
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconLightbulb.vue?vue&type=template&id=07d1b1af&
|
|
1399
1399
|
var IconLightbulbvue_type_template_id_07d1b1af_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__lightbulb",attrs:{"aria-hidden":"true","aria-label":"Lightbulb","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M9 21c0 .5.4 1 1 1h4c.6 0 1-.5 1-1v-1H9v1zm3-19C8.1 2 5 5.1 5 9c0 2.4 1.2 4.5 3 5.7V17c0 .5.4 1 1 1h6c.6 0 1-.5 1-1v-2.3c1.8-1.3 3-3.4 3-5.7 0-3.9-3.1-7-7-7z"}})])}
|
|
1400
1400
|
var IconLightbulbvue_type_template_id_07d1b1af_staticRenderFns = []
|
|
1401
1401
|
|
|
@@ -1421,7 +1421,7 @@ var IconLightbulb_component = normalizeComponent(
|
|
|
1421
1421
|
)
|
|
1422
1422
|
|
|
1423
1423
|
/* harmony default export */ var IconLightbulb = (IconLightbulb_component.exports);
|
|
1424
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1424
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconInfo.vue?vue&type=template&id=d1105ee6&
|
|
1425
1425
|
var IconInfovue_type_template_id_d1105ee6_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__info",attrs:{"aria-hidden":"true","aria-label":"Info","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"}})])}
|
|
1426
1426
|
var IconInfovue_type_template_id_d1105ee6_staticRenderFns = []
|
|
1427
1427
|
|
|
@@ -1447,7 +1447,7 @@ var IconInfo_component = normalizeComponent(
|
|
|
1447
1447
|
)
|
|
1448
1448
|
|
|
1449
1449
|
/* harmony default export */ var IconInfo = (IconInfo_component.exports);
|
|
1450
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1450
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconWarning.vue?vue&type=template&id=0a24defa&
|
|
1451
1451
|
var IconWarningvue_type_template_id_0a24defa_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__warning",attrs:{"aria-hidden":"true","aria-label":"Warning","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z"}})])}
|
|
1452
1452
|
var IconWarningvue_type_template_id_0a24defa_staticRenderFns = []
|
|
1453
1453
|
|
|
@@ -1473,7 +1473,7 @@ var IconWarning_component = normalizeComponent(
|
|
|
1473
1473
|
)
|
|
1474
1474
|
|
|
1475
1475
|
/* harmony default export */ var IconWarning = (IconWarning_component.exports);
|
|
1476
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1476
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconError.vue?vue&type=template&id=4d9e3e9d&
|
|
1477
1477
|
var IconErrorvue_type_template_id_4d9e3e9d_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__error",attrs:{"aria-hidden":"true","aria-label":"Error","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"}})])}
|
|
1478
1478
|
var IconErrorvue_type_template_id_4d9e3e9d_staticRenderFns = []
|
|
1479
1479
|
|
|
@@ -1499,7 +1499,7 @@ var IconError_component = normalizeComponent(
|
|
|
1499
1499
|
)
|
|
1500
1500
|
|
|
1501
1501
|
/* harmony default export */ var IconError = (IconError_component.exports);
|
|
1502
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1502
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconCheckCircle.vue?vue&type=template&id=016c7d48&
|
|
1503
1503
|
var IconCheckCirclevue_type_template_id_016c7d48_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__checkCircle",attrs:{"aria-hidden":"true","aria-label":"Check Circle","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"}})])}
|
|
1504
1504
|
var IconCheckCirclevue_type_template_id_016c7d48_staticRenderFns = []
|
|
1505
1505
|
|
|
@@ -1603,7 +1603,7 @@ var notice_icon_component = normalizeComponent(
|
|
|
1603
1603
|
)
|
|
1604
1604
|
|
|
1605
1605
|
/* harmony default export */ var notice_icon = (notice_icon_component.exports);
|
|
1606
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1606
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/notice/notice_content.vue?vue&type=template&id=24cf95e4&
|
|
1607
1607
|
var notice_contentvue_type_template_id_24cf95e4_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"d-notice__content",attrs:{"data-qa":"notice-content"}},[(_vm.title || this.$slots.titleOverride)?_c('p',{staticClass:"d-notice__title",attrs:{"id":_vm.titleId,"data-qa":"notice-content-title"}},[_vm._t("titleOverride",[_vm._v(" "+_vm._s(_vm.title)+" ")])],2):_vm._e(),_c('p',{staticClass:"d-notice__message",attrs:{"id":_vm.contentId,"data-qa":"notice-content-message"}},[_vm._t("default")],2)])}
|
|
1608
1608
|
var notice_contentvue_type_template_id_24cf95e4_staticRenderFns = []
|
|
1609
1609
|
|
|
@@ -1675,14 +1675,14 @@ var notice_content_component = normalizeComponent(
|
|
|
1675
1675
|
)
|
|
1676
1676
|
|
|
1677
1677
|
/* harmony default export */ var notice_content = (notice_content_component.exports);
|
|
1678
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1678
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/notice/notice_action.vue?vue&type=template&id=83c987fc&
|
|
1679
1679
|
var notice_actionvue_type_template_id_83c987fc_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"d-notice__actions",attrs:{"data-qa":"notice-content-actions"}},[_vm._t("default"),(!_vm.hideClose)?_c('dt-button',_vm._b({ref:"closeButton",attrs:{"size":"sm","importance":"clear","circle":"","aria-label":_vm.closeButtonProps.ariaLabel ? _vm.closeButtonProps.ariaLabel : 'Close'},on:{"click":_vm.close},scopedSlots:_vm._u([{key:"icon",fn:function(){return [_c('icon-close')]},proxy:true}],null,false,4267981299)},'dt-button',_vm.closeButtonProps,false)):_vm._e()],2)}
|
|
1680
1680
|
var notice_actionvue_type_template_id_83c987fc_staticRenderFns = []
|
|
1681
1681
|
|
|
1682
1682
|
|
|
1683
1683
|
// CONCATENATED MODULE: ./components/notice/notice_action.vue?vue&type=template&id=83c987fc&
|
|
1684
1684
|
|
|
1685
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1685
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconClose.vue?vue&type=template&id=18642c39&
|
|
1686
1686
|
var IconClosevue_type_template_id_18642c39_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__close",attrs:{"aria-hidden":"true","aria-label":"Close","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"}})])}
|
|
1687
1687
|
var IconClosevue_type_template_id_18642c39_staticRenderFns = []
|
|
1688
1688
|
|
|
@@ -1708,7 +1708,7 @@ var IconClose_component = normalizeComponent(
|
|
|
1708
1708
|
)
|
|
1709
1709
|
|
|
1710
1710
|
/* harmony default export */ var IconClose = (IconClose_component.exports);
|
|
1711
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1711
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/button/button.vue?vue&type=template&id=bde52e82&
|
|
1712
1712
|
var buttonvue_type_template_id_bde52e82_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('button',_vm._g({class:[
|
|
1713
1713
|
'base-button__button',
|
|
1714
1714
|
_vm.buttonClasses ],attrs:{"data-qa":"dt-button","type":_vm.type,"aria-live":_vm.computedAriaLive,"aria-label":_vm.loading ? 'loading' : _vm.$attrs['aria-label']}},_vm.buttonListeners),[(_vm.$slots.icon && !_vm.link)?_c('span',{class:[
|
|
@@ -1767,11 +1767,7 @@ const INVALID_COMBINATION = [{
|
|
|
1767
1767
|
}];
|
|
1768
1768
|
|
|
1769
1769
|
function _invalidCombinationMessage(circle, kind, importance) {
|
|
1770
|
-
return
|
|
1771
|
-
with kind: ${kind} and importance: ${importance} as it \
|
|
1772
|
-
does not exist in our design system. \
|
|
1773
|
-
See https://dialpad.design/components/button for a \
|
|
1774
|
-
list of available button styles`;
|
|
1770
|
+
return "You cannot not have a ".concat(circle ? 'circle ' : '', "button with kind: ").concat(kind, " and importance: ").concat(importance, " as it does not exist in our design system. See https://dialpad.design/components/button for a list of available button styles");
|
|
1775
1771
|
}
|
|
1776
1772
|
|
|
1777
1773
|
/* harmony default export */ var button_constants = ({
|
|
@@ -2150,8 +2146,8 @@ var notice_action_component = normalizeComponent(
|
|
|
2150
2146
|
/* harmony default export */ var notice_action = (notice_action_component.exports);
|
|
2151
2147
|
// CONCATENATED MODULE: ./components/mixins/modal.js
|
|
2152
2148
|
const focusableAttrs = ':not(:disabled):not([aria-disabled="true"])';
|
|
2153
|
-
const tabbableAttrs =
|
|
2154
|
-
const focusableElementsList =
|
|
2149
|
+
const tabbableAttrs = "".concat(focusableAttrs, ":not([tabindex=\"-1\"])");
|
|
2150
|
+
const focusableElementsList = "button,[href],input,select,textarea,details,[tabindex]";
|
|
2155
2151
|
/**
|
|
2156
2152
|
* this mixin provides the methods to automatically trap tab focus within
|
|
2157
2153
|
* the component this mixin is on, meaning it is not possible to tab out
|
|
@@ -2458,7 +2454,7 @@ var banner_component = normalizeComponent(
|
|
|
2458
2454
|
/* harmony default export */ var banner = (banner_component.exports);
|
|
2459
2455
|
// CONCATENATED MODULE: ./components/banner/index.js
|
|
2460
2456
|
|
|
2461
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2457
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/breadcrumbs/breadcrumbs.vue?vue&type=template&id=b762e354&
|
|
2462
2458
|
var breadcrumbsvue_type_template_id_b762e354_render = function () {
|
|
2463
2459
|
var _obj;
|
|
2464
2460
|
var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{class:[
|
|
@@ -2472,7 +2468,7 @@ var breadcrumbsvue_type_template_id_b762e354_staticRenderFns = []
|
|
|
2472
2468
|
// CONCATENATED MODULE: ./components/breadcrumbs/breadcrumbs_constants.js
|
|
2473
2469
|
const BREADCRUMB_ITEM_SELECTED_MODIFIER = 'd-breadcrumbs__item--selected';
|
|
2474
2470
|
const BREADCRUMBS_INVERTED_MODIFIER = 'd-breadcrumbs--inverted';
|
|
2475
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2471
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/breadcrumbs/breadcrumb_item.vue?vue&type=template&id=6f97ec8a&
|
|
2476
2472
|
var breadcrumb_itemvue_type_template_id_6f97ec8a_render = function () {
|
|
2477
2473
|
var _obj;
|
|
2478
2474
|
var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('li',{class:[
|
|
@@ -2483,7 +2479,7 @@ var breadcrumb_itemvue_type_template_id_6f97ec8a_staticRenderFns = []
|
|
|
2483
2479
|
|
|
2484
2480
|
// CONCATENATED MODULE: ./components/breadcrumbs/breadcrumb_item.vue?vue&type=template&id=6f97ec8a&
|
|
2485
2481
|
|
|
2486
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2482
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/link/link.vue?vue&type=template&id=08ea8c41&
|
|
2487
2483
|
var linkvue_type_template_id_08ea8c41_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a',_vm._g({class:[
|
|
2488
2484
|
'd-link',
|
|
2489
2485
|
_vm.LINK_KIND_MODIFIERS[_vm.kind] ],attrs:{"data-qa":"dt-link"}},_vm.$listeners),[_vm._t("default")],2)}
|
|
@@ -2730,7 +2726,7 @@ var breadcrumb_item_component = normalizeComponent(
|
|
|
2730
2726
|
|
|
2731
2727
|
methods: {
|
|
2732
2728
|
getBreadcrumbItemKey(index) {
|
|
2733
|
-
return
|
|
2729
|
+
return "breadcrumbs-item-".concat(index, "-").concat(utils.getUniqueString());
|
|
2734
2730
|
}
|
|
2735
2731
|
|
|
2736
2732
|
}
|
|
@@ -2763,7 +2759,7 @@ var breadcrumbs_component = normalizeComponent(
|
|
|
2763
2759
|
|
|
2764
2760
|
// CONCATENATED MODULE: ./components/button/index.js
|
|
2765
2761
|
|
|
2766
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2762
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/button_group/button_group.vue?vue&type=template&id=8962a2f0&
|
|
2767
2763
|
var button_groupvue_type_template_id_8962a2f0_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:[
|
|
2768
2764
|
'd-btn-group',
|
|
2769
2765
|
_vm.BUTTON_GROUP_ALIGNMENT[this.alignment] ],attrs:{"role":"group"}},[_vm._t("default")],2)}
|
|
@@ -2838,7 +2834,7 @@ var button_group_component = normalizeComponent(
|
|
|
2838
2834
|
// CONCATENATED MODULE: ./components/button_group/index.js
|
|
2839
2835
|
|
|
2840
2836
|
|
|
2841
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2837
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/combobox/combobox.vue?vue&type=template&id=4c9df24d&
|
|
2842
2838
|
var comboboxvue_type_template_id_4c9df24d_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"role":"combobox","aria-expanded":_vm.showList.toString(),"aria-controls":_vm.listId,"aria-owns":_vm.listId,"aria-haspopup":"listbox"},on:{"keydown":[function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"esc",27,$event.key,["Esc","Escape"])){ return null; }$event.stopPropagation();return _vm.onEscapeKey($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }return _vm.onEnterKey($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"up",38,$event.key,["Up","ArrowUp"])){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onUpKey($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"down",40,$event.key,["Down","ArrowDown"])){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onDownKey($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"home",undefined,$event.key,undefined)){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onHomeKey($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"end",undefined,$event.key,undefined)){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onEndKey($event)}]}},[_c('div',{attrs:{"data-qa":"dt-combobox-input-wrapper"}},[_vm._t("input",null,{"inputProps":_vm.inputProps})],2),(_vm.showList)?_c('div',{ref:"listWrapper",attrs:{"data-qa":"dt-combobox-list-wrapper"},on:{"mouseleave":_vm.clearHighlightIndex,"focusout":_vm.clearHighlightIndex}},[_vm._t("list",null,{"listProps":_vm.listProps,"getItemProps":_vm.getItemProps,"activeItemIndex":_vm.highlightIndex,"setHighlightIndex":_vm.setHighlightIndex})],2):_vm._e()])}
|
|
2843
2839
|
var comboboxvue_type_template_id_4c9df24d_staticRenderFns = []
|
|
2844
2840
|
|
|
@@ -3040,12 +3036,11 @@ var comboboxvue_type_template_id_4c9df24d_staticRenderFns = []
|
|
|
3040
3036
|
const listElement = this._getListElement();
|
|
3041
3037
|
|
|
3042
3038
|
if (!listElement) {
|
|
3043
|
-
console.error(
|
|
3044
|
-
listElement: `, listElement);
|
|
3039
|
+
console.error("listElementKey is required or the referenced element doesn't exist. Received ',\n listElement: ", listElement);
|
|
3045
3040
|
return 0;
|
|
3046
3041
|
}
|
|
3047
3042
|
|
|
3048
|
-
return listElement.querySelectorAll(
|
|
3043
|
+
return listElement.querySelectorAll("[role=\"".concat(listItemRole, "\"]")).length;
|
|
3049
3044
|
},
|
|
3050
3045
|
|
|
3051
3046
|
onUpKey() {
|
|
@@ -3305,7 +3300,7 @@ var comboboxvue_type_template_id_4c9df24d_staticRenderFns = []
|
|
|
3305
3300
|
},
|
|
3306
3301
|
|
|
3307
3302
|
getItemId(i) {
|
|
3308
|
-
return
|
|
3303
|
+
return "".concat(this.listId, "-item").concat(i);
|
|
3309
3304
|
},
|
|
3310
3305
|
|
|
3311
3306
|
afterHighlight() {
|
|
@@ -3348,34 +3343,44 @@ var combobox_component = normalizeComponent(
|
|
|
3348
3343
|
/* harmony default export */ var combobox = (combobox_component.exports);
|
|
3349
3344
|
// CONCATENATED MODULE: ./components/combobox/index.js
|
|
3350
3345
|
|
|
3351
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3352
|
-
var
|
|
3353
|
-
var
|
|
3346
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/dropdown/dropdown.vue?vue&type=template&id=479a72d0&
|
|
3347
|
+
var dropdownvue_type_template_id_479a72d0_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-popover',_vm._g({ref:"popover",attrs:{"content-width":_vm.contentWidth,"open":_vm.open,"has-caret":false,"fixed-vertical-alignment":_vm.fixedVerticalAlignment,"fixed-alignment":_vm.fixedAlignment,"padding":_vm.padding,"role":"menu"},on:{"update:open":_vm.setInitialHighlightIndex,"keydown":[function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"esc",27,$event.key,["Esc","Escape"])){ return null; }$event.stopPropagation();return _vm.onEscapeKey($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }return _vm.onEnterKey($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"up",38,$event.key,["Up","ArrowUp"])){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onUpKeyPress($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"down",40,$event.key,["Down","ArrowDown"])){ return null; }$event.preventDefault();return _vm.onDownKeyPress($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"home",undefined,$event.key,undefined)){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onHomeKey($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"end",undefined,$event.key,undefined)){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onEndKey($event)}]},scopedSlots:_vm._u([{key:"anchor",fn:function(props){return [_vm._t("anchor",null,null,props)]}},{key:"content",fn:function(){return [_c('div',{ref:"listWrapper",attrs:{"data-qa":"dt-dropdown-list-wrapper"},on:{"mouseleave":_vm.clearHighlightIndex}},[_vm._t("list",null,{"listProps":_vm.listProps,"getItemProps":_vm.getItemProps,"activeItemIndex":_vm.highlightIndex,"setHighlightIndex":_vm.setHighlightIndex})],2)]},proxy:true}],null,true)},_vm.$listeners))}
|
|
3348
|
+
var dropdownvue_type_template_id_479a72d0_staticRenderFns = []
|
|
3354
3349
|
|
|
3355
3350
|
|
|
3356
|
-
// CONCATENATED MODULE: ./components/dropdown/dropdown.vue?vue&type=template&id=
|
|
3351
|
+
// CONCATENATED MODULE: ./components/dropdown/dropdown.vue?vue&type=template&id=479a72d0&
|
|
3357
3352
|
|
|
3358
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3359
|
-
var
|
|
3353
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/popover/popover.vue?vue&type=template&id=eb03c67c&
|
|
3354
|
+
var popovervue_type_template_id_eb03c67c_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.elementType,_vm._g({ref:"popover",tag:"component",attrs:{"data-qa":"dt-popover-container"}},_vm.$listeners),[(_vm.modal)?_c('dt-lazy-show',{ref:"overlay",staticClass:"\n d-ps-fixed\n d-all0\n d-zi-modal\n d-fl-center\n d-fd-column\n d-popover-overlay\n d-vi-visible\n d-o100\n d-bgc-black-900\n ",attrs:{"show":_vm.modal && _vm.isOpeningPopover,"transition":"d-zoom"},on:{"click":function($event){if($event.target !== $event.currentTarget){ return null; }return _vm.closePopover($event)}}}):_vm._e(),_c('div',{ref:"anchor",attrs:{"id":!_vm.ariaLabelledby && _vm.labelledBy,"data-qa":"dt-popover-anchor"}},[_vm._t("anchor",null,{"attrs":{
|
|
3360
3355
|
'aria-expanded': _vm.showPopover.toString(),
|
|
3361
3356
|
'aria-controls': _vm.id,
|
|
3362
3357
|
'aria-haspopup': _vm.role,
|
|
3363
3358
|
}})],2),_c('dt-lazy-show',_vm._g({ref:"content",class:[
|
|
3364
|
-
'dt-popover-box',
|
|
3365
3359
|
'd-bgc-white',
|
|
3366
|
-
'd-
|
|
3367
|
-
'd-
|
|
3368
|
-
'd-
|
|
3369
|
-
'
|
|
3370
|
-
_vm.POPOVER_PADDING_CLASSES[_vm.padding],
|
|
3360
|
+
'd-bs-card',
|
|
3361
|
+
'd-bar8',
|
|
3362
|
+
'd-bc-black-100',
|
|
3363
|
+
'dt-popover-box',
|
|
3371
3364
|
("dt-popover__content--align-" + _vm.horizontalAlignment),
|
|
3372
3365
|
("dt-popover__content--valign-" + _vm.verticalAlignment),
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3366
|
+
{
|
|
3367
|
+
'd-d-grid d-of-hidden dt-popover-box__grid': _vm.fixedHeader,
|
|
3368
|
+
'd-of-auto': Boolean(_vm.maxHeight),
|
|
3369
|
+
'd-wmx-unset': !Boolean(_vm.maxWidth),
|
|
3370
|
+
} ],style:({
|
|
3371
|
+
'max-height': _vm.maxHeight,
|
|
3372
|
+
'max-width': _vm.maxWidth,
|
|
3373
|
+
}),attrs:{"id":_vm.id,"role":_vm.role,"data-qa":"dt-popover","aria-hidden":("" + (!_vm.showPopover)),"aria-labelledby":_vm.labelledBy,"aria-label":_vm.ariaLabel,"aria-modal":_vm.modal,"transition":_vm.transition,"show":_vm.showPopover,"tabindex":"-1","appear":""},on:{"keydown":_vm.onKeydown,"after-leave":_vm.onLeave,"enter":function($event){_vm.isOpeningPopover = true},"leave":function($event){_vm.isOpeningPopover = false},"after-enter":_vm.onOpen}},_vm.$listeners),[(_vm.hasCaret)?_c('div',{staticClass:"\n d-ps-absolute\n dt-popover__caret\n d-mtn2\n d-bt\n d-bl\n d-w4\n d-h4\n d-bgc-white\n d-bc-transparent\n "}):_vm._e(),(_vm.isHeaderVisible)?_c('popover-header',{ref:"popover__header",attrs:{"header-class":_vm.headerClass,"title":_vm.title,"show-close-button":_vm.showCloseButton,"close-button-props":_vm.closeButtonProps,"has-box-shadow":_vm.hasBoxShadow},on:{"close":_vm.closePopover},scopedSlots:_vm._u([{key:"title",fn:function(){return [_vm._t("title")]},proxy:true},{key:"headerActions",fn:function(){return [_vm._t("headerActions")]},proxy:true}],null,true)}):_vm._e(),_c('div',{ref:"popover__content",class:[
|
|
3374
|
+
'dt-popover__content',
|
|
3375
|
+
_vm.POPOVER_PADDING_CLASSES[_vm.padding],
|
|
3376
|
+
{
|
|
3377
|
+
'd-of-auto': _vm.fixedHeader,
|
|
3378
|
+
},
|
|
3379
|
+
_vm.contentClass ],attrs:{"data-qa":"dt-popover-content"},on:{"scroll":_vm.onScrollContent}},[_vm._t("content")],2)],1)],1)}
|
|
3380
|
+
var popovervue_type_template_id_eb03c67c_staticRenderFns = []
|
|
3376
3381
|
|
|
3377
3382
|
|
|
3378
|
-
// CONCATENATED MODULE: ./components/popover/popover.vue?vue&type=template&id=
|
|
3383
|
+
// CONCATENATED MODULE: ./components/popover/popover.vue?vue&type=template&id=eb03c67c&
|
|
3379
3384
|
|
|
3380
3385
|
// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js
|
|
3381
3386
|
// import { isHTMLElement } from './instanceOf';
|
|
@@ -7698,9 +7703,9 @@ const POPOVER_PADDING_CLASSES = {
|
|
|
7698
7703
|
};
|
|
7699
7704
|
const POPOVER_HORIZONTAL_ALIGNMENT = [null, 'left', 'center', 'right'];
|
|
7700
7705
|
const POPOVER_VERTICAL_ALIGNMENT = [null, 'top', 'bottom'];
|
|
7701
|
-
const POPOVER_ROLES = ['dialog', 'menu', 'listbox'
|
|
7706
|
+
const POPOVER_ROLES = ['dialog', 'menu', 'listbox'];
|
|
7702
7707
|
const POPOVER_CONTENT_WIDTHS = [null, 'anchor'];
|
|
7703
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
7708
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/lazy_show/lazy_show.vue?vue&type=template&id=9ffa4e8c&
|
|
7704
7709
|
var lazy_showvue_type_template_id_9ffa4e8c_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',_vm._g({attrs:{"name":_vm.transition,"appear":_vm.appear}},_vm.$listeners),[_c('div',_vm._g({directives:[{name:"show",rawName:"v-show",value:(_vm.show),expression:"show"}]},_vm.$listeners),[(_vm.initialized)?_vm._t("default"):_vm._e()],2)])}
|
|
7705
7710
|
var lazy_showvue_type_template_id_9ffa4e8c_staticRenderFns = []
|
|
7706
7711
|
|
|
@@ -7790,7 +7795,7 @@ var lazy_show_component = normalizeComponent(
|
|
|
7790
7795
|
)
|
|
7791
7796
|
|
|
7792
7797
|
/* harmony default export */ var lazy_show = (lazy_show_component.exports);
|
|
7793
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
7798
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/tooltip/tooltip.vue?vue&type=template&id=00f87924&
|
|
7794
7799
|
var tooltipvue_type_template_id_00f87924_render = function () {
|
|
7795
7800
|
var _obj;
|
|
7796
7801
|
var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"data-qa":"dt-tooltip-container"}},[_c('div',{ref:"anchor",attrs:{"data-qa":"dt-tooltip-anchor"}},[_vm._t("anchor",null,{"attrs":{
|
|
@@ -7834,10 +7839,10 @@ const TOOLTIP_DIALTONE_DIRECTIONS = Object.entries(TOOLTIP_TIPPY_DIRECTIONS).red
|
|
|
7834
7839
|
[value]: key
|
|
7835
7840
|
}), {});
|
|
7836
7841
|
const TOOLTIP_KIND_MODIFIERS = {
|
|
7837
|
-
hover:
|
|
7838
|
-
show:
|
|
7839
|
-
inverted:
|
|
7840
|
-
hide:
|
|
7842
|
+
hover: "d-tooltip--hover",
|
|
7843
|
+
show: "d-tooltip--show",
|
|
7844
|
+
inverted: "d-tooltip--inverted",
|
|
7845
|
+
hide: "d-tooltip--hide"
|
|
7841
7846
|
};
|
|
7842
7847
|
const TOOLTIP_HIDE_ON_CLICK_VARIANTS = [true, false, 'toggle'];
|
|
7843
7848
|
// 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!./components/tooltip/tooltip.vue?vue&type=script&lang=js&
|
|
@@ -8259,6 +8264,186 @@ var tooltip_component = normalizeComponent(
|
|
|
8259
8264
|
// CONCATENATED MODULE: ./components/tooltip/index.js
|
|
8260
8265
|
|
|
8261
8266
|
|
|
8267
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/popover/popover_header.vue?vue&type=template&id=dc02e178&
|
|
8268
|
+
var popover_headervue_type_template_id_dc02e178_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:[
|
|
8269
|
+
'd-d-flex',
|
|
8270
|
+
'd-ai-flex-start',
|
|
8271
|
+
'd-fs16',
|
|
8272
|
+
'd-fw-bold',
|
|
8273
|
+
'd-of-auto',
|
|
8274
|
+
'd-hmn48',
|
|
8275
|
+
'd-w100p',
|
|
8276
|
+
'd-pl12',
|
|
8277
|
+
'd-pr8',
|
|
8278
|
+
'd-py6',
|
|
8279
|
+
'd-bb',
|
|
8280
|
+
'd-baw1',
|
|
8281
|
+
'd-bc-black-075',
|
|
8282
|
+
{
|
|
8283
|
+
'd-bs-card': _vm.hasBoxShadow,
|
|
8284
|
+
'd-jc-space-between': _vm.isTitleVisible,
|
|
8285
|
+
'd-jc-flex-end': !_vm.isTitleVisible,
|
|
8286
|
+
},
|
|
8287
|
+
_vm.headerClass ],attrs:{"data-qa":"dt-popover-header"}},[(_vm.isTitleVisible)?_c('div',{staticClass:"d-to-ellipsis d-pt6",attrs:{"data-qa":"dt-popover-title"}},[_vm._t("title",[_vm._v(" "+_vm._s(_vm.title)+" ")])],2):_vm._e(),(_vm.areHeaderButtonsVisible)?_c('div',{staticClass:"d-pl6 d-d-flex d-ws-nowrap"},[_vm._t("headerActions"),(_vm.showCloseButton)?_c('dt-button',_vm._b({ref:"popover__close-button",staticClass:"d-p6 d-bc-transparent",attrs:{"importance":"outlined","kind":"muted","circle":"","aria-label":_vm.closeButtonProps.ariaLabel},on:{"click":function($event){return _vm.$emit('close')}},scopedSlots:_vm._u([{key:"icon",fn:function(){return [_c('icon-close',{staticClass:"d-svg--size20"})]},proxy:true}],null,false,2493961913)},'dt-button',_vm.closeButtonProps,false)):_vm._e()],2):_vm._e()])}
|
|
8288
|
+
var popover_headervue_type_template_id_dc02e178_staticRenderFns = []
|
|
8289
|
+
|
|
8290
|
+
|
|
8291
|
+
// CONCATENATED MODULE: ./components/popover/popover_header.vue?vue&type=template&id=dc02e178&
|
|
8292
|
+
|
|
8293
|
+
// 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!./components/popover/popover_header.vue?vue&type=script&lang=js&
|
|
8294
|
+
//
|
|
8295
|
+
//
|
|
8296
|
+
//
|
|
8297
|
+
//
|
|
8298
|
+
//
|
|
8299
|
+
//
|
|
8300
|
+
//
|
|
8301
|
+
//
|
|
8302
|
+
//
|
|
8303
|
+
//
|
|
8304
|
+
//
|
|
8305
|
+
//
|
|
8306
|
+
//
|
|
8307
|
+
//
|
|
8308
|
+
//
|
|
8309
|
+
//
|
|
8310
|
+
//
|
|
8311
|
+
//
|
|
8312
|
+
//
|
|
8313
|
+
//
|
|
8314
|
+
//
|
|
8315
|
+
//
|
|
8316
|
+
//
|
|
8317
|
+
//
|
|
8318
|
+
//
|
|
8319
|
+
//
|
|
8320
|
+
//
|
|
8321
|
+
//
|
|
8322
|
+
//
|
|
8323
|
+
//
|
|
8324
|
+
//
|
|
8325
|
+
//
|
|
8326
|
+
//
|
|
8327
|
+
//
|
|
8328
|
+
//
|
|
8329
|
+
//
|
|
8330
|
+
//
|
|
8331
|
+
//
|
|
8332
|
+
//
|
|
8333
|
+
//
|
|
8334
|
+
//
|
|
8335
|
+
//
|
|
8336
|
+
//
|
|
8337
|
+
//
|
|
8338
|
+
//
|
|
8339
|
+
//
|
|
8340
|
+
//
|
|
8341
|
+
//
|
|
8342
|
+
//
|
|
8343
|
+
//
|
|
8344
|
+
//
|
|
8345
|
+
//
|
|
8346
|
+
//
|
|
8347
|
+
//
|
|
8348
|
+
//
|
|
8349
|
+
//
|
|
8350
|
+
//
|
|
8351
|
+
//
|
|
8352
|
+
//
|
|
8353
|
+
//
|
|
8354
|
+
|
|
8355
|
+
|
|
8356
|
+
/* harmony default export */ var popover_headervue_type_script_lang_js_ = ({
|
|
8357
|
+
name: 'PopoverHeader',
|
|
8358
|
+
components: {
|
|
8359
|
+
DtButton: button_button,
|
|
8360
|
+
IconClose: IconClose
|
|
8361
|
+
},
|
|
8362
|
+
props: {
|
|
8363
|
+
/**
|
|
8364
|
+
* Additional class name for the content wrapper element.
|
|
8365
|
+
*/
|
|
8366
|
+
headerClass: {
|
|
8367
|
+
type: [String, Array, Object],
|
|
8368
|
+
default: ''
|
|
8369
|
+
},
|
|
8370
|
+
|
|
8371
|
+
/**
|
|
8372
|
+
* Determines title for popover header.
|
|
8373
|
+
* If provided prop is not null, corresponding holder div will be rendered
|
|
8374
|
+
*/
|
|
8375
|
+
title: {
|
|
8376
|
+
type: String,
|
|
8377
|
+
default: null
|
|
8378
|
+
},
|
|
8379
|
+
|
|
8380
|
+
/**
|
|
8381
|
+
* Determines visibility for close button
|
|
8382
|
+
*/
|
|
8383
|
+
showCloseButton: {
|
|
8384
|
+
type: Boolean,
|
|
8385
|
+
default: false
|
|
8386
|
+
},
|
|
8387
|
+
|
|
8388
|
+
/**
|
|
8389
|
+
* A set of props to be passed into the popover's header close button.
|
|
8390
|
+
* Requires an 'ariaLabel' property.
|
|
8391
|
+
*/
|
|
8392
|
+
closeButtonProps: {
|
|
8393
|
+
type: Object,
|
|
8394
|
+
required: true
|
|
8395
|
+
},
|
|
8396
|
+
|
|
8397
|
+
/**
|
|
8398
|
+
* Determines fixed / sticky styles for popover header
|
|
8399
|
+
*/
|
|
8400
|
+
hasBoxShadow: {
|
|
8401
|
+
type: Boolean,
|
|
8402
|
+
default: false
|
|
8403
|
+
}
|
|
8404
|
+
},
|
|
8405
|
+
computed: {
|
|
8406
|
+
isTitleVisible() {
|
|
8407
|
+
return this.$slots.title || this.title !== null;
|
|
8408
|
+
},
|
|
8409
|
+
|
|
8410
|
+
areHeaderButtonsVisible() {
|
|
8411
|
+
return this.$slots.headerActions || this.showCloseButton;
|
|
8412
|
+
}
|
|
8413
|
+
|
|
8414
|
+
},
|
|
8415
|
+
methods: {
|
|
8416
|
+
focusCloseButton() {
|
|
8417
|
+
var _this$$refs$popover__;
|
|
8418
|
+
|
|
8419
|
+
const closeButton = (_this$$refs$popover__ = this.$refs['popover__close-button']) === null || _this$$refs$popover__ === void 0 ? void 0 : _this$$refs$popover__.$el;
|
|
8420
|
+
closeButton === null || closeButton === void 0 ? void 0 : closeButton.focus();
|
|
8421
|
+
}
|
|
8422
|
+
|
|
8423
|
+
}
|
|
8424
|
+
});
|
|
8425
|
+
// CONCATENATED MODULE: ./components/popover/popover_header.vue?vue&type=script&lang=js&
|
|
8426
|
+
/* harmony default export */ var popover_popover_headervue_type_script_lang_js_ = (popover_headervue_type_script_lang_js_);
|
|
8427
|
+
// CONCATENATED MODULE: ./components/popover/popover_header.vue
|
|
8428
|
+
|
|
8429
|
+
|
|
8430
|
+
|
|
8431
|
+
|
|
8432
|
+
|
|
8433
|
+
/* normalize component */
|
|
8434
|
+
|
|
8435
|
+
var popover_header_component = normalizeComponent(
|
|
8436
|
+
popover_popover_headervue_type_script_lang_js_,
|
|
8437
|
+
popover_headervue_type_template_id_dc02e178_render,
|
|
8438
|
+
popover_headervue_type_template_id_dc02e178_staticRenderFns,
|
|
8439
|
+
false,
|
|
8440
|
+
null,
|
|
8441
|
+
null,
|
|
8442
|
+
null
|
|
8443
|
+
|
|
8444
|
+
)
|
|
8445
|
+
|
|
8446
|
+
/* harmony default export */ var popover_header = (popover_header_component.exports);
|
|
8262
8447
|
// 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!./components/popover/popover.vue?vue&type=script&lang=js&
|
|
8263
8448
|
//
|
|
8264
8449
|
//
|
|
@@ -8341,6 +8526,58 @@ var tooltip_component = normalizeComponent(
|
|
|
8341
8526
|
//
|
|
8342
8527
|
//
|
|
8343
8528
|
//
|
|
8529
|
+
//
|
|
8530
|
+
//
|
|
8531
|
+
//
|
|
8532
|
+
//
|
|
8533
|
+
//
|
|
8534
|
+
//
|
|
8535
|
+
//
|
|
8536
|
+
//
|
|
8537
|
+
//
|
|
8538
|
+
//
|
|
8539
|
+
//
|
|
8540
|
+
//
|
|
8541
|
+
//
|
|
8542
|
+
//
|
|
8543
|
+
//
|
|
8544
|
+
//
|
|
8545
|
+
//
|
|
8546
|
+
//
|
|
8547
|
+
//
|
|
8548
|
+
//
|
|
8549
|
+
//
|
|
8550
|
+
//
|
|
8551
|
+
//
|
|
8552
|
+
//
|
|
8553
|
+
//
|
|
8554
|
+
//
|
|
8555
|
+
//
|
|
8556
|
+
//
|
|
8557
|
+
//
|
|
8558
|
+
//
|
|
8559
|
+
//
|
|
8560
|
+
//
|
|
8561
|
+
//
|
|
8562
|
+
//
|
|
8563
|
+
//
|
|
8564
|
+
//
|
|
8565
|
+
//
|
|
8566
|
+
//
|
|
8567
|
+
//
|
|
8568
|
+
//
|
|
8569
|
+
//
|
|
8570
|
+
//
|
|
8571
|
+
//
|
|
8572
|
+
//
|
|
8573
|
+
//
|
|
8574
|
+
//
|
|
8575
|
+
//
|
|
8576
|
+
//
|
|
8577
|
+
//
|
|
8578
|
+
//
|
|
8579
|
+
//
|
|
8580
|
+
|
|
8344
8581
|
|
|
8345
8582
|
|
|
8346
8583
|
|
|
@@ -8355,7 +8592,8 @@ var tooltip_component = normalizeComponent(
|
|
|
8355
8592
|
* CHILD COMPONENTS *
|
|
8356
8593
|
********************/
|
|
8357
8594
|
components: {
|
|
8358
|
-
DtLazyShow: lazy_show
|
|
8595
|
+
DtLazyShow: lazy_show,
|
|
8596
|
+
PopoverHeader: popover_header
|
|
8359
8597
|
},
|
|
8360
8598
|
mixins: [modal],
|
|
8361
8599
|
props: {
|
|
@@ -8409,6 +8647,15 @@ var tooltip_component = normalizeComponent(
|
|
|
8409
8647
|
default: null
|
|
8410
8648
|
},
|
|
8411
8649
|
|
|
8650
|
+
/**
|
|
8651
|
+
* A set of props to be passed into the popover's header close button.
|
|
8652
|
+
* Requires an 'ariaLabel' property, when the header popover is visible
|
|
8653
|
+
*/
|
|
8654
|
+
closeButtonProps: {
|
|
8655
|
+
type: Object,
|
|
8656
|
+
default: () => ({})
|
|
8657
|
+
},
|
|
8658
|
+
|
|
8412
8659
|
/**
|
|
8413
8660
|
* Whether or not the popover content is shown. Supports .sync modifier.
|
|
8414
8661
|
*/
|
|
@@ -8462,13 +8709,13 @@ var tooltip_component = normalizeComponent(
|
|
|
8462
8709
|
* Additional class name for the content wrapper element.
|
|
8463
8710
|
*/
|
|
8464
8711
|
contentClass: {
|
|
8465
|
-
type: String,
|
|
8712
|
+
type: [String, Array, Object],
|
|
8466
8713
|
default: ''
|
|
8467
8714
|
},
|
|
8468
8715
|
|
|
8469
8716
|
/**
|
|
8470
|
-
* Width configuration for the popover content.
|
|
8471
|
-
*
|
|
8717
|
+
* Width configuration for the popover content. When its value is 'anchor',
|
|
8718
|
+
* the popover content will be set the same width with anchor element onShow popover event
|
|
8472
8719
|
*/
|
|
8473
8720
|
contentWidth: {
|
|
8474
8721
|
type: String,
|
|
@@ -8484,6 +8731,10 @@ var tooltip_component = normalizeComponent(
|
|
|
8484
8731
|
type: Boolean,
|
|
8485
8732
|
default: true
|
|
8486
8733
|
},
|
|
8734
|
+
|
|
8735
|
+
/**
|
|
8736
|
+
* Determines should the anchor be focused after closing the popover
|
|
8737
|
+
*/
|
|
8487
8738
|
focusAnchorOnClose: {
|
|
8488
8739
|
type: Boolean,
|
|
8489
8740
|
default: true
|
|
@@ -8552,7 +8803,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8552
8803
|
/**
|
|
8553
8804
|
* Determines the size of the invisible border around the
|
|
8554
8805
|
* tippy that will prevent it from hiding if the cursor left it.
|
|
8555
|
-
|
|
8806
|
+
*/
|
|
8556
8807
|
interactiveBorder: {
|
|
8557
8808
|
type: Number,
|
|
8558
8809
|
default: 2
|
|
@@ -8561,7 +8812,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8561
8812
|
/**
|
|
8562
8813
|
* Determines the events that cause the tippy to show.
|
|
8563
8814
|
* Multiple event names are separated by spaces.
|
|
8564
|
-
|
|
8815
|
+
*/
|
|
8565
8816
|
trigger: {
|
|
8566
8817
|
type: String,
|
|
8567
8818
|
default: 'manual'
|
|
@@ -8571,7 +8822,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8571
8822
|
* Determines if the tippy hides upon clicking the
|
|
8572
8823
|
* reference or outside of the tippy.
|
|
8573
8824
|
* The behavior can depend upon the trigger events used.
|
|
8574
|
-
|
|
8825
|
+
*/
|
|
8575
8826
|
hideOnClick: {
|
|
8576
8827
|
type: [Boolean, String],
|
|
8577
8828
|
default: true,
|
|
@@ -8581,18 +8832,82 @@ var tooltip_component = normalizeComponent(
|
|
|
8581
8832
|
}
|
|
8582
8833
|
|
|
8583
8834
|
},
|
|
8835
|
+
|
|
8836
|
+
/**
|
|
8837
|
+
* Determines modal state, when the popover's overlay is rendered
|
|
8838
|
+
*/
|
|
8584
8839
|
modal: {
|
|
8585
8840
|
type: Boolean,
|
|
8586
8841
|
default: false
|
|
8587
8842
|
},
|
|
8843
|
+
|
|
8844
|
+
/**
|
|
8845
|
+
* Determines title for popover header.
|
|
8846
|
+
* If provided prop is not null, corresponding holder div will be rendered
|
|
8847
|
+
*/
|
|
8848
|
+
title: {
|
|
8849
|
+
type: String,
|
|
8850
|
+
default: null
|
|
8851
|
+
},
|
|
8852
|
+
|
|
8853
|
+
/**
|
|
8854
|
+
* Determines the popover's z-index
|
|
8855
|
+
*/
|
|
8588
8856
|
zIndex: {
|
|
8589
8857
|
type: [Number, String],
|
|
8590
8858
|
default: 300,
|
|
8591
8859
|
validator: zIndex => !!Number(zIndex)
|
|
8592
8860
|
},
|
|
8861
|
+
|
|
8862
|
+
/**
|
|
8863
|
+
* Determines html element container for popover's overlay,
|
|
8864
|
+
* which will be rendered when 'modal' property is 'true'.
|
|
8865
|
+
*/
|
|
8593
8866
|
overlayAppendTo: {
|
|
8594
8867
|
type: HTMLElement,
|
|
8595
8868
|
default: () => document.body
|
|
8869
|
+
},
|
|
8870
|
+
|
|
8871
|
+
/**
|
|
8872
|
+
* Determines maximum height for the popover before overflow.
|
|
8873
|
+
* Possible units rem|px|em
|
|
8874
|
+
*/
|
|
8875
|
+
maxHeight: {
|
|
8876
|
+
type: String,
|
|
8877
|
+
default: ''
|
|
8878
|
+
},
|
|
8879
|
+
|
|
8880
|
+
/**
|
|
8881
|
+
* Determines maximum width for the popover before overflow.
|
|
8882
|
+
* Possible units rem|px|%|em
|
|
8883
|
+
*/
|
|
8884
|
+
maxWidth: {
|
|
8885
|
+
type: String,
|
|
8886
|
+
default: ''
|
|
8887
|
+
},
|
|
8888
|
+
|
|
8889
|
+
/**
|
|
8890
|
+
* Determines fixed / sticky styles for popover header
|
|
8891
|
+
*/
|
|
8892
|
+
fixedHeader: {
|
|
8893
|
+
type: Boolean,
|
|
8894
|
+
default: false
|
|
8895
|
+
},
|
|
8896
|
+
|
|
8897
|
+
/**
|
|
8898
|
+
* Determines visibility for close button
|
|
8899
|
+
*/
|
|
8900
|
+
showCloseButton: {
|
|
8901
|
+
type: Boolean,
|
|
8902
|
+
default: false
|
|
8903
|
+
},
|
|
8904
|
+
|
|
8905
|
+
/**
|
|
8906
|
+
* Additional class name for the content wrapper element.
|
|
8907
|
+
*/
|
|
8908
|
+
headerClass: {
|
|
8909
|
+
type: [String, Array, Object],
|
|
8910
|
+
default: ''
|
|
8596
8911
|
}
|
|
8597
8912
|
},
|
|
8598
8913
|
emits: ['update:open'],
|
|
@@ -8606,12 +8921,18 @@ var tooltip_component = normalizeComponent(
|
|
|
8606
8921
|
showPopover: this.open,
|
|
8607
8922
|
isPreventHidePopover: false,
|
|
8608
8923
|
closedByClickOutside: false,
|
|
8924
|
+
focusCloseButton: false,
|
|
8609
8925
|
anchorEl: null,
|
|
8610
|
-
popoverContentEl: null
|
|
8926
|
+
popoverContentEl: null,
|
|
8927
|
+
hasScrolled: false
|
|
8611
8928
|
};
|
|
8612
8929
|
},
|
|
8613
8930
|
|
|
8614
8931
|
computed: {
|
|
8932
|
+
hasBoxShadow() {
|
|
8933
|
+
return this.hasScrolled && this.fixedHeader;
|
|
8934
|
+
},
|
|
8935
|
+
|
|
8615
8936
|
fallbackPlacements() {
|
|
8616
8937
|
const verticalVariants = POPOVER_VERTICAL_ALIGNMENT.filter(alignment => alignment);
|
|
8617
8938
|
const horizontalVariants = POPOVER_HORIZONTAL_ALIGNMENT.filter(alignment => alignment);
|
|
@@ -8647,6 +8968,18 @@ var tooltip_component = normalizeComponent(
|
|
|
8647
8968
|
// aria-labelledby should be set only if aria-labelledby is passed as a prop, or if
|
|
8648
8969
|
// there is no aria-label and the labelledby should point to the anchor.
|
|
8649
8970
|
return this.ariaLabelledby || !this.ariaLabel && getUniqueString('DtPopover__anchor');
|
|
8971
|
+
},
|
|
8972
|
+
|
|
8973
|
+
isHeaderVisible() {
|
|
8974
|
+
return this.isTitleVisible || this.areHeaderButtonsVisible;
|
|
8975
|
+
},
|
|
8976
|
+
|
|
8977
|
+
isTitleVisible() {
|
|
8978
|
+
return this.$slots.title || this.title !== null;
|
|
8979
|
+
},
|
|
8980
|
+
|
|
8981
|
+
areHeaderButtonsVisible() {
|
|
8982
|
+
return this.$slots.headerActions;
|
|
8650
8983
|
}
|
|
8651
8984
|
|
|
8652
8985
|
},
|
|
@@ -8746,6 +9079,12 @@ var tooltip_component = normalizeComponent(
|
|
|
8746
9079
|
* METHODS *
|
|
8747
9080
|
******************/
|
|
8748
9081
|
methods: {
|
|
9082
|
+
onScrollContent({
|
|
9083
|
+
target
|
|
9084
|
+
}) {
|
|
9085
|
+
this.hasScrolled = target.scrollTop > 0;
|
|
9086
|
+
},
|
|
9087
|
+
|
|
8749
9088
|
removeReferences() {
|
|
8750
9089
|
this.anchorEl = null;
|
|
8751
9090
|
this.popoverContentEl = null;
|
|
@@ -8777,10 +9116,10 @@ var tooltip_component = normalizeComponent(
|
|
|
8777
9116
|
if (horizontalAlignment === 'center') return verticalAlignment;
|
|
8778
9117
|
|
|
8779
9118
|
if (horizontalAlignment === 'left' || horizontalAlignment === 'right') {
|
|
8780
|
-
return
|
|
9119
|
+
return "".concat(verticalAlignment, "-").concat(horizontalAlignment === 'left' ? 'start' : 'end');
|
|
8781
9120
|
}
|
|
8782
9121
|
|
|
8783
|
-
return
|
|
9122
|
+
return "".concat(verticalAlignment, "-").concat(horizontalAlignment);
|
|
8784
9123
|
},
|
|
8785
9124
|
|
|
8786
9125
|
closePopover() {
|
|
@@ -8813,7 +9152,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8813
9152
|
|
|
8814
9153
|
onOpen() {
|
|
8815
9154
|
this.$emit('update:open', true);
|
|
8816
|
-
this.focusFirstElementIfNeeded();
|
|
9155
|
+
this.focusFirstElementIfNeeded(this.$refs.popover__content);
|
|
8817
9156
|
},
|
|
8818
9157
|
|
|
8819
9158
|
onHide() {
|
|
@@ -8845,7 +9184,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8845
9184
|
},
|
|
8846
9185
|
|
|
8847
9186
|
onKeydown(e) {
|
|
8848
|
-
if (
|
|
9187
|
+
if (e.key === 'Tab') {
|
|
8849
9188
|
this.focusTrappedTabPress(e, this.popoverContentEl);
|
|
8850
9189
|
}
|
|
8851
9190
|
},
|
|
@@ -8897,12 +9236,20 @@ var tooltip_component = normalizeComponent(
|
|
|
8897
9236
|
|
|
8898
9237
|
async setPopoverContentAnchorWidth() {
|
|
8899
9238
|
await this.$nextTick();
|
|
8900
|
-
this.popoverContentEl.style.width =
|
|
9239
|
+
this.popoverContentEl.style.width = "".concat(this.anchorEl.clientWidth, "px");
|
|
8901
9240
|
},
|
|
8902
9241
|
|
|
8903
|
-
focusFirstElementIfNeeded(
|
|
9242
|
+
focusFirstElementIfNeeded(domEl) {
|
|
8904
9243
|
if (this.isDialog || this.isMenu) {
|
|
8905
|
-
this.
|
|
9244
|
+
const focusableElements = this._getFocusableElements(domEl);
|
|
9245
|
+
|
|
9246
|
+
if (focusableElements.length !== 0) {
|
|
9247
|
+
this.focusFirstElement(domEl);
|
|
9248
|
+
} else if (this.showCloseButton) {
|
|
9249
|
+
var _this$$refs$popover__;
|
|
9250
|
+
|
|
9251
|
+
(_this$$refs$popover__ = this.$refs.popover__header) === null || _this$$refs$popover__ === void 0 ? void 0 : _this$$refs$popover__.focusCloseButton();
|
|
9252
|
+
}
|
|
8906
9253
|
}
|
|
8907
9254
|
}
|
|
8908
9255
|
|
|
@@ -8924,8 +9271,8 @@ var popovervue_type_style_index_0_lang_less_ = __webpack_require__("e0bf");
|
|
|
8924
9271
|
|
|
8925
9272
|
var popover_component = normalizeComponent(
|
|
8926
9273
|
popover_popovervue_type_script_lang_js_,
|
|
8927
|
-
|
|
8928
|
-
|
|
9274
|
+
popovervue_type_template_id_eb03c67c_render,
|
|
9275
|
+
popovervue_type_template_id_eb03c67c_staticRenderFns,
|
|
8929
9276
|
false,
|
|
8930
9277
|
null,
|
|
8931
9278
|
null,
|
|
@@ -9173,7 +9520,7 @@ const LIST_ITEM_NAVIGATION_TYPES = {
|
|
|
9173
9520
|
},
|
|
9174
9521
|
|
|
9175
9522
|
getItemId(i) {
|
|
9176
|
-
return
|
|
9523
|
+
return "".concat(this.listId, "-item").concat(i);
|
|
9177
9524
|
},
|
|
9178
9525
|
|
|
9179
9526
|
afterHighlight() {
|
|
@@ -9216,8 +9563,8 @@ const LIST_ITEM_NAVIGATION_TYPES = {
|
|
|
9216
9563
|
|
|
9217
9564
|
var dropdown_component = normalizeComponent(
|
|
9218
9565
|
dropdown_dropdownvue_type_script_lang_js_,
|
|
9219
|
-
|
|
9220
|
-
|
|
9566
|
+
dropdownvue_type_template_id_479a72d0_render,
|
|
9567
|
+
dropdownvue_type_template_id_479a72d0_staticRenderFns,
|
|
9221
9568
|
false,
|
|
9222
9569
|
null,
|
|
9223
9570
|
null,
|
|
@@ -9228,7 +9575,7 @@ var dropdown_component = normalizeComponent(
|
|
|
9228
9575
|
/* harmony default export */ var dropdown = (dropdown_component.exports);
|
|
9229
9576
|
// CONCATENATED MODULE: ./components/dropdown/index.js
|
|
9230
9577
|
|
|
9231
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9578
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/input/input.vue?vue&type=template&id=0231bf39&
|
|
9232
9579
|
var inputvue_type_template_id_0231bf39_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"container",staticClass:"base-input",attrs:{"data-qa":"dt-input"}},[_c('label',{staticClass:"base-input__label",attrs:{"aria-details":_vm.$slots.description || _vm.description ? _vm.descriptionKey : undefined,"data-qa":"dt-input-label-wrapper"}},[_vm._t("labelSlot",[(_vm.label)?_c('div',{class:[
|
|
9233
9580
|
'base-input__label-text',
|
|
9234
9581
|
'd-label',
|
|
@@ -9262,7 +9609,7 @@ const INPUT_SIZES = {
|
|
|
9262
9609
|
INPUT_TYPES,
|
|
9263
9610
|
INPUT_SIZES
|
|
9264
9611
|
});
|
|
9265
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9612
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/validation_messages/validation_messages.vue?vue&type=template&id=6fb7180e&
|
|
9266
9613
|
var validation_messagesvue_type_template_id_6fb7180e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.showMessages && !_vm.isFilteredValidationMessagesEmpty)?_c('div',{staticClass:"base-input__messages d-d-flex d-fd-column",attrs:{"data-qa":"validation-messages-container"}},_vm._l((_vm.filteredValidationMessages),function(ref,index){
|
|
9267
9614
|
var message = ref.message;
|
|
9268
9615
|
var type = ref.type;
|
|
@@ -9372,7 +9719,7 @@ function validationMessageValidator(rawMessages) {
|
|
|
9372
9719
|
},
|
|
9373
9720
|
methods: {
|
|
9374
9721
|
getMessageKey(type, index) {
|
|
9375
|
-
return
|
|
9722
|
+
return "validation-message-".concat(type, "-").concat(index, "-").concat(this.id);
|
|
9376
9723
|
},
|
|
9377
9724
|
|
|
9378
9725
|
messageTypeClass(type) {
|
|
@@ -9715,7 +10062,7 @@ const GroupableMixin = {
|
|
|
9715
10062
|
const reactiveGroupName = (_this$groupContext5 = this.groupContext) === null || _this$groupContext5 === void 0 ? void 0 : _this$groupContext5.name;
|
|
9716
10063
|
|
|
9717
10064
|
if (!!this.name && hasGroupName && reactiveGroupName !== this.name) {
|
|
9718
|
-
external_commonjs_vue_commonjs2_vue_root_Vue_default.a.util.warn('Component is being used inside a Group. Did you mean to override the name prop value ' +
|
|
10065
|
+
external_commonjs_vue_commonjs2_vue_root_Vue_default.a.util.warn('Component is being used inside a Group. Did you mean to override the name prop value ' + "(".concat(reactiveGroupName, ") with (").concat(this.name, ")? It is recommended to only set name at the Group level."), this);
|
|
9719
10066
|
}
|
|
9720
10067
|
}
|
|
9721
10068
|
|
|
@@ -9999,7 +10346,7 @@ const MessagesMixin = {
|
|
|
9999
10346
|
},
|
|
10000
10347
|
|
|
10001
10348
|
descriptionKey() {
|
|
10002
|
-
return
|
|
10349
|
+
return "input-description-".concat(getUniqueString());
|
|
10003
10350
|
},
|
|
10004
10351
|
|
|
10005
10352
|
inputState() {
|
|
@@ -10097,7 +10444,7 @@ const MessagesMixin = {
|
|
|
10097
10444
|
},
|
|
10098
10445
|
|
|
10099
10446
|
getMessageKey(type, index) {
|
|
10100
|
-
return
|
|
10447
|
+
return "message-".concat(type, "-").concat(index);
|
|
10101
10448
|
}
|
|
10102
10449
|
|
|
10103
10450
|
}
|
|
@@ -10127,7 +10474,7 @@ var input_component = normalizeComponent(
|
|
|
10127
10474
|
// CONCATENATED MODULE: ./components/input/index.js
|
|
10128
10475
|
|
|
10129
10476
|
|
|
10130
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10477
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/input_group/input_group.vue?vue&type=template&id=34acc7c9&
|
|
10131
10478
|
var input_groupvue_type_template_id_34acc7c9_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('fieldset',{attrs:{"data-qa":_vm.dataQaGroup}},[(_vm.$slots.legend || _vm.legend)?_c('legend',_vm._b({class:['d-label', _vm.legendClass],attrs:{"data-qa":_vm.dataQaGroupLegend}},'legend',_vm.legendChildProps,false),[_vm._t("legend",[_vm._v(" "+_vm._s(_vm.legend)+" ")])],2):_vm._e(),_vm._t("default"),_c('dt-validation-messages',_vm._b({class:_vm.messagesClass,attrs:{"validation-messages":_vm.formattedMessages,"show-messages":_vm.showMessages,"data-qa":_vm.dataQaGroupMessages}},'dt-validation-messages',_vm.messagesChildProps,false))],2)}
|
|
10132
10479
|
var input_groupvue_type_template_id_34acc7c9_staticRenderFns = []
|
|
10133
10480
|
|
|
@@ -10393,7 +10740,7 @@ const InputGroupMixin = {
|
|
|
10393
10740
|
},
|
|
10394
10741
|
methods: {
|
|
10395
10742
|
getMessageKey(type, index) {
|
|
10396
|
-
return
|
|
10743
|
+
return "input-group-message-".concat(type, "-").concat(index, "-").concat(this.id);
|
|
10397
10744
|
}
|
|
10398
10745
|
|
|
10399
10746
|
}
|
|
@@ -10422,7 +10769,7 @@ var input_group_component = normalizeComponent(
|
|
|
10422
10769
|
/* harmony default export */ var input_group_input_group = (input_group_component.exports);
|
|
10423
10770
|
// CONCATENATED MODULE: ./components/input_group/index.js
|
|
10424
10771
|
|
|
10425
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10772
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/modal/modal.vue?vue&type=template&id=3b895075&
|
|
10426
10773
|
var modalvue_type_template_id_3b895075_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-lazy-show',{class:[
|
|
10427
10774
|
'd-modal',
|
|
10428
10775
|
_vm.MODAL_KIND_MODIFIERS[_vm.kind],
|
|
@@ -10658,7 +11005,7 @@ const MODAL_SIZE_MODIFIERS = {
|
|
|
10658
11005
|
|
|
10659
11006
|
computed: {
|
|
10660
11007
|
open() {
|
|
10661
|
-
return
|
|
11008
|
+
return "".concat(!this.show);
|
|
10662
11009
|
},
|
|
10663
11010
|
|
|
10664
11011
|
hasFooterSlot() {
|
|
@@ -10729,7 +11076,7 @@ var modal_component = normalizeComponent(
|
|
|
10729
11076
|
|
|
10730
11077
|
// CONCATENATED MODULE: ./components/lazy_show/index.js
|
|
10731
11078
|
|
|
10732
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11079
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/list_section/list_section.vue?vue&type=template&id=0285311e&
|
|
10733
11080
|
var list_sectionvue_type_template_id_0285311e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:['dt-list-section', 'd-fs14', 'd-lh6', 'd-py6', 'd-bc-black-200',
|
|
10734
11081
|
{ 'd-bb': _vm.separator }],attrs:{"id":_vm.id,"role":"group","aria-labelledby":(_vm.id + "-list-section-header"),"tabindex":"-1"}},[(_vm.header)?_c('h3',{staticClass:"d-pl12 d-mt6",attrs:{"id":(_vm.id + "-list-section-header")}},[_vm._v(" "+_vm._s(_vm.header)+" ")]):_vm._e(),(!_vm.isCollapsible || _vm.showAll)?_c('ol',{attrs:{"id":(_vm.id + "-list-section-content")}},[_vm._t("default")],2):_c('ol',{attrs:{"id":(_vm.id + "-list-section-content")}},[_c('vnodes',{attrs:{"vnodes":_vm.displayedItems}})],1),_c('div',{staticClass:"d-d-flex"},[(_vm.isCollapsible)?_c('dt-button',{staticClass:"d-ml12 d-py6",attrs:{"id":(_vm.id + "-list-section-show-more-less"),"link":""},on:{"click":_vm.showMoreLessClicked}},[_vm._v(" "+_vm._s(_vm.showMoreLessText)+" ")]):_vm._e(),_vm._t("footer")],2)])}
|
|
10735
11082
|
var list_sectionvue_type_template_id_0285311e_staticRenderFns = []
|
|
@@ -10913,17 +11260,17 @@ var list_section_component = normalizeComponent(
|
|
|
10913
11260
|
/* harmony default export */ var list_section = (list_section_component.exports);
|
|
10914
11261
|
// CONCATENATED MODULE: ./components/list_section/index.js
|
|
10915
11262
|
|
|
10916
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10917
|
-
var
|
|
11263
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/list_item/list_item.vue?vue&type=template&id=46f934a0&
|
|
11264
|
+
var list_itemvue_type_template_id_46f934a0_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.elementType,{tag:"component",class:['dt-list-item d-ls-none', {
|
|
10918
11265
|
'dt-list-item--focusable': _vm.isFocusable,
|
|
10919
11266
|
'dt-list-item--highlighted': _vm.isHighlighted,
|
|
10920
11267
|
}],attrs:{"id":_vm.id,"tabindex":_vm.isFocusable ? 0 : -1,"role":_vm.role,"aria-selected":_vm.isHighlighted},on:_vm._d({"keydown":[function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }return _vm.onClick($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"space",32,$event.key,[" ","Spacebar"])){ return null; }return _vm.onClick($event)}],"click":_vm.onClick},[_vm.maybeMouseMove,_vm.onMouseMove])},[(_vm.listItemType)?_c(_vm.listItemType,{tag:"component",scopedSlots:_vm._u([_vm._l((_vm.$slots),function(_,slotName){return {key:slotName,fn:function(){return [_vm._t(slotName)]},proxy:true}})],null,true)}):_vm._t("default")],2)}
|
|
10921
|
-
var
|
|
11268
|
+
var list_itemvue_type_template_id_46f934a0_staticRenderFns = []
|
|
10922
11269
|
|
|
10923
11270
|
|
|
10924
|
-
// CONCATENATED MODULE: ./components/list_item/list_item.vue?vue&type=template&id=
|
|
11271
|
+
// CONCATENATED MODULE: ./components/list_item/list_item.vue?vue&type=template&id=46f934a0&
|
|
10925
11272
|
|
|
10926
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11273
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/list_item/default_list_item.vue?vue&type=template&id=42285ca2&
|
|
10927
11274
|
var default_list_itemvue_type_template_id_42285ca2_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"dt-default-list-item d-fs14 d-lh4 d-py2 d-px12 d-d-flex d-ai-center"},[(_vm.$slots.left)?_c('section',{staticClass:"dt-default-list-item--left d-d-inline-flex d-as-flex-start d-d-flex d-ai-center d-pr8",attrs:{"data-qa":"dt-default-list-item-left-wrapper"}},[_vm._t("left")],2):_vm._e(),_c('section',{staticClass:"d-fl-grow1"},[(_vm.$slots.default)?_c('div',[_vm._t("default")],2):_vm._e(),(_vm.$slots.subtitle)?_c('div',{class:['d-fs12 d-fc-black-500', { 'd-mtn2': _vm.$slots.default }],attrs:{"data-qa":"dt-default-list-item-subtitle-wrapper"}},[_vm._t("subtitle")],2):_vm._e(),(_vm.$slots.bottom)?_c('div',{staticClass:"d-mt2",attrs:{"data-qa":"dt-default-list-item-bottom-wrapper"}},[_vm._t("bottom")],2):_vm._e()]),(_vm.$slots.right)?_c('section',{staticClass:"dt-default-list-item--right d-d-inline-flex d-as-flex-start d-d-flex d-ai-center d-pl8",attrs:{"data-qa":"dt-default-list-item-right-wrapper"}},[_vm._t("right")],2):_vm._e()])}
|
|
10928
11275
|
var default_list_itemvue_type_template_id_42285ca2_staticRenderFns = []
|
|
10929
11276
|
|
|
@@ -11200,8 +11547,8 @@ var list_itemvue_type_style_index_0_lang_less_ = __webpack_require__("51f5");
|
|
|
11200
11547
|
|
|
11201
11548
|
var list_item_component = normalizeComponent(
|
|
11202
11549
|
list_item_list_itemvue_type_script_lang_js_,
|
|
11203
|
-
|
|
11204
|
-
|
|
11550
|
+
list_itemvue_type_template_id_46f934a0_render,
|
|
11551
|
+
list_itemvue_type_template_id_46f934a0_staticRenderFns,
|
|
11205
11552
|
false,
|
|
11206
11553
|
null,
|
|
11207
11554
|
null,
|
|
@@ -11212,7 +11559,7 @@ var list_item_component = normalizeComponent(
|
|
|
11212
11559
|
/* harmony default export */ var list_item = (list_item_component.exports);
|
|
11213
11560
|
// CONCATENATED MODULE: ./components/list_item/index.js
|
|
11214
11561
|
|
|
11215
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11562
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/notice/notice.vue?vue&type=template&id=4b03fec7&
|
|
11216
11563
|
var noticevue_type_template_id_4b03fec7_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('aside',_vm._g({class:_vm.noticeClass,attrs:{"data-qa":"notice"}},_vm.$listeners),[_c('dt-notice-icon',_vm._g({attrs:{"kind":_vm.kind}},_vm.$listeners),[_vm._t("icon")],2),_c('dt-notice-content',_vm._g({attrs:{"title-id":_vm.titleId,"content-id":_vm.contentId,"title":_vm.title,"role":_vm.role},scopedSlots:_vm._u([{key:"titleOverride",fn:function(){return [_vm._t("titleOverride")]},proxy:true}],null,true)},_vm.$listeners),[_vm._t("default")],2),_c('dt-notice-action',_vm._g({attrs:{"hide-close":_vm.hideClose,"close-button-props":_vm.closeButtonProps}},_vm.$listeners),[_vm._t("action")],2)],1)}
|
|
11217
11564
|
var noticevue_type_template_id_4b03fec7_staticRenderFns = []
|
|
11218
11565
|
|
|
@@ -11392,7 +11739,7 @@ var notice_component = normalizeComponent(
|
|
|
11392
11739
|
// CONCATENATED MODULE: ./components/notice/index.js
|
|
11393
11740
|
|
|
11394
11741
|
|
|
11395
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11742
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/radio/radio.vue?vue&type=template&id=7516bd14&
|
|
11396
11743
|
var radiovue_type_template_id_7516bd14_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('label',[_c('div',{class:['d-radio-group', { 'd-radio-group--disabled': _vm.internalDisabled }]},[_c('div',{staticClass:"d-radio__input"},[_c('input',_vm._g(_vm._b({class:['d-radio', _vm.inputValidationClass, _vm.inputClass],attrs:{"name":_vm.internalName,"disabled":_vm.internalDisabled,"type":"radio"},domProps:{"checked":_vm.internalChecked,"value":_vm.value}},'input',_vm.$attrs,false),_vm.inputListeners))]),_c('div',{staticClass:"d-radio__copy d-radio__label",attrs:{"data-qa":"radio-label-description-container"}},[_c('div',_vm._b({class:_vm.labelClass,attrs:{"data-qa":"radio-label"}},'div',_vm.labelChildProps,false),[_vm._t("default",[_vm._v(_vm._s(_vm.label))])],2),(_vm.$slots.description || _vm.description)?_c('div',_vm._b({class:['d-description', _vm.descriptionClass],attrs:{"data-qa":"radio-description"}},'div',_vm.descriptionChildProps,false),[_vm._t("description",[_vm._v(_vm._s(_vm.description))])],2):_vm._e(),_c('dt-validation-messages',_vm._b({class:_vm.messagesClass,attrs:{"validation-messages":_vm.formattedMessages,"show-messages":_vm.showMessages,"data-qa":"dt-radio-validation-messages"}},'dt-validation-messages',_vm.messagesChildProps,false))],1)])])}
|
|
11397
11744
|
var radiovue_type_template_id_7516bd14_staticRenderFns = []
|
|
11398
11745
|
|
|
@@ -11624,7 +11971,7 @@ var radio_component = normalizeComponent(
|
|
|
11624
11971
|
},
|
|
11625
11972
|
|
|
11626
11973
|
getMessageKey(type, index) {
|
|
11627
|
-
return
|
|
11974
|
+
return "radio-group-message-".concat(type, "-").concat(index, "-").concat(this.id);
|
|
11628
11975
|
}
|
|
11629
11976
|
|
|
11630
11977
|
}
|
|
@@ -11653,7 +12000,7 @@ var radio_group_component = normalizeComponent(
|
|
|
11653
12000
|
/* harmony default export */ var radio_group = (radio_group_component.exports);
|
|
11654
12001
|
// CONCATENATED MODULE: ./components/radio_group/index.js
|
|
11655
12002
|
|
|
11656
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12003
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/tabs/tab_group.vue?vue&type=template&id=59d36f62&
|
|
11657
12004
|
var tab_groupvue_type_template_id_59d36f62_render = function () {
|
|
11658
12005
|
var _obj;
|
|
11659
12006
|
var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"data-qa":"dt-tab-group"}},[_c('div',_vm._b({class:[
|
|
@@ -11934,7 +12281,7 @@ const TAB_IMPORTANCE_MODIFIERS = {
|
|
|
11934
12281
|
},
|
|
11935
12282
|
|
|
11936
12283
|
getIndexAndTabs() {
|
|
11937
|
-
const index = this.tabs.findIndex(context => this.focusId ? context.id ===
|
|
12284
|
+
const index = this.tabs.findIndex(context => this.focusId ? context.id === "".concat(this.focusId) : context.isSelected);
|
|
11938
12285
|
return {
|
|
11939
12286
|
tabs: this.tabs,
|
|
11940
12287
|
index
|
|
@@ -11979,7 +12326,7 @@ var tab_group_component = normalizeComponent(
|
|
|
11979
12326
|
)
|
|
11980
12327
|
|
|
11981
12328
|
/* harmony default export */ var tab_group = (tab_group_component.exports);
|
|
11982
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12329
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/tabs/tab.vue?vue&type=template&id=0bc212ec&
|
|
11983
12330
|
var tabvue_type_template_id_0bc212ec_render = function () {
|
|
11984
12331
|
var _obj;
|
|
11985
12332
|
var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-button',_vm._b({class:[
|
|
@@ -12132,7 +12479,7 @@ var tab_component = normalizeComponent(
|
|
|
12132
12479
|
)
|
|
12133
12480
|
|
|
12134
12481
|
/* harmony default export */ var tab = (tab_component.exports);
|
|
12135
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12482
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/tabs/tab_panel.vue?vue&type=template&id=4d6d0107&
|
|
12136
12483
|
var tab_panelvue_type_template_id_4d6d0107_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:[
|
|
12137
12484
|
{
|
|
12138
12485
|
'd-d-none': _vm.hidePanel,
|
|
@@ -12234,7 +12581,7 @@ var tab_panel_component = normalizeComponent(
|
|
|
12234
12581
|
|
|
12235
12582
|
|
|
12236
12583
|
|
|
12237
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12584
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/checkbox/checkbox.vue?vue&type=template&id=86d051ec&
|
|
12238
12585
|
var checkboxvue_type_template_id_86d051ec_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('label',[_c('div',{class:['d-checkbox-group', { 'd-checkbox-group--disabled': _vm.internalDisabled }]},[_c('div',{staticClass:"d-checkbox__input"},[_c('input',_vm._g(_vm._b({class:['d-checkbox', _vm.inputValidationClass, _vm.inputClass],attrs:{"type":"checkbox","name":_vm.internalName,"disabled":_vm.internalDisabled},domProps:{"checked":_vm.internalChecked,"value":_vm.value,"indeterminate":_vm.internalIndeterminate}},'input',_vm.$attrs,false),_vm.inputListeners))]),(_vm.hasLabelOrDescription)?_c('div',{staticClass:"d-checkbox__copy d-checkbox__label",attrs:{"data-qa":"checkbox-label-description-container"}},[(_vm.hasLabel)?_c('div',_vm._b({class:_vm.labelClass,attrs:{"data-qa":"checkbox-label"}},'div',_vm.labelChildProps,false),[_vm._t("default",[_vm._v(_vm._s(_vm.label))])],2):_vm._e(),(_vm.hasDescription)?_c('div',_vm._b({class:['d-description', _vm.descriptionClass],attrs:{"data-qa":"checkbox-description"}},'div',_vm.descriptionChildProps,false),[_vm._t("description",[_vm._v(_vm._s(_vm.description))])],2):_vm._e(),_c('dt-validation-messages',_vm._b({class:_vm.messagesClass,attrs:{"validation-messages":_vm.formattedMessages,"show-messages":_vm.showMessages,"data-qa":"dt-checkbox-validation-messages"}},'dt-validation-messages',_vm.messagesChildProps,false))],1):_vm._e()])])}
|
|
12239
12586
|
var checkboxvue_type_template_id_86d051ec_staticRenderFns = []
|
|
12240
12587
|
|
|
@@ -12529,7 +12876,7 @@ var checkbox_component = normalizeComponent(
|
|
|
12529
12876
|
},
|
|
12530
12877
|
|
|
12531
12878
|
getMessageKey(type, index) {
|
|
12532
|
-
return
|
|
12879
|
+
return "checkbox-group-message-".concat(type, "-").concat(index, "-").concat(this.id);
|
|
12533
12880
|
}
|
|
12534
12881
|
|
|
12535
12882
|
}
|
|
@@ -12558,7 +12905,7 @@ var checkbox_group_component = normalizeComponent(
|
|
|
12558
12905
|
/* harmony default export */ var checkbox_group = (checkbox_group_component.exports);
|
|
12559
12906
|
// CONCATENATED MODULE: ./components/checkbox_group/index.js
|
|
12560
12907
|
|
|
12561
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12908
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/select_menu/select_menu.vue?vue&type=template&id=59947fa6&
|
|
12562
12909
|
var select_menuvue_type_template_id_59947fa6_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('label',[(_vm.$slots.label || _vm.label)?_c('div',_vm._b({class:[
|
|
12563
12910
|
'd-label',
|
|
12564
12911
|
_vm.LABEL_SIZE_MODIFIERS[_vm.size],
|
|
@@ -12869,7 +13216,7 @@ const optionsValidator = options => {
|
|
|
12869
13216
|
},
|
|
12870
13217
|
|
|
12871
13218
|
descriptionKey() {
|
|
12872
|
-
return
|
|
13219
|
+
return "select-".concat(this.selectKey, "-description");
|
|
12873
13220
|
},
|
|
12874
13221
|
|
|
12875
13222
|
labelAriaDetails() {
|
|
@@ -12897,7 +13244,7 @@ const optionsValidator = options => {
|
|
|
12897
13244
|
},
|
|
12898
13245
|
|
|
12899
13246
|
getOptionKey(value) {
|
|
12900
|
-
return
|
|
13247
|
+
return "select-".concat(this.selectKey, "-option-").concat(value);
|
|
12901
13248
|
},
|
|
12902
13249
|
|
|
12903
13250
|
validateOptionsPresence() {
|
|
@@ -12935,7 +13282,7 @@ var select_menu_component = normalizeComponent(
|
|
|
12935
13282
|
// CONCATENATED MODULE: ./components/select_menu/index.js
|
|
12936
13283
|
|
|
12937
13284
|
|
|
12938
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13285
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/toast/toast.vue?vue&type=template&id=1f5a483f&
|
|
12939
13286
|
var toastvue_type_template_id_1f5a483f_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('aside',{staticClass:"d-toast-wrapper"},[(!_vm.hidden)?_c('div',{class:[
|
|
12940
13287
|
'd-toast',
|
|
12941
13288
|
_vm.kindClass,
|
|
@@ -13186,14 +13533,14 @@ var toast_component = normalizeComponent(
|
|
|
13186
13533
|
// CONCATENATED MODULE: ./components/toast/index.js
|
|
13187
13534
|
|
|
13188
13535
|
|
|
13189
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13536
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/skeleton/skeleton.vue?vue&type=template&id=293e767b&
|
|
13190
13537
|
var skeletonvue_type_template_id_293e767b_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"aria-busy":"true","role":"status","aria-label":_vm.ariaLabel}},[(_vm.listItemOption)?_c('dt-skeleton-list-item',_vm._b({attrs:{"animation-duration":_vm.animationDuration,"animate":_vm.animate,"offset":_vm.offset}},'dt-skeleton-list-item',_vm.listItemOption === true ? {} : _vm.listItemOption,false)):(_vm.shapeOption)?_c('dt-skeleton-shape',_vm._b({attrs:{"animation-duration":_vm.animationDuration,"animate":_vm.animate,"offset":_vm.offset}},'dt-skeleton-shape',_vm.shapeOption === true ? {} : _vm.shapeOption,false)):(_vm.paragraphOption)?_c('dt-skeleton-paragraph',_vm._b({attrs:{"animation-duration":_vm.animationDuration,"animate":_vm.animate,"offset":_vm.offset}},'dt-skeleton-paragraph',_vm.paragraphOption === true ? {} : _vm.paragraphOption,false)):_c('dt-skeleton-text',_vm._b({attrs:{"animation-duration":_vm.animationDuration,"animate":_vm.animate,"offset":_vm.offset}},'dt-skeleton-text',_vm.textOption || {},false))],1)}
|
|
13191
13538
|
var skeletonvue_type_template_id_293e767b_staticRenderFns = []
|
|
13192
13539
|
|
|
13193
13540
|
|
|
13194
13541
|
// CONCATENATED MODULE: ./components/skeleton/skeleton.vue?vue&type=template&id=293e767b&
|
|
13195
13542
|
|
|
13196
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13543
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/skeleton/skeleton-shape.vue?vue&type=template&id=0b405340&
|
|
13197
13544
|
var skeleton_shapevue_type_template_id_0b405340_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:"skeleton",class:[
|
|
13198
13545
|
'skeleton-placeholder',
|
|
13199
13546
|
_vm.SKELETON_SHAPES[_vm.shape],
|
|
@@ -13262,8 +13609,8 @@ const SKELETON_HEADING_HEIGHTS = {
|
|
|
13262
13609
|
|
|
13263
13610
|
const animationDelay = this.skeletonOffset * SKELETON_RIPPLE_DURATION / 1000;
|
|
13264
13611
|
const animationDuration = this.animationDuration === -1 ? 1000 : this.animationDuration;
|
|
13265
|
-
style.animationDelay =
|
|
13266
|
-
style.animationDuration =
|
|
13612
|
+
style.animationDelay = "".concat(animationDelay, "ms");
|
|
13613
|
+
style.animationDuration = "".concat(animationDuration, "ms");
|
|
13267
13614
|
return style;
|
|
13268
13615
|
}
|
|
13269
13616
|
|
|
@@ -13360,7 +13707,7 @@ var skeleton_shape_component = normalizeComponent(
|
|
|
13360
13707
|
)
|
|
13361
13708
|
|
|
13362
13709
|
/* harmony default export */ var skeleton_shape = (skeleton_shape_component.exports);
|
|
13363
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13710
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/skeleton/skeleton-list-item.vue?vue&type=template&id=550b8bfc&
|
|
13364
13711
|
var skeleton_list_itemvue_type_template_id_550b8bfc_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:[
|
|
13365
13712
|
'd-d-flex',
|
|
13366
13713
|
{
|
|
@@ -13372,7 +13719,7 @@ var skeleton_list_itemvue_type_template_id_550b8bfc_staticRenderFns = []
|
|
|
13372
13719
|
|
|
13373
13720
|
// CONCATENATED MODULE: ./components/skeleton/skeleton-list-item.vue?vue&type=template&id=550b8bfc&
|
|
13374
13721
|
|
|
13375
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13722
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/skeleton/skeleton-paragraph.vue?vue&type=template&id=5c1bdf76&
|
|
13376
13723
|
var skeleton_paragraphvue_type_template_id_5c1bdf76_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:[
|
|
13377
13724
|
'd-w100p',
|
|
13378
13725
|
_vm.contentClass ],attrs:{"contentClass":"","data-qa":"skeleton-paragraph"}},_vm._l((_vm.integerRows),function(row){return _c('dt-skeleton-text',{key:row,class:[
|
|
@@ -13384,7 +13731,7 @@ var skeleton_paragraphvue_type_template_id_5c1bdf76_staticRenderFns = []
|
|
|
13384
13731
|
|
|
13385
13732
|
// CONCATENATED MODULE: ./components/skeleton/skeleton-paragraph.vue?vue&type=template&id=5c1bdf76&
|
|
13386
13733
|
|
|
13387
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13734
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/skeleton/skeleton-text.vue?vue&type=template&id=9c94b6be&
|
|
13388
13735
|
var skeleton_textvue_type_template_id_9c94b6be_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.type === 'body')?_c('div',{ref:"skeleton",class:[
|
|
13389
13736
|
'd-h8',
|
|
13390
13737
|
'd-bar2',
|
|
@@ -13606,7 +13953,7 @@ const validator = number => number !== '' && !Number.isNaN(Number(number));
|
|
|
13606
13953
|
randomWidthPercentage() {
|
|
13607
13954
|
const min = Math.min(this.minWidth, this.maxWidth);
|
|
13608
13955
|
const max = Math.max(this.minWidth, this.maxWidth);
|
|
13609
|
-
return
|
|
13956
|
+
return "".concat(Math.round(Math.random() * (max - min)) + min, "%");
|
|
13610
13957
|
},
|
|
13611
13958
|
|
|
13612
13959
|
getSizeParagraphRow(row) {
|
|
@@ -13862,7 +14209,7 @@ var skeleton_list_item_component = normalizeComponent(
|
|
|
13862
14209
|
const filtered = Object.entries(this.validationOptions).filter(([_, option]) => option);
|
|
13863
14210
|
|
|
13864
14211
|
if (filtered.length >= 2) {
|
|
13865
|
-
const errorMessage =
|
|
14212
|
+
const errorMessage = "Use only one of ".concat(filtered.map(([key]) => key).join(' | '), " options at the same time");
|
|
13866
14213
|
console.error(errorMessage);
|
|
13867
14214
|
}
|
|
13868
14215
|
}
|
|
@@ -13902,7 +14249,7 @@ var skeleton_component = normalizeComponent(
|
|
|
13902
14249
|
|
|
13903
14250
|
|
|
13904
14251
|
|
|
13905
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14252
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./components/keyboard_shortcut/keyboard_shortcut.vue?vue&type=template&id=42a36d1f&
|
|
13906
14253
|
var keyboard_shortcutvue_type_template_id_42a36d1f_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('kbd',{class:[
|
|
13907
14254
|
'd-d-inline-flex',
|
|
13908
14255
|
'd-ff-custom',
|
|
@@ -13925,7 +14272,7 @@ var keyboard_shortcutvue_type_template_id_42a36d1f_staticRenderFns = []
|
|
|
13925
14272
|
|
|
13926
14273
|
// CONCATENATED MODULE: ./components/keyboard_shortcut/keyboard_shortcut.vue?vue&type=template&id=42a36d1f&
|
|
13927
14274
|
|
|
13928
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14275
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconWindows.vue?vue&type=template&id=799d0e52&
|
|
13929
14276
|
var IconWindowsvue_type_template_id_799d0e52_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__windows",attrs:{"aria-hidden":"true","aria-label":"Windows","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M19.903 12.819v7.532L10.936 19v-6.197l8.967.016zM10.936 5.334l8.967-1.249V11.5h-8.967V5.334zM9.745 12.757v6.134l-6.643-.885v-5.28l6.643.03zM3.097 6.328l6.647-.885v6.134H3.1l-.003-5.25z","fill":"#0D0C0F"}})])}
|
|
13930
14277
|
var IconWindowsvue_type_template_id_799d0e52_staticRenderFns = []
|
|
13931
14278
|
|
|
@@ -13951,7 +14298,7 @@ var IconWindows_component = normalizeComponent(
|
|
|
13951
14298
|
)
|
|
13952
14299
|
|
|
13953
14300
|
/* harmony default export */ var IconWindows = (IconWindows_component.exports);
|
|
13954
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14301
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconAdd.vue?vue&type=template&id=37aa578e&
|
|
13955
14302
|
var IconAddvue_type_template_id_37aa578e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__add",attrs:{"aria-hidden":"true","aria-label":"Add","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"}})])}
|
|
13956
14303
|
var IconAddvue_type_template_id_37aa578e_staticRenderFns = []
|
|
13957
14304
|
|
|
@@ -13977,7 +14324,7 @@ var IconAdd_component = normalizeComponent(
|
|
|
13977
14324
|
)
|
|
13978
14325
|
|
|
13979
14326
|
/* harmony default export */ var IconAdd = (IconAdd_component.exports);
|
|
13980
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14327
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconArrowDownward.vue?vue&type=template&id=3615192c&
|
|
13981
14328
|
var IconArrowDownwardvue_type_template_id_3615192c_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__arrowDownward",attrs:{"aria-hidden":"true","aria-label":"Arrow Downward","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z"}})])}
|
|
13982
14329
|
var IconArrowDownwardvue_type_template_id_3615192c_staticRenderFns = []
|
|
13983
14330
|
|
|
@@ -14003,7 +14350,7 @@ var IconArrowDownward_component = normalizeComponent(
|
|
|
14003
14350
|
)
|
|
14004
14351
|
|
|
14005
14352
|
/* harmony default export */ var IconArrowDownward = (IconArrowDownward_component.exports);
|
|
14006
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14353
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconArrowUpward.vue?vue&type=template&id=10122176&
|
|
14007
14354
|
var IconArrowUpwardvue_type_template_id_10122176_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__arrowUpward",attrs:{"aria-hidden":"true","aria-label":"Arrow Upward","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z"}})])}
|
|
14008
14355
|
var IconArrowUpwardvue_type_template_id_10122176_staticRenderFns = []
|
|
14009
14356
|
|
|
@@ -14029,7 +14376,7 @@ var IconArrowUpward_component = normalizeComponent(
|
|
|
14029
14376
|
)
|
|
14030
14377
|
|
|
14031
14378
|
/* harmony default export */ var IconArrowUpward = (IconArrowUpward_component.exports);
|
|
14032
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14379
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconArrowForward.vue?vue&type=template&id=24d9c0d4&
|
|
14033
14380
|
var IconArrowForwardvue_type_template_id_24d9c0d4_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__arrowForward",attrs:{"aria-hidden":"true","aria-label":"Arrow Forward","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z"}})])}
|
|
14034
14381
|
var IconArrowForwardvue_type_template_id_24d9c0d4_staticRenderFns = []
|
|
14035
14382
|
|
|
@@ -14055,7 +14402,7 @@ var IconArrowForward_component = normalizeComponent(
|
|
|
14055
14402
|
)
|
|
14056
14403
|
|
|
14057
14404
|
/* harmony default export */ var IconArrowForward = (IconArrowForward_component.exports);
|
|
14058
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14405
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"19c81ca9-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!./node_modules/@dialpad/dialtone/lib/dist/vue/icons/IconArrowBackwards.vue?vue&type=template&id=422cf4b0&
|
|
14059
14406
|
var IconArrowBackwardsvue_type_template_id_422cf4b0_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{staticClass:"d-svg d-svg--system d-svg__arrowBackwards",attrs:{"aria-hidden":"true","aria-label":"Arrow Backwards","viewBox":"0 0 24 24"}},[_c('path',{attrs:{"d":"M12 20l1.41-1.41L7.83 13H20v-2H7.83l5.58-5.59L12 4l-8 8 8 8z"}})])}
|
|
14060
14407
|
var IconArrowBackwardsvue_type_template_id_422cf4b0_staticRenderFns = []
|
|
14061
14408
|
|
|
@@ -14096,7 +14443,7 @@ const SHORTCUTS_ICON_ALIASES = {
|
|
|
14096
14443
|
const SHORTCUTS_ICON_SEPARATOR = {
|
|
14097
14444
|
'{plus}': 'IconAdd'
|
|
14098
14445
|
};
|
|
14099
|
-
const SHORTCUTS_ALIASES_LIST = Object.keys(SHORTCUTS_ALIASES).map(key =>
|
|
14446
|
+
const SHORTCUTS_ALIASES_LIST = Object.keys(SHORTCUTS_ALIASES).map(key => "{".concat(key, "}")).concat(Object.keys(SHORTCUTS_ICON_ALIASES));
|
|
14100
14447
|
// 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!./components/keyboard_shortcut/keyboard_shortcut.vue?vue&type=script&lang=js&
|
|
14101
14448
|
//
|
|
14102
14449
|
//
|
|
@@ -14214,7 +14561,7 @@ const SHORTCUTS_ALIASES_LIST = Object.keys(SHORTCUTS_ALIASES).map(key => `{${key
|
|
|
14214
14561
|
'{win} + D K + {win}' returned value will be [{win}, ' ', '{plus}', ' D K ', '{plus}', ' ', {win}]
|
|
14215
14562
|
*/
|
|
14216
14563
|
|
|
14217
|
-
const regex = new RegExp(
|
|
14564
|
+
const regex = new RegExp("(".concat(iconAliasString, ")"), 'gi');
|
|
14218
14565
|
return this.formattedShortcut.split(regex).filter(Boolean);
|
|
14219
14566
|
}
|
|
14220
14567
|
|