@nethserver/ns8-ui-lib 0.0.89 → 0.0.92

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