@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.
|
@@ -3926,9 +3926,9 @@ var card_component = normalizeComponent(
|
|
|
3926
3926
|
/* harmony default export */ const card = (card_component.exports);
|
|
3927
3927
|
;// CONCATENATED MODULE: ./components/card/index.js
|
|
3928
3928
|
|
|
3929
|
-
;// 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=
|
|
3930
|
-
var
|
|
3931
|
-
var
|
|
3929
|
+
;// 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&
|
|
3930
|
+
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()])}
|
|
3931
|
+
var comboboxvue_type_template_id_3595da7e_staticRenderFns = []
|
|
3932
3932
|
|
|
3933
3933
|
|
|
3934
3934
|
;// CONCATENATED MODULE: ./common/mixins/dom.js
|
|
@@ -5710,6 +5710,14 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5710
5710
|
)
|
|
5711
5711
|
|
|
5712
5712
|
/* harmony default export */ const combobox_empty_list = (combobox_empty_list_component.exports);
|
|
5713
|
+
;// CONCATENATED MODULE: ./components/combobox/combobox_constants.js
|
|
5714
|
+
const LABEL_SIZES = {
|
|
5715
|
+
EXTRA_SMALL: 'xs',
|
|
5716
|
+
SMALL: 'sm',
|
|
5717
|
+
DEFAULT: 'md',
|
|
5718
|
+
LARGE: 'lg',
|
|
5719
|
+
EXTRA_LARGE: 'xl'
|
|
5720
|
+
};
|
|
5713
5721
|
;// 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!./components/combobox/combobox.vue?vue&type=script&lang=js&
|
|
5714
5722
|
//
|
|
5715
5723
|
//
|
|
@@ -5763,6 +5771,7 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5763
5771
|
|
|
5764
5772
|
|
|
5765
5773
|
|
|
5774
|
+
|
|
5766
5775
|
/**
|
|
5767
5776
|
* A combobox is a semantic component that displays an input element combined with a listbox,
|
|
5768
5777
|
* which enables the user to select items from the list.
|
|
@@ -5786,13 +5795,40 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5786
5795
|
})],
|
|
5787
5796
|
props: {
|
|
5788
5797
|
/**
|
|
5789
|
-
* String to use for the
|
|
5798
|
+
* String to use for the input label.
|
|
5790
5799
|
*/
|
|
5791
|
-
|
|
5800
|
+
label: {
|
|
5792
5801
|
type: String,
|
|
5793
5802
|
required: true
|
|
5794
5803
|
},
|
|
5795
5804
|
|
|
5805
|
+
/**
|
|
5806
|
+
* Determines visibility of input label.
|
|
5807
|
+
* @values true, false
|
|
5808
|
+
*/
|
|
5809
|
+
labelVisible: {
|
|
5810
|
+
type: Boolean,
|
|
5811
|
+
default: true
|
|
5812
|
+
},
|
|
5813
|
+
|
|
5814
|
+
/**
|
|
5815
|
+
* Size of the input, one of `xs`, `sm`, `md`, `lg`, `xl`
|
|
5816
|
+
* @values null, xs, sm, md, lg, xl
|
|
5817
|
+
*/
|
|
5818
|
+
size: {
|
|
5819
|
+
type: String,
|
|
5820
|
+
default: null,
|
|
5821
|
+
validator: t => Object.values(LABEL_SIZES).includes(t)
|
|
5822
|
+
},
|
|
5823
|
+
|
|
5824
|
+
/**
|
|
5825
|
+
* Description for the input
|
|
5826
|
+
*/
|
|
5827
|
+
description: {
|
|
5828
|
+
type: String,
|
|
5829
|
+
default: ''
|
|
5830
|
+
},
|
|
5831
|
+
|
|
5796
5832
|
/**
|
|
5797
5833
|
* Sets an ID on the list element of the component. Used by several aria attributes
|
|
5798
5834
|
* as well as when deriving the IDs for each item.
|
|
@@ -5927,7 +5963,12 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5927
5963
|
computed: {
|
|
5928
5964
|
inputProps() {
|
|
5929
5965
|
return {
|
|
5966
|
+
label: this.label,
|
|
5967
|
+
labelVisible: this.labelVisible,
|
|
5968
|
+
size: this.size,
|
|
5969
|
+
description: this.description,
|
|
5930
5970
|
role: 'combobox',
|
|
5971
|
+
'aria-label': this.label,
|
|
5931
5972
|
'aria-expanded': this.showList.toString(),
|
|
5932
5973
|
'aria-owns': this.listId,
|
|
5933
5974
|
'aria-haspopup': 'listbox',
|
|
@@ -5943,7 +5984,7 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
5943
5984
|
// The list has to be positioned relatively so that the auto-scroll can
|
|
5944
5985
|
// calculate the correct offset for the list items.
|
|
5945
5986
|
class: 'd-ps-relative',
|
|
5946
|
-
'aria-label': this.
|
|
5987
|
+
'aria-label': this.label
|
|
5947
5988
|
};
|
|
5948
5989
|
},
|
|
5949
5990
|
|
|
@@ -6100,8 +6141,8 @@ var combobox_empty_list_component = normalizeComponent(
|
|
|
6100
6141
|
;
|
|
6101
6142
|
var combobox_component = normalizeComponent(
|
|
6102
6143
|
combobox_comboboxvue_type_script_lang_js_,
|
|
6103
|
-
|
|
6104
|
-
|
|
6144
|
+
comboboxvue_type_template_id_3595da7e_render,
|
|
6145
|
+
comboboxvue_type_template_id_3595da7e_staticRenderFns,
|
|
6105
6146
|
false,
|
|
6106
6147
|
null,
|
|
6107
6148
|
null,
|
|
@@ -6112,12 +6153,12 @@ var combobox_component = normalizeComponent(
|
|
|
6112
6153
|
/* harmony default export */ const combobox = (combobox_component.exports);
|
|
6113
6154
|
;// CONCATENATED MODULE: ./components/combobox/index.js
|
|
6114
6155
|
|
|
6115
|
-
;// 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=
|
|
6116
|
-
var
|
|
6156
|
+
;// 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&
|
|
6157
|
+
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:[
|
|
6117
6158
|
'd-dt-collapsibe__anchor',
|
|
6118
6159
|
_vm.anchorClass ],attrs:{"id":!_vm.ariaLabelledBy && _vm.labelledBy}},[_vm._t("anchor",function(){return [_c('dt-button',{style:({
|
|
6119
6160
|
'width': _vm.maxWidth,
|
|
6120
|
-
}),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":{
|
|
6161
|
+
}),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":{
|
|
6121
6162
|
'aria-controls': _vm.id,
|
|
6122
6163
|
'aria-expanded': _vm.isOpen.toString(),
|
|
6123
6164
|
'role': 'button',
|
|
@@ -6126,13 +6167,13 @@ var collapsiblevue_type_template_id_7f94e9c4_render = function () {var _vm=this;
|
|
|
6126
6167
|
_vm.contentClass ],style:({
|
|
6127
6168
|
'max-height': _vm.maxHeight,
|
|
6128
6169
|
'max-width': _vm.maxWidth,
|
|
6129
|
-
}),attrs:{"id":_vm.id,"aria-hidden":("" + (!_vm.isOpen)),"aria-labelledby":_vm.labelledBy,"
|
|
6130
|
-
var
|
|
6170
|
+
}),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)}
|
|
6171
|
+
var collapsiblevue_type_template_id_85d2157c_staticRenderFns = []
|
|
6131
6172
|
|
|
6132
6173
|
|
|
6133
|
-
;// 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=
|
|
6134
|
-
var
|
|
6135
|
-
var
|
|
6174
|
+
;// 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&
|
|
6175
|
+
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)}
|
|
6176
|
+
var collapsible_lazy_showvue_type_template_id_cc3472b8_staticRenderFns = []
|
|
6136
6177
|
|
|
6137
6178
|
|
|
6138
6179
|
;// 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!./components/collapsible/collapsible_lazy_show.vue?vue&type=script&lang=js&
|
|
@@ -6161,6 +6202,32 @@ var collapsible_lazy_showvue_type_template_id_2bfe7a0c_staticRenderFns = []
|
|
|
6161
6202
|
//
|
|
6162
6203
|
//
|
|
6163
6204
|
//
|
|
6205
|
+
//
|
|
6206
|
+
//
|
|
6207
|
+
//
|
|
6208
|
+
//
|
|
6209
|
+
//
|
|
6210
|
+
//
|
|
6211
|
+
//
|
|
6212
|
+
//
|
|
6213
|
+
//
|
|
6214
|
+
//
|
|
6215
|
+
//
|
|
6216
|
+
//
|
|
6217
|
+
//
|
|
6218
|
+
//
|
|
6219
|
+
//
|
|
6220
|
+
//
|
|
6221
|
+
//
|
|
6222
|
+
//
|
|
6223
|
+
//
|
|
6224
|
+
//
|
|
6225
|
+
//
|
|
6226
|
+
//
|
|
6227
|
+
//
|
|
6228
|
+
//
|
|
6229
|
+
//
|
|
6230
|
+
//
|
|
6164
6231
|
/* harmony default export */ const collapsible_lazy_showvue_type_script_lang_js_ = ({
|
|
6165
6232
|
name: 'DtCollapsibleLazyShow',
|
|
6166
6233
|
|
|
@@ -6171,7 +6238,7 @@ var collapsible_lazy_showvue_type_template_id_2bfe7a0c_staticRenderFns = []
|
|
|
6171
6238
|
/**
|
|
6172
6239
|
* Whether the child slot is shown.
|
|
6173
6240
|
*/
|
|
6174
|
-
|
|
6241
|
+
isExpanded: {
|
|
6175
6242
|
type: Boolean,
|
|
6176
6243
|
default: null
|
|
6177
6244
|
},
|
|
@@ -6192,29 +6259,7 @@ var collapsible_lazy_showvue_type_template_id_2bfe7a0c_staticRenderFns = []
|
|
|
6192
6259
|
default: 'div'
|
|
6193
6260
|
}
|
|
6194
6261
|
},
|
|
6195
|
-
|
|
6196
|
-
/******************
|
|
6197
|
-
* DATA *
|
|
6198
|
-
******************/
|
|
6199
|
-
data() {
|
|
6200
|
-
return {
|
|
6201
|
-
initialized: !!this.show
|
|
6202
|
-
};
|
|
6203
|
-
},
|
|
6204
|
-
|
|
6205
|
-
/******************
|
|
6206
|
-
* WATCH *
|
|
6207
|
-
******************/
|
|
6208
|
-
watch: {
|
|
6209
|
-
show: function (newValue) {
|
|
6210
|
-
if (!newValue || this.initialized) return;
|
|
6211
|
-
this.initialized = true;
|
|
6212
|
-
}
|
|
6213
|
-
},
|
|
6214
6262
|
methods: {
|
|
6215
|
-
/**
|
|
6216
|
-
* @param {HTMLElement} element
|
|
6217
|
-
*/
|
|
6218
6263
|
beforeEnter(element) {
|
|
6219
6264
|
requestAnimationFrame(() => {
|
|
6220
6265
|
if (!element.style.height) {
|
|
@@ -6291,8 +6336,8 @@ var collapsible_lazy_showvue_type_style_index_0_lang_css_ = __webpack_require__(
|
|
|
6291
6336
|
|
|
6292
6337
|
var collapsible_lazy_show_component = normalizeComponent(
|
|
6293
6338
|
collapsible_collapsible_lazy_showvue_type_script_lang_js_,
|
|
6294
|
-
|
|
6295
|
-
|
|
6339
|
+
collapsible_lazy_showvue_type_template_id_cc3472b8_render,
|
|
6340
|
+
collapsible_lazy_showvue_type_template_id_cc3472b8_staticRenderFns,
|
|
6296
6341
|
false,
|
|
6297
6342
|
null,
|
|
6298
6343
|
null,
|
|
@@ -6484,6 +6529,12 @@ var lazy_show_component = normalizeComponent(
|
|
|
6484
6529
|
//
|
|
6485
6530
|
//
|
|
6486
6531
|
//
|
|
6532
|
+
//
|
|
6533
|
+
//
|
|
6534
|
+
//
|
|
6535
|
+
//
|
|
6536
|
+
//
|
|
6537
|
+
//
|
|
6487
6538
|
|
|
6488
6539
|
|
|
6489
6540
|
|
|
@@ -6587,7 +6638,7 @@ var lazy_show_component = normalizeComponent(
|
|
|
6587
6638
|
},
|
|
6588
6639
|
|
|
6589
6640
|
/**
|
|
6590
|
-
* Label on the
|
|
6641
|
+
* Label on the anchor. Should provide this or ariaLabelledBy but not both.
|
|
6591
6642
|
*/
|
|
6592
6643
|
ariaLabel: {
|
|
6593
6644
|
type: String,
|
|
@@ -6628,6 +6679,10 @@ var lazy_show_component = normalizeComponent(
|
|
|
6628
6679
|
// aria-labelledby should be set only if aria-labelledby is passed as a prop, or if
|
|
6629
6680
|
// there is no aria-label and the labelledby should point to the anchor
|
|
6630
6681
|
return this.ariaLabelledBy || !this.ariaLabel && getUniqueString('DtCollapsible__anchor');
|
|
6682
|
+
},
|
|
6683
|
+
|
|
6684
|
+
hasContentOnCollapse() {
|
|
6685
|
+
return !!this.$slots.contentOnCollapsed;
|
|
6631
6686
|
}
|
|
6632
6687
|
|
|
6633
6688
|
},
|
|
@@ -6647,32 +6702,16 @@ var lazy_show_component = normalizeComponent(
|
|
|
6647
6702
|
},
|
|
6648
6703
|
|
|
6649
6704
|
methods: {
|
|
6650
|
-
onLeaveTransitionComplete() {
|
|
6651
|
-
this.$emit('opened', false);
|
|
6652
|
-
|
|
6653
|
-
if (this.open !== null) {
|
|
6654
|
-
this.$emit('update:open', false);
|
|
6655
|
-
}
|
|
6656
|
-
},
|
|
6657
|
-
|
|
6658
|
-
onEnterTransitionComplete() {
|
|
6659
|
-
this.$emit('opened', true, this.$refs.content);
|
|
6660
|
-
|
|
6661
|
-
if (this.open !== null) {
|
|
6662
|
-
this.$emit('update:open', true);
|
|
6663
|
-
}
|
|
6664
|
-
},
|
|
6665
|
-
|
|
6666
6705
|
defaultToggleOpen() {
|
|
6706
|
+
this.$emit('opened', !this.isOpen);
|
|
6707
|
+
|
|
6667
6708
|
if (this.open === null) {
|
|
6668
|
-
this.
|
|
6709
|
+
this.isOpen = !this.isOpen;
|
|
6710
|
+
} else {
|
|
6711
|
+
this.$emit('update:open', !this.isOpen);
|
|
6669
6712
|
}
|
|
6670
6713
|
},
|
|
6671
6714
|
|
|
6672
|
-
toggleOpen() {
|
|
6673
|
-
this.isOpen = !this.isOpen;
|
|
6674
|
-
},
|
|
6675
|
-
|
|
6676
6715
|
validateProperAnchor() {
|
|
6677
6716
|
if (!this.anchorText && !this.$scopedSlots.anchor) {
|
|
6678
6717
|
console.error('anchor text and anchor slot content cannot both be falsy');
|
|
@@ -6693,8 +6732,8 @@ var lazy_show_component = normalizeComponent(
|
|
|
6693
6732
|
;
|
|
6694
6733
|
var collapsible_component = normalizeComponent(
|
|
6695
6734
|
collapsible_collapsiblevue_type_script_lang_js_,
|
|
6696
|
-
|
|
6697
|
-
|
|
6735
|
+
collapsiblevue_type_template_id_85d2157c_render,
|
|
6736
|
+
collapsiblevue_type_template_id_85d2157c_staticRenderFns,
|
|
6698
6737
|
false,
|
|
6699
6738
|
null,
|
|
6700
6739
|
null,
|
|
@@ -12993,8 +13032,8 @@ var dropdown_separator_component = normalizeComponent(
|
|
|
12993
13032
|
|
|
12994
13033
|
|
|
12995
13034
|
|
|
12996
|
-
;// 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=
|
|
12997
|
-
var
|
|
13035
|
+
;// 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&
|
|
13036
|
+
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:[
|
|
12998
13037
|
'base-input__label-text',
|
|
12999
13038
|
'd-label',
|
|
13000
13039
|
_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:[
|
|
@@ -13003,7 +13042,7 @@ var inputvue_type_template_id_868d44b4_render = function () {var _vm=this;var _h
|
|
|
13003
13042
|
'd-fd-column',
|
|
13004
13043
|
_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:[
|
|
13005
13044
|
'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)}
|
|
13006
|
-
var
|
|
13045
|
+
var inputvue_type_template_id_356ee040_staticRenderFns = []
|
|
13007
13046
|
|
|
13008
13047
|
|
|
13009
13048
|
;// CONCATENATED MODULE: ./components/input/input_constants.js
|
|
@@ -13727,7 +13766,17 @@ const MessagesMixin = {
|
|
|
13727
13766
|
*/
|
|
13728
13767
|
label: {
|
|
13729
13768
|
type: String,
|
|
13730
|
-
default: ''
|
|
13769
|
+
default: '',
|
|
13770
|
+
required: true
|
|
13771
|
+
},
|
|
13772
|
+
|
|
13773
|
+
/**
|
|
13774
|
+
* Determines visibility of input label.
|
|
13775
|
+
* @values true, false
|
|
13776
|
+
*/
|
|
13777
|
+
labelVisible: {
|
|
13778
|
+
type: Boolean,
|
|
13779
|
+
default: true
|
|
13731
13780
|
},
|
|
13732
13781
|
|
|
13733
13782
|
/**
|
|
@@ -14147,8 +14196,8 @@ const MessagesMixin = {
|
|
|
14147
14196
|
;
|
|
14148
14197
|
var input_component = normalizeComponent(
|
|
14149
14198
|
input_inputvue_type_script_lang_js_,
|
|
14150
|
-
|
|
14151
|
-
|
|
14199
|
+
inputvue_type_template_id_356ee040_render,
|
|
14200
|
+
inputvue_type_template_id_356ee040_staticRenderFns,
|
|
14152
14201
|
false,
|
|
14153
14202
|
null,
|
|
14154
14203
|
null,
|
|
@@ -19037,15 +19086,15 @@ var root_layout_component = normalizeComponent(
|
|
|
19037
19086
|
;// CONCATENATED MODULE: ./components/root_layout/index.js
|
|
19038
19087
|
|
|
19039
19088
|
|
|
19040
|
-
;// 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=
|
|
19041
|
-
var
|
|
19089
|
+
;// 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&
|
|
19090
|
+
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){
|
|
19042
19091
|
var inputProps = ref.inputProps;
|
|
19043
19092
|
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){
|
|
19044
19093
|
var opened = ref.opened;
|
|
19045
19094
|
var listProps = ref.listProps;
|
|
19046
19095
|
var clearHighlightIndex = ref.clearHighlightIndex;
|
|
19047
19096
|
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))}
|
|
19048
|
-
var
|
|
19097
|
+
var combobox_with_popovervue_type_template_id_dea81786_staticRenderFns = []
|
|
19049
19098
|
|
|
19050
19099
|
|
|
19051
19100
|
;// 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/comboboxes/combobox_with_popover/combobox_with_popover.vue?vue&type=script&lang=js&
|
|
@@ -19152,6 +19201,10 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19152
19201
|
//
|
|
19153
19202
|
//
|
|
19154
19203
|
//
|
|
19204
|
+
//
|
|
19205
|
+
//
|
|
19206
|
+
//
|
|
19207
|
+
|
|
19155
19208
|
|
|
19156
19209
|
|
|
19157
19210
|
|
|
@@ -19170,13 +19223,40 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19170
19223
|
mixins: [sr_only_close_button],
|
|
19171
19224
|
props: {
|
|
19172
19225
|
/**
|
|
19173
|
-
* String to use for the
|
|
19226
|
+
* String to use for the input label.
|
|
19174
19227
|
*/
|
|
19175
|
-
|
|
19228
|
+
label: {
|
|
19176
19229
|
type: String,
|
|
19177
19230
|
required: true
|
|
19178
19231
|
},
|
|
19179
19232
|
|
|
19233
|
+
/**
|
|
19234
|
+
* Determines visibility of input label.
|
|
19235
|
+
* @values true, false
|
|
19236
|
+
*/
|
|
19237
|
+
labelVisible: {
|
|
19238
|
+
type: Boolean,
|
|
19239
|
+
default: true
|
|
19240
|
+
},
|
|
19241
|
+
|
|
19242
|
+
/**
|
|
19243
|
+
* Size of the input, one of `xs`, `sm`, `md`, `lg`, `xl`
|
|
19244
|
+
* @values null, xs, sm, md, lg, xl
|
|
19245
|
+
*/
|
|
19246
|
+
size: {
|
|
19247
|
+
type: String,
|
|
19248
|
+
default: null,
|
|
19249
|
+
validator: t => Object.values(LABEL_SIZES).includes(t)
|
|
19250
|
+
},
|
|
19251
|
+
|
|
19252
|
+
/**
|
|
19253
|
+
* Description for the input
|
|
19254
|
+
*/
|
|
19255
|
+
description: {
|
|
19256
|
+
type: String,
|
|
19257
|
+
default: ''
|
|
19258
|
+
},
|
|
19259
|
+
|
|
19180
19260
|
/**
|
|
19181
19261
|
* Determines when to show the list element and also controls the aria-expanded attribute.
|
|
19182
19262
|
* Leaving this null will have the combobox trigger on input focus by default.
|
|
@@ -19389,13 +19469,12 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19389
19469
|
},
|
|
19390
19470
|
methods: {
|
|
19391
19471
|
handleDisplayList(value) {
|
|
19392
|
-
if (!this.hasSuggestionList) {
|
|
19393
|
-
|
|
19394
|
-
|
|
19395
|
-
|
|
19396
|
-
|
|
19397
|
-
|
|
19398
|
-
}
|
|
19472
|
+
if (!this.hasSuggestionList && value) {
|
|
19473
|
+
this.showComboboxList();
|
|
19474
|
+
}
|
|
19475
|
+
|
|
19476
|
+
if (!this.hasSuggestionList && !value) {
|
|
19477
|
+
this.closeComboboxList();
|
|
19399
19478
|
}
|
|
19400
19479
|
},
|
|
19401
19480
|
|
|
@@ -19461,7 +19540,7 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19461
19540
|
}
|
|
19462
19541
|
},
|
|
19463
19542
|
|
|
19464
|
-
openOnArrowKeyPress(
|
|
19543
|
+
openOnArrowKeyPress() {
|
|
19465
19544
|
if (this.showList !== null || this.isListShown || !this.openWithArrowKeys) {
|
|
19466
19545
|
return;
|
|
19467
19546
|
}
|
|
@@ -19483,8 +19562,8 @@ var combobox_with_popovervue_type_template_id_96ff85ec_staticRenderFns = []
|
|
|
19483
19562
|
;
|
|
19484
19563
|
var combobox_with_popover_component = normalizeComponent(
|
|
19485
19564
|
combobox_with_popover_combobox_with_popovervue_type_script_lang_js_,
|
|
19486
|
-
|
|
19487
|
-
|
|
19565
|
+
combobox_with_popovervue_type_template_id_dea81786_render,
|
|
19566
|
+
combobox_with_popovervue_type_template_id_dea81786_staticRenderFns,
|
|
19488
19567
|
false,
|
|
19489
19568
|
null,
|
|
19490
19569
|
null,
|
|
@@ -19495,11 +19574,11 @@ var combobox_with_popover_component = normalizeComponent(
|
|
|
19495
19574
|
/* harmony default export */ const combobox_with_popover = (combobox_with_popover_component.exports);
|
|
19496
19575
|
;// CONCATENATED MODULE: ./recipes/comboboxes/combobox_with_popover/index.js
|
|
19497
19576
|
|
|
19498
|
-
;// 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=
|
|
19499
|
-
var
|
|
19577
|
+
;// 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&
|
|
19578
|
+
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){
|
|
19500
19579
|
var onInput = ref.onInput;
|
|
19501
|
-
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)})}
|
|
19502
|
-
var
|
|
19580
|
+
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)})}
|
|
19581
|
+
var combobox_multi_selectvue_type_template_id_e5d9bc3a_staticRenderFns = []
|
|
19503
19582
|
|
|
19504
19583
|
|
|
19505
19584
|
;// CONCATENATED MODULE: ./recipes/comboboxes/combobox_multi_select/combobox_multi_select_story_constants.js
|
|
@@ -19703,6 +19782,7 @@ const MULTI_SELECT_SIZES = {
|
|
|
19703
19782
|
//
|
|
19704
19783
|
//
|
|
19705
19784
|
//
|
|
19785
|
+
//
|
|
19706
19786
|
|
|
19707
19787
|
|
|
19708
19788
|
|
|
@@ -19721,19 +19801,28 @@ const MULTI_SELECT_SIZES = {
|
|
|
19721
19801
|
mixins: [sr_only_close_button],
|
|
19722
19802
|
props: {
|
|
19723
19803
|
/**
|
|
19724
|
-
*
|
|
19804
|
+
* String to use for the input label.
|
|
19725
19805
|
*/
|
|
19726
19806
|
label: {
|
|
19727
19807
|
type: String,
|
|
19728
|
-
|
|
19808
|
+
required: true
|
|
19729
19809
|
},
|
|
19730
19810
|
|
|
19731
19811
|
/**
|
|
19732
|
-
*
|
|
19812
|
+
* Determines visibility of input label.
|
|
19813
|
+
* @values true, false
|
|
19814
|
+
*/
|
|
19815
|
+
labelVisible: {
|
|
19816
|
+
type: Boolean,
|
|
19817
|
+
default: true
|
|
19818
|
+
},
|
|
19819
|
+
|
|
19820
|
+
/**
|
|
19821
|
+
* Description for the input
|
|
19733
19822
|
*/
|
|
19734
19823
|
description: {
|
|
19735
19824
|
type: String,
|
|
19736
|
-
default:
|
|
19825
|
+
default: ''
|
|
19737
19826
|
},
|
|
19738
19827
|
|
|
19739
19828
|
/**
|
|
@@ -19844,7 +19933,7 @@ const MULTI_SELECT_SIZES = {
|
|
|
19844
19933
|
},
|
|
19845
19934
|
|
|
19846
19935
|
/**
|
|
19847
|
-
* Size of the
|
|
19936
|
+
* Size of the chip, one of `xs`, `sm`, `md`
|
|
19848
19937
|
*/
|
|
19849
19938
|
size: {
|
|
19850
19939
|
type: String,
|
|
@@ -20171,8 +20260,8 @@ const MULTI_SELECT_SIZES = {
|
|
|
20171
20260
|
;
|
|
20172
20261
|
var combobox_multi_select_component = normalizeComponent(
|
|
20173
20262
|
combobox_multi_select_combobox_multi_selectvue_type_script_lang_js_,
|
|
20174
|
-
|
|
20175
|
-
|
|
20263
|
+
combobox_multi_selectvue_type_template_id_e5d9bc3a_render,
|
|
20264
|
+
combobox_multi_selectvue_type_template_id_e5d9bc3a_staticRenderFns,
|
|
20176
20265
|
false,
|
|
20177
20266
|
null,
|
|
20178
20267
|
null,
|