@nethserver/ns8-ui-lib 0.0.73 → 0.0.76
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.
package/dist/ns8-ui-lib.esm.js
CHANGED
|
@@ -25,6 +25,7 @@ import Reset20 from '@carbon/icons-vue/es/reset/20';
|
|
|
25
25
|
import Download20 from '@carbon/icons-vue/es/download/20';
|
|
26
26
|
import Launch20 from '@carbon/icons-vue/es/launch/20';
|
|
27
27
|
import Upgrade20 from '@carbon/icons-vue/es/upgrade/20';
|
|
28
|
+
import Upgrade32 from '@carbon/icons-vue/es/upgrade/32';
|
|
28
29
|
import Settings16 from '@carbon/icons-vue/es/settings/16';
|
|
29
30
|
import Settings20 from '@carbon/icons-vue/es/settings/20';
|
|
30
31
|
import ChevronUp20 from '@carbon/icons-vue/es/chevron--up/20';
|
|
@@ -32,6 +33,7 @@ import ChevronLeft20 from '@carbon/icons-vue/es/chevron--left/20';
|
|
|
32
33
|
import ChevronRight20 from '@carbon/icons-vue/es/chevron--right/20';
|
|
33
34
|
import Information16 from '@carbon/icons-vue/es/information/16';
|
|
34
35
|
import Information20 from '@carbon/icons-vue/es/information/20';
|
|
36
|
+
import InformationFilled16 from '@carbon/icons-vue/es/information--filled/16';
|
|
35
37
|
import Application20 from '@carbon/icons-vue/es/application/20';
|
|
36
38
|
import Add20 from '@carbon/icons-vue/es/add/20';
|
|
37
39
|
import Rocket20 from '@carbon/icons-vue/es/rocket/20';
|
|
@@ -95,7 +97,6 @@ import Catalog20 from '@carbon/icons-vue/es/catalog/20';
|
|
|
95
97
|
import Catalog32 from '@carbon/icons-vue/es/catalog/32';
|
|
96
98
|
import { WarningFilled16, WarningAltFilled16, View16, ViewOff16 } from '@carbon/icons-vue';
|
|
97
99
|
import CvSideNavDivider from '@carbon/vue/src/components/cv-ui-shell/cv-side-nav-divider.vue';
|
|
98
|
-
import InformationFilled16 from '@carbon/icons-vue/es/information--filled/16';
|
|
99
100
|
|
|
100
101
|
//
|
|
101
102
|
var script$r = {
|
|
@@ -948,8 +949,12 @@ var script$m = {
|
|
|
948
949
|
},
|
|
949
950
|
|
|
950
951
|
created() {
|
|
951
|
-
this.timeLimitSeconds =
|
|
952
|
+
this.timeLimitSeconds = this.timeLimit / 1000;
|
|
952
953
|
this.timeLeft = this.timeLimitSeconds;
|
|
954
|
+
this.$nextTick(() => {
|
|
955
|
+
this.timePassed += 1;
|
|
956
|
+
this.timeLeft = this.timeLimitSeconds - this.timePassed;
|
|
957
|
+
});
|
|
953
958
|
this.timerInterval = setInterval(() => {
|
|
954
959
|
this.timePassed += 1;
|
|
955
960
|
this.timeLeft = this.timeLimitSeconds - this.timePassed;
|
|
@@ -1013,8 +1018,8 @@ var __vue_staticRenderFns__$q = [];
|
|
|
1013
1018
|
|
|
1014
1019
|
const __vue_inject_styles__$s = function (inject) {
|
|
1015
1020
|
if (!inject) return;
|
|
1016
|
-
inject("data-v-
|
|
1017
|
-
source: ".base-timer[data-v-
|
|
1021
|
+
inject("data-v-79cb7082_0", {
|
|
1022
|
+
source: ".base-timer[data-v-79cb7082]{position:relative}.base-timer__circle[data-v-79cb7082]{fill:none;stroke:none}.base-timer__path-remaining[data-v-79cb7082]{stroke:currentColor;transform:rotate(90deg);transform-origin:center;transition:1s linear all}.base-timer__svg[data-v-79cb7082]{transform:scaleX(-1)}",
|
|
1018
1023
|
map: undefined,
|
|
1019
1024
|
media: undefined
|
|
1020
1025
|
});
|
|
@@ -1022,7 +1027,7 @@ const __vue_inject_styles__$s = function (inject) {
|
|
|
1022
1027
|
/* scoped */
|
|
1023
1028
|
|
|
1024
1029
|
|
|
1025
|
-
const __vue_scope_id__$s = "data-v-
|
|
1030
|
+
const __vue_scope_id__$s = "data-v-79cb7082";
|
|
1026
1031
|
/* module identifier */
|
|
1027
1032
|
|
|
1028
1033
|
const __vue_module_identifier__$s = undefined;
|
|
@@ -6148,6 +6153,10 @@ var script$h = {
|
|
|
6148
6153
|
type: Boolean,
|
|
6149
6154
|
default: false
|
|
6150
6155
|
},
|
|
6156
|
+
isCancelShown: {
|
|
6157
|
+
type: Boolean,
|
|
6158
|
+
default: false
|
|
6159
|
+
},
|
|
6151
6160
|
cancelLabel: {
|
|
6152
6161
|
type: String,
|
|
6153
6162
|
default: "Abort"
|
|
@@ -6241,7 +6250,7 @@ var __vue_render__$m = function () {
|
|
|
6241
6250
|
staticClass: "progress-bar-spacer"
|
|
6242
6251
|
}), _vm._v(" "), _vm.progress ? _c('div', {
|
|
6243
6252
|
staticClass: "progress-number"
|
|
6244
|
-
}, [_vm._v(_vm._s(_vm.progress) + " %")]) : _vm._e()], 1) : _vm._e()]), _vm._v(" "), _vm.isProgressShown ? _c('div', {
|
|
6253
|
+
}, [_vm._v(_vm._s(_vm.progress) + " %")]) : _vm._e()], 1) : _vm._e()]), _vm._v(" "), _vm.isCancelShown && _vm.isProgressShown ? _c('div', {
|
|
6245
6254
|
class: [_vm.carbonPrefix + "--toast-notification__caption", "action", "row"]
|
|
6246
6255
|
}, [_c('button', {
|
|
6247
6256
|
class: [_vm.carbonPrefix + "--inline-notification__action-button", _vm.carbonPrefix + "--btn", _vm.carbonPrefix + "--btn--sm", {
|
|
@@ -6300,11 +6309,11 @@ var __vue_staticRenderFns__$m = [];
|
|
|
6300
6309
|
|
|
6301
6310
|
const __vue_inject_styles__$n = function (inject) {
|
|
6302
6311
|
if (!inject) return;
|
|
6303
|
-
inject("data-v-
|
|
6304
|
-
source: ".notification[data-v-
|
|
6312
|
+
inject("data-v-6ff0b515_0", {
|
|
6313
|
+
source: ".notification[data-v-6ff0b515]{margin-bottom:0;margin-right:0}.action[data-v-6ff0b515]{padding-top:0;margin-bottom:0}.bx--toast-notification .bx--inline-notification__action-button[data-v-6ff0b515]{margin-left:-1rem}.bx--toast-notification .bx--inline-notification__action-button.bx--btn--danger[data-v-6ff0b515]{margin:.5rem 0 .5rem -1rem}.notification-description-and-progress[data-v-6ff0b515]{margin-top:.75rem;margin-bottom:.75rem}.fix-margin-bottom[data-v-6ff0b515]{margin-bottom:0}.progress[data-v-6ff0b515]{margin-top:.75rem}.progress-bar-spacer[data-v-6ff0b515]{height:.5rem}.cv-notifiation.bx--toast-notification.notification[data-v-6ff0b515]{width:26vw;min-width:20rem;margin-top:0}.notification-drawer .cv-notifiation.bx--toast-notification.notification[data-v-6ff0b515]{margin-top:1rem}.notification-drawer .cv-notifiation.bx--toast-notification.notification[data-v-6ff0b515]{width:100%;cursor:pointer}.notification-read[data-v-6ff0b515]{border-color:#8d8d8d;color:#c6c6c6}.notification-read .bx--toast-notification__icon[data-v-6ff0b515]{fill:currentColor}.notification-read .bx--toast-notification__subtitle[data-v-6ff0b515]{color:#c6c6c6}.notification-read .bx--toast-notification__title[data-v-6ff0b515]{font-weight:400}.cv-notifiation .timestamp[data-v-6ff0b515]{margin-bottom:.75rem;line-height:1.29;color:#fff;text-decoration:underline}.cv-notifiation .timestamp button[data-v-6ff0b515]{color:#c6c6c6}.bx--tooltip__trigger[data-v-6ff0b515]:not(.bx--btn--icon-only){font-size:inherit}.cv-notifiation .timestamp .bx--tooltip__trigger[data-v-6ff0b515]::before{border-bottom-color:#161616}div.row[data-v-6ff0b515]:last-child{margin-bottom:1.5rem}.bx--toast-notification__details[data-v-6ff0b515]{flex-grow:1}",
|
|
6305
6314
|
map: undefined,
|
|
6306
6315
|
media: undefined
|
|
6307
|
-
}), inject("data-v-
|
|
6316
|
+
}), inject("data-v-6ff0b515_1", {
|
|
6308
6317
|
source: ".cv-notifiation .timestamp button span{background-color:#161616!important;border-left:1px solid #393939;border-right:1px solid #393939;border-bottom:1px solid #393939}",
|
|
6309
6318
|
map: undefined,
|
|
6310
6319
|
media: undefined
|
|
@@ -6313,7 +6322,7 @@ const __vue_inject_styles__$n = function (inject) {
|
|
|
6313
6322
|
/* scoped */
|
|
6314
6323
|
|
|
6315
6324
|
|
|
6316
|
-
const __vue_scope_id__$n = "data-v-
|
|
6325
|
+
const __vue_scope_id__$n = "data-v-6ff0b515";
|
|
6317
6326
|
/* module identifier */
|
|
6318
6327
|
|
|
6319
6328
|
const __vue_module_identifier__$n = undefined;
|
|
@@ -8152,6 +8161,8 @@ var IconService = {
|
|
|
8152
8161
|
Launch20,
|
|
8153
8162
|
// open app, open external link
|
|
8154
8163
|
Upgrade20,
|
|
8164
|
+
// update
|
|
8165
|
+
Upgrade32,
|
|
8155
8166
|
Settings16,
|
|
8156
8167
|
Settings20,
|
|
8157
8168
|
ChevronDown20,
|
|
@@ -8161,6 +8172,7 @@ var IconService = {
|
|
|
8161
8172
|
Information16,
|
|
8162
8173
|
// info
|
|
8163
8174
|
Information20,
|
|
8175
|
+
InformationFilled16,
|
|
8164
8176
|
Application20,
|
|
8165
8177
|
// apps, module instances and software center
|
|
8166
8178
|
Application32,
|