@nethserver/ns8-ui-lib 0.0.36 → 0.0.40
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 +591 -355
- package/dist/ns8-ui-lib.min.js +1 -1
- package/dist/ns8-ui-lib.ssr.js +475 -334
- package/package.json +1 -1
- package/src/lib-components/NsDangerDeleteModal.vue +9 -5
- package/src/lib-components/NsDropdownAction.vue +98 -0
- package/src/lib-components/pictograms/HardDrive.vue +12 -0
package/dist/ns8-ui-lib.esm.js
CHANGED
|
@@ -9,12 +9,9 @@ import Warning20 from '@carbon/icons-vue/es/warning--filled/20';
|
|
|
9
9
|
import Vue from 'vue';
|
|
10
10
|
import '@carbon/charts/styles.css';
|
|
11
11
|
import chartsVue, { CcvMeterChart } from '@carbon/charts-vue';
|
|
12
|
-
import ErrorFilled16 from '@carbon/icons-vue/es/error--filled/16';
|
|
13
|
-
import CheckmarkFilled16 from '@carbon/icons-vue/es/checkmark--filled/16';
|
|
14
|
-
import WarningFilled16 from '@carbon/icons-vue/es/warning--filled/16';
|
|
15
|
-
import InformationFilled16 from '@carbon/icons-vue/es/information--filled/16';
|
|
16
12
|
import Close20 from '@carbon/icons-vue/es/close/20';
|
|
17
13
|
import ArrowRight20 from '@carbon/icons-vue/es/arrow--right/20';
|
|
14
|
+
import ArrowRight32 from '@carbon/icons-vue/es/arrow--right/32';
|
|
18
15
|
import Notification20 from '@carbon/icons-vue/es/notification/20';
|
|
19
16
|
import UserAvatar20 from '@carbon/icons-vue/es/user--avatar/20';
|
|
20
17
|
import AppSwitcher20 from '@carbon/icons-vue/es/app-switcher/20';
|
|
@@ -37,6 +34,7 @@ import Rocket32 from '@carbon/icons-vue/es/rocket/32';
|
|
|
37
34
|
import Chip20 from '@carbon/icons-vue/es/chip/20';
|
|
38
35
|
import Chip32 from '@carbon/icons-vue/es/chip/32';
|
|
39
36
|
import Save20 from '@carbon/icons-vue/es/save/20';
|
|
37
|
+
import Save32 from '@carbon/icons-vue/es/save/32';
|
|
40
38
|
import Application32 from '@carbon/icons-vue/es/application/32';
|
|
41
39
|
import EdgeNode20 from '@carbon/icons-vue/es/edge-node/20';
|
|
42
40
|
import EdgeNode32 from '@carbon/icons-vue/es/edge-node/32';
|
|
@@ -51,9 +49,11 @@ import Star20 from '@carbon/icons-vue/es/star/20';
|
|
|
51
49
|
import Checkmark20 from '@carbon/icons-vue/es/checkmark/20';
|
|
52
50
|
import ZoomIn20 from '@carbon/icons-vue/es/zoom--in/20';
|
|
53
51
|
import Events32 from '@carbon/icons-vue/es/events/32';
|
|
52
|
+
import Link20 from '@carbon/icons-vue/es/link/20';
|
|
54
53
|
import Link32 from '@carbon/icons-vue/es/link/32';
|
|
55
54
|
import WarningAlt32 from '@carbon/icons-vue/es/warning--alt/32';
|
|
56
55
|
import WarningAlt20 from '@carbon/icons-vue/es/warning--alt/20';
|
|
56
|
+
import Tools20 from '@carbon/icons-vue/es/tools/20';
|
|
57
57
|
import Tools32 from '@carbon/icons-vue/es/tools/32';
|
|
58
58
|
import Network_220 from '@carbon/icons-vue/es/network--2/20';
|
|
59
59
|
import Network_232 from '@carbon/icons-vue/es/network--2/32';
|
|
@@ -61,9 +61,19 @@ import DataBase20 from '@carbon/icons-vue/es/data--base/20';
|
|
|
61
61
|
import DataBase32 from '@carbon/icons-vue/es/data--base/32';
|
|
62
62
|
import DataBackup20 from '@carbon/icons-vue/es/data-backup/20';
|
|
63
63
|
import DataBackup32 from '@carbon/icons-vue/es/data-backup/32';
|
|
64
|
+
import ArrowDown20 from '@carbon/icons-vue/es/arrow--down/20';
|
|
65
|
+
import ArrowDown32 from '@carbon/icons-vue/es/arrow--down/32';
|
|
66
|
+
import Time20 from '@carbon/icons-vue/es/time/20';
|
|
67
|
+
import Time32 from '@carbon/icons-vue/es/time/32';
|
|
68
|
+
import Hourglass20 from '@carbon/icons-vue/es/hourglass/20';
|
|
69
|
+
import Hourglass32 from '@carbon/icons-vue/es/hourglass/32';
|
|
70
|
+
import ErrorFilled16 from '@carbon/icons-vue/es/error--filled/16';
|
|
71
|
+
import CheckmarkFilled16 from '@carbon/icons-vue/es/checkmark--filled/16';
|
|
72
|
+
import WarningFilled16 from '@carbon/icons-vue/es/warning--filled/16';
|
|
73
|
+
import InformationFilled16 from '@carbon/icons-vue/es/information--filled/16';
|
|
64
74
|
|
|
65
75
|
//
|
|
66
|
-
var script$
|
|
76
|
+
var script$j = {
|
|
67
77
|
name: "NsButton",
|
|
68
78
|
extends: CvButton,
|
|
69
79
|
props: {
|
|
@@ -226,10 +236,10 @@ function addStyle(id, css) {
|
|
|
226
236
|
}
|
|
227
237
|
|
|
228
238
|
/* script */
|
|
229
|
-
const __vue_script__$
|
|
239
|
+
const __vue_script__$j = script$j;
|
|
230
240
|
/* template */
|
|
231
241
|
|
|
232
|
-
var __vue_render__$
|
|
242
|
+
var __vue_render__$p = function () {
|
|
233
243
|
var _vm = this;
|
|
234
244
|
|
|
235
245
|
var _h = _vm.$createElement;
|
|
@@ -252,10 +262,10 @@ var __vue_render__$n = function () {
|
|
|
252
262
|
}) : _vm._e()], 2);
|
|
253
263
|
};
|
|
254
264
|
|
|
255
|
-
var __vue_staticRenderFns__$
|
|
265
|
+
var __vue_staticRenderFns__$p = [];
|
|
256
266
|
/* style */
|
|
257
267
|
|
|
258
|
-
const __vue_inject_styles__$
|
|
268
|
+
const __vue_inject_styles__$q = function (inject) {
|
|
259
269
|
if (!inject) return;
|
|
260
270
|
inject("data-v-025b0f12_0", {
|
|
261
271
|
source: ".bx--btn .bx--btn__icon[data-v-025b0f12]{width:1.25rem;height:1.25rem}.bx--btn.bx--btn--sm .bx--btn__icon[data-v-025b0f12]{width:1rem;height:1rem}.loader[data-v-025b0f12]{right:1rem;border:3px solid transparent;border-radius:50%;border-top:3px solid currentColor;border-right:3px solid currentColor;border-bottom:3px solid currentColor;animation:spin-data-v-025b0f12 .5s linear infinite}.bx--btn--ghost .bx--btn__icon.loading[data-v-025b0f12]{position:static;margin-left:.5rem}.bx--btn--danger--ghost .bx--btn__icon.loading[data-v-025b0f12],.bx--btn--danger-ghost .bx--btn__icon.loading[data-v-025b0f12]{position:static;margin-left:.5rem}@keyframes spin-data-v-025b0f12{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}",
|
|
@@ -266,23 +276,23 @@ const __vue_inject_styles__$o = function (inject) {
|
|
|
266
276
|
/* scoped */
|
|
267
277
|
|
|
268
278
|
|
|
269
|
-
const __vue_scope_id__$
|
|
279
|
+
const __vue_scope_id__$q = "data-v-025b0f12";
|
|
270
280
|
/* module identifier */
|
|
271
281
|
|
|
272
|
-
const __vue_module_identifier__$
|
|
282
|
+
const __vue_module_identifier__$q = undefined;
|
|
273
283
|
/* functional template */
|
|
274
284
|
|
|
275
|
-
const __vue_is_functional_template__$
|
|
285
|
+
const __vue_is_functional_template__$q = false;
|
|
276
286
|
/* style inject SSR */
|
|
277
287
|
|
|
278
288
|
/* style inject shadow dom */
|
|
279
289
|
|
|
280
|
-
const __vue_component__$
|
|
281
|
-
render: __vue_render__$
|
|
282
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
283
|
-
}, __vue_inject_styles__$
|
|
290
|
+
const __vue_component__$J = /*#__PURE__*/normalizeComponent({
|
|
291
|
+
render: __vue_render__$p,
|
|
292
|
+
staticRenderFns: __vue_staticRenderFns__$p
|
|
293
|
+
}, __vue_inject_styles__$q, __vue_script__$j, __vue_scope_id__$q, __vue_is_functional_template__$q, __vue_module_identifier__$q, false, createInjector, undefined, undefined);
|
|
284
294
|
|
|
285
|
-
var __vue_component__$
|
|
295
|
+
var __vue_component__$K = __vue_component__$J;
|
|
286
296
|
|
|
287
297
|
//
|
|
288
298
|
//
|
|
@@ -300,7 +310,7 @@ var __vue_component__$G = __vue_component__$F;
|
|
|
300
310
|
//
|
|
301
311
|
//
|
|
302
312
|
//
|
|
303
|
-
var script$
|
|
313
|
+
var script$i = {
|
|
304
314
|
name: "NsPictogram",
|
|
305
315
|
props: {
|
|
306
316
|
title: {
|
|
@@ -323,10 +333,10 @@ var script$h = {
|
|
|
323
333
|
};
|
|
324
334
|
|
|
325
335
|
/* script */
|
|
326
|
-
const __vue_script__$
|
|
336
|
+
const __vue_script__$i = script$i;
|
|
327
337
|
/* template */
|
|
328
338
|
|
|
329
|
-
var __vue_render__$
|
|
339
|
+
var __vue_render__$o = function () {
|
|
330
340
|
var _vm = this;
|
|
331
341
|
|
|
332
342
|
var _h = _vm.$createElement;
|
|
@@ -354,34 +364,34 @@ var __vue_render__$m = function () {
|
|
|
354
364
|
}, [_vm._t("default")], 2)]);
|
|
355
365
|
};
|
|
356
366
|
|
|
357
|
-
var __vue_staticRenderFns__$
|
|
367
|
+
var __vue_staticRenderFns__$o = [];
|
|
358
368
|
/* style */
|
|
359
369
|
|
|
360
|
-
const __vue_inject_styles__$
|
|
370
|
+
const __vue_inject_styles__$p = undefined;
|
|
361
371
|
/* scoped */
|
|
362
372
|
|
|
363
|
-
const __vue_scope_id__$
|
|
373
|
+
const __vue_scope_id__$p = undefined;
|
|
364
374
|
/* module identifier */
|
|
365
375
|
|
|
366
|
-
const __vue_module_identifier__$
|
|
376
|
+
const __vue_module_identifier__$p = undefined;
|
|
367
377
|
/* functional template */
|
|
368
378
|
|
|
369
|
-
const __vue_is_functional_template__$
|
|
379
|
+
const __vue_is_functional_template__$p = false;
|
|
370
380
|
/* style inject */
|
|
371
381
|
|
|
372
382
|
/* style inject SSR */
|
|
373
383
|
|
|
374
384
|
/* style inject shadow dom */
|
|
375
385
|
|
|
376
|
-
const __vue_component__$
|
|
377
|
-
render: __vue_render__$
|
|
378
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
379
|
-
}, __vue_inject_styles__$
|
|
386
|
+
const __vue_component__$I = /*#__PURE__*/normalizeComponent({
|
|
387
|
+
render: __vue_render__$o,
|
|
388
|
+
staticRenderFns: __vue_staticRenderFns__$o
|
|
389
|
+
}, __vue_inject_styles__$p, __vue_script__$i, __vue_scope_id__$p, __vue_is_functional_template__$p, __vue_module_identifier__$p, false, undefined, undefined, undefined);
|
|
380
390
|
|
|
381
|
-
var NsPictogram = __vue_component__$
|
|
391
|
+
var NsPictogram = __vue_component__$I;
|
|
382
392
|
|
|
383
393
|
//
|
|
384
|
-
var script$
|
|
394
|
+
var script$h = {
|
|
385
395
|
name: "NsLottieAnimation",
|
|
386
396
|
components: {
|
|
387
397
|
LottieAnimation
|
|
@@ -437,10 +447,10 @@ var script$g = {
|
|
|
437
447
|
};
|
|
438
448
|
|
|
439
449
|
/* script */
|
|
440
|
-
const __vue_script__$
|
|
450
|
+
const __vue_script__$h = script$h;
|
|
441
451
|
/* template */
|
|
442
452
|
|
|
443
|
-
var __vue_render__$
|
|
453
|
+
var __vue_render__$n = function () {
|
|
444
454
|
var _vm = this;
|
|
445
455
|
|
|
446
456
|
var _h = _vm.$createElement;
|
|
@@ -467,36 +477,36 @@ var __vue_render__$l = function () {
|
|
|
467
477
|
})], 1);
|
|
468
478
|
};
|
|
469
479
|
|
|
470
|
-
var __vue_staticRenderFns__$
|
|
480
|
+
var __vue_staticRenderFns__$n = [];
|
|
471
481
|
/* style */
|
|
472
482
|
|
|
473
|
-
const __vue_inject_styles__$
|
|
483
|
+
const __vue_inject_styles__$o = undefined;
|
|
474
484
|
/* scoped */
|
|
475
485
|
|
|
476
|
-
const __vue_scope_id__$
|
|
486
|
+
const __vue_scope_id__$o = "data-v-14e97a70";
|
|
477
487
|
/* module identifier */
|
|
478
488
|
|
|
479
|
-
const __vue_module_identifier__$
|
|
489
|
+
const __vue_module_identifier__$o = undefined;
|
|
480
490
|
/* functional template */
|
|
481
491
|
|
|
482
|
-
const __vue_is_functional_template__$
|
|
492
|
+
const __vue_is_functional_template__$o = false;
|
|
483
493
|
/* style inject */
|
|
484
494
|
|
|
485
495
|
/* style inject SSR */
|
|
486
496
|
|
|
487
497
|
/* style inject shadow dom */
|
|
488
498
|
|
|
489
|
-
const __vue_component__$
|
|
490
|
-
render: __vue_render__$
|
|
491
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
492
|
-
}, __vue_inject_styles__$
|
|
499
|
+
const __vue_component__$H = /*#__PURE__*/normalizeComponent({
|
|
500
|
+
render: __vue_render__$n,
|
|
501
|
+
staticRenderFns: __vue_staticRenderFns__$n
|
|
502
|
+
}, __vue_inject_styles__$o, __vue_script__$h, __vue_scope_id__$o, __vue_is_functional_template__$o, __vue_module_identifier__$o, false, undefined, undefined, undefined);
|
|
493
503
|
|
|
494
|
-
var NsLottieAnimation = __vue_component__$
|
|
504
|
+
var NsLottieAnimation = __vue_component__$H;
|
|
495
505
|
|
|
496
506
|
/* script */
|
|
497
507
|
|
|
498
508
|
/* template */
|
|
499
|
-
var __vue_render__$
|
|
509
|
+
var __vue_render__$m = function () {
|
|
500
510
|
var _vm = this;
|
|
501
511
|
|
|
502
512
|
var _h = _vm.$createElement;
|
|
@@ -511,34 +521,34 @@ var __vue_render__$k = function () {
|
|
|
511
521
|
});
|
|
512
522
|
};
|
|
513
523
|
|
|
514
|
-
var __vue_staticRenderFns__$
|
|
524
|
+
var __vue_staticRenderFns__$m = [];
|
|
515
525
|
/* style */
|
|
516
526
|
|
|
517
|
-
const __vue_inject_styles__$
|
|
527
|
+
const __vue_inject_styles__$n = undefined;
|
|
518
528
|
/* scoped */
|
|
519
529
|
|
|
520
|
-
const __vue_scope_id__$
|
|
530
|
+
const __vue_scope_id__$n = undefined;
|
|
521
531
|
/* module identifier */
|
|
522
532
|
|
|
523
|
-
const __vue_module_identifier__$
|
|
533
|
+
const __vue_module_identifier__$n = undefined;
|
|
524
534
|
/* functional template */
|
|
525
535
|
|
|
526
|
-
const __vue_is_functional_template__$
|
|
536
|
+
const __vue_is_functional_template__$n = false;
|
|
527
537
|
/* style inject */
|
|
528
538
|
|
|
529
539
|
/* style inject SSR */
|
|
530
540
|
|
|
531
541
|
/* style inject shadow dom */
|
|
532
542
|
|
|
533
|
-
const __vue_component__$
|
|
534
|
-
render: __vue_render__$
|
|
535
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
536
|
-
}, __vue_inject_styles__$
|
|
543
|
+
const __vue_component__$G = /*#__PURE__*/normalizeComponent({
|
|
544
|
+
render: __vue_render__$m,
|
|
545
|
+
staticRenderFns: __vue_staticRenderFns__$m
|
|
546
|
+
}, __vue_inject_styles__$n, {}, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, undefined, undefined, undefined);
|
|
537
547
|
|
|
538
|
-
var ExclamationMark = __vue_component__$
|
|
548
|
+
var ExclamationMark = __vue_component__$G;
|
|
539
549
|
|
|
540
550
|
//
|
|
541
|
-
var script$
|
|
551
|
+
var script$g = {
|
|
542
552
|
name: "NsEmptyState",
|
|
543
553
|
components: {
|
|
544
554
|
NsPictogram,
|
|
@@ -570,10 +580,10 @@ var script$f = {
|
|
|
570
580
|
};
|
|
571
581
|
|
|
572
582
|
/* script */
|
|
573
|
-
const __vue_script__$
|
|
583
|
+
const __vue_script__$g = script$g;
|
|
574
584
|
/* template */
|
|
575
585
|
|
|
576
|
-
var __vue_render__$
|
|
586
|
+
var __vue_render__$l = function () {
|
|
577
587
|
var _vm = this;
|
|
578
588
|
|
|
579
589
|
var _h = _vm.$createElement;
|
|
@@ -603,10 +613,10 @@ var __vue_render__$j = function () {
|
|
|
603
613
|
}, [_vm._t("description")], 2)] : _vm._e()], 2);
|
|
604
614
|
};
|
|
605
615
|
|
|
606
|
-
var __vue_staticRenderFns__$
|
|
616
|
+
var __vue_staticRenderFns__$l = [];
|
|
607
617
|
/* style */
|
|
608
618
|
|
|
609
|
-
const __vue_inject_styles__$
|
|
619
|
+
const __vue_inject_styles__$m = function (inject) {
|
|
610
620
|
if (!inject) return;
|
|
611
621
|
inject("data-v-d5a46c1c_0", {
|
|
612
622
|
source: ".empty-state[data-v-d5a46c1c]{text-align:center;padding:2rem}.empty-state .image[data-v-d5a46c1c]{margin-bottom:1rem}.empty-state .description[data-v-d5a46c1c]{margin-top:1rem}.animation[data-v-d5a46c1c]{display:inline-block;width:64px;height:64px}",
|
|
@@ -617,26 +627,26 @@ const __vue_inject_styles__$k = function (inject) {
|
|
|
617
627
|
/* scoped */
|
|
618
628
|
|
|
619
629
|
|
|
620
|
-
const __vue_scope_id__$
|
|
630
|
+
const __vue_scope_id__$m = "data-v-d5a46c1c";
|
|
621
631
|
/* module identifier */
|
|
622
632
|
|
|
623
|
-
const __vue_module_identifier__$
|
|
633
|
+
const __vue_module_identifier__$m = undefined;
|
|
624
634
|
/* functional template */
|
|
625
635
|
|
|
626
|
-
const __vue_is_functional_template__$
|
|
636
|
+
const __vue_is_functional_template__$m = false;
|
|
627
637
|
/* style inject SSR */
|
|
628
638
|
|
|
629
639
|
/* style inject shadow dom */
|
|
630
640
|
|
|
631
|
-
const __vue_component__$
|
|
632
|
-
render: __vue_render__$
|
|
633
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
634
|
-
}, __vue_inject_styles__$
|
|
641
|
+
const __vue_component__$E = /*#__PURE__*/normalizeComponent({
|
|
642
|
+
render: __vue_render__$l,
|
|
643
|
+
staticRenderFns: __vue_staticRenderFns__$l
|
|
644
|
+
}, __vue_inject_styles__$m, __vue_script__$g, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, createInjector, undefined, undefined);
|
|
635
645
|
|
|
636
|
-
var __vue_component__$
|
|
646
|
+
var __vue_component__$F = __vue_component__$E;
|
|
637
647
|
|
|
638
648
|
//
|
|
639
|
-
var script$
|
|
649
|
+
var script$f = {
|
|
640
650
|
name: "NsCodeSnippet",
|
|
641
651
|
components: {
|
|
642
652
|
CvButton,
|
|
@@ -748,10 +758,10 @@ var script$e = {
|
|
|
748
758
|
};
|
|
749
759
|
|
|
750
760
|
/* script */
|
|
751
|
-
const __vue_script__$
|
|
761
|
+
const __vue_script__$f = script$f;
|
|
752
762
|
/* template */
|
|
753
763
|
|
|
754
|
-
var __vue_render__$
|
|
764
|
+
var __vue_render__$k = function () {
|
|
755
765
|
var _vm = this;
|
|
756
766
|
|
|
757
767
|
var _h = _vm.$createElement;
|
|
@@ -813,10 +823,10 @@ var __vue_render__$i = function () {
|
|
|
813
823
|
})], 1) : _vm._e()], 1);
|
|
814
824
|
};
|
|
815
825
|
|
|
816
|
-
var __vue_staticRenderFns__$
|
|
826
|
+
var __vue_staticRenderFns__$k = [];
|
|
817
827
|
/* style */
|
|
818
828
|
|
|
819
|
-
const __vue_inject_styles__$
|
|
829
|
+
const __vue_inject_styles__$l = function (inject) {
|
|
820
830
|
if (!inject) return;
|
|
821
831
|
inject("data-v-59cb538c_0", {
|
|
822
832
|
source: ".bx--snippet--multi .bx--snippet-container[data-v-59cb538c]{min-height:4.5rem;max-height:9.6rem;overflow-y:hidden}.bx--snippet--multi .bx--snippet-container.no-expand[data-v-59cb538c]{min-height:2.5rem}.bx--snippet--multi.bx--snippet--expand .bx--snippet-container[data-v-59cb538c]{max-height:100%}.bx--snippet--multi .bx--copy-btn[data-v-59cb538c]{position:absolute!important;top:.5rem;right:.5rem;z-index:11;width:3rem;height:2rem}.bx--snippet-btn--expand[data-v-59cb538c]{right:.5rem;bottom:.5rem}",
|
|
@@ -827,23 +837,23 @@ const __vue_inject_styles__$j = function (inject) {
|
|
|
827
837
|
/* scoped */
|
|
828
838
|
|
|
829
839
|
|
|
830
|
-
const __vue_scope_id__$
|
|
840
|
+
const __vue_scope_id__$l = "data-v-59cb538c";
|
|
831
841
|
/* module identifier */
|
|
832
842
|
|
|
833
|
-
const __vue_module_identifier__$
|
|
843
|
+
const __vue_module_identifier__$l = undefined;
|
|
834
844
|
/* functional template */
|
|
835
845
|
|
|
836
|
-
const __vue_is_functional_template__$
|
|
846
|
+
const __vue_is_functional_template__$l = false;
|
|
837
847
|
/* style inject SSR */
|
|
838
848
|
|
|
839
849
|
/* style inject shadow dom */
|
|
840
850
|
|
|
841
|
-
const __vue_component__$
|
|
842
|
-
render: __vue_render__$
|
|
843
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
844
|
-
}, __vue_inject_styles__$
|
|
851
|
+
const __vue_component__$C = /*#__PURE__*/normalizeComponent({
|
|
852
|
+
render: __vue_render__$k,
|
|
853
|
+
staticRenderFns: __vue_staticRenderFns__$k
|
|
854
|
+
}, __vue_inject_styles__$l, __vue_script__$f, __vue_scope_id__$l, __vue_is_functional_template__$l, __vue_module_identifier__$l, false, createInjector, undefined, undefined);
|
|
845
855
|
|
|
846
|
-
var __vue_component__$
|
|
856
|
+
var __vue_component__$D = __vue_component__$C;
|
|
847
857
|
|
|
848
858
|
//
|
|
849
859
|
//
|
|
@@ -874,7 +884,7 @@ var __vue_component__$z = __vue_component__$y;
|
|
|
874
884
|
//
|
|
875
885
|
//
|
|
876
886
|
//
|
|
877
|
-
var script$
|
|
887
|
+
var script$e = {
|
|
878
888
|
name: "NsCircleTimer",
|
|
879
889
|
props: {
|
|
880
890
|
timeLimit: {
|
|
@@ -934,10 +944,10 @@ var script$d = {
|
|
|
934
944
|
};
|
|
935
945
|
|
|
936
946
|
/* script */
|
|
937
|
-
const __vue_script__$
|
|
947
|
+
const __vue_script__$e = script$e;
|
|
938
948
|
/* template */
|
|
939
949
|
|
|
940
|
-
var __vue_render__$
|
|
950
|
+
var __vue_render__$j = function () {
|
|
941
951
|
var _vm = this;
|
|
942
952
|
|
|
943
953
|
var _h = _vm.$createElement;
|
|
@@ -973,10 +983,10 @@ var __vue_render__$h = function () {
|
|
|
973
983
|
})])])]);
|
|
974
984
|
};
|
|
975
985
|
|
|
976
|
-
var __vue_staticRenderFns__$
|
|
986
|
+
var __vue_staticRenderFns__$j = [];
|
|
977
987
|
/* style */
|
|
978
988
|
|
|
979
|
-
const __vue_inject_styles__$
|
|
989
|
+
const __vue_inject_styles__$k = function (inject) {
|
|
980
990
|
if (!inject) return;
|
|
981
991
|
inject("data-v-45b59790_0", {
|
|
982
992
|
source: ".base-timer[data-v-45b59790]{position:relative}.base-timer__circle[data-v-45b59790]{fill:none;stroke:none}.base-timer__path-remaining[data-v-45b59790]{stroke:currentColor;transform:rotate(90deg);transform-origin:center;transition:1s linear all}.base-timer__svg[data-v-45b59790]{transform:scaleX(-1)}",
|
|
@@ -987,26 +997,26 @@ const __vue_inject_styles__$i = function (inject) {
|
|
|
987
997
|
/* scoped */
|
|
988
998
|
|
|
989
999
|
|
|
990
|
-
const __vue_scope_id__$
|
|
1000
|
+
const __vue_scope_id__$k = "data-v-45b59790";
|
|
991
1001
|
/* module identifier */
|
|
992
1002
|
|
|
993
|
-
const __vue_module_identifier__$
|
|
1003
|
+
const __vue_module_identifier__$k = undefined;
|
|
994
1004
|
/* functional template */
|
|
995
1005
|
|
|
996
|
-
const __vue_is_functional_template__$
|
|
1006
|
+
const __vue_is_functional_template__$k = false;
|
|
997
1007
|
/* style inject SSR */
|
|
998
1008
|
|
|
999
1009
|
/* style inject shadow dom */
|
|
1000
1010
|
|
|
1001
|
-
const __vue_component__$
|
|
1002
|
-
render: __vue_render__$
|
|
1003
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1004
|
-
}, __vue_inject_styles__$
|
|
1011
|
+
const __vue_component__$B = /*#__PURE__*/normalizeComponent({
|
|
1012
|
+
render: __vue_render__$j,
|
|
1013
|
+
staticRenderFns: __vue_staticRenderFns__$j
|
|
1014
|
+
}, __vue_inject_styles__$k, __vue_script__$e, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, createInjector, undefined, undefined);
|
|
1005
1015
|
|
|
1006
|
-
var NsCircleTimer = __vue_component__$
|
|
1016
|
+
var NsCircleTimer = __vue_component__$B;
|
|
1007
1017
|
|
|
1008
1018
|
//
|
|
1009
|
-
var script$
|
|
1019
|
+
var script$d = {
|
|
1010
1020
|
name: "NsInlineNotification",
|
|
1011
1021
|
extends: CvInlineNotification,
|
|
1012
1022
|
components: {
|
|
@@ -1043,10 +1053,10 @@ var script$c = {
|
|
|
1043
1053
|
};
|
|
1044
1054
|
|
|
1045
1055
|
/* script */
|
|
1046
|
-
const __vue_script__$
|
|
1056
|
+
const __vue_script__$d = script$d;
|
|
1047
1057
|
/* template */
|
|
1048
1058
|
|
|
1049
|
-
var __vue_render__$
|
|
1059
|
+
var __vue_render__$i = function () {
|
|
1050
1060
|
var _obj;
|
|
1051
1061
|
|
|
1052
1062
|
var _vm = this;
|
|
@@ -1117,10 +1127,10 @@ var __vue_render__$g = function () {
|
|
|
1117
1127
|
})], 1) : _vm._e()]);
|
|
1118
1128
|
};
|
|
1119
1129
|
|
|
1120
|
-
var __vue_staticRenderFns__$
|
|
1130
|
+
var __vue_staticRenderFns__$i = [];
|
|
1121
1131
|
/* style */
|
|
1122
1132
|
|
|
1123
|
-
const __vue_inject_styles__$
|
|
1133
|
+
const __vue_inject_styles__$j = function (inject) {
|
|
1124
1134
|
if (!inject) return;
|
|
1125
1135
|
inject("data-v-1e5d2ff7_0", {
|
|
1126
1136
|
source: ".title[data-v-1e5d2ff7]{margin-right:.75rem;margin-bottom:.2rem;font-size:.875rem!important;font-weight:600!important}.mg-right[data-v-1e5d2ff7]{margin-right:.75rem}.details[data-v-1e5d2ff7]{flex-grow:0}.bx--inline-notification__close-button[data-v-1e5d2ff7]{position:absolute!important}.bx--inline-notification__text-wrapper p[data-v-1e5d2ff7]{padding-right:0!important}",
|
|
@@ -1131,23 +1141,23 @@ const __vue_inject_styles__$h = function (inject) {
|
|
|
1131
1141
|
/* scoped */
|
|
1132
1142
|
|
|
1133
1143
|
|
|
1134
|
-
const __vue_scope_id__$
|
|
1144
|
+
const __vue_scope_id__$j = "data-v-1e5d2ff7";
|
|
1135
1145
|
/* module identifier */
|
|
1136
1146
|
|
|
1137
|
-
const __vue_module_identifier__$
|
|
1147
|
+
const __vue_module_identifier__$j = undefined;
|
|
1138
1148
|
/* functional template */
|
|
1139
1149
|
|
|
1140
|
-
const __vue_is_functional_template__$
|
|
1150
|
+
const __vue_is_functional_template__$j = false;
|
|
1141
1151
|
/* style inject SSR */
|
|
1142
1152
|
|
|
1143
1153
|
/* style inject shadow dom */
|
|
1144
1154
|
|
|
1145
|
-
const __vue_component__$
|
|
1146
|
-
render: __vue_render__$
|
|
1147
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1148
|
-
}, __vue_inject_styles__$
|
|
1155
|
+
const __vue_component__$A = /*#__PURE__*/normalizeComponent({
|
|
1156
|
+
render: __vue_render__$i,
|
|
1157
|
+
staticRenderFns: __vue_staticRenderFns__$i
|
|
1158
|
+
}, __vue_inject_styles__$j, __vue_script__$d, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, createInjector, undefined, undefined);
|
|
1149
1159
|
|
|
1150
|
-
var NsInlineNotification = __vue_component__$
|
|
1160
|
+
var NsInlineNotification = __vue_component__$A;
|
|
1151
1161
|
|
|
1152
1162
|
//
|
|
1153
1163
|
//
|
|
@@ -1166,7 +1176,7 @@ var NsInlineNotification = __vue_component__$w;
|
|
|
1166
1176
|
//
|
|
1167
1177
|
//
|
|
1168
1178
|
//
|
|
1169
|
-
var script$
|
|
1179
|
+
var script$c = {
|
|
1170
1180
|
name: "NsProgressBar",
|
|
1171
1181
|
props: {
|
|
1172
1182
|
value: {
|
|
@@ -1197,10 +1207,10 @@ var script$b = {
|
|
|
1197
1207
|
};
|
|
1198
1208
|
|
|
1199
1209
|
/* script */
|
|
1200
|
-
const __vue_script__$
|
|
1210
|
+
const __vue_script__$c = script$c;
|
|
1201
1211
|
/* template */
|
|
1202
1212
|
|
|
1203
|
-
var __vue_render__$
|
|
1213
|
+
var __vue_render__$h = function () {
|
|
1204
1214
|
var _vm = this;
|
|
1205
1215
|
|
|
1206
1216
|
var _h = _vm.$createElement;
|
|
@@ -1225,10 +1235,10 @@ var __vue_render__$f = function () {
|
|
|
1225
1235
|
})]], 2)]);
|
|
1226
1236
|
};
|
|
1227
1237
|
|
|
1228
|
-
var __vue_staticRenderFns__$
|
|
1238
|
+
var __vue_staticRenderFns__$h = [];
|
|
1229
1239
|
/* style */
|
|
1230
1240
|
|
|
1231
|
-
const __vue_inject_styles__$
|
|
1241
|
+
const __vue_inject_styles__$i = function (inject) {
|
|
1232
1242
|
if (!inject) return;
|
|
1233
1243
|
inject("data-v-2bcd6519_0", {
|
|
1234
1244
|
source: ".progress-bar-container[data-v-2bcd6519]{width:100%;position:relative}.slider[data-v-2bcd6519]{position:absolute;width:100%;height:5px;overflow-x:hidden}.line[data-v-2bcd6519]{position:absolute;opacity:.4;width:100%;height:5px}.progress-line[data-v-2bcd6519]{position:absolute;height:5px}.indeterminate-line[data-v-2bcd6519]{position:absolute;opacity:.4;width:150%;height:5px}.indeterminate-subline[data-v-2bcd6519]{position:absolute;height:5px}.inc[data-v-2bcd6519]{animation:increase-data-v-2bcd6519 2s infinite}.dec[data-v-2bcd6519]{animation:decrease-data-v-2bcd6519 2s .5s infinite}@keyframes increase-data-v-2bcd6519{from{left:-5%;width:5%}to{left:130%;width:100%}}@keyframes decrease-data-v-2bcd6519{from{left:-80%;width:80%}to{left:110%;width:10%}}",
|
|
@@ -1239,25 +1249,25 @@ const __vue_inject_styles__$g = function (inject) {
|
|
|
1239
1249
|
/* scoped */
|
|
1240
1250
|
|
|
1241
1251
|
|
|
1242
|
-
const __vue_scope_id__$
|
|
1252
|
+
const __vue_scope_id__$i = "data-v-2bcd6519";
|
|
1243
1253
|
/* module identifier */
|
|
1244
1254
|
|
|
1245
|
-
const __vue_module_identifier__$
|
|
1255
|
+
const __vue_module_identifier__$i = undefined;
|
|
1246
1256
|
/* functional template */
|
|
1247
1257
|
|
|
1248
|
-
const __vue_is_functional_template__$
|
|
1258
|
+
const __vue_is_functional_template__$i = false;
|
|
1249
1259
|
/* style inject SSR */
|
|
1250
1260
|
|
|
1251
1261
|
/* style inject shadow dom */
|
|
1252
1262
|
|
|
1253
|
-
const __vue_component__$
|
|
1254
|
-
render: __vue_render__$
|
|
1255
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1256
|
-
}, __vue_inject_styles__$
|
|
1263
|
+
const __vue_component__$z = /*#__PURE__*/normalizeComponent({
|
|
1264
|
+
render: __vue_render__$h,
|
|
1265
|
+
staticRenderFns: __vue_staticRenderFns__$h
|
|
1266
|
+
}, __vue_inject_styles__$i, __vue_script__$c, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, createInjector, undefined, undefined);
|
|
1257
1267
|
|
|
1258
|
-
var NsProgressBar = __vue_component__$
|
|
1268
|
+
var NsProgressBar = __vue_component__$z;
|
|
1259
1269
|
|
|
1260
|
-
var script$
|
|
1270
|
+
var script$b = {
|
|
1261
1271
|
name: "NsSvg",
|
|
1262
1272
|
props: {
|
|
1263
1273
|
svg: {
|
|
@@ -1316,33 +1326,33 @@ var script$a = {
|
|
|
1316
1326
|
};
|
|
1317
1327
|
|
|
1318
1328
|
/* script */
|
|
1319
|
-
const __vue_script__$
|
|
1329
|
+
const __vue_script__$b = script$b;
|
|
1320
1330
|
/* template */
|
|
1321
1331
|
|
|
1322
1332
|
/* style */
|
|
1323
1333
|
|
|
1324
|
-
const __vue_inject_styles__$
|
|
1334
|
+
const __vue_inject_styles__$h = undefined;
|
|
1325
1335
|
/* scoped */
|
|
1326
1336
|
|
|
1327
|
-
const __vue_scope_id__$
|
|
1337
|
+
const __vue_scope_id__$h = undefined;
|
|
1328
1338
|
/* module identifier */
|
|
1329
1339
|
|
|
1330
|
-
const __vue_module_identifier__$
|
|
1340
|
+
const __vue_module_identifier__$h = undefined;
|
|
1331
1341
|
/* functional template */
|
|
1332
1342
|
|
|
1333
|
-
const __vue_is_functional_template__$
|
|
1343
|
+
const __vue_is_functional_template__$h = undefined;
|
|
1334
1344
|
/* style inject */
|
|
1335
1345
|
|
|
1336
1346
|
/* style inject SSR */
|
|
1337
1347
|
|
|
1338
1348
|
/* style inject shadow dom */
|
|
1339
1349
|
|
|
1340
|
-
const __vue_component__$
|
|
1350
|
+
const __vue_component__$y = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$h, __vue_script__$b, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, undefined, undefined, undefined);
|
|
1341
1351
|
|
|
1342
|
-
var NsSvg = __vue_component__$
|
|
1352
|
+
var NsSvg = __vue_component__$y;
|
|
1343
1353
|
|
|
1344
1354
|
//
|
|
1345
|
-
var script$
|
|
1355
|
+
var script$a = {
|
|
1346
1356
|
name: "NsTile",
|
|
1347
1357
|
extends: CvTile,
|
|
1348
1358
|
inheritAttrs: false,
|
|
@@ -1410,10 +1420,10 @@ var script$9 = {
|
|
|
1410
1420
|
};
|
|
1411
1421
|
|
|
1412
1422
|
/* script */
|
|
1413
|
-
const __vue_script__$
|
|
1423
|
+
const __vue_script__$a = script$a;
|
|
1414
1424
|
/* template */
|
|
1415
1425
|
|
|
1416
|
-
var __vue_render__$
|
|
1426
|
+
var __vue_render__$g = function () {
|
|
1417
1427
|
var _obj;
|
|
1418
1428
|
|
|
1419
1429
|
var _vm = this;
|
|
@@ -1450,10 +1460,10 @@ var __vue_render__$e = function () {
|
|
|
1450
1460
|
}) : _vm._e()], 1);
|
|
1451
1461
|
};
|
|
1452
1462
|
|
|
1453
|
-
var __vue_staticRenderFns__$
|
|
1463
|
+
var __vue_staticRenderFns__$g = [];
|
|
1454
1464
|
/* style */
|
|
1455
1465
|
|
|
1456
|
-
const __vue_inject_styles__$
|
|
1466
|
+
const __vue_inject_styles__$g = function (inject) {
|
|
1457
1467
|
if (!inject) return;
|
|
1458
1468
|
inject("data-v-bbf09f9e_0", {
|
|
1459
1469
|
source: ".ns-tile[data-v-bbf09f9e]{margin-bottom:2rem}.container[data-v-bbf09f9e]{display:flex;flex-direction:column;justify-content:center}.centered[data-v-bbf09f9e]{text-align:center}.large[data-v-bbf09f9e]{min-height:10rem}.tile-icon[data-v-bbf09f9e]{display:block;margin-left:auto;margin-right:auto;margin-bottom:1rem}.tile-footer-icon[data-v-bbf09f9e]{position:absolute;right:1rem;bottom:1rem;flex-shrink:0;width:1.25rem;height:1.25rem}.pad-bottom[data-v-bbf09f9e]{padding-bottom:4rem}",
|
|
@@ -1464,23 +1474,23 @@ const __vue_inject_styles__$e = function (inject) {
|
|
|
1464
1474
|
/* scoped */
|
|
1465
1475
|
|
|
1466
1476
|
|
|
1467
|
-
const __vue_scope_id__$
|
|
1477
|
+
const __vue_scope_id__$g = "data-v-bbf09f9e";
|
|
1468
1478
|
/* module identifier */
|
|
1469
1479
|
|
|
1470
|
-
const __vue_module_identifier__$
|
|
1480
|
+
const __vue_module_identifier__$g = undefined;
|
|
1471
1481
|
/* functional template */
|
|
1472
1482
|
|
|
1473
|
-
const __vue_is_functional_template__$
|
|
1483
|
+
const __vue_is_functional_template__$g = false;
|
|
1474
1484
|
/* style inject SSR */
|
|
1475
1485
|
|
|
1476
1486
|
/* style inject shadow dom */
|
|
1477
1487
|
|
|
1478
|
-
const __vue_component__$
|
|
1479
|
-
render: __vue_render__$
|
|
1480
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1481
|
-
}, __vue_inject_styles__$
|
|
1488
|
+
const __vue_component__$w = /*#__PURE__*/normalizeComponent({
|
|
1489
|
+
render: __vue_render__$g,
|
|
1490
|
+
staticRenderFns: __vue_staticRenderFns__$g
|
|
1491
|
+
}, __vue_inject_styles__$g, __vue_script__$a, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, createInjector, undefined, undefined);
|
|
1482
1492
|
|
|
1483
|
-
var __vue_component__$
|
|
1493
|
+
var __vue_component__$x = __vue_component__$w;
|
|
1484
1494
|
|
|
1485
1495
|
function toInteger(dirtyNumber) {
|
|
1486
1496
|
if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) {
|
|
@@ -6077,7 +6087,7 @@ var DateTimeService = {
|
|
|
6077
6087
|
};
|
|
6078
6088
|
|
|
6079
6089
|
//
|
|
6080
|
-
var script$
|
|
6090
|
+
var script$9 = {
|
|
6081
6091
|
name: "NsToastNotification",
|
|
6082
6092
|
extends: CvToastNotification,
|
|
6083
6093
|
components: {
|
|
@@ -6119,10 +6129,10 @@ var script$8 = {
|
|
|
6119
6129
|
};
|
|
6120
6130
|
|
|
6121
6131
|
/* script */
|
|
6122
|
-
const __vue_script__$
|
|
6132
|
+
const __vue_script__$9 = script$9;
|
|
6123
6133
|
/* template */
|
|
6124
6134
|
|
|
6125
|
-
var __vue_render__$
|
|
6135
|
+
var __vue_render__$f = function () {
|
|
6126
6136
|
var _obj;
|
|
6127
6137
|
|
|
6128
6138
|
var _vm = this;
|
|
@@ -6205,10 +6215,10 @@ var __vue_render__$d = function () {
|
|
|
6205
6215
|
})], 1) : _vm._e()], 1)]);
|
|
6206
6216
|
};
|
|
6207
6217
|
|
|
6208
|
-
var __vue_staticRenderFns__$
|
|
6218
|
+
var __vue_staticRenderFns__$f = [];
|
|
6209
6219
|
/* style */
|
|
6210
6220
|
|
|
6211
|
-
const __vue_inject_styles__$
|
|
6221
|
+
const __vue_inject_styles__$f = function (inject) {
|
|
6212
6222
|
if (!inject) return;
|
|
6213
6223
|
inject("data-v-79bd81d3_0", {
|
|
6214
6224
|
source: ".notification[data-v-79bd81d3]{margin-bottom:0;margin-right:0}.action[data-v-79bd81d3]{padding-top:0;margin-bottom:0}.bx--toast-notification .bx--inline-notification__action-button.bx--btn--ghost[data-v-79bd81d3]{margin-left:-16px}.notification-description-and-progress[data-v-79bd81d3]{margin-top:.75rem;margin-bottom:.75rem}.fix-margin-bottom[data-v-79bd81d3]{margin-bottom:0}.progress[data-v-79bd81d3]{margin-top:.75rem}.progress-bar-spacer[data-v-79bd81d3]{height:.5rem}.cv-notifiation.bx--toast-notification.notification[data-v-79bd81d3]{width:26vw;min-width:20rem;margin-top:0}.notification-drawer .cv-notifiation.bx--toast-notification.notification[data-v-79bd81d3]{margin-top:1rem}.notification-drawer .cv-notifiation.bx--toast-notification.notification[data-v-79bd81d3]{width:100%;cursor:pointer}.notification-read[data-v-79bd81d3]{border-color:#8d8d8d;color:#c6c6c6}.notification-read .bx--toast-notification__icon[data-v-79bd81d3]{fill:currentColor}.notification-read .bx--toast-notification__subtitle[data-v-79bd81d3]{color:#c6c6c6}.notification-read .bx--toast-notification__title[data-v-79bd81d3]{font-weight:400}.cv-notifiation .timestamp[data-v-79bd81d3]{margin-bottom:.75rem;line-height:1.29;color:#fff;text-decoration:underline}.cv-notifiation .timestamp button[data-v-79bd81d3]{color:#c6c6c6}.bx--tooltip__trigger[data-v-79bd81d3]:not(.bx--btn--icon-only){font-size:inherit}.cv-notifiation .timestamp .bx--tooltip__trigger[data-v-79bd81d3]::before{border-bottom-color:#161616}div.row[data-v-79bd81d3]:last-child{margin-bottom:1.5rem}.bx--toast-notification__details[data-v-79bd81d3]{flex-grow:1}",
|
|
@@ -6223,26 +6233,26 @@ const __vue_inject_styles__$d = function (inject) {
|
|
|
6223
6233
|
/* scoped */
|
|
6224
6234
|
|
|
6225
6235
|
|
|
6226
|
-
const __vue_scope_id__$
|
|
6236
|
+
const __vue_scope_id__$f = "data-v-79bd81d3";
|
|
6227
6237
|
/* module identifier */
|
|
6228
6238
|
|
|
6229
|
-
const __vue_module_identifier__$
|
|
6239
|
+
const __vue_module_identifier__$f = undefined;
|
|
6230
6240
|
/* functional template */
|
|
6231
6241
|
|
|
6232
|
-
const __vue_is_functional_template__$
|
|
6242
|
+
const __vue_is_functional_template__$f = false;
|
|
6233
6243
|
/* style inject SSR */
|
|
6234
6244
|
|
|
6235
6245
|
/* style inject shadow dom */
|
|
6236
6246
|
|
|
6237
|
-
const __vue_component__$
|
|
6238
|
-
render: __vue_render__$
|
|
6239
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6240
|
-
}, __vue_inject_styles__$
|
|
6247
|
+
const __vue_component__$u = /*#__PURE__*/normalizeComponent({
|
|
6248
|
+
render: __vue_render__$f,
|
|
6249
|
+
staticRenderFns: __vue_staticRenderFns__$f
|
|
6250
|
+
}, __vue_inject_styles__$f, __vue_script__$9, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
|
|
6241
6251
|
|
|
6242
|
-
var __vue_component__$
|
|
6252
|
+
var __vue_component__$v = __vue_component__$u;
|
|
6243
6253
|
|
|
6244
6254
|
//
|
|
6245
|
-
var script$
|
|
6255
|
+
var script$8 = {
|
|
6246
6256
|
name: "NsInfoCard",
|
|
6247
6257
|
//components added for storybook to work
|
|
6248
6258
|
components: {
|
|
@@ -6277,10 +6287,10 @@ var script$7 = {
|
|
|
6277
6287
|
};
|
|
6278
6288
|
|
|
6279
6289
|
/* script */
|
|
6280
|
-
const __vue_script__$
|
|
6290
|
+
const __vue_script__$8 = script$8;
|
|
6281
6291
|
/* template */
|
|
6282
6292
|
|
|
6283
|
-
var __vue_render__$
|
|
6293
|
+
var __vue_render__$e = function () {
|
|
6284
6294
|
var _vm = this;
|
|
6285
6295
|
|
|
6286
6296
|
var _h = _vm.$createElement;
|
|
@@ -6312,10 +6322,10 @@ var __vue_render__$c = function () {
|
|
|
6312
6322
|
}, [_vm._t("content")], 2)], 2);
|
|
6313
6323
|
};
|
|
6314
6324
|
|
|
6315
|
-
var __vue_staticRenderFns__$
|
|
6325
|
+
var __vue_staticRenderFns__$e = [];
|
|
6316
6326
|
/* style */
|
|
6317
6327
|
|
|
6318
|
-
const __vue_inject_styles__$
|
|
6328
|
+
const __vue_inject_styles__$e = function (inject) {
|
|
6319
6329
|
if (!inject) return;
|
|
6320
6330
|
inject("data-v-5f0f76db_0", {
|
|
6321
6331
|
source: ".info-card[data-v-5f0f76db]{display:flex;flex-direction:column;justify-content:center;min-height:7rem;position:relative}.row[data-v-5f0f76db]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.title[data-v-5f0f76db]{margin-left:.25rem;margin-right:.25rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.description[data-v-5f0f76db]{margin-left:.25rem;margin-right:.25rem}.slot[data-v-5f0f76db]{margin-top:.5rem}",
|
|
@@ -6326,26 +6336,26 @@ const __vue_inject_styles__$c = function (inject) {
|
|
|
6326
6336
|
/* scoped */
|
|
6327
6337
|
|
|
6328
6338
|
|
|
6329
|
-
const __vue_scope_id__$
|
|
6339
|
+
const __vue_scope_id__$e = "data-v-5f0f76db";
|
|
6330
6340
|
/* module identifier */
|
|
6331
6341
|
|
|
6332
|
-
const __vue_module_identifier__$
|
|
6342
|
+
const __vue_module_identifier__$e = undefined;
|
|
6333
6343
|
/* functional template */
|
|
6334
6344
|
|
|
6335
|
-
const __vue_is_functional_template__$
|
|
6345
|
+
const __vue_is_functional_template__$e = false;
|
|
6336
6346
|
/* style inject SSR */
|
|
6337
6347
|
|
|
6338
6348
|
/* style inject shadow dom */
|
|
6339
6349
|
|
|
6340
|
-
const __vue_component__$
|
|
6341
|
-
render: __vue_render__$
|
|
6342
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6343
|
-
}, __vue_inject_styles__$
|
|
6350
|
+
const __vue_component__$s = /*#__PURE__*/normalizeComponent({
|
|
6351
|
+
render: __vue_render__$e,
|
|
6352
|
+
staticRenderFns: __vue_staticRenderFns__$e
|
|
6353
|
+
}, __vue_inject_styles__$e, __vue_script__$8, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, createInjector, undefined, undefined);
|
|
6344
6354
|
|
|
6345
|
-
var __vue_component__$
|
|
6355
|
+
var __vue_component__$t = __vue_component__$s;
|
|
6346
6356
|
|
|
6347
6357
|
//
|
|
6348
|
-
var script$
|
|
6358
|
+
var script$7 = {
|
|
6349
6359
|
name: "NsStatusCard",
|
|
6350
6360
|
//components added for storybook to work
|
|
6351
6361
|
components: {
|
|
@@ -6392,10 +6402,10 @@ var script$6 = {
|
|
|
6392
6402
|
};
|
|
6393
6403
|
|
|
6394
6404
|
/* script */
|
|
6395
|
-
const __vue_script__$
|
|
6405
|
+
const __vue_script__$7 = script$7;
|
|
6396
6406
|
/* template */
|
|
6397
6407
|
|
|
6398
|
-
var __vue_render__$
|
|
6408
|
+
var __vue_render__$d = function () {
|
|
6399
6409
|
var _vm = this;
|
|
6400
6410
|
|
|
6401
6411
|
var _h = _vm.$createElement;
|
|
@@ -6464,10 +6474,10 @@ var __vue_render__$b = function () {
|
|
|
6464
6474
|
}, [_c('h4', [_vm._v(_vm._s(_vm.valueSuccess))])]) : _c('h4', [_vm._v(_vm._s(_vm.valueSuccess))])], 1) : _vm._e()])]);
|
|
6465
6475
|
};
|
|
6466
6476
|
|
|
6467
|
-
var __vue_staticRenderFns__$
|
|
6477
|
+
var __vue_staticRenderFns__$d = [];
|
|
6468
6478
|
/* style */
|
|
6469
6479
|
|
|
6470
|
-
const __vue_inject_styles__$
|
|
6480
|
+
const __vue_inject_styles__$d = function (inject) {
|
|
6471
6481
|
if (!inject) return;
|
|
6472
6482
|
inject("data-v-e4a14fb4_0", {
|
|
6473
6483
|
source: ".status-card[data-v-e4a14fb4]{display:flex;flex-direction:column;justify-content:center}.row[data-v-e4a14fb4]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.value[data-v-e4a14fb4]{margin-left:.25rem;margin-right:.25rem}.label[data-v-e4a14fb4]{margin-left:.25rem;margin-right:.25rem}.success-icon[data-v-e4a14fb4]{margin-right:.25rem}.error-icon[data-v-e4a14fb4]{margin-right:.25rem}.warning-icon[data-v-e4a14fb4]{margin-right:.25rem}.stats[data-v-e4a14fb4]{display:flex;align-items:center;margin-left:.5rem;margin-right:.5rem}",
|
|
@@ -6478,26 +6488,26 @@ const __vue_inject_styles__$b = function (inject) {
|
|
|
6478
6488
|
/* scoped */
|
|
6479
6489
|
|
|
6480
6490
|
|
|
6481
|
-
const __vue_scope_id__$
|
|
6491
|
+
const __vue_scope_id__$d = "data-v-e4a14fb4";
|
|
6482
6492
|
/* module identifier */
|
|
6483
6493
|
|
|
6484
|
-
const __vue_module_identifier__$
|
|
6494
|
+
const __vue_module_identifier__$d = undefined;
|
|
6485
6495
|
/* functional template */
|
|
6486
6496
|
|
|
6487
|
-
const __vue_is_functional_template__$
|
|
6497
|
+
const __vue_is_functional_template__$d = false;
|
|
6488
6498
|
/* style inject SSR */
|
|
6489
6499
|
|
|
6490
6500
|
/* style inject shadow dom */
|
|
6491
6501
|
|
|
6492
|
-
const __vue_component__$
|
|
6493
|
-
render: __vue_render__$
|
|
6494
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6495
|
-
}, __vue_inject_styles__$
|
|
6502
|
+
const __vue_component__$q = /*#__PURE__*/normalizeComponent({
|
|
6503
|
+
render: __vue_render__$d,
|
|
6504
|
+
staticRenderFns: __vue_staticRenderFns__$d
|
|
6505
|
+
}, __vue_inject_styles__$d, __vue_script__$7, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, createInjector, undefined, undefined);
|
|
6496
6506
|
|
|
6497
|
-
var __vue_component__$
|
|
6507
|
+
var __vue_component__$r = __vue_component__$q;
|
|
6498
6508
|
|
|
6499
6509
|
//
|
|
6500
|
-
var script$
|
|
6510
|
+
var script$6 = {
|
|
6501
6511
|
name: "NsSystemdServiceCard",
|
|
6502
6512
|
//components added for storybook to work
|
|
6503
6513
|
components: {
|
|
@@ -6551,10 +6561,10 @@ var script$5 = {
|
|
|
6551
6561
|
};
|
|
6552
6562
|
|
|
6553
6563
|
/* script */
|
|
6554
|
-
const __vue_script__$
|
|
6564
|
+
const __vue_script__$6 = script$6;
|
|
6555
6565
|
/* template */
|
|
6556
6566
|
|
|
6557
|
-
var __vue_render__$
|
|
6567
|
+
var __vue_render__$c = function () {
|
|
6558
6568
|
var _vm = this;
|
|
6559
6569
|
|
|
6560
6570
|
var _h = _vm.$createElement;
|
|
@@ -6609,10 +6619,10 @@ var __vue_render__$a = function () {
|
|
|
6609
6619
|
})], 1)])]);
|
|
6610
6620
|
};
|
|
6611
6621
|
|
|
6612
|
-
var __vue_staticRenderFns__$
|
|
6622
|
+
var __vue_staticRenderFns__$c = [];
|
|
6613
6623
|
/* style */
|
|
6614
6624
|
|
|
6615
|
-
const __vue_inject_styles__$
|
|
6625
|
+
const __vue_inject_styles__$c = function (inject) {
|
|
6616
6626
|
if (!inject) return;
|
|
6617
6627
|
inject("data-v-e13a5ce6_0", {
|
|
6618
6628
|
source: ".service-card[data-v-e13a5ce6]{display:flex;flex-direction:column;justify-content:center}.row[data-v-e13a5ce6]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.service-name[data-v-e13a5ce6]{margin-left:.25rem;margin-right:.25rem}.success-icon[data-v-e13a5ce6]{margin-right:.25rem}.error-icon[data-v-e13a5ce6]{margin-right:.25rem}.warning-icon[data-v-e13a5ce6]{margin-right:.25rem}.stats[data-v-e13a5ce6]{display:flex;align-items:center;margin-left:.5rem;margin-right:.5rem}",
|
|
@@ -6623,23 +6633,23 @@ const __vue_inject_styles__$a = function (inject) {
|
|
|
6623
6633
|
/* scoped */
|
|
6624
6634
|
|
|
6625
6635
|
|
|
6626
|
-
const __vue_scope_id__$
|
|
6636
|
+
const __vue_scope_id__$c = "data-v-e13a5ce6";
|
|
6627
6637
|
/* module identifier */
|
|
6628
6638
|
|
|
6629
|
-
const __vue_module_identifier__$
|
|
6639
|
+
const __vue_module_identifier__$c = undefined;
|
|
6630
6640
|
/* functional template */
|
|
6631
6641
|
|
|
6632
|
-
const __vue_is_functional_template__$
|
|
6642
|
+
const __vue_is_functional_template__$c = false;
|
|
6633
6643
|
/* style inject SSR */
|
|
6634
6644
|
|
|
6635
6645
|
/* style inject shadow dom */
|
|
6636
6646
|
|
|
6637
|
-
const __vue_component__$
|
|
6638
|
-
render: __vue_render__$
|
|
6639
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6640
|
-
}, __vue_inject_styles__$
|
|
6647
|
+
const __vue_component__$o = /*#__PURE__*/normalizeComponent({
|
|
6648
|
+
render: __vue_render__$c,
|
|
6649
|
+
staticRenderFns: __vue_staticRenderFns__$c
|
|
6650
|
+
}, __vue_inject_styles__$c, __vue_script__$6, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
|
|
6641
6651
|
|
|
6642
|
-
var __vue_component__$
|
|
6652
|
+
var __vue_component__$p = __vue_component__$o;
|
|
6643
6653
|
|
|
6644
6654
|
var UtilService = {
|
|
6645
6655
|
name: "UtilService",
|
|
@@ -6801,7 +6811,7 @@ var UtilService = {
|
|
|
6801
6811
|
};
|
|
6802
6812
|
|
|
6803
6813
|
//
|
|
6804
|
-
var script$
|
|
6814
|
+
var script$5 = {
|
|
6805
6815
|
name: "NsPasswordInput",
|
|
6806
6816
|
components: CvTextInput,
|
|
6807
6817
|
mixins: [UtilService],
|
|
@@ -6957,10 +6967,10 @@ var script$4 = {
|
|
|
6957
6967
|
};
|
|
6958
6968
|
|
|
6959
6969
|
/* script */
|
|
6960
|
-
const __vue_script__$
|
|
6970
|
+
const __vue_script__$5 = script$5;
|
|
6961
6971
|
/* template */
|
|
6962
6972
|
|
|
6963
|
-
var __vue_render__$
|
|
6973
|
+
var __vue_render__$b = function () {
|
|
6964
6974
|
var _vm = this;
|
|
6965
6975
|
|
|
6966
6976
|
var _h = _vm.$createElement;
|
|
@@ -7049,10 +7059,10 @@ var __vue_render__$9 = function () {
|
|
|
7049
7059
|
}, [_vm._v(_vm._s(_vm.equalLabel))])])], 1)]);
|
|
7050
7060
|
};
|
|
7051
7061
|
|
|
7052
|
-
var __vue_staticRenderFns__$
|
|
7062
|
+
var __vue_staticRenderFns__$b = [];
|
|
7053
7063
|
/* style */
|
|
7054
7064
|
|
|
7055
|
-
const __vue_inject_styles__$
|
|
7065
|
+
const __vue_inject_styles__$b = function (inject) {
|
|
7056
7066
|
if (!inject) return;
|
|
7057
7067
|
inject("data-v-1598af82_0", {
|
|
7058
7068
|
source: ".new-password-container[data-v-1598af82]{margin-bottom:1rem}.new-password[data-v-1598af82]{margin-bottom:.25rem}.confirm-password[data-v-1598af82]{margin-bottom:.25rem}.password-meter[data-v-1598af82]{display:flex}@media (min-width:672px){.password-meter[data-v-1598af82]{max-width:38rem}}.requirement[data-v-1598af82]{padding:.2rem;margin-left:.2rem;margin-right:.2rem;background-color:#f4f4f4;text-align:center;font-size:.75rem;line-height:1.34;letter-spacing:.32px}.requirement-light[data-v-1598af82]{background-color:#fff}.requirement[data-v-1598af82]:first-child{margin-left:0}.requirement-ok[data-v-1598af82]{color:#fff;background-color:#198038}",
|
|
@@ -7063,27 +7073,27 @@ const __vue_inject_styles__$9 = function (inject) {
|
|
|
7063
7073
|
/* scoped */
|
|
7064
7074
|
|
|
7065
7075
|
|
|
7066
|
-
const __vue_scope_id__$
|
|
7076
|
+
const __vue_scope_id__$b = "data-v-1598af82";
|
|
7067
7077
|
/* module identifier */
|
|
7068
7078
|
|
|
7069
|
-
const __vue_module_identifier__$
|
|
7079
|
+
const __vue_module_identifier__$b = undefined;
|
|
7070
7080
|
/* functional template */
|
|
7071
7081
|
|
|
7072
|
-
const __vue_is_functional_template__$
|
|
7082
|
+
const __vue_is_functional_template__$b = false;
|
|
7073
7083
|
/* style inject SSR */
|
|
7074
7084
|
|
|
7075
7085
|
/* style inject shadow dom */
|
|
7076
7086
|
|
|
7077
|
-
const __vue_component__$
|
|
7078
|
-
render: __vue_render__$
|
|
7079
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7080
|
-
}, __vue_inject_styles__$
|
|
7087
|
+
const __vue_component__$m = /*#__PURE__*/normalizeComponent({
|
|
7088
|
+
render: __vue_render__$b,
|
|
7089
|
+
staticRenderFns: __vue_staticRenderFns__$b
|
|
7090
|
+
}, __vue_inject_styles__$b, __vue_script__$5, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, createInjector, undefined, undefined);
|
|
7081
7091
|
|
|
7082
|
-
var __vue_component__$
|
|
7092
|
+
var __vue_component__$n = __vue_component__$m;
|
|
7083
7093
|
|
|
7084
7094
|
//
|
|
7085
7095
|
|
|
7086
|
-
var script$
|
|
7096
|
+
var script$4 = {
|
|
7087
7097
|
name: "NsIconMenu",
|
|
7088
7098
|
extends: CvOverflowMenu,
|
|
7089
7099
|
props: {
|
|
@@ -7112,10 +7122,10 @@ var script$3 = {
|
|
|
7112
7122
|
};
|
|
7113
7123
|
|
|
7114
7124
|
/* script */
|
|
7115
|
-
const __vue_script__$
|
|
7125
|
+
const __vue_script__$4 = script$4;
|
|
7116
7126
|
/* template */
|
|
7117
7127
|
|
|
7118
|
-
var __vue_render__$
|
|
7128
|
+
var __vue_render__$a = function () {
|
|
7119
7129
|
var _obj, _obj$1;
|
|
7120
7130
|
|
|
7121
7131
|
var _vm = this;
|
|
@@ -7227,35 +7237,35 @@ var __vue_render__$8 = function () {
|
|
|
7227
7237
|
})])]);
|
|
7228
7238
|
};
|
|
7229
7239
|
|
|
7230
|
-
var __vue_staticRenderFns__$
|
|
7240
|
+
var __vue_staticRenderFns__$a = [];
|
|
7231
7241
|
/* style */
|
|
7232
7242
|
|
|
7233
|
-
const __vue_inject_styles__$
|
|
7243
|
+
const __vue_inject_styles__$a = undefined;
|
|
7234
7244
|
/* scoped */
|
|
7235
7245
|
|
|
7236
|
-
const __vue_scope_id__$
|
|
7246
|
+
const __vue_scope_id__$a = undefined;
|
|
7237
7247
|
/* module identifier */
|
|
7238
7248
|
|
|
7239
|
-
const __vue_module_identifier__$
|
|
7249
|
+
const __vue_module_identifier__$a = undefined;
|
|
7240
7250
|
/* functional template */
|
|
7241
7251
|
|
|
7242
|
-
const __vue_is_functional_template__$
|
|
7252
|
+
const __vue_is_functional_template__$a = false;
|
|
7243
7253
|
/* style inject */
|
|
7244
7254
|
|
|
7245
7255
|
/* style inject SSR */
|
|
7246
7256
|
|
|
7247
7257
|
/* style inject shadow dom */
|
|
7248
7258
|
|
|
7249
|
-
const __vue_component__$
|
|
7250
|
-
render: __vue_render__$
|
|
7251
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7252
|
-
}, __vue_inject_styles__$
|
|
7259
|
+
const __vue_component__$k = /*#__PURE__*/normalizeComponent({
|
|
7260
|
+
render: __vue_render__$a,
|
|
7261
|
+
staticRenderFns: __vue_staticRenderFns__$a
|
|
7262
|
+
}, __vue_inject_styles__$a, __vue_script__$4, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, undefined, undefined, undefined);
|
|
7253
7263
|
|
|
7254
|
-
var __vue_component__$
|
|
7264
|
+
var __vue_component__$l = __vue_component__$k;
|
|
7255
7265
|
|
|
7256
7266
|
//
|
|
7257
7267
|
Vue.use(chartsVue);
|
|
7258
|
-
var script$
|
|
7268
|
+
var script$3 = {
|
|
7259
7269
|
name: "NsMeterChart",
|
|
7260
7270
|
components: {
|
|
7261
7271
|
CcvMeterChart
|
|
@@ -7329,10 +7339,10 @@ var script$2 = {
|
|
|
7329
7339
|
};
|
|
7330
7340
|
|
|
7331
7341
|
/* script */
|
|
7332
|
-
const __vue_script__$
|
|
7342
|
+
const __vue_script__$3 = script$3;
|
|
7333
7343
|
/* template */
|
|
7334
7344
|
|
|
7335
|
-
var __vue_render__$
|
|
7345
|
+
var __vue_render__$9 = function () {
|
|
7336
7346
|
var _vm = this;
|
|
7337
7347
|
|
|
7338
7348
|
var _h = _vm.$createElement;
|
|
@@ -7347,35 +7357,35 @@ var __vue_render__$7 = function () {
|
|
|
7347
7357
|
});
|
|
7348
7358
|
};
|
|
7349
7359
|
|
|
7350
|
-
var __vue_staticRenderFns__$
|
|
7360
|
+
var __vue_staticRenderFns__$9 = [];
|
|
7351
7361
|
/* style */
|
|
7352
7362
|
|
|
7353
|
-
const __vue_inject_styles__$
|
|
7363
|
+
const __vue_inject_styles__$9 = undefined;
|
|
7354
7364
|
/* scoped */
|
|
7355
7365
|
|
|
7356
|
-
const __vue_scope_id__$
|
|
7366
|
+
const __vue_scope_id__$9 = undefined;
|
|
7357
7367
|
/* module identifier */
|
|
7358
7368
|
|
|
7359
|
-
const __vue_module_identifier__$
|
|
7369
|
+
const __vue_module_identifier__$9 = undefined;
|
|
7360
7370
|
/* functional template */
|
|
7361
7371
|
|
|
7362
|
-
const __vue_is_functional_template__$
|
|
7372
|
+
const __vue_is_functional_template__$9 = false;
|
|
7363
7373
|
/* style inject */
|
|
7364
7374
|
|
|
7365
7375
|
/* style inject SSR */
|
|
7366
7376
|
|
|
7367
7377
|
/* style inject shadow dom */
|
|
7368
7378
|
|
|
7369
|
-
const __vue_component__$
|
|
7370
|
-
render: __vue_render__$
|
|
7371
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7372
|
-
}, __vue_inject_styles__$
|
|
7379
|
+
const __vue_component__$i = /*#__PURE__*/normalizeComponent({
|
|
7380
|
+
render: __vue_render__$9,
|
|
7381
|
+
staticRenderFns: __vue_staticRenderFns__$9
|
|
7382
|
+
}, __vue_inject_styles__$9, __vue_script__$3, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, undefined, undefined, undefined);
|
|
7373
7383
|
|
|
7374
|
-
var __vue_component__$
|
|
7384
|
+
var __vue_component__$j = __vue_component__$i;
|
|
7375
7385
|
|
|
7376
7386
|
//
|
|
7377
7387
|
Vue.use(chartsVue);
|
|
7378
|
-
var script$
|
|
7388
|
+
var script$2 = {
|
|
7379
7389
|
name: "NsPieChart",
|
|
7380
7390
|
components: {},
|
|
7381
7391
|
props: {
|
|
@@ -7431,10 +7441,10 @@ var script$1 = {
|
|
|
7431
7441
|
};
|
|
7432
7442
|
|
|
7433
7443
|
/* script */
|
|
7434
|
-
const __vue_script__$
|
|
7444
|
+
const __vue_script__$2 = script$2;
|
|
7435
7445
|
/* template */
|
|
7436
7446
|
|
|
7437
|
-
var __vue_render__$
|
|
7447
|
+
var __vue_render__$8 = function () {
|
|
7438
7448
|
var _vm = this;
|
|
7439
7449
|
|
|
7440
7450
|
var _h = _vm.$createElement;
|
|
@@ -7449,40 +7459,40 @@ var __vue_render__$6 = function () {
|
|
|
7449
7459
|
});
|
|
7450
7460
|
};
|
|
7451
7461
|
|
|
7452
|
-
var __vue_staticRenderFns__$
|
|
7462
|
+
var __vue_staticRenderFns__$8 = [];
|
|
7453
7463
|
/* style */
|
|
7454
7464
|
|
|
7455
|
-
const __vue_inject_styles__$
|
|
7465
|
+
const __vue_inject_styles__$8 = undefined;
|
|
7456
7466
|
/* scoped */
|
|
7457
7467
|
|
|
7458
|
-
const __vue_scope_id__$
|
|
7468
|
+
const __vue_scope_id__$8 = undefined;
|
|
7459
7469
|
/* module identifier */
|
|
7460
7470
|
|
|
7461
|
-
const __vue_module_identifier__$
|
|
7471
|
+
const __vue_module_identifier__$8 = undefined;
|
|
7462
7472
|
/* functional template */
|
|
7463
7473
|
|
|
7464
|
-
const __vue_is_functional_template__$
|
|
7474
|
+
const __vue_is_functional_template__$8 = false;
|
|
7465
7475
|
/* style inject */
|
|
7466
7476
|
|
|
7467
7477
|
/* style inject SSR */
|
|
7468
7478
|
|
|
7469
7479
|
/* style inject shadow dom */
|
|
7470
7480
|
|
|
7471
|
-
const __vue_component__$
|
|
7472
|
-
render: __vue_render__$
|
|
7473
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7474
|
-
}, __vue_inject_styles__$
|
|
7481
|
+
const __vue_component__$g = /*#__PURE__*/normalizeComponent({
|
|
7482
|
+
render: __vue_render__$8,
|
|
7483
|
+
staticRenderFns: __vue_staticRenderFns__$8
|
|
7484
|
+
}, __vue_inject_styles__$8, __vue_script__$2, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, undefined, undefined, undefined);
|
|
7475
7485
|
|
|
7476
|
-
var __vue_component__$
|
|
7486
|
+
var __vue_component__$h = __vue_component__$g;
|
|
7477
7487
|
|
|
7478
7488
|
//
|
|
7479
|
-
var script = {
|
|
7489
|
+
var script$1 = {
|
|
7480
7490
|
name: "NsDangerDeleteModal",
|
|
7481
7491
|
//component added for storybook to work
|
|
7482
7492
|
components: {
|
|
7483
7493
|
NsInlineNotification
|
|
7484
7494
|
},
|
|
7485
|
-
mixins: [UtilService
|
|
7495
|
+
mixins: [UtilService],
|
|
7486
7496
|
props: {
|
|
7487
7497
|
isShown: {
|
|
7488
7498
|
type: Boolean,
|
|
@@ -7559,10 +7569,10 @@ var script = {
|
|
|
7559
7569
|
};
|
|
7560
7570
|
|
|
7561
7571
|
/* script */
|
|
7562
|
-
const __vue_script__ = script;
|
|
7572
|
+
const __vue_script__$1 = script$1;
|
|
7563
7573
|
/* template */
|
|
7564
7574
|
|
|
7565
|
-
var __vue_render__$
|
|
7575
|
+
var __vue_render__$7 = function () {
|
|
7566
7576
|
var _vm = this;
|
|
7567
7577
|
|
|
7568
7578
|
var _h = _vm.$createElement;
|
|
@@ -7591,11 +7601,11 @@ var __vue_render__$5 = function () {
|
|
|
7591
7601
|
"showCloseButton": false
|
|
7592
7602
|
}
|
|
7593
7603
|
}), _vm._v(" "), _c('div', {
|
|
7594
|
-
staticClass: "mg-bottom-md",
|
|
7595
7604
|
domProps: {
|
|
7596
7605
|
"innerHTML": _vm._s(_vm.description)
|
|
7597
7606
|
}
|
|
7598
|
-
}), _vm._v(" "), _c('div', {
|
|
7607
|
+
}), _vm._v(" "), _vm._t("explanation"), _vm._v(" "), _c('div', {
|
|
7608
|
+
staticClass: "type-to-confirm",
|
|
7599
7609
|
domProps: {
|
|
7600
7610
|
"innerHTML": _vm._s(_vm.typeToConfirmMessage)
|
|
7601
7611
|
}
|
|
@@ -7616,20 +7626,316 @@ var __vue_render__$5 = function () {
|
|
|
7616
7626
|
},
|
|
7617
7627
|
expression: "userInput"
|
|
7618
7628
|
}
|
|
7619
|
-
})], 1)],
|
|
7629
|
+
})], 1)], 2), _vm._v(" "), _c('template', {
|
|
7620
7630
|
slot: "secondary-button"
|
|
7621
7631
|
}, [_vm._v(_vm._s(_vm.cancelLabel))]), _vm._v(" "), _c('template', {
|
|
7622
7632
|
slot: "primary-button"
|
|
7623
7633
|
}, [_vm._v(_vm._s(_vm.deleteLabel))])], 2);
|
|
7624
7634
|
};
|
|
7625
7635
|
|
|
7636
|
+
var __vue_staticRenderFns__$7 = [];
|
|
7637
|
+
/* style */
|
|
7638
|
+
|
|
7639
|
+
const __vue_inject_styles__$7 = function (inject) {
|
|
7640
|
+
if (!inject) return;
|
|
7641
|
+
inject("data-v-97f667a6_0", {
|
|
7642
|
+
source: ".type-to-confirm[data-v-97f667a6]{margin-top:2rem}",
|
|
7643
|
+
map: undefined,
|
|
7644
|
+
media: undefined
|
|
7645
|
+
});
|
|
7646
|
+
};
|
|
7647
|
+
/* scoped */
|
|
7648
|
+
|
|
7649
|
+
|
|
7650
|
+
const __vue_scope_id__$7 = "data-v-97f667a6";
|
|
7651
|
+
/* module identifier */
|
|
7652
|
+
|
|
7653
|
+
const __vue_module_identifier__$7 = undefined;
|
|
7654
|
+
/* functional template */
|
|
7655
|
+
|
|
7656
|
+
const __vue_is_functional_template__$7 = false;
|
|
7657
|
+
/* style inject SSR */
|
|
7658
|
+
|
|
7659
|
+
/* style inject shadow dom */
|
|
7660
|
+
|
|
7661
|
+
const __vue_component__$e = /*#__PURE__*/normalizeComponent({
|
|
7662
|
+
render: __vue_render__$7,
|
|
7663
|
+
staticRenderFns: __vue_staticRenderFns__$7
|
|
7664
|
+
}, __vue_inject_styles__$7, __vue_script__$1, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, createInjector, undefined, undefined);
|
|
7665
|
+
|
|
7666
|
+
var __vue_component__$f = __vue_component__$e;
|
|
7667
|
+
|
|
7668
|
+
var IconService = {
|
|
7669
|
+
name: "IconService",
|
|
7670
|
+
|
|
7671
|
+
data() {
|
|
7672
|
+
return {
|
|
7673
|
+
Close20,
|
|
7674
|
+
ArrowRight20,
|
|
7675
|
+
ArrowRight32,
|
|
7676
|
+
Notification20,
|
|
7677
|
+
UserAvatar20,
|
|
7678
|
+
AppSwitcher20,
|
|
7679
|
+
Search20,
|
|
7680
|
+
RowExpand20,
|
|
7681
|
+
RowCollapse20,
|
|
7682
|
+
Reset20,
|
|
7683
|
+
Download20,
|
|
7684
|
+
Launch20,
|
|
7685
|
+
Upgrade20,
|
|
7686
|
+
Settings20,
|
|
7687
|
+
ChevronDown20,
|
|
7688
|
+
ChevronUp20,
|
|
7689
|
+
ChevronLeft20,
|
|
7690
|
+
ChevronRight20,
|
|
7691
|
+
Information20,
|
|
7692
|
+
Application20,
|
|
7693
|
+
// used for apps, module instances and software center
|
|
7694
|
+
Add20,
|
|
7695
|
+
Rocket20,
|
|
7696
|
+
Rocket32,
|
|
7697
|
+
Chip20,
|
|
7698
|
+
// used for cluster nodes
|
|
7699
|
+
Chip32,
|
|
7700
|
+
// used for cluster nodes
|
|
7701
|
+
Save20,
|
|
7702
|
+
Save32,
|
|
7703
|
+
Copy20,
|
|
7704
|
+
Application32,
|
|
7705
|
+
// used for apps, module instances and software center
|
|
7706
|
+
EdgeNode20,
|
|
7707
|
+
EdgeNode32,
|
|
7708
|
+
Cube32,
|
|
7709
|
+
// used for systemd services
|
|
7710
|
+
EdgeCluster32,
|
|
7711
|
+
// used for cluster
|
|
7712
|
+
EdgeCluster20,
|
|
7713
|
+
// used for cluster
|
|
7714
|
+
Connect32,
|
|
7715
|
+
// used for join cluster
|
|
7716
|
+
Connect20,
|
|
7717
|
+
// used for join cluster
|
|
7718
|
+
Edit20,
|
|
7719
|
+
Password20,
|
|
7720
|
+
Star20,
|
|
7721
|
+
Checkmark20,
|
|
7722
|
+
ZoomIn20,
|
|
7723
|
+
// used to open details
|
|
7724
|
+
Events32,
|
|
7725
|
+
// used for domains
|
|
7726
|
+
Link32,
|
|
7727
|
+
// used for URLs and external domain providers
|
|
7728
|
+
Link20,
|
|
7729
|
+
// used for URLs and external domain providers
|
|
7730
|
+
WarningAlt32,
|
|
7731
|
+
WarningAlt20,
|
|
7732
|
+
Tools20,
|
|
7733
|
+
Tools32,
|
|
7734
|
+
Network_220,
|
|
7735
|
+
Network_232,
|
|
7736
|
+
DataBase20,
|
|
7737
|
+
DataBase32,
|
|
7738
|
+
DataBackup20,
|
|
7739
|
+
DataBackup32,
|
|
7740
|
+
ArrowDown20,
|
|
7741
|
+
ArrowDown32,
|
|
7742
|
+
Time20,
|
|
7743
|
+
Time32,
|
|
7744
|
+
Hourglass20,
|
|
7745
|
+
Hourglass32
|
|
7746
|
+
};
|
|
7747
|
+
}
|
|
7748
|
+
|
|
7749
|
+
};
|
|
7750
|
+
|
|
7751
|
+
//
|
|
7752
|
+
|
|
7753
|
+
var script = {
|
|
7754
|
+
name: "NsDropdownAction",
|
|
7755
|
+
extends: CvOverflowMenu,
|
|
7756
|
+
components: {
|
|
7757
|
+
NsSvg
|
|
7758
|
+
},
|
|
7759
|
+
mixins: [IconService],
|
|
7760
|
+
props: {
|
|
7761
|
+
kind: {
|
|
7762
|
+
type: String,
|
|
7763
|
+
default: "secondary",
|
|
7764
|
+
validator: val => ["default", "primary", "secondary", "tertiary", "ghost", "danger", "danger--ghost", "danger--tertiary"].includes(val)
|
|
7765
|
+
},
|
|
7766
|
+
up: Boolean,
|
|
7767
|
+
offset: {
|
|
7768
|
+
type: Object,
|
|
7769
|
+
|
|
7770
|
+
validator(value) {
|
|
7771
|
+
return value && value.left !== undefined && value.top !== undefined;
|
|
7772
|
+
}
|
|
7773
|
+
|
|
7774
|
+
}
|
|
7775
|
+
},
|
|
7776
|
+
computed: {
|
|
7777
|
+
lowerCaseKind() {
|
|
7778
|
+
return this.kind.toLowerCase();
|
|
7779
|
+
}
|
|
7780
|
+
|
|
7781
|
+
}
|
|
7782
|
+
};
|
|
7783
|
+
|
|
7784
|
+
/* script */
|
|
7785
|
+
const __vue_script__ = script;
|
|
7786
|
+
/* template */
|
|
7787
|
+
|
|
7788
|
+
var __vue_render__$6 = function () {
|
|
7789
|
+
var _obj, _obj$1;
|
|
7790
|
+
|
|
7791
|
+
var _vm = this;
|
|
7792
|
+
|
|
7793
|
+
var _h = _vm.$createElement;
|
|
7794
|
+
|
|
7795
|
+
var _c = _vm._self._c || _h;
|
|
7796
|
+
|
|
7797
|
+
return _c('div', {
|
|
7798
|
+
class: ["cv-overflow-menu"],
|
|
7799
|
+
attrs: {
|
|
7800
|
+
"data-overflow-menu": "",
|
|
7801
|
+
"id": _vm.uid
|
|
7802
|
+
}
|
|
7803
|
+
}, [_c('button', {
|
|
7804
|
+
ref: "trigger",
|
|
7805
|
+
class: ["bx--btn--" + _vm.lowerCaseKind, 'bx--btn', 'bx--btn--field', (_obj = {}, _obj[_vm.carbonPrefix + "--overflow-menu--open"] = _vm.open, _obj)],
|
|
7806
|
+
attrs: {
|
|
7807
|
+
"aria-haspopup": "",
|
|
7808
|
+
"type": "button",
|
|
7809
|
+
"aria-expanded": _vm.open ? 'true' : 'false',
|
|
7810
|
+
"aria-controls": _vm.uid + "-menu",
|
|
7811
|
+
"id": _vm.uid + "-trigger"
|
|
7812
|
+
},
|
|
7813
|
+
on: {
|
|
7814
|
+
"click": _vm.doToggle,
|
|
7815
|
+
"keydown": [function ($event) {
|
|
7816
|
+
if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "space", 32, $event.key, [" ", "Spacebar"])) {
|
|
7817
|
+
return null;
|
|
7818
|
+
}
|
|
7819
|
+
|
|
7820
|
+
$event.preventDefault();
|
|
7821
|
+
}, function ($event) {
|
|
7822
|
+
if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
|
|
7823
|
+
return null;
|
|
7824
|
+
}
|
|
7825
|
+
|
|
7826
|
+
$event.preventDefault();
|
|
7827
|
+
return _vm.doToggle.apply(null, arguments);
|
|
7828
|
+
}, function ($event) {
|
|
7829
|
+
if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
|
|
7830
|
+
return null;
|
|
7831
|
+
}
|
|
7832
|
+
|
|
7833
|
+
return _vm.onOverflowMenuTab.apply(null, arguments);
|
|
7834
|
+
}],
|
|
7835
|
+
"keyup": function ($event) {
|
|
7836
|
+
if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "space", 32, $event.key, [" ", "Spacebar"])) {
|
|
7837
|
+
return null;
|
|
7838
|
+
}
|
|
7839
|
+
|
|
7840
|
+
$event.preventDefault();
|
|
7841
|
+
return _vm.doToggle.apply(null, arguments);
|
|
7842
|
+
}
|
|
7843
|
+
}
|
|
7844
|
+
}, [_vm._t("trigger"), _vm._v(" "), _c('NsSvg', {
|
|
7845
|
+
class: _vm.carbonPrefix + "--btn__icon",
|
|
7846
|
+
attrs: {
|
|
7847
|
+
"svg": _vm.ChevronDown20
|
|
7848
|
+
}
|
|
7849
|
+
})], 2), _vm._v(" "), _c('div', {
|
|
7850
|
+
ref: "popup",
|
|
7851
|
+
class: [_vm.carbonPrefix + "--overflow-menu-options", (_obj$1 = {}, _obj$1[_vm.carbonPrefix + "--overflow-menu-options--open"] = _vm.open, _obj$1)],
|
|
7852
|
+
style: {
|
|
7853
|
+
left: _vm.left + 'px',
|
|
7854
|
+
top: _vm.top + 'px'
|
|
7855
|
+
},
|
|
7856
|
+
attrs: {
|
|
7857
|
+
"tabindex": "-1",
|
|
7858
|
+
"aria-labelledby": _vm.uid + "-trigger",
|
|
7859
|
+
"id": _vm.uid + "-menu"
|
|
7860
|
+
},
|
|
7861
|
+
on: {
|
|
7862
|
+
"focusout": _vm.checkFocusOut,
|
|
7863
|
+
"mousedown": function ($event) {
|
|
7864
|
+
$event.preventDefault();
|
|
7865
|
+
return _vm.preventFocusOut.apply(null, arguments);
|
|
7866
|
+
}
|
|
7867
|
+
}
|
|
7868
|
+
}, [_c('ul', {
|
|
7869
|
+
class: _vm.carbonPrefix + "--overflow-menu-options__content"
|
|
7870
|
+
}, [_vm._t("default")], 2), _vm._v(" "), _c('div', {
|
|
7871
|
+
ref: "afterContent",
|
|
7872
|
+
staticClass: "cv-overflow-menu__after-content",
|
|
7873
|
+
staticStyle: {
|
|
7874
|
+
"position": "absolute",
|
|
7875
|
+
"height": "1px",
|
|
7876
|
+
"width": "1px",
|
|
7877
|
+
"left": "-9999px"
|
|
7878
|
+
},
|
|
7879
|
+
attrs: {
|
|
7880
|
+
"tabindex": "0"
|
|
7881
|
+
},
|
|
7882
|
+
on: {
|
|
7883
|
+
"focus": _vm.focusAfterContent
|
|
7884
|
+
}
|
|
7885
|
+
})])]);
|
|
7886
|
+
};
|
|
7887
|
+
|
|
7888
|
+
var __vue_staticRenderFns__$6 = [];
|
|
7889
|
+
/* style */
|
|
7890
|
+
|
|
7891
|
+
const __vue_inject_styles__$6 = undefined;
|
|
7892
|
+
/* scoped */
|
|
7893
|
+
|
|
7894
|
+
const __vue_scope_id__$6 = "data-v-14fcac06";
|
|
7895
|
+
/* module identifier */
|
|
7896
|
+
|
|
7897
|
+
const __vue_module_identifier__$6 = undefined;
|
|
7898
|
+
/* functional template */
|
|
7899
|
+
|
|
7900
|
+
const __vue_is_functional_template__$6 = false;
|
|
7901
|
+
/* style inject */
|
|
7902
|
+
|
|
7903
|
+
/* style inject SSR */
|
|
7904
|
+
|
|
7905
|
+
/* style inject shadow dom */
|
|
7906
|
+
|
|
7907
|
+
const __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
7908
|
+
render: __vue_render__$6,
|
|
7909
|
+
staticRenderFns: __vue_staticRenderFns__$6
|
|
7910
|
+
}, __vue_inject_styles__$6, __vue_script__, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, undefined, undefined, undefined);
|
|
7911
|
+
|
|
7912
|
+
var __vue_component__$d = __vue_component__$c;
|
|
7913
|
+
|
|
7914
|
+
/* script */
|
|
7915
|
+
|
|
7916
|
+
/* template */
|
|
7917
|
+
var __vue_render__$5 = function () {
|
|
7918
|
+
var _vm = this;
|
|
7919
|
+
|
|
7920
|
+
var _h = _vm.$createElement;
|
|
7921
|
+
|
|
7922
|
+
var _c = _vm._self._c || _h;
|
|
7923
|
+
|
|
7924
|
+
return _c('path', {
|
|
7925
|
+
attrs: {
|
|
7926
|
+
"id": "gear_2_",
|
|
7927
|
+
"d": "M18.958,31.36h-5.915c-0.199,0-0.36-0.161-0.36-0.36v-3.633l-2.368-0.99l-2.576,2.575\n\tc-0.141,0.141-0.368,0.141-0.509,0L3.048,24.77c-0.141-0.141-0.141-0.369,0-0.51l2.568-2.568l-0.974-2.375H1\n\tc-0.199,0-0.36-0.161-0.36-0.36v-5.915c0-0.199,0.161-0.36,0.36-0.36h3.632l0.991-2.368L3.048,7.739\n\tc-0.141-0.141-0.141-0.368,0-0.509L7.23,3.048C7.298,2.98,7.389,2.942,7.485,2.942l0,0c0.096,0,0.187,0.038,0.254,0.105l2.568,2.569\n\tl2.375-0.975V1c0-0.199,0.161-0.36,0.36-0.36h5.915c0.199,0,0.36,0.161,0.36,0.36v3.632l2.367,0.991l2.575-2.575\n\tc0.141-0.141,0.369-0.141,0.51,0l4.183,4.182c0.067,0.067,0.105,0.159,0.105,0.254s-0.038,0.187-0.105,0.254l-2.569,2.568\n\tl0.975,2.375H31c0.199,0,0.36,0.161,0.36,0.36v5.915c0,0.199-0.161,0.36-0.36,0.36h-3.633l-0.99,2.368l2.576,2.575\n\tc0.067,0.067,0.105,0.159,0.105,0.255s-0.038,0.188-0.105,0.255l-4.183,4.182c-0.141,0.141-0.369,0.141-0.51,0l-2.568-2.568\n\tl-2.374,0.974V31C19.318,31.199,19.157,31.36,18.958,31.36z M13.403,30.64h5.195v-3.523c0-0.146,0.089-0.277,0.224-0.333\n\tl2.819-1.156c0.134-0.057,0.288-0.024,0.392,0.078l2.483,2.483l3.674-3.673l-2.492-2.491c-0.103-0.104-0.134-0.259-0.077-0.394\n\tl1.176-2.812c0.056-0.134,0.187-0.222,0.332-0.222h3.512v-5.194h-3.522c-0.146,0-0.277-0.088-0.333-0.223l-1.157-2.82\n\tc-0.055-0.134-0.024-0.289,0.078-0.391l2.484-2.483l-3.674-3.673l-2.491,2.491c-0.104,0.103-0.26,0.134-0.394,0.078L18.82,5.206\n\tc-0.134-0.056-0.222-0.187-0.222-0.332V1.36h-5.195v3.523c0,0.146-0.088,0.278-0.223,0.333l-2.82,1.157\n\tc-0.135,0.055-0.289,0.024-0.391-0.079L7.485,3.812L3.812,7.484l2.491,2.492c0.104,0.103,0.134,0.259,0.078,0.394l-1.177,2.812\n\tc-0.056,0.134-0.187,0.221-0.332,0.221H1.36v5.194h3.524c0.146,0,0.278,0.089,0.333,0.224l1.157,2.82\n\tc0.055,0.135,0.024,0.289-0.079,0.392l-2.483,2.483l3.673,3.673l2.492-2.491c0.103-0.104,0.26-0.133,0.393-0.077l2.812,1.176\n\tc0.134,0.056,0.221,0.187,0.221,0.332V30.64z M16,23.36c-4.058,0-7.36-3.302-7.36-7.36S11.942,8.64,16,8.64\n\tc4.059,0,7.36,3.302,7.36,7.36C23.36,20.059,20.059,23.36,16,23.36z M16,9.36c-3.661,0-6.64,2.979-6.64,6.64s2.979,6.64,6.64,6.64\n\ts6.64-2.979,6.64-6.64S19.661,9.36,16,9.36z"
|
|
7928
|
+
}
|
|
7929
|
+
});
|
|
7930
|
+
};
|
|
7931
|
+
|
|
7626
7932
|
var __vue_staticRenderFns__$5 = [];
|
|
7627
7933
|
/* style */
|
|
7628
7934
|
|
|
7629
7935
|
const __vue_inject_styles__$5 = undefined;
|
|
7630
7936
|
/* scoped */
|
|
7631
7937
|
|
|
7632
|
-
const __vue_scope_id__$5 =
|
|
7938
|
+
const __vue_scope_id__$5 = undefined;
|
|
7633
7939
|
/* module identifier */
|
|
7634
7940
|
|
|
7635
7941
|
const __vue_module_identifier__$5 = undefined;
|
|
@@ -7645,7 +7951,7 @@ const __vue_is_functional_template__$5 = false;
|
|
|
7645
7951
|
const __vue_component__$a = /*#__PURE__*/normalizeComponent({
|
|
7646
7952
|
render: __vue_render__$5,
|
|
7647
7953
|
staticRenderFns: __vue_staticRenderFns__$5
|
|
7648
|
-
}, __vue_inject_styles__$5,
|
|
7954
|
+
}, __vue_inject_styles__$5, {}, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, undefined, undefined, undefined);
|
|
7649
7955
|
|
|
7650
7956
|
var __vue_component__$b = __vue_component__$a;
|
|
7651
7957
|
|
|
@@ -7661,8 +7967,8 @@ var __vue_render__$4 = function () {
|
|
|
7661
7967
|
|
|
7662
7968
|
return _c('path', {
|
|
7663
7969
|
attrs: {
|
|
7664
|
-
"id": "
|
|
7665
|
-
"d": "
|
|
7970
|
+
"id": "love_1_",
|
|
7971
|
+
"d": "M16.032,29.247c-0.092,0-0.185-0.035-0.255-0.105L3.008,16.373c-1.507-1.507-2.337-3.506-2.337-5.629\n\t\tc0-2.139,0.83-4.147,2.337-5.655c1.506-1.506,3.508-2.335,5.639-2.337c0,0,0.001,0,0.002,0c2.132,0,4.136,0.83,5.643,2.337\n\t\tl1.74,1.74l1.74-1.74c1.507-1.507,3.511-2.337,5.642-2.337c0.003,0,0.005,0,0.008,0c2.128,0.002,4.129,0.832,5.635,2.337\n\t\tc1.507,1.508,2.337,3.511,2.337,5.642s-0.83,4.134-2.337,5.642L16.287,29.142C16.216,29.212,16.124,29.247,16.032,29.247z\n\t\t M8.649,3.473c0,0-0.001,0-0.002,0C6.709,3.474,4.888,4.229,3.518,5.599C2.147,6.97,1.392,8.797,1.392,10.744\n\t\tc0,1.931,0.755,3.749,2.126,5.119l0,0l12.514,12.514l12.514-12.514c1.371-1.371,2.126-3.193,2.126-5.132s-0.755-3.761-2.126-5.132\n\t\tc-1.37-1.369-3.19-2.124-5.125-2.126c-0.003,0-0.006,0-0.008,0c-1.938,0-3.761,0.754-5.132,2.126l-1.995,1.995\n\t\tc-0.141,0.141-0.369,0.141-0.51,0l-1.995-1.995C12.412,4.228,10.588,3.473,8.649,3.473z"
|
|
7666
7972
|
}
|
|
7667
7973
|
});
|
|
7668
7974
|
};
|
|
@@ -7705,8 +8011,8 @@ var __vue_render__$3 = function () {
|
|
|
7705
8011
|
|
|
7706
8012
|
return _c('path', {
|
|
7707
8013
|
attrs: {
|
|
7708
|
-
"id": "
|
|
7709
|
-
"d": "
|
|
8014
|
+
"id": "warning--01_1_",
|
|
8015
|
+
"d": "M31,29.36H1c-0.128,0-0.248-0.069-0.312-0.181c-0.064-0.111-0.064-0.248,0-0.359l15-26\n\tc0.129-0.224,0.495-0.224,0.624,0l15,26c0.064,0.111,0.064,0.248,0,0.359S31.129,29.36,31,29.36z M1.624,28.64h28.753L16,3.72\n\tL1.624,28.64z M16.36,20h-0.72V10h0.72V20z M16,23c-0.552,0-1,0.448-1,1s0.448,1,1,1s1-0.448,1-1S16.552,23,16,23z"
|
|
7710
8016
|
}
|
|
7711
8017
|
});
|
|
7712
8018
|
};
|
|
@@ -7749,8 +8055,8 @@ var __vue_render__$2 = function () {
|
|
|
7749
8055
|
|
|
7750
8056
|
return _c('path', {
|
|
7751
8057
|
attrs: {
|
|
7752
|
-
"id": "
|
|
7753
|
-
"d": "
|
|
8058
|
+
"id": "bulldozer_1_",
|
|
8059
|
+
"d": "M17,7.36c-1.618,0-1.86-1.009-1.86-1.61V4c0-0.142-0.028-1.382-1.01-1.382c-1.27,0-1.99-0.59-1.99-1.618\n\tc0-0.199,0.161-0.36,0.36-0.36S12.86,0.801,12.86,1c0,0.222,0,0.898,1.257,0.898c1.202,0,1.743,1.089,1.743,2.102v1.75\n\tc0,0.462,0.138,0.89,1.14,0.89c0.199,0,0.36,0.161,0.36,0.36S17.199,7.36,17,7.36z M14,6.604c-1.092,0-1.854-0.763-1.854-1.854V4\n\tc0-0.199,0.161-0.36,0.36-0.36s0.36,0.161,0.36,0.36v0.75c0,0.548,0.298,1.135,1.135,1.135c0.199,0,0.36,0.161,0.36,0.36\n\tS14.198,6.604,14,6.604z M17,4.362c-0.199,0-0.36-0.161-0.36-0.36V2.508c0-0.529-0.299-1.148-1.14-1.148\n\tc-0.199,0-0.36-0.161-0.36-0.36s0.161-0.36,0.36-0.36c1.095,0,1.86,0.768,1.86,1.868v1.495C17.36,4.201,17.199,4.362,17,4.362z\n\t M5,28c0,0.552-0.448,1-1,1s-1-0.448-1-1s0.448-1,1-1S5,27.448,5,28z M8.5,27c-0.552,0-1,0.448-1,1s0.448,1,1,1s1-0.448,1-1\n\tS9.052,27,8.5,27z M13,27c-0.552,0-1,0.448-1,1s0.448,1,1,1s1-0.448,1-1S13.552,27,13,27z M17.5,27c-0.552,0-1,0.448-1,1\n\ts0.448,1,1,1s1-0.448,1-1S18.052,27,17.5,27z M22,27c-0.552,0-1,0.448-1,1s0.448,1,1,1s1-0.448,1-1S22.552,27,22,27z M22,31.36H4\n\tc-1.853,0-3.36-1.508-3.36-3.36c0-1.731,1.316-3.161,3-3.341V23.36H1c-0.199,0-0.36-0.161-0.36-0.36V9c0-0.199,0.161-0.36,0.36-0.36\n\th12c0.199,0,0.36,0.161,0.36,0.36v2c0,0.199-0.161,0.36-0.36,0.36h-1.64v5.28h8.28V7.362L18,7.36V6.64l2,0.002\n\tc0.199,0,0.36,0.161,0.36,0.36v9.638c1.106,0.024,2,0.935,2,2.052v1.947h2.252c0.082-0.979,0.496-1.937,1.244-2.685\n\tc0.067-0.067,0.159-0.105,0.255-0.105h2.596c0.438-1.124,1.117-2.183,2.038-3.104l0.51,0.509c-1.568,1.568-2.432,3.608-2.432,5.746\n\ts0.863,4.178,2.432,5.745l-0.51,0.51c-0.921-0.922-1.601-1.981-2.038-3.104h-2.596c-0.096,0-0.188-0.038-0.255-0.105\n\tc-0.748-0.748-1.162-1.705-1.244-2.685H22.36v3.299c1.684,0.18,3,1.609,3,3.341C25.36,29.853,23.853,31.36,22,31.36z M4,25.36\n\tc-1.456,0-2.64,1.184-2.64,2.64S2.544,30.64,4,30.64h18c1.456,0,2.64-1.184,2.64-2.64s-1.184-2.64-2.64-2.64H4z M4.36,24.64h17.28\n\tv-5.947c0-0.734-0.594-1.332-1.324-1.332H1.36v5.279H4c0.199,0,0.36,0.161,0.36,0.36V24.64z M26.265,23.43h2.198\n\tc-0.464-1.588-0.464-3.271,0-4.859h-2.198c-0.613,0.664-0.95,1.521-0.95,2.43S25.651,22.766,26.265,23.43z M5.36,16.64h5.28v-5.28\n\tH5.36V16.64z M1.36,16.64h3.28v-5.28H1.36V16.64z M1.36,10.64h11.28V9.36H1.36V10.64z M11,19.36H9v-0.72h2V19.36z"
|
|
7754
8060
|
}
|
|
7755
8061
|
});
|
|
7756
8062
|
};
|
|
@@ -7793,8 +8099,8 @@ var __vue_render__$1 = function () {
|
|
|
7793
8099
|
|
|
7794
8100
|
return _c('path', {
|
|
7795
8101
|
attrs: {
|
|
7796
|
-
"id": "
|
|
7797
|
-
"d": "
|
|
8102
|
+
"id": "group",
|
|
8103
|
+
"d": "M24.36,31h-0.72v-7.5c0-3.552-2.414-6.604-5.872-7.424c-0.15-0.036-0.261-0.163-0.275-0.316\n\tc-0.015-0.154,0.071-0.3,0.212-0.363c1.517-0.675,2.496-2.181,2.496-3.836c0-2.316-1.884-4.201-4.2-4.201S11.8,9.244,11.8,11.561\n\tc0,1.655,0.98,3.162,2.496,3.836c0.141,0.063,0.227,0.209,0.212,0.363c-0.014,0.153-0.125,0.281-0.275,0.316\n\tc-3.458,0.82-5.872,3.872-5.872,7.424V31H7.64v-7.5c0-3.592,2.257-6.718,5.585-7.879c-1.326-0.907-2.146-2.421-2.146-4.061\n\tc0-1.964,1.157-3.664,2.826-4.452C14.101,6.617,14.2,6.097,14.2,5.561c0-2.316-1.884-4.201-4.2-4.201S5.799,3.244,5.799,5.561\n\tc0,1.656,0.98,3.162,2.496,3.836C8.437,9.46,8.521,9.606,8.507,9.76c-0.014,0.153-0.125,0.281-0.275,0.316\n\tC4.774,10.896,2.36,13.948,2.36,17.5V25H1.64v-7.5c0-3.592,2.257-6.718,5.585-7.879C5.899,8.714,5.08,7.2,5.08,5.561\n\tc0-2.713,2.207-4.92,4.92-4.92s4.92,2.207,4.92,4.92c0,0.422-0.052,0.836-0.157,1.237c0.791-0.205,1.683-0.205,2.473,0\n\tc-0.104-0.401-0.157-0.815-0.157-1.237c0-2.713,2.208-4.92,4.921-4.92s4.921,2.207,4.921,4.92c0,1.64-0.82,3.154-2.146,4.061\n\tc3.329,1.161,5.586,4.287,5.586,7.879V25H29.64v-7.5c0-3.552-2.414-6.604-5.872-7.424c-0.15-0.036-0.261-0.163-0.275-0.316\n\tc-0.015-0.154,0.071-0.3,0.212-0.363C25.221,8.722,26.2,7.216,26.2,5.561c0-2.316-1.884-4.201-4.2-4.201s-4.2,1.884-4.2,4.201\n\tc0,0.536,0.099,1.056,0.295,1.548c1.669,0.789,2.826,2.488,2.826,4.452c0,1.64-0.82,3.154-2.146,4.061\n\tc3.329,1.161,5.586,4.287,5.586,7.879L24.36,31L24.36,31z"
|
|
7798
8104
|
}
|
|
7799
8105
|
});
|
|
7800
8106
|
};
|
|
@@ -7837,8 +8143,8 @@ var __vue_render__ = function () {
|
|
|
7837
8143
|
|
|
7838
8144
|
return _c('path', {
|
|
7839
8145
|
attrs: {
|
|
7840
|
-
"id": "
|
|
7841
|
-
"d": "
|
|
8146
|
+
"id": "hard--drive",
|
|
8147
|
+
"d": "M26,6c-0.552,0-1-0.448-1-1s0.448-1,1-1s1,0.448,1,1S26.552,6,26,6z M27,16c0-0.552-0.448-1-1-1\n\ts-1,0.448-1,1s0.448,1,1,1S27,16.552,27,16z M27,27c0-0.552-0.448-1-1-1s-1,0.448-1,1s0.448,1,1,1S27,27.552,27,27z M31,31.36H1\n\tc-0.199,0-0.36-0.161-0.36-0.36v-8c0-0.199,0.161-0.36,0.36-0.36h30c0.199,0,0.36,0.161,0.36,0.36v8\n\tC31.36,31.199,31.199,31.36,31,31.36z M1.36,30.64h29.28v-7.28H1.36V30.64z M31,20.36H1c-0.199,0-0.36-0.161-0.36-0.36v-8\n\tc0-0.199,0.161-0.36,0.36-0.36h30c0.199,0,0.36,0.161,0.36,0.36v8C31.36,20.199,31.199,20.36,31,20.36z M1.36,19.64h29.28v-7.28\n\tH1.36V19.64z M31,9.36H1C0.801,9.36,0.64,9.199,0.64,9V1c0-0.199,0.161-0.36,0.36-0.36h30c0.199,0,0.36,0.161,0.36,0.36v8\n\tC31.36,9.199,31.199,9.36,31,9.36z M1.36,8.64h29.28V1.36H1.36V8.64z"
|
|
7842
8148
|
}
|
|
7843
8149
|
});
|
|
7844
8150
|
};
|
|
@@ -8189,78 +8495,6 @@ var task = {
|
|
|
8189
8495
|
}
|
|
8190
8496
|
};
|
|
8191
8497
|
|
|
8192
|
-
var icon = {
|
|
8193
|
-
name: "IconService",
|
|
8194
|
-
|
|
8195
|
-
data() {
|
|
8196
|
-
return {
|
|
8197
|
-
Close20,
|
|
8198
|
-
ArrowRight20,
|
|
8199
|
-
Notification20,
|
|
8200
|
-
UserAvatar20,
|
|
8201
|
-
AppSwitcher20,
|
|
8202
|
-
Search20,
|
|
8203
|
-
RowExpand20,
|
|
8204
|
-
RowCollapse20,
|
|
8205
|
-
Reset20,
|
|
8206
|
-
Download20,
|
|
8207
|
-
Launch20,
|
|
8208
|
-
Upgrade20,
|
|
8209
|
-
Settings20,
|
|
8210
|
-
ChevronDown20,
|
|
8211
|
-
ChevronUp20,
|
|
8212
|
-
ChevronLeft20,
|
|
8213
|
-
ChevronRight20,
|
|
8214
|
-
Information20,
|
|
8215
|
-
Application20,
|
|
8216
|
-
// used for apps, module instances and software center
|
|
8217
|
-
Add20,
|
|
8218
|
-
Rocket20,
|
|
8219
|
-
Rocket32,
|
|
8220
|
-
Chip20,
|
|
8221
|
-
// used for cluster nodes
|
|
8222
|
-
Chip32,
|
|
8223
|
-
// used for cluster nodes
|
|
8224
|
-
Save20,
|
|
8225
|
-
Copy20,
|
|
8226
|
-
Application32,
|
|
8227
|
-
// used for apps, module instances and software center
|
|
8228
|
-
EdgeNode20,
|
|
8229
|
-
EdgeNode32,
|
|
8230
|
-
Cube32,
|
|
8231
|
-
// used for systemd services
|
|
8232
|
-
EdgeCluster32,
|
|
8233
|
-
// used for cluster
|
|
8234
|
-
EdgeCluster20,
|
|
8235
|
-
// used for cluster
|
|
8236
|
-
Connect32,
|
|
8237
|
-
// used for join cluster
|
|
8238
|
-
Connect20,
|
|
8239
|
-
// used for join cluster
|
|
8240
|
-
Edit20,
|
|
8241
|
-
Password20,
|
|
8242
|
-
Star20,
|
|
8243
|
-
Checkmark20,
|
|
8244
|
-
ZoomIn20,
|
|
8245
|
-
// used to open details
|
|
8246
|
-
Events32,
|
|
8247
|
-
// used for domains
|
|
8248
|
-
Link32,
|
|
8249
|
-
// used for external domain providers
|
|
8250
|
-
WarningAlt32,
|
|
8251
|
-
WarningAlt20,
|
|
8252
|
-
Tools32,
|
|
8253
|
-
Network_220,
|
|
8254
|
-
Network_232,
|
|
8255
|
-
DataBase20,
|
|
8256
|
-
DataBase32,
|
|
8257
|
-
DataBackup20,
|
|
8258
|
-
DataBackup32
|
|
8259
|
-
};
|
|
8260
|
-
}
|
|
8261
|
-
|
|
8262
|
-
};
|
|
8263
|
-
|
|
8264
8498
|
var dataTable = {
|
|
8265
8499
|
name: "DataTableService",
|
|
8266
8500
|
mixins: [UtilService],
|
|
@@ -15471,36 +15705,38 @@ var filters = {
|
|
|
15471
15705
|
|
|
15472
15706
|
var components = /*#__PURE__*/Object.freeze({
|
|
15473
15707
|
__proto__: null,
|
|
15474
|
-
NsButton: __vue_component__$
|
|
15475
|
-
NsEmptyState: __vue_component__$
|
|
15708
|
+
NsButton: __vue_component__$K,
|
|
15709
|
+
NsEmptyState: __vue_component__$F,
|
|
15476
15710
|
NsPictogram: NsPictogram,
|
|
15477
|
-
NsCodeSnippet: __vue_component__$
|
|
15711
|
+
NsCodeSnippet: __vue_component__$D,
|
|
15478
15712
|
NsInlineNotification: NsInlineNotification,
|
|
15479
15713
|
NsProgressBar: NsProgressBar,
|
|
15480
15714
|
NsSvg: NsSvg,
|
|
15481
|
-
NsTile: __vue_component__$
|
|
15482
|
-
NsToastNotification: __vue_component__$
|
|
15483
|
-
NsInfoCard: __vue_component__$
|
|
15484
|
-
NsStatusCard: __vue_component__$
|
|
15485
|
-
NsSystemdServiceCard: __vue_component__$
|
|
15486
|
-
NsPasswordInput: __vue_component__$
|
|
15487
|
-
NsIconMenu: __vue_component__$
|
|
15488
|
-
NsMeterChart: __vue_component__$
|
|
15489
|
-
NsPieChart: __vue_component__$
|
|
15715
|
+
NsTile: __vue_component__$x,
|
|
15716
|
+
NsToastNotification: __vue_component__$v,
|
|
15717
|
+
NsInfoCard: __vue_component__$t,
|
|
15718
|
+
NsStatusCard: __vue_component__$r,
|
|
15719
|
+
NsSystemdServiceCard: __vue_component__$p,
|
|
15720
|
+
NsPasswordInput: __vue_component__$n,
|
|
15721
|
+
NsIconMenu: __vue_component__$l,
|
|
15722
|
+
NsMeterChart: __vue_component__$j,
|
|
15723
|
+
NsPieChart: __vue_component__$h,
|
|
15490
15724
|
NsLottieAnimation: NsLottieAnimation,
|
|
15491
|
-
NsDangerDeleteModal: __vue_component__$
|
|
15725
|
+
NsDangerDeleteModal: __vue_component__$f,
|
|
15492
15726
|
NsCircleTimer: NsCircleTimer,
|
|
15727
|
+
NsDropdownAction: __vue_component__$d,
|
|
15493
15728
|
ExclamationMark: ExclamationMark,
|
|
15494
|
-
Gear: __vue_component__$
|
|
15495
|
-
Love: __vue_component__$
|
|
15496
|
-
Warning: __vue_component__$
|
|
15497
|
-
Bulldozer: __vue_component__$
|
|
15498
|
-
Group: __vue_component__$
|
|
15729
|
+
Gear: __vue_component__$b,
|
|
15730
|
+
Love: __vue_component__$9,
|
|
15731
|
+
Warning: __vue_component__$7,
|
|
15732
|
+
Bulldozer: __vue_component__$5,
|
|
15733
|
+
Group: __vue_component__$3,
|
|
15734
|
+
HardDrive: __vue_component__$1,
|
|
15499
15735
|
UtilService: UtilService,
|
|
15500
15736
|
QueryParamService: queryParam,
|
|
15501
15737
|
TaskService: task,
|
|
15502
15738
|
StorageService: StorageService,
|
|
15503
|
-
IconService:
|
|
15739
|
+
IconService: IconService,
|
|
15504
15740
|
DateTimeService: DateTimeService,
|
|
15505
15741
|
DataTableService: dataTable,
|
|
15506
15742
|
PageTitleService: pageTitle,
|
|
@@ -15516,4 +15752,4 @@ const install = function installNs8UiLib(Vue) {
|
|
|
15516
15752
|
});
|
|
15517
15753
|
}; // Create module definition for Vue.use()
|
|
15518
15754
|
|
|
15519
|
-
export { __vue_component__$
|
|
15755
|
+
export { __vue_component__$5 as Bulldozer, dataTable as DataTableService, DateTimeService, ExclamationMark, filters as Filters, __vue_component__$b as Gear, __vue_component__$3 as Group, __vue_component__$1 as HardDrive, IconService, lottie as LottieService, __vue_component__$9 as Love, __vue_component__$K as NsButton, NsCircleTimer, __vue_component__$D as NsCodeSnippet, __vue_component__$f as NsDangerDeleteModal, __vue_component__$d as NsDropdownAction, __vue_component__$F as NsEmptyState, __vue_component__$l as NsIconMenu, __vue_component__$t as NsInfoCard, NsInlineNotification, NsLottieAnimation, __vue_component__$j as NsMeterChart, __vue_component__$n as NsPasswordInput, NsPictogram, __vue_component__$h as NsPieChart, NsProgressBar, __vue_component__$r as NsStatusCard, NsSvg, __vue_component__$p as NsSystemdServiceCard, __vue_component__$x as NsTile, __vue_component__$v as NsToastNotification, pageTitle as PageTitleService, queryParam as QueryParamService, StorageService, task as TaskService, UtilService, __vue_component__$7 as Warning, install as default };
|