@dialpad/dialtone-vue 2.100.0 → 2.101.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.
@@ -1620,7 +1620,7 @@ var Us = function() {
1620
1620
  return n("a", e._g({ class: [
1621
1621
  "d-link",
1622
1622
  e.LINK_KIND_MODIFIERS[e.kind]
1623
- ], attrs: { "data-qa": "dt-link" } }, e.$listeners), [e._t("default")], 2);
1623
+ ], attrs: { "data-qa": "dt-link", href: "href" in e.$attrs ? e.$attrs.href : "javascript:void(0)" } }, e.$listeners), [e._t("default")], 2);
1624
1624
  }, zs = [], Ks = /* @__PURE__ */ h(
1625
1625
  Ws,
1626
1626
  Us,
@@ -9895,7 +9895,8 @@ var mp = function() {
9895
9895
  const Ag = vp.exports, Wa = {
9896
9896
  LEFT: "left",
9897
9897
  RIGHT: "right"
9898
- }, _p = ["sm", "md", "lg", null], bp = {
9898
+ }, _p = ["sm", "md", "lg", null];
9899
+ const bp = {
9899
9900
  name: "DtRootLayout",
9900
9901
  props: {
9901
9902
  /**
@@ -9921,13 +9922,6 @@ const Ag = vp.exports, Wa = {
9921
9922
  type: String,
9922
9923
  default: "64px"
9923
9924
  },
9924
- /**
9925
- * Additional class name for the body
9926
- */
9927
- bodyClass: {
9928
- type: [String, Array, Object],
9929
- default: ""
9930
- },
9931
9925
  /**
9932
9926
  * Scroll the header with the page
9933
9927
  * @values true, false
@@ -9951,8 +9945,7 @@ const Ag = vp.exports, Wa = {
9951
9945
  default: ""
9952
9946
  },
9953
9947
  /**
9954
- * The width of the sidebar
9955
- * Possible units rem|px|%|em
9948
+ * DEPRECATED: set the min-width of the inner element instead.
9956
9949
  */
9957
9950
  sidebarWidth: {
9958
9951
  type: String,
@@ -9993,21 +9986,22 @@ const Ag = vp.exports, Wa = {
9993
9986
  }
9994
9987
  },
9995
9988
  computed: {
9996
- responsiveClass() {
9997
- if (this.responsiveBreakpoint)
9998
- return `d-root-layout__responsive--${this.responsiveBreakpoint}`;
9999
- },
10000
- bodyClasses() {
10001
- return [
10002
- this.bodyClass,
10003
- { "d-root-layout__body--invert": this.sidebarPosition === Wa.RIGHT }
10004
- ];
9989
+ isInverted() {
9990
+ return this.sidebarPosition === Wa.RIGHT;
10005
9991
  }
10006
9992
  }
10007
9993
  };
10008
9994
  var yp = function() {
10009
9995
  var e = this, n = e._self._c;
10010
- return n("div", { class: ["root-layout d-root-layout", { "d-root-layout--fixed": e.fixed }, e.responsiveClass], attrs: { "data-qa": "dt-root-layout" } }, [n("header", { class: ["d-root-layout__header", { "d-root-layout__header--sticky": e.headerSticky }, e.headerClass], attrs: { "data-qa": "dt-root-layout-header" } }, [e._t("header")], 2), n("div", { ref: "root-layout-body", class: ["d-root-layout__body", e.bodyClasses], attrs: { "data-qa": "dt-root-layout-body" } }, [n("aside", { ref: "root-layout-sidebar", class: ["d-root-layout__sidebar", { "d-root-layout__sidebar--sticky": e.fixed }, e.sidebarClass], style: { "flex-basis": e.sidebarWidth }, attrs: { "data-qa": "dt-root-layout-sidebar" } }, [e._t("sidebar")], 2), n("main", { ref: "root-layout-content", class: ["d-root-layout__content", e.contentClass], attrs: { "data-qa": "dt-root-layout-content", tabindex: "0" } }, [e._t("default")], 2)]), n("footer", { class: ["d-root-layout__footer", e.footerClass], attrs: { "data-qa": "dt-root-layout-footer" } }, [e._t("footer")], 2)]);
9996
+ return n("div", { class: [
9997
+ "root-layout",
9998
+ "d-root-layout",
9999
+ {
10000
+ "d-root-layout--fixed": e.fixed,
10001
+ "d-root-layout--inverted": e.isInverted,
10002
+ [`d-root-layout__responsive--${e.responsiveBreakpoint}`]: !!e.responsiveBreakpoint
10003
+ }
10004
+ ], attrs: { "data-qa": "dt-root-layout" } }, [n("header", { class: ["d-root-layout__header", { "d-root-layout__header--sticky": e.headerSticky }, e.headerClass], attrs: { "data-qa": "dt-root-layout-header" } }, [e._t("header")], 2), n("aside", { ref: "root-layout-sidebar", class: ["d-root-layout__sidebar", e.sidebarClass], attrs: { "data-qa": "dt-root-layout-sidebar" } }, [e._t("sidebar")], 2), n("main", { ref: "root-layout-content", class: ["d-root-layout__content", e.contentClass], attrs: { "data-qa": "dt-root-layout-content", tabindex: "0" } }, [e._t("default")], 2), n("footer", { class: ["d-root-layout__footer", e.footerClass], attrs: { "data-qa": "dt-root-layout-footer" } }, [e._t("footer")], 2)]);
10011
10005
  }, wp = [], Sp = /* @__PURE__ */ h(
10012
10006
  bp,
10013
10007
  yp,
@@ -12648,7 +12642,7 @@ const jg = $h.exports, ii = ["sm", "md", "lg", "xl"];
12648
12642
  const Lh = {
12649
12643
  name: "DtRecipeCallbarButton",
12650
12644
  components: { DtButton: G, DtTooltip: Kn },
12651
- inheritAttrs: !0,
12645
+ inheritAttrs: !1,
12652
12646
  props: {
12653
12647
  /**
12654
12648
  * Id for the item.
@@ -12778,13 +12772,21 @@ const Lh = {
12778
12772
  },
12779
12773
  buttonImportance() {
12780
12774
  return this.importance ? this.importance : this.circle ? "outlined" : "clear";
12775
+ },
12776
+ callbarButtonListeners() {
12777
+ return {
12778
+ ...this.$listeners,
12779
+ click: (t) => this.$emit("click", t)
12780
+ };
12781
12781
  }
12782
12782
  }
12783
12783
  };
12784
12784
  var Ah = function() {
12785
12785
  var e = this, n = e._self._c;
12786
12786
  return n("dt-tooltip", { attrs: { id: e.id, offset: [0, 8] }, scopedSlots: e._u([{ key: "anchor", fn: function() {
12787
- return [n("span", { class: { "d-c-not-allowed": e.disabled } }, [n("dt-button", e._g({ class: e.callbarButtonClass, attrs: { importance: e.buttonImportance, kind: "muted", "icon-position": "top", "aria-disabled": e.disabled, "aria-label": e.ariaLabel, "label-class": e.callbarButtonTextClass, width: e.buttonWidth } }, e.$listeners), [e._t("default"), e._t("icon", null, { slot: "icon" })], 2)], 1)];
12787
+ return [n("span", { class: { "d-c-not-allowed": e.disabled } }, [n("dt-button", e._g(e._b({ class: e.callbarButtonClass, attrs: { importance: e.buttonImportance, kind: "muted", "icon-position": "top", "aria-disabled": e.disabled, "aria-label": e.ariaLabel, "label-class": e.callbarButtonTextClass, width: e.buttonWidth }, scopedSlots: e._u([{ key: "icon", fn: function() {
12788
+ return [e._t("icon")];
12789
+ }, proxy: !0 }], null, !0) }, "dt-button", e.$attrs, !1), e.callbarButtonListeners), [e._t("default")], 2)], 1)];
12788
12790
  }, proxy: !0 }], null, !0) }, [e._t("tooltip")], 2);
12789
12791
  }, Rh = [], Ph = /* @__PURE__ */ h(
12790
12792
  Lh,
@@ -13776,7 +13778,7 @@ var xm = function() {
13776
13778
  return [n("dt-emoji-text-wrapper", { staticClass: "dt-leftbar-row__description", attrs: { "data-qa": "dt-leftbar-row-description", size: "200" } }, [e._v(" " + e._s(e.description) + " ")])];
13777
13779
  })], 2)]), e.hasActions ? n("div", { staticClass: "dt-leftbar-row__omega" }, [e.dndText ? n("dt-tooltip", { attrs: { placement: "top", message: e.dndTextTooltip }, scopedSlots: e._u([{ key: "anchor", fn: function() {
13778
13780
  return [n("div", { ref: "dt-leftbar-row-dnd", staticClass: "dt-leftbar-row__dnd", attrs: { "data-qa": "dt-leftbar-row-dnd" } }, [e._v(" " + e._s(e.dndText) + " ")])];
13779
- }, proxy: !0 }], null, !1, 490758222) }) : e._e(), e.activeVoiceChat ? n("div", { staticClass: "dt-leftbar-row__active-voice" }, [n("dt-icon", { attrs: { size: "300", name: "activity" } })], 1) : e.showUnreadCount ? n("dt-tooltip", { attrs: { message: e.unreadCountTooltip, placement: "top" }, scopedSlots: e._u([{ key: "anchor", fn: function() {
13781
+ }, proxy: !0 }], null, !1, 490758222) }) : e._e(), e.activeVoiceChat ? n("div", { staticClass: "dt-leftbar-row__active-voice" }, [n("dt-icon", { attrs: { size: "300", name: "waveform" } })], 1) : e.showUnreadCount ? n("dt-tooltip", { attrs: { message: e.unreadCountTooltip, placement: "top" }, scopedSlots: e._u([{ key: "anchor", fn: function() {
13780
13782
  return [n("dt-badge", { staticClass: "dt-leftbar-row__unread-badge", attrs: { kind: "count", type: "bulletin", "data-qa": "dt-leftbar-row-unread-badge" } }, [e._v(" " + e._s(e.unreadCount) + " ")])];
13781
13783
  }, proxy: !0 }], null, !1, 462525554) }) : e._e(), e.hasCallButton ? n("div", { staticClass: "dt-leftbar-row__action", attrs: { "data-qa": "dt-leftbar-row-action" } }, [n("dt-tooltip", { attrs: { message: e.callButtonTooltip, placement: "top" }, scopedSlots: e._u([{ key: "anchor", fn: function() {
13782
13784
  return [n("dt-button", { staticClass: "dt-leftbar-row__action-button", attrs: { "data-qa": "dt-leftbar-row-action-call-button", circle: !0, size: "xs", kind: "inverted", "aria-label": e.callButtonTooltip }, on: { focus: function(a) {
@@ -13795,7 +13797,7 @@ var xm = function() {
13795
13797
  Om,
13796
13798
  !1,
13797
13799
  null,
13798
- "be4d0e3f",
13800
+ "8577d0d5",
13799
13801
  null,
13800
13802
  null
13801
13803
  );
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .d-avatar--image-loaded{background-color:transparent;background-image:unset}.d-avatar__count,.d-avatar__presence{z-index:var(--zi-base)}.d-avatar__overlay{background-color:var(--dt-color-surface-contrast-opaque);opacity:var(--dt-opacity-900);position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:var(--dt-size-radius-circle);z-index:var(--zi-base)}.d-avatar__overlay-icon{color:var(--dt-color-foreground-primary-inverted);width:100%}.d-avatar__overlay-text{color:var(--dt-color-foreground-primary-inverted);font-weight:var(--dt-font-weight-bold);font-size:var(--dt-font-size-200);width:100%;text-align:center}.d-avatar--clickable{--avatar-color-border: transparent;cursor:pointer;padding:0;background-color:transparent;border-radius:var(--dt-size-radius-circle);border:var(--dt-size-border-100) solid var(--avatar-color-border)}.d-avatar--clickable:focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.d-avatar--clickable:hover{--avatar-color-border: var(--dt-color-border-default)}.d-avatar--clickable:active{--avatar-color-border: var(--dt-color-border-moderate);transform:scale(.98)}.dt-item-layout[data-v-9afad3c4]{align-items:stretch}.dt-item-layout--content[data-v-9afad3c4]{display:flex;flex-direction:column;justify-content:center}.dt-item-layout--selected[data-v-9afad3c4]{display:flex;align-items:center}.dt-list-item{list-style:none;background-color:var(--dt-action-color-background-muted-default)}.dt-list-item:not(.dt-list-item--static){cursor:pointer;border-radius:var(--dt-size-radius-300)}.dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--highlighted{background-color:var(--dt-action-color-background-muted-hover)}.dt-list-item--highlighted:active{background-color:var(--dt-action-color-background-muted-active)}.dt-list-item--selected-icon{margin-left:var(--dt-space-400)}.dt-list-item :focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-empty-list-item{display:flex;align-items:center;justify-content:center;font-size:var(--dt-font-size-200);line-height:var(--lh4);padding:var(--dt-space-300) var(--dt-space-450)}.enter-active,.leave-active{overflow:hidden;transition:height var(--td300) var(--ttf-quint)}.tippy-box[data-popper-reference-hidden] .d-popover__dialog,.tippy-box[data-popper-escaped] .d-popover__dialog{visibility:hidden;pointer-events:none}.d-context-menu-list{width:var(--dt-size-850)}.dt-list-item[role=menuitem]{border-radius:var(--dt-size-300)}.dt-list-separator{border-top:var(--dt-size-100) solid var(--dt-color-border-default);list-style:none}.dt-list-section[tabindex="-1"]:focus{outline:none}.tippy-box[data-popper-reference-hidden] .d-tooltip,.tippy-box[data-popper-escaped] .d-tooltip{visibility:hidden;pointer-events:none}.dt-recipe-callbar-button:not(.dt-recipe-callbar-button--circle){line-height:var(--dt-font-line-height-300)}.dt-recipe-callbar-button--circle{border-radius:var(--dt-size-radius-circle)}.dt-recipe-callbar-button.d-btn[disabled]{background-color:unset;opacity:.5}.dt-recipe-callbar-button--circle.d-btn[disabled]{border-color:unset}.dt-recipe-callbar-button--active .base-button__icon,.dt-recipe-callbar-button--active:hover .base-button__icon{color:var(--primary-color)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle{margin-top:var(--dt-space-350-negative);margin-left:calc(var(--dt-space-300-negative) * 5);width:var(--dt-size-500);height:var(--dt-size-500);padding:var(--dt-space-400);border-radius:var(--dt-size-300)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle.d-btn--active{background:var(--dt-color-surface-moderate-opaque)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header{background:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header .d-btn{color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--button .d-tab--selected:after,.dt-recipe--callbar-button-with-popover--button .d-tab--selected:hover:after{--tab--bgc: var(--dt-color-surface-contrast)}.dt-recipe--callbar-button-with-popover--button .tab-group{display:flex;flex-direction:column;height:100%}.dt-recipe--callbar-button-with-popover--button .tab-content{flex:1 1 100%;overflow-y:auto}.dt-contact-info[data-v-3d0f9d2e]{--contact-info-avatar-border-color: var(--dt-color-surface-primary);display:flex}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout{flex:1 1 0}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--content{min-width:var(--dt-space-825)}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--left{min-width:var(--dt-space-650);justify-content:flex-start;align-items:center}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--right{min-width:0;align-items:center}.dt-contact-info--avatars .d-avatar[data-v-3d0f9d2e]{border-radius:var(--dt-size-radius-pill);border:var(--dt-size-300) solid var(--contact-info-avatar-border-color);box-sizing:unset}.d-top-banner-info__left{margin:var(--dt-space-300) 0 var(--dt-space-300) var(--dt-space-500);min-width:20%}.d-top-banner-info__middle{display:flex;align-items:center;gap:var(--dt-size-300)}.d-top-banner-info__right{display:flex;align-items:baseline;justify-content:flex-end;gap:var(--dt-size-300);margin:var(--dt-space-300) var(--dt-space-500) var(--dt-space-300) 0;min-width:20%}.ivr_node__width{width:280px}.ivr_node__goto_icon{transform:rotate(90deg)}.ivr-connector{z-index:var(--zi-base1);display:flex;justify-content:center;align-items:center;border-color:var(--dt-color-purple-600);background-color:var(--dt-color-purple-600)}.dt-chip-content{font-variant-numeric:tabular-nums}.settings-menu-button[data-v-4ee1371d]{padding:var(--dt-space-0);border-radius:var(--dt-size-550);height:var(--dt-size-600);width:var(--dt-size-550);color:var(--dt-theme-topbar-button-color-foreground);background-color:var(--dt-theme-topbar-button-color-background)}.settings-menu-button[data-v-4ee1371d]:hover{background-color:var(--dt-theme-topbar-button-color-background-hover);color:var(--dt-theme-topbar-button-color-foreground-hover)}.settings-menu-button[data-v-4ee1371d]:active{background-color:var(--dt-theme-topbar-button-color-background-active)}.settings-menu-button-update[data-v-4ee1371d]{background-color:hsla(var(--dt-color-blue-200-hsl) / 25%);color:var(--dt-color-blue-500);border-color:hsla(var(--dt-color-blue-200-hsl) / 25%);border-radius:var(--dt-size-radius-pill);height:var(--dt-size-600)}.settings-menu-button-update[data-v-4ee1371d]:hover{background-color:hsla(var(--dt-color-blue-200-hsl) / 50%);color:var(--dt-theme-topbar-button-color-foreground-hover)}.dt-leftbar-row[data-v-be4d0e3f]{--leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);--leftbar-row-radius: var(--dt-size-radius-pill);--leftbar-row-opacity: 100%;--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-icon-color-foreground);--leftbar-row-alpha-width: calc(var(--dt-size-300) * 10);--leftbar-row-alpha-height: calc(var(--dt-size-300) * 9);--leftbar-row-omega-height: var(--leftbar-row-alpha-height);--leftbar-row-unread-badge-display: inline-flex;--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-description-font-weight: var(--dt-font-weight-normal);--leftbar-row-description-font-size: var(--dt-font-size-200);--leftbar-row-description-line-height: var(--dt-font-line-height-200);--leftbar-row-status-color-foreground: var(--dt-theme-sidebar-status-color-foreground);--leftbar-row-status-font-size: var(--dt-font-size-100);--leftbar-row-status-line-height: var(--dt-font-line-height-100);--leftbar-row-action-position-right: var(--dt-size-400);--leftbar-row-action-position-bottom: 50%;--leftbar-row-action-width: var(--dt-size-550);--leftbar-row-action-height: var(--leftbar-row-action-width);position:relative;opacity:var(--leftbar-row-opacity);display:flex;background-color:var(--dt-theme-sidebar-row-color-background);border-radius:var(--leftbar-row-radius);transition-duration:var(--td200);transition-property:background-color,border,box-shadow;transition-timing-function:var(--ttf-out-quint);cursor:pointer}.dt-leftbar-row[data-v-be4d0e3f]:not(.dt-leftbar-row--no-action):hover,.dt-leftbar-row[data-v-be4d0e3f]:not(.dt-leftbar-row--no-action):focus-within{--leftbar-row-unread-badge-display: none}.dt-leftbar-row[data-v-be4d0e3f]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action,.dt-leftbar-row[data-v-be4d0e3f]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action{display:inline-flex}.dt-leftbar-row[data-v-be4d0e3f]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action-button,.dt-leftbar-row[data-v-be4d0e3f]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action-button{opacity:1}.dt-leftbar-row[data-v-be4d0e3f]:hover,.dt-leftbar-row[data-v-be4d0e3f]:focus-within{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-hover)}.dt-leftbar-row[data-v-be4d0e3f]:hover .d-presence,.dt-leftbar-row[data-v-be4d0e3f]:focus-within .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row[data-v-be4d0e3f]:hover .d-avatar__count,.dt-leftbar-row[data-v-be4d0e3f]:focus-within .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row--has-unread[data-v-be4d0e3f]{--leftbar-row-description-font-weight: var(--dt-font-weight-bold);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground-unread);--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-color-foreground-unread)}.dt-leftbar-row--unread-count[data-v-be4d0e3f] .dt-leftbar-row__action{display:none}.dt-leftbar-row--muted[data-v-be4d0e3f]{--leftbar-row-opacity: 60%}.dt-leftbar-row--selected[data-v-be4d0e3f]{--leftbar-row-color-background: var(--dt-theme-sidebar-selected-row-color-background);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-selected-row-color-foreground)}.dt-leftbar-row--selected[data-v-be4d0e3f] .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row--selected[data-v-be4d0e3f] .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row__is-typing[data-v-be4d0e3f]{--is-typing-size-shape: var(--dt-size-550);height:var(--is-typing-size-shape);width:var(--is-typing-size-shape);position:absolute;display:flex;align-items:center;justify-content:center;gap:2px;border-radius:var(--dt-size-radius-pill);opacity:.75}.dt-leftbar-row__is-typing span[data-v-be4d0e3f]{transition:all .5s ease;background:var(--dt-color-surface-strong);height:4px;width:4px;display:inline-block;padding:0;opacity:.3;border-radius:var(--dt-size-radius-pill);animation:wave-be4d0e3f 1.5s ease infinite}.dt-leftbar-row__is-typing span[data-v-be4d0e3f]:nth-child(1){animation-delay:0ms}.dt-leftbar-row__is-typing span[data-v-be4d0e3f]:nth-child(2){animation-delay:var(--td100)}.dt-leftbar-row__is-typing span[data-v-be4d0e3f]:nth-child(3){animation-delay:var(--td200)}.dt-leftbar-row__primary[data-v-be4d0e3f]{display:flex;align-items:center;flex:1;width:100%;text-align:left;background-color:var(--leftbar-row-color-background);color:var(--leftbar-row-color-foreground);text-decoration:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:inherit;line-height:inherit;margin:0;border:0;padding:0;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__primary[data-v-be4d0e3f]:active{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active)}.dt-leftbar-row__primary[data-v-be4d0e3f]:focus-visible{box-shadow:var(--dt-shadow-focus-inset)}.dt-leftbar-row__action-button[data-v-be4d0e3f]{opacity:0;width:var(--leftbar-row-action-width);height:var(--leftbar-row-action-height)}.dt-leftbar-row__alpha[data-v-be4d0e3f]{color:var(--leftbar-row-alpha-color-foreground);display:flex;box-sizing:border-box;justify-content:center;align-items:center;padding-left:var(--dt-space-400);padding-right:var(--dt-space-400);width:var(--leftbar-row-alpha-width);height:var(--leftbar-row-alpha-height);border-radius:var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius)}.dt-leftbar-row__label[data-v-be4d0e3f]{flex:0 1;min-width:0}.dt-leftbar-row__omega[data-v-be4d0e3f]{position:absolute;display:flex;right:var(--leftbar-row-action-position-right);top:var(--leftbar-row-action-position-bottom);transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));gap:var(--dt-space-300);justify-content:flex-end;align-items:center;box-sizing:border-box;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__unread-badge[data-v-be4d0e3f]{display:var(--leftbar-row-unread-badge-display)}.dt-leftbar-row__active-voice[data-v-be4d0e3f]{color:var(--dt-color-foreground-success);display:inline-flex;-webkit-animation-name:opacity-pulsate-be4d0e3f;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-be4d0e3f;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-be4d0e3f;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}.dt-leftbar-row__dnd[data-v-be4d0e3f]{padding-top:var(--dt-space-200);padding-right:var(--dt-space-300);color:var(--dt-color-foreground-tertiary);font-size:var(--dt-font-size-100);line-height:var(--dt-font-line-height-400);font-weight:var(--dt-font-weight-medium)}.dt-leftbar-row[data-v-be4d0e3f] .dt-leftbar-row__description{display:block;font-weight:var(--leftbar-row-description-font-weight);font-size:var(--leftbar-row-description-font-size);line-height:var(--leftbar-row-description-line-height);color:var(--leftbar-row-description-color-foreground);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-be4d0e3f] .dt-leftbar-row__status{display:block;color:var(--leftbar-row-status-color-foreground);font-size:var(--leftbar-row-status-font-size);line-height:var(--leftbar-row-status-line-height);padding-bottom:var(--dt-space-100);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-be4d0e3f] .dt-leftbar-row__meta-context~.dt-leftbar-row__meta-custom:not(:empty):before{content:" • ";color:var(--dt-theme-sidebar-status-color-foreground)}.dt-leftbar-row__icon-cc[data-v-be4d0e3f]{border-radius:var(--dt-size-200);width:calc(var(--dt-size-300) * 3.5);height:calc(var(--dt-size-300) * 3.5)}.opacity-pulsate[data-v-be4d0e3f]{-webkit-animation-name:opacity-pulsate-be4d0e3f;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-be4d0e3f;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-be4d0e3f;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}@-webkit-keyframes opacity-pulsate-be4d0e3f{0%,to{opacity:.2}50%{opacity:1}}@-moz-keyframes opacity-pulsate-be4d0e3f{0%,to{opacity:.2}50%{opacity:1}}@keyframes opacity-pulsate-be4d0e3f{0%,to{opacity:.2}50%{opacity:1}}@keyframes wave-be4d0e3f{0%,50%,to{transform:translate(0)}10%{transform:translateY(-5px);opacity:90%}}.dt-leftbar-unread-pill{display:flex;align-items:center;justify-content:center;padding:var(--dt-space-200) var(--dt-space-500) var(--dt-space-200) var(--dt-space-400);gap:var(--dt-space-300);font-size:var(--dt-font-size-100);box-shadow:var(--dt-shadow-medium);border-radius:var(--dt-size-radius-pill);border:none;line-height:var(--dt-font-line-height-600);cursor:pointer}.dt-leftbar-unread-pill--mentions{font-weight:var(--dt-font-weight-bold);background-color:var(--dt-theme-mention-color-background);color:var(--dt-theme-mention-color-foreground)}.dt-leftbar-unread-pill--messages{background-color:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-secondary-inverted)}.dt-feed-item-row[data-v-1bc2a3a7]{transition-duration:2s!important}.dt-feed-item-row .content-text-wrapper-class[data-v-1bc2a3a7]:not(img){line-height:1.6rem}.dt-feed-item-row[data-v-1bc2a3a7] .dt-item-layout--left .d-avatar{align-self:flex-start;margin-top:var(--dt-space-300)}.dt-feed-item-pill--border[data-v-59051987]{border:double 1px transparent;border-radius:4.8rem;background-origin:border-box;background-clip:content-box,border-box;overflow:hidden}.dt-feed-item-pill--border-default[data-v-59051987]{background:var(--dt-color-border-default)}.dt-feed-item-pill--border-ai[data-v-59051987]{background-image:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)),var(--dt-badge-color-background-ai)}.dt-feed-item-pill--border-critical[data-v-59051987]{background:var(--dt-color-foreground-critical)}.dt-feed-item-pill--icon[data-v-59051987]{animation:fade-59051987 .15s ease-in}@keyframes fade-59051987{0%{transform:scale(0)}to{transform:scale(1)}}.dt-emoji-row{display:flex;flex-wrap:wrap}.dt-emoji-row__reaction{padding:var(--dt-space-300) var(--dt-space-400);gap:var(--dt-space-300);border-radius:var(--dt-size-radius-500);margin-bottom:0;transition-delay:0s;transition-duration:var(--td50);transition-property:all;transition-timing-function:var(--ttf-in-out);color:var(--dt-color-foreground-secondary);background-color:var(--dt-color-surface-moderate-opaque)}.dt-emoji-row__reaction:hover,.dt-emoji-row__reaction:focus{border-color:hsla(var(--dt-color-black-600-hsl)/100%)!important}.dt-emoji-row__reaction--selected{color:var(--dt-color-link-primary);background-color:var(--dt-color-purple-100)!important;border-color:var(--dt-color-brand-purple)!important}.dt-emoji-row__reaction--selected:hover{color:var(--dt-color-link-primary)}.dt-recipe-callbox[data-v-66800ae7]{padding:0;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);border-radius:var(--dt-size-radius-300)}.dt-recipe-callbox--video[data-v-66800ae7]{display:flex;border-radius:var(--dt-size-radius-200) var(--dt-size-radius-200) 0 0;overflow:clip;margin-bottom:var(--dt-space-300-negative)}.dt-recipe-callbox--main-content[data-v-66800ae7]{padding:0;border-radius:var(--dt-size-radius-300);border:var(--dt-size-border-100) solid transparent;align-items:stretch}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-default[data-v-66800ae7]{border-color:var(--dt-color-border-default)}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-ai[data-v-66800ae7]{background:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,linear-gradient(135deg,var(--dt-color-border-accent),var(--dt-color-border-brand)) border-box}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-critical[data-v-66800ae7]{background:radial-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,radial-gradient(circle,#E7301D,#F78B23) border-box}.dt-recipe-callbox--main-content-top[data-v-66800ae7]{display:flex;align-items:center;padding:var(--dt-space-350) var(--dt-space-400)}.dt-recipe-callbox--main-content-bottom[data-v-66800ae7]{border-top:1px solid var(--dt-color-border-subtle)}.dt-recipe-callbox--avatar[data-v-66800ae7]{margin-right:var(--dt-space-400)}.dt-recipe-callbox--content[data-v-66800ae7]{display:flex;flex-direction:column;flex:1 0 auto;min-width:0}.dt-recipe-callbox--content-title[data-v-66800ae7]{overflow:clip;white-space:nowrap;text-overflow:ellipsis;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);font-weight:var(--dt-font-weight-bold);border:none;padding:0;width:0;min-width:100%;text-align:left;-webkit-user-select:text;user-select:text;line-height:normal}.dt-recipe-callbox--content-badge[data-v-66800ae7]{line-height:normal}.dt-recipe-callbox--content-subtitle[data-v-66800ae7]{padding:0;font-size:var(--dt-font-size-100);color:var(--dt-color-foreground-tertiary);line-height:normal;overflow:hidden;width:0;min-width:100%}.dt-recipe-callbox--right[data-v-66800ae7]{display:flex;justify-content:right}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]{cursor:pointer;-webkit-user-select:none;user-select:none;border-radius:var(--dt-size-100)}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:hover,.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:active{text-decoration:underline}.dt-recipe-callbox .dt-recipe-callbox-badge--warning[data-v-66800ae7]{background-color:var(--dt-color-surface-warning)}.skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}.skeleton-placeholder--animate{animation-name:placeholder-throb;animation-iteration-count:infinite}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}.dt-emoji[data-v-6ad3e149]{display:inline-block}
1
+ .d-avatar--image-loaded{background-color:transparent;background-image:unset}.d-avatar__count,.d-avatar__presence{z-index:var(--zi-base)}.d-avatar__overlay{background-color:var(--dt-color-surface-contrast-opaque);opacity:var(--dt-opacity-900);position:absolute;width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:var(--dt-size-radius-circle);z-index:var(--zi-base)}.d-avatar__overlay-icon{color:var(--dt-color-foreground-primary-inverted);width:100%}.d-avatar__overlay-text{color:var(--dt-color-foreground-primary-inverted);font-weight:var(--dt-font-weight-bold);font-size:var(--dt-font-size-200);width:100%;text-align:center}.d-avatar--clickable{--avatar-color-border: transparent;cursor:pointer;padding:0;background-color:transparent;border-radius:var(--dt-size-radius-circle);border:var(--dt-size-border-100) solid var(--avatar-color-border)}.d-avatar--clickable:focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.d-avatar--clickable:hover{--avatar-color-border: var(--dt-color-border-default)}.d-avatar--clickable:active{--avatar-color-border: var(--dt-color-border-moderate);transform:scale(.98)}.dt-item-layout[data-v-9afad3c4]{align-items:stretch}.dt-item-layout--content[data-v-9afad3c4]{display:flex;flex-direction:column;justify-content:center}.dt-item-layout--selected[data-v-9afad3c4]{display:flex;align-items:center}.dt-list-item{list-style:none;background-color:var(--dt-action-color-background-muted-default)}.dt-list-item:not(.dt-list-item--static){cursor:pointer;border-radius:var(--dt-size-radius-300)}.dt-list-item--focusable:focus,.dt-list-item--focusable:focus-within,.dt-list-item--highlighted{background-color:var(--dt-action-color-background-muted-hover)}.dt-list-item--highlighted:active{background-color:var(--dt-action-color-background-muted-active)}.dt-list-item--selected-icon{margin-left:var(--dt-space-400)}.dt-list-item :focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-empty-list-item{display:flex;align-items:center;justify-content:center;font-size:var(--dt-font-size-200);line-height:var(--lh4);padding:var(--dt-space-300) var(--dt-space-450)}.enter-active,.leave-active{overflow:hidden;transition:height var(--td300) var(--ttf-quint)}.tippy-box[data-popper-reference-hidden] .d-popover__dialog,.tippy-box[data-popper-escaped] .d-popover__dialog{visibility:hidden;pointer-events:none}.d-context-menu-list{width:var(--dt-size-850)}.dt-list-item[role=menuitem]{border-radius:var(--dt-size-300)}.dt-list-separator{border-top:var(--dt-size-100) solid var(--dt-color-border-default);list-style:none}.dt-list-section[tabindex="-1"]:focus{outline:none}.tippy-box[data-popper-reference-hidden] .d-tooltip,.tippy-box[data-popper-escaped] .d-tooltip{visibility:hidden;pointer-events:none}.d-root-layout{position:relative;display:grid;grid-template-areas:"header header" "sidebar body" "footer footer";grid-template-columns:min-content 1fr;min-height:100vh}.d-root-layout--inverted{grid-template-areas:"header header" "body sidebar" "footer footer";grid-template-columns:1fr min-content}.d-root-layout--fixed{height:100vh}.d-root-layout__header{grid-area:header}.d-root-layout__header--sticky{position:sticky;top:0;z-index:var(--zi-base1)}.d-root-layout__sidebar{grid-area:sidebar;height:100%;box-shadow:none}.d-root-layout__content{grid-area:body;box-shadow:none;overflow-y:auto}.d-root-layout__content:focus-visible{box-shadow:none}.d-root-layout__footer{grid-area:footer}@media (max-width: 480px){.d-root-layout__responsive--sm{grid-template-areas:"header" "sidebar" "body" "footer";grid-template-columns:1fr}}@media (max-width: 640px){.d-root-layout__responsive--md{grid-template-areas:"header" "sidebar" "body" "footer";grid-template-columns:1fr}}@media (max-width: 980px){.d-root-layout__responsive--lg{grid-template-areas:"header" "sidebar" "body" "footer";grid-template-columns:1fr}}.dt-recipe-callbar-button:not(.dt-recipe-callbar-button--circle){line-height:var(--dt-font-line-height-300)}.dt-recipe-callbar-button--circle{border-radius:var(--dt-size-radius-circle)}.dt-recipe-callbar-button.d-btn[disabled]{background-color:unset;opacity:.5}.dt-recipe-callbar-button--circle.d-btn[disabled]{border-color:unset}.dt-recipe-callbar-button--active .base-button__icon,.dt-recipe-callbar-button--active:hover .base-button__icon{color:var(--primary-color)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle{margin-top:var(--dt-space-350-negative);margin-left:calc(var(--dt-space-300-negative) * 5);width:var(--dt-size-500);height:var(--dt-size-500);padding:var(--dt-space-400);border-radius:var(--dt-size-300)}.dt-recipe--callbar-button-with-popover--arrow.d-btn--circle.d-btn--active{background:var(--dt-color-surface-moderate-opaque)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header{background:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--popover .d-popover__header .d-btn{color:var(--dt-color-foreground-primary-inverted)}.dt-recipe--callbar-button-with-popover--button .d-tab--selected:after,.dt-recipe--callbar-button-with-popover--button .d-tab--selected:hover:after{--tab--bgc: var(--dt-color-surface-contrast)}.dt-recipe--callbar-button-with-popover--button .tab-group{display:flex;flex-direction:column;height:100%}.dt-recipe--callbar-button-with-popover--button .tab-content{flex:1 1 100%;overflow-y:auto}.dt-contact-info[data-v-3d0f9d2e]{--contact-info-avatar-border-color: var(--dt-color-surface-primary);display:flex}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout{flex:1 1 0}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--content{min-width:var(--dt-space-825)}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--left{min-width:var(--dt-space-650);justify-content:flex-start;align-items:center}.dt-contact-info[data-v-3d0f9d2e] .dt-item-layout--right{min-width:0;align-items:center}.dt-contact-info--avatars .d-avatar[data-v-3d0f9d2e]{border-radius:var(--dt-size-radius-pill);border:var(--dt-size-300) solid var(--contact-info-avatar-border-color);box-sizing:unset}.d-top-banner-info__left{margin:var(--dt-space-300) 0 var(--dt-space-300) var(--dt-space-500);min-width:20%}.d-top-banner-info__middle{display:flex;align-items:center;gap:var(--dt-size-300)}.d-top-banner-info__right{display:flex;align-items:baseline;justify-content:flex-end;gap:var(--dt-size-300);margin:var(--dt-space-300) var(--dt-space-500) var(--dt-space-300) 0;min-width:20%}.ivr_node__width{width:280px}.ivr_node__goto_icon{transform:rotate(90deg)}.ivr-connector{z-index:var(--zi-base);display:flex;justify-content:center;align-items:center;border-color:var(--dt-color-purple-600);background-color:var(--dt-color-purple-600)}.dt-chip-content{font-variant-numeric:tabular-nums}.settings-menu-button[data-v-4ee1371d]{padding:var(--dt-space-0);border-radius:var(--dt-size-550);height:var(--dt-size-600);width:var(--dt-size-550);color:var(--dt-theme-topbar-button-color-foreground);background-color:var(--dt-theme-topbar-button-color-background)}.settings-menu-button[data-v-4ee1371d]:hover{background-color:var(--dt-theme-topbar-button-color-background-hover);color:var(--dt-theme-topbar-button-color-foreground-hover)}.settings-menu-button[data-v-4ee1371d]:active{background-color:var(--dt-theme-topbar-button-color-background-active)}.settings-menu-button-update[data-v-4ee1371d]{background-color:hsla(var(--dt-color-blue-200-hsl) / 25%);color:var(--dt-color-blue-500);border-color:hsla(var(--dt-color-blue-200-hsl) / 25%);border-radius:var(--dt-size-radius-pill);height:var(--dt-size-600)}.settings-menu-button-update[data-v-4ee1371d]:hover{background-color:hsla(var(--dt-color-blue-200-hsl) / 50%);color:var(--dt-theme-topbar-button-color-foreground-hover)}.dt-leftbar-row[data-v-8577d0d5]{--leftbar-row-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background);--leftbar-row-radius: var(--dt-size-radius-pill);--leftbar-row-opacity: 100%;--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-icon-color-foreground);--leftbar-row-alpha-width: calc(var(--dt-size-300) * 10);--leftbar-row-alpha-height: calc(var(--dt-size-300) * 9);--leftbar-row-omega-height: var(--leftbar-row-alpha-height);--leftbar-row-unread-badge-display: inline-flex;--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground);--leftbar-row-description-font-weight: var(--dt-font-weight-normal);--leftbar-row-description-font-size: var(--dt-font-size-200);--leftbar-row-description-line-height: var(--dt-font-line-height-200);--leftbar-row-status-color-foreground: var(--dt-theme-sidebar-status-color-foreground);--leftbar-row-status-font-size: var(--dt-font-size-100);--leftbar-row-status-line-height: var(--dt-font-line-height-100);--leftbar-row-action-position-right: var(--dt-size-400);--leftbar-row-action-position-bottom: 50%;--leftbar-row-action-width: var(--dt-size-550);--leftbar-row-action-height: var(--leftbar-row-action-width);position:relative;opacity:var(--leftbar-row-opacity);display:flex;background-color:var(--dt-theme-sidebar-row-color-background);border-radius:var(--leftbar-row-radius);transition-duration:var(--td200);transition-property:background-color,border,box-shadow;transition-timing-function:var(--ttf-out-quint);cursor:pointer}.dt-leftbar-row[data-v-8577d0d5]:not(.dt-leftbar-row--no-action):hover,.dt-leftbar-row[data-v-8577d0d5]:not(.dt-leftbar-row--no-action):focus-within{--leftbar-row-unread-badge-display: none}.dt-leftbar-row[data-v-8577d0d5]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action,.dt-leftbar-row[data-v-8577d0d5]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action{display:inline-flex}.dt-leftbar-row[data-v-8577d0d5]:not(.dt-leftbar-row--no-action):hover .dt-leftbar-row__action-button,.dt-leftbar-row[data-v-8577d0d5]:not(.dt-leftbar-row--no-action):focus-within .dt-leftbar-row__action-button{opacity:1}.dt-leftbar-row[data-v-8577d0d5]:hover,.dt-leftbar-row[data-v-8577d0d5]:focus-within{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-hover)}.dt-leftbar-row[data-v-8577d0d5]:hover .d-presence,.dt-leftbar-row[data-v-8577d0d5]:focus-within .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row[data-v-8577d0d5]:hover .d-avatar__count,.dt-leftbar-row[data-v-8577d0d5]:focus-within .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row--has-unread[data-v-8577d0d5]{--leftbar-row-description-font-weight: var(--dt-font-weight-bold);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-color-foreground-unread);--leftbar-row-alpha-color-foreground: var(--dt-theme-sidebar-color-foreground-unread)}.dt-leftbar-row--unread-count[data-v-8577d0d5] .dt-leftbar-row__action{display:none}.dt-leftbar-row--muted[data-v-8577d0d5]{--leftbar-row-opacity: 60%}.dt-leftbar-row--selected[data-v-8577d0d5]{--leftbar-row-color-background: var(--dt-theme-sidebar-selected-row-color-background);--leftbar-row-description-color-foreground: var(--dt-theme-sidebar-selected-row-color-foreground)}.dt-leftbar-row--selected[data-v-8577d0d5] .d-presence{--presence-color-border-base: var(--dt-color-black-200)}.dt-leftbar-row--selected[data-v-8577d0d5] .d-avatar__count{--avatar-count-color-shadow: var(--dt-theme-sidebar-selected-row-color-background)}.dt-leftbar-row__is-typing[data-v-8577d0d5]{--is-typing-size-shape: var(--dt-size-550);height:var(--is-typing-size-shape);width:var(--is-typing-size-shape);position:absolute;display:flex;align-items:center;justify-content:center;gap:2px;border-radius:var(--dt-size-radius-pill);opacity:.75}.dt-leftbar-row__is-typing span[data-v-8577d0d5]{transition:all .5s ease;background:var(--dt-color-surface-strong);height:4px;width:4px;display:inline-block;padding:0;opacity:.3;border-radius:var(--dt-size-radius-pill);animation:wave-8577d0d5 1.5s ease infinite}.dt-leftbar-row__is-typing span[data-v-8577d0d5]:nth-child(1){animation-delay:0ms}.dt-leftbar-row__is-typing span[data-v-8577d0d5]:nth-child(2){animation-delay:var(--td100)}.dt-leftbar-row__is-typing span[data-v-8577d0d5]:nth-child(3){animation-delay:var(--td200)}.dt-leftbar-row__primary[data-v-8577d0d5]{display:flex;align-items:center;flex:1;width:100%;text-align:left;background-color:var(--leftbar-row-color-background);color:var(--leftbar-row-color-foreground);text-decoration:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:inherit;line-height:inherit;margin:0;border:0;padding:0;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__primary[data-v-8577d0d5]:active{--leftbar-row-color-background: var(--dt-theme-sidebar-row-color-background-active)}.dt-leftbar-row__primary[data-v-8577d0d5]:focus-visible{box-shadow:var(--dt-shadow-focus-inset)}.dt-leftbar-row__action-button[data-v-8577d0d5]{opacity:0;width:var(--leftbar-row-action-width);height:var(--leftbar-row-action-height)}.dt-leftbar-row__alpha[data-v-8577d0d5]{color:var(--leftbar-row-alpha-color-foreground);display:flex;box-sizing:border-box;justify-content:center;align-items:center;padding-left:var(--dt-space-400);padding-right:var(--dt-space-400);width:var(--leftbar-row-alpha-width);height:var(--leftbar-row-alpha-height);border-radius:var(--leftbar-row-radius) 0 0 var(--leftbar-row-radius)}.dt-leftbar-row__label[data-v-8577d0d5]{flex:0 1;min-width:0}.dt-leftbar-row__omega[data-v-8577d0d5]{position:absolute;display:flex;right:var(--leftbar-row-action-position-right);top:var(--leftbar-row-action-position-bottom);transform:translateY(calc(var(--leftbar-row-action-position-bottom) * -1));gap:var(--dt-space-300);justify-content:flex-end;align-items:center;box-sizing:border-box;border-radius:var(--leftbar-row-radius)}.dt-leftbar-row__unread-badge[data-v-8577d0d5]{display:var(--leftbar-row-unread-badge-display)}.dt-leftbar-row__active-voice[data-v-8577d0d5]{color:var(--dt-color-foreground-success);display:inline-flex;-webkit-animation-name:opacity-pulsate-8577d0d5;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-8577d0d5;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-8577d0d5;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}.dt-leftbar-row__dnd[data-v-8577d0d5]{padding-top:var(--dt-space-200);padding-right:var(--dt-space-300);color:var(--dt-color-foreground-tertiary);font-size:var(--dt-font-size-100);line-height:var(--dt-font-line-height-400);font-weight:var(--dt-font-weight-medium)}.dt-leftbar-row[data-v-8577d0d5] .dt-leftbar-row__description{display:block;font-weight:var(--leftbar-row-description-font-weight);font-size:var(--leftbar-row-description-font-size);line-height:var(--leftbar-row-description-line-height);color:var(--leftbar-row-description-color-foreground);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-8577d0d5] .dt-leftbar-row__status{display:block;color:var(--leftbar-row-status-color-foreground);font-size:var(--leftbar-row-status-font-size);line-height:var(--leftbar-row-status-line-height);padding-bottom:var(--dt-space-100);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dt-leftbar-row[data-v-8577d0d5] .dt-leftbar-row__meta-context~.dt-leftbar-row__meta-custom:not(:empty):before{content:" • ";color:var(--dt-theme-sidebar-status-color-foreground)}.dt-leftbar-row__icon-cc[data-v-8577d0d5]{border-radius:var(--dt-size-200);width:calc(var(--dt-size-300) * 3.5);height:calc(var(--dt-size-300) * 3.5)}.opacity-pulsate[data-v-8577d0d5]{-webkit-animation-name:opacity-pulsate-8577d0d5;-webkit-animation-duration:1s;-webkit-animation-iteration-count:infinite;-webkit-animation-fill-mode:both;-moz-animation-name:opacity-pulsate-8577d0d5;-moz-animation-duration:1s;-moz-animation-iteration-count:infinite;-moz-animation-fill-mode:both;animation-name:opacity-pulsate-8577d0d5;animation-duration:1s;animation-iteration-count:infinite;animation-fill-mode:both}@-webkit-keyframes opacity-pulsate-8577d0d5{0%,to{opacity:.2}50%{opacity:1}}@-moz-keyframes opacity-pulsate-8577d0d5{0%,to{opacity:.2}50%{opacity:1}}@keyframes opacity-pulsate-8577d0d5{0%,to{opacity:.2}50%{opacity:1}}@keyframes wave-8577d0d5{0%,50%,to{transform:translate(0)}10%{transform:translateY(-5px);opacity:90%}}.dt-leftbar-unread-pill{display:flex;align-items:center;justify-content:center;padding:var(--dt-space-200) var(--dt-space-500) var(--dt-space-200) var(--dt-space-400);gap:var(--dt-space-300);font-size:var(--dt-font-size-100);box-shadow:var(--dt-shadow-medium);border-radius:var(--dt-size-radius-pill);border:none;line-height:var(--dt-font-line-height-600);cursor:pointer}.dt-leftbar-unread-pill--mentions{font-weight:var(--dt-font-weight-bold);background-color:var(--dt-theme-mention-color-background);color:var(--dt-theme-mention-color-foreground)}.dt-leftbar-unread-pill--messages{background-color:var(--dt-color-surface-contrast);color:var(--dt-color-foreground-secondary-inverted)}.dt-feed-item-row[data-v-1bc2a3a7]{transition-duration:2s!important}.dt-feed-item-row .content-text-wrapper-class[data-v-1bc2a3a7]:not(img){line-height:1.6rem}.dt-feed-item-row[data-v-1bc2a3a7] .dt-item-layout--left .d-avatar{align-self:flex-start;margin-top:var(--dt-space-300)}.dt-feed-item-pill--border[data-v-59051987]{border:double 1px transparent;border-radius:4.8rem;background-origin:border-box;background-clip:content-box,border-box;overflow:hidden}.dt-feed-item-pill--border-default[data-v-59051987]{background:var(--dt-color-border-default)}.dt-feed-item-pill--border-ai[data-v-59051987]{background-image:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)),var(--dt-badge-color-background-ai)}.dt-feed-item-pill--border-critical[data-v-59051987]{background:var(--dt-color-foreground-critical)}.dt-feed-item-pill--icon[data-v-59051987]{animation:fade-59051987 .15s ease-in}@keyframes fade-59051987{0%{transform:scale(0)}to{transform:scale(1)}}.dt-emoji-row{display:flex;flex-wrap:wrap}.dt-emoji-row__reaction{padding:var(--dt-space-300) var(--dt-space-400);gap:var(--dt-space-300);border-radius:var(--dt-size-radius-500);margin-bottom:0;transition-delay:0s;transition-duration:var(--td50);transition-property:all;transition-timing-function:var(--ttf-in-out);color:var(--dt-color-foreground-secondary);background-color:var(--dt-color-surface-moderate-opaque)}.dt-emoji-row__reaction:hover,.dt-emoji-row__reaction:focus{border-color:hsla(var(--dt-color-black-600-hsl)/100%)!important}.dt-emoji-row__reaction--selected{color:var(--dt-color-link-primary);background-color:var(--dt-color-purple-100)!important;border-color:var(--dt-color-brand-purple)!important}.dt-emoji-row__reaction--selected:hover{color:var(--dt-color-link-primary)}.dt-recipe-callbox[data-v-66800ae7]{padding:0;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);border-radius:var(--dt-size-radius-300)}.dt-recipe-callbox--video[data-v-66800ae7]{display:flex;border-radius:var(--dt-size-radius-200) var(--dt-size-radius-200) 0 0;overflow:clip;margin-bottom:var(--dt-space-300-negative)}.dt-recipe-callbox--main-content[data-v-66800ae7]{padding:0;border-radius:var(--dt-size-radius-300);border:var(--dt-size-border-100) solid transparent;align-items:stretch}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-default[data-v-66800ae7]{border-color:var(--dt-color-border-default)}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-ai[data-v-66800ae7]{background:linear-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,linear-gradient(135deg,var(--dt-color-border-accent),var(--dt-color-border-brand)) border-box}.dt-recipe-callbox--main-content.dt-recipe-callbox--border-critical[data-v-66800ae7]{background:radial-gradient(var(--dt-color-surface-primary),var(--dt-color-surface-primary)) padding-box,radial-gradient(circle,#E7301D,#F78B23) border-box}.dt-recipe-callbox--main-content-top[data-v-66800ae7]{display:flex;align-items:center;padding:var(--dt-space-350) var(--dt-space-400)}.dt-recipe-callbox--main-content-bottom[data-v-66800ae7]{border-top:1px solid var(--dt-color-border-subtle)}.dt-recipe-callbox--avatar[data-v-66800ae7]{margin-right:var(--dt-space-400)}.dt-recipe-callbox--content[data-v-66800ae7]{display:flex;flex-direction:column;flex:1 0 auto;min-width:0}.dt-recipe-callbox--content-title[data-v-66800ae7]{overflow:clip;white-space:nowrap;text-overflow:ellipsis;color:var(--dt-color-foreground-primary);background-color:var(--dt-color-surface-primary);font-weight:var(--dt-font-weight-bold);border:none;padding:0;width:0;min-width:100%;text-align:left;-webkit-user-select:text;user-select:text;line-height:normal}.dt-recipe-callbox--content-badge[data-v-66800ae7]{line-height:normal}.dt-recipe-callbox--content-subtitle[data-v-66800ae7]{padding:0;font-size:var(--dt-font-size-100);color:var(--dt-color-foreground-tertiary);line-height:normal;overflow:hidden;width:0;min-width:100%}.dt-recipe-callbox--right[data-v-66800ae7]{display:flex;justify-content:right}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]{cursor:pointer;-webkit-user-select:none;user-select:none;border-radius:var(--dt-size-100)}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:focus-visible{outline:none;box-shadow:var(--dt-shadow-focus)}.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:hover,.dt-recipe-callbox--clickable .dt-recipe-callbox--content-title[data-v-66800ae7]:active{text-decoration:underline}.dt-recipe-callbox .dt-recipe-callbox-badge--warning[data-v-66800ae7]{background-color:var(--dt-color-surface-warning)}.skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}.skeleton-placeholder--animate{animation-name:placeholder-throb;animation-iteration-count:infinite}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}50%{fill:var(--placeholder-to-color, var(--dt-color-black-100));background:var(--placeholder-to-color, var(--dt-color-black-100))}90%{fill:var(--placeholder-from-color, var(--dt-color-black-300));background:var(--placeholder-from-color, var(--dt-color-black-300))}}.dt-emoji[data-v-6ad3e149]{display:inline-block}
@@ -22,13 +22,6 @@ declare const _default: import("vue").DefineComponent<{
22
22
  type: StringConstructor;
23
23
  default: string;
24
24
  };
25
- /**
26
- * Additional class name for the body
27
- */
28
- bodyClass: {
29
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
30
- default: string;
31
- };
32
25
  /**
33
26
  * Scroll the header with the page
34
27
  * @values true, false
@@ -52,8 +45,7 @@ declare const _default: import("vue").DefineComponent<{
52
45
  default: string;
53
46
  };
54
47
  /**
55
- * The width of the sidebar
56
- * Possible units rem|px|%|em
48
+ * DEPRECATED: set the min-width of the inner element instead.
57
49
  */
58
50
  sidebarWidth: {
59
51
  type: StringConstructor;
@@ -93,8 +85,7 @@ declare const _default: import("vue").DefineComponent<{
93
85
  validator: (bp: unknown) => boolean;
94
86
  };
95
87
  }, {}, {}, {
96
- responsiveClass(): string | undefined;
97
- bodyClasses(): any[];
88
+ isInverted(): boolean;
98
89
  }, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
99
90
  /**
100
91
  * When true, the header, footer and sidebar will be locked in position and the content will
@@ -119,13 +110,6 @@ declare const _default: import("vue").DefineComponent<{
119
110
  type: StringConstructor;
120
111
  default: string;
121
112
  };
122
- /**
123
- * Additional class name for the body
124
- */
125
- bodyClass: {
126
- type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
127
- default: string;
128
- };
129
113
  /**
130
114
  * Scroll the header with the page
131
115
  * @values true, false
@@ -149,8 +133,7 @@ declare const _default: import("vue").DefineComponent<{
149
133
  default: string;
150
134
  };
151
135
  /**
152
- * The width of the sidebar
153
- * Possible units rem|px|%|em
136
+ * DEPRECATED: set the min-width of the inner element instead.
154
137
  */
155
138
  sidebarWidth: {
156
139
  type: StringConstructor;
@@ -195,7 +178,6 @@ declare const _default: import("vue").DefineComponent<{
195
178
  headerClass: string | Record<string, any> | unknown[];
196
179
  footerClass: string | Record<string, any> | unknown[];
197
180
  headerHeight: string;
198
- bodyClass: string | Record<string, any> | unknown[];
199
181
  headerSticky: boolean;
200
182
  sidebarClass: string | Record<string, any> | unknown[];
201
183
  sidebarWidth: string;
@@ -1 +1 @@
1
- {"version":3,"file":"root_layout.vue.d.ts","sourceRoot":"","sources":["../../../../components/root_layout/root_layout.vue.js"],"names":[],"mappings":";IAWI;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;;OAIG;;;;;;IAOH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;;;;;;IAlGH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;;OAIG;;;;;;IAOH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG"}
1
+ {"version":3,"file":"root_layout.vue.d.ts","sourceRoot":"","sources":["../../../../components/root_layout/root_layout.vue.js"],"names":[],"mappings":";IAWI;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;;IAOH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;;;;;IAzFH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;;IAOH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG"}
@@ -84,6 +84,9 @@ declare const _default: import("vue").DefineComponent<{
84
84
  callbarButtonTextClass(): any[];
85
85
  buttonWidth(): "4.5rem" | "6rem" | "8.4rem";
86
86
  buttonImportance(): any;
87
+ callbarButtonListeners(): {
88
+ click: (event: any) => void;
89
+ };
87
90
  }, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, "click"[], string, Readonly<import("vue").ExtractPropTypes<{
88
91
  /**
89
92
  * Id for the item.
@@ -1 +1 @@
1
- {"version":3,"file":"callbar_button.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/buttons/callbar_button/callbar_button.vue.js"],"names":[],"mappings":";IAeI;;OAEG;;;;;IAQH;;;;;OAKG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;;OAIG;;;;;IAMH;;;;OAIG;;;;;IAMH;;OAEG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;;;;;;IAeH;;;OAGG;;;;;;;;;;;IA3FH;;OAEG;;;;;IAQH;;;;;OAKG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;;OAIG;;;;;IAMH;;;;OAIG;;;;;IAMH;;OAEG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;;;;;;IAeH;;;OAGG"}
1
+ {"version":3,"file":"callbar_button.vue.d.ts","sourceRoot":"","sources":["../../../../../recipes/buttons/callbar_button/callbar_button.vue.js"],"names":[],"mappings":";IAeI;;OAEG;;;;;IAQH;;;;;OAKG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;;OAIG;;;;;IAMH;;;;OAIG;;;;;IAMH;;OAEG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;;;;;;IAeH;;;OAGG;;;;;;;;;;;;;;IA3FH;;OAEG;;;;;IAQH;;;;;OAKG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;;OAIG;;;;;IAMH;;;;OAIG;;;;;IAMH;;OAEG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;;;;;;IAeH;;;OAGG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dialpad/dialtone-vue",
3
- "version": "2.100.0",
3
+ "version": "2.101.0",
4
4
  "description": "Vue component library for Dialpad's design system Dialtone",
5
5
  "scripts": {
6
6
  "build": "run-s clean build:main build:typescript build:documentation",
@@ -57,16 +57,16 @@
57
57
  "@percy/storybook": "^4.3.6",
58
58
  "@semantic-release/changelog": "^6.0.3",
59
59
  "@semantic-release/git": "^10.0.1",
60
- "@storybook/addon-a11y": "^7.4.3",
61
- "@storybook/addon-essentials": "^7.4.3",
62
- "@storybook/addon-links": "^7.4.3",
63
- "@storybook/blocks": "^7.4.3",
64
- "@storybook/manager-api": "^7.4.3",
60
+ "@storybook/addon-a11y": "^7.4.6",
61
+ "@storybook/addon-essentials": "^7.4.6",
62
+ "@storybook/addon-links": "^7.4.6",
63
+ "@storybook/blocks": "^7.4.6",
64
+ "@storybook/manager-api": "^7.4.6",
65
65
  "@storybook/test-runner": "^0.13.0",
66
- "@storybook/testing-library": "^0.2.1",
67
- "@storybook/theming": "^7.4.3",
68
- "@storybook/vue": "^7.4.3",
69
- "@storybook/vue-vite": "^7.4.3",
66
+ "@storybook/testing-library": "^0.2.2",
67
+ "@storybook/theming": "^7.4.6",
68
+ "@storybook/vue": "^7.4.6",
69
+ "@storybook/vue-vite": "^7.4.6",
70
70
  "@vitejs/plugin-vue2": "^2.2.0",
71
71
  "@vue/test-utils": "1.3",
72
72
  "@vue/tsconfig": "^0.4.0",
@@ -80,7 +80,7 @@
80
80
  "eslint-plugin-import": "^2.27.5",
81
81
  "eslint-plugin-node": "^11.1.0",
82
82
  "eslint-plugin-promise": "^6.1.1",
83
- "eslint-plugin-storybook": "^0.6.14",
83
+ "eslint-plugin-storybook": "^0.6.15",
84
84
  "eslint-plugin-vitest": "^0.2.6",
85
85
  "eslint-plugin-vitest-globals": "^1.3.1",
86
86
  "eslint-plugin-vue": "^9.15.1",
@@ -98,7 +98,7 @@
98
98
  "semantic-release": "^21.0.6",
99
99
  "sinon": "^15.2.0",
100
100
  "source-map-support": "^0.5.21",
101
- "storybook": "^7.4.3",
101
+ "storybook": "^7.4.6",
102
102
  "storybook-dark-mode": "^3.0.1",
103
103
  "vite": "^4.4.9",
104
104
  "vitest": "^0.34.5",