@dialpad/dialtone-vue 2.74.0 → 2.74.1
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.json +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/dialtone-vue.common.js +23 -7
- package/dist/dialtone-vue.umd.js +23 -7
- package/dist/dialtone-vue.umd.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.74.1](https://github.com/dialpad/dialtone-vue/compare/v2.74.0...v2.74.1) (2023-03-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **Recipe Callbar Btn:** show tooltip when the callbar button is disa… ([#866](https://github.com/dialpad/dialtone-vue/issues/866)) ([b88ec69](https://github.com/dialpad/dialtone-vue/commit/b88ec697bfa23faa3d1d55a44c0ec53a8287665a))
|
|
7
|
+
|
|
1
8
|
# [2.74.0](https://github.com/dialpad/dialtone-vue/compare/v2.73.0...v2.74.0) (2023-03-30)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -22616,9 +22616,9 @@ var combobox_multi_select_component = normalizeComponent(
|
|
|
22616
22616
|
;// CONCATENATED MODULE: ./recipes/comboboxes/combobox_multi_select/index.js
|
|
22617
22617
|
|
|
22618
22618
|
|
|
22619
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./recipes/buttons/callbar_button/callbar_button.vue?vue&type=template&id=
|
|
22620
|
-
var
|
|
22621
|
-
var
|
|
22619
|
+
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./recipes/buttons/callbar_button/callbar_button.vue?vue&type=template&id=0594eb7a&
|
|
22620
|
+
var callbar_buttonvue_type_template_id_0594eb7a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-tooltip',{attrs:{"id":_vm.id,"offset":[0, -12]},scopedSlots:_vm._u([{key:"anchor",fn:function(){return [_c('span',{class:{ 'd-c-not-allowed': _vm.disabled }},[_c('dt-button',_vm._g({class:_vm.callbarButtonClass,attrs:{"importance":_vm.circle ? 'outlined' : 'clear',"kind":"muted","icon-position":"top","aria-disabled":_vm.disabled,"aria-label":_vm.ariaLabel,"label-class":_vm.callbarButtonTextClass,"width":_vm.buttonWidth}},_vm.$listeners),[_vm._t("default"),_vm._t("icon",null,{"slot":"icon"})],2)],1)]},proxy:true}],null,true)},[_vm._t("tooltip")],2)}
|
|
22621
|
+
var callbar_buttonvue_type_template_id_0594eb7a_staticRenderFns = []
|
|
22622
22622
|
|
|
22623
22623
|
|
|
22624
22624
|
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40[0].rules[0].use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./recipes/buttons/callbar_button/callbar_button.vue?vue&type=script&lang=js&
|
|
@@ -22650,6 +22650,10 @@ var callbar_buttonvue_type_template_id_54dca072_staticRenderFns = []
|
|
|
22650
22650
|
//
|
|
22651
22651
|
//
|
|
22652
22652
|
//
|
|
22653
|
+
//
|
|
22654
|
+
//
|
|
22655
|
+
//
|
|
22656
|
+
//
|
|
22653
22657
|
|
|
22654
22658
|
|
|
22655
22659
|
|
|
@@ -22750,6 +22754,16 @@ const VALID_WIDTH_SIZE = ['sm', 'md', 'lg', 'xl'];
|
|
|
22750
22754
|
type: String,
|
|
22751
22755
|
default: 'xl',
|
|
22752
22756
|
validator: size => VALID_WIDTH_SIZE.includes(size)
|
|
22757
|
+
},
|
|
22758
|
+
|
|
22759
|
+
/**
|
|
22760
|
+
* Whether to show the tooltip text. Sometimes we want to show it when the button is disabled.
|
|
22761
|
+
* @values true, false
|
|
22762
|
+
* @see https://dialpad.design/components/button.html#disabled
|
|
22763
|
+
*/
|
|
22764
|
+
showTooltip: {
|
|
22765
|
+
type: Boolean,
|
|
22766
|
+
default: false
|
|
22753
22767
|
}
|
|
22754
22768
|
},
|
|
22755
22769
|
emits: [
|
|
@@ -22762,10 +22776,12 @@ const VALID_WIDTH_SIZE = ['sm', 'md', 'lg', 'xl'];
|
|
|
22762
22776
|
'click'],
|
|
22763
22777
|
computed: {
|
|
22764
22778
|
callbarButtonClass() {
|
|
22765
|
-
return [this.buttonClass, 'dt-recipe-callbar-button', 'd-px0',
|
|
22779
|
+
return [this.buttonClass, 'dt-recipe-callbar-button', 'd-px0', {
|
|
22766
22780
|
'dt-recipe-callbar-button--circle': this.circle,
|
|
22767
22781
|
'dt-recipe-callbar-button--active': this.active,
|
|
22768
|
-
'dt-recipe-callbar-button--danger': this.danger
|
|
22782
|
+
'dt-recipe-callbar-button--danger': this.danger,
|
|
22783
|
+
'd-btn--disabled': this.disabled,
|
|
22784
|
+
'd-fc-primary': !this.disabled
|
|
22769
22785
|
}];
|
|
22770
22786
|
},
|
|
22771
22787
|
|
|
@@ -22805,8 +22821,8 @@ var callbar_buttonvue_type_style_index_0_lang_less_ = __webpack_require__(759);
|
|
|
22805
22821
|
|
|
22806
22822
|
var callbar_button_component = normalizeComponent(
|
|
22807
22823
|
callbar_button_callbar_buttonvue_type_script_lang_js_,
|
|
22808
|
-
|
|
22809
|
-
|
|
22824
|
+
callbar_buttonvue_type_template_id_0594eb7a_render,
|
|
22825
|
+
callbar_buttonvue_type_template_id_0594eb7a_staticRenderFns,
|
|
22810
22826
|
false,
|
|
22811
22827
|
null,
|
|
22812
22828
|
null,
|
package/dist/dialtone-vue.umd.js
CHANGED
|
@@ -22626,9 +22626,9 @@ var combobox_multi_select_component = normalizeComponent(
|
|
|
22626
22626
|
;// CONCATENATED MODULE: ./recipes/comboboxes/combobox_multi_select/index.js
|
|
22627
22627
|
|
|
22628
22628
|
|
|
22629
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./recipes/buttons/callbar_button/callbar_button.vue?vue&type=template&id=
|
|
22630
|
-
var
|
|
22631
|
-
var
|
|
22629
|
+
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./recipes/buttons/callbar_button/callbar_button.vue?vue&type=template&id=0594eb7a&
|
|
22630
|
+
var callbar_buttonvue_type_template_id_0594eb7a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-tooltip',{attrs:{"id":_vm.id,"offset":[0, -12]},scopedSlots:_vm._u([{key:"anchor",fn:function(){return [_c('span',{class:{ 'd-c-not-allowed': _vm.disabled }},[_c('dt-button',_vm._g({class:_vm.callbarButtonClass,attrs:{"importance":_vm.circle ? 'outlined' : 'clear',"kind":"muted","icon-position":"top","aria-disabled":_vm.disabled,"aria-label":_vm.ariaLabel,"label-class":_vm.callbarButtonTextClass,"width":_vm.buttonWidth}},_vm.$listeners),[_vm._t("default"),_vm._t("icon",null,{"slot":"icon"})],2)],1)]},proxy:true}],null,true)},[_vm._t("tooltip")],2)}
|
|
22631
|
+
var callbar_buttonvue_type_template_id_0594eb7a_staticRenderFns = []
|
|
22632
22632
|
|
|
22633
22633
|
|
|
22634
22634
|
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-80[0].rules[0].use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./recipes/buttons/callbar_button/callbar_button.vue?vue&type=script&lang=js&
|
|
@@ -22660,6 +22660,10 @@ var callbar_buttonvue_type_template_id_54dca072_staticRenderFns = []
|
|
|
22660
22660
|
//
|
|
22661
22661
|
//
|
|
22662
22662
|
//
|
|
22663
|
+
//
|
|
22664
|
+
//
|
|
22665
|
+
//
|
|
22666
|
+
//
|
|
22663
22667
|
|
|
22664
22668
|
|
|
22665
22669
|
|
|
@@ -22760,6 +22764,16 @@ const VALID_WIDTH_SIZE = ['sm', 'md', 'lg', 'xl'];
|
|
|
22760
22764
|
type: String,
|
|
22761
22765
|
default: 'xl',
|
|
22762
22766
|
validator: size => VALID_WIDTH_SIZE.includes(size)
|
|
22767
|
+
},
|
|
22768
|
+
|
|
22769
|
+
/**
|
|
22770
|
+
* Whether to show the tooltip text. Sometimes we want to show it when the button is disabled.
|
|
22771
|
+
* @values true, false
|
|
22772
|
+
* @see https://dialpad.design/components/button.html#disabled
|
|
22773
|
+
*/
|
|
22774
|
+
showTooltip: {
|
|
22775
|
+
type: Boolean,
|
|
22776
|
+
default: false
|
|
22763
22777
|
}
|
|
22764
22778
|
},
|
|
22765
22779
|
emits: [
|
|
@@ -22772,10 +22786,12 @@ const VALID_WIDTH_SIZE = ['sm', 'md', 'lg', 'xl'];
|
|
|
22772
22786
|
'click'],
|
|
22773
22787
|
computed: {
|
|
22774
22788
|
callbarButtonClass() {
|
|
22775
|
-
return [this.buttonClass, 'dt-recipe-callbar-button', 'd-px0',
|
|
22789
|
+
return [this.buttonClass, 'dt-recipe-callbar-button', 'd-px0', {
|
|
22776
22790
|
'dt-recipe-callbar-button--circle': this.circle,
|
|
22777
22791
|
'dt-recipe-callbar-button--active': this.active,
|
|
22778
|
-
'dt-recipe-callbar-button--danger': this.danger
|
|
22792
|
+
'dt-recipe-callbar-button--danger': this.danger,
|
|
22793
|
+
'd-btn--disabled': this.disabled,
|
|
22794
|
+
'd-fc-primary': !this.disabled
|
|
22779
22795
|
}];
|
|
22780
22796
|
},
|
|
22781
22797
|
|
|
@@ -22815,8 +22831,8 @@ var callbar_buttonvue_type_style_index_0_lang_less_ = __webpack_require__(736);
|
|
|
22815
22831
|
|
|
22816
22832
|
var callbar_button_component = normalizeComponent(
|
|
22817
22833
|
callbar_button_callbar_buttonvue_type_script_lang_js_,
|
|
22818
|
-
|
|
22819
|
-
|
|
22834
|
+
callbar_buttonvue_type_template_id_0594eb7a_render,
|
|
22835
|
+
callbar_buttonvue_type_template_id_0594eb7a_staticRenderFns,
|
|
22820
22836
|
false,
|
|
22821
22837
|
null,
|
|
22822
22838
|
null,
|