bromcom-ui 2.3.64 → 2.3.68

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.
@@ -346,11 +346,17 @@ const BcmDatetimePicker = class {
346
346
  if (disabledDatesData.min && disabledDatesData.min instanceof Date) {
347
347
  this.disabledDatesList.min = new Date(disabledDatesData.min.toDateString());
348
348
  }
349
+ else {
350
+ delete this.disabledDatesList.min;
351
+ }
349
352
  if (disabledDatesData.max && disabledDatesData.max instanceof Date) {
350
353
  this.disabledDatesList.max = new Date(disabledDatesData.max.toDateString());
351
354
  }
355
+ else {
356
+ delete this.disabledDatesList.max;
357
+ }
352
358
  const value = this.inputElement.value;
353
- this.setDataFromText(value);
359
+ value && this.setDataFromText(value);
354
360
  }
355
361
  /**
356
362
  *
@@ -520,6 +526,7 @@ const BcmDatetimePicker = class {
520
526
  * @desc
521
527
  */
522
528
  setValue(reset) {
529
+ var _a, _b, _c, _d;
523
530
  const date = new Date(this.date.setHours(Number(this.currentDate.hour), Number(this.currentDate.minute)));
524
531
  if (reset) {
525
532
  this.value = null;
@@ -529,61 +536,69 @@ const BcmDatetimePicker = class {
529
536
  if (this.type === Types.datetime) {
530
537
  const dateObject = Object.assign({}, this.currentDate);
531
538
  dateObject.month += 1;
532
- this.value = {
533
- isValid: this.dataIsValid,
534
- date: date,
535
- timestamp: date.getTime(),
536
- dateObject,
537
- value: this.valueText
538
- };
539
+ if (((_a = this.value) === null || _a === void 0 ? void 0 : _a.value) != this.valueText) {
540
+ this.value = {
541
+ isValid: this.dataIsValid,
542
+ date: date,
543
+ timestamp: date.getTime(),
544
+ dateObject,
545
+ value: this.valueText
546
+ };
547
+ }
539
548
  }
540
549
  if (this.type === Types.date) {
541
550
  const dateObject = Object.assign({}, this.currentDate);
542
551
  delete dateObject.hour;
543
552
  delete dateObject.minute;
544
553
  dateObject.month += 1;
545
- this.value = {
546
- isValid: this.dataIsValid,
547
- date,
548
- timestamp: date.getTime(),
549
- dateObject,
550
- value: this.valueText
551
- };
554
+ if (((_b = this.value) === null || _b === void 0 ? void 0 : _b.value) != this.valueText) {
555
+ this.value = {
556
+ isValid: this.dataIsValid,
557
+ date,
558
+ timestamp: date.getTime(),
559
+ dateObject,
560
+ value: this.valueText
561
+ };
562
+ }
552
563
  }
553
564
  if (this.type === Types.time) {
554
- this.value = {
555
- isValid: this.dataIsValid,
556
- time: this.getTimeText(),
557
- dateObject: {
558
- hours: this.currentDate.hour,
559
- minutes: this.currentDate.minute
560
- },
561
- value: this.valueText
562
- };
565
+ if (((_c = this.value) === null || _c === void 0 ? void 0 : _c.value) != this.valueText) {
566
+ this.value = {
567
+ isValid: this.dataIsValid,
568
+ time: this.getTimeText(),
569
+ dateObject: {
570
+ hours: this.currentDate.hour,
571
+ minutes: this.currentDate.minute
572
+ },
573
+ value: this.valueText
574
+ };
575
+ }
563
576
  }
564
577
  if (this.type === Types.range) {
565
- this.value = {
566
- isValid: this.dataIsValid,
567
- dateObject: {
568
- start: Object.assign({}, this.selectedDate && {
569
- date: this.selectedDate,
570
- timestamp: this.selectedDate.getTime(),
571
- detail: this.createDateObject(this.selectedDate, {
572
- excludeTime: true,
573
- exactMonthNumber: true
578
+ if (((_d = this.value) === null || _d === void 0 ? void 0 : _d.value) != this.valueText) {
579
+ this.value = {
580
+ isValid: this.dataIsValid,
581
+ dateObject: {
582
+ start: Object.assign({}, this.selectedDate && {
583
+ date: this.selectedDate,
584
+ timestamp: this.selectedDate.getTime(),
585
+ detail: this.createDateObject(this.selectedDate, {
586
+ excludeTime: true,
587
+ exactMonthNumber: true
588
+ })
589
+ }),
590
+ end: Object.assign({}, this.selectedEndDate && {
591
+ date: this.selectedEndDate,
592
+ timestamp: this.selectedEndDate.getTime(),
593
+ detail: this.createDateObject(this.selectedEndDate, {
594
+ excludeTime: true,
595
+ exactMonthNumber: true
596
+ })
574
597
  })
575
- }),
576
- end: Object.assign({}, this.selectedEndDate && {
577
- date: this.selectedEndDate,
578
- timestamp: this.selectedEndDate.getTime(),
579
- detail: this.createDateObject(this.selectedEndDate, {
580
- excludeTime: true,
581
- exactMonthNumber: true
582
- })
583
- })
584
- },
585
- value: this.valueText
586
- };
598
+ },
599
+ value: this.valueText
600
+ };
601
+ }
587
602
  }
588
603
  }
589
604
  /**
@@ -591,6 +606,7 @@ const BcmDatetimePicker = class {
591
606
  * @param month
592
607
  */
593
608
  setMonth(month) {
609
+ this.renderDate.setDate(1);
594
610
  this.renderDate = new Date(this.renderDate.setMonth(month));
595
611
  this.setDragSelection('years', this.currentDate.year);
596
612
  }
@@ -684,7 +700,7 @@ const BcmDatetimePicker = class {
684
700
  this.valueText = this.getValueText();
685
701
  this.setValue();
686
702
  const splitText = this.valueText.split('/');
687
- const newValue = this.changeFormat(new Date(splitText[1] + "/" + splitText[0] + "/" + splitText[2]));
703
+ const newValue = this.valueText ? this.changeFormat(new Date(splitText[1] + "/" + splitText[0] + "/" + splitText[2])) : '';
688
704
  this.inputElement.value = newValue;
689
705
  }
690
706
  }
@@ -767,7 +783,7 @@ const BcmDatetimePicker = class {
767
783
  }
768
784
  }
769
785
  const splitText = text.split('/');
770
- const newValue = this.changeFormat(new Date(splitText[1] + "/" + splitText[0] + "/" + splitText[2]));
786
+ const newValue = text ? this.changeFormat(new Date(splitText[1] + "/" + splitText[0] + "/" + splitText[2])) : '';
771
787
  this.inputElement.value = newValue;
772
788
  }
773
789
  }
