@dialpad/dialtone-vue 1.9.0 → 1.11.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 +27 -0
- package/dist/dialtone-vue.common.js +492 -135
- package/dist/dialtone-vue.umd.js +492 -135
- package/dist/dialtone-vue.umd.min.js +1 -1
- package/package.json +2 -2
package/dist/dialtone-vue.umd.js
CHANGED
|
@@ -234,7 +234,7 @@ function toComment(sourceMap) {
|
|
|
234
234
|
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
|
|
235
235
|
exports = ___CSS_LOADER_API_IMPORT___(false);
|
|
236
236
|
// Module
|
|
237
|
-
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
|
|
237
|
+
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}", ""]);
|
|
238
238
|
// Exports
|
|
239
239
|
module.exports = exports;
|
|
240
240
|
|
|
@@ -259,7 +259,7 @@ module.exports = exports;
|
|
|
259
259
|
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__("24fb");
|
|
260
260
|
exports = ___CSS_LOADER_API_IMPORT___(false);
|
|
261
261
|
// Module
|
|
262
|
-
exports.push([module.i, ".dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--focusable:hover,.dt-list-item--highlighted{background-color:hsla(var(--black-400-h),var(--black-400-s),var(--black-400-l),.15);cursor:pointer}.dt-list-item--focusable:focus{outline-color:var(--primary-color)}", ""]);
|
|
262
|
+
exports.push([module.i, ".dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--focusable:hover,.dt-list-item--highlighted{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-color:var(--primary-color)}", ""]);
|
|
263
263
|
// Exports
|
|
264
264
|
module.exports = exports;
|
|
265
265
|
|
|
@@ -847,7 +847,7 @@ if (typeof window !== 'undefined') {
|
|
|
847
847
|
// Indicate to webpack that this file can be concatenated
|
|
848
848
|
/* harmony default export */ var setPublicPath = (null);
|
|
849
849
|
|
|
850
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
850
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
851
851
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:[
|
|
852
852
|
'd-avatar',
|
|
853
853
|
_vm.AVATAR_KIND_MODIFIERS[_vm.kind],
|
|
@@ -957,11 +957,12 @@ const FOCUSABLE_SELECTOR_NOT_HIDDEN = 'input:not([type=hidden]):not(:disabled)';
|
|
|
957
957
|
|
|
958
958
|
const FOCUSABLE_SELECTOR_NOT_DISABLED = 'select:not(:disabled),textarea:not(:disabled),button:not(:disabled)'; // // selector to find focusable not hidden and disabled elements
|
|
959
959
|
|
|
960
|
-
const FOCUSABLE_SELECTOR_NOT_HIDDEN_DISABLED =
|
|
960
|
+
const FOCUSABLE_SELECTOR_NOT_HIDDEN_DISABLED = "".concat(FOCUSABLE_SELECTOR_NOT_HIDDEN, ",").concat(FOCUSABLE_SELECTOR_NOT_DISABLED); // selector to find focusable elements
|
|
961
961
|
|
|
962
|
-
const FOCUSABLE_SELECTOR =
|
|
962
|
+
const FOCUSABLE_SELECTOR = "a,frame,iframe,".concat(FOCUSABLE_SELECTOR_NOT_HIDDEN_DISABLED, ",*[tabindex]");
|
|
963
|
+
const scheduler = typeof setImmediate === 'function' ? setImmediate : setTimeout;
|
|
963
964
|
function getUniqueString(prefix = DEFAULT_PREFIX) {
|
|
964
|
-
return
|
|
965
|
+
return "".concat(prefix).concat(UNIQUE_ID_COUNTER++);
|
|
965
966
|
}
|
|
966
967
|
function formatMessages(messages) {
|
|
967
968
|
if (!messages) {
|
|
@@ -1041,12 +1042,11 @@ const htmlFragment = {
|
|
|
1041
1042
|
this.$createElement = h;
|
|
1042
1043
|
},
|
|
1043
1044
|
|
|
1044
|
-
template:
|
|
1045
|
+
template: "<div>".concat(ctx.props.html, "</div>")
|
|
1045
1046
|
}).$mount()._vnode.children;
|
|
1046
1047
|
}
|
|
1047
1048
|
|
|
1048
1049
|
};
|
|
1049
|
-
const scheduler = typeof setImmediate === 'function' ? setImmediate : setTimeout;
|
|
1050
1050
|
const flushPromises = () => {
|
|
1051
1051
|
return new Promise(resolve => {
|
|
1052
1052
|
scheduler(resolve);
|
|
@@ -1293,7 +1293,7 @@ var component = normalizeComponent(
|
|
|
1293
1293
|
// CONCATENATED MODULE: ./components/avatar/index.js
|
|
1294
1294
|
|
|
1295
1295
|
|
|
1296
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1296
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1297
1297
|
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:[
|
|
1298
1298
|
'd-badge',
|
|
1299
1299
|
_vm.BADGE_COLOR_MODIFIERS[_vm.color] ],attrs:{"data-qa":"dt-badge"}},[_vm._t("default",[_vm._v(" "+_vm._s(_vm.text)+" ")])],2)}
|
|
@@ -1390,21 +1390,21 @@ var badge_component = normalizeComponent(
|
|
|
1390
1390
|
// CONCATENATED MODULE: ./components/badge/index.js
|
|
1391
1391
|
|
|
1392
1392
|
|
|
1393
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1393
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1394
1394
|
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)])}
|
|
1395
1395
|
var bannervue_type_template_id_008cf60a_staticRenderFns = []
|
|
1396
1396
|
|
|
1397
1397
|
|
|
1398
1398
|
// CONCATENATED MODULE: ./components/banner/banner.vue?vue&type=template&id=008cf60a&
|
|
1399
1399
|
|
|
1400
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1400
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1401
1401
|
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()}
|
|
1402
1402
|
var notice_iconvue_type_template_id_58ae40bb_staticRenderFns = []
|
|
1403
1403
|
|
|
1404
1404
|
|
|
1405
1405
|
// CONCATENATED MODULE: ./components/notice/notice_icon.vue?vue&type=template&id=58ae40bb&
|
|
1406
1406
|
|
|
1407
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1407
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1408
1408
|
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"}})])}
|
|
1409
1409
|
var IconLightbulbvue_type_template_id_07d1b1af_staticRenderFns = []
|
|
1410
1410
|
|
|
@@ -1430,7 +1430,7 @@ var IconLightbulb_component = normalizeComponent(
|
|
|
1430
1430
|
)
|
|
1431
1431
|
|
|
1432
1432
|
/* harmony default export */ var IconLightbulb = (IconLightbulb_component.exports);
|
|
1433
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1433
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1434
1434
|
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"}})])}
|
|
1435
1435
|
var IconInfovue_type_template_id_d1105ee6_staticRenderFns = []
|
|
1436
1436
|
|
|
@@ -1456,7 +1456,7 @@ var IconInfo_component = normalizeComponent(
|
|
|
1456
1456
|
)
|
|
1457
1457
|
|
|
1458
1458
|
/* harmony default export */ var IconInfo = (IconInfo_component.exports);
|
|
1459
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1459
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1460
1460
|
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"}})])}
|
|
1461
1461
|
var IconWarningvue_type_template_id_0a24defa_staticRenderFns = []
|
|
1462
1462
|
|
|
@@ -1482,7 +1482,7 @@ var IconWarning_component = normalizeComponent(
|
|
|
1482
1482
|
)
|
|
1483
1483
|
|
|
1484
1484
|
/* harmony default export */ var IconWarning = (IconWarning_component.exports);
|
|
1485
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1485
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1486
1486
|
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"}})])}
|
|
1487
1487
|
var IconErrorvue_type_template_id_4d9e3e9d_staticRenderFns = []
|
|
1488
1488
|
|
|
@@ -1508,7 +1508,7 @@ var IconError_component = normalizeComponent(
|
|
|
1508
1508
|
)
|
|
1509
1509
|
|
|
1510
1510
|
/* harmony default export */ var IconError = (IconError_component.exports);
|
|
1511
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1511
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1512
1512
|
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"}})])}
|
|
1513
1513
|
var IconCheckCirclevue_type_template_id_016c7d48_staticRenderFns = []
|
|
1514
1514
|
|
|
@@ -1612,7 +1612,7 @@ var notice_icon_component = normalizeComponent(
|
|
|
1612
1612
|
)
|
|
1613
1613
|
|
|
1614
1614
|
/* harmony default export */ var notice_icon = (notice_icon_component.exports);
|
|
1615
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1615
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1616
1616
|
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)])}
|
|
1617
1617
|
var notice_contentvue_type_template_id_24cf95e4_staticRenderFns = []
|
|
1618
1618
|
|
|
@@ -1684,14 +1684,14 @@ var notice_content_component = normalizeComponent(
|
|
|
1684
1684
|
)
|
|
1685
1685
|
|
|
1686
1686
|
/* harmony default export */ var notice_content = (notice_content_component.exports);
|
|
1687
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1687
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1688
1688
|
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)}
|
|
1689
1689
|
var notice_actionvue_type_template_id_83c987fc_staticRenderFns = []
|
|
1690
1690
|
|
|
1691
1691
|
|
|
1692
1692
|
// CONCATENATED MODULE: ./components/notice/notice_action.vue?vue&type=template&id=83c987fc&
|
|
1693
1693
|
|
|
1694
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1694
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1695
1695
|
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"}})])}
|
|
1696
1696
|
var IconClosevue_type_template_id_18642c39_staticRenderFns = []
|
|
1697
1697
|
|
|
@@ -1717,7 +1717,7 @@ var IconClose_component = normalizeComponent(
|
|
|
1717
1717
|
)
|
|
1718
1718
|
|
|
1719
1719
|
/* harmony default export */ var IconClose = (IconClose_component.exports);
|
|
1720
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1720
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
1721
1721
|
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:[
|
|
1722
1722
|
'base-button__button',
|
|
1723
1723
|
_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:[
|
|
@@ -1776,11 +1776,7 @@ const INVALID_COMBINATION = [{
|
|
|
1776
1776
|
}];
|
|
1777
1777
|
|
|
1778
1778
|
function _invalidCombinationMessage(circle, kind, importance) {
|
|
1779
|
-
return
|
|
1780
|
-
with kind: ${kind} and importance: ${importance} as it \
|
|
1781
|
-
does not exist in our design system. \
|
|
1782
|
-
See https://dialpad.design/components/button for a \
|
|
1783
|
-
list of available button styles`;
|
|
1779
|
+
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");
|
|
1784
1780
|
}
|
|
1785
1781
|
|
|
1786
1782
|
/* harmony default export */ var button_constants = ({
|
|
@@ -2159,8 +2155,8 @@ var notice_action_component = normalizeComponent(
|
|
|
2159
2155
|
/* harmony default export */ var notice_action = (notice_action_component.exports);
|
|
2160
2156
|
// CONCATENATED MODULE: ./components/mixins/modal.js
|
|
2161
2157
|
const focusableAttrs = ':not(:disabled):not([aria-disabled="true"])';
|
|
2162
|
-
const tabbableAttrs =
|
|
2163
|
-
const focusableElementsList =
|
|
2158
|
+
const tabbableAttrs = "".concat(focusableAttrs, ":not([tabindex=\"-1\"])");
|
|
2159
|
+
const focusableElementsList = "button,[href],input,select,textarea,details,[tabindex]";
|
|
2164
2160
|
/**
|
|
2165
2161
|
* this mixin provides the methods to automatically trap tab focus within
|
|
2166
2162
|
* the component this mixin is on, meaning it is not possible to tab out
|
|
@@ -2467,7 +2463,7 @@ var banner_component = normalizeComponent(
|
|
|
2467
2463
|
/* harmony default export */ var banner = (banner_component.exports);
|
|
2468
2464
|
// CONCATENATED MODULE: ./components/banner/index.js
|
|
2469
2465
|
|
|
2470
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2466
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
2471
2467
|
var breadcrumbsvue_type_template_id_b762e354_render = function () {
|
|
2472
2468
|
var _obj;
|
|
2473
2469
|
var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('nav',{class:[
|
|
@@ -2481,7 +2477,7 @@ var breadcrumbsvue_type_template_id_b762e354_staticRenderFns = []
|
|
|
2481
2477
|
// CONCATENATED MODULE: ./components/breadcrumbs/breadcrumbs_constants.js
|
|
2482
2478
|
const BREADCRUMB_ITEM_SELECTED_MODIFIER = 'd-breadcrumbs__item--selected';
|
|
2483
2479
|
const BREADCRUMBS_INVERTED_MODIFIER = 'd-breadcrumbs--inverted';
|
|
2484
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2480
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
2485
2481
|
var breadcrumb_itemvue_type_template_id_6f97ec8a_render = function () {
|
|
2486
2482
|
var _obj;
|
|
2487
2483
|
var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('li',{class:[
|
|
@@ -2492,7 +2488,7 @@ var breadcrumb_itemvue_type_template_id_6f97ec8a_staticRenderFns = []
|
|
|
2492
2488
|
|
|
2493
2489
|
// CONCATENATED MODULE: ./components/breadcrumbs/breadcrumb_item.vue?vue&type=template&id=6f97ec8a&
|
|
2494
2490
|
|
|
2495
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2491
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
2496
2492
|
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:[
|
|
2497
2493
|
'd-link',
|
|
2498
2494
|
_vm.LINK_KIND_MODIFIERS[_vm.kind] ],attrs:{"data-qa":"dt-link"}},_vm.$listeners),[_vm._t("default")],2)}
|
|
@@ -2739,7 +2735,7 @@ var breadcrumb_item_component = normalizeComponent(
|
|
|
2739
2735
|
|
|
2740
2736
|
methods: {
|
|
2741
2737
|
getBreadcrumbItemKey(index) {
|
|
2742
|
-
return
|
|
2738
|
+
return "breadcrumbs-item-".concat(index, "-").concat(utils.getUniqueString());
|
|
2743
2739
|
}
|
|
2744
2740
|
|
|
2745
2741
|
}
|
|
@@ -2772,7 +2768,7 @@ var breadcrumbs_component = normalizeComponent(
|
|
|
2772
2768
|
|
|
2773
2769
|
// CONCATENATED MODULE: ./components/button/index.js
|
|
2774
2770
|
|
|
2775
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2771
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
2776
2772
|
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:[
|
|
2777
2773
|
'd-btn-group',
|
|
2778
2774
|
_vm.BUTTON_GROUP_ALIGNMENT[this.alignment] ],attrs:{"role":"group"}},[_vm._t("default")],2)}
|
|
@@ -2847,7 +2843,7 @@ var button_group_component = normalizeComponent(
|
|
|
2847
2843
|
// CONCATENATED MODULE: ./components/button_group/index.js
|
|
2848
2844
|
|
|
2849
2845
|
|
|
2850
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2846
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
2851
2847
|
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()])}
|
|
2852
2848
|
var comboboxvue_type_template_id_4c9df24d_staticRenderFns = []
|
|
2853
2849
|
|
|
@@ -3049,12 +3045,11 @@ var comboboxvue_type_template_id_4c9df24d_staticRenderFns = []
|
|
|
3049
3045
|
const listElement = this._getListElement();
|
|
3050
3046
|
|
|
3051
3047
|
if (!listElement) {
|
|
3052
|
-
console.error(
|
|
3053
|
-
listElement: `, listElement);
|
|
3048
|
+
console.error("listElementKey is required or the referenced element doesn't exist. Received ',\n listElement: ", listElement);
|
|
3054
3049
|
return 0;
|
|
3055
3050
|
}
|
|
3056
3051
|
|
|
3057
|
-
return listElement.querySelectorAll(
|
|
3052
|
+
return listElement.querySelectorAll("[role=\"".concat(listItemRole, "\"]")).length;
|
|
3058
3053
|
},
|
|
3059
3054
|
|
|
3060
3055
|
onUpKey() {
|
|
@@ -3314,7 +3309,7 @@ var comboboxvue_type_template_id_4c9df24d_staticRenderFns = []
|
|
|
3314
3309
|
},
|
|
3315
3310
|
|
|
3316
3311
|
getItemId(i) {
|
|
3317
|
-
return
|
|
3312
|
+
return "".concat(this.listId, "-item").concat(i);
|
|
3318
3313
|
},
|
|
3319
3314
|
|
|
3320
3315
|
afterHighlight() {
|
|
@@ -3357,34 +3352,44 @@ var combobox_component = normalizeComponent(
|
|
|
3357
3352
|
/* harmony default export */ var combobox = (combobox_component.exports);
|
|
3358
3353
|
// CONCATENATED MODULE: ./components/combobox/index.js
|
|
3359
3354
|
|
|
3360
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3361
|
-
var
|
|
3362
|
-
var
|
|
3355
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
3356
|
+
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))}
|
|
3357
|
+
var dropdownvue_type_template_id_479a72d0_staticRenderFns = []
|
|
3363
3358
|
|
|
3364
3359
|
|
|
3365
|
-
// CONCATENATED MODULE: ./components/dropdown/dropdown.vue?vue&type=template&id=
|
|
3360
|
+
// CONCATENATED MODULE: ./components/dropdown/dropdown.vue?vue&type=template&id=479a72d0&
|
|
3366
3361
|
|
|
3367
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3368
|
-
var
|
|
3362
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
3363
|
+
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":{
|
|
3369
3364
|
'aria-expanded': _vm.showPopover.toString(),
|
|
3370
3365
|
'aria-controls': _vm.id,
|
|
3371
3366
|
'aria-haspopup': _vm.role,
|
|
3372
3367
|
}})],2),_c('dt-lazy-show',_vm._g({ref:"content",class:[
|
|
3373
|
-
'dt-popover-box',
|
|
3374
3368
|
'd-bgc-white',
|
|
3375
|
-
'd-
|
|
3376
|
-
'd-
|
|
3377
|
-
'd-
|
|
3378
|
-
'
|
|
3379
|
-
_vm.POPOVER_PADDING_CLASSES[_vm.padding],
|
|
3369
|
+
'd-bs-card',
|
|
3370
|
+
'd-bar8',
|
|
3371
|
+
'd-bc-black-100',
|
|
3372
|
+
'dt-popover-box',
|
|
3380
3373
|
("dt-popover__content--align-" + _vm.horizontalAlignment),
|
|
3381
3374
|
("dt-popover__content--valign-" + _vm.verticalAlignment),
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3375
|
+
{
|
|
3376
|
+
'd-d-grid d-of-hidden dt-popover-box__grid': _vm.fixedHeader,
|
|
3377
|
+
'd-of-auto': Boolean(_vm.maxHeight),
|
|
3378
|
+
'd-wmx-unset': !Boolean(_vm.maxWidth),
|
|
3379
|
+
} ],style:({
|
|
3380
|
+
'max-height': _vm.maxHeight,
|
|
3381
|
+
'max-width': _vm.maxWidth,
|
|
3382
|
+
}),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:[
|
|
3383
|
+
'dt-popover__content',
|
|
3384
|
+
_vm.POPOVER_PADDING_CLASSES[_vm.padding],
|
|
3385
|
+
{
|
|
3386
|
+
'd-of-auto': _vm.fixedHeader,
|
|
3387
|
+
},
|
|
3388
|
+
_vm.contentClass ],attrs:{"data-qa":"dt-popover-content"},on:{"scroll":_vm.onScrollContent}},[_vm._t("content")],2)],1)],1)}
|
|
3389
|
+
var popovervue_type_template_id_eb03c67c_staticRenderFns = []
|
|
3385
3390
|
|
|
3386
3391
|
|
|
3387
|
-
// CONCATENATED MODULE: ./components/popover/popover.vue?vue&type=template&id=
|
|
3392
|
+
// CONCATENATED MODULE: ./components/popover/popover.vue?vue&type=template&id=eb03c67c&
|
|
3388
3393
|
|
|
3389
3394
|
// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js
|
|
3390
3395
|
// import { isHTMLElement } from './instanceOf';
|
|
@@ -7707,9 +7712,9 @@ const POPOVER_PADDING_CLASSES = {
|
|
|
7707
7712
|
};
|
|
7708
7713
|
const POPOVER_HORIZONTAL_ALIGNMENT = [null, 'left', 'center', 'right'];
|
|
7709
7714
|
const POPOVER_VERTICAL_ALIGNMENT = [null, 'top', 'bottom'];
|
|
7710
|
-
const POPOVER_ROLES = ['dialog', 'menu', 'listbox'
|
|
7715
|
+
const POPOVER_ROLES = ['dialog', 'menu', 'listbox'];
|
|
7711
7716
|
const POPOVER_CONTENT_WIDTHS = [null, 'anchor'];
|
|
7712
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
7717
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
7713
7718
|
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)])}
|
|
7714
7719
|
var lazy_showvue_type_template_id_9ffa4e8c_staticRenderFns = []
|
|
7715
7720
|
|
|
@@ -7799,7 +7804,7 @@ var lazy_show_component = normalizeComponent(
|
|
|
7799
7804
|
)
|
|
7800
7805
|
|
|
7801
7806
|
/* harmony default export */ var lazy_show = (lazy_show_component.exports);
|
|
7802
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
7807
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
7803
7808
|
var tooltipvue_type_template_id_00f87924_render = function () {
|
|
7804
7809
|
var _obj;
|
|
7805
7810
|
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":{
|
|
@@ -7843,10 +7848,10 @@ const TOOLTIP_DIALTONE_DIRECTIONS = Object.entries(TOOLTIP_TIPPY_DIRECTIONS).red
|
|
|
7843
7848
|
[value]: key
|
|
7844
7849
|
}), {});
|
|
7845
7850
|
const TOOLTIP_KIND_MODIFIERS = {
|
|
7846
|
-
hover:
|
|
7847
|
-
show:
|
|
7848
|
-
inverted:
|
|
7849
|
-
hide:
|
|
7851
|
+
hover: "d-tooltip--hover",
|
|
7852
|
+
show: "d-tooltip--show",
|
|
7853
|
+
inverted: "d-tooltip--inverted",
|
|
7854
|
+
hide: "d-tooltip--hide"
|
|
7850
7855
|
};
|
|
7851
7856
|
const TOOLTIP_HIDE_ON_CLICK_VARIANTS = [true, false, 'toggle'];
|
|
7852
7857
|
// 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&
|
|
@@ -8268,6 +8273,186 @@ var tooltip_component = normalizeComponent(
|
|
|
8268
8273
|
// CONCATENATED MODULE: ./components/tooltip/index.js
|
|
8269
8274
|
|
|
8270
8275
|
|
|
8276
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
8277
|
+
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:[
|
|
8278
|
+
'd-d-flex',
|
|
8279
|
+
'd-ai-flex-start',
|
|
8280
|
+
'd-fs16',
|
|
8281
|
+
'd-fw-bold',
|
|
8282
|
+
'd-of-auto',
|
|
8283
|
+
'd-hmn48',
|
|
8284
|
+
'd-w100p',
|
|
8285
|
+
'd-pl12',
|
|
8286
|
+
'd-pr8',
|
|
8287
|
+
'd-py6',
|
|
8288
|
+
'd-bb',
|
|
8289
|
+
'd-baw1',
|
|
8290
|
+
'd-bc-black-075',
|
|
8291
|
+
{
|
|
8292
|
+
'd-bs-card': _vm.hasBoxShadow,
|
|
8293
|
+
'd-jc-space-between': _vm.isTitleVisible,
|
|
8294
|
+
'd-jc-flex-end': !_vm.isTitleVisible,
|
|
8295
|
+
},
|
|
8296
|
+
_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()])}
|
|
8297
|
+
var popover_headervue_type_template_id_dc02e178_staticRenderFns = []
|
|
8298
|
+
|
|
8299
|
+
|
|
8300
|
+
// CONCATENATED MODULE: ./components/popover/popover_header.vue?vue&type=template&id=dc02e178&
|
|
8301
|
+
|
|
8302
|
+
// 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&
|
|
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
|
+
//
|
|
8357
|
+
//
|
|
8358
|
+
//
|
|
8359
|
+
//
|
|
8360
|
+
//
|
|
8361
|
+
//
|
|
8362
|
+
//
|
|
8363
|
+
|
|
8364
|
+
|
|
8365
|
+
/* harmony default export */ var popover_headervue_type_script_lang_js_ = ({
|
|
8366
|
+
name: 'PopoverHeader',
|
|
8367
|
+
components: {
|
|
8368
|
+
DtButton: button_button,
|
|
8369
|
+
IconClose: IconClose
|
|
8370
|
+
},
|
|
8371
|
+
props: {
|
|
8372
|
+
/**
|
|
8373
|
+
* Additional class name for the content wrapper element.
|
|
8374
|
+
*/
|
|
8375
|
+
headerClass: {
|
|
8376
|
+
type: [String, Array, Object],
|
|
8377
|
+
default: ''
|
|
8378
|
+
},
|
|
8379
|
+
|
|
8380
|
+
/**
|
|
8381
|
+
* Determines title for popover header.
|
|
8382
|
+
* If provided prop is not null, corresponding holder div will be rendered
|
|
8383
|
+
*/
|
|
8384
|
+
title: {
|
|
8385
|
+
type: String,
|
|
8386
|
+
default: null
|
|
8387
|
+
},
|
|
8388
|
+
|
|
8389
|
+
/**
|
|
8390
|
+
* Determines visibility for close button
|
|
8391
|
+
*/
|
|
8392
|
+
showCloseButton: {
|
|
8393
|
+
type: Boolean,
|
|
8394
|
+
default: false
|
|
8395
|
+
},
|
|
8396
|
+
|
|
8397
|
+
/**
|
|
8398
|
+
* A set of props to be passed into the popover's header close button.
|
|
8399
|
+
* Requires an 'ariaLabel' property.
|
|
8400
|
+
*/
|
|
8401
|
+
closeButtonProps: {
|
|
8402
|
+
type: Object,
|
|
8403
|
+
required: true
|
|
8404
|
+
},
|
|
8405
|
+
|
|
8406
|
+
/**
|
|
8407
|
+
* Determines fixed / sticky styles for popover header
|
|
8408
|
+
*/
|
|
8409
|
+
hasBoxShadow: {
|
|
8410
|
+
type: Boolean,
|
|
8411
|
+
default: false
|
|
8412
|
+
}
|
|
8413
|
+
},
|
|
8414
|
+
computed: {
|
|
8415
|
+
isTitleVisible() {
|
|
8416
|
+
return this.$slots.title || this.title !== null;
|
|
8417
|
+
},
|
|
8418
|
+
|
|
8419
|
+
areHeaderButtonsVisible() {
|
|
8420
|
+
return this.$slots.headerActions || this.showCloseButton;
|
|
8421
|
+
}
|
|
8422
|
+
|
|
8423
|
+
},
|
|
8424
|
+
methods: {
|
|
8425
|
+
focusCloseButton() {
|
|
8426
|
+
var _this$$refs$popover__;
|
|
8427
|
+
|
|
8428
|
+
const closeButton = (_this$$refs$popover__ = this.$refs['popover__close-button']) === null || _this$$refs$popover__ === void 0 ? void 0 : _this$$refs$popover__.$el;
|
|
8429
|
+
closeButton === null || closeButton === void 0 ? void 0 : closeButton.focus();
|
|
8430
|
+
}
|
|
8431
|
+
|
|
8432
|
+
}
|
|
8433
|
+
});
|
|
8434
|
+
// CONCATENATED MODULE: ./components/popover/popover_header.vue?vue&type=script&lang=js&
|
|
8435
|
+
/* harmony default export */ var popover_popover_headervue_type_script_lang_js_ = (popover_headervue_type_script_lang_js_);
|
|
8436
|
+
// CONCATENATED MODULE: ./components/popover/popover_header.vue
|
|
8437
|
+
|
|
8438
|
+
|
|
8439
|
+
|
|
8440
|
+
|
|
8441
|
+
|
|
8442
|
+
/* normalize component */
|
|
8443
|
+
|
|
8444
|
+
var popover_header_component = normalizeComponent(
|
|
8445
|
+
popover_popover_headervue_type_script_lang_js_,
|
|
8446
|
+
popover_headervue_type_template_id_dc02e178_render,
|
|
8447
|
+
popover_headervue_type_template_id_dc02e178_staticRenderFns,
|
|
8448
|
+
false,
|
|
8449
|
+
null,
|
|
8450
|
+
null,
|
|
8451
|
+
null
|
|
8452
|
+
|
|
8453
|
+
)
|
|
8454
|
+
|
|
8455
|
+
/* harmony default export */ var popover_header = (popover_header_component.exports);
|
|
8271
8456
|
// 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&
|
|
8272
8457
|
//
|
|
8273
8458
|
//
|
|
@@ -8350,6 +8535,58 @@ var tooltip_component = normalizeComponent(
|
|
|
8350
8535
|
//
|
|
8351
8536
|
//
|
|
8352
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
|
+
//
|
|
8581
|
+
//
|
|
8582
|
+
//
|
|
8583
|
+
//
|
|
8584
|
+
//
|
|
8585
|
+
//
|
|
8586
|
+
//
|
|
8587
|
+
//
|
|
8588
|
+
//
|
|
8589
|
+
|
|
8353
8590
|
|
|
8354
8591
|
|
|
8355
8592
|
|
|
@@ -8364,7 +8601,8 @@ var tooltip_component = normalizeComponent(
|
|
|
8364
8601
|
* CHILD COMPONENTS *
|
|
8365
8602
|
********************/
|
|
8366
8603
|
components: {
|
|
8367
|
-
DtLazyShow: lazy_show
|
|
8604
|
+
DtLazyShow: lazy_show,
|
|
8605
|
+
PopoverHeader: popover_header
|
|
8368
8606
|
},
|
|
8369
8607
|
mixins: [modal],
|
|
8370
8608
|
props: {
|
|
@@ -8418,6 +8656,15 @@ var tooltip_component = normalizeComponent(
|
|
|
8418
8656
|
default: null
|
|
8419
8657
|
},
|
|
8420
8658
|
|
|
8659
|
+
/**
|
|
8660
|
+
* A set of props to be passed into the popover's header close button.
|
|
8661
|
+
* Requires an 'ariaLabel' property, when the header popover is visible
|
|
8662
|
+
*/
|
|
8663
|
+
closeButtonProps: {
|
|
8664
|
+
type: Object,
|
|
8665
|
+
default: () => ({})
|
|
8666
|
+
},
|
|
8667
|
+
|
|
8421
8668
|
/**
|
|
8422
8669
|
* Whether or not the popover content is shown. Supports .sync modifier.
|
|
8423
8670
|
*/
|
|
@@ -8471,13 +8718,13 @@ var tooltip_component = normalizeComponent(
|
|
|
8471
8718
|
* Additional class name for the content wrapper element.
|
|
8472
8719
|
*/
|
|
8473
8720
|
contentClass: {
|
|
8474
|
-
type: String,
|
|
8721
|
+
type: [String, Array, Object],
|
|
8475
8722
|
default: ''
|
|
8476
8723
|
},
|
|
8477
8724
|
|
|
8478
8725
|
/**
|
|
8479
|
-
* Width configuration for the popover content.
|
|
8480
|
-
*
|
|
8726
|
+
* Width configuration for the popover content. When its value is 'anchor',
|
|
8727
|
+
* the popover content will be set the same width with anchor element onShow popover event
|
|
8481
8728
|
*/
|
|
8482
8729
|
contentWidth: {
|
|
8483
8730
|
type: String,
|
|
@@ -8493,6 +8740,10 @@ var tooltip_component = normalizeComponent(
|
|
|
8493
8740
|
type: Boolean,
|
|
8494
8741
|
default: true
|
|
8495
8742
|
},
|
|
8743
|
+
|
|
8744
|
+
/**
|
|
8745
|
+
* Determines should the anchor be focused after closing the popover
|
|
8746
|
+
*/
|
|
8496
8747
|
focusAnchorOnClose: {
|
|
8497
8748
|
type: Boolean,
|
|
8498
8749
|
default: true
|
|
@@ -8561,7 +8812,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8561
8812
|
/**
|
|
8562
8813
|
* Determines the size of the invisible border around the
|
|
8563
8814
|
* tippy that will prevent it from hiding if the cursor left it.
|
|
8564
|
-
|
|
8815
|
+
*/
|
|
8565
8816
|
interactiveBorder: {
|
|
8566
8817
|
type: Number,
|
|
8567
8818
|
default: 2
|
|
@@ -8570,7 +8821,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8570
8821
|
/**
|
|
8571
8822
|
* Determines the events that cause the tippy to show.
|
|
8572
8823
|
* Multiple event names are separated by spaces.
|
|
8573
|
-
|
|
8824
|
+
*/
|
|
8574
8825
|
trigger: {
|
|
8575
8826
|
type: String,
|
|
8576
8827
|
default: 'manual'
|
|
@@ -8580,7 +8831,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8580
8831
|
* Determines if the tippy hides upon clicking the
|
|
8581
8832
|
* reference or outside of the tippy.
|
|
8582
8833
|
* The behavior can depend upon the trigger events used.
|
|
8583
|
-
|
|
8834
|
+
*/
|
|
8584
8835
|
hideOnClick: {
|
|
8585
8836
|
type: [Boolean, String],
|
|
8586
8837
|
default: true,
|
|
@@ -8590,18 +8841,82 @@ var tooltip_component = normalizeComponent(
|
|
|
8590
8841
|
}
|
|
8591
8842
|
|
|
8592
8843
|
},
|
|
8844
|
+
|
|
8845
|
+
/**
|
|
8846
|
+
* Determines modal state, when the popover's overlay is rendered
|
|
8847
|
+
*/
|
|
8593
8848
|
modal: {
|
|
8594
8849
|
type: Boolean,
|
|
8595
8850
|
default: false
|
|
8596
8851
|
},
|
|
8852
|
+
|
|
8853
|
+
/**
|
|
8854
|
+
* Determines title for popover header.
|
|
8855
|
+
* If provided prop is not null, corresponding holder div will be rendered
|
|
8856
|
+
*/
|
|
8857
|
+
title: {
|
|
8858
|
+
type: String,
|
|
8859
|
+
default: null
|
|
8860
|
+
},
|
|
8861
|
+
|
|
8862
|
+
/**
|
|
8863
|
+
* Determines the popover's z-index
|
|
8864
|
+
*/
|
|
8597
8865
|
zIndex: {
|
|
8598
8866
|
type: [Number, String],
|
|
8599
8867
|
default: 300,
|
|
8600
8868
|
validator: zIndex => !!Number(zIndex)
|
|
8601
8869
|
},
|
|
8870
|
+
|
|
8871
|
+
/**
|
|
8872
|
+
* Determines html element container for popover's overlay,
|
|
8873
|
+
* which will be rendered when 'modal' property is 'true'.
|
|
8874
|
+
*/
|
|
8602
8875
|
overlayAppendTo: {
|
|
8603
8876
|
type: HTMLElement,
|
|
8604
8877
|
default: () => document.body
|
|
8878
|
+
},
|
|
8879
|
+
|
|
8880
|
+
/**
|
|
8881
|
+
* Determines maximum height for the popover before overflow.
|
|
8882
|
+
* Possible units rem|px|em
|
|
8883
|
+
*/
|
|
8884
|
+
maxHeight: {
|
|
8885
|
+
type: String,
|
|
8886
|
+
default: ''
|
|
8887
|
+
},
|
|
8888
|
+
|
|
8889
|
+
/**
|
|
8890
|
+
* Determines maximum width for the popover before overflow.
|
|
8891
|
+
* Possible units rem|px|%|em
|
|
8892
|
+
*/
|
|
8893
|
+
maxWidth: {
|
|
8894
|
+
type: String,
|
|
8895
|
+
default: ''
|
|
8896
|
+
},
|
|
8897
|
+
|
|
8898
|
+
/**
|
|
8899
|
+
* Determines fixed / sticky styles for popover header
|
|
8900
|
+
*/
|
|
8901
|
+
fixedHeader: {
|
|
8902
|
+
type: Boolean,
|
|
8903
|
+
default: false
|
|
8904
|
+
},
|
|
8905
|
+
|
|
8906
|
+
/**
|
|
8907
|
+
* Determines visibility for close button
|
|
8908
|
+
*/
|
|
8909
|
+
showCloseButton: {
|
|
8910
|
+
type: Boolean,
|
|
8911
|
+
default: false
|
|
8912
|
+
},
|
|
8913
|
+
|
|
8914
|
+
/**
|
|
8915
|
+
* Additional class name for the content wrapper element.
|
|
8916
|
+
*/
|
|
8917
|
+
headerClass: {
|
|
8918
|
+
type: [String, Array, Object],
|
|
8919
|
+
default: ''
|
|
8605
8920
|
}
|
|
8606
8921
|
},
|
|
8607
8922
|
emits: ['update:open'],
|
|
@@ -8615,12 +8930,18 @@ var tooltip_component = normalizeComponent(
|
|
|
8615
8930
|
showPopover: this.open,
|
|
8616
8931
|
isPreventHidePopover: false,
|
|
8617
8932
|
closedByClickOutside: false,
|
|
8933
|
+
focusCloseButton: false,
|
|
8618
8934
|
anchorEl: null,
|
|
8619
|
-
popoverContentEl: null
|
|
8935
|
+
popoverContentEl: null,
|
|
8936
|
+
hasScrolled: false
|
|
8620
8937
|
};
|
|
8621
8938
|
},
|
|
8622
8939
|
|
|
8623
8940
|
computed: {
|
|
8941
|
+
hasBoxShadow() {
|
|
8942
|
+
return this.hasScrolled && this.fixedHeader;
|
|
8943
|
+
},
|
|
8944
|
+
|
|
8624
8945
|
fallbackPlacements() {
|
|
8625
8946
|
const verticalVariants = POPOVER_VERTICAL_ALIGNMENT.filter(alignment => alignment);
|
|
8626
8947
|
const horizontalVariants = POPOVER_HORIZONTAL_ALIGNMENT.filter(alignment => alignment);
|
|
@@ -8656,6 +8977,18 @@ var tooltip_component = normalizeComponent(
|
|
|
8656
8977
|
// aria-labelledby should be set only if aria-labelledby is passed as a prop, or if
|
|
8657
8978
|
// there is no aria-label and the labelledby should point to the anchor.
|
|
8658
8979
|
return this.ariaLabelledby || !this.ariaLabel && getUniqueString('DtPopover__anchor');
|
|
8980
|
+
},
|
|
8981
|
+
|
|
8982
|
+
isHeaderVisible() {
|
|
8983
|
+
return this.isTitleVisible || this.areHeaderButtonsVisible;
|
|
8984
|
+
},
|
|
8985
|
+
|
|
8986
|
+
isTitleVisible() {
|
|
8987
|
+
return this.$slots.title || this.title !== null;
|
|
8988
|
+
},
|
|
8989
|
+
|
|
8990
|
+
areHeaderButtonsVisible() {
|
|
8991
|
+
return this.$slots.headerActions;
|
|
8659
8992
|
}
|
|
8660
8993
|
|
|
8661
8994
|
},
|
|
@@ -8755,6 +9088,12 @@ var tooltip_component = normalizeComponent(
|
|
|
8755
9088
|
* METHODS *
|
|
8756
9089
|
******************/
|
|
8757
9090
|
methods: {
|
|
9091
|
+
onScrollContent({
|
|
9092
|
+
target
|
|
9093
|
+
}) {
|
|
9094
|
+
this.hasScrolled = target.scrollTop > 0;
|
|
9095
|
+
},
|
|
9096
|
+
|
|
8758
9097
|
removeReferences() {
|
|
8759
9098
|
this.anchorEl = null;
|
|
8760
9099
|
this.popoverContentEl = null;
|
|
@@ -8786,10 +9125,10 @@ var tooltip_component = normalizeComponent(
|
|
|
8786
9125
|
if (horizontalAlignment === 'center') return verticalAlignment;
|
|
8787
9126
|
|
|
8788
9127
|
if (horizontalAlignment === 'left' || horizontalAlignment === 'right') {
|
|
8789
|
-
return
|
|
9128
|
+
return "".concat(verticalAlignment, "-").concat(horizontalAlignment === 'left' ? 'start' : 'end');
|
|
8790
9129
|
}
|
|
8791
9130
|
|
|
8792
|
-
return
|
|
9131
|
+
return "".concat(verticalAlignment, "-").concat(horizontalAlignment);
|
|
8793
9132
|
},
|
|
8794
9133
|
|
|
8795
9134
|
closePopover() {
|
|
@@ -8822,7 +9161,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8822
9161
|
|
|
8823
9162
|
onOpen() {
|
|
8824
9163
|
this.$emit('update:open', true);
|
|
8825
|
-
this.focusFirstElementIfNeeded();
|
|
9164
|
+
this.focusFirstElementIfNeeded(this.$refs.popover__content);
|
|
8826
9165
|
},
|
|
8827
9166
|
|
|
8828
9167
|
onHide() {
|
|
@@ -8854,7 +9193,7 @@ var tooltip_component = normalizeComponent(
|
|
|
8854
9193
|
},
|
|
8855
9194
|
|
|
8856
9195
|
onKeydown(e) {
|
|
8857
|
-
if (
|
|
9196
|
+
if (e.key === 'Tab') {
|
|
8858
9197
|
this.focusTrappedTabPress(e, this.popoverContentEl);
|
|
8859
9198
|
}
|
|
8860
9199
|
},
|
|
@@ -8906,12 +9245,20 @@ var tooltip_component = normalizeComponent(
|
|
|
8906
9245
|
|
|
8907
9246
|
async setPopoverContentAnchorWidth() {
|
|
8908
9247
|
await this.$nextTick();
|
|
8909
|
-
this.popoverContentEl.style.width =
|
|
9248
|
+
this.popoverContentEl.style.width = "".concat(this.anchorEl.clientWidth, "px");
|
|
8910
9249
|
},
|
|
8911
9250
|
|
|
8912
|
-
focusFirstElementIfNeeded(
|
|
9251
|
+
focusFirstElementIfNeeded(domEl) {
|
|
8913
9252
|
if (this.isDialog || this.isMenu) {
|
|
8914
|
-
this.
|
|
9253
|
+
const focusableElements = this._getFocusableElements(domEl);
|
|
9254
|
+
|
|
9255
|
+
if (focusableElements.length !== 0) {
|
|
9256
|
+
this.focusFirstElement(domEl);
|
|
9257
|
+
} else if (this.showCloseButton) {
|
|
9258
|
+
var _this$$refs$popover__;
|
|
9259
|
+
|
|
9260
|
+
(_this$$refs$popover__ = this.$refs.popover__header) === null || _this$$refs$popover__ === void 0 ? void 0 : _this$$refs$popover__.focusCloseButton();
|
|
9261
|
+
}
|
|
8915
9262
|
}
|
|
8916
9263
|
}
|
|
8917
9264
|
|
|
@@ -8933,8 +9280,8 @@ var popovervue_type_style_index_0_lang_less_ = __webpack_require__("e0bf");
|
|
|
8933
9280
|
|
|
8934
9281
|
var popover_component = normalizeComponent(
|
|
8935
9282
|
popover_popovervue_type_script_lang_js_,
|
|
8936
|
-
|
|
8937
|
-
|
|
9283
|
+
popovervue_type_template_id_eb03c67c_render,
|
|
9284
|
+
popovervue_type_template_id_eb03c67c_staticRenderFns,
|
|
8938
9285
|
false,
|
|
8939
9286
|
null,
|
|
8940
9287
|
null,
|
|
@@ -9182,7 +9529,7 @@ const LIST_ITEM_NAVIGATION_TYPES = {
|
|
|
9182
9529
|
},
|
|
9183
9530
|
|
|
9184
9531
|
getItemId(i) {
|
|
9185
|
-
return
|
|
9532
|
+
return "".concat(this.listId, "-item").concat(i);
|
|
9186
9533
|
},
|
|
9187
9534
|
|
|
9188
9535
|
afterHighlight() {
|
|
@@ -9225,8 +9572,8 @@ const LIST_ITEM_NAVIGATION_TYPES = {
|
|
|
9225
9572
|
|
|
9226
9573
|
var dropdown_component = normalizeComponent(
|
|
9227
9574
|
dropdown_dropdownvue_type_script_lang_js_,
|
|
9228
|
-
|
|
9229
|
-
|
|
9575
|
+
dropdownvue_type_template_id_479a72d0_render,
|
|
9576
|
+
dropdownvue_type_template_id_479a72d0_staticRenderFns,
|
|
9230
9577
|
false,
|
|
9231
9578
|
null,
|
|
9232
9579
|
null,
|
|
@@ -9237,7 +9584,7 @@ var dropdown_component = normalizeComponent(
|
|
|
9237
9584
|
/* harmony default export */ var dropdown = (dropdown_component.exports);
|
|
9238
9585
|
// CONCATENATED MODULE: ./components/dropdown/index.js
|
|
9239
9586
|
|
|
9240
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9587
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
9241
9588
|
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:[
|
|
9242
9589
|
'base-input__label-text',
|
|
9243
9590
|
'd-label',
|
|
@@ -9271,7 +9618,7 @@ const INPUT_SIZES = {
|
|
|
9271
9618
|
INPUT_TYPES,
|
|
9272
9619
|
INPUT_SIZES
|
|
9273
9620
|
});
|
|
9274
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
9621
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
9275
9622
|
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){
|
|
9276
9623
|
var message = ref.message;
|
|
9277
9624
|
var type = ref.type;
|
|
@@ -9381,7 +9728,7 @@ function validationMessageValidator(rawMessages) {
|
|
|
9381
9728
|
},
|
|
9382
9729
|
methods: {
|
|
9383
9730
|
getMessageKey(type, index) {
|
|
9384
|
-
return
|
|
9731
|
+
return "validation-message-".concat(type, "-").concat(index, "-").concat(this.id);
|
|
9385
9732
|
},
|
|
9386
9733
|
|
|
9387
9734
|
messageTypeClass(type) {
|
|
@@ -9724,7 +10071,7 @@ const GroupableMixin = {
|
|
|
9724
10071
|
const reactiveGroupName = (_this$groupContext5 = this.groupContext) === null || _this$groupContext5 === void 0 ? void 0 : _this$groupContext5.name;
|
|
9725
10072
|
|
|
9726
10073
|
if (!!this.name && hasGroupName && reactiveGroupName !== this.name) {
|
|
9727
|
-
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 ' +
|
|
10074
|
+
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);
|
|
9728
10075
|
}
|
|
9729
10076
|
}
|
|
9730
10077
|
|
|
@@ -10008,7 +10355,7 @@ const MessagesMixin = {
|
|
|
10008
10355
|
},
|
|
10009
10356
|
|
|
10010
10357
|
descriptionKey() {
|
|
10011
|
-
return
|
|
10358
|
+
return "input-description-".concat(getUniqueString());
|
|
10012
10359
|
},
|
|
10013
10360
|
|
|
10014
10361
|
inputState() {
|
|
@@ -10106,7 +10453,7 @@ const MessagesMixin = {
|
|
|
10106
10453
|
},
|
|
10107
10454
|
|
|
10108
10455
|
getMessageKey(type, index) {
|
|
10109
|
-
return
|
|
10456
|
+
return "message-".concat(type, "-").concat(index);
|
|
10110
10457
|
}
|
|
10111
10458
|
|
|
10112
10459
|
}
|
|
@@ -10136,7 +10483,7 @@ var input_component = normalizeComponent(
|
|
|
10136
10483
|
// CONCATENATED MODULE: ./components/input/index.js
|
|
10137
10484
|
|
|
10138
10485
|
|
|
10139
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10486
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
10140
10487
|
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)}
|
|
10141
10488
|
var input_groupvue_type_template_id_34acc7c9_staticRenderFns = []
|
|
10142
10489
|
|
|
@@ -10402,7 +10749,7 @@ const InputGroupMixin = {
|
|
|
10402
10749
|
},
|
|
10403
10750
|
methods: {
|
|
10404
10751
|
getMessageKey(type, index) {
|
|
10405
|
-
return
|
|
10752
|
+
return "input-group-message-".concat(type, "-").concat(index, "-").concat(this.id);
|
|
10406
10753
|
}
|
|
10407
10754
|
|
|
10408
10755
|
}
|
|
@@ -10431,16 +10778,16 @@ var input_group_component = normalizeComponent(
|
|
|
10431
10778
|
/* harmony default export */ var input_group_input_group = (input_group_component.exports);
|
|
10432
10779
|
// CONCATENATED MODULE: ./components/input_group/index.js
|
|
10433
10780
|
|
|
10434
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10435
|
-
var
|
|
10781
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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=7ff5e048&
|
|
10782
|
+
var modalvue_type_template_id_7ff5e048_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-lazy-show',{class:[
|
|
10436
10783
|
'd-modal',
|
|
10437
10784
|
_vm.MODAL_KIND_MODIFIERS[_vm.kind],
|
|
10438
10785
|
_vm.MODAL_SIZE_MODIFIERS[_vm.size],
|
|
10439
|
-
_vm.modalClass ],attrs:{"transition":"d-zoom","show":_vm.show,"data-qa":"dt-modal","aria-hidden":_vm.open},on:{"click":function($event){if($event.target !== $event.currentTarget){ return null; }return _vm.close($event)},"keydown":[function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"esc",27,$event.key,["Esc","Escape"])){ return null; }return _vm.close($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"tab",9,$event.key,"Tab")){ return null; }return _vm.trapFocus($event)}],"after-enter":function($event){if($event.target !== $event.currentTarget){ return null; }return _vm.setFocusAfterTransition($event)}}},[_c('transition',{attrs:{"appear":"","name":"d-modal__dialog"}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.show),expression:"show"}],
|
|
10440
|
-
var
|
|
10786
|
+
_vm.modalClass ],attrs:{"transition":"d-zoom","show":_vm.show,"data-qa":"dt-modal","aria-hidden":_vm.open},on:{"click":function($event){if($event.target !== $event.currentTarget){ return null; }return _vm.close($event)},"keydown":[function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"esc",27,$event.key,["Esc","Escape"])){ return null; }return _vm.close($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"tab",9,$event.key,"Tab")){ return null; }return _vm.trapFocus($event)}],"after-enter":function($event){if($event.target !== $event.currentTarget){ return null; }return _vm.setFocusAfterTransition($event)}}},[_c('transition',{attrs:{"appear":"","name":"d-modal__dialog"}},[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.show),expression:"show"}],class:['d-modal__dialog', _vm.dialogClass],attrs:{"role":"dialog","aria-modal":"true","aria-describedby":_vm.describedById,"aria-labelledby":_vm.labelledById}},[(_vm.$slots.header)?_c('div',{staticClass:"d-modal__header",attrs:{"id":_vm.labelledById,"data-qa":"dt-modal-title"}},[_vm._t("header")],2):_c('h2',{staticClass:"d-modal__header",attrs:{"id":_vm.labelledById,"data-qa":"dt-modal-title"}},[_vm._v(" "+_vm._s(_vm.title)+" ")]),(_vm.$slots.default)?_c('div',{staticClass:"d-modal__content",attrs:{"data-qa":"dt-modal-copy"}},[_vm._t("default")],2):_c('p',{staticClass:"d-modal__content",attrs:{"data-qa":"dt-modal-copy"}},[_vm._v(" "+_vm._s(_vm.copy)+" ")]),(_vm.hasFooterSlot)?_c('footer',{staticClass:"d-modal__footer"},[_vm._t("footer")],2):_vm._e(),(!_vm.hideClose)?_c('dt-button',_vm._b({staticClass:"d-modal__close",attrs:{"circle":"","size":"lg","importance":"clear","aria-label":_vm.closeButtonProps.ariaLabel,"kind":_vm.kind},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()],1)])],1)}
|
|
10787
|
+
var modalvue_type_template_id_7ff5e048_staticRenderFns = []
|
|
10441
10788
|
|
|
10442
10789
|
|
|
10443
|
-
// CONCATENATED MODULE: ./components/modal/modal.vue?vue&type=template&id=
|
|
10790
|
+
// CONCATENATED MODULE: ./components/modal/modal.vue?vue&type=template&id=7ff5e048&
|
|
10444
10791
|
|
|
10445
10792
|
// CONCATENATED MODULE: ./components/modal/modal_constants.js
|
|
10446
10793
|
// Modal style modifiers
|
|
@@ -10648,6 +10995,16 @@ const MODAL_SIZE_MODIFIERS = {
|
|
|
10648
10995
|
default: ''
|
|
10649
10996
|
},
|
|
10650
10997
|
|
|
10998
|
+
/**
|
|
10999
|
+
* Additional class name for the dialog element within the modal.
|
|
11000
|
+
* Can accept all of String, Object, and Array, i.e. has the
|
|
11001
|
+
* same api as Vue's built-in handling of the class attribute.
|
|
11002
|
+
*/
|
|
11003
|
+
dialogClass: {
|
|
11004
|
+
type: [String, Object, Array],
|
|
11005
|
+
default: ''
|
|
11006
|
+
},
|
|
11007
|
+
|
|
10651
11008
|
/**
|
|
10652
11009
|
* Hides the close button on the modal
|
|
10653
11010
|
*/
|
|
@@ -10667,7 +11024,7 @@ const MODAL_SIZE_MODIFIERS = {
|
|
|
10667
11024
|
|
|
10668
11025
|
computed: {
|
|
10669
11026
|
open() {
|
|
10670
|
-
return
|
|
11027
|
+
return "".concat(!this.show);
|
|
10671
11028
|
},
|
|
10672
11029
|
|
|
10673
11030
|
hasFooterSlot() {
|
|
@@ -10723,8 +11080,8 @@ const MODAL_SIZE_MODIFIERS = {
|
|
|
10723
11080
|
|
|
10724
11081
|
var modal_component = normalizeComponent(
|
|
10725
11082
|
modal_modalvue_type_script_lang_js_,
|
|
10726
|
-
|
|
10727
|
-
|
|
11083
|
+
modalvue_type_template_id_7ff5e048_render,
|
|
11084
|
+
modalvue_type_template_id_7ff5e048_staticRenderFns,
|
|
10728
11085
|
false,
|
|
10729
11086
|
null,
|
|
10730
11087
|
null,
|
|
@@ -10738,7 +11095,7 @@ var modal_component = normalizeComponent(
|
|
|
10738
11095
|
|
|
10739
11096
|
// CONCATENATED MODULE: ./components/lazy_show/index.js
|
|
10740
11097
|
|
|
10741
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11098
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
10742
11099
|
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',
|
|
10743
11100
|
{ '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)])}
|
|
10744
11101
|
var list_sectionvue_type_template_id_0285311e_staticRenderFns = []
|
|
@@ -10922,17 +11279,17 @@ var list_section_component = normalizeComponent(
|
|
|
10922
11279
|
/* harmony default export */ var list_section = (list_section_component.exports);
|
|
10923
11280
|
// CONCATENATED MODULE: ./components/list_section/index.js
|
|
10924
11281
|
|
|
10925
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10926
|
-
var
|
|
11282
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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=7af801f2&
|
|
11283
|
+
var list_itemvue_type_template_id_7af801f2_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', {
|
|
10927
11284
|
'dt-list-item--focusable': _vm.isFocusable,
|
|
10928
11285
|
'dt-list-item--highlighted': _vm.isHighlighted,
|
|
10929
11286
|
}],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)}
|
|
10930
|
-
var
|
|
11287
|
+
var list_itemvue_type_template_id_7af801f2_staticRenderFns = []
|
|
10931
11288
|
|
|
10932
11289
|
|
|
10933
|
-
// CONCATENATED MODULE: ./components/list_item/list_item.vue?vue&type=template&id=
|
|
11290
|
+
// CONCATENATED MODULE: ./components/list_item/list_item.vue?vue&type=template&id=7af801f2&
|
|
10934
11291
|
|
|
10935
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11292
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
10936
11293
|
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()])}
|
|
10937
11294
|
var default_list_itemvue_type_template_id_42285ca2_staticRenderFns = []
|
|
10938
11295
|
|
|
@@ -11209,8 +11566,8 @@ var list_itemvue_type_style_index_0_lang_less_ = __webpack_require__("51f5");
|
|
|
11209
11566
|
|
|
11210
11567
|
var list_item_component = normalizeComponent(
|
|
11211
11568
|
list_item_list_itemvue_type_script_lang_js_,
|
|
11212
|
-
|
|
11213
|
-
|
|
11569
|
+
list_itemvue_type_template_id_7af801f2_render,
|
|
11570
|
+
list_itemvue_type_template_id_7af801f2_staticRenderFns,
|
|
11214
11571
|
false,
|
|
11215
11572
|
null,
|
|
11216
11573
|
null,
|
|
@@ -11221,7 +11578,7 @@ var list_item_component = normalizeComponent(
|
|
|
11221
11578
|
/* harmony default export */ var list_item = (list_item_component.exports);
|
|
11222
11579
|
// CONCATENATED MODULE: ./components/list_item/index.js
|
|
11223
11580
|
|
|
11224
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11581
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
11225
11582
|
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)}
|
|
11226
11583
|
var noticevue_type_template_id_4b03fec7_staticRenderFns = []
|
|
11227
11584
|
|
|
@@ -11401,7 +11758,7 @@ var notice_component = normalizeComponent(
|
|
|
11401
11758
|
// CONCATENATED MODULE: ./components/notice/index.js
|
|
11402
11759
|
|
|
11403
11760
|
|
|
11404
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11761
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
11405
11762
|
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)])])}
|
|
11406
11763
|
var radiovue_type_template_id_7516bd14_staticRenderFns = []
|
|
11407
11764
|
|
|
@@ -11633,7 +11990,7 @@ var radio_component = normalizeComponent(
|
|
|
11633
11990
|
},
|
|
11634
11991
|
|
|
11635
11992
|
getMessageKey(type, index) {
|
|
11636
|
-
return
|
|
11993
|
+
return "radio-group-message-".concat(type, "-").concat(index, "-").concat(this.id);
|
|
11637
11994
|
}
|
|
11638
11995
|
|
|
11639
11996
|
}
|
|
@@ -11662,7 +12019,7 @@ var radio_group_component = normalizeComponent(
|
|
|
11662
12019
|
/* harmony default export */ var radio_group = (radio_group_component.exports);
|
|
11663
12020
|
// CONCATENATED MODULE: ./components/radio_group/index.js
|
|
11664
12021
|
|
|
11665
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12022
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
11666
12023
|
var tab_groupvue_type_template_id_59d36f62_render = function () {
|
|
11667
12024
|
var _obj;
|
|
11668
12025
|
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:[
|
|
@@ -11943,7 +12300,7 @@ const TAB_IMPORTANCE_MODIFIERS = {
|
|
|
11943
12300
|
},
|
|
11944
12301
|
|
|
11945
12302
|
getIndexAndTabs() {
|
|
11946
|
-
const index = this.tabs.findIndex(context => this.focusId ? context.id ===
|
|
12303
|
+
const index = this.tabs.findIndex(context => this.focusId ? context.id === "".concat(this.focusId) : context.isSelected);
|
|
11947
12304
|
return {
|
|
11948
12305
|
tabs: this.tabs,
|
|
11949
12306
|
index
|
|
@@ -11988,7 +12345,7 @@ var tab_group_component = normalizeComponent(
|
|
|
11988
12345
|
)
|
|
11989
12346
|
|
|
11990
12347
|
/* harmony default export */ var tab_group = (tab_group_component.exports);
|
|
11991
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12348
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
11992
12349
|
var tabvue_type_template_id_0bc212ec_render = function () {
|
|
11993
12350
|
var _obj;
|
|
11994
12351
|
var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-button',_vm._b({class:[
|
|
@@ -12141,7 +12498,7 @@ var tab_component = normalizeComponent(
|
|
|
12141
12498
|
)
|
|
12142
12499
|
|
|
12143
12500
|
/* harmony default export */ var tab = (tab_component.exports);
|
|
12144
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12501
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
12145
12502
|
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:[
|
|
12146
12503
|
{
|
|
12147
12504
|
'd-d-none': _vm.hidePanel,
|
|
@@ -12243,7 +12600,7 @@ var tab_panel_component = normalizeComponent(
|
|
|
12243
12600
|
|
|
12244
12601
|
|
|
12245
12602
|
|
|
12246
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12603
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
12247
12604
|
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()])])}
|
|
12248
12605
|
var checkboxvue_type_template_id_86d051ec_staticRenderFns = []
|
|
12249
12606
|
|
|
@@ -12538,7 +12895,7 @@ var checkbox_component = normalizeComponent(
|
|
|
12538
12895
|
},
|
|
12539
12896
|
|
|
12540
12897
|
getMessageKey(type, index) {
|
|
12541
|
-
return
|
|
12898
|
+
return "checkbox-group-message-".concat(type, "-").concat(index, "-").concat(this.id);
|
|
12542
12899
|
}
|
|
12543
12900
|
|
|
12544
12901
|
}
|
|
@@ -12567,7 +12924,7 @@ var checkbox_group_component = normalizeComponent(
|
|
|
12567
12924
|
/* harmony default export */ var checkbox_group = (checkbox_group_component.exports);
|
|
12568
12925
|
// CONCATENATED MODULE: ./components/checkbox_group/index.js
|
|
12569
12926
|
|
|
12570
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12927
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
12571
12928
|
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:[
|
|
12572
12929
|
'd-label',
|
|
12573
12930
|
_vm.LABEL_SIZE_MODIFIERS[_vm.size],
|
|
@@ -12878,7 +13235,7 @@ const optionsValidator = options => {
|
|
|
12878
13235
|
},
|
|
12879
13236
|
|
|
12880
13237
|
descriptionKey() {
|
|
12881
|
-
return
|
|
13238
|
+
return "select-".concat(this.selectKey, "-description");
|
|
12882
13239
|
},
|
|
12883
13240
|
|
|
12884
13241
|
labelAriaDetails() {
|
|
@@ -12906,7 +13263,7 @@ const optionsValidator = options => {
|
|
|
12906
13263
|
},
|
|
12907
13264
|
|
|
12908
13265
|
getOptionKey(value) {
|
|
12909
|
-
return
|
|
13266
|
+
return "select-".concat(this.selectKey, "-option-").concat(value);
|
|
12910
13267
|
},
|
|
12911
13268
|
|
|
12912
13269
|
validateOptionsPresence() {
|
|
@@ -12944,7 +13301,7 @@ var select_menu_component = normalizeComponent(
|
|
|
12944
13301
|
// CONCATENATED MODULE: ./components/select_menu/index.js
|
|
12945
13302
|
|
|
12946
13303
|
|
|
12947
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13304
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
12948
13305
|
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:[
|
|
12949
13306
|
'd-toast',
|
|
12950
13307
|
_vm.kindClass,
|
|
@@ -13195,14 +13552,14 @@ var toast_component = normalizeComponent(
|
|
|
13195
13552
|
// CONCATENATED MODULE: ./components/toast/index.js
|
|
13196
13553
|
|
|
13197
13554
|
|
|
13198
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13555
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13199
13556
|
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)}
|
|
13200
13557
|
var skeletonvue_type_template_id_293e767b_staticRenderFns = []
|
|
13201
13558
|
|
|
13202
13559
|
|
|
13203
13560
|
// CONCATENATED MODULE: ./components/skeleton/skeleton.vue?vue&type=template&id=293e767b&
|
|
13204
13561
|
|
|
13205
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13562
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13206
13563
|
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:[
|
|
13207
13564
|
'skeleton-placeholder',
|
|
13208
13565
|
_vm.SKELETON_SHAPES[_vm.shape],
|
|
@@ -13271,8 +13628,8 @@ const SKELETON_HEADING_HEIGHTS = {
|
|
|
13271
13628
|
|
|
13272
13629
|
const animationDelay = this.skeletonOffset * SKELETON_RIPPLE_DURATION / 1000;
|
|
13273
13630
|
const animationDuration = this.animationDuration === -1 ? 1000 : this.animationDuration;
|
|
13274
|
-
style.animationDelay =
|
|
13275
|
-
style.animationDuration =
|
|
13631
|
+
style.animationDelay = "".concat(animationDelay, "ms");
|
|
13632
|
+
style.animationDuration = "".concat(animationDuration, "ms");
|
|
13276
13633
|
return style;
|
|
13277
13634
|
}
|
|
13278
13635
|
|
|
@@ -13369,7 +13726,7 @@ var skeleton_shape_component = normalizeComponent(
|
|
|
13369
13726
|
)
|
|
13370
13727
|
|
|
13371
13728
|
/* harmony default export */ var skeleton_shape = (skeleton_shape_component.exports);
|
|
13372
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13729
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13373
13730
|
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:[
|
|
13374
13731
|
'd-d-flex',
|
|
13375
13732
|
{
|
|
@@ -13381,7 +13738,7 @@ var skeleton_list_itemvue_type_template_id_550b8bfc_staticRenderFns = []
|
|
|
13381
13738
|
|
|
13382
13739
|
// CONCATENATED MODULE: ./components/skeleton/skeleton-list-item.vue?vue&type=template&id=550b8bfc&
|
|
13383
13740
|
|
|
13384
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13741
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13385
13742
|
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:[
|
|
13386
13743
|
'd-w100p',
|
|
13387
13744
|
_vm.contentClass ],attrs:{"contentClass":"","data-qa":"skeleton-paragraph"}},_vm._l((_vm.integerRows),function(row){return _c('dt-skeleton-text',{key:row,class:[
|
|
@@ -13393,7 +13750,7 @@ var skeleton_paragraphvue_type_template_id_5c1bdf76_staticRenderFns = []
|
|
|
13393
13750
|
|
|
13394
13751
|
// CONCATENATED MODULE: ./components/skeleton/skeleton-paragraph.vue?vue&type=template&id=5c1bdf76&
|
|
13395
13752
|
|
|
13396
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13753
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13397
13754
|
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:[
|
|
13398
13755
|
'd-h8',
|
|
13399
13756
|
'd-bar2',
|
|
@@ -13615,7 +13972,7 @@ const validator = number => number !== '' && !Number.isNaN(Number(number));
|
|
|
13615
13972
|
randomWidthPercentage() {
|
|
13616
13973
|
const min = Math.min(this.minWidth, this.maxWidth);
|
|
13617
13974
|
const max = Math.max(this.minWidth, this.maxWidth);
|
|
13618
|
-
return
|
|
13975
|
+
return "".concat(Math.round(Math.random() * (max - min)) + min, "%");
|
|
13619
13976
|
},
|
|
13620
13977
|
|
|
13621
13978
|
getSizeParagraphRow(row) {
|
|
@@ -13871,7 +14228,7 @@ var skeleton_list_item_component = normalizeComponent(
|
|
|
13871
14228
|
const filtered = Object.entries(this.validationOptions).filter(([_, option]) => option);
|
|
13872
14229
|
|
|
13873
14230
|
if (filtered.length >= 2) {
|
|
13874
|
-
const errorMessage =
|
|
14231
|
+
const errorMessage = "Use only one of ".concat(filtered.map(([key]) => key).join(' | '), " options at the same time");
|
|
13875
14232
|
console.error(errorMessage);
|
|
13876
14233
|
}
|
|
13877
14234
|
}
|
|
@@ -13911,7 +14268,7 @@ var skeleton_component = normalizeComponent(
|
|
|
13911
14268
|
|
|
13912
14269
|
|
|
13913
14270
|
|
|
13914
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14271
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13915
14272
|
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:[
|
|
13916
14273
|
'd-d-inline-flex',
|
|
13917
14274
|
'd-ff-custom',
|
|
@@ -13934,7 +14291,7 @@ var keyboard_shortcutvue_type_template_id_42a36d1f_staticRenderFns = []
|
|
|
13934
14291
|
|
|
13935
14292
|
// CONCATENATED MODULE: ./components/keyboard_shortcut/keyboard_shortcut.vue?vue&type=template&id=42a36d1f&
|
|
13936
14293
|
|
|
13937
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14294
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13938
14295
|
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"}})])}
|
|
13939
14296
|
var IconWindowsvue_type_template_id_799d0e52_staticRenderFns = []
|
|
13940
14297
|
|
|
@@ -13960,7 +14317,7 @@ var IconWindows_component = normalizeComponent(
|
|
|
13960
14317
|
)
|
|
13961
14318
|
|
|
13962
14319
|
/* harmony default export */ var IconWindows = (IconWindows_component.exports);
|
|
13963
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14320
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13964
14321
|
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"}})])}
|
|
13965
14322
|
var IconAddvue_type_template_id_37aa578e_staticRenderFns = []
|
|
13966
14323
|
|
|
@@ -13986,7 +14343,7 @@ var IconAdd_component = normalizeComponent(
|
|
|
13986
14343
|
)
|
|
13987
14344
|
|
|
13988
14345
|
/* harmony default export */ var IconAdd = (IconAdd_component.exports);
|
|
13989
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14346
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
13990
14347
|
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"}})])}
|
|
13991
14348
|
var IconArrowDownwardvue_type_template_id_3615192c_staticRenderFns = []
|
|
13992
14349
|
|
|
@@ -14012,7 +14369,7 @@ var IconArrowDownward_component = normalizeComponent(
|
|
|
14012
14369
|
)
|
|
14013
14370
|
|
|
14014
14371
|
/* harmony default export */ var IconArrowDownward = (IconArrowDownward_component.exports);
|
|
14015
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14372
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
14016
14373
|
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"}})])}
|
|
14017
14374
|
var IconArrowUpwardvue_type_template_id_10122176_staticRenderFns = []
|
|
14018
14375
|
|
|
@@ -14038,7 +14395,7 @@ var IconArrowUpward_component = normalizeComponent(
|
|
|
14038
14395
|
)
|
|
14039
14396
|
|
|
14040
14397
|
/* harmony default export */ var IconArrowUpward = (IconArrowUpward_component.exports);
|
|
14041
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14398
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
14042
14399
|
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"}})])}
|
|
14043
14400
|
var IconArrowForwardvue_type_template_id_24d9c0d4_staticRenderFns = []
|
|
14044
14401
|
|
|
@@ -14064,7 +14421,7 @@ var IconArrowForward_component = normalizeComponent(
|
|
|
14064
14421
|
)
|
|
14065
14422
|
|
|
14066
14423
|
/* harmony default export */ var IconArrowForward = (IconArrowForward_component.exports);
|
|
14067
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
14424
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"11d9be20-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&
|
|
14068
14425
|
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"}})])}
|
|
14069
14426
|
var IconArrowBackwardsvue_type_template_id_422cf4b0_staticRenderFns = []
|
|
14070
14427
|
|
|
@@ -14105,7 +14462,7 @@ const SHORTCUTS_ICON_ALIASES = {
|
|
|
14105
14462
|
const SHORTCUTS_ICON_SEPARATOR = {
|
|
14106
14463
|
'{plus}': 'IconAdd'
|
|
14107
14464
|
};
|
|
14108
|
-
const SHORTCUTS_ALIASES_LIST = Object.keys(SHORTCUTS_ALIASES).map(key =>
|
|
14465
|
+
const SHORTCUTS_ALIASES_LIST = Object.keys(SHORTCUTS_ALIASES).map(key => "{".concat(key, "}")).concat(Object.keys(SHORTCUTS_ICON_ALIASES));
|
|
14109
14466
|
// 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&
|
|
14110
14467
|
//
|
|
14111
14468
|
//
|
|
@@ -14223,7 +14580,7 @@ const SHORTCUTS_ALIASES_LIST = Object.keys(SHORTCUTS_ALIASES).map(key => `{${key
|
|
|
14223
14580
|
'{win} + D K + {win}' returned value will be [{win}, ' ', '{plus}', ' D K ', '{plus}', ' ', {win}]
|
|
14224
14581
|
*/
|
|
14225
14582
|
|
|
14226
|
-
const regex = new RegExp(
|
|
14583
|
+
const regex = new RegExp("(".concat(iconAliasString, ")"), 'gi');
|
|
14227
14584
|
return this.formattedShortcut.split(regex).filter(Boolean);
|
|
14228
14585
|
}
|
|
14229
14586
|
|