@nethserver/ns8-ui-lib 1.10.1 → 1.11.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.
@@ -9535,6 +9535,14 @@ var script$g = {
9535
9535
  isNextDisabled: Boolean,
9536
9536
  isCancelDisabled: Boolean,
9537
9537
  isNextLoading: Boolean,
9538
+ isPreviousShown: {
9539
+ type: Boolean,
9540
+ default: true
9541
+ },
9542
+ isCancelShown: {
9543
+ type: Boolean,
9544
+ default: true
9545
+ },
9538
9546
  closeAriaLabel: {
9539
9547
  type: String,
9540
9548
  default: "Close modal"
@@ -9562,7 +9570,7 @@ const __vue_script__$g = script$g;
9562
9570
  /* template */
9563
9571
 
9564
9572
  var __vue_render__$s = function () {
9565
- var _obj, _obj$1;
9573
+ var _obj, _obj$1, _obj$2;
9566
9574
 
9567
9575
  var _vm = this;
9568
9576
 
@@ -9641,8 +9649,14 @@ var __vue_render__$s = function () {
9641
9649
  "tabindex": _vm.scrollable ? 0 : undefined
9642
9650
  }
9643
9651
  }, [_vm._t("content")], 2), _vm._v(" "), _c('cv-button-set', {
9644
- class: [_vm.carbonPrefix + "--modal-footer", _vm.carbonPrefix + "--modal-footer--three-button"]
9652
+ class: [_vm.carbonPrefix + "--modal-footer", (_obj$2 = {}, _obj$2[_vm.carbonPrefix + "--modal-footer--three-button"] = _vm.isPreviousShown && _vm.isCancelShown, _obj$2)]
9645
9653
  }, [_c('NsButton', {
9654
+ directives: [{
9655
+ name: "show",
9656
+ rawName: "v-show",
9657
+ value: _vm.isCancelShown,
9658
+ expression: "isCancelShown"
9659
+ }],
9646
9660
  ref: "wizardCancel",
9647
9661
  staticClass: "wizard-button",
9648
9662
  attrs: {
@@ -9657,6 +9671,12 @@ var __vue_render__$s = function () {
9657
9671
  }
9658
9672
  }
9659
9673
  }, [_vm._v(_vm._s(_vm.cancelLabel) + "\n ")]), _vm._v(" "), _c('NsButton', {
9674
+ directives: [{
9675
+ name: "show",
9676
+ rawName: "v-show",
9677
+ value: _vm.isPreviousShown,
9678
+ expression: "isPreviousShown"
9679
+ }],
9660
9680
  ref: "wizardPrevious",
9661
9681
  staticClass: "wizard-button",
9662
9682
  attrs: {