@dialpad/dialtone-vue 2.41.0 → 2.42.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.umd.js
CHANGED
|
@@ -3936,9 +3936,9 @@ var card_component = normalizeComponent(
|
|
|
3936
3936
|
/* harmony default export */ const card = (card_component.exports);
|
|
3937
3937
|
;// CONCATENATED MODULE: ./components/card/index.js
|
|
3938
3938
|
|
|
3939
|
-
;// 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/combobox/combobox.vue?vue&type=template&id=
|
|
3940
|
-
var
|
|
3941
|
-
var
|
|
3939
|
+
;// 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/combobox/combobox.vue?vue&type=template&id=3595da7e&
|
|
3940
|
+
var comboboxvue_type_template_id_3595da7e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{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.onKeyValidation($event, 'onEscapeKey')},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }if($event.ctrlKey||$event.shiftKey||$event.altKey||$event.metaKey){ return null; }return _vm.onKeyValidation($event, 'onEnterKey')},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.onKeyValidation($event, 'onUpKey')},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.onKeyValidation($event, 'onDownKey')},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"home",undefined,$event.key,undefined)){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onKeyValidation($event, 'onHomeKey')},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"end",undefined,$event.key,undefined)){ return null; }$event.stopPropagation();$event.preventDefault();return _vm.onKeyValidation($event, 'onEndKey')}]}},[_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,"!mousemove":function($event){return _vm.onMouseHighlight.apply(null, arguments)}}},[(_vm.loading && !_vm.listRenderedOutside)?_c('combobox-loading-list',_vm._b({},'combobox-loading-list',_vm.listProps,false)):(_vm.emptyList && (_vm.emptyStateMessage || _vm.$slots.emptyListItem) && !_vm.listRenderedOutside)?_c('combobox-empty-list',_vm._b({attrs:{"message":_vm.emptyStateMessage,"item-class":_vm.emptyStateClass}},'combobox-empty-list',_vm.listProps,false),[_vm._t("emptyListItem")],2):_vm._t("list",null,{"listProps":_vm.listProps,"opened":_vm.onOpen,"clearHighlightIndex":_vm.clearHighlightIndex})],2):_vm._e()])}
|
|
3941
|
+
var comboboxvue_type_template_id_3595da7e_staticRenderFns = []
|
|
3942
3942
|
|
|
3943
3943
|
|
|
3944
3944
|
;// CONCATENATED MODULE: ./common/mixins/dom.js
|
|
@@ -5720,6 +5720,14 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5720
5720
|
)
|
|
5721
5721
|
|
|
5722
5722
|
/* harmony default export */ const combobox_empty_list = (combobox_empty_list_component.exports);
|
|
5723
|
+
;// CONCATENATED MODULE: ./components/combobox/combobox_constants.js
|
|
5724
|
+
const LABEL_SIZES = {
|
|
5725
|
+
EXTRA_SMALL: 'xs',
|
|
5726
|
+
SMALL: 'sm',
|
|
5727
|
+
DEFAULT: 'md',
|
|
5728
|
+
LARGE: 'lg',
|
|
5729
|
+
EXTRA_LARGE: 'xl'
|
|
5730
|
+
};
|
|
5723
5731
|
;// 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!./components/combobox/combobox.vue?vue&type=script&lang=js&
|
|
5724
5732
|
//
|
|
5725
5733
|
//
|
|
@@ -5773,6 +5781,7 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5773
5781
|
|
|
5774
5782
|
|
|
5775
5783
|
|
|
5784
|
+
|
|
5776
5785
|
/**
|
|
5777
5786
|
* A combobox is a semantic component that displays an input element combined with a listbox,
|
|
5778
5787
|
* which enables the user to select items from the list.
|
|
@@ -5796,13 +5805,40 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5796
5805
|
})],
|
|
5797
5806
|
props: {
|
|
5798
5807
|
/**
|
|
5799
|
-
* String to use for the
|
|
5808
|
+
* String to use for the input label.
|
|
5800
5809
|
*/
|
|
5801
|
-
|
|
5810
|
+
label: {
|
|
5802
5811
|
type: String,
|
|
5803
5812
|
required: true
|
|
5804
5813
|
},
|
|
5805
5814
|
|
|
5815
|
+
/**
|
|
5816
|
+
* Determines visibility of input label.
|
|
5817
|
+
* @values true, false
|
|
5818
|
+
*/
|
|
5819
|
+
labelVisible: {
|
|
5820
|
+
type: Boolean,
|
|
5821
|
+
default: true
|
|
5822
|
+
},
|
|
5823
|
+
|
|
5824
|
+
/**
|
|
5825
|
+
* Size of the input, one of `xs`, `sm`, `md`, `lg`, `xl`
|
|
5826
|
+
* @values null, xs, sm, md, lg, xl
|
|
5827
|
+
*/
|
|
5828
|
+
size: {
|
|
5829
|
+
type: String,
|
|
5830
|
+
default: null,
|
|
5831
|
+
validator: t => Object.values(LABEL_SIZES).includes(t)
|
|
5832
|
+
},
|
|
5833
|
+
|
|
5834
|
+
/**
|
|
5835
|
+
* Description for the input
|
|
5836
|
+
*/
|
|
5837
|
+
description: {
|
|
5838
|
+
type: String,
|
|
5839
|
+
default: ''
|
|
5840
|
+
},
|
|
5841
|
+
|
|
5806
5842
|
/**
|
|
5807
5843
|
* Sets an ID on the list element of the component. Used by several aria attributes
|
|
5808
5844
|
* as well as when deriving the IDs for each item.
|
|
@@ -5937,7 +5973,12 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5937
5973
|
computed: {
|
|
5938
5974
|
inputProps() {
|
|
5939
5975
|
return {
|
|
5976
|
+
label: this.label,
|
|
5977
|
+
labelVisible: this.labelVisible,
|
|
5978
|
+
size: this.size,
|
|
5979
|
+
description: this.description,
|
|
5940
5980
|
role: 'combobox',
|
|
5981
|
+
'aria-label': this.label,
|
|
5941
5982
|
'aria-expanded': this.showList.toString(),
|
|
5942
5983
|
'aria-owns': this.listId,
|
|
5943
5984
|
'aria-haspopup': 'listbox',
|
|
@@ -5953,7 +5994,7 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5953
5994
|
// The list has to be positioned relatively so that the auto-scroll can
|
|
5954
5995
|
// calculate the correct offset for the list items.
|
|
5955
5996
|
class: 'd-ps-relative',
|
|
5956
|
-
'aria-label': this.
|
|
5997
|
+
'aria-label': this.label
|
|
5957
5998
|
};
|
|
5958
5999
|
},
|
|
5959
6000
|
|
|
@@ -6110,8 +6151,8 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
6110
6151
|
;
|
|
6111
6152
|
var combobox_component = normalizeComponent(
|
|
6112
6153
|
combobox_comboboxvue_type_script_lang_js_,
|
|
6113
|
-
|
|
6114
|
-
|
|
6154
|
+
comboboxvue_type_template_id_3595da7e_render,
|
|
6155
|
+
comboboxvue_type_template_id_3595da7e_staticRenderFns,
|
|
6115
6156
|
false,
|
|
6116
6157
|
null,
|
|
6117
6158
|
null,
|
|
@@ -6122,12 +6163,12 @@ var combobox_component = normalizeComponent(
|
|
|
6122
6163
|
/* harmony default export */ const combobox = (combobox_component.exports);
|
|
6123
6164
|
;// CONCATENATED MODULE: ./components/combobox/index.js
|
|
6124
6165
|
|
|
6125
|
-
;// 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/collapsible/collapsible.vue?vue&type=template&id=
|
|
6126
|
-
var
|
|
6166
|
+
;// 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/collapsible/collapsible.vue?vue&type=template&id=85d2157c&
|
|
6167
|
+
var collapsiblevue_type_template_id_85d2157c_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c(_vm.elementType,_vm._g({ref:"collapsible",tag:"component"},_vm.$listeners),[_c('div',{ref:"anchor",class:[
|
|
6127
6168
|
'd-dt-collapsibe__anchor',
|
|
6128
6169
|
_vm.anchorClass ],attrs:{"id":!_vm.ariaLabelledBy && _vm.labelledBy}},[_vm._t("anchor",function(){return [_c('dt-button',{style:({
|
|
6129
6170
|
'width': _vm.maxWidth,
|
|
6130
|
-
}),attrs:{"importance":"clear","kind":"muted","aria-controls":_vm.id,"aria-expanded":("" + _vm.isOpen)},on:{"click":_vm.defaultToggleOpen}},[_c('dt-icon',{staticClass:"d-icon d-icon--size-300 d-mr8 d-fl-shrink0",attrs:{"name":_vm.isOpen ? 'chevron-down' : 'chevron-right'}}),_c('span',{staticClass:"d-mr-auto d-truncate",attrs:{"title":_vm.anchorText}},[_vm._v(" "+_vm._s(_vm.anchorText)+" ")])],1)]},{"attrs":{
|
|
6171
|
+
}),attrs:{"importance":"clear","kind":"muted","aria-controls":_vm.id,"aria-expanded":("" + _vm.isOpen),"aria-label":_vm.ariaLabel},on:{"click":_vm.defaultToggleOpen}},[_c('dt-icon',{staticClass:"d-icon d-icon--size-300 d-mr8 d-fl-shrink0",attrs:{"name":_vm.isOpen ? 'chevron-down' : 'chevron-right'}}),_c('span',{staticClass:"d-mr-auto d-truncate",attrs:{"title":_vm.anchorText}},[_vm._v(" "+_vm._s(_vm.anchorText)+" ")])],1)]},{"attrs":{
|
|
6131
6172
|
'aria-controls': _vm.id,
|
|
6132
6173
|
'aria-expanded': _vm.isOpen.toString(),
|
|
6133
6174
|
'role': 'button',
|
|
@@ -6136,13 +6177,13 @@ var collapsiblevue_type_template_id_7f94e9c4_render = function () {var _vm=this;
|
|
|
6136
6177
|
_vm.contentClass ],style:({
|
|
6137
6178
|
'max-height': _vm.maxHeight,
|
|
6138
6179
|
'max-width': _vm.maxWidth,
|
|
6139
|
-
}),attrs:{"id":_vm.id,"aria-hidden":("" + (!_vm.isOpen)),"aria-labelledby":_vm.labelledBy,"
|
|
6140
|
-
var
|
|
6180
|
+
}),attrs:{"id":_vm.id,"aria-hidden":("" + (!_vm.isOpen && !_vm.hasContentOnCollapse)),"aria-labelledby":_vm.labelledBy,"is-expanded":_vm.isOpen,"element-type":_vm.contentElementType,"tabindex":"-1","appear":""},scopedSlots:_vm._u([{key:"contentOnExpanded",fn:function(){return [_vm._t("contentOnExpanded")]},proxy:true},{key:"contentOnCollapsed",fn:function(){return [_vm._t("contentOnCollapsed")]},proxy:true}],null,true)},_vm.$listeners))],1)}
|
|
6181
|
+
var collapsiblevue_type_template_id_85d2157c_staticRenderFns = []
|
|
6141
6182
|
|
|
6142
6183
|
|
|
6143
|
-
;// 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/collapsible/collapsible_lazy_show.vue?vue&type=template&id=
|
|
6144
|
-
var
|
|
6145
|
-
var
|
|
6184
|
+
;// 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/collapsible/collapsible_lazy_show.vue?vue&type=template&id=cc3472b8&
|
|
6185
|
+
var collapsible_lazy_showvue_type_template_id_cc3472b8_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('transition',_vm._g({attrs:{"appear":_vm.appear,"mode":"out-in","enter-active-class":"enter-active","leave-active-class":"leave-active"},on:{"before-enter":_vm.beforeEnter,"enter":_vm.enter,"after-enter":_vm.afterEnter,"before-leave":_vm.beforeLeave,"leave":_vm.leave,"after-leave":_vm.afterLeave}},_vm.$listeners),[((_vm.isExpanded && _vm.$slots.contentOnExpanded))?_c(_vm.elementType,_vm._g({key:"onOpen",tag:"component"},_vm.$listeners),[_vm._t("contentOnExpanded")],2):((!_vm.isExpanded && _vm.$slots.contentOnCollapsed))?_c(_vm.elementType,_vm._g({key:"onClose",tag:"component"},_vm.$listeners),[_vm._t("contentOnCollapsed")],2):_vm._e()],1)}
|
|
6186
|
+
var collapsible_lazy_showvue_type_template_id_cc3472b8_staticRenderFns = []
|
|
6146
6187
|
|
|
6147
6188
|
|
|
6148
6189
|
;// 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!./components/collapsible/collapsible_lazy_show.vue?vue&type=script&lang=js&
|
|
@@ -6171,6 +6212,32 @@ var collapsible_lazy_showvue_type_template_id_2bfe7a0c_staticRenderFns = []
|
|
|
6171
6212
|
//
|
|
6172
6213
|
//
|
|
6173
6214
|
//
|
|
6215
|
+
//
|
|
6216
|
+
//
|
|
6217
|
+
//
|
|
6218
|
+
//
|
|
6219
|
+
//
|
|
6220
|
+
//
|
|
6221
|
+
//
|
|
6222
|
+
//
|
|
6223
|
+
//
|
|
6224
|
+
//
|
|
6225
|
+
//
|
|
6226
|
+
//
|
|
6227
|
+
//
|
|
6228
|
+
//
|
|
6229
|
+
//
|
|
6230
|
+
//
|
|
6231
|
+
//
|
|
6232
|
+
//
|
|
6233
|
+
//
|
|
6234
|
+
//
|
|
6235
|
+
//
|
|
6236
|
+
//
|
|
6237
|
+
//
|
|
6238
|
+
//
|
|
6239
|
+
//
|
|
6240
|
+
//
|
|
6174
6241
|
/* harmony default export */ const collapsible_lazy_showvue_type_script_lang_js_ = ({
|
|
6175
6242
|
name: 'DtCollapsibleLazyShow',
|
|
6176
6243
|
|
|
@@ -6181,7 +6248,7 @@ var collapsible_lazy_showvue_type_template_id_2bfe7a0c_staticRenderFns = []
|
|
|
6181
6248
|
/**
|
|
6182
6249
|
* Whether the child slot is shown.
|
|
6183
6250
|
*/
|
|
6184
|
-
|
|
6251
|
+
isExpanded: {
|
|
6185
6252
|
type: Boolean,
|
|
6186
6253
|
default: null
|
|
6187
6254
|
},
|
|
@@ -6202,29 +6269,7 @@ var collapsible_lazy_showvue_type_template_id_2bfe7a0c_staticRenderFns = []
|
|
|
6202
6269
|
default: 'div'
|
|
6203
6270
|
}
|
|
6204
6271
|
},
|
|
6205
|
-
|
|
6206
|
-
/******************
|
|
6207
|
-
* DATA *
|
|
6208
|
-
******************/
|
|
6209
|
-
data() {
|
|
6210
|
-
return {
|
|
6211
|
-
initialized: !!this.show
|
|
6212
|
-
};
|
|
6213
|
-
},
|
|
6214
|
-
|
|
6215
|
-
/******************
|
|
6216
|
-
* WATCH *
|
|
6217
|
-
******************/
|
|
6218
|
-
watch: {
|
|
6219
|
-
show: function (newValue) {
|
|
6220
|
-
if (!newValue || this.initialized) return;
|
|
6221
|
-
this.initialized = true;
|
|
6222
|
-
}
|
|
6223
|
-
},
|
|
6224
6272
|
methods: {
|
|
6225
|
-
/**
|
|
6226
|
-
* @param {HTMLElement} element
|
|
6227
|
-
*/
|
|
6228
6273
|
beforeEnter(element) {
|
|
6229
6274
|
requestAnimationFrame(() => {
|
|
6230
6275
|
if (!element.style.height) {
|
|
@@ -6301,8 +6346,8 @@ var collapsible_lazy_showvue_type_style_index_0_lang_css_ = __webpack_require__(
|
|
|
6301
6346
|
|
|
6302
6347
|
var collapsible_lazy_show_component = normalizeComponent(
|
|
6303
6348
|
collapsible_collapsible_lazy_showvue_type_script_lang_js_,
|
|
6304
|
-
|
|
6305
|
-
|
|
6349
|
+
collapsible_lazy_showvue_type_template_id_cc3472b8_render,
|
|
6350
|
+
collapsible_lazy_showvue_type_template_id_cc3472b8_staticRenderFns,
|
|
6306
6351
|
false,
|
|
6307
6352
|
null,
|
|
6308
6353
|
null,
|
|
@@ -6494,6 +6539,12 @@ var lazy_show_component = normalizeComponent(
|
|
|
6494
6539
|
//
|
|
6495
6540
|
//
|
|
6496
6541
|
//
|
|
6542
|
+
//
|
|
6543
|
+
//
|
|
6544
|
+
//
|
|
6545
|
+
//
|
|
6546
|
+
//
|
|
6547
|
+
//
|
|
6497
6548
|
|
|
6498
6549
|
|
|
6499
6550
|
|
|
@@ -6597,7 +6648,7 @@ var lazy_show_component = normalizeComponent(
|
|
|
6597
6648
|
},
|
|
6598
6649
|
|
|
6599
6650
|
/**
|
|
6600
|
-
* Label on the
|
|
6651
|
+
* Label on the anchor. Should provide this or ariaLabelledBy but not both.
|
|
6601
6652
|
*/
|
|
6602
6653
|
ariaLabel: {
|
|
6603
6654
|
type: String,
|
|
@@ -6638,6 +6689,10 @@ var lazy_show_component = normalizeComponent(
|
|
|
6638
6689
|
// aria-labelledby should be set only if aria-labelledby is passed as a prop, or if
|
|
6639
6690
|
// there is no aria-label and the labelledby should point to the anchor
|
|
6640
6691
|
return this.ariaLabelledBy || !this.ariaLabel && getUniqueString('DtCollapsible__anchor');
|
|
6692
|
+
},
|
|
6693
|
+
|
|
6694
|
+
hasContentOnCollapse() {
|
|
6695
|
+
return !!this.$slots.contentOnCollapsed;
|
|
6641
6696
|
}
|
|
6642
6697
|
|
|
6643
6698
|
},
|
|
@@ -6657,32 +6712,16 @@ var lazy_show_component = normalizeComponent(
|
|
|
6657
6712
|
},
|
|
6658
6713
|
|
|
6659
6714
|
methods: {
|
|
6660
|
-
onLeaveTransitionComplete() {
|
|
6661
|
-
this.$emit('opened', false);
|
|
6662
|
-
|
|
6663
|
-
if (this.open !== null) {
|
|
6664
|
-
this.$emit('update:open', false);
|
|
6665
|
-
}
|
|
6666
|
-
},
|
|
6667
|
-
|
|
6668
|
-
onEnterTransitionComplete() {
|
|
6669
|
-
this.$emit('opened', true, this.$refs.content);
|
|
6670
|
-
|
|
6671
|
-
if (this.open !== null) {
|
|
6672
|
-
this.$emit('update:open', true);
|
|
6673
|
-
}
|
|
6674
|
-
},
|
|
6675
|
-
|
|
6676
6715
|
defaultToggleOpen() {
|
|
6716
|
+
this.$emit('opened', !this.isOpen);
|
|
6717
|
+
|
|
6677
6718
|
if (this.open === null) {
|
|
6678
|
-
this.
|
|
6719
|
+
this.isOpen = !this.isOpen;
|
|
6720
|
+
} else {
|
|
6721
|
+
this.$emit('update:open', !this.isOpen);
|
|
6679
6722
|
}
|
|
6680
6723
|
},
|
|
6681
6724
|
|
|
6682
|
-
toggleOpen() {
|
|
6683
|
-
this.isOpen = !this.isOpen;
|
|
6684
|
-
},
|
|
6685
|
-
|
|
6686
6725
|
validateProperAnchor() {
|
|
6687
6726
|
if (!this.anchorText && !this.$scopedSlots.anchor) {
|
|
6688
6727
|
console.error('anchor text and anchor slot content cannot both be falsy');
|
|
@@ -6703,8 +6742,8 @@ var lazy_show_component = normalizeComponent(
|
|
|
6703
6742
|
;
|
|
6704
6743
|
var collapsible_component = normalizeComponent(
|
|
6705
6744
|
collapsible_collapsiblevue_type_script_lang_js_,
|
|
6706
|
-
|
|
6707
|
-
|
|
6745
|
+
collapsiblevue_type_template_id_85d2157c_render,
|
|
6746
|
+
collapsiblevue_type_template_id_85d2157c_staticRenderFns,
|
|
6708
6747
|
false,
|
|
6709
6748
|
null,
|
|
6710
6749
|
null,
|
|
@@ -13003,8 +13042,8 @@ var dropdown_separator_component = normalizeComponent(
|
|
|
13003
13042
|
|
|
13004
13043
|
|
|
13005
13044
|
|
|
13006
|
-
;// 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/input/input.vue?vue&type=template&id=
|
|
13007
|
-
var
|
|
13045
|
+
;// 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/input/input.vue?vue&type=template&id=356ee040&
|
|
13046
|
+
var inputvue_type_template_id_356ee040_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",function(){return [(_vm.labelVisible && _vm.label)?_c('div',{ref:"label",class:[
|
|
13008
13047
|
'base-input__label-text',
|
|
13009
13048
|
'd-label',
|
|
13010
13049
|
_vm.labelSizeClasses[_vm.size] ],attrs:{"data-qa":"dt-input-label"}},[_vm._v(" "+_vm._s(_vm.label)+" ")]):_vm._e()]}),(_vm.$slots.description || _vm.description || _vm.shouldValidateLength)?_c('div',{ref:"description",class:[
|
|
@@ -13013,7 +13052,7 @@ var inputvue_type_template_id_868d44b4_render = function () {var _vm=this;var _h
|
|
|
13013
13052
|
'd-fd-column',
|
|
13014
13053
|
_vm.descriptionSizeClasses[_vm.size] ],attrs:{"id":_vm.descriptionKey,"data-qa":"dt-input-description"}},[(_vm.$slots.description || _vm.description)?_c('div',[_vm._t("description",function(){return [_vm._v(_vm._s(_vm.description))]})],2):_vm._e(),(_vm.shouldValidateLength)?_c('div',{class:[
|
|
13015
13054
|
'd-mb2' ],attrs:{"data-qa":"dt-input-length-description"}},[_vm._v(" "+_vm._s(_vm.validationProps.length.description)+" ")]):_vm._e()]):_vm._e(),_c('div',{class:_vm.inputWrapperClasses(),attrs:{"read-only":_vm.disabled}},[(_vm.$slots.leftIcon)?_c('span',{class:_vm.inputIconClasses('left'),attrs:{"data-qa":"dt-input-left-icon-wrapper"},on:{"focusout":_vm.onBlur}},[_vm._t("leftIcon")],2):_vm._e(),(_vm.isTextarea)?_c('textarea',_vm._g(_vm._b({ref:"input",class:_vm.inputClasses(),attrs:{"name":_vm.name,"disabled":_vm.disabled,"maxlength":_vm.shouldLimitMaxLength ? _vm.validationProps.length.max : null,"data-qa":"dt-input-input"},domProps:{"value":_vm.value}},'textarea',_vm.$attrs,false),_vm.inputListeners)):_c('input',_vm._g(_vm._b({ref:"input",class:_vm.inputClasses(),attrs:{"name":_vm.name,"type":_vm.type,"disabled":_vm.disabled,"maxlength":_vm.shouldLimitMaxLength ? _vm.validationProps.length.max : null,"data-qa":"dt-input-input"},domProps:{"value":_vm.value}},'input',_vm.$attrs,false),_vm.inputListeners)),(_vm.$slots.rightIcon)?_c('span',{class:_vm.inputIconClasses('right'),attrs:{"data-qa":"dt-input-right-icon-wrapper"},on:{"focusout":_vm.onBlur}},[_vm._t("rightIcon")],2):_vm._e()])],2),_c('dt-validation-messages',_vm._b({class:_vm.messagesClass,attrs:{"validation-messages":_vm.validationMessages,"show-messages":_vm.showMessages,"data-qa":"dt-input-messages"}},'dt-validation-messages',_vm.messagesChildProps,false))],1)}
|
|
13016
|
-
var
|
|
13055
|
+
var inputvue_type_template_id_356ee040_staticRenderFns = []
|
|
13017
13056
|
|
|
13018
13057
|
|
|
13019
13058
|
;// CONCATENATED MODULE: ./components/input/input_constants.js
|
|
@@ -13737,7 +13776,17 @@ const MessagesMixin = {
|
|
|
13737
13776
|
*/
|
|
13738
13777
|
label: {
|
|
13739
13778
|
type: String,
|
|
13740
|
-
default: ''
|
|
13779
|
+
default: '',
|
|
13780
|
+
required: true
|
|
13781
|
+
},
|
|
13782
|
+
|
|
13783
|
+
/**
|
|
13784
|
+
* Determines visibility of input label.
|
|
13785
|
+
* @values true, false
|
|
13786
|
+
*/
|
|
13787
|
+
labelVisible: {
|
|
13788
|
+
type: Boolean,
|
|
13789
|
+
default: true
|
|
13741
13790
|
},
|
|
13742
13791
|
|
|
13743
13792
|
/**
|
|
@@ -14157,8 +14206,8 @@ const MessagesMixin = {
|
|
|
14157
14206
|
;
|
|
14158
14207
|
var input_component = normalizeComponent(
|
|
14159
14208
|
input_inputvue_type_script_lang_js_,
|
|
14160
|
-
|
|
14161
|
-
|
|
14209
|
+
inputvue_type_template_id_356ee040_render,
|
|
14210
|
+
inputvue_type_template_id_356ee040_staticRenderFns,
|
|
14162
14211
|
false,
|
|
14163
14212
|
null,
|
|
14164
14213
|
null,
|
|
@@ -19047,15 +19096,15 @@ var root_layout_component = normalizeComponent(
|
|
|
19047
19096
|
;// CONCATENATED MODULE: ./components/root_layout/index.js
|
|
19048
19097
|
|
|
19049
19098
|
|
|
19050
|
-
;// 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/comboboxes/combobox_with_popover/combobox_with_popover.vue?vue&type=template&id=
|
|
19051
|
-
var
|
|
19099
|
+
;// 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/comboboxes/combobox_with_popover/combobox_with_popover.vue?vue&type=template&id=dea81786&
|
|
19100
|
+
var combobox_with_popovervue_type_template_id_dea81786_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-combobox',_vm._g({ref:"combobox",attrs:{"loading":_vm.loading,"label":_vm.label,"label-visible":_vm.labelVisible,"size":_vm.size,"description":_vm.description,"empty-list":_vm.emptyList,"empty-state-message":_vm.emptyStateMessage,"show-list":_vm.isListShown,"on-beginning-of-list":_vm.onBeginningOfList,"on-end-of-list":_vm.onEndOfList,"list-rendered-outside":true,"list-id":_vm.listId,"data-qa":"dt-combobox"},scopedSlots:_vm._u([{key:"input",fn:function(ref){
|
|
19052
19101
|
var inputProps = ref.inputProps;
|
|
19053
19102
|
return [_c('div',{ref:"input",attrs:{"id":_vm.externalAnchor},on:{"focusin":_vm.onFocusIn,"focusout":_vm.onFocusOut,"keydown":[function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"up",38,$event.key,["Up","ArrowUp"])){ return null; }return _vm.openOnArrowKeyPress($event)},function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"down",40,$event.key,["Down","ArrowDown"])){ return null; }return _vm.openOnArrowKeyPress($event)}]}},[_vm._t("input",null,{"inputProps":inputProps,"onInput":_vm.handleDisplayList})],2)]}},{key:"list",fn:function(ref){
|
|
19054
19103
|
var opened = ref.opened;
|
|
19055
19104
|
var listProps = ref.listProps;
|
|
19056
19105
|
var clearHighlightIndex = ref.clearHighlightIndex;
|
|
19057
19106
|
return [_c('dt-popover',{ref:"popover",attrs:{"open":_vm.isListShown,"hide-on-click":_vm.showList === null,"max-height":_vm.maxHeight,"max-width":_vm.maxWidth,"offset":_vm.popoverOffset,"sticky":_vm.popoverSticky,"placement":"bottom-start","initial-focus-element":"none","padding":"none","role":"listbox","external-anchor":_vm.externalAnchor,"content-width":_vm.contentWidth,"content-tabindex":null,"modal":false,"auto-focus":false,"visually-hidden-close-label":_vm.visuallyHiddenCloseLabel,"visually-hidden-close":_vm.visuallyHiddenClose},on:{"update:open":function($event){_vm.isListShown=$event},"opened":function($event){return opened($event, arguments[1]);}},scopedSlots:_vm._u([{key:"headerContent",fn:function(){return [(_vm.$slots.header)?_c('div',{ref:"header",on:{"focusout":_vm.onFocusOut}},[_vm._t("header")],2):_vm._e()]},proxy:true},{key:"content",fn:function(){return [_c('div',{ref:"listWrapper",class:[_vm.DROPDOWN_PADDING_CLASSES[_vm.padding], _vm.listClass],on:{"mouseleave":clearHighlightIndex,"focusout":function($event){clearHighlightIndex; _vm.onFocusOut;}}},[(_vm.loading)?_c('combobox-loading-list',_vm._b({},'combobox-loading-list',listProps,false)):(_vm.emptyList && _vm.emptyStateMessage)?_c('combobox-empty-list',_vm._b({attrs:{"message":_vm.emptyStateMessage}},'combobox-empty-list',listProps,false)):_vm._t("list",null,{"listProps":listProps})],2)]},proxy:true},{key:"footerContent",fn:function(){return [(_vm.$slots.footer)?_c('div',{ref:"footer",on:{"focusout":_vm.onFocusOut}},[_vm._t("footer")],2):_vm._e()]},proxy:true}],null,true)})]}}],null,true)},_vm.comboboxListeners))}
|
|
19058
|
-
var
|
|
19107
|
+
var combobox_with_popovervue_type_template_id_dea81786_staticRenderFns = []
|
|
19059
19108
|
|
|
19060
19109
|
|
|
19061
19110
|
;// 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/comboboxes/combobox_with_popover/combobox_with_popover.vue?vue&type=script&lang=js&
|
|
@@ -19162,6 +19211,10 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19162
19211
|
//
|
|
19163
19212
|
//
|
|
19164
19213
|
//
|
|
19214
|
+
//
|
|
19215
|
+
//
|
|
19216
|
+
//
|
|
19217
|
+
|
|
19165
19218
|
|
|
19166
19219
|
|
|
19167
19220
|
|
|
@@ -19180,13 +19233,40 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19180
19233
|
mixins: [sr_only_close_button],
|
|
19181
19234
|
props: {
|
|
19182
19235
|
/**
|
|
19183
|
-
* String to use for the
|
|
19236
|
+
* String to use for the input label.
|
|
19184
19237
|
*/
|
|
19185
|
-
|
|
19238
|
+
label: {
|
|
19186
19239
|
type: String,
|
|
19187
19240
|
required: true
|
|
19188
19241
|
},
|
|
19189
19242
|
|
|
19243
|
+
/**
|
|
19244
|
+
* Determines visibility of input label.
|
|
19245
|
+
* @values true, false
|
|
19246
|
+
*/
|
|
19247
|
+
labelVisible: {
|
|
19248
|
+
type: Boolean,
|
|
19249
|
+
default: true
|
|
19250
|
+
},
|
|
19251
|
+
|
|
19252
|
+
/**
|
|
19253
|
+
* Size of the input, one of `xs`, `sm`, `md`, `lg`, `xl`
|
|
19254
|
+
* @values null, xs, sm, md, lg, xl
|
|
19255
|
+
*/
|
|
19256
|
+
size: {
|
|
19257
|
+
type: String,
|
|
19258
|
+
default: null,
|
|
19259
|
+
validator: t => Object.values(LABEL_SIZES).includes(t)
|
|
19260
|
+
},
|
|
19261
|
+
|
|
19262
|
+
/**
|
|
19263
|
+
* Description for the input
|
|
19264
|
+
*/
|
|
19265
|
+
description: {
|
|
19266
|
+
type: String,
|
|
19267
|
+
default: ''
|
|
19268
|
+
},
|
|
19269
|
+
|
|
19190
19270
|
/**
|
|
19191
19271
|
* Determines when to show the list element and also controls the aria-expanded attribute.
|
|
19192
19272
|
* Leaving this null will have the combobox trigger on input focus by default.
|
|
@@ -19399,13 +19479,12 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19399
19479
|
},
|
|
19400
19480
|
methods: {
|
|
19401
19481
|
handleDisplayList(value) {
|
|
19402
|
-
if (!this.hasSuggestionList) {
|
|
19403
|
-
|
|
19404
|
-
|
|
19405
|
-
|
|
19406
|
-
|
|
19407
|
-
|
|
19408
|
-
}
|
|
19482
|
+
if (!this.hasSuggestionList && value) {
|
|
19483
|
+
this.showComboboxList();
|
|
19484
|
+
}
|
|
19485
|
+
|
|
19486
|
+
if (!this.hasSuggestionList && !value) {
|
|
19487
|
+
this.closeComboboxList();
|
|
19409
19488
|
}
|
|
19410
19489
|
},
|
|
19411
19490
|
|
|
@@ -19471,7 +19550,7 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19471
19550
|
}
|
|
19472
19551
|
},
|
|
19473
19552
|
|
|
19474
|
-
openOnArrowKeyPress(
|
|
19553
|
+
openOnArrowKeyPress() {
|
|
19475
19554
|
if (this.showList !== null || this.isListShown || !this.openWithArrowKeys) {
|
|
19476
19555
|
return;
|
|
19477
19556
|
}
|
|
@@ -19493,8 +19572,8 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19493
19572
|
;
|
|
19494
19573
|
var combobox_with_popover_component = normalizeComponent(
|
|
19495
19574
|
combobox_with_popover_combobox_with_popovervue_type_script_lang_js_,
|
|
19496
|
-
|
|
19497
|
-
|
|
19575
|
+
combobox_with_popovervue_type_template_id_dea81786_render,
|
|
19576
|
+
combobox_with_popovervue_type_template_id_dea81786_staticRenderFns,
|
|
19498
19577
|
false,
|
|
19499
19578
|
null,
|
|
19500
19579
|
null,
|
|
@@ -19505,11 +19584,11 @@ var combobox_with_popover_component = normalizeComponent(
|
|
|
19505
19584
|
/* harmony default export */ const combobox_with_popover = (combobox_with_popover_component.exports);
|
|
19506
19585
|
;// CONCATENATED MODULE: ./recipes/comboboxes/combobox_with_popover/index.js
|
|
19507
19586
|
|
|
19508
|
-
;// 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/comboboxes/combobox_multi_select/combobox_multi_select.vue?vue&type=template&id=
|
|
19509
|
-
var
|
|
19587
|
+
;// 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/comboboxes/combobox_multi_select/combobox_multi_select.vue?vue&type=template&id=e5d9bc3a&
|
|
19588
|
+
var combobox_multi_selectvue_type_template_id_e5d9bc3a_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('dt-recipe-combobox-with-popover',{ref:"comboboxWithPopover",attrs:{"label":_vm.label,"show-list":_vm.showList,"max-height":_vm.listMaxHeight,"popover-offset":_vm.popoverOffset,"has-suggestion-list":_vm.hasSuggestionList,"visually-hidden-close-label":_vm.visuallyHiddenCloseLabel,"visually-hidden-close":_vm.visuallyHiddenClose,"content-width":"anchor"},on:{"select":_vm.onComboboxSelect},scopedSlots:_vm._u([{key:"input",fn:function(ref){
|
|
19510
19589
|
var onInput = ref.onInput;
|
|
19511
|
-
return [_c('span',{ref:"inputSlotWrapper",staticClass:"d-ps-relative"},[_c('span',{ref:"chipsWrapper",staticClass:"d-ps-absolute d-mx2"},_vm._l((_vm.selectedItems),function(item){return _c('dt-chip',_vm._g({key:item.id,ref:"chips",refInFor:true,staticClass:"d-mt4 d-mx2 d-zi-base1",attrs:{"close-button-props":{ ariaLabel: 'close' },"size":_vm.size},on:{"keyup":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"backspace",undefined,$event.key,undefined)){ return null; }return _vm.onChipRemove(item)},"close":function($event){return _vm.onChipRemove(item)}}},_vm.chipListeners),[_vm._v(" "+_vm._s(item)+" ")])}),1),_c('dt-input',_vm._g({ref:"input",staticClass:"d-fl-grow1 d-mb4",attrs:{"label":_vm.label,"description":_vm.description,"placeholder":_vm.inputPlaceHolder,"show-messages":_vm.showInputMessages,"messages":_vm.inputMessages,"size":_vm.size},on:{"input":onInput},model:{value:(_vm.value),callback:function ($$v) {_vm.value=$$v},expression:"value"}},_vm.inputListeners)),_c('dt-validation-messages',{attrs:{"validation-messages":_vm.maxSelectedMessage,"show-messages":_vm.showValidationMessages}})],1)]}},{key:"header",fn:function(){return [(_vm.$slots.header)?_c('div',{ref:"header"},[_vm._t("header")],2):_vm._e()]},proxy:true},{key:"list",fn:function(){return [_c('div',{ref:"list",on:{"mousedown":function($event){$event.preventDefault();}}},[(!_vm.loading)?_vm._t("list"):_c('div',{staticClass:"d-ta-center d-py16"},[_vm._v(" "+_vm._s(_vm.loadingMessage)+" ")])],2)]},proxy:true},{key:"footer",fn:function(){return [(_vm.$slots.footer)?_c('div',{ref:"footer"},[_vm._t("footer")],2):_vm._e()]},proxy:true}],null,true)})}
|
|
19512
|
-
var
|
|
19590
|
+
return [_c('span',{ref:"inputSlotWrapper",staticClass:"d-ps-relative"},[_c('span',{ref:"chipsWrapper",staticClass:"d-ps-absolute d-mx2"},_vm._l((_vm.selectedItems),function(item){return _c('dt-chip',_vm._g({key:item.id,ref:"chips",refInFor:true,staticClass:"d-mt4 d-mx2 d-zi-base1",attrs:{"close-button-props":{ ariaLabel: 'close' },"size":_vm.size},on:{"keyup":function($event){if(!$event.type.indexOf('key')&&_vm._k($event.keyCode,"backspace",undefined,$event.key,undefined)){ return null; }return _vm.onChipRemove(item)},"close":function($event){return _vm.onChipRemove(item)}}},_vm.chipListeners),[_vm._v(" "+_vm._s(item)+" ")])}),1),_c('dt-input',_vm._g({ref:"input",staticClass:"d-fl-grow1 d-mb4",attrs:{"aria-label":_vm.label,"label":_vm.labelVisible ? _vm.label : '',"description":_vm.description,"placeholder":_vm.inputPlaceHolder,"show-messages":_vm.showInputMessages,"messages":_vm.inputMessages,"size":_vm.size},on:{"input":onInput},model:{value:(_vm.value),callback:function ($$v) {_vm.value=$$v},expression:"value"}},_vm.inputListeners)),_c('dt-validation-messages',{attrs:{"validation-messages":_vm.maxSelectedMessage,"show-messages":_vm.showValidationMessages}})],1)]}},{key:"header",fn:function(){return [(_vm.$slots.header)?_c('div',{ref:"header"},[_vm._t("header")],2):_vm._e()]},proxy:true},{key:"list",fn:function(){return [_c('div',{ref:"list",on:{"mousedown":function($event){$event.preventDefault();}}},[(!_vm.loading)?_vm._t("list"):_c('div',{staticClass:"d-ta-center d-py16"},[_vm._v(" "+_vm._s(_vm.loadingMessage)+" ")])],2)]},proxy:true},{key:"footer",fn:function(){return [(_vm.$slots.footer)?_c('div',{ref:"footer"},[_vm._t("footer")],2):_vm._e()]},proxy:true}],null,true)})}
|
|
19591
|
+
var combobox_multi_selectvue_type_template_id_e5d9bc3a_staticRenderFns = []
|
|
19513
19592
|
|
|
19514
19593
|
|
|
19515
19594
|
;// CONCATENATED MODULE: ./recipes/comboboxes/combobox_multi_select/combobox_multi_select_story_constants.js
|
|
@@ -19713,6 +19792,7 @@ const MULTI_SELECT_SIZES = {
|
|
|
19713
19792
|
//
|
|
19714
19793
|
//
|
|
19715
19794
|
//
|
|
19795
|
+
//
|
|
19716
19796
|
|
|
19717
19797
|
|
|
19718
19798
|
|
|
@@ -19731,19 +19811,28 @@ const MULTI_SELECT_SIZES = {
|
|
|
19731
19811
|
mixins: [sr_only_close_button],
|
|
19732
19812
|
props: {
|
|
19733
19813
|
/**
|
|
19734
|
-
*
|
|
19814
|
+
* String to use for the input label.
|
|
19735
19815
|
*/
|
|
19736
19816
|
label: {
|
|
19737
19817
|
type: String,
|
|
19738
|
-
|
|
19818
|
+
required: true
|
|
19739
19819
|
},
|
|
19740
19820
|
|
|
19741
19821
|
/**
|
|
19742
|
-
*
|
|
19822
|
+
* Determines visibility of input label.
|
|
19823
|
+
* @values true, false
|
|
19824
|
+
*/
|
|
19825
|
+
labelVisible: {
|
|
19826
|
+
type: Boolean,
|
|
19827
|
+
default: true
|
|
19828
|
+
},
|
|
19829
|
+
|
|
19830
|
+
/**
|
|
19831
|
+
* Description for the input
|
|
19743
19832
|
*/
|
|
19744
19833
|
description: {
|
|
19745
19834
|
type: String,
|
|
19746
|
-
default:
|
|
19835
|
+
default: ''
|
|
19747
19836
|
},
|
|
19748
19837
|
|
|
19749
19838
|
/**
|
|
@@ -19854,7 +19943,7 @@ const MULTI_SELECT_SIZES = {
|
|
|
19854
19943
|
},
|
|
19855
19944
|
|
|
19856
19945
|
/**
|
|
19857
|
-
* Size of the
|
|
19946
|
+
* Size of the chip, one of `xs`, `sm`, `md`
|
|
19858
19947
|
*/
|
|
19859
19948
|
size: {
|
|
19860
19949
|
type: String,
|
|
@@ -20181,8 +20270,8 @@ const MULTI_SELECT_SIZES = {
|
|
|
20181
20270
|
;
|
|
20182
20271
|
var combobox_multi_select_component = normalizeComponent(
|
|
20183
20272
|
combobox_multi_select_combobox_multi_selectvue_type_script_lang_js_,
|
|
20184
|
-
|
|
20185
|
-
|
|
20273
|
+
combobox_multi_selectvue_type_template_id_e5d9bc3a_render,
|
|
20274
|
+
combobox_multi_selectvue_type_template_id_e5d9bc3a_staticRenderFns,
|
|
20186
20275
|
false,
|
|
20187
20276
|
null,
|
|
20188
20277
|
null,
|