@nethserver/ns8-ui-lib 0.0.90 → 0.0.93

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.
@@ -1,4 +1,4 @@
1
- import { CvButton, CvIconButton, CvInlineNotification, CvTile, CvToastNotification, CvLink, CvTooltip, CvTag, CvTextInput, CvOverflowMenu, CvModal, CvPagination, CvDataTable, CvDataTableHeading, CvDataTableRow, CvDataTableCell, CvCheckbox } from '@carbon/vue';
1
+ import { CvButton, CvIconButton, CvInlineNotification, CvTile, CvToastNotification, CvLink, CvTooltip, CvTag, CvTextInput, CvOverflowMenu, CvModal, CvPagination, CvDataTable, CvDataTableHeading, CvDataTableRow, CvDataTableCell, CvCheckbox, CvToggle } from '@carbon/vue';
2
2
  import LottieAnimation from 'lottie-web-vue';
3
3
  import Copy20 from '@carbon/icons-vue/es/copy/20';
4
4
  import ChevronDown20 from '@carbon/icons-vue/es/chevron--down/20';
@@ -9,9 +9,6 @@ import Warning20 from '@carbon/icons-vue/es/warning--filled/20';
9
9
  import { WarningFilled16, WarningAltFilled16, View16, ViewOff16 } from '@carbon/icons-vue';
10
10
  import crypto from 'crypto';
11
11
  import OverflowMenuVertical20 from '@carbon/icons-vue/es/overflow-menu--vertical/20';
12
- import Vue from 'vue';
13
- import '@carbon/charts/styles.css';
14
- import chartsVue, { CcvMeterChart } from '@carbon/charts-vue';
15
12
  import Close20 from '@carbon/icons-vue/es/close/20';
16
13
  import ArrowRight20 from '@carbon/icons-vue/es/arrow--right/20';
17
14
  import ArrowRight32 from '@carbon/icons-vue/es/arrow--right/32';
@@ -97,6 +94,9 @@ import Column20 from '@carbon/icons-vue/es/column/20';
97
94
  import Catalog20 from '@carbon/icons-vue/es/catalog/20';
98
95
  import Catalog32 from '@carbon/icons-vue/es/catalog/32';
99
96
  import Group20 from '@carbon/icons-vue/es/group/20';
97
+ import Router32 from '@carbon/icons-vue/es/router/32';
98
+ import Router20 from '@carbon/icons-vue/es/router/20';
99
+ import Certificate32 from '@carbon/icons-vue/es/certificate/32';
100
100
  import CvSideNavDivider from '@carbon/vue/src/components/cv-ui-shell/cv-side-nav-divider.vue';
101
101
  import Search16 from '@carbon/icons-vue/es/search/16';
102
102
  import Close16 from '@carbon/icons-vue/es/close/16';
