@dialpad/dialtone-vue 2.29.2 → 2.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dialtone-vue.common.js +112 -6
- package/dist/dialtone-vue.umd.js +112 -6
- package/dist/dialtone-vue.umd.min.js +1 -1
- package/package.json +1 -1
|
@@ -1160,6 +1160,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1160
1160
|
"DtRecipeComboboxMultiSelect": () => (/* reexport */ combobox_multi_select),
|
|
1161
1161
|
"DtRecipeComboboxWithPopover": () => (/* reexport */ combobox_with_popover),
|
|
1162
1162
|
"DtRecipeContactInfo": () => (/* reexport */ contact_info),
|
|
1163
|
+
"DtRecipeGroupedChip": () => (/* reexport */ grouped_chip),
|
|
1163
1164
|
"DtRecipeIvrNode": () => (/* reexport */ ivr_node),
|
|
1164
1165
|
"DtRecipeTopBannerInfo": () => (/* reexport */ top_banner_info),
|
|
1165
1166
|
"DtRootLayout": () => (/* reexport */ root_layout),
|
|
@@ -16404,9 +16405,9 @@ var checkbox_group_component = normalizeComponent(
|
|
|
16404
16405
|
/* harmony default export */ const checkbox_group = (checkbox_group_component.exports);
|
|
16405
16406
|
;// CONCATENATED MODULE: ./components/checkbox_group/index.js
|
|
16406
16407
|
|
|
16407
|
-
;// 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!./components/chip/chip.vue?vue&type=template&id=
|
|
16408
|
-
var
|
|
16409
|
-
var
|
|
16408
|
+
;// 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!./components/chip/chip.vue?vue&type=template&id=2ea4cb7a&
|
|
16409
|
+
var chipvue_type_template_id_2ea4cb7a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:"d-chip"},[_c(_vm.interactive ? 'button' : 'span',_vm._g(_vm._b({tag:"component",class:_vm.chipClasses(),attrs:{"id":_vm.id,"type":_vm.interactive && 'button',"data-qa":"dt-chip","aria-labelledby":_vm.ariaLabel ? undefined : (_vm.id + "-content"),"aria-label":_vm.ariaLabel}},'component',_vm.$attrs,false),_vm.chipListeners),[(_vm.$slots.icon)?_c('span',{staticClass:"d-chip__icon",attrs:{"data-qa":"dt-chip-icon"}},[_vm._t("icon")],2):(_vm.$slots.avatar)?_c('span',{attrs:{"data-qa":"dt-chip-avatar"}},[_vm._t("avatar")],2):_vm._e(),(_vm.$slots.default)?_c('span',{class:['d-truncate', 'd-chip__text', _vm.contentClass],attrs:{"id":(_vm.id + "-content"),"data-qa":"dt-chip-label"}},[_vm._t("default")],2):_vm._e()]),(!_vm.hideClose)?_c('dt-button',_vm._b({class:_vm.chipCloseButtonClasses(),attrs:{"data-qa":"dt-chip-close","aria-label":_vm.closeButtonProps.ariaLabel},on:{"click":function($event){return _vm.$emit('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)}
|
|
16410
|
+
var chipvue_type_template_id_2ea4cb7a_staticRenderFns = []
|
|
16410
16411
|
|
|
16411
16412
|
|
|
16412
16413
|
;// CONCATENATED MODULE: ./components/chip/chip_constants.js
|
|
@@ -16476,6 +16477,7 @@ const CHIP_CLOSE_BUTTON_SIZE_MODIFIERS = {
|
|
|
16476
16477
|
//
|
|
16477
16478
|
//
|
|
16478
16479
|
//
|
|
16480
|
+
//
|
|
16479
16481
|
|
|
16480
16482
|
|
|
16481
16483
|
|
|
@@ -16493,6 +16495,7 @@ const CHIP_CLOSE_BUTTON_SIZE_MODIFIERS = {
|
|
|
16493
16495
|
IconClose: IconClose,
|
|
16494
16496
|
DtButton: button_button
|
|
16495
16497
|
},
|
|
16498
|
+
inheritAttrs: false,
|
|
16496
16499
|
props: {
|
|
16497
16500
|
/**
|
|
16498
16501
|
* A set of props to be passed into the modal's close button. Requires an 'ariaLabel' property.
|
|
@@ -16614,7 +16617,7 @@ const CHIP_CLOSE_BUTTON_SIZE_MODIFIERS = {
|
|
|
16614
16617
|
},
|
|
16615
16618
|
methods: {
|
|
16616
16619
|
chipClasses() {
|
|
16617
|
-
return ['d-chip__label', CHIP_SIZE_MODIFIERS[this.size]];
|
|
16620
|
+
return [this.$attrs['grouped-chip'] ? 'd-chip' : 'd-chip__label', CHIP_SIZE_MODIFIERS[this.size]];
|
|
16618
16621
|
},
|
|
16619
16622
|
|
|
16620
16623
|
chipCloseButtonClasses() {
|
|
@@ -16641,8 +16644,8 @@ const CHIP_CLOSE_BUTTON_SIZE_MODIFIERS = {
|
|
|
16641
16644
|
;
|
|
16642
16645
|
var chip_component = normalizeComponent(
|
|
16643
16646
|
chip_chipvue_type_script_lang_js_,
|
|
16644
|
-
|
|
16645
|
-
|
|
16647
|
+
chipvue_type_template_id_2ea4cb7a_render,
|
|
16648
|
+
chipvue_type_template_id_2ea4cb7a_staticRenderFns,
|
|
16646
16649
|
false,
|
|
16647
16650
|
null,
|
|
16648
16651
|
null,
|
|
@@ -21061,6 +21064,108 @@ var ivr_node_component = normalizeComponent(
|
|
|
21061
21064
|
;// CONCATENATED MODULE: ./recipes/cards/ivr_node/index.js
|
|
21062
21065
|
|
|
21063
21066
|
|
|
21067
|
+
;// 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/chips/grouped_chip/grouped_chip.vue?vue&type=template&id=165f0fc6&
|
|
21068
|
+
var grouped_chipvue_type_template_id_165f0fc6_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"data-qa":"grouped-chip"}},[_c('dt-chip',{staticClass:"d-blr-pill d-bgc-black-050",attrs:{"hide-close":true,"interactive":false,"content-class":"d-fs12","size":"xs","grouped-chip":true},scopedSlots:_vm._u([(_vm.$slots.leftIcon)?{key:"icon",fn:function(){return [(_vm.$slots.leftIcon)?_c('div',{attrs:{"data-qa":"left-grouped-chip-icon"}},[_vm._t("leftIcon")],2):_vm._e()]},proxy:true}:null,{key:"default",fn:function(){return [(_vm.$slots.leftContent)?_c('div',{attrs:{"data-qa":"left-grouped-chip-content"}},[_vm._t("leftContent")],2):_vm._e()]},proxy:true}],null,true)}),_c('dt-chip',{staticClass:"d-brr-pill d-bgc-purple-200 d-mln6",attrs:{"hide-close":true,"interactive":false,"content-class":"d-fs12","size":"xs","grouped-chip":true},scopedSlots:_vm._u([{key:"icon",fn:function(){return [(_vm.$slots.rightIcon)?_c('div',{attrs:{"data-qa":"right-grouped-chip-icon"}},[_vm._t("rightIcon")],2):_vm._e()]},proxy:true},{key:"default",fn:function(){return [(_vm.$slots.rightContent)?_c('div',{attrs:{"data-qa":"right-grouped-chip-content"}},[_vm._t("rightContent")],2):_vm._e()]},proxy:true}],null,true)})],1)}
|
|
21069
|
+
var grouped_chipvue_type_template_id_165f0fc6_staticRenderFns = []
|
|
21070
|
+
|
|
21071
|
+
|
|
21072
|
+
;// 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/chips/grouped_chip/grouped_chip.vue?vue&type=script&lang=js&
|
|
21073
|
+
//
|
|
21074
|
+
//
|
|
21075
|
+
//
|
|
21076
|
+
//
|
|
21077
|
+
//
|
|
21078
|
+
//
|
|
21079
|
+
//
|
|
21080
|
+
//
|
|
21081
|
+
//
|
|
21082
|
+
//
|
|
21083
|
+
//
|
|
21084
|
+
//
|
|
21085
|
+
//
|
|
21086
|
+
//
|
|
21087
|
+
//
|
|
21088
|
+
//
|
|
21089
|
+
//
|
|
21090
|
+
//
|
|
21091
|
+
//
|
|
21092
|
+
//
|
|
21093
|
+
//
|
|
21094
|
+
//
|
|
21095
|
+
//
|
|
21096
|
+
//
|
|
21097
|
+
//
|
|
21098
|
+
//
|
|
21099
|
+
//
|
|
21100
|
+
//
|
|
21101
|
+
//
|
|
21102
|
+
//
|
|
21103
|
+
//
|
|
21104
|
+
//
|
|
21105
|
+
//
|
|
21106
|
+
//
|
|
21107
|
+
//
|
|
21108
|
+
//
|
|
21109
|
+
//
|
|
21110
|
+
//
|
|
21111
|
+
//
|
|
21112
|
+
//
|
|
21113
|
+
//
|
|
21114
|
+
//
|
|
21115
|
+
//
|
|
21116
|
+
//
|
|
21117
|
+
//
|
|
21118
|
+
//
|
|
21119
|
+
//
|
|
21120
|
+
//
|
|
21121
|
+
//
|
|
21122
|
+
//
|
|
21123
|
+
//
|
|
21124
|
+
//
|
|
21125
|
+
//
|
|
21126
|
+
//
|
|
21127
|
+
//
|
|
21128
|
+
//
|
|
21129
|
+
//
|
|
21130
|
+
//
|
|
21131
|
+
//
|
|
21132
|
+
//
|
|
21133
|
+
//
|
|
21134
|
+
//
|
|
21135
|
+
//
|
|
21136
|
+
//
|
|
21137
|
+
|
|
21138
|
+
/* harmony default export */ const grouped_chipvue_type_script_lang_js_ = ({
|
|
21139
|
+
name: 'DtRecipeGroupedChip',
|
|
21140
|
+
components: {
|
|
21141
|
+
DtChip: chip
|
|
21142
|
+
},
|
|
21143
|
+
computed: {}
|
|
21144
|
+
});
|
|
21145
|
+
;// CONCATENATED MODULE: ./recipes/chips/grouped_chip/grouped_chip.vue?vue&type=script&lang=js&
|
|
21146
|
+
/* harmony default export */ const grouped_chip_grouped_chipvue_type_script_lang_js_ = (grouped_chipvue_type_script_lang_js_);
|
|
21147
|
+
;// CONCATENATED MODULE: ./recipes/chips/grouped_chip/grouped_chip.vue
|
|
21148
|
+
|
|
21149
|
+
|
|
21150
|
+
|
|
21151
|
+
|
|
21152
|
+
|
|
21153
|
+
/* normalize component */
|
|
21154
|
+
;
|
|
21155
|
+
var grouped_chip_component = normalizeComponent(
|
|
21156
|
+
grouped_chip_grouped_chipvue_type_script_lang_js_,
|
|
21157
|
+
grouped_chipvue_type_template_id_165f0fc6_render,
|
|
21158
|
+
grouped_chipvue_type_template_id_165f0fc6_staticRenderFns,
|
|
21159
|
+
false,
|
|
21160
|
+
null,
|
|
21161
|
+
null,
|
|
21162
|
+
null
|
|
21163
|
+
|
|
21164
|
+
)
|
|
21165
|
+
|
|
21166
|
+
/* harmony default export */ const grouped_chip = (grouped_chip_component.exports);
|
|
21167
|
+
;// CONCATENATED MODULE: ./recipes/chips/grouped_chip/index.js
|
|
21168
|
+
|
|
21064
21169
|
;// CONCATENATED MODULE: ./common/mixins/index.js
|
|
21065
21170
|
|
|
21066
21171
|
|
|
@@ -21108,6 +21213,7 @@ var ivr_node_component = normalizeComponent(
|
|
|
21108
21213
|
|
|
21109
21214
|
|
|
21110
21215
|
|
|
21216
|
+
|
|
21111
21217
|
// Mixins
|
|
21112
21218
|
|
|
21113
21219
|
// Constants
|
package/dist/dialtone-vue.umd.js
CHANGED
|
@@ -1178,6 +1178,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
1178
1178
|
"DtRecipeComboboxMultiSelect": () => (/* reexport */ combobox_multi_select),
|
|
1179
1179
|
"DtRecipeComboboxWithPopover": () => (/* reexport */ combobox_with_popover),
|
|
1180
1180
|
"DtRecipeContactInfo": () => (/* reexport */ contact_info),
|
|
1181
|
+
"DtRecipeGroupedChip": () => (/* reexport */ grouped_chip),
|
|
1181
1182
|
"DtRecipeIvrNode": () => (/* reexport */ ivr_node),
|
|
1182
1183
|
"DtRecipeTopBannerInfo": () => (/* reexport */ top_banner_info),
|
|
1183
1184
|
"DtRootLayout": () => (/* reexport */ root_layout),
|
|
@@ -16422,9 +16423,9 @@ var checkbox_group_component = normalizeComponent(
|
|
|
16422
16423
|
/* harmony default export */ const checkbox_group = (checkbox_group_component.exports);
|
|
16423
16424
|
;// CONCATENATED MODULE: ./components/checkbox_group/index.js
|
|
16424
16425
|
|
|
16425
|
-
;// 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!./components/chip/chip.vue?vue&type=template&id=
|
|
16426
|
-
var
|
|
16427
|
-
var
|
|
16426
|
+
;// 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!./components/chip/chip.vue?vue&type=template&id=2ea4cb7a&
|
|
16427
|
+
var chipvue_type_template_id_2ea4cb7a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',{staticClass:"d-chip"},[_c(_vm.interactive ? 'button' : 'span',_vm._g(_vm._b({tag:"component",class:_vm.chipClasses(),attrs:{"id":_vm.id,"type":_vm.interactive && 'button',"data-qa":"dt-chip","aria-labelledby":_vm.ariaLabel ? undefined : (_vm.id + "-content"),"aria-label":_vm.ariaLabel}},'component',_vm.$attrs,false),_vm.chipListeners),[(_vm.$slots.icon)?_c('span',{staticClass:"d-chip__icon",attrs:{"data-qa":"dt-chip-icon"}},[_vm._t("icon")],2):(_vm.$slots.avatar)?_c('span',{attrs:{"data-qa":"dt-chip-avatar"}},[_vm._t("avatar")],2):_vm._e(),(_vm.$slots.default)?_c('span',{class:['d-truncate', 'd-chip__text', _vm.contentClass],attrs:{"id":(_vm.id + "-content"),"data-qa":"dt-chip-label"}},[_vm._t("default")],2):_vm._e()]),(!_vm.hideClose)?_c('dt-button',_vm._b({class:_vm.chipCloseButtonClasses(),attrs:{"data-qa":"dt-chip-close","aria-label":_vm.closeButtonProps.ariaLabel},on:{"click":function($event){return _vm.$emit('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)}
|
|
16428
|
+
var chipvue_type_template_id_2ea4cb7a_staticRenderFns = []
|
|
16428
16429
|
|
|
16429
16430
|
|
|
16430
16431
|
;// CONCATENATED MODULE: ./components/chip/chip_constants.js
|
|
@@ -16494,6 +16495,7 @@ const CHIP_CLOSE_BUTTON_SIZE_MODIFIERS = {
|
|
|
16494
16495
|
//
|
|
16495
16496
|
//
|
|
16496
16497
|
//
|
|
16498
|
+
//
|
|
16497
16499
|
|
|
16498
16500
|
|
|
16499
16501
|
|
|
@@ -16511,6 +16513,7 @@ const CHIP_CLOSE_BUTTON_SIZE_MODIFIERS = {
|
|
|
16511
16513
|
IconClose: IconClose,
|
|
16512
16514
|
DtButton: button_button
|
|
16513
16515
|
},
|
|
16516
|
+
inheritAttrs: false,
|
|
16514
16517
|
props: {
|
|
16515
16518
|
/**
|
|
16516
16519
|
* A set of props to be passed into the modal's close button. Requires an 'ariaLabel' property.
|
|
@@ -16632,7 +16635,7 @@ const CHIP_CLOSE_BUTTON_SIZE_MODIFIERS = {
|
|
|
16632
16635
|
},
|
|
16633
16636
|
methods: {
|
|
16634
16637
|
chipClasses() {
|
|
16635
|
-
return ['d-chip__label', CHIP_SIZE_MODIFIERS[this.size]];
|
|
16638
|
+
return [this.$attrs['grouped-chip'] ? 'd-chip' : 'd-chip__label', CHIP_SIZE_MODIFIERS[this.size]];
|
|
16636
16639
|
},
|
|
16637
16640
|
|
|
16638
16641
|
chipCloseButtonClasses() {
|
|
@@ -16659,8 +16662,8 @@ const CHIP_CLOSE_BUTTON_SIZE_MODIFIERS = {
|
|
|
16659
16662
|
;
|
|
16660
16663
|
var chip_component = normalizeComponent(
|
|
16661
16664
|
chip_chipvue_type_script_lang_js_,
|
|
16662
|
-
|
|
16663
|
-
|
|
16665
|
+
chipvue_type_template_id_2ea4cb7a_render,
|
|
16666
|
+
chipvue_type_template_id_2ea4cb7a_staticRenderFns,
|
|
16664
16667
|
false,
|
|
16665
16668
|
null,
|
|
16666
16669
|
null,
|
|
@@ -21079,6 +21082,108 @@ var ivr_node_component = normalizeComponent(
|
|
|
21079
21082
|
;// CONCATENATED MODULE: ./recipes/cards/ivr_node/index.js
|
|
21080
21083
|
|
|
21081
21084
|
|
|
21085
|
+
;// 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/chips/grouped_chip/grouped_chip.vue?vue&type=template&id=165f0fc6&
|
|
21086
|
+
var grouped_chipvue_type_template_id_165f0fc6_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{attrs:{"data-qa":"grouped-chip"}},[_c('dt-chip',{staticClass:"d-blr-pill d-bgc-black-050",attrs:{"hide-close":true,"interactive":false,"content-class":"d-fs12","size":"xs","grouped-chip":true},scopedSlots:_vm._u([(_vm.$slots.leftIcon)?{key:"icon",fn:function(){return [(_vm.$slots.leftIcon)?_c('div',{attrs:{"data-qa":"left-grouped-chip-icon"}},[_vm._t("leftIcon")],2):_vm._e()]},proxy:true}:null,{key:"default",fn:function(){return [(_vm.$slots.leftContent)?_c('div',{attrs:{"data-qa":"left-grouped-chip-content"}},[_vm._t("leftContent")],2):_vm._e()]},proxy:true}],null,true)}),_c('dt-chip',{staticClass:"d-brr-pill d-bgc-purple-200 d-mln6",attrs:{"hide-close":true,"interactive":false,"content-class":"d-fs12","size":"xs","grouped-chip":true},scopedSlots:_vm._u([{key:"icon",fn:function(){return [(_vm.$slots.rightIcon)?_c('div',{attrs:{"data-qa":"right-grouped-chip-icon"}},[_vm._t("rightIcon")],2):_vm._e()]},proxy:true},{key:"default",fn:function(){return [(_vm.$slots.rightContent)?_c('div',{attrs:{"data-qa":"right-grouped-chip-content"}},[_vm._t("rightContent")],2):_vm._e()]},proxy:true}],null,true)})],1)}
|
|
21087
|
+
var grouped_chipvue_type_template_id_165f0fc6_staticRenderFns = []
|
|
21088
|
+
|
|
21089
|
+
|
|
21090
|
+
;// 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/chips/grouped_chip/grouped_chip.vue?vue&type=script&lang=js&
|
|
21091
|
+
//
|
|
21092
|
+
//
|
|
21093
|
+
//
|
|
21094
|
+
//
|
|
21095
|
+
//
|
|
21096
|
+
//
|
|
21097
|
+
//
|
|
21098
|
+
//
|
|
21099
|
+
//
|
|
21100
|
+
//
|
|
21101
|
+
//
|
|
21102
|
+
//
|
|
21103
|
+
//
|
|
21104
|
+
//
|
|
21105
|
+
//
|
|
21106
|
+
//
|
|
21107
|
+
//
|
|
21108
|
+
//
|
|
21109
|
+
//
|
|
21110
|
+
//
|
|
21111
|
+
//
|
|
21112
|
+
//
|
|
21113
|
+
//
|
|
21114
|
+
//
|
|
21115
|
+
//
|
|
21116
|
+
//
|
|
21117
|
+
//
|
|
21118
|
+
//
|
|
21119
|
+
//
|
|
21120
|
+
//
|
|
21121
|
+
//
|
|
21122
|
+
//
|
|
21123
|
+
//
|
|
21124
|
+
//
|
|
21125
|
+
//
|
|
21126
|
+
//
|
|
21127
|
+
//
|
|
21128
|
+
//
|
|
21129
|
+
//
|
|
21130
|
+
//
|
|
21131
|
+
//
|
|
21132
|
+
//
|
|
21133
|
+
//
|
|
21134
|
+
//
|
|
21135
|
+
//
|
|
21136
|
+
//
|
|
21137
|
+
//
|
|
21138
|
+
//
|
|
21139
|
+
//
|
|
21140
|
+
//
|
|
21141
|
+
//
|
|
21142
|
+
//
|
|
21143
|
+
//
|
|
21144
|
+
//
|
|
21145
|
+
//
|
|
21146
|
+
//
|
|
21147
|
+
//
|
|
21148
|
+
//
|
|
21149
|
+
//
|
|
21150
|
+
//
|
|
21151
|
+
//
|
|
21152
|
+
//
|
|
21153
|
+
//
|
|
21154
|
+
//
|
|
21155
|
+
|
|
21156
|
+
/* harmony default export */ const grouped_chipvue_type_script_lang_js_ = ({
|
|
21157
|
+
name: 'DtRecipeGroupedChip',
|
|
21158
|
+
components: {
|
|
21159
|
+
DtChip: chip
|
|
21160
|
+
},
|
|
21161
|
+
computed: {}
|
|
21162
|
+
});
|
|
21163
|
+
;// CONCATENATED MODULE: ./recipes/chips/grouped_chip/grouped_chip.vue?vue&type=script&lang=js&
|
|
21164
|
+
/* harmony default export */ const grouped_chip_grouped_chipvue_type_script_lang_js_ = (grouped_chipvue_type_script_lang_js_);
|
|
21165
|
+
;// CONCATENATED MODULE: ./recipes/chips/grouped_chip/grouped_chip.vue
|
|
21166
|
+
|
|
21167
|
+
|
|
21168
|
+
|
|
21169
|
+
|
|
21170
|
+
|
|
21171
|
+
/* normalize component */
|
|
21172
|
+
;
|
|
21173
|
+
var grouped_chip_component = normalizeComponent(
|
|
21174
|
+
grouped_chip_grouped_chipvue_type_script_lang_js_,
|
|
21175
|
+
grouped_chipvue_type_template_id_165f0fc6_render,
|
|
21176
|
+
grouped_chipvue_type_template_id_165f0fc6_staticRenderFns,
|
|
21177
|
+
false,
|
|
21178
|
+
null,
|
|
21179
|
+
null,
|
|
21180
|
+
null
|
|
21181
|
+
|
|
21182
|
+
)
|
|
21183
|
+
|
|
21184
|
+
/* harmony default export */ const grouped_chip = (grouped_chip_component.exports);
|
|
21185
|
+
;// CONCATENATED MODULE: ./recipes/chips/grouped_chip/index.js
|
|
21186
|
+
|
|
21082
21187
|
;// CONCATENATED MODULE: ./common/mixins/index.js
|
|
21083
21188
|
|
|
21084
21189
|
|
|
@@ -21126,6 +21231,7 @@ var ivr_node_component = normalizeComponent(
|
|
|
21126
21231
|
|
|
21127
21232
|
|
|
21128
21233
|
|
|
21234
|
+
|
|
21129
21235
|
// Mixins
|
|
21130
21236
|
|
|
21131
21237
|
// Constants
|