@@ -1220,7 +1236,9 @@ const BcmDatetimePicker = class {
1220
1236
  const toggleClasses = classnames('toggle', {
1221
1237
  disabled: this.disabled
1222
1238
  });
1223
- return (h(Host, { class: hostClasses, "bcm-internal-id": this.inputId }, h("bcm-input", { ref: el => (this.inputElement = el), placeholder: 'Select ' + (this.type === Types.datetime ? 'date and time' : '') + (this.type === Types.date ? 'date' : '') + (this.type === Types.time ? 'time' : ''), value: this.valueText, required: this.required, fullWidth: this.fullWidth, disabled: this.disabled, name: this.name, id: this.inputId, label: this.label, clearable: true, disableWatchValue: true, "on-bcm-focus": () => this.handleInputFocus(), "on-bcm-clear": () => this.handleInputClear(), "on-bcm-change": (e) => this.handleInputChange(e), "on-bcm-input": (e) => this.handleInputInput(e.detail), noCaption: this.noCaption, caption: this.caption, captionType: this.captionType }, this.error && (h("bcm-tooltip", { slot: "suffix", placement: "top", message: this.errorText }, h("bcm-icon", {
1239
+ return (h(Host, { class: hostClasses, "bcm-internal-id": this.inputId }, h("bcm-input", { ref: el => (this.inputElement = el), placeholder: 'Select ' + (this.type === Types.datetime ? 'date and time' : '') + (this.type === Types.date ? 'date' : '') + (this.type === Types.time ? 'time' : ''), value: this.valueText, required: this.required, fullWidth: this.fullWidth, disabled: this.disabled, name: this.name, id: this.inputId, label: this.label, clearable: true, disableWatchValue: true, "on-bcm-focus": () => this.handleInputFocus(), "on-bcm-clear": () => this.handleInputClear(), "on-bcm-change": (e) => this.handleInputChange(e),
1240
+ // on-bcm-input={(e: CustomEvent) => this.handleInputInput(e.detail)}
1241
+ noCaption: this.noCaption, caption: this.caption, captionType: this.captionType }, this.error && (h("bcm-tooltip", { slot: "suffix", placement: "top", message: this.errorText }, h("bcm-icon", {
1224
1242
  // slot="suffix"
1225
1243
  // title={this.errorText}
1226
1244
  icon: "exclamation-circle", color: "red-6", size: 16
@@ -17,6 +17,9 @@ const BcmSelectBox = class {
17
17
  componentDidRender() { }
18
18
  componentWillUpdate() { }
19
19
  componentDidUpdate() { }
20
+ handleChangeEvent(event) {
21
+ event.stopPropagation();
22
+ }
20
23
  render() {
21
24
  const classes = classnames('select-box');
22
25
  const hostClasses = classnames(this.hidden ? 'hidden' : null, {
@@ -257,6 +257,7 @@ const BcmSelect = class {
257
257
  }
258
258
  }
259
259
  async setDataAsync(_data = []) {
260
+ let newValue = null;
260
261
  if (this.isRendered == true) {
261
262
  await this.setData(_data);
262
263
  }
@@ -277,7 +278,7 @@ const BcmSelect = class {
277
278
  }
278
279
  else {
279
280
  if (item[this.objectMapping['selected']] === true) {
280
- this.value = item;
281
+ newValue = item;
281
282
  this.selectText = item[this.objectMapping['text']];
282
283
  }
283
284
  }
@@ -294,8 +295,11 @@ const BcmSelect = class {
294
295
  this.checklist = _checkedItems;
295
296
  }
296
297
  else {
297
- if (this.value != null) {
298
- this.value = null;
298
+ if (newValue != null) {
299
+ // this.value = null
300
+ newValue.selected && (delete newValue.selected);
301
+ newValue.checked && (delete newValue.checked);
302
+ this.value = newValue;
299
303
  }
300
304
  this.checklist = [];
301
305
  }
@@ -431,8 +435,10 @@ const BcmSelect = class {
431
435
  this.captionCache = this.caption;
432
436
  this.captionTypeCache = this.captionType;
433
437
  }
434
- handleChange(newValue) {
435
- this.change.emit(newValue);
438
+ handleChange(newValue, oldValue) {
439
+ if (newValue[this.objectMapping['id']] != (oldValue && oldValue[this.objectMapping['id']])) {
440
+ this.change.emit(newValue);
441
+ }
436
442
  // if(this.checkboxes){
437
443
  // this.calculateContainer()
438
444
  // }
@@ -730,12 +736,16 @@ const BcmSelect = class {
730
736
  * @desc
731
737
  */
732
738
  handleListboxSelected(event) {
739
+ // console.log(event)
740
+ // debugger;
733
741
  var path = event.path || (event.composedPath && event.composedPath());
734
742
  if (path && path.filter((input) => input['_internal_id'] == this._internal_id)[0] != undefined) {
735
743
  setTimeout(() => {
736
744
  if (this.checkboxes !== true) {
737
745
  const optionValue = event.detail;
738
- this.value = optionValue;
746
+ optionValue.selected && (delete optionValue.selected);
747
+ optionValue.checked && (delete optionValue.checked);
748
+ optionValue != this.value && (this.value = optionValue);
739
749
  this.selectText = optionValue[this.objectMapping['text']];
740
750
  }
741
751
  }, 100);
@@ -748,7 +758,6 @@ const BcmSelect = class {
748
758
  var path = event.path || (event.composedPath && event.composedPath());
749
759
  if (path && path.filter((input) => input['_internal_id'] == this._internal_id)[0] != undefined) {
750
760
  setTimeout(() => {
751
- // console.log(e.detail)
752
761
  if (JSON.stringify(this.checklist) !== JSON.stringify(event.detail)) {
753
762
  // this.handleTagControl(e.detail)
754
763
  this.handleTagControl2(event.detail);
@@ -760,9 +769,7 @@ const BcmSelect = class {
760
769
  handleTreeviewCheckedList(event) {
761
770
  var path = event.path || (event.composedPath && event.composedPath());
762
771
  if (path && path.filter((input) => input['_internal_id'] == this._internal_id)[0] != undefined) {
763
- // console.log(e.detail)
764
772
  // setTimeout(() => {
765
- // console.log(e.detail)
766
773
  // if(JSON.stringify(this.checklist) !== JSON.stringify(e.detail)){
767
774
  // this.handleTagControl(e.detail)
768
775
  this.handleTagControl2(event.detail);
@@ -798,8 +805,6 @@ const BcmSelect = class {
798
805
  }
799
806
  }
800
807
  await this.calculateContainer();
801
- // console.log(this.onShowVisibleTags)
802
- // console.log(this.onShowHiddenTags)
803
808
  }
804
809
  async calculateContainer() {
805
810
  // await delay(10)
@@ -943,7 +948,6 @@ const BcmSelect = class {
943
948
  this.hiddenTags = [...new Set(this.hiddenTags)];
944
949
  this.onShowVisibleTags = this.visibleTags;
945
950
  this.onShowHiddenTags = this.hiddenTags;
946
- // console.log(this.onShowHiddenTags.toString().split(',').join("\r\n"));
947
951
  // if(this.firstRun){
948
952
  if (this.onShowVisibleTags.length > 0 || this.onShowHiddenTags.length > 0) {
949
953
  var cacheValue = JSON.parse(JSON.stringify([...this.onShowVisibleTags, ...this.onShowHiddenTags]));
@@ -118,5 +118,5 @@ const patchCloneNodeFix = (HTMLElementPrototype) => {
118
118
 
119
119
  patchBrowser().then(options => {
120
120
  globalScripts();
121
- return bootstrapLazy(JSON.parse("[[\"bcm-select\",[[1,\"bcm-select\",{\"_id\":[513,\"id\"],\"value\":[1],\"value2\":[1],\"size\":[1],\"scrollable\":[1],\"clearable\":[4],\"label\":[1],\"placeholder\":[1],\"search\":[4],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"disabled\":[4],\"flex\":[4],\"name\":[1],\"searchFields\":[16],\"fullWidth\":[4,\"full-width\"],\"defaultValue\":[1,\"default-value\"],\"hidden\":[4],\"checkboxes\":[4],\"searchable\":[4],\"required\":[4],\"treeview\":[4],\"numberOfColumns\":[2,\"number-of-columns\"],\"viewportWidth\":[1,\"viewport-width\"],\"viewportMinWidth\":[1,\"viewport-min-width\"],\"viewportMaxWidth\":[1,\"viewport-max-width\"],\"template\":[1],\"maxHeight\":[1,\"max-height\"],\"infoFooter\":[4,\"info-footer\"],\"_internal_id\":[513],\"alignment\":[1],\"_items\":[8],\"_data\":[8],\"placement\":[513],\"tooltip\":[1],\"selectText\":[32],\"isOpen\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"config\":[64],\"setData\":[64],\"setDataAsync\":[64],\"clearAndSelectSearch\":[64],\"selected\":[64],\"addChecked\":[64],\"updateChecked\":[64],\"getValue\":[64],\"getChecklist\":[64],\"setClear\":[64],\"resetCaption\":[64]},[[11,\"wheel\",\"onwheelEvent\"],[7,\"scroll\",\"scrollEvent\"],[11,\"resize\",\"handleScreenResize\"],[10,\"click\",\"handleClickOutside\"],[6,\"bcm-treeview-unchecked\",\"handleTreeviewUnchecked\"],[6,\"bcm-listbox-unchecked\",\"handleListboxUnchecked\"],[6,\"bcm-tag-dissmisable\",\"bcmTagDissmisable\"],[4,\"bcm-listbox-item-selected\",\"handleListboxSelected\"],[4,\"bcm-treeview-checklist\",\"handleListboxCheckedList\"],[4,\"bcm-listbox-checklist\",\"handleTreeviewCheckedList\"]]]]],[\"bcm-autocomplete\",[[1,\"bcm-autocomplete\",{\"searchFields\":[16],\"_items\":[1,\"data\"],\"fullWidth\":[4,\"full-width\"],\"hidden\":[4],\"searchText\":[1,\"searchtext\"],\"returnField\":[1,\"return-field\"],\"searchSub\":[1,\"search-sub\"],\"searchPlaceholder\":[1,\"searchplaceholder\"],\"inputLength\":[32],\"isOpen\":[32],\"resultFound\":[32],\"searchData\":[32],\"searchResults\":[32],\"items\":[32],\"config\":[64],\"setData\":[64]},[[2,\"bcm-listbox-item-selected\",\"handleListboxClearSelected\"],[0,\"bcm-on-search-value\",\"listenSearchValue\"],[0,\"bcm-on-search\",\"listenSearchResult\"],[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-comment\",[[1,\"bcm-comment\",{\"name\":[1],\"time\":[1],\"comment\":[1],\"userImage\":[1,\"user-image\"],\"likeStatus\":[1,\"like-status\"],\"replyStatus\":[4,\"reply-status\"],\"likedCount\":[2,\"liked-count\"],\"dislikedCount\":[2,\"disliked-count\"],\"commentId\":[2,\"comment-id\"],\"hidden\":[4],\"likeMouseDown\":[32],\"dislikeMouseDown\":[32]},[[9,\"mouseup\",\"handleWindowMouseDown\"]]]]],[\"bcm-date-picker\",[[1,\"bcm-date-picker\",{\"date\":[1],\"value\":[8],\"endDate\":[1,\"end-date\"],\"range\":[4],\"hidden\":[4],\"name\":[513],\"fullWidth\":[4,\"full-width\"],\"required\":[4],\"label\":[1],\"disabledDates\":[8,\"disableddates\"],\"disabled\":[4],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"alignment\":[1],\"_internal_id\":[513,\"internal-id\"],\"stateStartDate\":[32],\"stateEndDate\":[32],\"set\":[64],\"setDisabled\":[64],\"setClear\":[64],\"setStartDate\":[64],\"setEndDate\":[64],\"getInput\":[64],\"getValue\":[64],\"isValid\":[64],\"resetCaption\":[64]}]]],[\"bcm-time-picker\",[[1,\"bcm-time-picker\",{\"time\":[1],\"value\":[8],\"hidden\":[4],\"name\":[513],\"fullWidth\":[4,\"full-width\"],\"required\":[4],\"label\":[1],\"disabled\":[4],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"alignment\":[1],\"set\":[64],\"setDisabled\":[64],\"getInput\":[64],\"getValue\":[64],\"isValid\":[64]}]]],[\"bcm-checkbox-group\",[[1,\"bcm-checkbox-group\",{\"direction\":[1],\"items\":[1],\"indeterminate\":[4],\"name\":[513],\"value\":[8],\"defaultValue\":[1,\"default-value\"],\"disabled\":[4],\"hidden\":[4],\"required\":[4],\"label\":[1],\"gap\":[1],\"fullWidth\":[513,\"full-width\"],\"optionType\":[1,\"option-type\"],\"buttonStyle\":[1,\"button-style\"],\"size\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"tooltip\":[1],\"indeterminateState\":[32],\"checkboxesProp\":[32],\"defaultValueState\":[32],\"setClear\":[64],\"resetCaption\":[64],\"check\":[64],\"groupChecked\":[64]}]]],[\"bcm-radio-group\",[[1,\"bcm-radio-group\",{\"value\":[520],\"direction\":[1],\"options\":[1],\"optionType\":[1,\"option-type\"],\"buttonStyle\":[1,\"button-style\"],\"size\":[1],\"name\":[513],\"defaultValue\":[1,\"default-value\"],\"disabled\":[4],\"hidden\":[4],\"label\":[1],\"required\":[516],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"tooltip\":[1],\"captionCache\":[32],\"captionTypeCache\":[32],\"radioOptions\":[32],\"usingSlots\":[32],\"setData\":[64],\"getValue\":[64],\"check\":[64],\"setClear\":[64],\"resetCaption\":[64]}]]],[\"bcm-colorpicker\",[[1,\"bcm-colorpicker\",{\"_color\":[1,\"color\"],\"open\":[4],\"value\":[1],\"label\":[1],\"size\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"fullWidth\":[4,\"full-width\"],\"disabled\":[4],\"hidden\":[4],\"required\":[4],\"tooltip\":[1],\"h\":[32],\"s\":[32],\"v\":[32],\"a\":[32],\"selectedH\":[32],\"selectedS\":[32],\"selectedV\":[32],\"selectedA\":[32],\"color\":[32],\"inputValue\":[32],\"mouseState\":[32],\"getValue\":[64],\"setColor\":[64]},[[8,\"click\",\"handleWindowClick\"]]]]],[\"bcm-popconfirm\",[[1,\"bcm-popconfirm\",{\"message\":[1],\"status\":[1],\"cancelText\":[1,\"cancel-text\"],\"okeyText\":[1,\"okey-text\"],\"placement\":[513],\"trigger\":[1],\"open\":[516],\"hidden\":[4],\"_internal_id\":[513,\"internal-id\"],\"show\":[64],\"hide\":[64]},[[4,\"bcm-confirm-internal\",\"handleBcmConfirm\"],[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-switch\",[[1,\"bcm-switch\",{\"checked\":[516],\"size\":[1],\"activeIcon\":[1,\"active-icon\"],\"inactiveIcon\":[1,\"inactive-icon\"],\"activeText\":[1,\"active-text\"],\"inactiveText\":[1,\"inactive-text\"],\"pending\":[4],\"disabled\":[516],\"hidden\":[4],\"value\":[8],\"name\":[513],\"label\":[1],\"required\":[516],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"tooltip\":[1],\"captionCache\":[32],\"captionTypeCache\":[32],\"setClear\":[64],\"resetCaption\":[64]}]]],[\"bcm-dropdown-list\",[[1,\"bcm-dropdown-list\",{\"_items\":[1,\"data\"],\"size\":[520],\"hidden\":[4],\"items\":[32]}]]],[\"bcm-menu\",[[1,\"bcm-menu\",{\"_items\":[1,\"items\"],\"hidden\":[4],\"items\":[32],\"setData\":[64]},[[0,\"bcm-menu-item-selected\",\"handleMenuItemSelected\"]]]]],[\"bcm-pulldown\",[[1,\"bcm-pulldown\",{\"_items\":[1,\"items\"],\"hidden\":[4],\"items\":[32],\"setData\":[64]},[[0,\"bcm-pulldown-root-group-open\",\"handlePulldownRootGroupOpen\"],[0,\"bcm-pulldown-item-selected\",\"handleMenuItemSelected\"]]]]],[\"bcm-sub-comment\",[[1,\"bcm-sub-comment\",{\"name\":[1],\"time\":[1],\"comment\":[1],\"userImage\":[1,\"user-image\"],\"likeStatus\":[1,\"like-status\"],\"likedCount\":[2,\"liked-count\"],\"dislikedCount\":[2,\"disliked-count\"],\"hidden\":[4],\"likeMouseDown\":[32],\"dislikeMouseDown\":[32]},[[9,\"mouseup\",\"handleWindowMouseDown\"]]]]],[\"bcm-breadcrumb\",[[1,\"bcm-breadcrumb\",{\"items\":[16],\"hidden\":[4],\"isOpen\":[32]},[[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-notification\",[[1,\"bcm-notification\",{\"_title\":[1,\"title\"],\"status\":[1],\"confirmText\":[8,\"confirm\"],\"isShow\":[516,\"open\"],\"hidden\":[4],\"hide\":[64],\"show\":[64]}]]],[\"bcm-tab\",[[1,\"bcm-tab\",{\"type\":[1],\"active\":[4],\"disabled\":[4],\"closable\":[4],\"tabId\":[1,\"tab-id\"],\"formControl\":[1,\"form-control\"],\"hidden\":[4],\"status\":[1],\"badge\":[4],\"blink\":[4]}]]],[\"bcm-upload\",[[1,\"bcm-upload\",{\"acceptTypes\":[1,\"accept-types\"],\"multipleFile\":[2,\"multiple-file\"],\"maxFileSize\":[1,\"max-file-size\"],\"maxImageWidth\":[2,\"max-image-width\"],\"maxImageHeight\":[2,\"max-image-height\"],\"minImageWidth\":[2,\"min-image-width\"],\"minImageHeight\":[2,\"min-image-height\"],\"showThumbnail\":[4,\"show-thumbnail\"],\"hidden\":[4],\"files\":[32],\"types\":[32],\"maxFileSizeValue\":[32],\"maxFileSizeUnit\":[32],\"data\":[64]}]]],[\"bcm-alert\",[[1,\"bcm-alert\",{\"_title\":[1,\"title\"],\"status\":[1],\"type\":[1],\"dissmisable\":[8],\"icon\":[4],\"bigIcon\":[4,\"big-icon\"],\"fullWidth\":[4,\"full-width\"],\"hidden\":[4],\"hasSlot\":[32]}]]],[\"bcm-collapse\",[[1,\"bcm-collapse\",{\"borderless\":[4],\"open\":[516],\"noBorder\":[4,\"no-border\"],\"collapseId\":[513,\"id\"],\"hidden\":[4]}]]],[\"bcm-dropdown-button\",[[1,\"bcm-dropdown-button\",{\"kind\":[1],\"size\":[8],\"disabled\":[4],\"outline\":[4],\"icon\":[1],\"href\":[1],\"target\":[1],\"loading\":[4],\"type\":[8],\"isOpen\":[4,\"open\"],\"_id\":[513,\"id\"],\"hidden\":[4]},[[4,\"bcm-dropdown-item-selected\",\"handleDropdownOpen\"],[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-message\",[[1,\"bcm-message\",{\"status\":[1],\"fullWidth\":[4,\"full-width\"],\"loading\":[4],\"isShow\":[516,\"open\"],\"hidden\":[4],\"hide\":[64],\"show\":[64]}]]],[\"bcm-modal\",[[1,\"bcm-modal\",{\"_id\":[513,\"id\"],\"headerTitle\":[1,\"header-title\"],\"type\":[1],\"status\":[1],\"okText\":[1,\"ok-text\"],\"cancelText\":[1,\"cancel-text\"],\"isShow\":[516,\"open\"],\"hidden\":[4],\"size\":[1],\"fullWidth\":[4,\"full-width\"],\"backdrop\":[8],\"headerArea\":[32],\"footerArea\":[32],\"hide\":[64],\"show\":[64]},[[8,\"click\",\"handleSubmit\"],[4,\"keydown\",\"keyboardNavigation\"]]]]],[\"bcm-popover\",[[1,\"bcm-popover\",{\"message\":[1],\"heading\":[1],\"placement\":[513],\"trigger\":[1],\"open\":[516],\"hidden\":[4],\"_internal_id\":[513,\"internal-id\"],\"show\":[64],\"hide\":[64]}]]],[\"bcm-progress\",[[1,\"bcm-progress\",{\"percent\":[514],\"size\":[1],\"type\":[1],\"info\":[1],\"error\":[4],\"hidden\":[4],\"isCompleted\":[32],\"increment\":[64],\"decrement\":[64],\"setPercent\":[64]}]]],[\"bcm-result\",[[1,\"bcm-result\",{\"status\":[1],\"heading\":[1],\"description\":[1],\"hidden\":[4],\"footerArea\":[32],\"footerHtml\":[32]}]]],[\"bcm-slider\",[[1,\"bcm-slider\",{\"min\":[2],\"max\":[2],\"range\":[4],\"disabled\":[4],\"labelPrefix\":[1,\"label-prefix\"],\"labelSuffix\":[1,\"label-suffix\"],\"step\":[2],\"direction\":[1],\"_value\":[1,\"value\"],\"hidden\":[4],\"items\":[32],\"currentContent\":[32],\"isHorizontal\":[32]},[[9,\"mousemove\",\"handleMouseMove\"],[9,\"mouseup\",\"handleMouseUp\"]]]]],[\"bcm-timeline-item\",[[1,\"bcm-timeline-item\",{\"even\":[4],\"first\":[4],\"last\":[4],\"icon\":[1],\"timelineType\":[1,\"timeline-type\"],\"hidden\":[4]}]]],[\"bcm-card\",[[1,\"bcm-card\",{\"size\":[1],\"hidden\":[4],\"header\":[32],\"footer\":[32]}]]],[\"bcm-card-footer\",[[4,\"bcm-card-footer\"]]],[\"bcm-card-header\",[[4,\"bcm-card-header\"]]],[\"bcm-collapse-group\",[[4,\"bcm-collapse-group\",{\"borderless\":[4],\"open\":[516],\"multiple\":[516],\"hidden\":[4]},[[4,\"bcm-collapse-open\",\"handleOpen\"]]]]],[\"bcm-comment-group\",[[1,\"bcm-comment-group\",{\"fullWidth\":[4,\"full-width\"],\"hidden\":[4]}]]],[\"bcm-content\",[[1,\"bcm-content\",{\"hidden\":[4]}]]],[\"bcm-dropdown\",[[1,\"bcm-dropdown\",{\"isOpen\":[516,\"open\"],\"_id\":[513,\"id\"],\"disabled\":[4],\"size\":[8],\"hidden\":[4]},[[0,\"bcm-dropdown-open\",\"handleDropdownOpen\"],[0,\"bcm-dropdown-item-selected\",\"handleBcmDropdownItemSelected\"],[0,\"bcm-dropdown-root-group-open\",\"handleSplitRootGroupOpen\"]]]]],[\"bcm-error-layout\",[[1,\"bcm-error-layout\",{\"size\":[1],\"hidden\":[4],\"items\":[1],\"itemsProp\":[32],\"set\":[64],\"clear\":[64]}]]],[\"bcm-footer\",[[1,\"bcm-footer\",{\"hidden\":[4]}]]],[\"bcm-form\",[[1,\"bcm-form\",{\"_id\":[513,\"id\"],\"hidden\":[4],\"validation\":[4],\"name\":[1],\"value\":[8],\"submit\":[64],\"setClear\":[64],\"resetCaption\":[64],\"config\":[64]},[[0,\"click\",\"handleSubmit\"],[0,\"bcm-change\",\"handleChange\"]]]]],[\"bcm-form-group\",[[1,\"bcm-form-group\",{\"_id\":[513,\"id\"],\"hidden\":[4],\"validation\":[4],\"name\":[1],\"value\":[8]}]]],[\"bcm-header\",[[1,\"bcm-header\",{\"hidden\":[4]}]]],[\"bcm-select-group\",[[1,\"bcm-select-group\",{\"heading\":[1],\"visible\":[4],\"hidden\":[4]}]]],[\"bcm-select-option\",[[1,\"bcm-select-option\",{\"value\":[1],\"selected\":[516],\"disabled\":[4],\"visible\":[4],\"hidden\":[4],\"getLabel\":[64]}]]],[\"bcm-selecto\",[[1,\"bcm-selecto\",{\"size\":[1],\"hidden\":[4]}]]],[\"bcm-tab-pane\",[[1,\"bcm-tab-pane\",{\"size\":[1],\"hidden\":[4],\"fullWidth\":[4,\"full-width\"],\"tab\":[1],\"active\":[4]},[[6,\"bcm-click\",\"handleActiveTabPane\"]]]]],[\"bcm-tabs\",[[1,\"bcm-tabs\",{\"size\":[1],\"type\":[1],\"direction\":[1],\"hidden\":[4],\"fullWidth\":[4,\"full-width\"],\"underline\":[4],\"activeChild\":[32],\"lineOpts\":[32],\"prevButton\":[32],\"nextButton\":[32],\"completeButton\":[32],\"prevButtonState\":[32],\"nextButtonState\":[32],\"completeButtonState\":[32],\"config\":[64],\"next\":[64],\"prev\":[64],\"complete\":[64],\"active\":[64],\"getActiveTab\":[64],\"getActiveIndex\":[64],\"error\":[64],\"info\":[64],\"warning\":[64],\"success\":[64],\"statusReset\":[64]},[[9,\"resize\",\"windowResize\"]]]]],[\"bcm-tabs-content\",[[1,\"bcm-tabs-content\",{\"size\":[1],\"hidden\":[4],\"fullWidth\":[4,\"full-width\"],\"type\":[1]},[[4,\"bcm-tabs-active-item\",\"handleActivePane\"]]]]],[\"bcm-timeline\",[[1,\"bcm-timeline\",{\"icon\":[1],\"type\":[1],\"hidden\":[4],\"items\":[32]}]]],[\"bcm-treeview-group\",[[1,\"bcm-treeview-group\"]]],[\"bcm-select-box\",[[1,\"bcm-select-box\",{\"_internal_id\":[513],\"hidden\":[4],\"isShow\":[4,\"open\"]}]]],[\"bcm-comment-editor\",[[1,\"bcm-comment-editor\",{\"placeholder\":[1],\"userImage\":[1,\"user-image\"],\"buttonText\":[1,\"button-text\"],\"commentId\":[2,\"comment-id\"],\"hidden\":[4]}]]],[\"bcm-popconfirm-box\",[[1,\"bcm-popconfirm-box\",{\"message\":[1],\"status\":[1],\"cancelText\":[1,\"cancel-text\"],\"okeyText\":[1,\"okey-text\"],\"placement\":[520],\"open\":[516],\"hidden\":[4],\"_internal_id\":[513,\"internal-id\"],\"openBox\":[64]}]]],[\"bcm-dropdown-group\",[[1,\"bcm-dropdown-group\",{\"_title\":[1,\"title\"],\"direction\":[1],\"_id\":[513,\"id\"],\"size\":[520],\"open\":[516],\"hidden\":[4]},[[8,\"click\",\"handleWindowClick\"]]]]],[\"bcm-dropdown-item\",[[1,\"bcm-dropdown-item\",{\"size\":[8],\"disabled\":[4],\"icon\":[1],\"href\":[1],\"target\":[1],\"_id\":[513,\"id\"],\"hidden\":[4]}]]],[\"bcm-link\",[[1,\"bcm-link\",{\"href\":[1],\"target\":[1],\"icon\":[1],\"hidden\":[4]}]]],[\"bcm-menu-group\",[[1,\"bcm-menu-group\",{\"_title\":[1,\"title\"],\"collapsible\":[4],\"open\":[4],\"padding\":[4],\"hidden\":[4]}]]],[\"bcm-pulldown-group\",[[1,\"bcm-pulldown-group\",{\"open\":[4],\"_title\":[1,\"title\"],\"direction\":[1],\"_id\":[513,\"id\"],\"hidden\":[4],\"childGroupToggle\":[64]},[[8,\"click\",\"handleWindowClick\"],[0,\"bcm-pulldown-item-selected\",\"handlePulldownItemSelected\"]]]]],[\"bcm-badge\",[[1,\"bcm-badge\",{\"type\":[1],\"status\":[1],\"value\":[2],\"hidden\":[4],\"color\":[1],\"size\":[1]}]]],[\"bcm-menu-item\",[[1,\"bcm-menu-item\",{\"selected\":[4],\"padding\":[4],\"hidden\":[4],\"id\":[32],\"items\":[32]},[[4,\"bcm-menu-clear-selecteds\",\"handleMenuClearSelecteds\"]]]]],[\"bcm-popover-box\",[[1,\"bcm-popover-box\",{\"message\":[1],\"heading\":[1],\"placement\":[520],\"open\":[516],\"hidden\":[4],\"openBox\":[64]}]]],[\"bcm-pulldown-item\",[[1,\"bcm-pulldown-item\",{\"root\":[4],\"padding\":[4],\"disabled\":[4],\"selected\":[4],\"hidden\":[4],\"id\":[32]},[[4,\"bcm-pulldown-clear-selecteds\",\"handleMenuClearSelecteds\"]]]]],[\"bcm-radio\",[[1,\"bcm-radio\",{\"checked\":[516],\"value\":[520],\"disabled\":[516],\"optionType\":[1,\"option-type\"],\"buttonStyle\":[1,\"button-style\"],\"color\":[513],\"size\":[1],\"hidden\":[4],\"required\":[4],\"check\":[64]}]]],[\"bcm-list-item\",[[1,\"bcm-list-item\",{\"size\":[1],\"hidden\":[4],\"disabled\":[516],\"_internal_id\":[513],\"template\":[1],\"text\":[1],\"_uniq_id\":[1,\"uniqid\"],\"_id\":[513,\"id\"],\"itemObject\":[513,\"item-object\"],\"selected\":[516],\"multiSelect\":[4,\"multiselect\"],\"select\":[64]}]]],[\"bcm-tooltip-box\",[[1,\"bcm-tooltip-box\",{\"hidden\":[4],\"message\":[1],\"placement\":[520],\"open\":[516],\"openBox\":[64]}]]],[\"bcm-tooltip\",[[1,\"bcm-tooltip\",{\"message\":[1],\"placement\":[513],\"trigger\":[1],\"open\":[516],\"hidden\":[4],\"_internal_id\":[513,\"internal-id\"],\"show\":[64],\"hide\":[64]},[[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-label\",[[4,\"bcm-label\",{\"_id\":[513,\"id\"],\"required\":[4],\"value\":[1],\"size\":[1],\"form\":[8],\"htmlFor\":[8,\"html-for\"],\"hidden\":[4],\"type\":[8],\"tooltip\":[1]}]]],[\"bcm-list\",[[1,\"bcm-list\",{\"_id\":[513,\"id\"],\"_internal_id\":[513],\"_list_select_id\":[1],\"_list_id\":[1],\"type\":[1],\"processType\":[1,\"process-type\"],\"hidden\":[4],\"items\":[8,\"data\"],\"isShow\":[4,\"open\"],\"linkedComponent\":[1,\"linked-component\"],\"selectedId\":[1,\"selected-id\"],\"flex\":[516],\"height\":[513],\"minHeight\":[513,\"min-height\"],\"maxHeight\":[513,\"max-height\"],\"width\":[513],\"minWidth\":[513,\"min-width\"],\"maxWidth\":[513,\"max-width\"],\"fullWidth\":[516,\"full-width\"],\"size\":[513],\"infoFooter\":[516,\"infofooter\"],\"searchable\":[516],\"searchPlaceholder\":[1,\"search-placeholder\"],\"searchFields\":[16],\"returnField\":[1,\"return-field\"],\"searchData\":[8,\"search-data\"],\"value\":[520],\"multiSelect\":[516,\"multiselect\"],\"variableText\":[1,\"variable-text\"],\"clearable\":[4],\"label\":[1],\"placeholder\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"disabled\":[4],\"name\":[1],\"required\":[4],\"tooltip\":[1],\"searchText\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"hide\":[64],\"setSearch\":[64],\"clearAndSelectSearch\":[64],\"show\":[64],\"renderList\":[64],\"toggle\":[64],\"openStatus\":[64],\"config\":[64],\"setDataOther\":[64],\"setData\":[64],\"getValue\":[64],\"getChecklist\":[64],\"resetCaption\":[64],\"toggleChecked\":[64],\"unChecked\":[64],\"checked\":[64],\"setClear\":[64]},[[10,\"click\",\"handleClick\"],[11,\"wheel\",\"wheelEvent\"],[7,\"scroll\",\"scrollEvent\"],[9,\"resize\",\"resizeEvent\"],[7,\"mousemove\",\"onmousemove\"],[0,\"bcm-on-search\",\"listenSearchResult\"],[4,\"bcm-list-selected\",\"handleListSelected\"]]]]],[\"bcm-list-select\",[[1,\"bcm-list-select\",{\"hidden\":[4],\"_id\":[513,\"id\"],\"_list_id\":[1],\"value\":[8],\"_internal_id\":[513],\"type\":[1],\"variableText\":[1,\"variable-text\"],\"size\":[1],\"clearable\":[4],\"label\":[1],\"placeholder\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"disabled\":[4],\"name\":[1],\"fullWidth\":[4,\"full-width\"],\"required\":[4],\"multiSelect\":[4,\"multiselect\"],\"tooltip\":[1],\"searchData\":[8,\"search-data\"],\"selectText\":[32],\"selectData\":[32],\"focusInput\":[32],\"resetCaption\":[64],\"setClear\":[64],\"hide\":[64],\"show\":[64],\"toggle\":[64],\"config\":[64],\"setValue\":[64]},[[0,\"bcm-change\",\"handleChange\"],[0,\"bcm-clear\",\"handleClear\"],[9,\"resize\",\"resizeEvent\"],[10,\"click\",\"handleClick\"]]]]],[\"bcm-datetime-picker\",[[1,\"bcm-datetime-picker\",{\"date\":[1],\"endDate\":[1,\"end-date\"],\"type\":[1],\"disabled\":[4],\"disabledDates\":[8,\"disableddates\"],\"value\":[8],\"_open\":[4,\"open\"],\"hidden\":[4],\"name\":[513],\"fullWidth\":[4,\"full-width\"],\"required\":[4],\"label\":[1],\"minYear\":[2,\"min-year\"],\"maxYear\":[2,\"max-year\"],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"alignment\":[1],\"years\":[32],\"hours\":[32],\"minutes\":[32],\"hasDateModule\":[32],\"hasTimeModule\":[32],\"renderDate\":[32],\"selectedDate\":[32],\"selectedEndDate\":[32],\"error\":[32],\"errorText\":[32],\"open\":[64],\"close\":[64],\"getValue\":[64],\"setDisabled\":[64],\"set\":[64],\"setClear\":[64],\"getInput\":[64],\"isValid\":[64],\"resetCaption\":[64]},[[8,\"click\",\"handleWindowClick\"]]]]],[\"bcm-textarea\",[[1,\"bcm-textarea\",{\"value\":[513],\"label\":[1],\"noCaption\":[4,\"no-caption\"],\"captionError\":[1,\"caption-error\"],\"placeholder\":[1],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"rows\":[2],\"size\":[1],\"fullWidth\":[4,\"full-width\"],\"disabled\":[4],\"clearable\":[4],\"resize\":[1],\"maxLength\":[2,\"max-length\"],\"name\":[513],\"hidden\":[4],\"required\":[4],\"tooltip\":[1],\"hasFocus\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"setFocus\":[64],\"removeFocus\":[64],\"select\":[64],\"setValue\":[64],\"setClear\":[64],\"resetCaption\":[64],\"getValue\":[64]}]]],[\"bcm-checkbox\",[[1,\"bcm-checkbox\",{\"value\":[1032],\"name\":[513],\"checked\":[516],\"disabled\":[4],\"readOnly\":[4,\"readonly\"],\"hidden\":[4],\"required\":[516],\"optionType\":[1,\"option-type\"],\"buttonStyle\":[1,\"button-style\"],\"color\":[513],\"size\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"captionCache\":[32],\"captionTypeCache\":[32],\"setClear\":[64],\"resetCaption\":[64],\"check\":[64]}]]],[\"bcm-treeview-item\",[[1,\"bcm-treeview-item\",{\"items\":[8],\"itemObject\":[1,\"item-object\"],\"text\":[1],\"tooltipText\":[1,\"tooltip-text\"],\"_id\":[513,\"id\"],\"parentId\":[1,\"parent-id\"],\"hasChild\":[4,\"has-child\"],\"size\":[1],\"icon\":[1],\"open\":[516],\"selected\":[4],\"checkboxes\":[4],\"showIcon\":[4,\"show-icon\"],\"favicon\":[4],\"favorite\":[4],\"checked\":[516],\"checkTrigger\":[516,\"checktrigger\"],\"focused\":[516],\"disabled\":[516],\"contextMenuShow\":[4,\"context-menu-show\"],\"_contextMenu\":[1,\"context-menu\"],\"indeterminateState\":[1,\"indeterminate-state\"],\"_internal_id\":[513],\"menuPadding\":[32],\"childLength\":[32],\"indeterminate\":[32],\"hidden\":[32],\"contextMenu\":[32],\"contextOffsetLeft\":[32],\"contextOffsetTop\":[32]},[[4,\"bcm-treeview-clear-selecteds\",\"handletreeviewClearSelecteds\"],[4,\"bcm-treeview-change\",\"ListentreeviewChange\"],[4,\"bcm-treeview-send-check\",\"ListentreeviewShowContext\"],[4,\"bcm-treeview-send-uncheck\",\"ListentreeviewShowContext\"],[4,\"bcm-treeview-show-context\",\"ListentreeviewShowContext\"],[8,\"click\",\"handleWindowClick\"],[0,\"bcm-treeview-check-group-check\",\"checkGroup\"]]]]],[\"bcm-input\",[[1,\"bcm-input\",{\"type\":[1],\"value\":[1032],\"size\":[1],\"label\":[1],\"noCaption\":[4,\"no-caption\"],\"noMargin\":[4,\"no-margin\"],\"captionError\":[1,\"caption-error\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"placeholder\":[1],\"fullWidth\":[4,\"full-width\"],\"disabled\":[4],\"readonly\":[4],\"clearable\":[4],\"passwordToggle\":[4,\"password-toggle\"],\"noDefaultIcon\":[4,\"no-default-icon\"],\"_id\":[513,\"id\"],\"_internal_id\":[1],\"name\":[513],\"unit\":[1],\"unitPrefix\":[1,\"unit-prefix\"],\"decimal\":[8],\"min\":[2],\"max\":[2],\"step\":[8],\"hidden\":[4],\"required\":[4],\"disableWatchValue\":[4,\"disable-watch-value\"],\"maxLength\":[2,\"max-length\"],\"tooltip\":[1],\"inValid\":[32],\"valueCache\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"hasFocus\":[32],\"isPasswordVisible\":[32],\"setFocus\":[64],\"removeFocus\":[64],\"select\":[64],\"setValue\":[64],\"setClear\":[64],\"resetCaption\":[64],\"getValue\":[64]},[[0,\"keydown\",\"numberControl\"]]]]],[\"bcm-search\",[[1,\"bcm-search\",{\"data\":[16],\"searchFields\":[16],\"returnField\":[1,\"return-field\"],\"searchSub\":[1,\"searchsub\"],\"hidden\":[4],\"onlyChild\":[4,\"only-child\"],\"clearable\":[4],\"searchValue\":[1,\"search-value\"],\"searchPlaceholder\":[1,\"searchplaceholder\"],\"disabled\":[4],\"_internal_id\":[513],\"results\":[32],\"setValue\":[64],\"select\":[64],\"setClear\":[64],\"searchArray\":[64]},[[0,\"bcm-change\",\"listenBcmChange\"]]]]],[\"bcm-empty\",[[1,\"bcm-empty\",{\"_image\":[1,\"image\"],\"size\":[1],\"text\":[1],\"hidden\":[4],\"image\":[32]}]]],[\"bcm-text\",[[1,\"bcm-text\",{\"scale\":[1],\"weight\":[1],\"color\":[1],\"hidden\":[4]}]]],[\"bcm-treeview\",[[1,\"bcm-treeview\",{\"checkboxes\":[4],\"showIcon\":[4,\"show-icon\"],\"size\":[1],\"selectedId\":[1,\"selected-id\"],\"checkedList\":[16],\"updateCheckedList\":[16],\"hidden\":[4],\"search\":[4],\"searchOnlyChild\":[4,\"search-only-child\"],\"keydown\":[4],\"allOpen\":[4,\"all-open\"],\"fullWidth\":[4,\"full-width\"],\"infoFooter\":[4,\"info-footer\"],\"searchFields\":[16],\"searchSub\":[1,\"search-sub\"],\"returnField\":[1,\"return-field\"],\"_items\":[1,\"data\"],\"searchPlaceholder\":[1,\"searchplaceholder\"],\"maxHeight\":[1,\"max-height\"],\"highlight\":[4],\"loading\":[4],\"favIcon\":[4,\"fav-icon\"],\"favIconOnlyChilds\":[4,\"fav-icon-only-childs\"],\"_internal_id\":[513],\"showSearch\":[32],\"items\":[32],\"total\":[32],\"checkCount\":[32],\"focusedElement\":[32],\"keyMapForFocus\":[32],\"checklist\":[32],\"favoriteList\":[32],\"checklistSorted\":[32],\"searchData\":[32],\"searchResults\":[32],\"setData\":[64],\"getChecklist\":[64],\"getFavorites\":[64],\"selected\":[64],\"clearAndSelectSearch\":[64],\"addChecked\":[64],\"updateChecked\":[64],\"config\":[64],\"showSearchMethod\":[64],\"searchResultMethod\":[64],\"treeviewUncheckedMethod\":[64]},[[0,\"bcm-on-search\",\"listenSearchResult\"],[0,\"bcm-treeview-item-selected\",\"handletreeviewItemSelected\"],[0,\"bcm-treeview-checked\",\"handletreeviewChecked\"],[0,\"bcm-treeview-unchecked\",\"handletreeviewUnchecked\"],[0,\"bcm-treeview-indeterminate-checked\",\"handletreeviewIndeterminateChecked\"],[0,\"bcm-treeview-indeterminate-unchecked\",\"handletreeviewIndeterminateUnchecked\"],[0,\"contextmenu\",\"handleRightClick\"],[4,\"keyup\",\"keyboardNavigationUp\"],[4,\"keydown\",\"keyboardNavigation\"]]]]],[\"bcm-checkbox-lite\",[[1,\"bcm-checkbox-lite\",{\"value\":[1032],\"name\":[513],\"checked\":[516],\"indeterminate\":[516],\"disabled\":[4],\"readOnly\":[4,\"readonly\"],\"hidden\":[4],\"required\":[516],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"]}]]],[\"bcm-avatar\",[[1,\"bcm-avatar\",{\"plate\":[1],\"size\":[1],\"image\":[1],\"name\":[1],\"type\":[1],\"alt\":[1],\"hidden\":[4],\"isFallback\":[32]},[[2,\"error\",\"handleError\"]]]]],[\"bcm-listbox-item\",[[1,\"bcm-listbox-item\",{\"objectMapping\":[16],\"display\":[4],\"avatar\":[4],\"avatarImage\":[1,\"avatar-image\"],\"avatarName\":[1,\"avatar-name\"],\"secondaryText\":[1,\"secondary\"],\"tooltipText\":[1,\"tooltip\"],\"text\":[1],\"_id\":[513,\"id\"],\"size\":[1],\"icon\":[1],\"open\":[516],\"selected\":[4],\"checkboxes\":[4],\"showIcon\":[4,\"show-icon\"],\"checked\":[516],\"focused\":[516],\"hidden\":[516],\"itemObject\":[1,\"item-object\"],\"disabled\":[516],\"highlight\":[520],\"_internal_id\":[513],\"template\":[1]},[[4,\"bcm-listbox-send-check\",\"ListenListboxCheck\"],[4,\"bcm-listbox-send-uncheck\",\"ListenListboxUncheck\"],[4,\"bcm-listbox-clear-selecteds\",\"handleListboxClearSelecteds\"]]]]],[\"bcm-divider\",[[1,\"bcm-divider\",{\"direction\":[1],\"width\":[1],\"hidden\":[4]}]]],[\"bcm-listbox\",[[1,\"bcm-listbox\",{\"innerComponent\":[4,\"inner-component\"],\"checkboxes\":[4],\"label\":[1],\"required\":[4],\"value\":[8],\"search\":[4],\"infoFooter\":[4,\"info-footer\"],\"showIcon\":[4,\"show-icon\"],\"size\":[1],\"selectedId\":[1,\"selected-id\"],\"checkedList\":[16],\"updateCheckedList\":[16],\"_items\":[1,\"data\"],\"fullWidth\":[4,\"full-width\"],\"searchFields\":[16],\"_flex\":[1,\"flex\"],\"hidden\":[4],\"returnField\":[1,\"return-field\"],\"searchSub\":[1,\"search-sub\"],\"searchText\":[1,\"searchtext\"],\"treeview\":[4],\"searchPlaceholder\":[1,\"searchplaceholder\"],\"numberOfColumns\":[2,\"number-of-columns\"],\"height\":[1],\"maxHeight\":[1,\"max-height\"],\"template\":[1],\"highlight\":[4],\"loading\":[4],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"_internal_id\":[513],\"tooltip\":[1],\"total\":[32],\"items\":[32],\"checklist\":[32],\"sortedChecklist\":[32],\"indeterminateState\":[32],\"checked\":[32],\"jsonItem\":[32],\"searchData\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"checklistSorted\":[32],\"setClear\":[64],\"resetCaption\":[64],\"getValue\":[64],\"getChecklist\":[64],\"showSearchMethod\":[64],\"selected\":[64],\"clearAndSelectSearch\":[64],\"addChecked\":[64],\"updateChecked\":[64],\"config\":[64],\"setData\":[64],\"searchResultMethod\":[64],\"listboxUncheckedMethod\":[64]},[[2,\"bcm-treeview-item-selected\",\"handleListboxSelected\"],[0,\"bcm-on-search\",\"listenSearchResult\"],[0,\"bcm-listbox-item-selected\",\"handleListboxClearSelected\"],[0,\"bcm-listbox-checked\",\"handleListboxChecked\"],[0,\"bcm-listbox-unchecked\",\"handleListboxUnchecked\"]]]]],[\"bcm-tag\",[[1,\"bcm-tag\",{\"type\":[1],\"size\":[8],\"checked\":[4],\"color\":[513],\"value\":[1],\"hidden\":[516],\"_id\":[513,\"id\"],\"maxWidth\":[4,\"max-width\"],\"customStyle\":[8,\"custom-style\"],\"_internal_id\":[513]},[[2,\"click\",\"handleClick\"]]]]],[\"bcm-listbox-group\",[[1,\"bcm-listbox-group\",{\"text\":[1],\"_id\":[513,\"id\"],\"hidden\":[4]}]]],[\"bcm-icon\",[[1,\"bcm-icon\",{\"color\":[1],\"hoverColor\":[1,\"hover-color\"],\"type\":[1],\"size\":[8],\"icon\":[1],\"hidden\":[4],\"_icon\":[32],\"hover_icon\":[32],\"_size\":[32],\"wrapperStyle\":[32],\"faWrapperStyle\":[32]},[[7,\"mousemove\",\"onmousemove\"]]]]],[\"bcm-button\",[[1,\"bcm-button\",{\"kind\":[1],\"size\":[1],\"disabled\":[4],\"outline\":[4],\"icon\":[1],\"iconPosition\":[1,\"icon-position\"],\"href\":[1],\"target\":[1],\"loading\":[4],\"variant\":[1],\"type\":[1],\"hidden\":[4],\"dataDismiss\":[4,\"data-dismiss\"],\"fullWidth\":[4,\"full-width\"]},[[10,\"click\",\"handleOnClick\"]]]]]]"), options);
121
+ return bootstrapLazy(JSON.parse("[[\"bcm-select\",[[1,\"bcm-select\",{\"_id\":[513,\"id\"],\"value\":[1],\"value2\":[1],\"size\":[1],\"scrollable\":[1],\"clearable\":[4],\"label\":[1],\"placeholder\":[1],\"search\":[4],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"disabled\":[4],\"flex\":[4],\"name\":[1],\"searchFields\":[16],\"fullWidth\":[4,\"full-width\"],\"defaultValue\":[1,\"default-value\"],\"hidden\":[4],\"checkboxes\":[4],\"searchable\":[4],\"required\":[4],\"treeview\":[4],\"numberOfColumns\":[2,\"number-of-columns\"],\"viewportWidth\":[1,\"viewport-width\"],\"viewportMinWidth\":[1,\"viewport-min-width\"],\"viewportMaxWidth\":[1,\"viewport-max-width\"],\"template\":[1],\"maxHeight\":[1,\"max-height\"],\"infoFooter\":[4,\"info-footer\"],\"_internal_id\":[513],\"alignment\":[1],\"_items\":[8],\"_data\":[8],\"placement\":[513],\"tooltip\":[1],\"selectText\":[32],\"isOpen\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"config\":[64],\"setData\":[64],\"setDataAsync\":[64],\"clearAndSelectSearch\":[64],\"selected\":[64],\"addChecked\":[64],\"updateChecked\":[64],\"getValue\":[64],\"getChecklist\":[64],\"setClear\":[64],\"resetCaption\":[64]},[[11,\"wheel\",\"onwheelEvent\"],[7,\"scroll\",\"scrollEvent\"],[11,\"resize\",\"handleScreenResize\"],[10,\"click\",\"handleClickOutside\"],[6,\"bcm-treeview-unchecked\",\"handleTreeviewUnchecked\"],[6,\"bcm-listbox-unchecked\",\"handleListboxUnchecked\"],[6,\"bcm-tag-dissmisable\",\"bcmTagDissmisable\"],[4,\"bcm-listbox-item-selected\",\"handleListboxSelected\"],[4,\"bcm-treeview-checklist\",\"handleListboxCheckedList\"],[4,\"bcm-listbox-checklist\",\"handleTreeviewCheckedList\"]]]]],[\"bcm-autocomplete\",[[1,\"bcm-autocomplete\",{\"searchFields\":[16],\"_items\":[1,\"data\"],\"fullWidth\":[4,\"full-width\"],\"hidden\":[4],\"searchText\":[1,\"searchtext\"],\"returnField\":[1,\"return-field\"],\"searchSub\":[1,\"search-sub\"],\"searchPlaceholder\":[1,\"searchplaceholder\"],\"inputLength\":[32],\"isOpen\":[32],\"resultFound\":[32],\"searchData\":[32],\"searchResults\":[32],\"items\":[32],\"config\":[64],\"setData\":[64]},[[2,\"bcm-listbox-item-selected\",\"handleListboxClearSelected\"],[0,\"bcm-on-search-value\",\"listenSearchValue\"],[0,\"bcm-on-search\",\"listenSearchResult\"],[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-comment\",[[1,\"bcm-comment\",{\"name\":[1],\"time\":[1],\"comment\":[1],\"userImage\":[1,\"user-image\"],\"likeStatus\":[1,\"like-status\"],\"replyStatus\":[4,\"reply-status\"],\"likedCount\":[2,\"liked-count\"],\"dislikedCount\":[2,\"disliked-count\"],\"commentId\":[2,\"comment-id\"],\"hidden\":[4],\"likeMouseDown\":[32],\"dislikeMouseDown\":[32]},[[9,\"mouseup\",\"handleWindowMouseDown\"]]]]],[\"bcm-date-picker\",[[1,\"bcm-date-picker\",{\"date\":[1],\"value\":[8],\"endDate\":[1,\"end-date\"],\"range\":[4],\"hidden\":[4],\"name\":[513],\"fullWidth\":[4,\"full-width\"],\"required\":[4],\"label\":[1],\"disabledDates\":[8,\"disableddates\"],\"disabled\":[4],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"alignment\":[1],\"_internal_id\":[513,\"internal-id\"],\"stateStartDate\":[32],\"stateEndDate\":[32],\"set\":[64],\"setDisabled\":[64],\"setClear\":[64],\"setStartDate\":[64],\"setEndDate\":[64],\"getInput\":[64],\"getValue\":[64],\"isValid\":[64],\"resetCaption\":[64]}]]],[\"bcm-time-picker\",[[1,\"bcm-time-picker\",{\"time\":[1],\"value\":[8],\"hidden\":[4],\"name\":[513],\"fullWidth\":[4,\"full-width\"],\"required\":[4],\"label\":[1],\"disabled\":[4],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"alignment\":[1],\"set\":[64],\"setDisabled\":[64],\"getInput\":[64],\"getValue\":[64],\"isValid\":[64]}]]],[\"bcm-checkbox-group\",[[1,\"bcm-checkbox-group\",{\"direction\":[1],\"items\":[1],\"indeterminate\":[4],\"name\":[513],\"value\":[8],\"defaultValue\":[1,\"default-value\"],\"disabled\":[4],\"hidden\":[4],\"required\":[4],\"label\":[1],\"gap\":[1],\"fullWidth\":[513,\"full-width\"],\"optionType\":[1,\"option-type\"],\"buttonStyle\":[1,\"button-style\"],\"size\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"tooltip\":[1],\"indeterminateState\":[32],\"checkboxesProp\":[32],\"defaultValueState\":[32],\"setClear\":[64],\"resetCaption\":[64],\"check\":[64],\"groupChecked\":[64]}]]],[\"bcm-radio-group\",[[1,\"bcm-radio-group\",{\"value\":[520],\"direction\":[1],\"options\":[1],\"optionType\":[1,\"option-type\"],\"buttonStyle\":[1,\"button-style\"],\"size\":[1],\"name\":[513],\"defaultValue\":[1,\"default-value\"],\"disabled\":[4],\"hidden\":[4],\"label\":[1],\"required\":[516],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"tooltip\":[1],\"captionCache\":[32],\"captionTypeCache\":[32],\"radioOptions\":[32],\"usingSlots\":[32],\"setData\":[64],\"getValue\":[64],\"check\":[64],\"setClear\":[64],\"resetCaption\":[64]}]]],[\"bcm-colorpicker\",[[1,\"bcm-colorpicker\",{\"_color\":[1,\"color\"],\"open\":[4],\"value\":[1],\"label\":[1],\"size\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"fullWidth\":[4,\"full-width\"],\"disabled\":[4],\"hidden\":[4],\"required\":[4],\"tooltip\":[1],\"h\":[32],\"s\":[32],\"v\":[32],\"a\":[32],\"selectedH\":[32],\"selectedS\":[32],\"selectedV\":[32],\"selectedA\":[32],\"color\":[32],\"inputValue\":[32],\"mouseState\":[32],\"getValue\":[64],\"setColor\":[64]},[[8,\"click\",\"handleWindowClick\"]]]]],[\"bcm-popconfirm\",[[1,\"bcm-popconfirm\",{\"message\":[1],\"status\":[1],\"cancelText\":[1,\"cancel-text\"],\"okeyText\":[1,\"okey-text\"],\"placement\":[513],\"trigger\":[1],\"open\":[516],\"hidden\":[4],\"_internal_id\":[513,\"internal-id\"],\"show\":[64],\"hide\":[64]},[[4,\"bcm-confirm-internal\",\"handleBcmConfirm\"],[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-switch\",[[1,\"bcm-switch\",{\"checked\":[516],\"size\":[1],\"activeIcon\":[1,\"active-icon\"],\"inactiveIcon\":[1,\"inactive-icon\"],\"activeText\":[1,\"active-text\"],\"inactiveText\":[1,\"inactive-text\"],\"pending\":[4],\"disabled\":[516],\"hidden\":[4],\"value\":[8],\"name\":[513],\"label\":[1],\"required\":[516],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"tooltip\":[1],\"captionCache\":[32],\"captionTypeCache\":[32],\"setClear\":[64],\"resetCaption\":[64]}]]],[\"bcm-dropdown-list\",[[1,\"bcm-dropdown-list\",{\"_items\":[1,\"data\"],\"size\":[520],\"hidden\":[4],\"items\":[32]}]]],[\"bcm-menu\",[[1,\"bcm-menu\",{\"_items\":[1,\"items\"],\"hidden\":[4],\"items\":[32],\"setData\":[64]},[[0,\"bcm-menu-item-selected\",\"handleMenuItemSelected\"]]]]],[\"bcm-pulldown\",[[1,\"bcm-pulldown\",{\"_items\":[1,\"items\"],\"hidden\":[4],\"items\":[32],\"setData\":[64]},[[0,\"bcm-pulldown-root-group-open\",\"handlePulldownRootGroupOpen\"],[0,\"bcm-pulldown-item-selected\",\"handleMenuItemSelected\"]]]]],[\"bcm-sub-comment\",[[1,\"bcm-sub-comment\",{\"name\":[1],\"time\":[1],\"comment\":[1],\"userImage\":[1,\"user-image\"],\"likeStatus\":[1,\"like-status\"],\"likedCount\":[2,\"liked-count\"],\"dislikedCount\":[2,\"disliked-count\"],\"hidden\":[4],\"likeMouseDown\":[32],\"dislikeMouseDown\":[32]},[[9,\"mouseup\",\"handleWindowMouseDown\"]]]]],[\"bcm-breadcrumb\",[[1,\"bcm-breadcrumb\",{\"items\":[16],\"hidden\":[4],\"isOpen\":[32]},[[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-notification\",[[1,\"bcm-notification\",{\"_title\":[1,\"title\"],\"status\":[1],\"confirmText\":[8,\"confirm\"],\"isShow\":[516,\"open\"],\"hidden\":[4],\"hide\":[64],\"show\":[64]}]]],[\"bcm-tab\",[[1,\"bcm-tab\",{\"type\":[1],\"active\":[4],\"disabled\":[4],\"closable\":[4],\"tabId\":[1,\"tab-id\"],\"formControl\":[1,\"form-control\"],\"hidden\":[4],\"status\":[1],\"badge\":[4],\"blink\":[4]}]]],[\"bcm-upload\",[[1,\"bcm-upload\",{\"acceptTypes\":[1,\"accept-types\"],\"multipleFile\":[2,\"multiple-file\"],\"maxFileSize\":[1,\"max-file-size\"],\"maxImageWidth\":[2,\"max-image-width\"],\"maxImageHeight\":[2,\"max-image-height\"],\"minImageWidth\":[2,\"min-image-width\"],\"minImageHeight\":[2,\"min-image-height\"],\"showThumbnail\":[4,\"show-thumbnail\"],\"hidden\":[4],\"files\":[32],\"types\":[32],\"maxFileSizeValue\":[32],\"maxFileSizeUnit\":[32],\"data\":[64]}]]],[\"bcm-alert\",[[1,\"bcm-alert\",{\"_title\":[1,\"title\"],\"status\":[1],\"type\":[1],\"dissmisable\":[8],\"icon\":[4],\"bigIcon\":[4,\"big-icon\"],\"fullWidth\":[4,\"full-width\"],\"hidden\":[4],\"hasSlot\":[32]}]]],[\"bcm-collapse\",[[1,\"bcm-collapse\",{\"borderless\":[4],\"open\":[516],\"noBorder\":[4,\"no-border\"],\"collapseId\":[513,\"id\"],\"hidden\":[4]}]]],[\"bcm-dropdown-button\",[[1,\"bcm-dropdown-button\",{\"kind\":[1],\"size\":[8],\"disabled\":[4],\"outline\":[4],\"icon\":[1],\"href\":[1],\"target\":[1],\"loading\":[4],\"type\":[8],\"isOpen\":[4,\"open\"],\"_id\":[513,\"id\"],\"hidden\":[4]},[[4,\"bcm-dropdown-item-selected\",\"handleDropdownOpen\"],[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-message\",[[1,\"bcm-message\",{\"status\":[1],\"fullWidth\":[4,\"full-width\"],\"loading\":[4],\"isShow\":[516,\"open\"],\"hidden\":[4],\"hide\":[64],\"show\":[64]}]]],[\"bcm-modal\",[[1,\"bcm-modal\",{\"_id\":[513,\"id\"],\"headerTitle\":[1,\"header-title\"],\"type\":[1],\"status\":[1],\"okText\":[1,\"ok-text\"],\"cancelText\":[1,\"cancel-text\"],\"isShow\":[516,\"open\"],\"hidden\":[4],\"size\":[1],\"fullWidth\":[4,\"full-width\"],\"backdrop\":[8],\"headerArea\":[32],\"footerArea\":[32],\"hide\":[64],\"show\":[64]},[[8,\"click\",\"handleSubmit\"],[4,\"keydown\",\"keyboardNavigation\"]]]]],[\"bcm-popover\",[[1,\"bcm-popover\",{\"message\":[1],\"heading\":[1],\"placement\":[513],\"trigger\":[1],\"open\":[516],\"hidden\":[4],\"_internal_id\":[513,\"internal-id\"],\"show\":[64],\"hide\":[64]}]]],[\"bcm-progress\",[[1,\"bcm-progress\",{\"percent\":[514],\"size\":[1],\"type\":[1],\"info\":[1],\"error\":[4],\"hidden\":[4],\"isCompleted\":[32],\"increment\":[64],\"decrement\":[64],\"setPercent\":[64]}]]],[\"bcm-result\",[[1,\"bcm-result\",{\"status\":[1],\"heading\":[1],\"description\":[1],\"hidden\":[4],\"footerArea\":[32],\"footerHtml\":[32]}]]],[\"bcm-slider\",[[1,\"bcm-slider\",{\"min\":[2],\"max\":[2],\"range\":[4],\"disabled\":[4],\"labelPrefix\":[1,\"label-prefix\"],\"labelSuffix\":[1,\"label-suffix\"],\"step\":[2],\"direction\":[1],\"_value\":[1,\"value\"],\"hidden\":[4],\"items\":[32],\"currentContent\":[32],\"isHorizontal\":[32]},[[9,\"mousemove\",\"handleMouseMove\"],[9,\"mouseup\",\"handleMouseUp\"]]]]],[\"bcm-timeline-item\",[[1,\"bcm-timeline-item\",{\"even\":[4],\"first\":[4],\"last\":[4],\"icon\":[1],\"timelineType\":[1,\"timeline-type\"],\"hidden\":[4]}]]],[\"bcm-card\",[[1,\"bcm-card\",{\"size\":[1],\"hidden\":[4],\"header\":[32],\"footer\":[32]}]]],[\"bcm-card-footer\",[[4,\"bcm-card-footer\"]]],[\"bcm-card-header\",[[4,\"bcm-card-header\"]]],[\"bcm-collapse-group\",[[4,\"bcm-collapse-group\",{\"borderless\":[4],\"open\":[516],\"multiple\":[516],\"hidden\":[4]},[[4,\"bcm-collapse-open\",\"handleOpen\"]]]]],[\"bcm-comment-group\",[[1,\"bcm-comment-group\",{\"fullWidth\":[4,\"full-width\"],\"hidden\":[4]}]]],[\"bcm-content\",[[1,\"bcm-content\",{\"hidden\":[4]}]]],[\"bcm-dropdown\",[[1,\"bcm-dropdown\",{\"isOpen\":[516,\"open\"],\"_id\":[513,\"id\"],\"disabled\":[4],\"size\":[8],\"hidden\":[4]},[[0,\"bcm-dropdown-open\",\"handleDropdownOpen\"],[0,\"bcm-dropdown-item-selected\",\"handleBcmDropdownItemSelected\"],[0,\"bcm-dropdown-root-group-open\",\"handleSplitRootGroupOpen\"]]]]],[\"bcm-error-layout\",[[1,\"bcm-error-layout\",{\"size\":[1],\"hidden\":[4],\"items\":[1],\"itemsProp\":[32],\"set\":[64],\"clear\":[64]}]]],[\"bcm-footer\",[[1,\"bcm-footer\",{\"hidden\":[4]}]]],[\"bcm-form\",[[1,\"bcm-form\",{\"_id\":[513,\"id\"],\"hidden\":[4],\"validation\":[4],\"name\":[1],\"value\":[8],\"submit\":[64],\"setClear\":[64],\"resetCaption\":[64],\"config\":[64]},[[0,\"click\",\"handleSubmit\"],[0,\"bcm-change\",\"handleChange\"]]]]],[\"bcm-form-group\",[[1,\"bcm-form-group\",{\"_id\":[513,\"id\"],\"hidden\":[4],\"validation\":[4],\"name\":[1],\"value\":[8]}]]],[\"bcm-header\",[[1,\"bcm-header\",{\"hidden\":[4]}]]],[\"bcm-select-group\",[[1,\"bcm-select-group\",{\"heading\":[1],\"visible\":[4],\"hidden\":[4]}]]],[\"bcm-select-option\",[[1,\"bcm-select-option\",{\"value\":[1],\"selected\":[516],\"disabled\":[4],\"visible\":[4],\"hidden\":[4],\"getLabel\":[64]}]]],[\"bcm-selecto\",[[1,\"bcm-selecto\",{\"size\":[1],\"hidden\":[4]}]]],[\"bcm-tab-pane\",[[1,\"bcm-tab-pane\",{\"size\":[1],\"hidden\":[4],\"fullWidth\":[4,\"full-width\"],\"tab\":[1],\"active\":[4]},[[6,\"bcm-click\",\"handleActiveTabPane\"]]]]],[\"bcm-tabs\",[[1,\"bcm-tabs\",{\"size\":[1],\"type\":[1],\"direction\":[1],\"hidden\":[4],\"fullWidth\":[4,\"full-width\"],\"underline\":[4],\"activeChild\":[32],\"lineOpts\":[32],\"prevButton\":[32],\"nextButton\":[32],\"completeButton\":[32],\"prevButtonState\":[32],\"nextButtonState\":[32],\"completeButtonState\":[32],\"config\":[64],\"next\":[64],\"prev\":[64],\"complete\":[64],\"active\":[64],\"getActiveTab\":[64],\"getActiveIndex\":[64],\"error\":[64],\"info\":[64],\"warning\":[64],\"success\":[64],\"statusReset\":[64]},[[9,\"resize\",\"windowResize\"]]]]],[\"bcm-tabs-content\",[[1,\"bcm-tabs-content\",{\"size\":[1],\"hidden\":[4],\"fullWidth\":[4,\"full-width\"],\"type\":[1]},[[4,\"bcm-tabs-active-item\",\"handleActivePane\"]]]]],[\"bcm-timeline\",[[1,\"bcm-timeline\",{\"icon\":[1],\"type\":[1],\"hidden\":[4],\"items\":[32]}]]],[\"bcm-treeview-group\",[[1,\"bcm-treeview-group\"]]],[\"bcm-select-box\",[[1,\"bcm-select-box\",{\"_internal_id\":[513],\"hidden\":[4],\"isShow\":[4,\"open\"]},[[0,\"bcm-change\",\"handleChangeEvent\"]]]]],[\"bcm-comment-editor\",[[1,\"bcm-comment-editor\",{\"placeholder\":[1],\"userImage\":[1,\"user-image\"],\"buttonText\":[1,\"button-text\"],\"commentId\":[2,\"comment-id\"],\"hidden\":[4]}]]],[\"bcm-popconfirm-box\",[[1,\"bcm-popconfirm-box\",{\"message\":[1],\"status\":[1],\"cancelText\":[1,\"cancel-text\"],\"okeyText\":[1,\"okey-text\"],\"placement\":[520],\"open\":[516],\"hidden\":[4],\"_internal_id\":[513,\"internal-id\"],\"openBox\":[64]}]]],[\"bcm-dropdown-group\",[[1,\"bcm-dropdown-group\",{\"_title\":[1,\"title\"],\"direction\":[1],\"_id\":[513,\"id\"],\"size\":[520],\"open\":[516],\"hidden\":[4]},[[8,\"click\",\"handleWindowClick\"]]]]],[\"bcm-dropdown-item\",[[1,\"bcm-dropdown-item\",{\"size\":[8],\"disabled\":[4],\"icon\":[1],\"href\":[1],\"target\":[1],\"_id\":[513,\"id\"],\"hidden\":[4]}]]],[\"bcm-link\",[[1,\"bcm-link\",{\"href\":[1],\"target\":[1],\"icon\":[1],\"hidden\":[4]}]]],[\"bcm-menu-group\",[[1,\"bcm-menu-group\",{\"_title\":[1,\"title\"],\"collapsible\":[4],\"open\":[4],\"padding\":[4],\"hidden\":[4]}]]],[\"bcm-pulldown-group\",[[1,\"bcm-pulldown-group\",{\"open\":[4],\"_title\":[1,\"title\"],\"direction\":[1],\"_id\":[513,\"id\"],\"hidden\":[4],\"childGroupToggle\":[64]},[[8,\"click\",\"handleWindowClick\"],[0,\"bcm-pulldown-item-selected\",\"handlePulldownItemSelected\"]]]]],[\"bcm-badge\",[[1,\"bcm-badge\",{\"type\":[1],\"status\":[1],\"value\":[2],\"hidden\":[4],\"color\":[1],\"size\":[1]}]]],[\"bcm-menu-item\",[[1,\"bcm-menu-item\",{\"selected\":[4],\"padding\":[4],\"hidden\":[4],\"id\":[32],\"items\":[32]},[[4,\"bcm-menu-clear-selecteds\",\"handleMenuClearSelecteds\"]]]]],[\"bcm-popover-box\",[[1,\"bcm-popover-box\",{\"message\":[1],\"heading\":[1],\"placement\":[520],\"open\":[516],\"hidden\":[4],\"openBox\":[64]}]]],[\"bcm-pulldown-item\",[[1,\"bcm-pulldown-item\",{\"root\":[4],\"padding\":[4],\"disabled\":[4],\"selected\":[4],\"hidden\":[4],\"id\":[32]},[[4,\"bcm-pulldown-clear-selecteds\",\"handleMenuClearSelecteds\"]]]]],[\"bcm-radio\",[[1,\"bcm-radio\",{\"checked\":[516],\"value\":[520],\"disabled\":[516],\"optionType\":[1,\"option-type\"],\"buttonStyle\":[1,\"button-style\"],\"color\":[513],\"size\":[1],\"hidden\":[4],\"required\":[4],\"check\":[64]}]]],[\"bcm-list-item\",[[1,\"bcm-list-item\",{\"size\":[1],\"hidden\":[4],\"disabled\":[516],\"_internal_id\":[513],\"template\":[1],\"text\":[1],\"_uniq_id\":[1,\"uniqid\"],\"_id\":[513,\"id\"],\"itemObject\":[513,\"item-object\"],\"selected\":[516],\"multiSelect\":[4,\"multiselect\"],\"select\":[64]}]]],[\"bcm-tooltip-box\",[[1,\"bcm-tooltip-box\",{\"hidden\":[4],\"message\":[1],\"placement\":[520],\"open\":[516],\"openBox\":[64]}]]],[\"bcm-tooltip\",[[1,\"bcm-tooltip\",{\"message\":[1],\"placement\":[513],\"trigger\":[1],\"open\":[516],\"hidden\":[4],\"_internal_id\":[513,\"internal-id\"],\"show\":[64],\"hide\":[64]},[[10,\"click\",\"handleClickOutside\"]]]]],[\"bcm-label\",[[4,\"bcm-label\",{\"_id\":[513,\"id\"],\"required\":[4],\"value\":[1],\"size\":[1],\"form\":[8],\"htmlFor\":[8,\"html-for\"],\"hidden\":[4],\"type\":[8],\"tooltip\":[1]}]]],[\"bcm-list\",[[1,\"bcm-list\",{\"_id\":[513,\"id\"],\"_internal_id\":[513],\"_list_select_id\":[1],\"_list_id\":[1],\"type\":[1],\"processType\":[1,\"process-type\"],\"hidden\":[4],\"items\":[8,\"data\"],\"isShow\":[4,\"open\"],\"linkedComponent\":[1,\"linked-component\"],\"selectedId\":[1,\"selected-id\"],\"flex\":[516],\"height\":[513],\"minHeight\":[513,\"min-height\"],\"maxHeight\":[513,\"max-height\"],\"width\":[513],\"minWidth\":[513,\"min-width\"],\"maxWidth\":[513,\"max-width\"],\"fullWidth\":[516,\"full-width\"],\"size\":[513],\"infoFooter\":[516,\"infofooter\"],\"searchable\":[516],\"searchPlaceholder\":[1,\"search-placeholder\"],\"searchFields\":[16],\"returnField\":[1,\"return-field\"],\"searchData\":[8,\"search-data\"],\"value\":[520],\"multiSelect\":[516,\"multiselect\"],\"variableText\":[1,\"variable-text\"],\"clearable\":[4],\"label\":[1],\"placeholder\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"disabled\":[4],\"name\":[1],\"required\":[4],\"tooltip\":[1],\"searchText\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"hide\":[64],\"setSearch\":[64],\"clearAndSelectSearch\":[64],\"show\":[64],\"renderList\":[64],\"toggle\":[64],\"openStatus\":[64],\"config\":[64],\"setDataOther\":[64],\"setData\":[64],\"getValue\":[64],\"getChecklist\":[64],\"resetCaption\":[64],\"toggleChecked\":[64],\"unChecked\":[64],\"checked\":[64],\"setClear\":[64]},[[10,\"click\",\"handleClick\"],[11,\"wheel\",\"wheelEvent\"],[7,\"scroll\",\"scrollEvent\"],[9,\"resize\",\"resizeEvent\"],[7,\"mousemove\",\"onmousemove\"],[0,\"bcm-on-search\",\"listenSearchResult\"],[4,\"bcm-list-selected\",\"handleListSelected\"]]]]],[\"bcm-list-select\",[[1,\"bcm-list-select\",{\"hidden\":[4],\"_id\":[513,\"id\"],\"_list_id\":[1],\"value\":[8],\"_internal_id\":[513],\"type\":[1],\"variableText\":[1,\"variable-text\"],\"size\":[1],\"clearable\":[4],\"label\":[1],\"placeholder\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"disabled\":[4],\"name\":[1],\"fullWidth\":[4,\"full-width\"],\"required\":[4],\"multiSelect\":[4,\"multiselect\"],\"tooltip\":[1],\"searchData\":[8,\"search-data\"],\"selectText\":[32],\"selectData\":[32],\"focusInput\":[32],\"resetCaption\":[64],\"setClear\":[64],\"hide\":[64],\"show\":[64],\"toggle\":[64],\"config\":[64],\"setValue\":[64]},[[0,\"bcm-change\",\"handleChange\"],[0,\"bcm-clear\",\"handleClear\"],[9,\"resize\",\"resizeEvent\"],[10,\"click\",\"handleClick\"]]]]],[\"bcm-datetime-picker\",[[1,\"bcm-datetime-picker\",{\"date\":[1],\"endDate\":[1,\"end-date\"],\"type\":[1],\"disabled\":[4],\"disabledDates\":[8,\"disableddates\"],\"value\":[8],\"_open\":[4,\"open\"],\"hidden\":[4],\"name\":[513],\"fullWidth\":[4,\"full-width\"],\"required\":[4],\"label\":[1],\"minYear\":[2,\"min-year\"],\"maxYear\":[2,\"max-year\"],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"alignment\":[1],\"years\":[32],\"hours\":[32],\"minutes\":[32],\"hasDateModule\":[32],\"hasTimeModule\":[32],\"renderDate\":[32],\"selectedDate\":[32],\"selectedEndDate\":[32],\"error\":[32],\"errorText\":[32],\"open\":[64],\"close\":[64],\"getValue\":[64],\"setDisabled\":[64],\"set\":[64],\"setClear\":[64],\"getInput\":[64],\"isValid\":[64],\"resetCaption\":[64]},[[8,\"click\",\"handleWindowClick\"]]]]],[\"bcm-textarea\",[[1,\"bcm-textarea\",{\"value\":[513],\"label\":[1],\"noCaption\":[4,\"no-caption\"],\"captionError\":[1,\"caption-error\"],\"placeholder\":[1],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"rows\":[2],\"size\":[1],\"fullWidth\":[4,\"full-width\"],\"disabled\":[4],\"clearable\":[4],\"resize\":[1],\"maxLength\":[2,\"max-length\"],\"name\":[513],\"hidden\":[4],\"required\":[4],\"tooltip\":[1],\"hasFocus\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"setFocus\":[64],\"removeFocus\":[64],\"select\":[64],\"setValue\":[64],\"setClear\":[64],\"resetCaption\":[64],\"getValue\":[64]}]]],[\"bcm-checkbox\",[[1,\"bcm-checkbox\",{\"value\":[1032],\"name\":[513],\"checked\":[516],\"disabled\":[4],\"readOnly\":[4,\"readonly\"],\"hidden\":[4],\"required\":[516],\"optionType\":[1,\"option-type\"],\"buttonStyle\":[1,\"button-style\"],\"color\":[513],\"size\":[1],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"captionCache\":[32],\"captionTypeCache\":[32],\"setClear\":[64],\"resetCaption\":[64],\"check\":[64]}]]],[\"bcm-treeview-item\",[[1,\"bcm-treeview-item\",{\"items\":[8],\"itemObject\":[1,\"item-object\"],\"text\":[1],\"tooltipText\":[1,\"tooltip-text\"],\"_id\":[513,\"id\"],\"parentId\":[1,\"parent-id\"],\"hasChild\":[4,\"has-child\"],\"size\":[1],\"icon\":[1],\"open\":[516],\"selected\":[4],\"checkboxes\":[4],\"showIcon\":[4,\"show-icon\"],\"favicon\":[4],\"favorite\":[4],\"checked\":[516],\"checkTrigger\":[516,\"checktrigger\"],\"focused\":[516],\"disabled\":[516],\"contextMenuShow\":[4,\"context-menu-show\"],\"_contextMenu\":[1,\"context-menu\"],\"indeterminateState\":[1,\"indeterminate-state\"],\"_internal_id\":[513],\"menuPadding\":[32],\"childLength\":[32],\"indeterminate\":[32],\"hidden\":[32],\"contextMenu\":[32],\"contextOffsetLeft\":[32],\"contextOffsetTop\":[32]},[[4,\"bcm-treeview-clear-selecteds\",\"handletreeviewClearSelecteds\"],[4,\"bcm-treeview-change\",\"ListentreeviewChange\"],[4,\"bcm-treeview-send-check\",\"ListentreeviewShowContext\"],[4,\"bcm-treeview-send-uncheck\",\"ListentreeviewShowContext\"],[4,\"bcm-treeview-show-context\",\"ListentreeviewShowContext\"],[8,\"click\",\"handleWindowClick\"],[0,\"bcm-treeview-check-group-check\",\"checkGroup\"]]]]],[\"bcm-input\",[[1,\"bcm-input\",{\"type\":[1],\"value\":[1032],\"size\":[1],\"label\":[1],\"noCaption\":[4,\"no-caption\"],\"noMargin\":[4,\"no-margin\"],\"captionError\":[1,\"caption-error\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"],\"placeholder\":[1],\"fullWidth\":[4,\"full-width\"],\"disabled\":[4],\"readonly\":[4],\"clearable\":[4],\"passwordToggle\":[4,\"password-toggle\"],\"noDefaultIcon\":[4,\"no-default-icon\"],\"_id\":[513,\"id\"],\"_internal_id\":[1],\"name\":[513],\"unit\":[1],\"unitPrefix\":[1,\"unit-prefix\"],\"decimal\":[8],\"min\":[2],\"max\":[2],\"step\":[8],\"hidden\":[4],\"required\":[4],\"disableWatchValue\":[4,\"disable-watch-value\"],\"maxLength\":[2,\"max-length\"],\"tooltip\":[1],\"inValid\":[32],\"valueCache\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"hasFocus\":[32],\"isPasswordVisible\":[32],\"setFocus\":[64],\"removeFocus\":[64],\"select\":[64],\"setValue\":[64],\"setClear\":[64],\"resetCaption\":[64],\"getValue\":[64]},[[0,\"keydown\",\"numberControl\"]]]]],[\"bcm-search\",[[1,\"bcm-search\",{\"data\":[16],\"searchFields\":[16],\"returnField\":[1,\"return-field\"],\"searchSub\":[1,\"searchsub\"],\"hidden\":[4],\"onlyChild\":[4,\"only-child\"],\"clearable\":[4],\"searchValue\":[1,\"search-value\"],\"searchPlaceholder\":[1,\"searchplaceholder\"],\"disabled\":[4],\"_internal_id\":[513],\"results\":[32],\"setValue\":[64],\"select\":[64],\"setClear\":[64],\"searchArray\":[64]},[[0,\"bcm-change\",\"listenBcmChange\"]]]]],[\"bcm-empty\",[[1,\"bcm-empty\",{\"_image\":[1,\"image\"],\"size\":[1],\"text\":[1],\"hidden\":[4],\"image\":[32]}]]],[\"bcm-text\",[[1,\"bcm-text\",{\"scale\":[1],\"weight\":[1],\"color\":[1],\"hidden\":[4]}]]],[\"bcm-treeview\",[[1,\"bcm-treeview\",{\"checkboxes\":[4],\"showIcon\":[4,\"show-icon\"],\"size\":[1],\"selectedId\":[1,\"selected-id\"],\"checkedList\":[16],\"updateCheckedList\":[16],\"hidden\":[4],\"search\":[4],\"searchOnlyChild\":[4,\"search-only-child\"],\"keydown\":[4],\"allOpen\":[4,\"all-open\"],\"fullWidth\":[4,\"full-width\"],\"infoFooter\":[4,\"info-footer\"],\"searchFields\":[16],\"searchSub\":[1,\"search-sub\"],\"returnField\":[1,\"return-field\"],\"_items\":[1,\"data\"],\"searchPlaceholder\":[1,\"searchplaceholder\"],\"maxHeight\":[1,\"max-height\"],\"highlight\":[4],\"loading\":[4],\"favIcon\":[4,\"fav-icon\"],\"favIconOnlyChilds\":[4,\"fav-icon-only-childs\"],\"_internal_id\":[513],\"showSearch\":[32],\"items\":[32],\"total\":[32],\"checkCount\":[32],\"focusedElement\":[32],\"keyMapForFocus\":[32],\"checklist\":[32],\"favoriteList\":[32],\"checklistSorted\":[32],\"searchData\":[32],\"searchResults\":[32],\"setData\":[64],\"getChecklist\":[64],\"getFavorites\":[64],\"selected\":[64],\"clearAndSelectSearch\":[64],\"addChecked\":[64],\"updateChecked\":[64],\"config\":[64],\"showSearchMethod\":[64],\"searchResultMethod\":[64],\"treeviewUncheckedMethod\":[64]},[[0,\"bcm-on-search\",\"listenSearchResult\"],[0,\"bcm-treeview-item-selected\",\"handletreeviewItemSelected\"],[0,\"bcm-treeview-checked\",\"handletreeviewChecked\"],[0,\"bcm-treeview-unchecked\",\"handletreeviewUnchecked\"],[0,\"bcm-treeview-indeterminate-checked\",\"handletreeviewIndeterminateChecked\"],[0,\"bcm-treeview-indeterminate-unchecked\",\"handletreeviewIndeterminateUnchecked\"],[0,\"contextmenu\",\"handleRightClick\"],[4,\"keyup\",\"keyboardNavigationUp\"],[4,\"keydown\",\"keyboardNavigation\"]]]]],[\"bcm-checkbox-lite\",[[1,\"bcm-checkbox-lite\",{\"value\":[1032],\"name\":[513],\"checked\":[516],\"indeterminate\":[516],\"disabled\":[4],\"readOnly\":[4,\"readonly\"],\"hidden\":[4],\"required\":[516],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionType\":[1,\"caption-type\"]}]]],[\"bcm-avatar\",[[1,\"bcm-avatar\",{\"plate\":[1],\"size\":[1],\"image\":[1],\"name\":[1],\"type\":[1],\"alt\":[1],\"hidden\":[4],\"isFallback\":[32]},[[2,\"error\",\"handleError\"]]]]],[\"bcm-listbox-item\",[[1,\"bcm-listbox-item\",{\"objectMapping\":[16],\"display\":[4],\"avatar\":[4],\"avatarImage\":[1,\"avatar-image\"],\"avatarName\":[1,\"avatar-name\"],\"secondaryText\":[1,\"secondary\"],\"tooltipText\":[1,\"tooltip\"],\"text\":[1],\"_id\":[513,\"id\"],\"size\":[1],\"icon\":[1],\"open\":[516],\"selected\":[4],\"checkboxes\":[4],\"showIcon\":[4,\"show-icon\"],\"checked\":[516],\"focused\":[516],\"hidden\":[516],\"itemObject\":[1,\"item-object\"],\"disabled\":[516],\"highlight\":[520],\"_internal_id\":[513],\"template\":[1]},[[4,\"bcm-listbox-send-check\",\"ListenListboxCheck\"],[4,\"bcm-listbox-send-uncheck\",\"ListenListboxUncheck\"],[4,\"bcm-listbox-clear-selecteds\",\"handleListboxClearSelecteds\"]]]]],[\"bcm-divider\",[[1,\"bcm-divider\",{\"direction\":[1],\"width\":[1],\"hidden\":[4]}]]],[\"bcm-listbox\",[[1,\"bcm-listbox\",{\"innerComponent\":[4,\"inner-component\"],\"checkboxes\":[4],\"label\":[1],\"required\":[4],\"value\":[8],\"search\":[4],\"infoFooter\":[4,\"info-footer\"],\"showIcon\":[4,\"show-icon\"],\"size\":[1],\"selectedId\":[1,\"selected-id\"],\"checkedList\":[16],\"updateCheckedList\":[16],\"_items\":[1,\"data\"],\"fullWidth\":[4,\"full-width\"],\"searchFields\":[16],\"_flex\":[1,\"flex\"],\"hidden\":[4],\"returnField\":[1,\"return-field\"],\"searchSub\":[1,\"search-sub\"],\"searchText\":[1,\"searchtext\"],\"treeview\":[4],\"searchPlaceholder\":[1,\"searchplaceholder\"],\"numberOfColumns\":[2,\"number-of-columns\"],\"height\":[1],\"maxHeight\":[1,\"max-height\"],\"template\":[1],\"highlight\":[4],\"loading\":[4],\"noCaption\":[4,\"no-caption\"],\"caption\":[1],\"captionError\":[1,\"caption-error\"],\"captionType\":[1,\"caption-type\"],\"_internal_id\":[513],\"tooltip\":[1],\"total\":[32],\"items\":[32],\"checklist\":[32],\"sortedChecklist\":[32],\"indeterminateState\":[32],\"checked\":[32],\"jsonItem\":[32],\"searchData\":[32],\"captionCache\":[32],\"captionTypeCache\":[32],\"checklistSorted\":[32],\"setClear\":[64],\"resetCaption\":[64],\"getValue\":[64],\"getChecklist\":[64],\"showSearchMethod\":[64],\"selected\":[64],\"clearAndSelectSearch\":[64],\"addChecked\":[64],\"updateChecked\":[64],\"config\":[64],\"setData\":[64],\"searchResultMethod\":[64],\"listboxUncheckedMethod\":[64]},[[2,\"bcm-treeview-item-selected\",\"handleListboxSelected\"],[0,\"bcm-on-search\",\"listenSearchResult\"],[0,\"bcm-listbox-item-selected\",\"handleListboxClearSelected\"],[0,\"bcm-listbox-checked\",\"handleListboxChecked\"],[0,\"bcm-listbox-unchecked\",\"handleListboxUnchecked\"]]]]],[\"bcm-tag\",[[1,\"bcm-tag\",{\"type\":[1],\"size\":[8],\"checked\":[4],\"color\":[513],\"value\":[1],\"hidden\":[516],\"_id\":[513,\"id\"],\"maxWidth\":[4,\"max-width\"],\"customStyle\":[8,\"custom-style\"],\"_internal_id\":[513]},[[2,\"click\",\"handleClick\"]]]]],[\"bcm-listbox-group\",[[1,\"bcm-listbox-group\",{\"text\":[1],\"_id\":[513,\"id\"],\"hidden\":[4]}]]],[\"bcm-icon\",[[1,\"bcm-icon\",{\"color\":[1],\"hoverColor\":[1,\"hover-color\"],\"type\":[1],\"size\":[8],\"icon\":[1],\"hidden\":[4],\"_icon\":[32],\"hover_icon\":[32],\"_size\":[32],\"wrapperStyle\":[32],\"faWrapperStyle\":[32]},[[7,\"mousemove\",\"onmousemove\"]]]]],[\"bcm-button\",[[1,\"bcm-button\",{\"kind\":[1],\"size\":[1],\"disabled\":[4],\"outline\":[4],\"icon\":[1],\"iconPosition\":[1,\"icon-position\"],\"href\":[1],\"target\":[1],\"loading\":[4],\"variant\":[1],\"type\":[1],\"hidden\":[4],\"dataDismiss\":[4,\"data-dismiss\"],\"fullWidth\":[4,\"full-width\"]},[[10,\"click\",\"handleOnClick\"]]]]]]"), options);
122
122
  });
@@ -10,5 +10,6 @@ export declare class BcmSelectBox {
10
10
  componentDidRender(): void;
11
11
  componentWillUpdate(): void;
12
12
  componentDidUpdate(): void;
13
+ handleChangeEvent(event: CustomEvent): void;
13
14
  render(): any;
14
15
  }
@@ -92,7 +92,7 @@ export declare class BcmSelect {
92
92
  setClear(): Promise<void>;
93
93
  resetCaption(): Promise<void>;
94
94
  connectedCallback(): void;
95
- handleChange(newValue: string): void;
95
+ handleChange(newValue: string, oldValue: string): void;
96
96
  handleOpenState(): Promise<void>;
97
97
  handleOpen(event: any, otherTag?: boolean): Promise<void>;
98
98
  onwheelEvent(event: any): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bromcom-ui",
3
- "version": "2.3.64",
3
+ "version": "2.3.68",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",