@@ -1193,6 +1193,26 @@ const __vue_component__$U = /*#__PURE__*/normalizeComponent({
1193
1193
 
1194
1194
  var NsInlineNotification = __vue_component__$U;
1195
1195
 
1196
+ //
1197
+ //
1198
+ //
1199
+ //
1200
+ //
1201
+ //
1202
+ //
1203
+ //
1204
+ //
1205
+ //
1206
+ //
1207
+ //
1208
+ //
1209
+ //
1210
+ //
1211
+ //
1212
+ //
1213
+ //
1214
+ //
1215
+ //
1196
1216
  //
1197
1217
  //
1198
1218
  //
@@ -1215,27 +1235,70 @@ var script$n = {
1215
1235
  props: {
1216
1236
  value: {
1217
1237
  // a number between 0 and 100
1218
- type: Number,
1238
+ type: [String, Number],
1219
1239
  default: 0
1220
1240
  },
1221
1241
  indeterminate: {
1222
1242
  type: Boolean,
1223
1243
  default: false
1244
+ },
1245
+ height: {
1246
+ type: String,
1247
+ default: "5px"
1248
+ },
1249
+ warningThreshold: {
1250
+ type: Number,
1251
+ default: 70
1252
+ },
1253
+ dangerThreshold: {
1254
+ type: Number,
1255
+ default: 90
1256
+ },
1257
+ useStatusColors: {
1258
+ type: Boolean,
1259
+ default: false
1224
1260
  }
1225
1261
  },
1226
1262
 
1227
1263
  data() {
1228
1264
  return {
1229
- progressLine: {
1230
- width: this.value + "%",
1231
- transition: "width 0.3s"
1265
+ progressLineStyle: {
1266
+ width: this.numericValue + "%",
1267
+ transition: "width 0.3s",
1268
+ height: this.height
1269
+ },
1270
+ heightStyle: {
1271
+ height: this.height
1232
1272
  }
1233
1273
  };
1234
1274
  },
1235
1275
 
1276
+ created() {
1277
+ this.progressLineStyle.width = this.numericValue + "%";
1278
+ this.heightStyle.height = this.height;
1279
+ },
1280
+
1281
+ computed: {
1282
+ numericValue() {
1283
+ return Number(this.value) || 0;
1284
+ },
1285
+
1286
+ healthyStatus() {
1287
+ return this.useStatusColors && this.numericValue < this.warningThreshold;
1288
+ },
1289
+
1290
+ warningStatus() {
1291
+ return this.useStatusColors && this.numericValue >= this.warningThreshold && this.numericValue < this.dangerThreshold;
1292
+ },
1293
+
1294
+ dangerStatus() {
1295
+ return this.useStatusColors && this.numericValue >= this.dangerThreshold;
1296
+ }
1297
+
1298
+ },
1236
1299
  watch: {
1237
1300
  value: function () {
1238
- this.progressLine.width = this.value + "%";
1301
+ this.progressLineStyle.width = this.numericValue + "%";
1239
1302
  }
1240
1303
  }
1241
1304
  };
@@ -1252,20 +1315,34 @@ var __vue_render__$s = function () {
1252
1315
  var _c = _vm._self._c || _h;
1253
1316
 
1254
1317
  return _c('div', {
1255
- staticClass: "progress-bar-container"
1318
+ staticClass: "progress-bar-container",
1319
+ style: _vm.heightStyle
1256
1320
  }, [_c('div', {
1257
- staticClass: "slider"
1321
+ staticClass: "slider",
1322
+ style: _vm.heightStyle
1258
1323
  }, [_vm.indeterminate ? [_c('div', {
1259
- staticClass: "indeterminate-line"
1324
+ staticClass: "indeterminate-line",
1325
+ style: _vm.heightStyle
1260
1326
  }), _vm._v(" "), _c('div', {
1261
- staticClass: "indeterminate-subline inc"
1327
+ staticClass: "indeterminate-subline inc",
1328
+ style: _vm.heightStyle
1262
1329
  }), _vm._v(" "), _c('div', {
1263
- staticClass: "indeterminate-subline dec"
1330
+ staticClass: "indeterminate-subline dec",
1331
+ style: _vm.heightStyle
1264
1332
  })] : [_c('div', {
1265
- staticClass: "line"
1333
+ class: ['line', {
1334
+ healthy: _vm.healthyStatus,
1335
+ warning: _vm.warningStatus,
1336
+ danger: _vm.dangerStatus
1337
+ }],
1338
+ style: _vm.heightStyle
1266
1339
  }), _vm._v(" "), _c('div', {
1267
- staticClass: "progress-line",
1268
- style: _vm.progressLine
1340
+ class: ['progress-line', {
1341
+ healthy: _vm.healthyStatus,
1342
+ warning: _vm.warningStatus,
1343
+ danger: _vm.dangerStatus
1344
+ }],
1345
+ style: _vm.progressLineStyle
1269
1346
  })]], 2)]);
1270
1347
  };
1271
1348
 
@@ -1274,8 +1351,8 @@ var __vue_staticRenderFns__$s = [];
1274
1351
 
1275
1352
  const __vue_inject_styles__$u = function (inject) {
1276
1353
  if (!inject) return;
1277
- inject("data-v-57532057_0", {
1278
- source: ".progress-bar-container[data-v-57532057]{width:100%;position:relative}.slider[data-v-57532057]{position:absolute;width:100%;height:5px;overflow-x:hidden}.line[data-v-57532057]{position:absolute;opacity:.4;width:100%;height:5px}.progress-line[data-v-57532057]{position:absolute;height:5px}.indeterminate-line[data-v-57532057]{position:absolute;opacity:.4;width:150%;height:5px}.indeterminate-subline[data-v-57532057]{position:absolute;height:5px}.inc[data-v-57532057]{animation:increase-data-v-57532057 2s infinite}.dec[data-v-57532057]{animation:decrease-data-v-57532057 2s .5s infinite}@keyframes increase-data-v-57532057{from{left:-5%;width:5%}to{left:130%;width:100%}}@keyframes decrease-data-v-57532057{from{left:-80%;width:80%}to{left:110%;width:10%}}",
1354
+ inject("data-v-7c7ba0aa_0", {
1355
+ source: ".progress-bar-container[data-v-7c7ba0aa]{width:100%;position:relative}.slider[data-v-7c7ba0aa]{position:absolute;width:100%;overflow-x:hidden}.line[data-v-7c7ba0aa]{position:absolute;opacity:.4;width:100%}.progress-line[data-v-7c7ba0aa]{position:absolute}.indeterminate-line[data-v-7c7ba0aa]{position:absolute;opacity:.4;width:150%}.indeterminate-subline[data-v-7c7ba0aa]{position:absolute}.inc[data-v-7c7ba0aa]{animation:increase-data-v-7c7ba0aa 2s infinite}.dec[data-v-7c7ba0aa]{animation:decrease-data-v-7c7ba0aa 2s .5s infinite}@keyframes increase-data-v-7c7ba0aa{from{left:-5%;width:5%}to{left:130%;width:100%}}@keyframes decrease-data-v-7c7ba0aa{from{left:-80%;width:80%}to{left:110%;width:10%}}",
1279
1356
  map: undefined,
1280
1357
  media: undefined
1281
1358
  });
@@ -1283,7 +1360,7 @@ const __vue_inject_styles__$u = function (inject) {
1283
1360
  /* scoped */
1284
1361
 
1285
1362
 
1286
- const __vue_scope_id__$u = "data-v-57532057";
1363
+ const __vue_scope_id__$u = "data-v-7c7ba0aa";
1287
1364
  /* module identifier */
1288
1365
 
1289
1366
  const __vue_module_identifier__$u = undefined;
@@ -7431,6 +7508,20 @@ var UtilService = {
7431
7508
  */
7432
7509
  getUuid() {
7433
7510
  return uuid_1.v4();
7511
+ },
7512
+
7513
+ /**
7514
+ * Get a readable label for a node
7515
+ */
7516
+ getNodeLabel(node) {
7517
+ return node.ui_name ? node.ui_name + " (" + this.$t("common.node") + " " + node.id + ")" : this.$t("common.node") + " " + node.id;
7518
+ },
7519
+
7520
+ /**
7521
+ * Get a readable short label for a node
7522
+ */
7523
+ getShortNodeLabel(node) {
7524
+ return node.ui_name ? node.ui_name : this.$t("common.node") + " " + node.id;
7434
7525
  }
7435
7526
 
7436
7527
  }
@@ -7929,78 +8020,38 @@ const __vue_component__$D = /*#__PURE__*/normalizeComponent({
7929
8020
  var __vue_component__$E = __vue_component__$D;
7930
8021
 
7931
8022
  //
7932
- Vue.use(chartsVue);
7933
8023
  var script$d = {
7934
8024
  name: "NsMeterChart",
7935
8025
  components: {
7936
- CcvMeterChart
8026
+ NsProgressBar
7937
8027
  },
7938
8028
  props: {
7939
- title: {
7940
- type: String,
7941
- default: ""
7942
- },
7943
8029
  label: {
7944
8030
  type: String,
7945
- default: ""
8031
+ required: true
7946
8032
  },
7947
8033
  value: {
7948
- type: Number,
8034
+ type: [String, Number],
7949
8035
  default: 0
7950
8036
  },
7951
- warningTh: {
7952
- type: Number,
7953
- default: 70
8037
+ loading: {
8038
+ type: Boolean,
8039
+ default: false
7954
8040
  },
7955
- dangerTh: {
8041
+ progressBarHeight: {
8042
+ type: String,
8043
+ default: "10px"
8044
+ },
8045
+ // default value of following props is defined in NsProgressBar
8046
+ warningThreshold: {
7956
8047
  type: Number,
7957
- default: 90
8048
+ default: undefined
7958
8049
  },
7959
- height: {
7960
- type: String,
7961
- default: "6rem"
7962
- }
7963
- },
7964
-
7965
- data() {
7966
- return {
7967
- data: [],
7968
- options: {}
7969
- };
7970
- },
7971
-
7972
- watch: {
7973
- value: function () {
7974
- this.data[0].value = this.value;
8050
+ dangerThreshold: {
8051
+ type: Number,
8052
+ default: undefined
7975
8053
  }
7976
- },
7977
-
7978
- created() {
7979
- this.data = [{
7980
- group: this.label,
7981
- value: this.value
7982
- }];
7983
- this.options = {
7984
- title: this.title,
7985
- meter: {
7986
- peak: null,
7987
- status: {
7988
- ranges: [{
7989
- range: [0, this.warningTh],
7990
- status: "success"
7991
- }, {
7992
- range: [this.warningTh, this.dangerTh],
7993
- status: "warning"
7994
- }, {
7995
- range: [this.dangerTh, 100],
7996
- status: "danger"
7997
- }]
7998
- }
7999
- },
8000
- height: this.height
8001
- };
8002
8054
  }
8003
-
8004
8055
  };
8005
8056
 
8006
8057
  /* script */
@@ -8014,29 +8065,43 @@ var __vue_render__$j = function () {
8014
8065
 
8015
8066
  var _c = _vm._self._c || _h;
8016
8067
 
8017
- return _c('ccv-meter-chart', {
8068
+ return _c('div', [_c('div', {
8069
+ staticClass: "mg-bottom-sm"
8070
+ }, [_c('span', {
8071
+ staticClass: "label"
8072
+ }, [_vm._v(_vm._s(_vm.label))]), _vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.loading || Number.isNaN(Number(_vm.value)) ? "-" : _vm.value + "%"))])]), _vm._v(" "), _c('NsProgressBar', {
8018
8073
  attrs: {
8019
- "data": _vm.data,
8020
- "options": _vm.options
8074
+ "value": _vm.value,
8075
+ "indeterminate": _vm.loading,
8076
+ "useStatusColors": true,
8077
+ "warningThreshold": _vm.warningThreshold,
8078
+ "dangerThreshold": _vm.dangerThreshold,
8079
+ "height": _vm.progressBarHeight
8021
8080
  }
8022
- });
8081
+ })], 1);
8023
8082
  };
8024
8083
 
8025
8084
  var __vue_staticRenderFns__$j = [];
8026
8085
  /* style */
8027
8086
 
8028
- const __vue_inject_styles__$k = undefined;
8087
+ const __vue_inject_styles__$k = function (inject) {
8088
+ if (!inject) return;
8089
+ inject("data-v-8d83456c_0", {
8090
+ source: ".label[data-v-8d83456c]{font-weight:700;margin-right:.5rem}.mg-bottom-sm[data-v-8d83456c]{margin-bottom:.5rem!important}",
8091
+ map: undefined,
8092
+ media: undefined
8093
+ });
8094
+ };
8029
8095
  /* scoped */
8030
8096
 
8031
- const __vue_scope_id__$k = undefined;
8097
+
8098
+ const __vue_scope_id__$k = "data-v-8d83456c";
8032
8099
  /* module identifier */
8033
8100
 
8034
8101
  const __vue_module_identifier__$k = undefined;
8035
8102
  /* functional template */
8036
8103
 
8037
8104
  const __vue_is_functional_template__$k = false;
8038
- /* style inject */
8039
-
8040
8105
  /* style inject SSR */
8041
8106
 
8042
8107
  /* style inject shadow dom */
@@ -8044,114 +8109,12 @@ const __vue_is_functional_template__$k = false;
8044
8109
  const __vue_component__$B = /*#__PURE__*/normalizeComponent({
8045
8110
  render: __vue_render__$j,
8046
8111
  staticRenderFns: __vue_staticRenderFns__$j
8047
- }, __vue_inject_styles__$k, __vue_script__$d, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, undefined, undefined, undefined);
8112
+ }, __vue_inject_styles__$k, __vue_script__$d, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, createInjector, undefined, undefined);
8048
8113
 
8049
8114
  var __vue_component__$C = __vue_component__$B;
8050
8115
 
8051
8116
  //
8052
- Vue.use(chartsVue);
8053
8117
  var script$c = {
8054
- name: "NsPieChart",
8055
- components: {},
8056
- props: {
8057
- data: Array,
8058
- loading: {
8059
- type: Boolean,
8060
- default: false
8061
- },
8062
- title: {
8063
- type: String,
8064
- default: ""
8065
- },
8066
- height: {
8067
- type: String,
8068
- default: "18rem"
8069
- }
8070
- },
8071
-
8072
- data() {
8073
- return {
8074
- options: {}
8075
- };
8076
- },
8077
-
8078
- watch: {
8079
- loading: function () {
8080
- if (this.loading) {
8081
- // show skeleton
8082
- this.options.data.loading = true;
8083
- } else {
8084
- this.options.data.loading = false;
8085
- }
8086
- }
8087
- },
8088
-
8089
- created() {
8090
- this.options = {
8091
- title: this.title,
8092
- resizable: true,
8093
- // legend: { ////
8094
- // alignment: "center",
8095
- // },
8096
- // pie: {
8097
- // alignment: "center",
8098
- // },
8099
- data: {
8100
- loading: this.loading
8101
- },
8102
- height: this.height
8103
- };
8104
- }
8105
-
8106
- };
8107
-
8108
- /* script */
8109
- const __vue_script__$c = script$c;
8110
- /* template */
8111
-
8112
- var __vue_render__$i = function () {
8113
- var _vm = this;
8114
-
8115
- var _h = _vm.$createElement;
8116
-
8117
- var _c = _vm._self._c || _h;
8118
-
8119
- return _c('ccv-pie-chart', {
8120
- attrs: {
8121
- "data": _vm.data,
8122
- "options": _vm.options
8123
- }
8124
- });
8125
- };
8126
-
8127
- var __vue_staticRenderFns__$i = [];
8128
- /* style */
8129
-
8130
- const __vue_inject_styles__$j = undefined;
8131
- /* scoped */
8132
-
8133
- const __vue_scope_id__$j = undefined;
8134
- /* module identifier */
8135
-
8136
- const __vue_module_identifier__$j = undefined;
8137
- /* functional template */
8138
-
8139
- const __vue_is_functional_template__$j = false;
8140
- /* style inject */
8141
-
8142
- /* style inject SSR */
8143
-
8144
- /* style inject shadow dom */
8145
-
8146
- const __vue_component__$z = /*#__PURE__*/normalizeComponent({
8147
- render: __vue_render__$i,
8148
- staticRenderFns: __vue_staticRenderFns__$i
8149
- }, __vue_inject_styles__$j, __vue_script__$c, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, undefined, undefined, undefined);
8150
-
8151
- var __vue_component__$A = __vue_component__$z;
8152
-
8153
- //
8154
- var script$b = {
8155
8118
  name: "NsModal",
8156
8119
  extends: CvModal,
8157
8120
  components: {
@@ -8211,10 +8174,10 @@ var script$b = {
8211
8174
  };
8212
8175
 
8213
8176
  /* script */
8214
- const __vue_script__$b = script$b;
8177
+ const __vue_script__$c = script$c;
8215
8178
  /* template */
8216
8179
 
8217
- var __vue_render__$h = function () {
8180
+ var __vue_render__$i = function () {
8218
8181
  var _obj, _obj$1, _obj$2, _obj$3;
8219
8182
 
8220
8183
  var _vm = this;
@@ -8348,34 +8311,34 @@ var __vue_render__$h = function () {
8348
8311
  })], 1)]);
8349
8312
  };
8350
8313
 
8351
- var __vue_staticRenderFns__$h = [];
8314
+ var __vue_staticRenderFns__$i = [];
8352
8315
  /* style */
8353
8316
 
8354
- const __vue_inject_styles__$i = undefined;
8317
+ const __vue_inject_styles__$j = undefined;
8355
8318
  /* scoped */
8356
8319
 
8357
- const __vue_scope_id__$i = undefined;
8320
+ const __vue_scope_id__$j = undefined;
8358
8321
  /* module identifier */
8359
8322
 
8360
- const __vue_module_identifier__$i = undefined;
8323
+ const __vue_module_identifier__$j = undefined;
8361
8324
  /* functional template */
8362
8325
 
8363
- const __vue_is_functional_template__$i = false;
8326
+ const __vue_is_functional_template__$j = false;
8364
8327
  /* style inject */
8365
8328
 
8366
8329
  /* style inject SSR */
8367
8330
 
8368
8331
  /* style inject shadow dom */
8369
8332
 
8370
- const __vue_component__$y = /*#__PURE__*/normalizeComponent({
8371
- render: __vue_render__$h,
8372
- staticRenderFns: __vue_staticRenderFns__$h
8373
- }, __vue_inject_styles__$i, __vue_script__$b, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, undefined, undefined, undefined);
8333
+ const __vue_component__$A = /*#__PURE__*/normalizeComponent({
8334
+ render: __vue_render__$i,
8335
+ staticRenderFns: __vue_staticRenderFns__$i
8336
+ }, __vue_inject_styles__$j, __vue_script__$c, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, undefined, undefined, undefined);
8374
8337
 
8375
- var NsModal = __vue_component__$y;
8338
+ var NsModal = __vue_component__$A;
8376
8339
 
8377
8340
  //
8378
- var script$a = {
8341
+ var script$b = {
8379
8342
  name: "NsDangerDeleteModal",
8380
8343
  //component added for storybook to work
8381
8344
  components: {
@@ -8471,10 +8434,10 @@ var script$a = {
8471
8434
  };
8472
8435
 
8473
8436
  /* script */
8474
- const __vue_script__$a = script$a;
8437
+ const __vue_script__$b = script$b;
8475
8438
  /* template */
8476
8439
 
8477
- var __vue_render__$g = function () {
8440
+ var __vue_render__$h = function () {
8478
8441
  var _vm = this;
8479
8442
 
8480
8443
  var _h = _vm.$createElement;
@@ -8542,10 +8505,10 @@ var __vue_render__$g = function () {
8542
8505
  }, [_vm._v(_vm._s(_vm.deleteLabel))])], 2);
8543
8506
  };
8544
8507
 
8545
- var __vue_staticRenderFns__$g = [];
8508
+ var __vue_staticRenderFns__$h = [];
8546
8509
  /* style */
8547
8510
 
8548
- const __vue_inject_styles__$h = function (inject) {
8511
+ const __vue_inject_styles__$i = function (inject) {
8549
8512
  if (!inject) return;
8550
8513
  inject("data-v-746a2de3_0", {
8551
8514
  source: ".type-to-confirm[data-v-746a2de3]{margin-top:2rem}",
@@ -8556,23 +8519,23 @@ const __vue_inject_styles__$h = function (inject) {
8556
8519
  /* scoped */
8557
8520
 
8558
8521
 
8559
- const __vue_scope_id__$h = "data-v-746a2de3";
8522
+ const __vue_scope_id__$i = "data-v-746a2de3";
8560
8523
  /* module identifier */
8561
8524
 
8562
- const __vue_module_identifier__$h = undefined;
8525
+ const __vue_module_identifier__$i = undefined;
8563
8526
  /* functional template */
8564
8527
 
8565
- const __vue_is_functional_template__$h = false;
8528
+ const __vue_is_functional_template__$i = false;
8566
8529
  /* style inject SSR */
8567
8530
 
8568
8531
  /* style inject shadow dom */
8569
8532
 
8570
- const __vue_component__$w = /*#__PURE__*/normalizeComponent({
8571
- render: __vue_render__$g,
8572
- staticRenderFns: __vue_staticRenderFns__$g
8573
- }, __vue_inject_styles__$h, __vue_script__$a, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, createInjector, undefined, undefined);
8533
+ const __vue_component__$y = /*#__PURE__*/normalizeComponent({
8534
+ render: __vue_render__$h,
8535
+ staticRenderFns: __vue_staticRenderFns__$h
8536
+ }, __vue_inject_styles__$i, __vue_script__$b, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, createInjector, undefined, undefined);
8574
8537
 
8575
- var __vue_component__$x = __vue_component__$w;
8538
+ var __vue_component__$z = __vue_component__$y;
8576
8539
 
8577
8540
  var IconService = {
8578
8541
  name: "IconService",
@@ -8698,15 +8661,19 @@ var IconService = {
8698
8661
  Catalog20,
8699
8662
  // system logs
8700
8663
  Catalog32,
8701
- Group20 // users and groups
8702
-
8664
+ Group20,
8665
+ // users and groups
8666
+ Router32,
8667
+ // http routes
8668
+ Router20,
8669
+ Certificate32
8703
8670
  };
8704
8671
  }
8705
8672
 
8706
8673
  };
8707
8674
 
8708
8675
  //
8709
- var script$9 = {
8676
+ var script$a = {
8710
8677
  name: "NsDropdownAction",
8711
8678
  extends: CvOverflowMenu,
8712
8679
  components: {
@@ -8738,10 +8705,10 @@ var script$9 = {
8738
8705
  };
8739
8706
 
8740
8707
  /* script */
8741
- const __vue_script__$9 = script$9;
8708
+ const __vue_script__$a = script$a;
8742
8709
  /* template */
8743
8710
 
8744
- var __vue_render__$f = function () {
8711
+ var __vue_render__$g = function () {
8745
8712
  var _obj, _obj$1;
8746
8713
 
8747
8714
  var _vm = this;
@@ -8841,34 +8808,34 @@ var __vue_render__$f = function () {
8841
8808
  })])]);
8842
8809
  };
8843
8810
 
8844
- var __vue_staticRenderFns__$f = [];
8811
+ var __vue_staticRenderFns__$g = [];
8845
8812
  /* style */
8846
8813
 
8847
- const __vue_inject_styles__$g = undefined;
8814
+ const __vue_inject_styles__$h = undefined;
8848
8815
  /* scoped */
8849
8816
 
8850
- const __vue_scope_id__$g = "data-v-31925b9d";
8817
+ const __vue_scope_id__$h = "data-v-31925b9d";
8851
8818
  /* module identifier */
8852
8819
 
8853
- const __vue_module_identifier__$g = undefined;
8820
+ const __vue_module_identifier__$h = undefined;
8854
8821
  /* functional template */
8855
8822
 
8856
- const __vue_is_functional_template__$g = false;
8823
+ const __vue_is_functional_template__$h = false;
8857
8824
  /* style inject */
8858
8825
 
8859
8826
  /* style inject SSR */
8860
8827
 
8861
8828
  /* style inject shadow dom */
8862
8829
 
8863
- const __vue_component__$u = /*#__PURE__*/normalizeComponent({
8864
- render: __vue_render__$f,
8865
- staticRenderFns: __vue_staticRenderFns__$f
8866
- }, __vue_inject_styles__$g, __vue_script__$9, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, undefined, undefined, undefined);
8830
+ const __vue_component__$w = /*#__PURE__*/normalizeComponent({
8831
+ render: __vue_render__$g,
8832
+ staticRenderFns: __vue_staticRenderFns__$g
8833
+ }, __vue_inject_styles__$h, __vue_script__$a, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, undefined, undefined, undefined);
8867
8834
 
8868
- var __vue_component__$v = __vue_component__$u;
8835
+ var __vue_component__$x = __vue_component__$w;
8869
8836
 
8870
8837
  //
8871
- var script$8 = {
8838
+ var script$9 = {
8872
8839
  name: "NsBackupCardDetails",
8873
8840
  mixins: [DateTimeService],
8874
8841
  props: {
@@ -8904,10 +8871,10 @@ var script$8 = {
8904
8871
  };
8905
8872
 
8906
8873
  /* script */
8907
- const __vue_script__$8 = script$8;
8874
+ const __vue_script__$9 = script$9;
8908
8875
  /* template */
8909
8876
 
8910
- var __vue_render__$e = function () {
8877
+ var __vue_render__$f = function () {
8911
8878
  var _vm = this;
8912
8879
 
8913
8880
  var _h = _vm.$createElement;
@@ -8961,10 +8928,10 @@ var __vue_render__$e = function () {
8961
8928
  }, [_vm.status[_vm.backup.id] && _vm.status[_vm.backup.id].total_file_count ? _c('span', [_vm._v("\n " + _vm._s(_vm.status[_vm.backup.id].total_file_count) + "\n ")]) : _c('span', [_vm._v("-")])])])]);
8962
8929
  };
8963
8930
 
8964
- var __vue_staticRenderFns__$e = [];
8931
+ var __vue_staticRenderFns__$f = [];
8965
8932
  /* style */
8966
8933
 
8967
- const __vue_inject_styles__$f = function (inject) {
8934
+ const __vue_inject_styles__$g = function (inject) {
8968
8935
  if (!inject) return;
8969
8936
  inject("data-v-25453d1c_0", {
8970
8937
  source: ".ns-backup-card-details[data-v-25453d1c]{display:contents}.tr[data-v-25453d1c]{display:table-row}.td[data-v-25453d1c]{display:table-cell}.label[data-v-25453d1c]{padding-right:.75rem;font-weight:700;text-align:right;padding-bottom:.5rem}",
@@ -8975,26 +8942,26 @@ const __vue_inject_styles__$f = function (inject) {
8975
8942
  /* scoped */
8976
8943
 
8977
8944
 
8978
- const __vue_scope_id__$f = "data-v-25453d1c";
8945
+ const __vue_scope_id__$g = "data-v-25453d1c";
8979
8946
  /* module identifier */
8980
8947
 
8981
- const __vue_module_identifier__$f = undefined;
8948
+ const __vue_module_identifier__$g = undefined;
8982
8949
  /* functional template */
8983
8950
 
8984
- const __vue_is_functional_template__$f = false;
8951
+ const __vue_is_functional_template__$g = false;
8985
8952
  /* style inject SSR */
8986
8953
 
8987
8954
  /* style inject shadow dom */
8988
8955
 
8989
- const __vue_component__$t = /*#__PURE__*/normalizeComponent({
8990
- render: __vue_render__$e,
8991
- staticRenderFns: __vue_staticRenderFns__$e
8992
- }, __vue_inject_styles__$f, __vue_script__$8, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
8956
+ const __vue_component__$v = /*#__PURE__*/normalizeComponent({
8957
+ render: __vue_render__$f,
8958
+ staticRenderFns: __vue_staticRenderFns__$f
8959
+ }, __vue_inject_styles__$g, __vue_script__$9, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, createInjector, undefined, undefined);
8993
8960
 
8994
- var NsBackupCardDetails = __vue_component__$t;
8961
+ var NsBackupCardDetails = __vue_component__$v;
8995
8962
 
8996
8963
  //
8997
- var script$7 = {
8964
+ var script$8 = {
8998
8965
  name: "NsBackupCard",
8999
8966
  components: {
9000
8967
  NsBackupCardDetails
@@ -9135,10 +9102,10 @@ var script$7 = {
9135
9102
  };
9136
9103
 
9137
9104
  /* script */
9138
- const __vue_script__$7 = script$7;
9105
+ const __vue_script__$8 = script$8;
9139
9106
  /* template */
9140
9107
 
9141
- var __vue_render__$d = function () {
9108
+ var __vue_render__$e = function () {
9142
9109
  var _vm = this;
9143
9110
 
9144
9111
  var _h = _vm.$createElement;
@@ -9254,10 +9221,10 @@ var __vue_render__$d = function () {
9254
9221
  }, [_vm._v(_vm._s(_vm.goToBackupLabel) + "\n ")])], 1)])], 2);
9255
9222
  };
9256
9223
 
9257
- var __vue_staticRenderFns__$d = [];
9224
+ var __vue_staticRenderFns__$e = [];
9258
9225
  /* style */
9259
9226
 
9260
- const __vue_inject_styles__$e = function (inject) {
9227
+ const __vue_inject_styles__$f = function (inject) {
9261
9228
  if (!inject) return;
9262
9229
  inject("data-v-5a3b7738_0", {
9263
9230
  source: ".ns-backup-card[data-v-5a3b7738]{display:flex;flex-direction:column;justify-content:center;min-height:7rem}.backup[data-v-5a3b7738]{margin-bottom:1rem}.backup[data-v-5a3b7738]:last-child{margin-bottom:0}.row[data-v-5a3b7738]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.title[data-v-5a3b7738]{margin-left:.25rem;margin-right:.25rem;margin-bottom:.5rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table-wrapper[data-v-5a3b7738]{display:flex;justify-content:center;margin-bottom:.5rem}.table[data-v-5a3b7738]{display:table}.tr[data-v-5a3b7738]{display:table-row}.td[data-v-5a3b7738]{display:table-cell}.label[data-v-5a3b7738]{padding-right:.75rem;font-weight:700;text-align:right;padding-bottom:.5rem}.status[data-v-5a3b7738]{font-weight:700}.backup-status-icon[data-v-5a3b7738]{margin-right:.25rem}",
@@ -9272,26 +9239,26 @@ const __vue_inject_styles__$e = function (inject) {
9272
9239
  /* scoped */
9273
9240
 
9274
9241
 
9275
- const __vue_scope_id__$e = "data-v-5a3b7738";
9242
+ const __vue_scope_id__$f = "data-v-5a3b7738";
9276
9243
  /* module identifier */
9277
9244
 
9278
- const __vue_module_identifier__$e = undefined;
9245
+ const __vue_module_identifier__$f = undefined;
9279
9246
  /* functional template */
9280
9247
 
9281
- const __vue_is_functional_template__$e = false;
9248
+ const __vue_is_functional_template__$f = false;
9282
9249
  /* style inject SSR */
9283
9250
 
9284
9251
  /* style inject shadow dom */
9285
9252
 
9286
- const __vue_component__$r = /*#__PURE__*/normalizeComponent({
9287
- render: __vue_render__$d,
9288
- staticRenderFns: __vue_staticRenderFns__$d
9289
- }, __vue_inject_styles__$e, __vue_script__$7, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, createInjector, undefined, undefined);
9253
+ const __vue_component__$t = /*#__PURE__*/normalizeComponent({
9254
+ render: __vue_render__$e,
9255
+ staticRenderFns: __vue_staticRenderFns__$e
9256
+ }, __vue_inject_styles__$f, __vue_script__$8, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
9290
9257
 
9291
- var __vue_component__$s = __vue_component__$r;
9258
+ var __vue_component__$u = __vue_component__$t;
9292
9259
 
9293
9260
  //
9294
- var script$6 = {
9261
+ var script$7 = {
9295
9262
  name: "NsWizard",
9296
9263
  extends: NsModal,
9297
9264
  mixins: [IconService],
@@ -9335,10 +9302,10 @@ var script$6 = {
9335
9302
  };
9336
9303
 
9337
9304
  /* script */
9338
- const __vue_script__$6 = script$6;
9305
+ const __vue_script__$7 = script$7;
9339
9306
  /* template */
9340
9307
 
9341
- var __vue_render__$c = function () {
9308
+ var __vue_render__$d = function () {
9342
9309
  var _obj, _obj$1;
9343
9310
 
9344
9311
  var _vm = this;
@@ -9480,34 +9447,34 @@ var __vue_render__$c = function () {
9480
9447
  })], 1)]);
9481
9448
  };
9482
9449
 
9483
- var __vue_staticRenderFns__$c = [];
9450
+ var __vue_staticRenderFns__$d = [];
9484
9451
  /* style */
9485
9452
 
9486
- const __vue_inject_styles__$d = undefined;
9453
+ const __vue_inject_styles__$e = undefined;
9487
9454
  /* scoped */
9488
9455
 
9489
- const __vue_scope_id__$d = undefined;
9456
+ const __vue_scope_id__$e = undefined;
9490
9457
  /* module identifier */
9491
9458
 
9492
- const __vue_module_identifier__$d = undefined;
9459
+ const __vue_module_identifier__$e = undefined;
9493
9460
  /* functional template */
9494
9461
 
9495
- const __vue_is_functional_template__$d = false;
9462
+ const __vue_is_functional_template__$e = false;
9496
9463
  /* style inject */
9497
9464
 
9498
9465
  /* style inject SSR */
9499
9466
 
9500
9467
  /* style inject shadow dom */
9501
9468
 
9502
- const __vue_component__$p = /*#__PURE__*/normalizeComponent({
9503
- render: __vue_render__$c,
9504
- staticRenderFns: __vue_staticRenderFns__$c
9505
- }, __vue_inject_styles__$d, __vue_script__$6, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, undefined, undefined, undefined);
9469
+ const __vue_component__$r = /*#__PURE__*/normalizeComponent({
9470
+ render: __vue_render__$d,
9471
+ staticRenderFns: __vue_staticRenderFns__$d
9472
+ }, __vue_inject_styles__$e, __vue_script__$7, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, undefined, undefined, undefined);
9506
9473
 
9507
- var __vue_component__$q = __vue_component__$p;
9474
+ var __vue_component__$s = __vue_component__$r;
9508
9475
 
9509
9476
  //
9510
- var script$5 = {
9477
+ var script$6 = {
9511
9478
  name: "NsMenuItem",
9512
9479
  components: {
9513
9480
  NsSvg
@@ -9530,10 +9497,10 @@ var script$5 = {
9530
9497
  };
9531
9498
 
9532
9499
  /* script */
9533
- const __vue_script__$5 = script$5;
9500
+ const __vue_script__$6 = script$6;
9534
9501
  /* template */
9535
9502
 
9536
- var __vue_render__$b = function () {
9503
+ var __vue_render__$c = function () {
9537
9504
  var _vm = this;
9538
9505
 
9539
9506
  var _h = _vm.$createElement;
@@ -9553,10 +9520,10 @@ var __vue_render__$b = function () {
9553
9520
  }, [_vm._t("icon")], 2) : _vm._e(), _vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.label))])]);
9554
9521
  };
9555
9522
 
9556
- var __vue_staticRenderFns__$b = [];
9523
+ var __vue_staticRenderFns__$c = [];
9557
9524
  /* style */
9558
9525
 
9559
- const __vue_inject_styles__$c = function (inject) {
9526
+ const __vue_inject_styles__$d = function (inject) {
9560
9527
  if (!inject) return;
9561
9528
  inject("data-v-35f08832_0", {
9562
9529
  source: ".ns-menu-item[data-v-35f08832]{display:flex;align-items:center}.icon[data-v-35f08832]{margin-right:.5rem}",
@@ -9567,26 +9534,26 @@ const __vue_inject_styles__$c = function (inject) {
9567
9534
  /* scoped */
9568
9535
 
9569
9536
 
9570
- const __vue_scope_id__$c = "data-v-35f08832";
9537
+ const __vue_scope_id__$d = "data-v-35f08832";
9571
9538
  /* module identifier */
9572
9539
 
9573
- const __vue_module_identifier__$c = undefined;
9540
+ const __vue_module_identifier__$d = undefined;
9574
9541
  /* functional template */
9575
9542
 
9576
- const __vue_is_functional_template__$c = false;
9543
+ const __vue_is_functional_template__$d = false;
9577
9544
  /* style inject SSR */
9578
9545
 
9579
9546
  /* style inject shadow dom */
9580
9547
 
9581
- const __vue_component__$n = /*#__PURE__*/normalizeComponent({
9582
- render: __vue_render__$b,
9583
- staticRenderFns: __vue_staticRenderFns__$b
9584
- }, __vue_inject_styles__$c, __vue_script__$5, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
9548
+ const __vue_component__$p = /*#__PURE__*/normalizeComponent({
9549
+ render: __vue_render__$c,
9550
+ staticRenderFns: __vue_staticRenderFns__$c
9551
+ }, __vue_inject_styles__$d, __vue_script__$6, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, createInjector, undefined, undefined);
9585
9552
 
9586
- var __vue_component__$o = __vue_component__$n;
9553
+ var __vue_component__$q = __vue_component__$p;
9587
9554
 
9588
9555
  //
9589
- var script$4 = {
9556
+ var script$5 = {
9590
9557
  name: "NsMenuDivider",
9591
9558
  components: {
9592
9559
  CvSideNavDivider
@@ -9594,10 +9561,10 @@ var script$4 = {
9594
9561
  };
9595
9562
 
9596
9563
  /* script */
9597
- const __vue_script__$4 = script$4;
9564
+ const __vue_script__$5 = script$5;
9598
9565
  /* template */
9599
9566
 
9600
- var __vue_render__$a = function () {
9567
+ var __vue_render__$b = function () {
9601
9568
  var _vm = this;
9602
9569
 
9603
9570
  var _h = _vm.$createElement;
@@ -9607,34 +9574,34 @@ var __vue_render__$a = function () {
9607
9574
  return _c('cv-side-nav-divider');
9608
9575
  };
9609
9576
 
9610
- var __vue_staticRenderFns__$a = [];
9577
+ var __vue_staticRenderFns__$b = [];
9611
9578
  /* style */
9612
9579
 
9613
- const __vue_inject_styles__$b = undefined;
9580
+ const __vue_inject_styles__$c = undefined;
9614
9581
  /* scoped */
9615
9582
 
9616
- const __vue_scope_id__$b = "data-v-c2c8c17e";
9583
+ const __vue_scope_id__$c = "data-v-c2c8c17e";
9617
9584
  /* module identifier */
9618
9585
 
9619
- const __vue_module_identifier__$b = undefined;
9586
+ const __vue_module_identifier__$c = undefined;
9620
9587
  /* functional template */
9621
9588
 
9622
- const __vue_is_functional_template__$b = false;
9589
+ const __vue_is_functional_template__$c = false;
9623
9590
  /* style inject */
9624
9591
 
9625
9592
  /* style inject SSR */
9626
9593
 
9627
9594
  /* style inject shadow dom */
9628
9595
 
9629
- const __vue_component__$l = /*#__PURE__*/normalizeComponent({
9630
- render: __vue_render__$a,
9631
- staticRenderFns: __vue_staticRenderFns__$a
9632
- }, __vue_inject_styles__$b, __vue_script__$4, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, undefined, undefined, undefined);
9596
+ const __vue_component__$n = /*#__PURE__*/normalizeComponent({
9597
+ render: __vue_render__$b,
9598
+ staticRenderFns: __vue_staticRenderFns__$b
9599
+ }, __vue_inject_styles__$c, __vue_script__$5, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, undefined, undefined, undefined);
9633
9600
 
9634
- var __vue_component__$m = __vue_component__$l;
9601
+ var __vue_component__$o = __vue_component__$n;
9635
9602
 
9636
9603
  //
9637
- var script$3 = {
9604
+ var script$4 = {
9638
9605
  name: "NsSystemLogsCard",
9639
9606
  mixins: [UtilService, IconService],
9640
9607
  props: {
@@ -9753,10 +9720,10 @@ var script$3 = {
9753
9720
  };
9754
9721
 
9755
9722
  /* script */
9756
- const __vue_script__$3 = script$3;
9723
+ const __vue_script__$4 = script$4;
9757
9724
  /* template */
9758
9725
 
9759
- var __vue_render__$9 = function () {
9726
+ var __vue_render__$a = function () {
9760
9727
  var _vm = this;
9761
9728
 
9762
9729
  var _h = _vm.$createElement;
@@ -9783,34 +9750,34 @@ var __vue_render__$9 = function () {
9783
9750
  }, [_vm._v("\n " + _vm._s(_vm.buttonLabel) + "\n ")])], 1)], 2);
9784
9751
  };
9785
9752
 
9786
- var __vue_staticRenderFns__$9 = [];
9753
+ var __vue_staticRenderFns__$a = [];
9787
9754
  /* style */
9788
9755
 
9789
- const __vue_inject_styles__$a = undefined;
9756
+ const __vue_inject_styles__$b = undefined;
9790
9757
  /* scoped */
9791
9758
 
9792
- const __vue_scope_id__$a = "data-v-aec74b8e";
9759
+ const __vue_scope_id__$b = "data-v-aec74b8e";
9793
9760
  /* module identifier */
9794
9761
 
9795
- const __vue_module_identifier__$a = undefined;
9762
+ const __vue_module_identifier__$b = undefined;
9796
9763
  /* functional template */
9797
9764
 
9798
- const __vue_is_functional_template__$a = false;
9765
+ const __vue_is_functional_template__$b = false;
9799
9766
  /* style inject */
9800
9767
 
9801
9768
  /* style inject SSR */
9802
9769
 
9803
9770
  /* style inject shadow dom */
9804
9771
 
9805
- const __vue_component__$j = /*#__PURE__*/normalizeComponent({
9806
- render: __vue_render__$9,
9807
- staticRenderFns: __vue_staticRenderFns__$9
9808
- }, __vue_inject_styles__$a, __vue_script__$3, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, undefined, undefined, undefined);
9772
+ const __vue_component__$l = /*#__PURE__*/normalizeComponent({
9773
+ render: __vue_render__$a,
9774
+ staticRenderFns: __vue_staticRenderFns__$a
9775
+ }, __vue_inject_styles__$b, __vue_script__$4, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, undefined, undefined, undefined);
9809
9776
 
9810
- var __vue_component__$k = __vue_component__$j;
9777
+ var __vue_component__$m = __vue_component__$l;
9811
9778
 
9812
9779
  //
9813
- var script$2 = {
9780
+ var script$3 = {
9814
9781
  name: "NsTimePicker",
9815
9782
  mixins: [uidMixin, carbonPrefixMixin, themeMixin],
9816
9783
  props: {
@@ -9853,10 +9820,10 @@ var script$2 = {
9853
9820
  };
9854
9821
 
9855
9822
  /* script */
9856
- const __vue_script__$2 = script$2;
9823
+ const __vue_script__$3 = script$3;
9857
9824
  /* template */
9858
9825
 
9859
- var __vue_render__$8 = function () {
9826
+ var __vue_render__$9 = function () {
9860
9827
  var _obj, _obj$1;
9861
9828
 
9862
9829
  var _vm = this;
@@ -9900,10 +9867,10 @@ var __vue_render__$8 = function () {
9900
9867
  })], 2) : _vm._e()]);
9901
9868
  };
9902
9869
 
9903
- var __vue_staticRenderFns__$8 = [];
9870
+ var __vue_staticRenderFns__$9 = [];
9904
9871
  /* style */
9905
9872
 
9906
- const __vue_inject_styles__$9 = function (inject) {
9873
+ const __vue_inject_styles__$a = function (inject) {
9907
9874
  if (!inject) return;
9908
9875
  inject("data-v-e1e1beb2_0", {
9909
9876
  source: ".ns-time-picker .time-picker-field[data-v-e1e1beb2]{padding:0;width:6rem}.ns-time-picker .time-picker-field.narrow-width[data-v-e1e1beb2]{width:4.875rem}",
@@ -9918,23 +9885,23 @@ const __vue_inject_styles__$9 = function (inject) {
9918
9885
  /* scoped */
9919
9886
 
9920
9887
 
9921
- const __vue_scope_id__$9 = "data-v-e1e1beb2";
9888
+ const __vue_scope_id__$a = "data-v-e1e1beb2";
9922
9889
  /* module identifier */
9923
9890
 
9924
- const __vue_module_identifier__$9 = undefined;
9891
+ const __vue_module_identifier__$a = undefined;
9925
9892
  /* functional template */
9926
9893
 
9927
- const __vue_is_functional_template__$9 = false;
9894
+ const __vue_is_functional_template__$a = false;
9928
9895
  /* style inject SSR */
9929
9896
 
9930
9897
  /* style inject shadow dom */
9931
9898
 
9932
- const __vue_component__$h = /*#__PURE__*/normalizeComponent({
9933
- render: __vue_render__$8,
9934
- staticRenderFns: __vue_staticRenderFns__$8
9935
- }, __vue_inject_styles__$9, __vue_script__$2, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, createInjector, undefined, undefined);
9899
+ const __vue_component__$j = /*#__PURE__*/normalizeComponent({
9900
+ render: __vue_render__$9,
9901
+ staticRenderFns: __vue_staticRenderFns__$9
9902
+ }, __vue_inject_styles__$a, __vue_script__$3, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, createInjector, undefined, undefined);
9936
9903
 
9937
- var __vue_component__$i = __vue_component__$h;
9904
+ var __vue_component__$k = __vue_component__$j;
9938
9905
 
9939
9906
  /*
9940
9907
  * This component optionally wraps slotted content with the specified tag-type.
@@ -9973,7 +9940,7 @@ var NsWrapper = {
9973
9940
 
9974
9941
  };
9975
9942
 
9976
- var script$1 = {
9943
+ var script$2 = {
9977
9944
  name: "NsPagination",
9978
9945
  extends: CvPagination,
9979
9946
  props: {
@@ -10051,12 +10018,12 @@ var script$1 = {
10051
10018
  };
10052
10019
 
10053
10020
  /* script */
10054
- const __vue_script__$1 = script$1;
10021
+ const __vue_script__$2 = script$2;
10055
10022
  /* template */
10056
10023
 
10057
10024
  /* style */
10058
10025
 
10059
- const __vue_inject_styles__$8 = function (inject) {
10026
+ const __vue_inject_styles__$9 = function (inject) {
10060
10027
  if (!inject) return;
10061
10028
  inject("data-v-01f52cb6_0", {
10062
10029
  source: ".cv-pagination .bx--select .bx--label{font-size:100%}",
@@ -10067,20 +10034,20 @@ const __vue_inject_styles__$8 = function (inject) {
10067
10034
  /* scoped */
10068
10035
 
10069
10036
 
10070
- const __vue_scope_id__$8 = undefined;
10037
+ const __vue_scope_id__$9 = undefined;
10071
10038
  /* module identifier */
10072
10039
 
10073
- const __vue_module_identifier__$8 = undefined;
10040
+ const __vue_module_identifier__$9 = undefined;
10074
10041
  /* functional template */
10075
10042
 
10076
- const __vue_is_functional_template__$8 = undefined;
10043
+ const __vue_is_functional_template__$9 = undefined;
10077
10044
  /* style inject SSR */
10078
10045
 
10079
10046
  /* style inject shadow dom */
10080
10047
 
10081
- const __vue_component__$g = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$8, __vue_script__$1, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, createInjector, undefined, undefined);
10048
+ const __vue_component__$i = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$9, __vue_script__$2, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, createInjector, undefined, undefined);
10082
10049
 
10083
- var NsPagination = __vue_component__$g;
10050
+ var NsPagination = __vue_component__$i;
10084
10051
 
10085
10052
  var v$3 = "5.6.1";
10086
10053
  var fr$3 = 24;
@@ -17119,7 +17086,7 @@ var LottieService = {
17119
17086
  };
17120
17087
 
17121
17088
  //
17122
- var script = {
17089
+ var script$1 = {
17123
17090
  name: "NsDataTable",
17124
17091
  extends: CvDataTable,
17125
17092
  components: {
@@ -17416,10 +17383,10 @@ var script = {
17416
17383
  };
17417
17384
 
17418
17385
  /* script */
17419
- const __vue_script__ = script;
17386
+ const __vue_script__$1 = script$1;
17420
17387
  /* template */
17421
17388
 
17422
- var __vue_render__$7 = function () {
17389
+ var __vue_render__$8 = function () {
17423
17390
  var _obj, _obj$1, _obj$2, _obj$3;
17424
17391
 
17425
17392
  var _vm = this;
@@ -17747,6 +17714,136 @@ var __vue_render__$7 = function () {
17747
17714
  }, 'NsPagination', _vm.internalPagination, false)) : _vm._e()], 1)], 2);
17748
17715
  };
17749
17716
 
17717
+ var __vue_staticRenderFns__$8 = [];
17718
+ /* style */
17719
+
17720
+ const __vue_inject_styles__$8 = undefined;
17721
+ /* scoped */
17722
+
17723
+ const __vue_scope_id__$8 = undefined;
17724
+ /* module identifier */
17725
+
17726
+ const __vue_module_identifier__$8 = undefined;
17727
+ /* functional template */
17728
+
17729
+ const __vue_is_functional_template__$8 = false;
17730
+ /* style inject */
17731
+
17732
+ /* style inject SSR */
17733
+
17734
+ /* style inject shadow dom */
17735
+
17736
+ const __vue_component__$g = /*#__PURE__*/normalizeComponent({
17737
+ render: __vue_render__$8,
17738
+ staticRenderFns: __vue_staticRenderFns__$8
17739
+ }, __vue_inject_styles__$8, __vue_script__$1, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, undefined, undefined, undefined);
17740
+
17741
+ var __vue_component__$h = __vue_component__$g;
17742
+
17743
+ //
17744
+ var script = {
17745
+ name: "NsToggle",
17746
+ extends: CvToggle,
17747
+ props: {
17748
+ small: Boolean,
17749
+ label: String,
17750
+ formItem: {
17751
+ type: Boolean,
17752
+ default: true
17753
+ },
17754
+ hideLabel: Boolean,
17755
+ tooltipAlignment: {
17756
+ type: String,
17757
+ default: "start",
17758
+ validator: val => ["start", "center", "end"].includes(val)
17759
+ },
17760
+ tooltipDirection: {
17761
+ type: String,
17762
+ default: "bottom",
17763
+ validator: val => ["top", "left", "bottom", "right".includes(val)]
17764
+ }
17765
+ },
17766
+ computed: {
17767
+ hasTooltipSlot() {
17768
+ return !!this.$slots.tooltip;
17769
+ }
17770
+
17771
+ }
17772
+ };
17773
+
17774
+ /* script */
17775
+ const __vue_script__ = script;
17776
+ /* template */
17777
+
17778
+ var __vue_render__$7 = function () {
17779
+ var _obj;
17780
+
17781
+ var _vm = this;
17782
+
17783
+ var _h = _vm.$createElement;
17784
+
17785
+ var _c = _vm._self._c || _h;
17786
+
17787
+ return _c('div', {
17788
+ class: (_obj = {}, _obj[_vm.carbonPrefix + "--form-item"] = _vm.formItem, _obj)
17789
+ }, [_c('input', _vm._g(_vm._b({
17790
+ ref: "input",
17791
+ class: [_vm.carbonPrefix + "--toggle-input", {
17792
+ 'bx--toggle-input--small': _vm.small
17793
+ }],
17794
+ attrs: {
17795
+ "type": "checkbox",
17796
+ "id": _vm.uid,
17797
+ "aria-checked": "" + _vm.isChecked
17798
+ },
17799
+ domProps: {
17800
+ "checked": _vm.isChecked === true,
17801
+ "value": _vm.value
17802
+ }
17803
+ }, 'input', _vm.$attrs, false), _vm.inputListeners)), _vm._v(" "), _c('label', {
17804
+ class: _vm.carbonPrefix + "--toggle-input__label",
17805
+ attrs: {
17806
+ "for": _vm.uid,
17807
+ "aria-label": _vm.hiddenLabel
17808
+ }
17809
+ }, [_c('div', [_vm._v("\n " + _vm._s(_vm.visibleLabel) + "\n "), _vm._v(" "), _vm.hasTooltipSlot && !_vm.hideLabel ? _c('cv-interactive-tooltip', {
17810
+ staticClass: "tooltip info",
17811
+ attrs: {
17812
+ "alignment": _vm.tooltipAlignment,
17813
+ "direction": _vm.tooltipDirection
17814
+ }
17815
+ }, [_c('template', {
17816
+ slot: "content"
17817
+ }, [_vm._t("tooltip")], 2)], 2) : _vm._e()], 1), _vm._v(" "), _c('span', {
17818
+ class: _vm.carbonPrefix + "--toggle__switch"
17819
+ }, [_c('svg', {
17820
+ class: _vm.carbonPrefix + "--toggle__check",
17821
+ attrs: {
17822
+ "width": "6px",
17823
+ "height": "5px",
17824
+ "viewBox": "0 0 6 5"
17825
+ }
17826
+ }, [_c('path', {
17827
+ attrs: {
17828
+ "d": "M2.2 2.7L5 0 6 1 2.2 5 0 2.7 1 1.5z"
17829
+ }
17830
+ })]), _vm._v(" "), _c('span', {
17831
+ class: _vm.carbonPrefix + "--toggle__text--off",
17832
+ attrs: {
17833
+ "aria-hidden": "true"
17834
+ }
17835
+ }, [_vm._t("text-left", function () {
17836
+ return [_vm._v("Off")];
17837
+ })], 2), _vm._v(" "), _c('span', {
17838
+ class: _vm.carbonPrefix + "--toggle__text--on",
17839
+ attrs: {
17840
+ "aria-hidden": "true"
17841
+ }
17842
+ }, [_vm._t("text-right", function () {
17843
+ return [_vm._v("On")];
17844
+ })], 2)])])]);
17845
+ };
17846
+
17750
17847
  var __vue_staticRenderFns__$7 = [];
17751
17848
  /* style */
17752
17849
 
@@ -18585,21 +18682,21 @@ var components = /*#__PURE__*/Object.freeze({
18585
18682
  NsPasswordInput: __vue_component__$G,
18586
18683
  NsIconMenu: __vue_component__$E,
18587
18684
  NsMeterChart: __vue_component__$C,
18588
- NsPieChart: __vue_component__$A,
18589
18685
  NsLottieAnimation: NsLottieAnimation,
18590
- NsDangerDeleteModal: __vue_component__$x,
18686
+ NsDangerDeleteModal: __vue_component__$z,
18591
18687
  NsCircleTimer: NsCircleTimer,
18592
- NsDropdownAction: __vue_component__$v,
18688
+ NsDropdownAction: __vue_component__$x,
18593
18689
  NsTextInput: NsTextInput,
18594
- NsBackupCard: __vue_component__$s,
18595
- NsWizard: __vue_component__$q,
18596
- NsMenuItem: __vue_component__$o,
18597
- NsMenuDivider: __vue_component__$m,
18598
- NsSystemLogsCard: __vue_component__$k,
18690
+ NsBackupCard: __vue_component__$u,
18691
+ NsWizard: __vue_component__$s,
18692
+ NsMenuItem: __vue_component__$q,
18693
+ NsMenuDivider: __vue_component__$o,
18694
+ NsSystemLogsCard: __vue_component__$m,
18599
18695
  NsModal: NsModal,
18600
- NsTimePicker: __vue_component__$i,
18601
- NsDataTable: __vue_component__$f,
18696
+ NsTimePicker: __vue_component__$k,
18697
+ NsDataTable: __vue_component__$h,
18602
18698
  NsPagination: NsPagination,
18699
+ NsToggle: __vue_component__$f,
18603
18700
  ExclamationMarkPictogram: ExclamationMarkPictogram,
18604
18701
  GearPictogram: __vue_component__$d,
18605
18702
  LovePictogram: __vue_component__$b,
@@ -18627,4 +18724,4 @@ const install = function installNs8UiLib(Vue) {
18627
18724
  });
18628
18725
  }; // Create module definition for Vue.use()
18629
18726
 
18630
- export { __vue_component__$7 as BulldozerPictogram, DateTimeService, ExclamationMarkPictogram, filters as Filters, __vue_component__$d as GearPictogram, __vue_component__$5 as GroupPictogram, __vue_component__$3 as HardDrivePictogram, IconService, LottieService, __vue_component__$b as LovePictogram, __vue_component__$s as NsBackupCard, NsButton, NsCircleTimer, __vue_component__$X as NsCodeSnippet, __vue_component__$x as NsDangerDeleteModal, __vue_component__$f as NsDataTable, __vue_component__$v as NsDropdownAction, __vue_component__$Z as NsEmptyState, __vue_component__$E as NsIconMenu, __vue_component__$N as NsInfoCard, NsInlineNotification, NsLottieAnimation, __vue_component__$m as NsMenuDivider, __vue_component__$o as NsMenuItem, __vue_component__$C as NsMeterChart, NsModal, NsPagination, __vue_component__$G as NsPasswordInput, NsPictogram, __vue_component__$A as NsPieChart, NsProgressBar, __vue_component__$L as NsStatusCard, NsSvg, __vue_component__$k as NsSystemLogsCard, __vue_component__$J as NsSystemdServiceCard, NsTextInput, __vue_component__$R as NsTile, __vue_component__$i as NsTimePicker, __vue_component__$P as NsToastNotification, __vue_component__$q as NsWizard, pageTitle as PageTitleService, queryParam as QueryParamService, StorageService, task as TaskService, __vue_component__$1 as UserPictogram, UtilService, __vue_component__$9 as WarningPictogram, install as default };
18727
+ export { __vue_component__$7 as BulldozerPictogram, DateTimeService, ExclamationMarkPictogram, filters as Filters, __vue_component__$d as GearPictogram, __vue_component__$5 as GroupPictogram, __vue_component__$3 as HardDrivePictogram, IconService, LottieService, __vue_component__$b as LovePictogram, __vue_component__$u as NsBackupCard, NsButton, NsCircleTimer, __vue_component__$X as NsCodeSnippet, __vue_component__$z as NsDangerDeleteModal, __vue_component__$h as NsDataTable, __vue_component__$x as NsDropdownAction, __vue_component__$Z as NsEmptyState, __vue_component__$E as NsIconMenu, __vue_component__$N as NsInfoCard, NsInlineNotification, NsLottieAnimation, __vue_component__$o as NsMenuDivider, __vue_component__$q as NsMenuItem, __vue_component__$C as NsMeterChart, NsModal, NsPagination, __vue_component__$G as NsPasswordInput, NsPictogram, NsProgressBar, __vue_component__$L as NsStatusCard, NsSvg, __vue_component__$m as NsSystemLogsCard, __vue_component__$J as NsSystemdServiceCard, NsTextInput, __vue_component__$R as NsTile, __vue_component__$k as NsTimePicker, __vue_component__$P as NsToastNotification, __vue_component__$f as NsToggle, __vue_component__$s as NsWizard, pageTitle as PageTitleService, queryParam as QueryParamService, StorageService, task as TaskService, __vue_component__$1 as UserPictogram, UtilService, __vue_component__$9 as WarningPictogram, install as default };