eoss-ui 0.5.62 → 0.5.63

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.
@@ -3614,7 +3614,7 @@ function normalizeComponent(
3614
3614
  // ESM COMPAT FLAG
3615
3615
  __webpack_require__.r(__webpack_exports__);
3616
3616
 
3617
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=template&id=24005b83&
3617
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=template&id=a336a590&
3618
3618
  var render = function () {
3619
3619
  var _vm = this
3620
3620
  var _h = _vm.$createElement
@@ -3756,7 +3756,7 @@ var staticRenderFns = []
3756
3756
  render._withStripped = true
3757
3757
 
3758
3758
 
3759
- // CONCATENATED MODULE: ./packages/button-group/src/main.vue?vue&type=template&id=24005b83&
3759
+ // CONCATENATED MODULE: ./packages/button-group/src/main.vue?vue&type=template&id=a336a590&
3760
3760
 
3761
3761
  // EXTERNAL MODULE: ./src/utils/util.js
3762
3762
  var util = __webpack_require__(0);
@@ -3860,6 +3860,10 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3860
3860
  size: {
3861
3861
  type: String,
3862
3862
  default: 'mini'
3863
+ },
3864
+ placement: {
3865
+ type: String,
3866
+ default: 'bottom'
3863
3867
  }
3864
3868
  },
3865
3869
  computed: {
@@ -3867,7 +3871,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3867
3871
  return this.getBtns();
3868
3872
  },
3869
3873
  showBtns: function showBtns() {
3870
- return this.btns.slice(0, this.length - 1);
3874
+ return this.btns.length > this.length ? this.btns.slice(0, this.length - 1) : this.btns;
3871
3875
  },
3872
3876
  other: function other() {
3873
3877
  var btns = this.length > 0 && (this.btns.length > this.length || this.length == 1) ? this.btns.slice(this.length - 1, this.btns.length) : [];