@nethserver/ns8-ui-lib 0.0.80 → 0.0.81
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 +1880 -1101
- package/dist/ns8-ui-lib.min.js +1 -1
- package/dist/ns8-ui-lib.ssr.js +1839 -1042
- package/package.json +1 -1
- package/src/lib-components/NsDataTable.vue +504 -0
- package/src/lib-components/NsPagination.vue +48 -0
package/dist/ns8-ui-lib.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CvButton, CvIconButton, CvInlineNotification, CvTile, CvToastNotification, CvLink, CvTooltip, CvTag, CvTextInput, CvOverflowMenu, CvModal } from '@carbon/vue';
|
|
1
|
+
import { CvButton, CvIconButton, CvInlineNotification, CvTile, CvToastNotification, CvLink, CvTooltip, CvTag, CvTextInput, CvOverflowMenu, CvModal, CvPagination, CvDataTable, CvDataTableHeading, CvDataTableRow, CvDataTableCell, CvCheckbox } 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';
|
|
@@ -98,9 +98,12 @@ import Catalog32 from '@carbon/icons-vue/es/catalog/32';
|
|
|
98
98
|
import Group20 from '@carbon/icons-vue/es/group/20';
|
|
99
99
|
import { WarningFilled16, WarningAltFilled16, View16, ViewOff16 } from '@carbon/icons-vue';
|
|
100
100
|
import CvSideNavDivider from '@carbon/vue/src/components/cv-ui-shell/cv-side-nav-divider.vue';
|
|
101
|
+
import Search16 from '@carbon/icons-vue/es/search/16';
|
|
102
|
+
import Close16 from '@carbon/icons-vue/es/close/16';
|
|
103
|
+
import ChevronRight16 from '@carbon/icons-vue/es/chevron--right/16';
|
|
101
104
|
|
|
102
105
|
//
|
|
103
|
-
var script$
|
|
106
|
+
var script$u = {
|
|
104
107
|
name: "NsButton",
|
|
105
108
|
extends: CvButton,
|
|
106
109
|
props: {
|
|
@@ -263,10 +266,10 @@ function addStyle(id, css) {
|
|
|
263
266
|
}
|
|
264
267
|
|
|
265
268
|
/* script */
|
|
266
|
-
const __vue_script__$
|
|
269
|
+
const __vue_script__$u = script$u;
|
|
267
270
|
/* template */
|
|
268
271
|
|
|
269
|
-
var __vue_render__$
|
|
272
|
+
var __vue_render__$z = function () {
|
|
270
273
|
var _vm = this;
|
|
271
274
|
|
|
272
275
|
var _h = _vm.$createElement;
|
|
@@ -289,10 +292,10 @@ var __vue_render__$y = function () {
|
|
|
289
292
|
}) : _vm._e()], 2);
|
|
290
293
|
};
|
|
291
294
|
|
|
292
|
-
var __vue_staticRenderFns__$
|
|
295
|
+
var __vue_staticRenderFns__$z = [];
|
|
293
296
|
/* style */
|
|
294
297
|
|
|
295
|
-
const __vue_inject_styles__$
|
|
298
|
+
const __vue_inject_styles__$C = function (inject) {
|
|
296
299
|
if (!inject) return;
|
|
297
300
|
inject("data-v-025b0f12_0", {
|
|
298
301
|
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)}}",
|
|
@@ -303,23 +306,23 @@ const __vue_inject_styles__$A = function (inject) {
|
|
|
303
306
|
/* scoped */
|
|
304
307
|
|
|
305
308
|
|
|
306
|
-
const __vue_scope_id__$
|
|
309
|
+
const __vue_scope_id__$C = "data-v-025b0f12";
|
|
307
310
|
/* module identifier */
|
|
308
311
|
|
|
309
|
-
const __vue_module_identifier__$
|
|
312
|
+
const __vue_module_identifier__$C = undefined;
|
|
310
313
|
/* functional template */
|
|
311
314
|
|
|
312
|
-
const __vue_is_functional_template__$
|
|
315
|
+
const __vue_is_functional_template__$C = false;
|
|
313
316
|
/* style inject SSR */
|
|
314
317
|
|
|
315
318
|
/* style inject shadow dom */
|
|
316
319
|
|
|
317
|
-
const __vue_component__
|
|
318
|
-
render: __vue_render__$
|
|
319
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
320
|
-
}, __vue_inject_styles__$
|
|
320
|
+
const __vue_component__$12 = /*#__PURE__*/normalizeComponent({
|
|
321
|
+
render: __vue_render__$z,
|
|
322
|
+
staticRenderFns: __vue_staticRenderFns__$z
|
|
323
|
+
}, __vue_inject_styles__$C, __vue_script__$u, __vue_scope_id__$C, __vue_is_functional_template__$C, __vue_module_identifier__$C, false, createInjector, undefined, undefined);
|
|
321
324
|
|
|
322
|
-
var __vue_component__$
|
|
325
|
+
var __vue_component__$13 = __vue_component__$12;
|
|
323
326
|
|
|
324
327
|
//
|
|
325
328
|
//
|
|
@@ -337,7 +340,7 @@ var __vue_component__$10 = __vue_component__$$;
|
|
|
337
340
|
//
|
|
338
341
|
//
|
|
339
342
|
//
|
|
340
|
-
var script$
|
|
343
|
+
var script$t = {
|
|
341
344
|
name: "NsPictogram",
|
|
342
345
|
props: {
|
|
343
346
|
title: {
|
|
@@ -360,10 +363,10 @@ var script$r = {
|
|
|
360
363
|
};
|
|
361
364
|
|
|
362
365
|
/* script */
|
|
363
|
-
const __vue_script__$
|
|
366
|
+
const __vue_script__$t = script$t;
|
|
364
367
|
/* template */
|
|
365
368
|
|
|
366
|
-
var __vue_render__$
|
|
369
|
+
var __vue_render__$y = function () {
|
|
367
370
|
var _vm = this;
|
|
368
371
|
|
|
369
372
|
var _h = _vm.$createElement;
|
|
@@ -391,34 +394,34 @@ var __vue_render__$x = function () {
|
|
|
391
394
|
}, [_vm._t("default")], 2)]);
|
|
392
395
|
};
|
|
393
396
|
|
|
394
|
-
var __vue_staticRenderFns__$
|
|
397
|
+
var __vue_staticRenderFns__$y = [];
|
|
395
398
|
/* style */
|
|
396
399
|
|
|
397
|
-
const __vue_inject_styles__$
|
|
400
|
+
const __vue_inject_styles__$B = undefined;
|
|
398
401
|
/* scoped */
|
|
399
402
|
|
|
400
|
-
const __vue_scope_id__$
|
|
403
|
+
const __vue_scope_id__$B = undefined;
|
|
401
404
|
/* module identifier */
|
|
402
405
|
|
|
403
|
-
const __vue_module_identifier__$
|
|
406
|
+
const __vue_module_identifier__$B = undefined;
|
|
404
407
|
/* functional template */
|
|
405
408
|
|
|
406
|
-
const __vue_is_functional_template__$
|
|
409
|
+
const __vue_is_functional_template__$B = false;
|
|
407
410
|
/* style inject */
|
|
408
411
|
|
|
409
412
|
/* style inject SSR */
|
|
410
413
|
|
|
411
414
|
/* style inject shadow dom */
|
|
412
415
|
|
|
413
|
-
const __vue_component__$
|
|
414
|
-
render: __vue_render__$
|
|
415
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
416
|
-
}, __vue_inject_styles__$
|
|
416
|
+
const __vue_component__$11 = /*#__PURE__*/normalizeComponent({
|
|
417
|
+
render: __vue_render__$y,
|
|
418
|
+
staticRenderFns: __vue_staticRenderFns__$y
|
|
419
|
+
}, __vue_inject_styles__$B, __vue_script__$t, __vue_scope_id__$B, __vue_is_functional_template__$B, __vue_module_identifier__$B, false, undefined, undefined, undefined);
|
|
417
420
|
|
|
418
|
-
var NsPictogram = __vue_component__$
|
|
421
|
+
var NsPictogram = __vue_component__$11;
|
|
419
422
|
|
|
420
423
|
//
|
|
421
|
-
var script$
|
|
424
|
+
var script$s = {
|
|
422
425
|
name: "NsLottieAnimation",
|
|
423
426
|
components: {
|
|
424
427
|
LottieAnimation
|
|
@@ -474,10 +477,10 @@ var script$q = {
|
|
|
474
477
|
};
|
|
475
478
|
|
|
476
479
|
/* script */
|
|
477
|
-
const __vue_script__$
|
|
480
|
+
const __vue_script__$s = script$s;
|
|
478
481
|
/* template */
|
|
479
482
|
|
|
480
|
-
var __vue_render__$
|
|
483
|
+
var __vue_render__$x = function () {
|
|
481
484
|
var _vm = this;
|
|
482
485
|
|
|
483
486
|
var _h = _vm.$createElement;
|
|
@@ -504,36 +507,36 @@ var __vue_render__$w = function () {
|
|
|
504
507
|
})], 1);
|
|
505
508
|
};
|
|
506
509
|
|
|
507
|
-
var __vue_staticRenderFns__$
|
|
510
|
+
var __vue_staticRenderFns__$x = [];
|
|
508
511
|
/* style */
|
|
509
512
|
|
|
510
|
-
const __vue_inject_styles__$
|
|
513
|
+
const __vue_inject_styles__$A = undefined;
|
|
511
514
|
/* scoped */
|
|
512
515
|
|
|
513
|
-
const __vue_scope_id__$
|
|
516
|
+
const __vue_scope_id__$A = "data-v-14e97a70";
|
|
514
517
|
/* module identifier */
|
|
515
518
|
|
|
516
|
-
const __vue_module_identifier__$
|
|
519
|
+
const __vue_module_identifier__$A = undefined;
|
|
517
520
|
/* functional template */
|
|
518
521
|
|
|
519
|
-
const __vue_is_functional_template__$
|
|
522
|
+
const __vue_is_functional_template__$A = false;
|
|
520
523
|
/* style inject */
|
|
521
524
|
|
|
522
525
|
/* style inject SSR */
|
|
523
526
|
|
|
524
527
|
/* style inject shadow dom */
|
|
525
528
|
|
|
526
|
-
const __vue_component__$
|
|
527
|
-
render: __vue_render__$
|
|
528
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
529
|
-
}, __vue_inject_styles__$
|
|
529
|
+
const __vue_component__$10 = /*#__PURE__*/normalizeComponent({
|
|
530
|
+
render: __vue_render__$x,
|
|
531
|
+
staticRenderFns: __vue_staticRenderFns__$x
|
|
532
|
+
}, __vue_inject_styles__$A, __vue_script__$s, __vue_scope_id__$A, __vue_is_functional_template__$A, __vue_module_identifier__$A, false, undefined, undefined, undefined);
|
|
530
533
|
|
|
531
|
-
var NsLottieAnimation = __vue_component__$
|
|
534
|
+
var NsLottieAnimation = __vue_component__$10;
|
|
532
535
|
|
|
533
536
|
/* script */
|
|
534
537
|
|
|
535
538
|
/* template */
|
|
536
|
-
var __vue_render__$
|
|
539
|
+
var __vue_render__$w = function () {
|
|
537
540
|
var _vm = this;
|
|
538
541
|
|
|
539
542
|
var _h = _vm.$createElement;
|
|
@@ -548,34 +551,34 @@ var __vue_render__$v = function () {
|
|
|
548
551
|
});
|
|
549
552
|
};
|
|
550
553
|
|
|
551
|
-
var __vue_staticRenderFns__$
|
|
554
|
+
var __vue_staticRenderFns__$w = [];
|
|
552
555
|
/* style */
|
|
553
556
|
|
|
554
|
-
const __vue_inject_styles__$
|
|
557
|
+
const __vue_inject_styles__$z = undefined;
|
|
555
558
|
/* scoped */
|
|
556
559
|
|
|
557
|
-
const __vue_scope_id__$
|
|
560
|
+
const __vue_scope_id__$z = undefined;
|
|
558
561
|
/* module identifier */
|
|
559
562
|
|
|
560
|
-
const __vue_module_identifier__$
|
|
563
|
+
const __vue_module_identifier__$z = undefined;
|
|
561
564
|
/* functional template */
|
|
562
565
|
|
|
563
|
-
const __vue_is_functional_template__$
|
|
566
|
+
const __vue_is_functional_template__$z = false;
|
|
564
567
|
/* style inject */
|
|
565
568
|
|
|
566
569
|
/* style inject SSR */
|
|
567
570
|
|
|
568
571
|
/* style inject shadow dom */
|
|
569
572
|
|
|
570
|
-
const __vue_component__
|
|
571
|
-
render: __vue_render__$
|
|
572
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
573
|
-
}, __vue_inject_styles__$
|
|
573
|
+
const __vue_component__$$ = /*#__PURE__*/normalizeComponent({
|
|
574
|
+
render: __vue_render__$w,
|
|
575
|
+
staticRenderFns: __vue_staticRenderFns__$w
|
|
576
|
+
}, __vue_inject_styles__$z, {}, __vue_scope_id__$z, __vue_is_functional_template__$z, __vue_module_identifier__$z, false, undefined, undefined, undefined);
|
|
574
577
|
|
|
575
|
-
var ExclamationMarkPictogram = __vue_component__
|
|
578
|
+
var ExclamationMarkPictogram = __vue_component__$$;
|
|
576
579
|
|
|
577
580
|
//
|
|
578
|
-
var script$
|
|
581
|
+
var script$r = {
|
|
579
582
|
name: "NsEmptyState",
|
|
580
583
|
components: {
|
|
581
584
|
NsPictogram,
|
|
@@ -607,10 +610,10 @@ var script$p = {
|
|
|
607
610
|
};
|
|
608
611
|
|
|
609
612
|
/* script */
|
|
610
|
-
const __vue_script__$
|
|
613
|
+
const __vue_script__$r = script$r;
|
|
611
614
|
/* template */
|
|
612
615
|
|
|
613
|
-
var __vue_render__$
|
|
616
|
+
var __vue_render__$v = function () {
|
|
614
617
|
var _vm = this;
|
|
615
618
|
|
|
616
619
|
var _h = _vm.$createElement;
|
|
@@ -640,10 +643,10 @@ var __vue_render__$u = function () {
|
|
|
640
643
|
}, [_vm._t("description")], 2)] : _vm._e()], 2);
|
|
641
644
|
};
|
|
642
645
|
|
|
643
|
-
var __vue_staticRenderFns__$
|
|
646
|
+
var __vue_staticRenderFns__$v = [];
|
|
644
647
|
/* style */
|
|
645
648
|
|
|
646
|
-
const __vue_inject_styles__$
|
|
649
|
+
const __vue_inject_styles__$y = function (inject) {
|
|
647
650
|
if (!inject) return;
|
|
648
651
|
inject("data-v-2d5d3a58_0", {
|
|
649
652
|
source: ".empty-state[data-v-2d5d3a58]{text-align:center;padding:2rem}.empty-state .image[data-v-2d5d3a58]{margin-bottom:1rem}.empty-state .description[data-v-2d5d3a58]{margin-top:1rem}.animation[data-v-2d5d3a58]{display:inline-block;width:64px;height:64px}",
|
|
@@ -654,26 +657,26 @@ const __vue_inject_styles__$w = function (inject) {
|
|
|
654
657
|
/* scoped */
|
|
655
658
|
|
|
656
659
|
|
|
657
|
-
const __vue_scope_id__$
|
|
660
|
+
const __vue_scope_id__$y = "data-v-2d5d3a58";
|
|
658
661
|
/* module identifier */
|
|
659
662
|
|
|
660
|
-
const __vue_module_identifier__$
|
|
663
|
+
const __vue_module_identifier__$y = undefined;
|
|
661
664
|
/* functional template */
|
|
662
665
|
|
|
663
|
-
const __vue_is_functional_template__$
|
|
666
|
+
const __vue_is_functional_template__$y = false;
|
|
664
667
|
/* style inject SSR */
|
|
665
668
|
|
|
666
669
|
/* style inject shadow dom */
|
|
667
670
|
|
|
668
|
-
const __vue_component__$
|
|
669
|
-
render: __vue_render__$
|
|
670
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
671
|
-
}, __vue_inject_styles__$
|
|
671
|
+
const __vue_component__$Z = /*#__PURE__*/normalizeComponent({
|
|
672
|
+
render: __vue_render__$v,
|
|
673
|
+
staticRenderFns: __vue_staticRenderFns__$v
|
|
674
|
+
}, __vue_inject_styles__$y, __vue_script__$r, __vue_scope_id__$y, __vue_is_functional_template__$y, __vue_module_identifier__$y, false, createInjector, undefined, undefined);
|
|
672
675
|
|
|
673
|
-
var __vue_component__$
|
|
676
|
+
var __vue_component__$_ = __vue_component__$Z;
|
|
674
677
|
|
|
675
678
|
//
|
|
676
|
-
var script$
|
|
679
|
+
var script$q = {
|
|
677
680
|
name: "NsCodeSnippet",
|
|
678
681
|
components: {
|
|
679
682
|
CvButton,
|
|
@@ -785,10 +788,10 @@ var script$o = {
|
|
|
785
788
|
};
|
|
786
789
|
|
|
787
790
|
/* script */
|
|
788
|
-
const __vue_script__$
|
|
791
|
+
const __vue_script__$q = script$q;
|
|
789
792
|
/* template */
|
|
790
793
|
|
|
791
|
-
var __vue_render__$
|
|
794
|
+
var __vue_render__$u = function () {
|
|
792
795
|
var _vm = this;
|
|
793
796
|
|
|
794
797
|
var _h = _vm.$createElement;
|
|
@@ -850,10 +853,10 @@ var __vue_render__$t = function () {
|
|
|
850
853
|
})], 1) : _vm._e()], 1);
|
|
851
854
|
};
|
|
852
855
|
|
|
853
|
-
var __vue_staticRenderFns__$
|
|
856
|
+
var __vue_staticRenderFns__$u = [];
|
|
854
857
|
/* style */
|
|
855
858
|
|
|
856
|
-
const __vue_inject_styles__$
|
|
859
|
+
const __vue_inject_styles__$x = function (inject) {
|
|
857
860
|
if (!inject) return;
|
|
858
861
|
inject("data-v-59cb538c_0", {
|
|
859
862
|
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}",
|
|
@@ -864,23 +867,23 @@ const __vue_inject_styles__$v = function (inject) {
|
|
|
864
867
|
/* scoped */
|
|
865
868
|
|
|
866
869
|
|
|
867
|
-
const __vue_scope_id__$
|
|
870
|
+
const __vue_scope_id__$x = "data-v-59cb538c";
|
|
868
871
|
/* module identifier */
|
|
869
872
|
|
|
870
|
-
const __vue_module_identifier__$
|
|
873
|
+
const __vue_module_identifier__$x = undefined;
|
|
871
874
|
/* functional template */
|
|
872
875
|
|
|
873
|
-
const __vue_is_functional_template__$
|
|
876
|
+
const __vue_is_functional_template__$x = false;
|
|
874
877
|
/* style inject SSR */
|
|
875
878
|
|
|
876
879
|
/* style inject shadow dom */
|
|
877
880
|
|
|
878
|
-
const __vue_component__$
|
|
879
|
-
render: __vue_render__$
|
|
880
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
881
|
-
}, __vue_inject_styles__$
|
|
881
|
+
const __vue_component__$X = /*#__PURE__*/normalizeComponent({
|
|
882
|
+
render: __vue_render__$u,
|
|
883
|
+
staticRenderFns: __vue_staticRenderFns__$u
|
|
884
|
+
}, __vue_inject_styles__$x, __vue_script__$q, __vue_scope_id__$x, __vue_is_functional_template__$x, __vue_module_identifier__$x, false, createInjector, undefined, undefined);
|
|
882
885
|
|
|
883
|
-
var __vue_component__$
|
|
886
|
+
var __vue_component__$Y = __vue_component__$X;
|
|
884
887
|
|
|
885
888
|
//
|
|
886
889
|
//
|
|
@@ -911,7 +914,7 @@ var __vue_component__$V = __vue_component__$U;
|
|
|
911
914
|
//
|
|
912
915
|
//
|
|
913
916
|
//
|
|
914
|
-
var script$
|
|
917
|
+
var script$p = {
|
|
915
918
|
name: "NsCircleTimer",
|
|
916
919
|
props: {
|
|
917
920
|
timeLimit: {
|
|
@@ -975,10 +978,10 @@ var script$n = {
|
|
|
975
978
|
};
|
|
976
979
|
|
|
977
980
|
/* script */
|
|
978
|
-
const __vue_script__$
|
|
981
|
+
const __vue_script__$p = script$p;
|
|
979
982
|
/* template */
|
|
980
983
|
|
|
981
|
-
var __vue_render__$
|
|
984
|
+
var __vue_render__$t = function () {
|
|
982
985
|
var _vm = this;
|
|
983
986
|
|
|
984
987
|
var _h = _vm.$createElement;
|
|
@@ -1014,10 +1017,10 @@ var __vue_render__$s = function () {
|
|
|
1014
1017
|
})])])]);
|
|
1015
1018
|
};
|
|
1016
1019
|
|
|
1017
|
-
var __vue_staticRenderFns__$
|
|
1020
|
+
var __vue_staticRenderFns__$t = [];
|
|
1018
1021
|
/* style */
|
|
1019
1022
|
|
|
1020
|
-
const __vue_inject_styles__$
|
|
1023
|
+
const __vue_inject_styles__$w = function (inject) {
|
|
1021
1024
|
if (!inject) return;
|
|
1022
1025
|
inject("data-v-79cb7082_0", {
|
|
1023
1026
|
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)}",
|
|
@@ -1028,26 +1031,26 @@ const __vue_inject_styles__$u = function (inject) {
|
|
|
1028
1031
|
/* scoped */
|
|
1029
1032
|
|
|
1030
1033
|
|
|
1031
|
-
const __vue_scope_id__$
|
|
1034
|
+
const __vue_scope_id__$w = "data-v-79cb7082";
|
|
1032
1035
|
/* module identifier */
|
|
1033
1036
|
|
|
1034
|
-
const __vue_module_identifier__$
|
|
1037
|
+
const __vue_module_identifier__$w = undefined;
|
|
1035
1038
|
/* functional template */
|
|
1036
1039
|
|
|
1037
|
-
const __vue_is_functional_template__$
|
|
1040
|
+
const __vue_is_functional_template__$w = false;
|
|
1038
1041
|
/* style inject SSR */
|
|
1039
1042
|
|
|
1040
1043
|
/* style inject shadow dom */
|
|
1041
1044
|
|
|
1042
|
-
const __vue_component__$
|
|
1043
|
-
render: __vue_render__$
|
|
1044
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1045
|
-
}, __vue_inject_styles__$
|
|
1045
|
+
const __vue_component__$W = /*#__PURE__*/normalizeComponent({
|
|
1046
|
+
render: __vue_render__$t,
|
|
1047
|
+
staticRenderFns: __vue_staticRenderFns__$t
|
|
1048
|
+
}, __vue_inject_styles__$w, __vue_script__$p, __vue_scope_id__$w, __vue_is_functional_template__$w, __vue_module_identifier__$w, false, createInjector, undefined, undefined);
|
|
1046
1049
|
|
|
1047
|
-
var NsCircleTimer = __vue_component__$
|
|
1050
|
+
var NsCircleTimer = __vue_component__$W;
|
|
1048
1051
|
|
|
1049
1052
|
//
|
|
1050
|
-
var script$
|
|
1053
|
+
var script$o = {
|
|
1051
1054
|
name: "NsInlineNotification",
|
|
1052
1055
|
extends: CvInlineNotification,
|
|
1053
1056
|
components: {
|
|
@@ -1084,10 +1087,10 @@ var script$m = {
|
|
|
1084
1087
|
};
|
|
1085
1088
|
|
|
1086
1089
|
/* script */
|
|
1087
|
-
const __vue_script__$
|
|
1090
|
+
const __vue_script__$o = script$o;
|
|
1088
1091
|
/* template */
|
|
1089
1092
|
|
|
1090
|
-
var __vue_render__$
|
|
1093
|
+
var __vue_render__$s = function () {
|
|
1091
1094
|
var _obj;
|
|
1092
1095
|
|
|
1093
1096
|
var _vm = this;
|
|
@@ -1158,10 +1161,10 @@ var __vue_render__$r = function () {
|
|
|
1158
1161
|
})], 1) : _vm._e()]);
|
|
1159
1162
|
};
|
|
1160
1163
|
|
|
1161
|
-
var __vue_staticRenderFns__$
|
|
1164
|
+
var __vue_staticRenderFns__$s = [];
|
|
1162
1165
|
/* style */
|
|
1163
1166
|
|
|
1164
|
-
const __vue_inject_styles__$
|
|
1167
|
+
const __vue_inject_styles__$v = function (inject) {
|
|
1165
1168
|
if (!inject) return;
|
|
1166
1169
|
inject("data-v-59312d66_0", {
|
|
1167
1170
|
source: ".title[data-v-59312d66]{margin-right:.75rem;margin-bottom:.2rem;font-size:.875rem!important;font-weight:600!important}.mg-right[data-v-59312d66]{margin-right:.75rem}.details[data-v-59312d66]{flex-grow:0}.action-button[data-v-59312d66]{margin-right:.5rem}.bx--inline-notification__close-button[data-v-59312d66]{position:absolute!important}.bx--inline-notification__text-wrapper p[data-v-59312d66]{padding-right:0!important}",
|
|
@@ -1172,23 +1175,23 @@ const __vue_inject_styles__$t = function (inject) {
|
|
|
1172
1175
|
/* scoped */
|
|
1173
1176
|
|
|
1174
1177
|
|
|
1175
|
-
const __vue_scope_id__$
|
|
1178
|
+
const __vue_scope_id__$v = "data-v-59312d66";
|
|
1176
1179
|
/* module identifier */
|
|
1177
1180
|
|
|
1178
|
-
const __vue_module_identifier__$
|
|
1181
|
+
const __vue_module_identifier__$v = undefined;
|
|
1179
1182
|
/* functional template */
|
|
1180
1183
|
|
|
1181
|
-
const __vue_is_functional_template__$
|
|
1184
|
+
const __vue_is_functional_template__$v = false;
|
|
1182
1185
|
/* style inject SSR */
|
|
1183
1186
|
|
|
1184
1187
|
/* style inject shadow dom */
|
|
1185
1188
|
|
|
1186
|
-
const __vue_component__$
|
|
1187
|
-
render: __vue_render__$
|
|
1188
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1189
|
-
}, __vue_inject_styles__$
|
|
1189
|
+
const __vue_component__$V = /*#__PURE__*/normalizeComponent({
|
|
1190
|
+
render: __vue_render__$s,
|
|
1191
|
+
staticRenderFns: __vue_staticRenderFns__$s
|
|
1192
|
+
}, __vue_inject_styles__$v, __vue_script__$o, __vue_scope_id__$v, __vue_is_functional_template__$v, __vue_module_identifier__$v, false, createInjector, undefined, undefined);
|
|
1190
1193
|
|
|
1191
|
-
var NsInlineNotification = __vue_component__$
|
|
1194
|
+
var NsInlineNotification = __vue_component__$V;
|
|
1192
1195
|
|
|
1193
1196
|
//
|
|
1194
1197
|
//
|
|
@@ -1207,7 +1210,7 @@ var NsInlineNotification = __vue_component__$S;
|
|
|
1207
1210
|
//
|
|
1208
1211
|
//
|
|
1209
1212
|
//
|
|
1210
|
-
var script$
|
|
1213
|
+
var script$n = {
|
|
1211
1214
|
name: "NsProgressBar",
|
|
1212
1215
|
props: {
|
|
1213
1216
|
value: {
|
|
@@ -1238,10 +1241,10 @@ var script$l = {
|
|
|
1238
1241
|
};
|
|
1239
1242
|
|
|
1240
1243
|
/* script */
|
|
1241
|
-
const __vue_script__$
|
|
1244
|
+
const __vue_script__$n = script$n;
|
|
1242
1245
|
/* template */
|
|
1243
1246
|
|
|
1244
|
-
var __vue_render__$
|
|
1247
|
+
var __vue_render__$r = function () {
|
|
1245
1248
|
var _vm = this;
|
|
1246
1249
|
|
|
1247
1250
|
var _h = _vm.$createElement;
|
|
@@ -1266,10 +1269,10 @@ var __vue_render__$q = function () {
|
|
|
1266
1269
|
})]], 2)]);
|
|
1267
1270
|
};
|
|
1268
1271
|
|
|
1269
|
-
var __vue_staticRenderFns__$
|
|
1272
|
+
var __vue_staticRenderFns__$r = [];
|
|
1270
1273
|
/* style */
|
|
1271
1274
|
|
|
1272
|
-
const __vue_inject_styles__$
|
|
1275
|
+
const __vue_inject_styles__$u = function (inject) {
|
|
1273
1276
|
if (!inject) return;
|
|
1274
1277
|
inject("data-v-57532057_0", {
|
|
1275
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%}}",
|
|
@@ -1280,25 +1283,25 @@ const __vue_inject_styles__$s = function (inject) {
|
|
|
1280
1283
|
/* scoped */
|
|
1281
1284
|
|
|
1282
1285
|
|
|
1283
|
-
const __vue_scope_id__$
|
|
1286
|
+
const __vue_scope_id__$u = "data-v-57532057";
|
|
1284
1287
|
/* module identifier */
|
|
1285
1288
|
|
|
1286
|
-
const __vue_module_identifier__$
|
|
1289
|
+
const __vue_module_identifier__$u = undefined;
|
|
1287
1290
|
/* functional template */
|
|
1288
1291
|
|
|
1289
|
-
const __vue_is_functional_template__$
|
|
1292
|
+
const __vue_is_functional_template__$u = false;
|
|
1290
1293
|
/* style inject SSR */
|
|
1291
1294
|
|
|
1292
1295
|
/* style inject shadow dom */
|
|
1293
1296
|
|
|
1294
|
-
const __vue_component__$
|
|
1295
|
-
render: __vue_render__$
|
|
1296
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1297
|
-
}, __vue_inject_styles__$
|
|
1297
|
+
const __vue_component__$U = /*#__PURE__*/normalizeComponent({
|
|
1298
|
+
render: __vue_render__$r,
|
|
1299
|
+
staticRenderFns: __vue_staticRenderFns__$r
|
|
1300
|
+
}, __vue_inject_styles__$u, __vue_script__$n, __vue_scope_id__$u, __vue_is_functional_template__$u, __vue_module_identifier__$u, false, createInjector, undefined, undefined);
|
|
1298
1301
|
|
|
1299
|
-
var NsProgressBar = __vue_component__$
|
|
1302
|
+
var NsProgressBar = __vue_component__$U;
|
|
1300
1303
|
|
|
1301
|
-
var script$
|
|
1304
|
+
var script$m = {
|
|
1302
1305
|
name: "NsSvg",
|
|
1303
1306
|
props: {
|
|
1304
1307
|
svg: {
|
|
@@ -1357,33 +1360,33 @@ var script$k = {
|
|
|
1357
1360
|
};
|
|
1358
1361
|
|
|
1359
1362
|
/* script */
|
|
1360
|
-
const __vue_script__$
|
|
1363
|
+
const __vue_script__$m = script$m;
|
|
1361
1364
|
/* template */
|
|
1362
1365
|
|
|
1363
1366
|
/* style */
|
|
1364
1367
|
|
|
1365
|
-
const __vue_inject_styles__$
|
|
1368
|
+
const __vue_inject_styles__$t = undefined;
|
|
1366
1369
|
/* scoped */
|
|
1367
1370
|
|
|
1368
|
-
const __vue_scope_id__$
|
|
1371
|
+
const __vue_scope_id__$t = undefined;
|
|
1369
1372
|
/* module identifier */
|
|
1370
1373
|
|
|
1371
|
-
const __vue_module_identifier__$
|
|
1374
|
+
const __vue_module_identifier__$t = undefined;
|
|
1372
1375
|
/* functional template */
|
|
1373
1376
|
|
|
1374
|
-
const __vue_is_functional_template__$
|
|
1377
|
+
const __vue_is_functional_template__$t = undefined;
|
|
1375
1378
|
/* style inject */
|
|
1376
1379
|
|
|
1377
1380
|
/* style inject SSR */
|
|
1378
1381
|
|
|
1379
1382
|
/* style inject shadow dom */
|
|
1380
1383
|
|
|
1381
|
-
const __vue_component__$
|
|
1384
|
+
const __vue_component__$T = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$t, __vue_script__$m, __vue_scope_id__$t, __vue_is_functional_template__$t, __vue_module_identifier__$t, false, undefined, undefined, undefined);
|
|
1382
1385
|
|
|
1383
|
-
var NsSvg = __vue_component__$
|
|
1386
|
+
var NsSvg = __vue_component__$T;
|
|
1384
1387
|
|
|
1385
1388
|
//
|
|
1386
|
-
var script$
|
|
1389
|
+
var script$l = {
|
|
1387
1390
|
name: "NsTile",
|
|
1388
1391
|
extends: CvTile,
|
|
1389
1392
|
inheritAttrs: false,
|
|
@@ -1457,10 +1460,10 @@ var script$j = {
|
|
|
1457
1460
|
};
|
|
1458
1461
|
|
|
1459
1462
|
/* script */
|
|
1460
|
-
const __vue_script__$
|
|
1463
|
+
const __vue_script__$l = script$l;
|
|
1461
1464
|
/* template */
|
|
1462
1465
|
|
|
1463
|
-
var __vue_render__$
|
|
1466
|
+
var __vue_render__$q = function () {
|
|
1464
1467
|
var _obj;
|
|
1465
1468
|
|
|
1466
1469
|
var _vm = this;
|
|
@@ -1499,10 +1502,10 @@ var __vue_render__$p = function () {
|
|
|
1499
1502
|
}) : _vm._e()], 1);
|
|
1500
1503
|
};
|
|
1501
1504
|
|
|
1502
|
-
var __vue_staticRenderFns__$
|
|
1505
|
+
var __vue_staticRenderFns__$q = [];
|
|
1503
1506
|
/* style */
|
|
1504
1507
|
|
|
1505
|
-
const __vue_inject_styles__$
|
|
1508
|
+
const __vue_inject_styles__$s = function (inject) {
|
|
1506
1509
|
if (!inject) return;
|
|
1507
1510
|
inject("data-v-443a91f0_0", {
|
|
1508
1511
|
source: ".ns-tile[data-v-443a91f0]{margin-bottom:2rem;position:relative}.container[data-v-443a91f0]{display:flex;flex-direction:column;justify-content:center}.centered[data-v-443a91f0]{text-align:center}.large[data-v-443a91f0]{min-height:10rem}.tile-icon[data-v-443a91f0]{display:block;margin-left:auto;margin-right:auto;margin-bottom:1rem}.tile-footer-icon[data-v-443a91f0]{position:absolute;right:1rem;bottom:1rem;flex-shrink:0;width:1.25rem;height:1.25rem}.pad-bottom[data-v-443a91f0]{padding-bottom:4rem}.disabled-tile[data-v-443a91f0]{color:#c6c6c6}",
|
|
@@ -1513,23 +1516,23 @@ const __vue_inject_styles__$q = function (inject) {
|
|
|
1513
1516
|
/* scoped */
|
|
1514
1517
|
|
|
1515
1518
|
|
|
1516
|
-
const __vue_scope_id__$
|
|
1519
|
+
const __vue_scope_id__$s = "data-v-443a91f0";
|
|
1517
1520
|
/* module identifier */
|
|
1518
1521
|
|
|
1519
|
-
const __vue_module_identifier__$
|
|
1522
|
+
const __vue_module_identifier__$s = undefined;
|
|
1520
1523
|
/* functional template */
|
|
1521
1524
|
|
|
1522
|
-
const __vue_is_functional_template__$
|
|
1525
|
+
const __vue_is_functional_template__$s = false;
|
|
1523
1526
|
/* style inject SSR */
|
|
1524
1527
|
|
|
1525
1528
|
/* style inject shadow dom */
|
|
1526
1529
|
|
|
1527
|
-
const __vue_component__$
|
|
1528
|
-
render: __vue_render__$
|
|
1529
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1530
|
-
}, __vue_inject_styles__$
|
|
1530
|
+
const __vue_component__$R = /*#__PURE__*/normalizeComponent({
|
|
1531
|
+
render: __vue_render__$q,
|
|
1532
|
+
staticRenderFns: __vue_staticRenderFns__$q
|
|
1533
|
+
}, __vue_inject_styles__$s, __vue_script__$l, __vue_scope_id__$s, __vue_is_functional_template__$s, __vue_module_identifier__$s, false, createInjector, undefined, undefined);
|
|
1531
1534
|
|
|
1532
|
-
var __vue_component__$
|
|
1535
|
+
var __vue_component__$S = __vue_component__$R;
|
|
1533
1536
|
|
|
1534
1537
|
function toInteger(dirtyNumber) {
|
|
1535
1538
|
if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) {
|
|
@@ -6126,7 +6129,7 @@ var DateTimeService = {
|
|
|
6126
6129
|
};
|
|
6127
6130
|
|
|
6128
6131
|
//
|
|
6129
|
-
var script$
|
|
6132
|
+
var script$k = {
|
|
6130
6133
|
name: "NsToastNotification",
|
|
6131
6134
|
extends: CvToastNotification,
|
|
6132
6135
|
components: {
|
|
@@ -6204,10 +6207,10 @@ var script$i = {
|
|
|
6204
6207
|
};
|
|
6205
6208
|
|
|
6206
6209
|
/* script */
|
|
6207
|
-
const __vue_script__$
|
|
6210
|
+
const __vue_script__$k = script$k;
|
|
6208
6211
|
/* template */
|
|
6209
6212
|
|
|
6210
|
-
var __vue_render__$
|
|
6213
|
+
var __vue_render__$p = function () {
|
|
6211
6214
|
var _obj;
|
|
6212
6215
|
|
|
6213
6216
|
var _vm = this;
|
|
@@ -6305,10 +6308,10 @@ var __vue_render__$o = function () {
|
|
|
6305
6308
|
})], 1) : _vm._e()], 1)]);
|
|
6306
6309
|
};
|
|
6307
6310
|
|
|
6308
|
-
var __vue_staticRenderFns__$
|
|
6311
|
+
var __vue_staticRenderFns__$p = [];
|
|
6309
6312
|
/* style */
|
|
6310
6313
|
|
|
6311
|
-
const __vue_inject_styles__$
|
|
6314
|
+
const __vue_inject_styles__$r = function (inject) {
|
|
6312
6315
|
if (!inject) return;
|
|
6313
6316
|
inject("data-v-6ff0b515_0", {
|
|
6314
6317
|
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}",
|
|
@@ -6323,26 +6326,26 @@ const __vue_inject_styles__$p = function (inject) {
|
|
|
6323
6326
|
/* scoped */
|
|
6324
6327
|
|
|
6325
6328
|
|
|
6326
|
-
const __vue_scope_id__$
|
|
6329
|
+
const __vue_scope_id__$r = "data-v-6ff0b515";
|
|
6327
6330
|
/* module identifier */
|
|
6328
6331
|
|
|
6329
|
-
const __vue_module_identifier__$
|
|
6332
|
+
const __vue_module_identifier__$r = undefined;
|
|
6330
6333
|
/* functional template */
|
|
6331
6334
|
|
|
6332
|
-
const __vue_is_functional_template__$
|
|
6335
|
+
const __vue_is_functional_template__$r = false;
|
|
6333
6336
|
/* style inject SSR */
|
|
6334
6337
|
|
|
6335
6338
|
/* style inject shadow dom */
|
|
6336
6339
|
|
|
6337
|
-
const __vue_component__$
|
|
6338
|
-
render: __vue_render__$
|
|
6339
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6340
|
-
}, __vue_inject_styles__$
|
|
6340
|
+
const __vue_component__$P = /*#__PURE__*/normalizeComponent({
|
|
6341
|
+
render: __vue_render__$p,
|
|
6342
|
+
staticRenderFns: __vue_staticRenderFns__$p
|
|
6343
|
+
}, __vue_inject_styles__$r, __vue_script__$k, __vue_scope_id__$r, __vue_is_functional_template__$r, __vue_module_identifier__$r, false, createInjector, undefined, undefined);
|
|
6341
6344
|
|
|
6342
|
-
var __vue_component__$
|
|
6345
|
+
var __vue_component__$Q = __vue_component__$P;
|
|
6343
6346
|
|
|
6344
6347
|
//
|
|
6345
|
-
var script$
|
|
6348
|
+
var script$j = {
|
|
6346
6349
|
name: "NsInfoCard",
|
|
6347
6350
|
components: {
|
|
6348
6351
|
NsSvg,
|
|
@@ -6393,10 +6396,10 @@ var script$h = {
|
|
|
6393
6396
|
};
|
|
6394
6397
|
|
|
6395
6398
|
/* script */
|
|
6396
|
-
const __vue_script__$
|
|
6399
|
+
const __vue_script__$j = script$j;
|
|
6397
6400
|
/* template */
|
|
6398
6401
|
|
|
6399
|
-
var __vue_render__$
|
|
6402
|
+
var __vue_render__$o = function () {
|
|
6400
6403
|
var _vm = this;
|
|
6401
6404
|
|
|
6402
6405
|
var _h = _vm.$createElement;
|
|
@@ -6453,10 +6456,10 @@ var __vue_render__$n = function () {
|
|
|
6453
6456
|
}, [_vm.hasContentSlot ? _vm._t("content") : _vm._e()], 2)], 2);
|
|
6454
6457
|
};
|
|
6455
6458
|
|
|
6456
|
-
var __vue_staticRenderFns__$
|
|
6459
|
+
var __vue_staticRenderFns__$o = [];
|
|
6457
6460
|
/* style */
|
|
6458
6461
|
|
|
6459
|
-
const __vue_inject_styles__$
|
|
6462
|
+
const __vue_inject_styles__$q = function (inject) {
|
|
6460
6463
|
if (!inject) return;
|
|
6461
6464
|
inject("data-v-aefc1c3e_0", {
|
|
6462
6465
|
source: ".info-card[data-v-aefc1c3e]{display:flex;flex-direction:column;justify-content:center;min-height:7rem;position:relative}.skeleton[data-v-aefc1c3e]{margin-top:.5rem;margin-left:auto;margin-right:auto}.row[data-v-aefc1c3e]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.title[data-v-aefc1c3e]{margin-left:.25rem;margin-right:.25rem;margin-bottom:.5rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.description[data-v-aefc1c3e]{margin-left:.25rem;margin-right:.25rem}.slot[data-v-aefc1c3e]{margin-top:.5rem}",
|
|
@@ -6467,26 +6470,26 @@ const __vue_inject_styles__$o = function (inject) {
|
|
|
6467
6470
|
/* scoped */
|
|
6468
6471
|
|
|
6469
6472
|
|
|
6470
|
-
const __vue_scope_id__$
|
|
6473
|
+
const __vue_scope_id__$q = "data-v-aefc1c3e";
|
|
6471
6474
|
/* module identifier */
|
|
6472
6475
|
|
|
6473
|
-
const __vue_module_identifier__$
|
|
6476
|
+
const __vue_module_identifier__$q = undefined;
|
|
6474
6477
|
/* functional template */
|
|
6475
6478
|
|
|
6476
|
-
const __vue_is_functional_template__$
|
|
6479
|
+
const __vue_is_functional_template__$q = false;
|
|
6477
6480
|
/* style inject SSR */
|
|
6478
6481
|
|
|
6479
6482
|
/* style inject shadow dom */
|
|
6480
6483
|
|
|
6481
|
-
const __vue_component__$
|
|
6482
|
-
render: __vue_render__$
|
|
6483
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6484
|
-
}, __vue_inject_styles__$
|
|
6484
|
+
const __vue_component__$N = /*#__PURE__*/normalizeComponent({
|
|
6485
|
+
render: __vue_render__$o,
|
|
6486
|
+
staticRenderFns: __vue_staticRenderFns__$o
|
|
6487
|
+
}, __vue_inject_styles__$q, __vue_script__$j, __vue_scope_id__$q, __vue_is_functional_template__$q, __vue_module_identifier__$q, false, createInjector, undefined, undefined);
|
|
6485
6488
|
|
|
6486
|
-
var __vue_component__$
|
|
6489
|
+
var __vue_component__$O = __vue_component__$N;
|
|
6487
6490
|
|
|
6488
6491
|
//
|
|
6489
|
-
var script$
|
|
6492
|
+
var script$i = {
|
|
6490
6493
|
name: "NsStatusCard",
|
|
6491
6494
|
//components added for storybook to work
|
|
6492
6495
|
components: {
|
|
@@ -6533,10 +6536,10 @@ var script$g = {
|
|
|
6533
6536
|
};
|
|
6534
6537
|
|
|
6535
6538
|
/* script */
|
|
6536
|
-
const __vue_script__$
|
|
6539
|
+
const __vue_script__$i = script$i;
|
|
6537
6540
|
/* template */
|
|
6538
6541
|
|
|
6539
|
-
var __vue_render__$
|
|
6542
|
+
var __vue_render__$n = function () {
|
|
6540
6543
|
var _vm = this;
|
|
6541
6544
|
|
|
6542
6545
|
var _h = _vm.$createElement;
|
|
@@ -6605,10 +6608,10 @@ var __vue_render__$m = function () {
|
|
|
6605
6608
|
}, [_c('h4', [_vm._v(_vm._s(_vm.valueSuccess))])]) : _c('h4', [_vm._v(_vm._s(_vm.valueSuccess))])], 1) : _vm._e()])]);
|
|
6606
6609
|
};
|
|
6607
6610
|
|
|
6608
|
-
var __vue_staticRenderFns__$
|
|
6611
|
+
var __vue_staticRenderFns__$n = [];
|
|
6609
6612
|
/* style */
|
|
6610
6613
|
|
|
6611
|
-
const __vue_inject_styles__$
|
|
6614
|
+
const __vue_inject_styles__$p = function (inject) {
|
|
6612
6615
|
if (!inject) return;
|
|
6613
6616
|
inject("data-v-496044f0_0", {
|
|
6614
6617
|
source: ".status-card[data-v-496044f0]{display:flex;flex-direction:column;justify-content:center}.row[data-v-496044f0]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.value[data-v-496044f0]{margin-left:.25rem;margin-right:.25rem}.label[data-v-496044f0]{margin-left:.25rem;margin-right:.25rem}.success-icon[data-v-496044f0]{margin-right:.25rem}.error-icon[data-v-496044f0]{margin-right:.25rem}.warning-icon[data-v-496044f0]{margin-right:.25rem}.stats[data-v-496044f0]{display:flex;align-items:center;margin-left:.5rem;margin-right:.5rem}",
|
|
@@ -6619,26 +6622,26 @@ const __vue_inject_styles__$n = function (inject) {
|
|
|
6619
6622
|
/* scoped */
|
|
6620
6623
|
|
|
6621
6624
|
|
|
6622
|
-
const __vue_scope_id__$
|
|
6625
|
+
const __vue_scope_id__$p = "data-v-496044f0";
|
|
6623
6626
|
/* module identifier */
|
|
6624
6627
|
|
|
6625
|
-
const __vue_module_identifier__$
|
|
6628
|
+
const __vue_module_identifier__$p = undefined;
|
|
6626
6629
|
/* functional template */
|
|
6627
6630
|
|
|
6628
|
-
const __vue_is_functional_template__$
|
|
6631
|
+
const __vue_is_functional_template__$p = false;
|
|
6629
6632
|
/* style inject SSR */
|
|
6630
6633
|
|
|
6631
6634
|
/* style inject shadow dom */
|
|
6632
6635
|
|
|
6633
|
-
const __vue_component__$
|
|
6634
|
-
render: __vue_render__$
|
|
6635
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6636
|
-
}, __vue_inject_styles__$
|
|
6636
|
+
const __vue_component__$L = /*#__PURE__*/normalizeComponent({
|
|
6637
|
+
render: __vue_render__$n,
|
|
6638
|
+
staticRenderFns: __vue_staticRenderFns__$n
|
|
6639
|
+
}, __vue_inject_styles__$p, __vue_script__$i, __vue_scope_id__$p, __vue_is_functional_template__$p, __vue_module_identifier__$p, false, createInjector, undefined, undefined);
|
|
6637
6640
|
|
|
6638
|
-
var __vue_component__$
|
|
6641
|
+
var __vue_component__$M = __vue_component__$L;
|
|
6639
6642
|
|
|
6640
6643
|
//
|
|
6641
|
-
var script$
|
|
6644
|
+
var script$h = {
|
|
6642
6645
|
name: "NsSystemdServiceCard",
|
|
6643
6646
|
//components added for storybook to work
|
|
6644
6647
|
components: {
|
|
@@ -6692,10 +6695,10 @@ var script$f = {
|
|
|
6692
6695
|
};
|
|
6693
6696
|
|
|
6694
6697
|
/* script */
|
|
6695
|
-
const __vue_script__$
|
|
6698
|
+
const __vue_script__$h = script$h;
|
|
6696
6699
|
/* template */
|
|
6697
6700
|
|
|
6698
|
-
var __vue_render__$
|
|
6701
|
+
var __vue_render__$m = function () {
|
|
6699
6702
|
var _vm = this;
|
|
6700
6703
|
|
|
6701
6704
|
var _h = _vm.$createElement;
|
|
@@ -6750,10 +6753,10 @@ var __vue_render__$l = function () {
|
|
|
6750
6753
|
})], 1)])]);
|
|
6751
6754
|
};
|
|
6752
6755
|
|
|
6753
|
-
var __vue_staticRenderFns__$
|
|
6756
|
+
var __vue_staticRenderFns__$m = [];
|
|
6754
6757
|
/* style */
|
|
6755
6758
|
|
|
6756
|
-
const __vue_inject_styles__$
|
|
6759
|
+
const __vue_inject_styles__$o = function (inject) {
|
|
6757
6760
|
if (!inject) return;
|
|
6758
6761
|
inject("data-v-bf751eca_0", {
|
|
6759
6762
|
source: ".service-card[data-v-bf751eca]{display:flex;flex-direction:column;justify-content:center}.row[data-v-bf751eca]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.service-name[data-v-bf751eca]{margin-left:.25rem;margin-right:.25rem;margin-bottom:.5rem}.success-icon[data-v-bf751eca]{margin-right:.25rem}.error-icon[data-v-bf751eca]{margin-right:.25rem}.warning-icon[data-v-bf751eca]{margin-right:.25rem}.stats[data-v-bf751eca]{display:flex;align-items:center;margin-left:.5rem;margin-right:.5rem}",
|
|
@@ -6764,23 +6767,23 @@ const __vue_inject_styles__$m = function (inject) {
|
|
|
6764
6767
|
/* scoped */
|
|
6765
6768
|
|
|
6766
6769
|
|
|
6767
|
-
const __vue_scope_id__$
|
|
6770
|
+
const __vue_scope_id__$o = "data-v-bf751eca";
|
|
6768
6771
|
/* module identifier */
|
|
6769
6772
|
|
|
6770
|
-
const __vue_module_identifier__$
|
|
6773
|
+
const __vue_module_identifier__$o = undefined;
|
|
6771
6774
|
/* functional template */
|
|
6772
6775
|
|
|
6773
|
-
const __vue_is_functional_template__$
|
|
6776
|
+
const __vue_is_functional_template__$o = false;
|
|
6774
6777
|
/* style inject SSR */
|
|
6775
6778
|
|
|
6776
6779
|
/* style inject shadow dom */
|
|
6777
6780
|
|
|
6778
|
-
const __vue_component__$
|
|
6779
|
-
render: __vue_render__$
|
|
6780
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6781
|
-
}, __vue_inject_styles__$
|
|
6782
|
-
|
|
6783
|
-
var __vue_component__$
|
|
6781
|
+
const __vue_component__$J = /*#__PURE__*/normalizeComponent({
|
|
6782
|
+
render: __vue_render__$m,
|
|
6783
|
+
staticRenderFns: __vue_staticRenderFns__$m
|
|
6784
|
+
}, __vue_inject_styles__$o, __vue_script__$h, __vue_scope_id__$o, __vue_is_functional_template__$o, __vue_module_identifier__$o, false, createInjector, undefined, undefined);
|
|
6785
|
+
|
|
6786
|
+
var __vue_component__$K = __vue_component__$J;
|
|
6784
6787
|
|
|
6785
6788
|
// Unique ID creation requires a high quality random # generator. In node.js
|
|
6786
6789
|
// this is pretty straight-forward - we use the crypto API.
|
|
@@ -7255,7 +7258,7 @@ var UtilService = {
|
|
|
7255
7258
|
};
|
|
7256
7259
|
|
|
7257
7260
|
//
|
|
7258
|
-
var script$
|
|
7261
|
+
var script$g = {
|
|
7259
7262
|
name: "NsPasswordInput",
|
|
7260
7263
|
components: CvTextInput,
|
|
7261
7264
|
mixins: [UtilService],
|
|
@@ -7418,10 +7421,10 @@ var script$e = {
|
|
|
7418
7421
|
};
|
|
7419
7422
|
|
|
7420
7423
|
/* script */
|
|
7421
|
-
const __vue_script__$
|
|
7424
|
+
const __vue_script__$g = script$g;
|
|
7422
7425
|
/* template */
|
|
7423
7426
|
|
|
7424
|
-
var __vue_render__$
|
|
7427
|
+
var __vue_render__$l = function () {
|
|
7425
7428
|
var _vm = this;
|
|
7426
7429
|
|
|
7427
7430
|
var _h = _vm.$createElement;
|
|
@@ -7516,10 +7519,10 @@ var __vue_render__$k = function () {
|
|
|
7516
7519
|
}, [_vm._v(_vm._s(_vm.equalLabel))])])], 1)]);
|
|
7517
7520
|
};
|
|
7518
7521
|
|
|
7519
|
-
var __vue_staticRenderFns__$
|
|
7522
|
+
var __vue_staticRenderFns__$l = [];
|
|
7520
7523
|
/* style */
|
|
7521
7524
|
|
|
7522
|
-
const __vue_inject_styles__$
|
|
7525
|
+
const __vue_inject_styles__$n = function (inject) {
|
|
7523
7526
|
if (!inject) return;
|
|
7524
7527
|
inject("data-v-d2bd6562_0", {
|
|
7525
7528
|
source: ".new-password-container[data-v-d2bd6562]{margin-bottom:1rem}.new-password[data-v-d2bd6562]{margin-bottom:.25rem}.confirm-password[data-v-d2bd6562]{margin-bottom:.25rem}.password-meter[data-v-d2bd6562]{display:flex}@media (min-width:672px){.password-meter[data-v-d2bd6562]{max-width:38rem}}.requirement[data-v-d2bd6562]{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-d2bd6562]{background-color:#fff}.requirement[data-v-d2bd6562]:first-child{margin-left:0}.requirement-ok[data-v-d2bd6562]{color:#fff;background-color:#198038}.requirement-disabled[data-v-d2bd6562]{color:#c6c6c6;background-color:#f4f4f4}",
|
|
@@ -7530,26 +7533,26 @@ const __vue_inject_styles__$l = function (inject) {
|
|
|
7530
7533
|
/* scoped */
|
|
7531
7534
|
|
|
7532
7535
|
|
|
7533
|
-
const __vue_scope_id__$
|
|
7536
|
+
const __vue_scope_id__$n = "data-v-d2bd6562";
|
|
7534
7537
|
/* module identifier */
|
|
7535
7538
|
|
|
7536
|
-
const __vue_module_identifier__$
|
|
7539
|
+
const __vue_module_identifier__$n = undefined;
|
|
7537
7540
|
/* functional template */
|
|
7538
7541
|
|
|
7539
|
-
const __vue_is_functional_template__$
|
|
7542
|
+
const __vue_is_functional_template__$n = false;
|
|
7540
7543
|
/* style inject SSR */
|
|
7541
7544
|
|
|
7542
7545
|
/* style inject shadow dom */
|
|
7543
7546
|
|
|
7544
|
-
const __vue_component__$
|
|
7545
|
-
render: __vue_render__$
|
|
7546
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7547
|
-
}, __vue_inject_styles__$
|
|
7547
|
+
const __vue_component__$H = /*#__PURE__*/normalizeComponent({
|
|
7548
|
+
render: __vue_render__$l,
|
|
7549
|
+
staticRenderFns: __vue_staticRenderFns__$l
|
|
7550
|
+
}, __vue_inject_styles__$n, __vue_script__$g, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, createInjector, undefined, undefined);
|
|
7548
7551
|
|
|
7549
|
-
var __vue_component__$
|
|
7552
|
+
var __vue_component__$I = __vue_component__$H;
|
|
7550
7553
|
|
|
7551
7554
|
//
|
|
7552
|
-
var script$
|
|
7555
|
+
var script$f = {
|
|
7553
7556
|
name: "NsIconMenu",
|
|
7554
7557
|
extends: CvOverflowMenu,
|
|
7555
7558
|
props: {
|
|
@@ -7593,10 +7596,10 @@ var script$d = {
|
|
|
7593
7596
|
};
|
|
7594
7597
|
|
|
7595
7598
|
/* script */
|
|
7596
|
-
const __vue_script__$
|
|
7599
|
+
const __vue_script__$f = script$f;
|
|
7597
7600
|
/* template */
|
|
7598
7601
|
|
|
7599
|
-
var __vue_render__$
|
|
7602
|
+
var __vue_render__$k = function () {
|
|
7600
7603
|
var _obj, _obj$1;
|
|
7601
7604
|
|
|
7602
7605
|
var _vm = this;
|
|
@@ -7712,10 +7715,10 @@ var __vue_render__$j = function () {
|
|
|
7712
7715
|
})])]);
|
|
7713
7716
|
};
|
|
7714
7717
|
|
|
7715
|
-
var __vue_staticRenderFns__$
|
|
7718
|
+
var __vue_staticRenderFns__$k = [];
|
|
7716
7719
|
/* style */
|
|
7717
7720
|
|
|
7718
|
-
const __vue_inject_styles__$
|
|
7721
|
+
const __vue_inject_styles__$m = function (inject) {
|
|
7719
7722
|
if (!inject) return;
|
|
7720
7723
|
inject("data-v-2be14df6_0", {
|
|
7721
7724
|
source: ".ns-icon-menu[data-v-2be14df6]{display:inline-flex}",
|
|
@@ -7726,27 +7729,27 @@ const __vue_inject_styles__$k = function (inject) {
|
|
|
7726
7729
|
/* scoped */
|
|
7727
7730
|
|
|
7728
7731
|
|
|
7729
|
-
const __vue_scope_id__$
|
|
7732
|
+
const __vue_scope_id__$m = "data-v-2be14df6";
|
|
7730
7733
|
/* module identifier */
|
|
7731
7734
|
|
|
7732
|
-
const __vue_module_identifier__$
|
|
7735
|
+
const __vue_module_identifier__$m = undefined;
|
|
7733
7736
|
/* functional template */
|
|
7734
7737
|
|
|
7735
|
-
const __vue_is_functional_template__$
|
|
7738
|
+
const __vue_is_functional_template__$m = false;
|
|
7736
7739
|
/* style inject SSR */
|
|
7737
7740
|
|
|
7738
7741
|
/* style inject shadow dom */
|
|
7739
7742
|
|
|
7740
|
-
const __vue_component__$
|
|
7741
|
-
render: __vue_render__$
|
|
7742
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7743
|
-
}, __vue_inject_styles__$
|
|
7743
|
+
const __vue_component__$F = /*#__PURE__*/normalizeComponent({
|
|
7744
|
+
render: __vue_render__$k,
|
|
7745
|
+
staticRenderFns: __vue_staticRenderFns__$k
|
|
7746
|
+
}, __vue_inject_styles__$m, __vue_script__$f, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, createInjector, undefined, undefined);
|
|
7744
7747
|
|
|
7745
|
-
var __vue_component__$
|
|
7748
|
+
var __vue_component__$G = __vue_component__$F;
|
|
7746
7749
|
|
|
7747
7750
|
//
|
|
7748
7751
|
Vue.use(chartsVue);
|
|
7749
|
-
var script$
|
|
7752
|
+
var script$e = {
|
|
7750
7753
|
name: "NsMeterChart",
|
|
7751
7754
|
components: {
|
|
7752
7755
|
CcvMeterChart
|
|
@@ -7820,10 +7823,10 @@ var script$c = {
|
|
|
7820
7823
|
};
|
|
7821
7824
|
|
|
7822
7825
|
/* script */
|
|
7823
|
-
const __vue_script__$
|
|
7826
|
+
const __vue_script__$e = script$e;
|
|
7824
7827
|
/* template */
|
|
7825
7828
|
|
|
7826
|
-
var __vue_render__$
|
|
7829
|
+
var __vue_render__$j = function () {
|
|
7827
7830
|
var _vm = this;
|
|
7828
7831
|
|
|
7829
7832
|
var _h = _vm.$createElement;
|
|
@@ -7838,35 +7841,35 @@ var __vue_render__$i = function () {
|
|
|
7838
7841
|
});
|
|
7839
7842
|
};
|
|
7840
7843
|
|
|
7841
|
-
var __vue_staticRenderFns__$
|
|
7844
|
+
var __vue_staticRenderFns__$j = [];
|
|
7842
7845
|
/* style */
|
|
7843
7846
|
|
|
7844
|
-
const __vue_inject_styles__$
|
|
7847
|
+
const __vue_inject_styles__$l = undefined;
|
|
7845
7848
|
/* scoped */
|
|
7846
7849
|
|
|
7847
|
-
const __vue_scope_id__$
|
|
7850
|
+
const __vue_scope_id__$l = undefined;
|
|
7848
7851
|
/* module identifier */
|
|
7849
7852
|
|
|
7850
|
-
const __vue_module_identifier__$
|
|
7853
|
+
const __vue_module_identifier__$l = undefined;
|
|
7851
7854
|
/* functional template */
|
|
7852
7855
|
|
|
7853
|
-
const __vue_is_functional_template__$
|
|
7856
|
+
const __vue_is_functional_template__$l = false;
|
|
7854
7857
|
/* style inject */
|
|
7855
7858
|
|
|
7856
7859
|
/* style inject SSR */
|
|
7857
7860
|
|
|
7858
7861
|
/* style inject shadow dom */
|
|
7859
7862
|
|
|
7860
|
-
const __vue_component__$
|
|
7861
|
-
render: __vue_render__$
|
|
7862
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7863
|
-
}, __vue_inject_styles__$
|
|
7863
|
+
const __vue_component__$D = /*#__PURE__*/normalizeComponent({
|
|
7864
|
+
render: __vue_render__$j,
|
|
7865
|
+
staticRenderFns: __vue_staticRenderFns__$j
|
|
7866
|
+
}, __vue_inject_styles__$l, __vue_script__$e, __vue_scope_id__$l, __vue_is_functional_template__$l, __vue_module_identifier__$l, false, undefined, undefined, undefined);
|
|
7864
7867
|
|
|
7865
|
-
var __vue_component__$
|
|
7868
|
+
var __vue_component__$E = __vue_component__$D;
|
|
7866
7869
|
|
|
7867
7870
|
//
|
|
7868
7871
|
Vue.use(chartsVue);
|
|
7869
|
-
var script$
|
|
7872
|
+
var script$d = {
|
|
7870
7873
|
name: "NsPieChart",
|
|
7871
7874
|
components: {},
|
|
7872
7875
|
props: {
|
|
@@ -7922,10 +7925,10 @@ var script$b = {
|
|
|
7922
7925
|
};
|
|
7923
7926
|
|
|
7924
7927
|
/* script */
|
|
7925
|
-
const __vue_script__$
|
|
7928
|
+
const __vue_script__$d = script$d;
|
|
7926
7929
|
/* template */
|
|
7927
7930
|
|
|
7928
|
-
var __vue_render__$
|
|
7931
|
+
var __vue_render__$i = function () {
|
|
7929
7932
|
var _vm = this;
|
|
7930
7933
|
|
|
7931
7934
|
var _h = _vm.$createElement;
|
|
@@ -7940,34 +7943,34 @@ var __vue_render__$h = function () {
|
|
|
7940
7943
|
});
|
|
7941
7944
|
};
|
|
7942
7945
|
|
|
7943
|
-
var __vue_staticRenderFns__$
|
|
7946
|
+
var __vue_staticRenderFns__$i = [];
|
|
7944
7947
|
/* style */
|
|
7945
7948
|
|
|
7946
|
-
const __vue_inject_styles__$
|
|
7949
|
+
const __vue_inject_styles__$k = undefined;
|
|
7947
7950
|
/* scoped */
|
|
7948
7951
|
|
|
7949
|
-
const __vue_scope_id__$
|
|
7952
|
+
const __vue_scope_id__$k = undefined;
|
|
7950
7953
|
/* module identifier */
|
|
7951
7954
|
|
|
7952
|
-
const __vue_module_identifier__$
|
|
7955
|
+
const __vue_module_identifier__$k = undefined;
|
|
7953
7956
|
/* functional template */
|
|
7954
7957
|
|
|
7955
|
-
const __vue_is_functional_template__$
|
|
7958
|
+
const __vue_is_functional_template__$k = false;
|
|
7956
7959
|
/* style inject */
|
|
7957
7960
|
|
|
7958
7961
|
/* style inject SSR */
|
|
7959
7962
|
|
|
7960
7963
|
/* style inject shadow dom */
|
|
7961
7964
|
|
|
7962
|
-
const __vue_component__$
|
|
7963
|
-
render: __vue_render__$
|
|
7964
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7965
|
-
}, __vue_inject_styles__$
|
|
7965
|
+
const __vue_component__$B = /*#__PURE__*/normalizeComponent({
|
|
7966
|
+
render: __vue_render__$i,
|
|
7967
|
+
staticRenderFns: __vue_staticRenderFns__$i
|
|
7968
|
+
}, __vue_inject_styles__$k, __vue_script__$d, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, undefined, undefined, undefined);
|
|
7966
7969
|
|
|
7967
|
-
var __vue_component__$
|
|
7970
|
+
var __vue_component__$C = __vue_component__$B;
|
|
7968
7971
|
|
|
7969
7972
|
//
|
|
7970
|
-
var script$
|
|
7973
|
+
var script$c = {
|
|
7971
7974
|
name: "NsDangerDeleteModal",
|
|
7972
7975
|
//component added for storybook to work
|
|
7973
7976
|
components: {
|
|
@@ -8062,10 +8065,10 @@ var script$a = {
|
|
|
8062
8065
|
};
|
|
8063
8066
|
|
|
8064
8067
|
/* script */
|
|
8065
|
-
const __vue_script__$
|
|
8068
|
+
const __vue_script__$c = script$c;
|
|
8066
8069
|
/* template */
|
|
8067
8070
|
|
|
8068
|
-
var __vue_render__$
|
|
8071
|
+
var __vue_render__$h = function () {
|
|
8069
8072
|
var _vm = this;
|
|
8070
8073
|
|
|
8071
8074
|
var _h = _vm.$createElement;
|
|
@@ -8133,10 +8136,10 @@ var __vue_render__$g = function () {
|
|
|
8133
8136
|
}, [_vm._v(_vm._s(_vm.deleteLabel))])], 2);
|
|
8134
8137
|
};
|
|
8135
8138
|
|
|
8136
|
-
var __vue_staticRenderFns__$
|
|
8139
|
+
var __vue_staticRenderFns__$h = [];
|
|
8137
8140
|
/* style */
|
|
8138
8141
|
|
|
8139
|
-
const __vue_inject_styles__$
|
|
8142
|
+
const __vue_inject_styles__$j = function (inject) {
|
|
8140
8143
|
if (!inject) return;
|
|
8141
8144
|
inject("data-v-56c8d6b0_0", {
|
|
8142
8145
|
source: ".type-to-confirm[data-v-56c8d6b0]{margin-top:2rem}",
|
|
@@ -8147,23 +8150,23 @@ const __vue_inject_styles__$h = function (inject) {
|
|
|
8147
8150
|
/* scoped */
|
|
8148
8151
|
|
|
8149
8152
|
|
|
8150
|
-
const __vue_scope_id__$
|
|
8153
|
+
const __vue_scope_id__$j = "data-v-56c8d6b0";
|
|
8151
8154
|
/* module identifier */
|
|
8152
8155
|
|
|
8153
|
-
const __vue_module_identifier__$
|
|
8156
|
+
const __vue_module_identifier__$j = undefined;
|
|
8154
8157
|
/* functional template */
|
|
8155
8158
|
|
|
8156
|
-
const __vue_is_functional_template__$
|
|
8159
|
+
const __vue_is_functional_template__$j = false;
|
|
8157
8160
|
/* style inject SSR */
|
|
8158
8161
|
|
|
8159
8162
|
/* style inject shadow dom */
|
|
8160
8163
|
|
|
8161
|
-
const __vue_component__$
|
|
8162
|
-
render: __vue_render__$
|
|
8163
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
8164
|
-
}, __vue_inject_styles__$
|
|
8164
|
+
const __vue_component__$z = /*#__PURE__*/normalizeComponent({
|
|
8165
|
+
render: __vue_render__$h,
|
|
8166
|
+
staticRenderFns: __vue_staticRenderFns__$h
|
|
8167
|
+
}, __vue_inject_styles__$j, __vue_script__$c, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, createInjector, undefined, undefined);
|
|
8165
8168
|
|
|
8166
|
-
var __vue_component__$
|
|
8169
|
+
var __vue_component__$A = __vue_component__$z;
|
|
8167
8170
|
|
|
8168
8171
|
var IconService = {
|
|
8169
8172
|
name: "IconService",
|
|
@@ -8297,7 +8300,7 @@ var IconService = {
|
|
|
8297
8300
|
};
|
|
8298
8301
|
|
|
8299
8302
|
//
|
|
8300
|
-
var script$
|
|
8303
|
+
var script$b = {
|
|
8301
8304
|
name: "NsDropdownAction",
|
|
8302
8305
|
extends: CvOverflowMenu,
|
|
8303
8306
|
components: {
|
|
@@ -8329,10 +8332,10 @@ var script$9 = {
|
|
|
8329
8332
|
};
|
|
8330
8333
|
|
|
8331
8334
|
/* script */
|
|
8332
|
-
const __vue_script__$
|
|
8335
|
+
const __vue_script__$b = script$b;
|
|
8333
8336
|
/* template */
|
|
8334
8337
|
|
|
8335
|
-
var __vue_render__$
|
|
8338
|
+
var __vue_render__$g = function () {
|
|
8336
8339
|
var _obj, _obj$1;
|
|
8337
8340
|
|
|
8338
8341
|
var _vm = this;
|
|
@@ -8432,34 +8435,34 @@ var __vue_render__$f = function () {
|
|
|
8432
8435
|
})])]);
|
|
8433
8436
|
};
|
|
8434
8437
|
|
|
8435
|
-
var __vue_staticRenderFns__$
|
|
8438
|
+
var __vue_staticRenderFns__$g = [];
|
|
8436
8439
|
/* style */
|
|
8437
8440
|
|
|
8438
|
-
const __vue_inject_styles__$
|
|
8441
|
+
const __vue_inject_styles__$i = undefined;
|
|
8439
8442
|
/* scoped */
|
|
8440
8443
|
|
|
8441
|
-
const __vue_scope_id__$
|
|
8444
|
+
const __vue_scope_id__$i = "data-v-31925b9d";
|
|
8442
8445
|
/* module identifier */
|
|
8443
8446
|
|
|
8444
|
-
const __vue_module_identifier__$
|
|
8447
|
+
const __vue_module_identifier__$i = undefined;
|
|
8445
8448
|
/* functional template */
|
|
8446
8449
|
|
|
8447
|
-
const __vue_is_functional_template__$
|
|
8450
|
+
const __vue_is_functional_template__$i = false;
|
|
8448
8451
|
/* style inject */
|
|
8449
8452
|
|
|
8450
8453
|
/* style inject SSR */
|
|
8451
8454
|
|
|
8452
8455
|
/* style inject shadow dom */
|
|
8453
8456
|
|
|
8454
|
-
const __vue_component__$
|
|
8455
|
-
render: __vue_render__$
|
|
8456
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
8457
|
-
}, __vue_inject_styles__$
|
|
8457
|
+
const __vue_component__$x = /*#__PURE__*/normalizeComponent({
|
|
8458
|
+
render: __vue_render__$g,
|
|
8459
|
+
staticRenderFns: __vue_staticRenderFns__$g
|
|
8460
|
+
}, __vue_inject_styles__$i, __vue_script__$b, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, undefined, undefined, undefined);
|
|
8458
8461
|
|
|
8459
|
-
var __vue_component__$
|
|
8462
|
+
var __vue_component__$y = __vue_component__$x;
|
|
8460
8463
|
|
|
8461
8464
|
//
|
|
8462
|
-
var script$
|
|
8465
|
+
var script$a = {
|
|
8463
8466
|
name: "NsTextInput",
|
|
8464
8467
|
extends: CvTextInput,
|
|
8465
8468
|
components: {
|
|
@@ -8513,10 +8516,10 @@ var script$8 = {
|
|
|
8513
8516
|
};
|
|
8514
8517
|
|
|
8515
8518
|
/* script */
|
|
8516
|
-
const __vue_script__$
|
|
8519
|
+
const __vue_script__$a = script$a;
|
|
8517
8520
|
/* template */
|
|
8518
8521
|
|
|
8519
|
-
var __vue_render__$
|
|
8522
|
+
var __vue_render__$f = function () {
|
|
8520
8523
|
var _obj, _obj$1, _obj$2, _obj$3, _obj$4, _obj$5;
|
|
8521
8524
|
|
|
8522
8525
|
var _vm = this;
|
|
@@ -8594,10 +8597,10 @@ var __vue_render__$e = function () {
|
|
|
8594
8597
|
})], 2) : _vm._e()]);
|
|
8595
8598
|
};
|
|
8596
8599
|
|
|
8597
|
-
var __vue_staticRenderFns__$
|
|
8600
|
+
var __vue_staticRenderFns__$f = [];
|
|
8598
8601
|
/* style */
|
|
8599
8602
|
|
|
8600
|
-
const __vue_inject_styles__$
|
|
8603
|
+
const __vue_inject_styles__$h = function (inject) {
|
|
8601
8604
|
if (!inject) return;
|
|
8602
8605
|
inject("data-v-13bd5cac_0", {
|
|
8603
8606
|
source: ".tooltip[data-v-13bd5cac]{display:inline-block;position:absolute}",
|
|
@@ -8612,26 +8615,26 @@ const __vue_inject_styles__$f = function (inject) {
|
|
|
8612
8615
|
/* scoped */
|
|
8613
8616
|
|
|
8614
8617
|
|
|
8615
|
-
const __vue_scope_id__$
|
|
8618
|
+
const __vue_scope_id__$h = "data-v-13bd5cac";
|
|
8616
8619
|
/* module identifier */
|
|
8617
8620
|
|
|
8618
|
-
const __vue_module_identifier__$
|
|
8621
|
+
const __vue_module_identifier__$h = undefined;
|
|
8619
8622
|
/* functional template */
|
|
8620
8623
|
|
|
8621
|
-
const __vue_is_functional_template__$
|
|
8624
|
+
const __vue_is_functional_template__$h = false;
|
|
8622
8625
|
/* style inject SSR */
|
|
8623
8626
|
|
|
8624
8627
|
/* style inject shadow dom */
|
|
8625
8628
|
|
|
8626
|
-
const __vue_component__$
|
|
8627
|
-
render: __vue_render__$
|
|
8628
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
8629
|
-
}, __vue_inject_styles__$
|
|
8629
|
+
const __vue_component__$v = /*#__PURE__*/normalizeComponent({
|
|
8630
|
+
render: __vue_render__$f,
|
|
8631
|
+
staticRenderFns: __vue_staticRenderFns__$f
|
|
8632
|
+
}, __vue_inject_styles__$h, __vue_script__$a, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, createInjector, undefined, undefined);
|
|
8630
8633
|
|
|
8631
|
-
var __vue_component__$
|
|
8634
|
+
var __vue_component__$w = __vue_component__$v;
|
|
8632
8635
|
|
|
8633
8636
|
//
|
|
8634
|
-
var script$
|
|
8637
|
+
var script$9 = {
|
|
8635
8638
|
name: "NsBackupCardDetails",
|
|
8636
8639
|
mixins: [DateTimeService],
|
|
8637
8640
|
props: {
|
|
@@ -8667,10 +8670,10 @@ var script$7 = {
|
|
|
8667
8670
|
};
|
|
8668
8671
|
|
|
8669
8672
|
/* script */
|
|
8670
|
-
const __vue_script__$
|
|
8673
|
+
const __vue_script__$9 = script$9;
|
|
8671
8674
|
/* template */
|
|
8672
8675
|
|
|
8673
|
-
var __vue_render__$
|
|
8676
|
+
var __vue_render__$e = function () {
|
|
8674
8677
|
var _vm = this;
|
|
8675
8678
|
|
|
8676
8679
|
var _h = _vm.$createElement;
|
|
@@ -8724,10 +8727,10 @@ var __vue_render__$d = function () {
|
|
|
8724
8727
|
}, [_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("-")])])])]);
|
|
8725
8728
|
};
|
|
8726
8729
|
|
|
8727
|
-
var __vue_staticRenderFns__$
|
|
8730
|
+
var __vue_staticRenderFns__$e = [];
|
|
8728
8731
|
/* style */
|
|
8729
8732
|
|
|
8730
|
-
const __vue_inject_styles__$
|
|
8733
|
+
const __vue_inject_styles__$g = function (inject) {
|
|
8731
8734
|
if (!inject) return;
|
|
8732
8735
|
inject("data-v-25453d1c_0", {
|
|
8733
8736
|
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}",
|
|
@@ -8738,26 +8741,26 @@ const __vue_inject_styles__$e = function (inject) {
|
|
|
8738
8741
|
/* scoped */
|
|
8739
8742
|
|
|
8740
8743
|
|
|
8741
|
-
const __vue_scope_id__$
|
|
8744
|
+
const __vue_scope_id__$g = "data-v-25453d1c";
|
|
8742
8745
|
/* module identifier */
|
|
8743
8746
|
|
|
8744
|
-
const __vue_module_identifier__$
|
|
8747
|
+
const __vue_module_identifier__$g = undefined;
|
|
8745
8748
|
/* functional template */
|
|
8746
8749
|
|
|
8747
|
-
const __vue_is_functional_template__$
|
|
8750
|
+
const __vue_is_functional_template__$g = false;
|
|
8748
8751
|
/* style inject SSR */
|
|
8749
8752
|
|
|
8750
8753
|
/* style inject shadow dom */
|
|
8751
8754
|
|
|
8752
|
-
const __vue_component__$
|
|
8753
|
-
render: __vue_render__$
|
|
8754
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
8755
|
-
}, __vue_inject_styles__$
|
|
8755
|
+
const __vue_component__$u = /*#__PURE__*/normalizeComponent({
|
|
8756
|
+
render: __vue_render__$e,
|
|
8757
|
+
staticRenderFns: __vue_staticRenderFns__$e
|
|
8758
|
+
}, __vue_inject_styles__$g, __vue_script__$9, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, createInjector, undefined, undefined);
|
|
8756
8759
|
|
|
8757
|
-
var NsBackupCardDetails = __vue_component__$
|
|
8760
|
+
var NsBackupCardDetails = __vue_component__$u;
|
|
8758
8761
|
|
|
8759
8762
|
//
|
|
8760
|
-
var script$
|
|
8763
|
+
var script$8 = {
|
|
8761
8764
|
name: "NsBackupCard",
|
|
8762
8765
|
components: {
|
|
8763
8766
|
NsBackupCardDetails
|
|
@@ -8898,10 +8901,10 @@ var script$6 = {
|
|
|
8898
8901
|
};
|
|
8899
8902
|
|
|
8900
8903
|
/* script */
|
|
8901
|
-
const __vue_script__$
|
|
8904
|
+
const __vue_script__$8 = script$8;
|
|
8902
8905
|
/* template */
|
|
8903
8906
|
|
|
8904
|
-
var __vue_render__$
|
|
8907
|
+
var __vue_render__$d = function () {
|
|
8905
8908
|
var _vm = this;
|
|
8906
8909
|
|
|
8907
8910
|
var _h = _vm.$createElement;
|
|
@@ -9017,10 +9020,10 @@ var __vue_render__$c = function () {
|
|
|
9017
9020
|
}, [_vm._v(_vm._s(_vm.goToBackupLabel) + "\n ")])], 1)])], 2);
|
|
9018
9021
|
};
|
|
9019
9022
|
|
|
9020
|
-
var __vue_staticRenderFns__$
|
|
9023
|
+
var __vue_staticRenderFns__$d = [];
|
|
9021
9024
|
/* style */
|
|
9022
9025
|
|
|
9023
|
-
const __vue_inject_styles__$
|
|
9026
|
+
const __vue_inject_styles__$f = function (inject) {
|
|
9024
9027
|
if (!inject) return;
|
|
9025
9028
|
inject("data-v-5a3b7738_0", {
|
|
9026
9029
|
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}",
|
|
@@ -9035,25 +9038,25 @@ const __vue_inject_styles__$d = function (inject) {
|
|
|
9035
9038
|
/* scoped */
|
|
9036
9039
|
|
|
9037
9040
|
|
|
9038
|
-
const __vue_scope_id__$
|
|
9041
|
+
const __vue_scope_id__$f = "data-v-5a3b7738";
|
|
9039
9042
|
/* module identifier */
|
|
9040
9043
|
|
|
9041
|
-
const __vue_module_identifier__$
|
|
9044
|
+
const __vue_module_identifier__$f = undefined;
|
|
9042
9045
|
/* functional template */
|
|
9043
9046
|
|
|
9044
|
-
const __vue_is_functional_template__$
|
|
9047
|
+
const __vue_is_functional_template__$f = false;
|
|
9045
9048
|
/* style inject SSR */
|
|
9046
9049
|
|
|
9047
9050
|
/* style inject shadow dom */
|
|
9048
9051
|
|
|
9049
|
-
const __vue_component__$
|
|
9050
|
-
render: __vue_render__$
|
|
9051
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9052
|
-
}, __vue_inject_styles__$
|
|
9052
|
+
const __vue_component__$s = /*#__PURE__*/normalizeComponent({
|
|
9053
|
+
render: __vue_render__$d,
|
|
9054
|
+
staticRenderFns: __vue_staticRenderFns__$d
|
|
9055
|
+
}, __vue_inject_styles__$f, __vue_script__$8, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
|
|
9053
9056
|
|
|
9054
|
-
var __vue_component__$
|
|
9057
|
+
var __vue_component__$t = __vue_component__$s;
|
|
9055
9058
|
|
|
9056
|
-
var script$
|
|
9059
|
+
var script$7 = {
|
|
9057
9060
|
name: "NsModal",
|
|
9058
9061
|
extends: CvModal,
|
|
9059
9062
|
props: {
|
|
@@ -9090,33 +9093,33 @@ var script$5 = {
|
|
|
9090
9093
|
};
|
|
9091
9094
|
|
|
9092
9095
|
/* script */
|
|
9093
|
-
const __vue_script__$
|
|
9096
|
+
const __vue_script__$7 = script$7;
|
|
9094
9097
|
/* template */
|
|
9095
9098
|
|
|
9096
9099
|
/* style */
|
|
9097
9100
|
|
|
9098
|
-
const __vue_inject_styles__$
|
|
9101
|
+
const __vue_inject_styles__$e = undefined;
|
|
9099
9102
|
/* scoped */
|
|
9100
9103
|
|
|
9101
|
-
const __vue_scope_id__$
|
|
9104
|
+
const __vue_scope_id__$e = undefined;
|
|
9102
9105
|
/* module identifier */
|
|
9103
9106
|
|
|
9104
|
-
const __vue_module_identifier__$
|
|
9107
|
+
const __vue_module_identifier__$e = undefined;
|
|
9105
9108
|
/* functional template */
|
|
9106
9109
|
|
|
9107
|
-
const __vue_is_functional_template__$
|
|
9110
|
+
const __vue_is_functional_template__$e = undefined;
|
|
9108
9111
|
/* style inject */
|
|
9109
9112
|
|
|
9110
9113
|
/* style inject SSR */
|
|
9111
9114
|
|
|
9112
9115
|
/* style inject shadow dom */
|
|
9113
9116
|
|
|
9114
|
-
const __vue_component__$
|
|
9117
|
+
const __vue_component__$r = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$e, __vue_script__$7, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, undefined, undefined, undefined);
|
|
9115
9118
|
|
|
9116
|
-
var NsModal = __vue_component__$
|
|
9119
|
+
var NsModal = __vue_component__$r;
|
|
9117
9120
|
|
|
9118
9121
|
//
|
|
9119
|
-
var script$
|
|
9122
|
+
var script$6 = {
|
|
9120
9123
|
name: "NsWizard",
|
|
9121
9124
|
extends: NsModal,
|
|
9122
9125
|
mixins: [IconService],
|
|
@@ -9159,10 +9162,10 @@ var script$4 = {
|
|
|
9159
9162
|
};
|
|
9160
9163
|
|
|
9161
9164
|
/* script */
|
|
9162
|
-
const __vue_script__$
|
|
9165
|
+
const __vue_script__$6 = script$6;
|
|
9163
9166
|
/* template */
|
|
9164
9167
|
|
|
9165
|
-
var __vue_render__$
|
|
9168
|
+
var __vue_render__$c = function () {
|
|
9166
9169
|
var _obj, _obj$1;
|
|
9167
9170
|
|
|
9168
9171
|
var _vm = this;
|
|
@@ -9303,34 +9306,34 @@ var __vue_render__$b = function () {
|
|
|
9303
9306
|
})], 1)]);
|
|
9304
9307
|
};
|
|
9305
9308
|
|
|
9306
|
-
var __vue_staticRenderFns__$
|
|
9309
|
+
var __vue_staticRenderFns__$c = [];
|
|
9307
9310
|
/* style */
|
|
9308
9311
|
|
|
9309
|
-
const __vue_inject_styles__$
|
|
9312
|
+
const __vue_inject_styles__$d = undefined;
|
|
9310
9313
|
/* scoped */
|
|
9311
9314
|
|
|
9312
|
-
const __vue_scope_id__$
|
|
9315
|
+
const __vue_scope_id__$d = undefined;
|
|
9313
9316
|
/* module identifier */
|
|
9314
9317
|
|
|
9315
|
-
const __vue_module_identifier__$
|
|
9318
|
+
const __vue_module_identifier__$d = undefined;
|
|
9316
9319
|
/* functional template */
|
|
9317
9320
|
|
|
9318
|
-
const __vue_is_functional_template__$
|
|
9321
|
+
const __vue_is_functional_template__$d = false;
|
|
9319
9322
|
/* style inject */
|
|
9320
9323
|
|
|
9321
9324
|
/* style inject SSR */
|
|
9322
9325
|
|
|
9323
9326
|
/* style inject shadow dom */
|
|
9324
9327
|
|
|
9325
|
-
const __vue_component__$
|
|
9326
|
-
render: __vue_render__$
|
|
9327
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9328
|
-
}, __vue_inject_styles__$
|
|
9328
|
+
const __vue_component__$p = /*#__PURE__*/normalizeComponent({
|
|
9329
|
+
render: __vue_render__$c,
|
|
9330
|
+
staticRenderFns: __vue_staticRenderFns__$c
|
|
9331
|
+
}, __vue_inject_styles__$d, __vue_script__$6, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, undefined, undefined, undefined);
|
|
9329
9332
|
|
|
9330
|
-
var __vue_component__$
|
|
9333
|
+
var __vue_component__$q = __vue_component__$p;
|
|
9331
9334
|
|
|
9332
9335
|
//
|
|
9333
|
-
var script$
|
|
9336
|
+
var script$5 = {
|
|
9334
9337
|
name: "NsMenuItem",
|
|
9335
9338
|
components: {
|
|
9336
9339
|
NsSvg
|
|
@@ -9353,10 +9356,10 @@ var script$3 = {
|
|
|
9353
9356
|
};
|
|
9354
9357
|
|
|
9355
9358
|
/* script */
|
|
9356
|
-
const __vue_script__$
|
|
9359
|
+
const __vue_script__$5 = script$5;
|
|
9357
9360
|
/* template */
|
|
9358
9361
|
|
|
9359
|
-
var __vue_render__$
|
|
9362
|
+
var __vue_render__$b = function () {
|
|
9360
9363
|
var _vm = this;
|
|
9361
9364
|
|
|
9362
9365
|
var _h = _vm.$createElement;
|
|
@@ -9376,10 +9379,10 @@ var __vue_render__$a = function () {
|
|
|
9376
9379
|
}, [_vm._t("icon")], 2) : _vm._e(), _vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.label))])]);
|
|
9377
9380
|
};
|
|
9378
9381
|
|
|
9379
|
-
var __vue_staticRenderFns__$
|
|
9382
|
+
var __vue_staticRenderFns__$b = [];
|
|
9380
9383
|
/* style */
|
|
9381
9384
|
|
|
9382
|
-
const __vue_inject_styles__$
|
|
9385
|
+
const __vue_inject_styles__$c = function (inject) {
|
|
9383
9386
|
if (!inject) return;
|
|
9384
9387
|
inject("data-v-35f08832_0", {
|
|
9385
9388
|
source: ".ns-menu-item[data-v-35f08832]{display:flex;align-items:center}.icon[data-v-35f08832]{margin-right:.5rem}",
|
|
@@ -9390,26 +9393,26 @@ const __vue_inject_styles__$a = function (inject) {
|
|
|
9390
9393
|
/* scoped */
|
|
9391
9394
|
|
|
9392
9395
|
|
|
9393
|
-
const __vue_scope_id__$
|
|
9396
|
+
const __vue_scope_id__$c = "data-v-35f08832";
|
|
9394
9397
|
/* module identifier */
|
|
9395
9398
|
|
|
9396
|
-
const __vue_module_identifier__$
|
|
9399
|
+
const __vue_module_identifier__$c = undefined;
|
|
9397
9400
|
/* functional template */
|
|
9398
9401
|
|
|
9399
|
-
const __vue_is_functional_template__$
|
|
9402
|
+
const __vue_is_functional_template__$c = false;
|
|
9400
9403
|
/* style inject SSR */
|
|
9401
9404
|
|
|
9402
9405
|
/* style inject shadow dom */
|
|
9403
9406
|
|
|
9404
|
-
const __vue_component__$
|
|
9405
|
-
render: __vue_render__$
|
|
9406
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9407
|
-
}, __vue_inject_styles__$
|
|
9407
|
+
const __vue_component__$n = /*#__PURE__*/normalizeComponent({
|
|
9408
|
+
render: __vue_render__$b,
|
|
9409
|
+
staticRenderFns: __vue_staticRenderFns__$b
|
|
9410
|
+
}, __vue_inject_styles__$c, __vue_script__$5, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
|
|
9408
9411
|
|
|
9409
|
-
var __vue_component__$
|
|
9412
|
+
var __vue_component__$o = __vue_component__$n;
|
|
9410
9413
|
|
|
9411
9414
|
//
|
|
9412
|
-
var script$
|
|
9415
|
+
var script$4 = {
|
|
9413
9416
|
name: "NsMenuDivider",
|
|
9414
9417
|
components: {
|
|
9415
9418
|
CvSideNavDivider
|
|
@@ -9417,10 +9420,10 @@ var script$2 = {
|
|
|
9417
9420
|
};
|
|
9418
9421
|
|
|
9419
9422
|
/* script */
|
|
9420
|
-
const __vue_script__$
|
|
9423
|
+
const __vue_script__$4 = script$4;
|
|
9421
9424
|
/* template */
|
|
9422
9425
|
|
|
9423
|
-
var __vue_render__$
|
|
9426
|
+
var __vue_render__$a = function () {
|
|
9424
9427
|
var _vm = this;
|
|
9425
9428
|
|
|
9426
9429
|
var _h = _vm.$createElement;
|
|
@@ -9430,34 +9433,34 @@ var __vue_render__$9 = function () {
|
|
|
9430
9433
|
return _c('cv-side-nav-divider');
|
|
9431
9434
|
};
|
|
9432
9435
|
|
|
9433
|
-
var __vue_staticRenderFns__$
|
|
9436
|
+
var __vue_staticRenderFns__$a = [];
|
|
9434
9437
|
/* style */
|
|
9435
9438
|
|
|
9436
|
-
const __vue_inject_styles__$
|
|
9439
|
+
const __vue_inject_styles__$b = undefined;
|
|
9437
9440
|
/* scoped */
|
|
9438
9441
|
|
|
9439
|
-
const __vue_scope_id__$
|
|
9442
|
+
const __vue_scope_id__$b = "data-v-c2c8c17e";
|
|
9440
9443
|
/* module identifier */
|
|
9441
9444
|
|
|
9442
|
-
const __vue_module_identifier__$
|
|
9445
|
+
const __vue_module_identifier__$b = undefined;
|
|
9443
9446
|
/* functional template */
|
|
9444
9447
|
|
|
9445
|
-
const __vue_is_functional_template__$
|
|
9448
|
+
const __vue_is_functional_template__$b = false;
|
|
9446
9449
|
/* style inject */
|
|
9447
9450
|
|
|
9448
9451
|
/* style inject SSR */
|
|
9449
9452
|
|
|
9450
9453
|
/* style inject shadow dom */
|
|
9451
9454
|
|
|
9452
|
-
const __vue_component__$
|
|
9453
|
-
render: __vue_render__$
|
|
9454
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9455
|
-
}, __vue_inject_styles__$
|
|
9455
|
+
const __vue_component__$l = /*#__PURE__*/normalizeComponent({
|
|
9456
|
+
render: __vue_render__$a,
|
|
9457
|
+
staticRenderFns: __vue_staticRenderFns__$a
|
|
9458
|
+
}, __vue_inject_styles__$b, __vue_script__$4, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, undefined, undefined, undefined);
|
|
9456
9459
|
|
|
9457
|
-
var __vue_component__$
|
|
9460
|
+
var __vue_component__$m = __vue_component__$l;
|
|
9458
9461
|
|
|
9459
9462
|
//
|
|
9460
|
-
var script$
|
|
9463
|
+
var script$3 = {
|
|
9461
9464
|
name: "NsSystemLogsCard",
|
|
9462
9465
|
mixins: [UtilService, IconService],
|
|
9463
9466
|
props: {
|
|
@@ -9576,10 +9579,10 @@ var script$1 = {
|
|
|
9576
9579
|
};
|
|
9577
9580
|
|
|
9578
9581
|
/* script */
|
|
9579
|
-
const __vue_script__$
|
|
9582
|
+
const __vue_script__$3 = script$3;
|
|
9580
9583
|
/* template */
|
|
9581
9584
|
|
|
9582
|
-
var __vue_render__$
|
|
9585
|
+
var __vue_render__$9 = function () {
|
|
9583
9586
|
var _vm = this;
|
|
9584
9587
|
|
|
9585
9588
|
var _h = _vm.$createElement;
|
|
@@ -9606,34 +9609,34 @@ var __vue_render__$8 = function () {
|
|
|
9606
9609
|
}, [_vm._v("\n " + _vm._s(_vm.buttonLabel) + "\n ")])], 1)], 2);
|
|
9607
9610
|
};
|
|
9608
9611
|
|
|
9609
|
-
var __vue_staticRenderFns__$
|
|
9612
|
+
var __vue_staticRenderFns__$9 = [];
|
|
9610
9613
|
/* style */
|
|
9611
9614
|
|
|
9612
|
-
const __vue_inject_styles__$
|
|
9615
|
+
const __vue_inject_styles__$a = undefined;
|
|
9613
9616
|
/* scoped */
|
|
9614
9617
|
|
|
9615
|
-
const __vue_scope_id__$
|
|
9618
|
+
const __vue_scope_id__$a = "data-v-aec74b8e";
|
|
9616
9619
|
/* module identifier */
|
|
9617
9620
|
|
|
9618
|
-
const __vue_module_identifier__$
|
|
9621
|
+
const __vue_module_identifier__$a = undefined;
|
|
9619
9622
|
/* functional template */
|
|
9620
9623
|
|
|
9621
|
-
const __vue_is_functional_template__$
|
|
9624
|
+
const __vue_is_functional_template__$a = false;
|
|
9622
9625
|
/* style inject */
|
|
9623
9626
|
|
|
9624
9627
|
/* style inject SSR */
|
|
9625
9628
|
|
|
9626
9629
|
/* style inject shadow dom */
|
|
9627
9630
|
|
|
9628
|
-
const __vue_component__$
|
|
9629
|
-
render: __vue_render__$
|
|
9630
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9631
|
-
}, __vue_inject_styles__$
|
|
9631
|
+
const __vue_component__$j = /*#__PURE__*/normalizeComponent({
|
|
9632
|
+
render: __vue_render__$9,
|
|
9633
|
+
staticRenderFns: __vue_staticRenderFns__$9
|
|
9634
|
+
}, __vue_inject_styles__$a, __vue_script__$3, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, undefined, undefined, undefined);
|
|
9632
9635
|
|
|
9633
|
-
var __vue_component__$
|
|
9636
|
+
var __vue_component__$k = __vue_component__$j;
|
|
9634
9637
|
|
|
9635
9638
|
//
|
|
9636
|
-
var script = {
|
|
9639
|
+
var script$2 = {
|
|
9637
9640
|
name: "NsTimePicker",
|
|
9638
9641
|
mixins: [uidMixin, carbonPrefixMixin, themeMixin],
|
|
9639
9642
|
props: {
|
|
@@ -9676,10 +9679,10 @@ var script = {
|
|
|
9676
9679
|
};
|
|
9677
9680
|
|
|
9678
9681
|
/* script */
|
|
9679
|
-
const __vue_script__ = script;
|
|
9682
|
+
const __vue_script__$2 = script$2;
|
|
9680
9683
|
/* template */
|
|
9681
9684
|
|
|
9682
|
-
var __vue_render__$
|
|
9685
|
+
var __vue_render__$8 = function () {
|
|
9683
9686
|
var _obj, _obj$1;
|
|
9684
9687
|
|
|
9685
9688
|
var _vm = this;
|
|
@@ -9723,10 +9726,10 @@ var __vue_render__$7 = function () {
|
|
|
9723
9726
|
})], 2) : _vm._e()]);
|
|
9724
9727
|
};
|
|
9725
9728
|
|
|
9726
|
-
var __vue_staticRenderFns__$
|
|
9729
|
+
var __vue_staticRenderFns__$8 = [];
|
|
9727
9730
|
/* style */
|
|
9728
9731
|
|
|
9729
|
-
const __vue_inject_styles__$
|
|
9732
|
+
const __vue_inject_styles__$9 = function (inject) {
|
|
9730
9733
|
if (!inject) return;
|
|
9731
9734
|
inject("data-v-e1e1beb2_0", {
|
|
9732
9735
|
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}",
|
|
@@ -9741,746 +9744,163 @@ const __vue_inject_styles__$7 = function (inject) {
|
|
|
9741
9744
|
/* scoped */
|
|
9742
9745
|
|
|
9743
9746
|
|
|
9744
|
-
const __vue_scope_id__$
|
|
9747
|
+
const __vue_scope_id__$9 = "data-v-e1e1beb2";
|
|
9745
9748
|
/* module identifier */
|
|
9746
9749
|
|
|
9747
|
-
const __vue_module_identifier__$
|
|
9750
|
+
const __vue_module_identifier__$9 = undefined;
|
|
9748
9751
|
/* functional template */
|
|
9749
9752
|
|
|
9750
|
-
const __vue_is_functional_template__$
|
|
9753
|
+
const __vue_is_functional_template__$9 = false;
|
|
9751
9754
|
/* style inject SSR */
|
|
9752
9755
|
|
|
9753
9756
|
/* style inject shadow dom */
|
|
9754
9757
|
|
|
9755
|
-
const __vue_component__$
|
|
9756
|
-
render: __vue_render__$
|
|
9757
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9758
|
-
}, __vue_inject_styles__$
|
|
9759
|
-
|
|
9760
|
-
var __vue_component__$f = __vue_component__$e;
|
|
9761
|
-
|
|
9762
|
-
/* script */
|
|
9763
|
-
|
|
9764
|
-
/* template */
|
|
9765
|
-
var __vue_render__$6 = function () {
|
|
9766
|
-
var _vm = this;
|
|
9767
|
-
|
|
9768
|
-
var _h = _vm.$createElement;
|
|
9758
|
+
const __vue_component__$h = /*#__PURE__*/normalizeComponent({
|
|
9759
|
+
render: __vue_render__$8,
|
|
9760
|
+
staticRenderFns: __vue_staticRenderFns__$8
|
|
9761
|
+
}, __vue_inject_styles__$9, __vue_script__$2, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, createInjector, undefined, undefined);
|
|
9769
9762
|
|
|
9770
|
-
|
|
9763
|
+
var __vue_component__$i = __vue_component__$h;
|
|
9771
9764
|
|
|
9772
|
-
|
|
9773
|
-
|
|
9774
|
-
|
|
9775
|
-
|
|
9765
|
+
/*
|
|
9766
|
+
* This component optionally wraps slotted content with the specified tag-type.
|
|
9767
|
+
*
|
|
9768
|
+
* If no tag-type is supplied then the slotted content is unwrapped.
|
|
9769
|
+
*
|
|
9770
|
+
* Unwrapped slots do not recieve class, style or attributes attached to the wrapper
|
|
9771
|
+
*
|
|
9772
|
+
* NOTE: If used at the top level of a component in the unwrapped case your component still needs to have a single root node.
|
|
9773
|
+
*
|
|
9774
|
+
*/
|
|
9775
|
+
var NsWrapper = {
|
|
9776
|
+
name: "NsWrapper",
|
|
9777
|
+
functional: true,
|
|
9778
|
+
props: {
|
|
9779
|
+
tagType: {
|
|
9780
|
+
type: String,
|
|
9781
|
+
default: undefined
|
|
9776
9782
|
}
|
|
9777
|
-
}
|
|
9778
|
-
};
|
|
9779
|
-
|
|
9780
|
-
var __vue_staticRenderFns__$6 = [];
|
|
9781
|
-
/* style */
|
|
9782
|
-
|
|
9783
|
-
const __vue_inject_styles__$6 = undefined;
|
|
9784
|
-
/* scoped */
|
|
9785
|
-
|
|
9786
|
-
const __vue_scope_id__$6 = undefined;
|
|
9787
|
-
/* module identifier */
|
|
9788
|
-
|
|
9789
|
-
const __vue_module_identifier__$6 = undefined;
|
|
9790
|
-
/* functional template */
|
|
9791
|
-
|
|
9792
|
-
const __vue_is_functional_template__$6 = false;
|
|
9793
|
-
/* style inject */
|
|
9794
|
-
|
|
9795
|
-
/* style inject SSR */
|
|
9796
|
-
|
|
9797
|
-
/* style inject shadow dom */
|
|
9798
|
-
|
|
9799
|
-
const __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
9800
|
-
render: __vue_render__$6,
|
|
9801
|
-
staticRenderFns: __vue_staticRenderFns__$6
|
|
9802
|
-
}, __vue_inject_styles__$6, {}, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, undefined, undefined, undefined);
|
|
9803
|
-
|
|
9804
|
-
var __vue_component__$d = __vue_component__$c;
|
|
9805
|
-
|
|
9806
|
-
/* script */
|
|
9807
|
-
|
|
9808
|
-
/* template */
|
|
9809
|
-
var __vue_render__$5 = function () {
|
|
9810
|
-
var _vm = this;
|
|
9811
|
-
|
|
9812
|
-
var _h = _vm.$createElement;
|
|
9813
|
-
|
|
9814
|
-
var _c = _vm._self._c || _h;
|
|
9783
|
+
},
|
|
9815
9784
|
|
|
9816
|
-
|
|
9817
|
-
|
|
9818
|
-
|
|
9819
|
-
|
|
9785
|
+
render(createElement, context) {
|
|
9786
|
+
if (context.props.tagType) {
|
|
9787
|
+
return createElement(context.props.tagType, {
|
|
9788
|
+
attrs: context.data.attrs,
|
|
9789
|
+
class: `${context.data.class || ""} ${context.data.staticClass || ""}`.trim(),
|
|
9790
|
+
style: { ...context.data.staticStyle,
|
|
9791
|
+
...context.data.style
|
|
9792
|
+
},
|
|
9793
|
+
on: context.listeners
|
|
9794
|
+
}, context.slots().default);
|
|
9795
|
+
} else {
|
|
9796
|
+
return context.slots().default;
|
|
9820
9797
|
}
|
|
9821
|
-
}
|
|
9822
|
-
};
|
|
9823
|
-
|
|
9824
|
-
var __vue_staticRenderFns__$5 = [];
|
|
9825
|
-
/* style */
|
|
9826
|
-
|
|
9827
|
-
const __vue_inject_styles__$5 = undefined;
|
|
9828
|
-
/* scoped */
|
|
9829
|
-
|
|
9830
|
-
const __vue_scope_id__$5 = undefined;
|
|
9831
|
-
/* module identifier */
|
|
9832
|
-
|
|
9833
|
-
const __vue_module_identifier__$5 = undefined;
|
|
9834
|
-
/* functional template */
|
|
9835
|
-
|
|
9836
|
-
const __vue_is_functional_template__$5 = false;
|
|
9837
|
-
/* style inject */
|
|
9838
|
-
|
|
9839
|
-
/* style inject SSR */
|
|
9840
|
-
|
|
9841
|
-
/* style inject shadow dom */
|
|
9842
|
-
|
|
9843
|
-
const __vue_component__$a = /*#__PURE__*/normalizeComponent({
|
|
9844
|
-
render: __vue_render__$5,
|
|
9845
|
-
staticRenderFns: __vue_staticRenderFns__$5
|
|
9846
|
-
}, __vue_inject_styles__$5, {}, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, undefined, undefined, undefined);
|
|
9847
|
-
|
|
9848
|
-
var __vue_component__$b = __vue_component__$a;
|
|
9849
|
-
|
|
9850
|
-
/* script */
|
|
9851
|
-
|
|
9852
|
-
/* template */
|
|
9853
|
-
var __vue_render__$4 = function () {
|
|
9854
|
-
var _vm = this;
|
|
9855
|
-
|
|
9856
|
-
var _h = _vm.$createElement;
|
|
9857
|
-
|
|
9858
|
-
var _c = _vm._self._c || _h;
|
|
9798
|
+
}
|
|
9859
9799
|
|
|
9860
|
-
return _c('path', {
|
|
9861
|
-
attrs: {
|
|
9862
|
-
"id": "warning--01_1_",
|
|
9863
|
-
"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"
|
|
9864
|
-
}
|
|
9865
|
-
});
|
|
9866
9800
|
};
|
|
9867
9801
|
|
|
9868
|
-
var
|
|
9869
|
-
|
|
9870
|
-
|
|
9871
|
-
|
|
9872
|
-
|
|
9873
|
-
|
|
9874
|
-
|
|
9875
|
-
|
|
9876
|
-
|
|
9877
|
-
|
|
9878
|
-
|
|
9879
|
-
|
|
9880
|
-
|
|
9881
|
-
|
|
9882
|
-
|
|
9883
|
-
|
|
9884
|
-
|
|
9885
|
-
|
|
9886
|
-
|
|
9887
|
-
|
|
9888
|
-
|
|
9889
|
-
|
|
9890
|
-
|
|
9891
|
-
|
|
9892
|
-
|
|
9893
|
-
|
|
9894
|
-
|
|
9895
|
-
|
|
9896
|
-
|
|
9897
|
-
|
|
9898
|
-
|
|
9899
|
-
|
|
9900
|
-
|
|
9901
|
-
|
|
9902
|
-
|
|
9903
|
-
|
|
9904
|
-
|
|
9905
|
-
|
|
9906
|
-
|
|
9907
|
-
|
|
9802
|
+
var script$1 = {
|
|
9803
|
+
name: "NsPagination",
|
|
9804
|
+
extends: CvPagination,
|
|
9805
|
+
props: {
|
|
9806
|
+
backwardsButtonDisabled: Boolean,
|
|
9807
|
+
forwardsButtonDisabled: Boolean,
|
|
9808
|
+
backwardText: {
|
|
9809
|
+
type: String,
|
|
9810
|
+
default: "Prev page"
|
|
9811
|
+
},
|
|
9812
|
+
forwardText: {
|
|
9813
|
+
type: String,
|
|
9814
|
+
default: "Next page"
|
|
9815
|
+
},
|
|
9816
|
+
pageNumberLabel: {
|
|
9817
|
+
type: String,
|
|
9818
|
+
default: "Page number:"
|
|
9819
|
+
},
|
|
9820
|
+
pageSizesLabel: {
|
|
9821
|
+
type: String,
|
|
9822
|
+
default: "Items per page:"
|
|
9823
|
+
},
|
|
9824
|
+
numberOfItems: {
|
|
9825
|
+
type: Number,
|
|
9826
|
+
default: Infinity
|
|
9827
|
+
},
|
|
9828
|
+
actualItemsOnPage: {
|
|
9829
|
+
type: Number,
|
|
9830
|
+
default: Infinity
|
|
9831
|
+
},
|
|
9832
|
+
page: Number,
|
|
9833
|
+
pageSizes: {
|
|
9834
|
+
type: Array,
|
|
9835
|
+
default: () => [10, 20, 30, 40, 50]
|
|
9836
|
+
},
|
|
9837
|
+
// added
|
|
9838
|
+
rangeOfTotalItemsLabel: {
|
|
9839
|
+
type: String,
|
|
9840
|
+
default: "{range} of {total} items"
|
|
9841
|
+
},
|
|
9842
|
+
ofTotalPagesLabel: {
|
|
9843
|
+
type: String,
|
|
9844
|
+
default: "of {total} pages"
|
|
9908
9845
|
}
|
|
9909
|
-
}
|
|
9910
|
-
|
|
9911
|
-
|
|
9912
|
-
|
|
9913
|
-
|
|
9914
|
-
|
|
9915
|
-
|
|
9916
|
-
|
|
9917
|
-
|
|
9918
|
-
|
|
9919
|
-
|
|
9920
|
-
|
|
9921
|
-
const __vue_module_identifier__$3 = undefined;
|
|
9922
|
-
/* functional template */
|
|
9923
|
-
|
|
9924
|
-
const __vue_is_functional_template__$3 = false;
|
|
9925
|
-
/* style inject */
|
|
9846
|
+
},
|
|
9847
|
+
computed: {
|
|
9848
|
+
pageOfPages() {
|
|
9849
|
+
const {
|
|
9850
|
+
pages,
|
|
9851
|
+
items
|
|
9852
|
+
} = this.ofNPagesProps;
|
|
9853
|
+
|
|
9854
|
+
if (items !== Infinity) {
|
|
9855
|
+
return this.ofTotalPagesLabel.replace("{total}", pages);
|
|
9856
|
+
}
|
|
9926
9857
|
|
|
9927
|
-
|
|
9858
|
+
return `Page ${this.pageValue}`;
|
|
9859
|
+
},
|
|
9928
9860
|
|
|
9929
|
-
|
|
9861
|
+
rangeText() {
|
|
9862
|
+
const {
|
|
9863
|
+
start,
|
|
9864
|
+
end,
|
|
9865
|
+
items
|
|
9866
|
+
} = this.rangeProps;
|
|
9930
9867
|
|
|
9931
|
-
|
|
9932
|
-
|
|
9933
|
-
|
|
9934
|
-
}
|
|
9868
|
+
if (items !== Infinity) {
|
|
9869
|
+
// replace {range} and {total} in rangeOfTotalItemsLabel
|
|
9870
|
+
return this.rangeOfTotalItemsLabel.replace("{range}", `${start}-${end}`).replace("{total}", items);
|
|
9871
|
+
} else {
|
|
9872
|
+
return `${start}-${end}`;
|
|
9873
|
+
}
|
|
9874
|
+
}
|
|
9935
9875
|
|
|
9936
|
-
|
|
9876
|
+
}
|
|
9877
|
+
};
|
|
9937
9878
|
|
|
9938
9879
|
/* script */
|
|
9939
|
-
|
|
9880
|
+
const __vue_script__$1 = script$1;
|
|
9940
9881
|
/* template */
|
|
9941
|
-
var __vue_render__$2 = function () {
|
|
9942
|
-
var _vm = this;
|
|
9943
|
-
|
|
9944
|
-
var _h = _vm.$createElement;
|
|
9945
|
-
|
|
9946
|
-
var _c = _vm._self._c || _h;
|
|
9947
|
-
|
|
9948
|
-
return _c('path', {
|
|
9949
|
-
attrs: {
|
|
9950
|
-
"id": "group",
|
|
9951
|
-
"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"
|
|
9952
|
-
}
|
|
9953
|
-
});
|
|
9954
|
-
};
|
|
9955
9882
|
|
|
9956
|
-
var __vue_staticRenderFns__$2 = [];
|
|
9957
9883
|
/* style */
|
|
9958
9884
|
|
|
9959
|
-
const __vue_inject_styles__$
|
|
9885
|
+
const __vue_inject_styles__$8 = undefined;
|
|
9960
9886
|
/* scoped */
|
|
9961
9887
|
|
|
9962
|
-
const __vue_scope_id__$
|
|
9888
|
+
const __vue_scope_id__$8 = undefined;
|
|
9963
9889
|
/* module identifier */
|
|
9964
9890
|
|
|
9965
|
-
const __vue_module_identifier__$
|
|
9891
|
+
const __vue_module_identifier__$8 = undefined;
|
|
9966
9892
|
/* functional template */
|
|
9967
9893
|
|
|
9968
|
-
const __vue_is_functional_template__$
|
|
9894
|
+
const __vue_is_functional_template__$8 = undefined;
|
|
9969
9895
|
/* style inject */
|
|
9970
9896
|
|
|
9971
9897
|
/* style inject SSR */
|
|
9972
9898
|
|
|
9973
9899
|
/* style inject shadow dom */
|
|
9974
9900
|
|
|
9975
|
-
const __vue_component__$
|
|
9976
|
-
render: __vue_render__$2,
|
|
9977
|
-
staticRenderFns: __vue_staticRenderFns__$2
|
|
9978
|
-
}, __vue_inject_styles__$2, {}, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, undefined, undefined);
|
|
9979
|
-
|
|
9980
|
-
var __vue_component__$5 = __vue_component__$4;
|
|
9981
|
-
|
|
9982
|
-
/* script */
|
|
9983
|
-
|
|
9984
|
-
/* template */
|
|
9985
|
-
var __vue_render__$1 = function () {
|
|
9986
|
-
var _vm = this;
|
|
9987
|
-
|
|
9988
|
-
var _h = _vm.$createElement;
|
|
9901
|
+
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, undefined, undefined, undefined);
|
|
9989
9902
|
|
|
9990
|
-
|
|
9991
|
-
|
|
9992
|
-
return _c('path', {
|
|
9993
|
-
attrs: {
|
|
9994
|
-
"id": "hard--drive",
|
|
9995
|
-
"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"
|
|
9996
|
-
}
|
|
9997
|
-
});
|
|
9998
|
-
};
|
|
9999
|
-
|
|
10000
|
-
var __vue_staticRenderFns__$1 = [];
|
|
10001
|
-
/* style */
|
|
10002
|
-
|
|
10003
|
-
const __vue_inject_styles__$1 = undefined;
|
|
10004
|
-
/* scoped */
|
|
10005
|
-
|
|
10006
|
-
const __vue_scope_id__$1 = undefined;
|
|
10007
|
-
/* module identifier */
|
|
10008
|
-
|
|
10009
|
-
const __vue_module_identifier__$1 = undefined;
|
|
10010
|
-
/* functional template */
|
|
10011
|
-
|
|
10012
|
-
const __vue_is_functional_template__$1 = false;
|
|
10013
|
-
/* style inject */
|
|
10014
|
-
|
|
10015
|
-
/* style inject SSR */
|
|
10016
|
-
|
|
10017
|
-
/* style inject shadow dom */
|
|
10018
|
-
|
|
10019
|
-
const __vue_component__$2 = /*#__PURE__*/normalizeComponent({
|
|
10020
|
-
render: __vue_render__$1,
|
|
10021
|
-
staticRenderFns: __vue_staticRenderFns__$1
|
|
10022
|
-
}, __vue_inject_styles__$1, {}, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, undefined, undefined);
|
|
10023
|
-
|
|
10024
|
-
var __vue_component__$3 = __vue_component__$2;
|
|
10025
|
-
|
|
10026
|
-
/* script */
|
|
10027
|
-
|
|
10028
|
-
/* template */
|
|
10029
|
-
var __vue_render__ = function () {
|
|
10030
|
-
var _vm = this;
|
|
10031
|
-
|
|
10032
|
-
var _h = _vm.$createElement;
|
|
10033
|
-
|
|
10034
|
-
var _c = _vm._self._c || _h;
|
|
10035
|
-
|
|
10036
|
-
return _c('path', {
|
|
10037
|
-
attrs: {
|
|
10038
|
-
"id": "user_1_",
|
|
10039
|
-
"d": "M31.36,31h-0.72c0-6.432-4.777-12.232-11.359-13.792c-0.15-0.036-0.261-0.163-0.275-0.317\n\tc-0.015-0.153,0.071-0.299,0.212-0.362c2.861-1.273,4.71-4.116,4.71-7.241c0-4.371-3.556-7.927-7.927-7.927\n\tc-4.372,0-7.928,3.556-7.928,7.927c0,3.125,1.849,5.968,4.711,7.241c0.141,0.063,0.226,0.209,0.212,0.362\n\tc-0.014,0.154-0.125,0.281-0.275,0.317C6.137,18.768,1.36,24.568,1.36,31H0.64c0-6.46,4.574-12.312,11.002-14.248\n\tc-2.634-1.539-4.291-4.375-4.291-7.465c0-4.768,3.879-8.647,8.648-8.647c4.768,0,8.647,3.879,8.647,8.647\n\tc0,3.09-1.656,5.926-4.29,7.465C26.786,18.688,31.36,24.54,31.36,31z"
|
|
10040
|
-
}
|
|
10041
|
-
});
|
|
10042
|
-
};
|
|
10043
|
-
|
|
10044
|
-
var __vue_staticRenderFns__ = [];
|
|
10045
|
-
/* style */
|
|
10046
|
-
|
|
10047
|
-
const __vue_inject_styles__ = undefined;
|
|
10048
|
-
/* scoped */
|
|
10049
|
-
|
|
10050
|
-
const __vue_scope_id__ = undefined;
|
|
10051
|
-
/* module identifier */
|
|
10052
|
-
|
|
10053
|
-
const __vue_module_identifier__ = undefined;
|
|
10054
|
-
/* functional template */
|
|
10055
|
-
|
|
10056
|
-
const __vue_is_functional_template__ = false;
|
|
10057
|
-
/* style inject */
|
|
10058
|
-
|
|
10059
|
-
/* style inject SSR */
|
|
10060
|
-
|
|
10061
|
-
/* style inject shadow dom */
|
|
10062
|
-
|
|
10063
|
-
const __vue_component__ = /*#__PURE__*/normalizeComponent({
|
|
10064
|
-
render: __vue_render__,
|
|
10065
|
-
staticRenderFns: __vue_staticRenderFns__
|
|
10066
|
-
}, __vue_inject_styles__, {}, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, undefined, undefined, undefined);
|
|
10067
|
-
|
|
10068
|
-
var __vue_component__$1 = __vue_component__;
|
|
10069
|
-
|
|
10070
|
-
var queryParam = {
|
|
10071
|
-
name: "QueryParamService",
|
|
10072
|
-
methods: {
|
|
10073
|
-
// used by core and external apps to dynamically register a watch for every object inside data.q
|
|
10074
|
-
watchQueryData(context) {
|
|
10075
|
-
if (context.q) {
|
|
10076
|
-
Object.keys(context.q).forEach(dataItem => {
|
|
10077
|
-
context.$watch("q." + dataItem, function () {
|
|
10078
|
-
this.dataToQueryParams(context);
|
|
10079
|
-
});
|
|
10080
|
-
});
|
|
10081
|
-
}
|
|
10082
|
-
},
|
|
10083
|
-
|
|
10084
|
-
// used only by external apps to sync UI status with URL query parameters
|
|
10085
|
-
initUrlBindingForApp(context, page) {
|
|
10086
|
-
let queryParams = this.getQueryParamsForApp();
|
|
10087
|
-
const requestedPage = queryParams.page || "status";
|
|
10088
|
-
|
|
10089
|
-
if (requestedPage != page) {
|
|
10090
|
-
return;
|
|
10091
|
-
}
|
|
10092
|
-
|
|
10093
|
-
this.syncQueryParamsAndDataForApp(context);
|
|
10094
|
-
return setInterval(() => this.checkUrlChangeForApp(context, page), 500);
|
|
10095
|
-
},
|
|
10096
|
-
|
|
10097
|
-
// used only by external apps to sync UI status with URL query parameters
|
|
10098
|
-
syncQueryParamsAndDataForApp(context) {
|
|
10099
|
-
this.queryParamsToDataForApp(context);
|
|
10100
|
-
this.dataToQueryParams(context);
|
|
10101
|
-
},
|
|
10102
|
-
|
|
10103
|
-
// used to sync UI status with URL query parameters
|
|
10104
|
-
dataToQueryParams(context) {
|
|
10105
|
-
let queryParams = [];
|
|
10106
|
-
|
|
10107
|
-
for (const [key, value] of Object.entries(context.q)) {
|
|
10108
|
-
queryParams.push(key + "=" + encodeURIComponent(value));
|
|
10109
|
-
}
|
|
10110
|
-
|
|
10111
|
-
const urlWithParams = window.parent.core.$route.path + "?" + queryParams.join("&");
|
|
10112
|
-
|
|
10113
|
-
if (window.parent.core.$route.fullPath != urlWithParams) {
|
|
10114
|
-
window.parent.core.$router.replace(urlWithParams);
|
|
10115
|
-
}
|
|
10116
|
-
},
|
|
10117
|
-
|
|
10118
|
-
// used only by external apps to sync UI status with URL query parameters
|
|
10119
|
-
checkUrlChangeForApp(context, page) {
|
|
10120
|
-
const newUrl = window.parent.location.href;
|
|
10121
|
-
|
|
10122
|
-
if (newUrl != context.currentUrl) {
|
|
10123
|
-
context.currentUrl = newUrl;
|
|
10124
|
-
const queryParams = this.getQueryParamsForApp();
|
|
10125
|
-
const requestedPage = queryParams.page || "status"; // emit app navigation event
|
|
10126
|
-
|
|
10127
|
-
const appInstance = /#\/apps\/(\w+)/.exec(window.parent.location.hash)[1];
|
|
10128
|
-
context.$root.$emit("appNavigation", appInstance, requestedPage);
|
|
10129
|
-
|
|
10130
|
-
if (requestedPage !== page) {
|
|
10131
|
-
// trigger a custom event to change app route
|
|
10132
|
-
window.dispatchEvent(new CustomEvent("changeRoute", {
|
|
10133
|
-
detail: requestedPage
|
|
10134
|
-
}));
|
|
10135
|
-
} else {
|
|
10136
|
-
this.syncQueryParamsAndDataForApp(context);
|
|
10137
|
-
}
|
|
10138
|
-
}
|
|
10139
|
-
|
|
10140
|
-
context.currentUrl = window.parent.location.href;
|
|
10141
|
-
},
|
|
10142
|
-
|
|
10143
|
-
getPage() {
|
|
10144
|
-
let queryParams = this.getQueryParamsForApp();
|
|
10145
|
-
const page = queryParams.page || "status";
|
|
10146
|
-
return page;
|
|
10147
|
-
},
|
|
10148
|
-
|
|
10149
|
-
queryParamsToDataForCore(context, queryParams) {
|
|
10150
|
-
if (context.q) {
|
|
10151
|
-
Object.keys(context.q).forEach(dataItem => {
|
|
10152
|
-
if (typeof queryParams[dataItem] !== "undefined") {
|
|
10153
|
-
context.q[dataItem] = this.getTypedValue(queryParams[dataItem]);
|
|
10154
|
-
}
|
|
10155
|
-
});
|
|
10156
|
-
}
|
|
10157
|
-
},
|
|
10158
|
-
|
|
10159
|
-
// used to map a query string parameter value to its typed value
|
|
10160
|
-
getTypedValue(stringValue) {
|
|
10161
|
-
if (stringValue === "true") {
|
|
10162
|
-
return true;
|
|
10163
|
-
}
|
|
10164
|
-
|
|
10165
|
-
if (stringValue === "false") {
|
|
10166
|
-
return false;
|
|
10167
|
-
}
|
|
10168
|
-
|
|
10169
|
-
return stringValue;
|
|
10170
|
-
},
|
|
10171
|
-
|
|
10172
|
-
// used only by external apps to sync UI status with URL query parameters
|
|
10173
|
-
queryParamsToDataForApp(context) {
|
|
10174
|
-
let queryParams = this.getQueryParamsForApp();
|
|
10175
|
-
|
|
10176
|
-
if (context.q) {
|
|
10177
|
-
Object.keys(context.q).forEach(dataItem => {
|
|
10178
|
-
if (typeof queryParams[dataItem] !== "undefined") {
|
|
10179
|
-
context.q[dataItem] = this.getTypedValue(queryParams[dataItem]);
|
|
10180
|
-
}
|
|
10181
|
-
});
|
|
10182
|
-
}
|
|
10183
|
-
},
|
|
10184
|
-
|
|
10185
|
-
// used only by core to extract query parameters from URL
|
|
10186
|
-
getQueryParamsForCore() {
|
|
10187
|
-
if (!window.location.hash.includes("?") || window.location.hash.split("?").length < 2) {
|
|
10188
|
-
return {};
|
|
10189
|
-
}
|
|
10190
|
-
|
|
10191
|
-
const params = new URLSearchParams(window.location.hash.split("?").pop());
|
|
10192
|
-
let queryParams = {};
|
|
10193
|
-
params.forEach((value, key) => {
|
|
10194
|
-
if (key) {
|
|
10195
|
-
queryParams[key] = value;
|
|
10196
|
-
}
|
|
10197
|
-
});
|
|
10198
|
-
return queryParams;
|
|
10199
|
-
},
|
|
10200
|
-
|
|
10201
|
-
// used only by external apps to extract query parameters from URL
|
|
10202
|
-
getQueryParamsForApp() {
|
|
10203
|
-
if (!window.parent.location.hash.includes("?") || window.parent.location.hash.split("?").length < 2) {
|
|
10204
|
-
return {};
|
|
10205
|
-
}
|
|
10206
|
-
|
|
10207
|
-
const params = new URLSearchParams(window.parent.location.hash.split("?").pop());
|
|
10208
|
-
let queryParams = {};
|
|
10209
|
-
params.forEach((value, key) => {
|
|
10210
|
-
if (key) {
|
|
10211
|
-
queryParams[key] = value;
|
|
10212
|
-
}
|
|
10213
|
-
});
|
|
10214
|
-
return queryParams;
|
|
10215
|
-
}
|
|
10216
|
-
|
|
10217
|
-
}
|
|
10218
|
-
};
|
|
10219
|
-
|
|
10220
|
-
var StorageService = {
|
|
10221
|
-
name: "StorageService",
|
|
10222
|
-
methods: {
|
|
10223
|
-
getFromStorage(prop) {
|
|
10224
|
-
return JSON.parse(localStorage.getItem(prop));
|
|
10225
|
-
},
|
|
10226
|
-
|
|
10227
|
-
saveToStorage(prop, object) {
|
|
10228
|
-
localStorage.setItem(prop, JSON.stringify(object));
|
|
10229
|
-
},
|
|
10230
|
-
|
|
10231
|
-
deleteFromStorage(prop) {
|
|
10232
|
-
localStorage.removeItem(prop);
|
|
10233
|
-
}
|
|
10234
|
-
|
|
10235
|
-
}
|
|
10236
|
-
};
|
|
10237
|
-
|
|
10238
|
-
var task = {
|
|
10239
|
-
name: "TaskService",
|
|
10240
|
-
mixins: [StorageService, UtilService],
|
|
10241
|
-
methods: {
|
|
10242
|
-
getTaskContext(taskPath) {
|
|
10243
|
-
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
10244
|
-
return this.axios.get(`${this.$root.apiUrl}/${taskPath}/context`, {
|
|
10245
|
-
headers: {
|
|
10246
|
-
Authorization: `Bearer ${token}`
|
|
10247
|
-
}
|
|
10248
|
-
});
|
|
10249
|
-
},
|
|
10250
|
-
|
|
10251
|
-
getTaskStatus(taskPath) {
|
|
10252
|
-
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
10253
|
-
return this.axios.get(`${this.$root.apiUrl}/${taskPath}/status`, {
|
|
10254
|
-
headers: {
|
|
10255
|
-
Authorization: `Bearer ${token}`
|
|
10256
|
-
}
|
|
10257
|
-
});
|
|
10258
|
-
},
|
|
10259
|
-
|
|
10260
|
-
getClusterTasks() {
|
|
10261
|
-
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
10262
|
-
return this.axios.get(`${this.$root.apiUrl}/cluster/tasks`, {
|
|
10263
|
-
headers: {
|
|
10264
|
-
Authorization: `Bearer ${token}`
|
|
10265
|
-
}
|
|
10266
|
-
});
|
|
10267
|
-
},
|
|
10268
|
-
|
|
10269
|
-
createClusterTask(taskData) {
|
|
10270
|
-
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
10271
|
-
return this.axios.post(`${this.$root.apiUrl}/cluster/tasks`, taskData, {
|
|
10272
|
-
headers: {
|
|
10273
|
-
Authorization: `Bearer ${token}`
|
|
10274
|
-
}
|
|
10275
|
-
});
|
|
10276
|
-
},
|
|
10277
|
-
|
|
10278
|
-
createClusterTaskForApp(taskData) {
|
|
10279
|
-
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
10280
|
-
return this.axios.post(`${window.parent.core.$root.apiUrl}/cluster/tasks`, taskData, {
|
|
10281
|
-
headers: {
|
|
10282
|
-
Authorization: `Bearer ${token}`
|
|
10283
|
-
}
|
|
10284
|
-
});
|
|
10285
|
-
},
|
|
10286
|
-
|
|
10287
|
-
createModuleTaskForApp(moduleId, taskData) {
|
|
10288
|
-
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
10289
|
-
return this.axios.post(`${window.parent.core.$root.apiUrl}/module/${moduleId}/tasks`, taskData, {
|
|
10290
|
-
headers: {
|
|
10291
|
-
Authorization: `Bearer ${token}`
|
|
10292
|
-
}
|
|
10293
|
-
});
|
|
10294
|
-
},
|
|
10295
|
-
|
|
10296
|
-
createNodeTask(nodeId, taskData) {
|
|
10297
|
-
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
10298
|
-
return this.axios.post(`${this.$root.apiUrl}/node/${nodeId}/tasks`, taskData, {
|
|
10299
|
-
headers: {
|
|
10300
|
-
Authorization: `Bearer ${token}`
|
|
10301
|
-
}
|
|
10302
|
-
});
|
|
10303
|
-
},
|
|
10304
|
-
|
|
10305
|
-
getTaskTitle(task) {
|
|
10306
|
-
if (task && task.context && task.context.extra && task.context.extra.title) {
|
|
10307
|
-
return task.context.extra.title;
|
|
10308
|
-
} else {
|
|
10309
|
-
return "";
|
|
10310
|
-
}
|
|
10311
|
-
},
|
|
10312
|
-
|
|
10313
|
-
getTaskKind(task) {
|
|
10314
|
-
switch (task.status) {
|
|
10315
|
-
case "aborted":
|
|
10316
|
-
case "validation-failed":
|
|
10317
|
-
return "error";
|
|
10318
|
-
|
|
10319
|
-
case "completed":
|
|
10320
|
-
return "success";
|
|
10321
|
-
|
|
10322
|
-
case "pending":
|
|
10323
|
-
return "warning";
|
|
10324
|
-
|
|
10325
|
-
default:
|
|
10326
|
-
return "info";
|
|
10327
|
-
}
|
|
10328
|
-
},
|
|
10329
|
-
|
|
10330
|
-
getTaskIcon(task) {
|
|
10331
|
-
switch (task.status) {
|
|
10332
|
-
case "aborted":
|
|
10333
|
-
case "validation-failed":
|
|
10334
|
-
return ErrorFilled16;
|
|
10335
|
-
|
|
10336
|
-
case "completed":
|
|
10337
|
-
return CheckmarkFilled16;
|
|
10338
|
-
|
|
10339
|
-
case "pending":
|
|
10340
|
-
return Warning16;
|
|
10341
|
-
|
|
10342
|
-
default:
|
|
10343
|
-
return InformationFilled16;
|
|
10344
|
-
}
|
|
10345
|
-
},
|
|
10346
|
-
|
|
10347
|
-
getTaskStatusDescription(task, rootTask = true) {
|
|
10348
|
-
let taskLabel = task.context.action; // use taskName instead of action, if available
|
|
10349
|
-
|
|
10350
|
-
if (task.context.extra && task.context.extra.taskName) {
|
|
10351
|
-
taskLabel = task.context.extra.taskName;
|
|
10352
|
-
}
|
|
10353
|
-
|
|
10354
|
-
const taskOrSubtask = rootTask ? "task" : "subtask";
|
|
10355
|
-
let taskPrefix = "";
|
|
10356
|
-
|
|
10357
|
-
if (task.result && task.result.file) {
|
|
10358
|
-
taskPrefix = task.result.file.split("task/")[0];
|
|
10359
|
-
}
|
|
10360
|
-
|
|
10361
|
-
taskLabel = taskPrefix + taskLabel;
|
|
10362
|
-
|
|
10363
|
-
switch (task.status) {
|
|
10364
|
-
case "aborted":
|
|
10365
|
-
return this.$t("task." + taskOrSubtask + "_failed", {
|
|
10366
|
-
task: taskLabel
|
|
10367
|
-
});
|
|
10368
|
-
|
|
10369
|
-
case "validation-failed":
|
|
10370
|
-
return this.$t("task." + taskOrSubtask + "_failed_validation", {
|
|
10371
|
-
task: taskLabel
|
|
10372
|
-
});
|
|
10373
|
-
|
|
10374
|
-
case "completed":
|
|
10375
|
-
return this.$t("task." + taskOrSubtask + "_completed", {
|
|
10376
|
-
task: taskLabel
|
|
10377
|
-
});
|
|
10378
|
-
|
|
10379
|
-
case "pending":
|
|
10380
|
-
return this.$t("task." + taskOrSubtask + "_pending", {
|
|
10381
|
-
task: taskLabel
|
|
10382
|
-
});
|
|
10383
|
-
|
|
10384
|
-
case "running":
|
|
10385
|
-
return this.$t("task." + taskOrSubtask + "_running", {
|
|
10386
|
-
task: taskLabel
|
|
10387
|
-
});
|
|
10388
|
-
|
|
10389
|
-
default:
|
|
10390
|
-
return "";
|
|
10391
|
-
}
|
|
10392
|
-
},
|
|
10393
|
-
|
|
10394
|
-
createErrorNotification(err, message) {
|
|
10395
|
-
console.error(err);
|
|
10396
|
-
this.$root.$emit("createErrorNotification", err, message);
|
|
10397
|
-
},
|
|
10398
|
-
|
|
10399
|
-
createErrorNotificationForApp(err, message) {
|
|
10400
|
-
console.error(err);
|
|
10401
|
-
window.parent.core.$root.$emit("createErrorNotification", err, message);
|
|
10402
|
-
}
|
|
10403
|
-
|
|
10404
|
-
}
|
|
10405
|
-
};
|
|
10406
|
-
|
|
10407
|
-
var dataTable = {
|
|
10408
|
-
name: "DataTableService",
|
|
10409
|
-
mixins: [UtilService],
|
|
10410
|
-
|
|
10411
|
-
data() {
|
|
10412
|
-
return {
|
|
10413
|
-
pageStart: 0,
|
|
10414
|
-
pageNumber: 0,
|
|
10415
|
-
pageLength: 0
|
|
10416
|
-
};
|
|
10417
|
-
},
|
|
10418
|
-
|
|
10419
|
-
computed: {
|
|
10420
|
-
pagination() {
|
|
10421
|
-
return {
|
|
10422
|
-
numberOfItems: this.tableRows.length,
|
|
10423
|
-
pageSizes: [10, 25, 50, 100]
|
|
10424
|
-
};
|
|
10425
|
-
},
|
|
10426
|
-
|
|
10427
|
-
tablePage() {
|
|
10428
|
-
if (this.pagination) {
|
|
10429
|
-
return this.tableRows.slice(this.pageStart, this.pageStart + this.pageLength);
|
|
10430
|
-
} else {
|
|
10431
|
-
return this.tableRows;
|
|
10432
|
-
}
|
|
10433
|
-
}
|
|
10434
|
-
|
|
10435
|
-
},
|
|
10436
|
-
methods: {
|
|
10437
|
-
paginateTable(ev) {
|
|
10438
|
-
this.pageStart = ev.start - 1;
|
|
10439
|
-
this.pageNumber = ev.page;
|
|
10440
|
-
this.pageLength = ev.length;
|
|
10441
|
-
},
|
|
10442
|
-
|
|
10443
|
-
sortTable(ev) {
|
|
10444
|
-
const order = ev.order;
|
|
10445
|
-
|
|
10446
|
-
if (order === "none") {
|
|
10447
|
-
return;
|
|
10448
|
-
}
|
|
10449
|
-
|
|
10450
|
-
const propertyToSort = this.tableColumns[ev.index];
|
|
10451
|
-
this.tableRows.sort(this.sortByProperty(propertyToSort));
|
|
10452
|
-
|
|
10453
|
-
if (ev.order === "descending") {
|
|
10454
|
-
this.tableRows.reverse();
|
|
10455
|
-
}
|
|
10456
|
-
}
|
|
10457
|
-
|
|
10458
|
-
}
|
|
10459
|
-
};
|
|
10460
|
-
|
|
10461
|
-
function getPageTitle(vm) {
|
|
10462
|
-
const {
|
|
10463
|
-
pageTitle
|
|
10464
|
-
} = vm.$options;
|
|
10465
|
-
|
|
10466
|
-
if (pageTitle) {
|
|
10467
|
-
return typeof pageTitle === "function" ? pageTitle.call(vm) : pageTitle;
|
|
10468
|
-
}
|
|
10469
|
-
}
|
|
10470
|
-
|
|
10471
|
-
var pageTitle = {
|
|
10472
|
-
name: "PageTitleService",
|
|
10473
|
-
|
|
10474
|
-
created() {
|
|
10475
|
-
const pageTitle = getPageTitle(this);
|
|
10476
|
-
|
|
10477
|
-
if (pageTitle) {
|
|
10478
|
-
// window.document would be ok for core, but with window.parent.document we support external apps too (window.parent == window, if it's the root window)
|
|
10479
|
-
window.parent.document.title = pageTitle;
|
|
10480
|
-
}
|
|
10481
|
-
}
|
|
10482
|
-
|
|
10483
|
-
};
|
|
9903
|
+
var NsPagination = __vue_component__$g;
|
|
10484
9904
|
|
|
10485
9905
|
var v$3 = "5.6.1";
|
|
10486
9906
|
var fr$3 = 24;
|
|
@@ -17504,16 +16924,1373 @@ var GearsLottie = {
|
|
|
17504
16924
|
markers: markers
|
|
17505
16925
|
};
|
|
17506
16926
|
|
|
17507
|
-
var
|
|
17508
|
-
name: "IconService",
|
|
16927
|
+
var LottieService = {
|
|
16928
|
+
name: "IconService",
|
|
16929
|
+
|
|
16930
|
+
data() {
|
|
16931
|
+
return {
|
|
16932
|
+
GhostLottie,
|
|
16933
|
+
GhostDarkBgLottie,
|
|
16934
|
+
RocketLottie,
|
|
16935
|
+
GearsLottie
|
|
16936
|
+
};
|
|
16937
|
+
}
|
|
16938
|
+
|
|
16939
|
+
};
|
|
16940
|
+
|
|
16941
|
+
//
|
|
16942
|
+
var script = {
|
|
16943
|
+
name: "NsDataTable",
|
|
16944
|
+
extends: CvDataTable,
|
|
16945
|
+
components: {
|
|
16946
|
+
CvButton,
|
|
16947
|
+
CvDataTableHeading,
|
|
16948
|
+
CvDataTableRow,
|
|
16949
|
+
CvDataTableCell,
|
|
16950
|
+
CvCheckbox,
|
|
16951
|
+
NsWrapper,
|
|
16952
|
+
Search16,
|
|
16953
|
+
Close16,
|
|
16954
|
+
ChevronRight16,
|
|
16955
|
+
NsPagination
|
|
16956
|
+
},
|
|
16957
|
+
mixins: [UtilService, LottieService],
|
|
16958
|
+
props: {
|
|
16959
|
+
actionBarAriaLabel: {
|
|
16960
|
+
type: String,
|
|
16961
|
+
default: "Table Action Bar"
|
|
16962
|
+
},
|
|
16963
|
+
collapseAllAriaLabel: {
|
|
16964
|
+
type: String,
|
|
16965
|
+
default: "Collapse all rows"
|
|
16966
|
+
},
|
|
16967
|
+
expandAllAriaLabel: {
|
|
16968
|
+
type: String,
|
|
16969
|
+
default: "Expand all rows"
|
|
16970
|
+
},
|
|
16971
|
+
selectAllAriaLabel: {
|
|
16972
|
+
type: String,
|
|
16973
|
+
default: "Select all rows"
|
|
16974
|
+
},
|
|
16975
|
+
autoWidth: Boolean,
|
|
16976
|
+
batchCancelLabel: {
|
|
16977
|
+
type: String,
|
|
16978
|
+
default: "cancel"
|
|
16979
|
+
},
|
|
16980
|
+
borderless: Boolean,
|
|
16981
|
+
overflowMenu: {
|
|
16982
|
+
type: [Boolean, Array],
|
|
16983
|
+
default: () => []
|
|
16984
|
+
},
|
|
16985
|
+
pageSizes: {
|
|
16986
|
+
type: Array,
|
|
16987
|
+
default: () => [10, 25, 50, 100]
|
|
16988
|
+
},
|
|
16989
|
+
rowSize: {
|
|
16990
|
+
type: String,
|
|
16991
|
+
default: "standard",
|
|
16992
|
+
validator: val => ["compact", "short", "standard", "tall", ""].includes(val)
|
|
16993
|
+
},
|
|
16994
|
+
searchLabel: {
|
|
16995
|
+
type: String,
|
|
16996
|
+
default: "Search"
|
|
16997
|
+
},
|
|
16998
|
+
searchPlaceholder: {
|
|
16999
|
+
type: String,
|
|
17000
|
+
default: "Search"
|
|
17001
|
+
},
|
|
17002
|
+
searchClearLabel: {
|
|
17003
|
+
type: String,
|
|
17004
|
+
default: "Clear search"
|
|
17005
|
+
},
|
|
17006
|
+
sortable: Boolean,
|
|
17007
|
+
title: String,
|
|
17008
|
+
columns: Array,
|
|
17009
|
+
data: Array,
|
|
17010
|
+
zebra: Boolean,
|
|
17011
|
+
stickyHeader: Boolean,
|
|
17012
|
+
rowsSelected: {
|
|
17013
|
+
type: Array,
|
|
17014
|
+
default: () => []
|
|
17015
|
+
},
|
|
17016
|
+
helperText: {
|
|
17017
|
+
type: String,
|
|
17018
|
+
default: undefined
|
|
17019
|
+
},
|
|
17020
|
+
expandingSearch: {
|
|
17021
|
+
type: Boolean,
|
|
17022
|
+
default: true
|
|
17023
|
+
},
|
|
17024
|
+
skeleton: Boolean,
|
|
17025
|
+
hasExpandAll: Boolean,
|
|
17026
|
+
staticWidth: Boolean,
|
|
17027
|
+
// added
|
|
17028
|
+
allRows: {
|
|
17029
|
+
type: Array,
|
|
17030
|
+
default: () => []
|
|
17031
|
+
},
|
|
17032
|
+
rawColumns: {
|
|
17033
|
+
type: Array,
|
|
17034
|
+
default: () => []
|
|
17035
|
+
},
|
|
17036
|
+
isSearchable: {
|
|
17037
|
+
type: Boolean,
|
|
17038
|
+
default: false
|
|
17039
|
+
},
|
|
17040
|
+
isLoading: {
|
|
17041
|
+
type: Boolean,
|
|
17042
|
+
default: false
|
|
17043
|
+
},
|
|
17044
|
+
skeletonRows: {
|
|
17045
|
+
type: Number,
|
|
17046
|
+
default: 10
|
|
17047
|
+
},
|
|
17048
|
+
noSearchResultsLabel: {
|
|
17049
|
+
type: String,
|
|
17050
|
+
default: "No results"
|
|
17051
|
+
},
|
|
17052
|
+
noSearchResultsDescription: {
|
|
17053
|
+
type: String,
|
|
17054
|
+
default: "Try changing your search query"
|
|
17055
|
+
},
|
|
17056
|
+
// default value of following props is defined in NsPagination
|
|
17057
|
+
itemsPerPageLabel: {
|
|
17058
|
+
type: String,
|
|
17059
|
+
default: undefined
|
|
17060
|
+
},
|
|
17061
|
+
rangeOfTotalItemsLabel: {
|
|
17062
|
+
type: String,
|
|
17063
|
+
default: undefined
|
|
17064
|
+
},
|
|
17065
|
+
ofTotalPagesLabel: {
|
|
17066
|
+
type: String,
|
|
17067
|
+
default: undefined
|
|
17068
|
+
},
|
|
17069
|
+
backwardText: {
|
|
17070
|
+
type: String,
|
|
17071
|
+
default: undefined
|
|
17072
|
+
},
|
|
17073
|
+
forwardText: {
|
|
17074
|
+
type: String,
|
|
17075
|
+
default: undefined
|
|
17076
|
+
},
|
|
17077
|
+
pageNumberLabel: {
|
|
17078
|
+
type: String,
|
|
17079
|
+
default: undefined
|
|
17080
|
+
}
|
|
17081
|
+
},
|
|
17082
|
+
|
|
17083
|
+
data() {
|
|
17084
|
+
return {
|
|
17085
|
+
filteredRows: [],
|
|
17086
|
+
searchFilter: "",
|
|
17087
|
+
pageStart: 0,
|
|
17088
|
+
pageNumber: 0,
|
|
17089
|
+
pageLength: 0
|
|
17090
|
+
};
|
|
17091
|
+
},
|
|
17092
|
+
|
|
17093
|
+
watch: {
|
|
17094
|
+
allRows: function () {
|
|
17095
|
+
this.filterRows();
|
|
17096
|
+
},
|
|
17097
|
+
filteredRows: function () {
|
|
17098
|
+
this.$emit("updatePage", this.tablePage);
|
|
17099
|
+
}
|
|
17100
|
+
},
|
|
17101
|
+
|
|
17102
|
+
created() {
|
|
17103
|
+
this.filterRows();
|
|
17104
|
+
},
|
|
17105
|
+
|
|
17106
|
+
computed: {
|
|
17107
|
+
newPagination() {
|
|
17108
|
+
if (this.pageSizes.length) {
|
|
17109
|
+
return {
|
|
17110
|
+
numberOfItems: this.filteredRows.length,
|
|
17111
|
+
pageSizes: this.pageSizes
|
|
17112
|
+
};
|
|
17113
|
+
} else {
|
|
17114
|
+
return false;
|
|
17115
|
+
}
|
|
17116
|
+
},
|
|
17117
|
+
|
|
17118
|
+
tablePage() {
|
|
17119
|
+
if (this.pageSizes.length) {
|
|
17120
|
+
return this.filteredRows.slice(this.pageStart, this.pageStart + this.pageLength);
|
|
17121
|
+
} else {
|
|
17122
|
+
return this.filteredRows;
|
|
17123
|
+
}
|
|
17124
|
+
},
|
|
17125
|
+
|
|
17126
|
+
internalPagination() {
|
|
17127
|
+
if (typeof this.newPagination === "object") {
|
|
17128
|
+
return this.newPagination;
|
|
17129
|
+
} else {
|
|
17130
|
+
if (this.newPagination === true) {
|
|
17131
|
+
return {};
|
|
17132
|
+
}
|
|
17133
|
+
}
|
|
17134
|
+
|
|
17135
|
+
return false;
|
|
17136
|
+
}
|
|
17137
|
+
|
|
17138
|
+
},
|
|
17139
|
+
methods: {
|
|
17140
|
+
onSort(srcComponent, val) {
|
|
17141
|
+
let index;
|
|
17142
|
+
|
|
17143
|
+
for (let colIndex in this.registeredHeadings) {
|
|
17144
|
+
const column = this.registeredHeadings[colIndex];
|
|
17145
|
+
|
|
17146
|
+
if (column.uid === srcComponent.uid) {
|
|
17147
|
+
column.internalOrder = val;
|
|
17148
|
+
index = colIndex;
|
|
17149
|
+
} else {
|
|
17150
|
+
column.internalOrder = "none";
|
|
17151
|
+
}
|
|
17152
|
+
}
|
|
17153
|
+
|
|
17154
|
+
this.sortTable({
|
|
17155
|
+
index,
|
|
17156
|
+
order: val
|
|
17157
|
+
});
|
|
17158
|
+
},
|
|
17159
|
+
|
|
17160
|
+
onSearchInput() {
|
|
17161
|
+
// workaround to detect click on clear search button; search is handled by filterRows() with debounce
|
|
17162
|
+
if (!this.searchFilter) {
|
|
17163
|
+
this.filteredRows = this.allRows;
|
|
17164
|
+
this.focusElement("tableSearch");
|
|
17165
|
+
}
|
|
17166
|
+
},
|
|
17167
|
+
|
|
17168
|
+
filterRows() {
|
|
17169
|
+
if (!this.searchFilter) {
|
|
17170
|
+
this.filteredRows = this.allRows;
|
|
17171
|
+
} else if (this.searchFilter) {
|
|
17172
|
+
// clean query
|
|
17173
|
+
const cleanRegex = /[^a-zA-Z0-9]/g;
|
|
17174
|
+
const queryText = this.searchFilter.replace(cleanRegex, "");
|
|
17175
|
+
const searchResults = this.allRows.filter(option => {
|
|
17176
|
+
// compare query text with attributes option
|
|
17177
|
+
return this.rawColumns.some(searchField => {
|
|
17178
|
+
const searchValue = option[searchField];
|
|
17179
|
+
|
|
17180
|
+
if (searchValue) {
|
|
17181
|
+
if (Array.isArray(searchValue)) {
|
|
17182
|
+
// search field is an array (e.g. groups)
|
|
17183
|
+
return searchValue.some(elem => {
|
|
17184
|
+
return new RegExp(queryText, "i").test(elem.replace(cleanRegex, ""));
|
|
17185
|
+
});
|
|
17186
|
+
} else {
|
|
17187
|
+
// search field is a simple string
|
|
17188
|
+
return new RegExp(queryText, "i").test(searchValue.replace(cleanRegex, ""));
|
|
17189
|
+
}
|
|
17190
|
+
} else {
|
|
17191
|
+
return false;
|
|
17192
|
+
}
|
|
17193
|
+
});
|
|
17194
|
+
}, this);
|
|
17195
|
+
this.filteredRows = searchResults;
|
|
17196
|
+
}
|
|
17197
|
+
},
|
|
17198
|
+
|
|
17199
|
+
paginateTable(ev) {
|
|
17200
|
+
this.pageStart = ev.start - 1;
|
|
17201
|
+
this.pageNumber = ev.page;
|
|
17202
|
+
this.pageLength = ev.length;
|
|
17203
|
+
this.$emit("updatePage", this.tablePage);
|
|
17204
|
+
},
|
|
17205
|
+
|
|
17206
|
+
sortTable(ev) {
|
|
17207
|
+
const order = ev.order;
|
|
17208
|
+
|
|
17209
|
+
if (order === "none") {
|
|
17210
|
+
return;
|
|
17211
|
+
}
|
|
17212
|
+
|
|
17213
|
+
const propertyToSort = this.rawColumns[ev.index];
|
|
17214
|
+
this.filteredRows.sort(this.sortByProperty(propertyToSort));
|
|
17215
|
+
|
|
17216
|
+
if (ev.order === "descending") {
|
|
17217
|
+
this.filteredRows.reverse();
|
|
17218
|
+
}
|
|
17219
|
+
|
|
17220
|
+
this.$emit("updatePage", this.tablePage);
|
|
17221
|
+
}
|
|
17222
|
+
|
|
17223
|
+
}
|
|
17224
|
+
};
|
|
17225
|
+
|
|
17226
|
+
/* script */
|
|
17227
|
+
const __vue_script__ = script;
|
|
17228
|
+
/* template */
|
|
17229
|
+
|
|
17230
|
+
var __vue_render__$7 = function () {
|
|
17231
|
+
var _obj, _obj$1, _obj$2, _obj$3;
|
|
17232
|
+
|
|
17233
|
+
var _vm = this;
|
|
17234
|
+
|
|
17235
|
+
var _h = _vm.$createElement;
|
|
17236
|
+
|
|
17237
|
+
var _c = _vm._self._c || _h;
|
|
17238
|
+
|
|
17239
|
+
return _c('div', [_vm.isSearchable ? _c('cv-search', {
|
|
17240
|
+
directives: [{
|
|
17241
|
+
name: "debounce",
|
|
17242
|
+
rawName: "v-debounce",
|
|
17243
|
+
value: _vm.filterRows,
|
|
17244
|
+
expression: "filterRows"
|
|
17245
|
+
}],
|
|
17246
|
+
ref: "tableSearch",
|
|
17247
|
+
attrs: {
|
|
17248
|
+
"label": _vm.searchLabel,
|
|
17249
|
+
"placeholder": _vm.searchPlaceholder,
|
|
17250
|
+
"clear-aria-label": _vm.searchClearLabel,
|
|
17251
|
+
"disabled": _vm.isLoading,
|
|
17252
|
+
"light": false
|
|
17253
|
+
},
|
|
17254
|
+
on: {
|
|
17255
|
+
"input": _vm.onSearchInput
|
|
17256
|
+
},
|
|
17257
|
+
model: {
|
|
17258
|
+
value: _vm.searchFilter,
|
|
17259
|
+
callback: function ($$v) {
|
|
17260
|
+
_vm.searchFilter = $$v;
|
|
17261
|
+
},
|
|
17262
|
+
expression: "searchFilter"
|
|
17263
|
+
}
|
|
17264
|
+
}) : _vm._e(), _vm._v(" "), _vm.isLoading ? _c('cv-data-table-skeleton', {
|
|
17265
|
+
attrs: {
|
|
17266
|
+
"columns": _vm.columns,
|
|
17267
|
+
"rows": _vm.skeletonRows
|
|
17268
|
+
}
|
|
17269
|
+
}) : !_vm.allRows.length ? [_c('cv-tile', [_vm._t("empty-state")], 2)] : !_vm.filteredRows.length ? _c('cv-tile', [_c('NsEmptyState', {
|
|
17270
|
+
attrs: {
|
|
17271
|
+
"title": _vm.noSearchResultsLabel,
|
|
17272
|
+
"animationData": _vm.GhostLottie,
|
|
17273
|
+
"animationTitle": "ghost",
|
|
17274
|
+
"loop": 1
|
|
17275
|
+
},
|
|
17276
|
+
scopedSlots: _vm._u([{
|
|
17277
|
+
key: "description",
|
|
17278
|
+
fn: function () {
|
|
17279
|
+
return [_c('div', [_vm._v(_vm._s(_vm.noSearchResultsDescription))])];
|
|
17280
|
+
},
|
|
17281
|
+
proxy: true
|
|
17282
|
+
}])
|
|
17283
|
+
})], 1) : _c('div', {
|
|
17284
|
+
staticClass: "cv-data-table",
|
|
17285
|
+
style: _vm.tableStyle
|
|
17286
|
+
}, [_c('div', {
|
|
17287
|
+
class: _vm.carbonPrefix + "--data-table-container"
|
|
17288
|
+
}, [_vm.hasTableHeader ? _c('div', {
|
|
17289
|
+
class: _vm.carbonPrefix + "--data-table-header"
|
|
17290
|
+
}, [_vm.title ? _c('h4', {
|
|
17291
|
+
class: _vm.carbonPrefix + "--data-table-header__title"
|
|
17292
|
+
}, [_vm._v("\n " + _vm._s(_vm.title) + "\n ")]) : _vm._e(), _vm._v(" "), _vm.isHelper ? _c('p', {
|
|
17293
|
+
class: _vm.carbonPrefix + "--data-table-header__description"
|
|
17294
|
+
}, [_vm._t("helper-text", function () {
|
|
17295
|
+
return [_vm._v(_vm._s(_vm.helperText))];
|
|
17296
|
+
})], 2) : _vm._e()]) : _vm._e(), _vm._v(" "), _vm.hasToolbar ? _c('section', {
|
|
17297
|
+
class: _vm.carbonPrefix + "--table-toolbar"
|
|
17298
|
+
}, [_c('div', {
|
|
17299
|
+
directives: [{
|
|
17300
|
+
name: "show",
|
|
17301
|
+
rawName: "v-show",
|
|
17302
|
+
value: _vm.hasBatchActions,
|
|
17303
|
+
expression: "hasBatchActions"
|
|
17304
|
+
}],
|
|
17305
|
+
class: [_vm.carbonPrefix + "--batch-actions", (_obj = {}, _obj[_vm.carbonPrefix + "--batch-actions--active"] = _vm.batchActive, _obj)],
|
|
17306
|
+
attrs: {
|
|
17307
|
+
"aria-hidden": !_vm.batchActive,
|
|
17308
|
+
"aria-label": _vm.actionBarAriaLabel
|
|
17309
|
+
}
|
|
17310
|
+
}, [_c('div', {
|
|
17311
|
+
class: _vm.carbonPrefix + "--action-list"
|
|
17312
|
+
}, [_vm._t("batch-actions"), _vm._v(" "), _c('cv-button', {
|
|
17313
|
+
class: _vm.carbonPrefix + "--batch-summary__cancel",
|
|
17314
|
+
attrs: {
|
|
17315
|
+
"size": "small"
|
|
17316
|
+
},
|
|
17317
|
+
on: {
|
|
17318
|
+
"click": _vm.deselect
|
|
17319
|
+
}
|
|
17320
|
+
}, [_vm._v(_vm._s(_vm.batchCancelLabel))])], 2), _vm._v(" "), _c('div', {
|
|
17321
|
+
class: _vm.carbonPrefix + "--batch-summary"
|
|
17322
|
+
}, [_c('p', {
|
|
17323
|
+
class: _vm.carbonPrefix + "--batch-summary__para"
|
|
17324
|
+
}, [_c('span', {
|
|
17325
|
+
attrs: {
|
|
17326
|
+
"data-items-selected": ""
|
|
17327
|
+
}
|
|
17328
|
+
}, [_vm._t("items-selected", function () {
|
|
17329
|
+
return [_vm._v(_vm._s(_vm.dataRowsSelected.length) + " items selected")];
|
|
17330
|
+
}, {
|
|
17331
|
+
"scope": {
|
|
17332
|
+
count: _vm.dataRowsSelected.length
|
|
17333
|
+
}
|
|
17334
|
+
})], 2)])])]), _vm._v(" "), _c('div', {
|
|
17335
|
+
class: _vm.carbonPrefix + "--toolbar-content"
|
|
17336
|
+
}, [_vm.$listeners.search ? _c('div', {
|
|
17337
|
+
ref: "searchContainer",
|
|
17338
|
+
class: (_obj$1 = {}, _obj$1[_vm.carbonPrefix + "--toolbar-search-container-active"] = _vm.searchActive || _vm.searchValue.length > 0, _obj$1[_vm.carbonPrefix + "--toolbar-search-container-persistent"] = !_vm.expandingSearch, _obj$1[_vm.carbonPrefix + "--toolbar-search-container-expandable"] = _vm.expandingSearch, _obj$1)
|
|
17339
|
+
}, [_c('div', {
|
|
17340
|
+
class: _vm.carbonPrefix + "--search " + _vm.carbonPrefix + "--search--sm",
|
|
17341
|
+
attrs: {
|
|
17342
|
+
"data-search": "",
|
|
17343
|
+
"role": "search"
|
|
17344
|
+
}
|
|
17345
|
+
}, [_c('div', {
|
|
17346
|
+
ref: "magnifier",
|
|
17347
|
+
class: _vm.carbonPrefix + "--search-magnifier",
|
|
17348
|
+
attrs: {
|
|
17349
|
+
"tabindex": "0"
|
|
17350
|
+
},
|
|
17351
|
+
on: {
|
|
17352
|
+
"click": function ($event) {
|
|
17353
|
+
return _vm.checkSearchExpand(true);
|
|
17354
|
+
},
|
|
17355
|
+
"keydown": [function ($event) {
|
|
17356
|
+
if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
|
|
17357
|
+
return null;
|
|
17358
|
+
}
|
|
17359
|
+
|
|
17360
|
+
$event.preventDefault();
|
|
17361
|
+
return _vm.checkSearchExpand(true);
|
|
17362
|
+
}, function ($event) {
|
|
17363
|
+
if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "space", 32, $event.key, [" ", "Spacebar"])) {
|
|
17364
|
+
return null;
|
|
17365
|
+
}
|
|
17366
|
+
|
|
17367
|
+
$event.preventDefault();
|
|
17368
|
+
}],
|
|
17369
|
+
"keyup": function ($event) {
|
|
17370
|
+
if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "space", 32, $event.key, [" ", "Spacebar"])) {
|
|
17371
|
+
return null;
|
|
17372
|
+
}
|
|
17373
|
+
|
|
17374
|
+
$event.preventDefault();
|
|
17375
|
+
return _vm.checkSearchExpand(true);
|
|
17376
|
+
}
|
|
17377
|
+
}
|
|
17378
|
+
}, [_c('Search16', {
|
|
17379
|
+
class: _vm.carbonPrefix + "--toolbar-action__icon"
|
|
17380
|
+
})], 1), _vm._v(" "), _c('label', {
|
|
17381
|
+
class: _vm.carbonPrefix + "--label",
|
|
17382
|
+
attrs: {
|
|
17383
|
+
"for": _vm.uid
|
|
17384
|
+
}
|
|
17385
|
+
}, [_vm._v(_vm._s(_vm.searchLabel))]), _vm._v(" "), _c('input', {
|
|
17386
|
+
directives: [{
|
|
17387
|
+
name: "model",
|
|
17388
|
+
rawName: "v-model",
|
|
17389
|
+
value: _vm.searchValue,
|
|
17390
|
+
expression: "searchValue"
|
|
17391
|
+
}],
|
|
17392
|
+
ref: "search",
|
|
17393
|
+
class: _vm.carbonPrefix + "--search-input",
|
|
17394
|
+
attrs: {
|
|
17395
|
+
"type": "text",
|
|
17396
|
+
"id": _vm.uid,
|
|
17397
|
+
"role": "search",
|
|
17398
|
+
"placeholder": _vm.searchPlaceholder,
|
|
17399
|
+
"aria-labelledby": _vm.uid
|
|
17400
|
+
},
|
|
17401
|
+
domProps: {
|
|
17402
|
+
"value": _vm.searchValue
|
|
17403
|
+
},
|
|
17404
|
+
on: {
|
|
17405
|
+
"input": [function ($event) {
|
|
17406
|
+
if ($event.target.composing) {
|
|
17407
|
+
return;
|
|
17408
|
+
}
|
|
17409
|
+
|
|
17410
|
+
_vm.searchValue = $event.target.value;
|
|
17411
|
+
}, _vm.onSearch],
|
|
17412
|
+
"keydown": function ($event) {
|
|
17413
|
+
if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
|
|
17414
|
+
return null;
|
|
17415
|
+
}
|
|
17416
|
+
|
|
17417
|
+
$event.preventDefault();
|
|
17418
|
+
return _vm.checkSearchExpand(false);
|
|
17419
|
+
}
|
|
17420
|
+
}
|
|
17421
|
+
}), _vm._v(" "), _c('button', {
|
|
17422
|
+
class: [_vm.carbonPrefix + "--search-close", (_obj$2 = {}, _obj$2[_vm.carbonPrefix + "--search-close--hidden"] = !_vm.clearSearchVisible, _obj$2)],
|
|
17423
|
+
attrs: {
|
|
17424
|
+
"title": _vm.searchClearLabel,
|
|
17425
|
+
"aria-label": _vm.searchClearLabel,
|
|
17426
|
+
"type": "button"
|
|
17427
|
+
},
|
|
17428
|
+
on: {
|
|
17429
|
+
"click": _vm.onClearClick
|
|
17430
|
+
}
|
|
17431
|
+
}, [_c('Close16')], 1)])]) : _vm._e(), _vm._v(" "), _vm._t("actions")], 2)]) : _vm._e(), _vm._v(" "), _c('div', {
|
|
17432
|
+
class: _vm.carbonPrefix + "--data-table-content"
|
|
17433
|
+
}, [_c('NsWrapper', {
|
|
17434
|
+
class: _vm.carbonPrefix + "--data-table_inner-container",
|
|
17435
|
+
attrs: {
|
|
17436
|
+
"tagType": _vm.stickyHeader ? _vm.section : ''
|
|
17437
|
+
}
|
|
17438
|
+
}, [_c('table', {
|
|
17439
|
+
class: [_vm.carbonPrefix + "--data-table", (_obj$3 = {}, _obj$3[_vm.carbonPrefix + "--data-table--" + _vm.rowSize + " "] = !(_vm.rowSize.length === 0 || _vm.rowSize === 'standard'), _obj$3[_vm.carbonPrefix + "--data-table--zebra "] = _vm.zebra, _obj$3[_vm.carbonPrefix + "--data-table--sticky-header "] = _vm.stickyHeader, _obj$3[_vm.carbonPrefix + "--data-table--no-border "] = _vm.borderless, _obj$3[_vm.carbonPrefix + "--skeleton "] = _vm.skeleton, _obj$3[_vm.carbonPrefix + "--data-table--sort "] = _vm.isSortable, _obj$3[_vm.carbonPrefix + "--data-table--static "] = _vm.staticWidth, _obj$3)]
|
|
17440
|
+
}, [_c('thead', [_c('tr', [_vm.hasExpandables ? _c('th', {
|
|
17441
|
+
class: _vm.carbonPrefix + "--table-expand",
|
|
17442
|
+
attrs: {
|
|
17443
|
+
"data-previous-value": _vm.dataExpandAll ? 'collapsed' : 'expanded'
|
|
17444
|
+
}
|
|
17445
|
+
}, [_vm.hasExpandAll ? _c('button', {
|
|
17446
|
+
class: _vm.carbonPrefix + "--table-expand__button",
|
|
17447
|
+
attrs: {
|
|
17448
|
+
"type": "button",
|
|
17449
|
+
"aria-label": _vm.dataExpandAll ? _vm.collapseAllAriaLabel : _vm.expandAllAriaLabel
|
|
17450
|
+
},
|
|
17451
|
+
on: {
|
|
17452
|
+
"click": _vm.toggleExpandAll
|
|
17453
|
+
}
|
|
17454
|
+
}, [_c('ChevronRight16', {
|
|
17455
|
+
class: _vm.carbonPrefix + "--table-expand__svg"
|
|
17456
|
+
})], 1) : _vm._e()]) : _vm._e(), _vm._v(" "), _vm.hasBatchActions ? _c('th', {
|
|
17457
|
+
class: _vm.carbonPrefix + "--table-column-checkbox"
|
|
17458
|
+
}, [_c('cv-checkbox', {
|
|
17459
|
+
attrs: {
|
|
17460
|
+
"form-item": false,
|
|
17461
|
+
"value": "headingCheck",
|
|
17462
|
+
"label": _vm.selectAllAriaLabel,
|
|
17463
|
+
"hideLabel": ""
|
|
17464
|
+
},
|
|
17465
|
+
on: {
|
|
17466
|
+
"change": _vm.onHeadingCheckChange
|
|
17467
|
+
},
|
|
17468
|
+
model: {
|
|
17469
|
+
value: _vm.headingChecked,
|
|
17470
|
+
callback: function ($$v) {
|
|
17471
|
+
_vm.headingChecked = $$v;
|
|
17472
|
+
},
|
|
17473
|
+
expression: "headingChecked"
|
|
17474
|
+
}
|
|
17475
|
+
})], 1) : _vm._e(), _vm._v(" "), _vm._t("headings", function () {
|
|
17476
|
+
return _vm._l(_vm.columns, function (column, index) {
|
|
17477
|
+
return _c('cv-data-table-heading', {
|
|
17478
|
+
key: index + ":" + column,
|
|
17479
|
+
attrs: {
|
|
17480
|
+
"heading": _vm.columnHeading(column),
|
|
17481
|
+
"sortable": _vm.isColSortable(column),
|
|
17482
|
+
"order": column.order,
|
|
17483
|
+
"heading-style": _vm.headingStyle(column),
|
|
17484
|
+
"skeleton": _vm.skeleton
|
|
17485
|
+
}
|
|
17486
|
+
});
|
|
17487
|
+
});
|
|
17488
|
+
}), _vm._v(" "), _vm.hasOverflowMenu ? _c('th') : _vm._e()], 2)]), _vm._v(" "), _c('NsWrapper', {
|
|
17489
|
+
attrs: {
|
|
17490
|
+
"tag-type": _vm.hasExpandables ? '' : 'tbody'
|
|
17491
|
+
}
|
|
17492
|
+
}, [_vm._t("data", function () {
|
|
17493
|
+
return _vm._l(_vm.data, function (row, rowIndex) {
|
|
17494
|
+
return _c('cv-data-table-row', {
|
|
17495
|
+
key: "row:" + rowIndex,
|
|
17496
|
+
ref: "dataRows",
|
|
17497
|
+
refInFor: true,
|
|
17498
|
+
attrs: {
|
|
17499
|
+
"value": "" + rowIndex,
|
|
17500
|
+
"overflow-menu": _vm.overflowMenu
|
|
17501
|
+
}
|
|
17502
|
+
}, _vm._l(row, function (cell, colIndex) {
|
|
17503
|
+
return _c('cv-data-table-cell', {
|
|
17504
|
+
key: "cell:" + colIndex + ":" + rowIndex,
|
|
17505
|
+
style: _vm.dataStyle(colIndex)
|
|
17506
|
+
}, [_c('NsWrapper', {
|
|
17507
|
+
attrs: {
|
|
17508
|
+
"tag-type": _vm.skeleton ? 'span' : ''
|
|
17509
|
+
}
|
|
17510
|
+
}, [_vm._v(_vm._s(cell))])], 1);
|
|
17511
|
+
}), 1);
|
|
17512
|
+
});
|
|
17513
|
+
})], 2)], 1)])], 1)]), _vm._v(" "), _vm.newPagination ? _c('NsPagination', _vm._b({
|
|
17514
|
+
attrs: {
|
|
17515
|
+
"number-of-items": _vm.internalNumberOfItems,
|
|
17516
|
+
"actual-items-on-page": this.registeredRows.length,
|
|
17517
|
+
"pageSizesLabel": _vm.itemsPerPageLabel,
|
|
17518
|
+
"rangeOfTotalItemsLabel": _vm.rangeOfTotalItemsLabel,
|
|
17519
|
+
"ofTotalPagesLabel": _vm.ofTotalPagesLabel,
|
|
17520
|
+
"backwardText": _vm.backwardText,
|
|
17521
|
+
"forwardText": _vm.forwardText,
|
|
17522
|
+
"pageNumberLabel": _vm.pageNumberLabel
|
|
17523
|
+
},
|
|
17524
|
+
on: {
|
|
17525
|
+
"change": function ($event) {
|
|
17526
|
+
return _vm.paginateTable($event);
|
|
17527
|
+
}
|
|
17528
|
+
},
|
|
17529
|
+
scopedSlots: _vm._u([{
|
|
17530
|
+
key: "range-text",
|
|
17531
|
+
fn: function (ref) {
|
|
17532
|
+
var scope = ref.scope;
|
|
17533
|
+
return [_vm.$scopedSlots['range-text'] ? _vm._t("range-text", null, {
|
|
17534
|
+
"scope": scope
|
|
17535
|
+
}) : _vm._e()];
|
|
17536
|
+
}
|
|
17537
|
+
}, {
|
|
17538
|
+
key: "of-n-pages",
|
|
17539
|
+
fn: function (ref) {
|
|
17540
|
+
var scope = ref.scope;
|
|
17541
|
+
return [_vm.$scopedSlots['of-n-pages'] ? _vm._t("of-n-pages", null, {
|
|
17542
|
+
"scope": scope
|
|
17543
|
+
}) : _vm._e()];
|
|
17544
|
+
}
|
|
17545
|
+
}], null, true)
|
|
17546
|
+
}, 'NsPagination', _vm.internalPagination, false)) : _vm._e()], 1)], 2);
|
|
17547
|
+
};
|
|
17548
|
+
|
|
17549
|
+
var __vue_staticRenderFns__$7 = [];
|
|
17550
|
+
/* style */
|
|
17551
|
+
|
|
17552
|
+
const __vue_inject_styles__$7 = undefined;
|
|
17553
|
+
/* scoped */
|
|
17554
|
+
|
|
17555
|
+
const __vue_scope_id__$7 = undefined;
|
|
17556
|
+
/* module identifier */
|
|
17557
|
+
|
|
17558
|
+
const __vue_module_identifier__$7 = undefined;
|
|
17559
|
+
/* functional template */
|
|
17560
|
+
|
|
17561
|
+
const __vue_is_functional_template__$7 = false;
|
|
17562
|
+
/* style inject */
|
|
17563
|
+
|
|
17564
|
+
/* style inject SSR */
|
|
17565
|
+
|
|
17566
|
+
/* style inject shadow dom */
|
|
17567
|
+
|
|
17568
|
+
const __vue_component__$e = /*#__PURE__*/normalizeComponent({
|
|
17569
|
+
render: __vue_render__$7,
|
|
17570
|
+
staticRenderFns: __vue_staticRenderFns__$7
|
|
17571
|
+
}, __vue_inject_styles__$7, __vue_script__, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, undefined, undefined, undefined);
|
|
17572
|
+
|
|
17573
|
+
var __vue_component__$f = __vue_component__$e;
|
|
17574
|
+
|
|
17575
|
+
/* script */
|
|
17576
|
+
|
|
17577
|
+
/* template */
|
|
17578
|
+
var __vue_render__$6 = function () {
|
|
17579
|
+
var _vm = this;
|
|
17580
|
+
|
|
17581
|
+
var _h = _vm.$createElement;
|
|
17582
|
+
|
|
17583
|
+
var _c = _vm._self._c || _h;
|
|
17584
|
+
|
|
17585
|
+
return _c('path', {
|
|
17586
|
+
attrs: {
|
|
17587
|
+
"id": "gear_2_",
|
|
17588
|
+
"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"
|
|
17589
|
+
}
|
|
17590
|
+
});
|
|
17591
|
+
};
|
|
17592
|
+
|
|
17593
|
+
var __vue_staticRenderFns__$6 = [];
|
|
17594
|
+
/* style */
|
|
17595
|
+
|
|
17596
|
+
const __vue_inject_styles__$6 = undefined;
|
|
17597
|
+
/* scoped */
|
|
17598
|
+
|
|
17599
|
+
const __vue_scope_id__$6 = undefined;
|
|
17600
|
+
/* module identifier */
|
|
17601
|
+
|
|
17602
|
+
const __vue_module_identifier__$6 = undefined;
|
|
17603
|
+
/* functional template */
|
|
17604
|
+
|
|
17605
|
+
const __vue_is_functional_template__$6 = false;
|
|
17606
|
+
/* style inject */
|
|
17607
|
+
|
|
17608
|
+
/* style inject SSR */
|
|
17609
|
+
|
|
17610
|
+
/* style inject shadow dom */
|
|
17611
|
+
|
|
17612
|
+
const __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
17613
|
+
render: __vue_render__$6,
|
|
17614
|
+
staticRenderFns: __vue_staticRenderFns__$6
|
|
17615
|
+
}, __vue_inject_styles__$6, {}, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, undefined, undefined, undefined);
|
|
17616
|
+
|
|
17617
|
+
var __vue_component__$d = __vue_component__$c;
|
|
17618
|
+
|
|
17619
|
+
/* script */
|
|
17620
|
+
|
|
17621
|
+
/* template */
|
|
17622
|
+
var __vue_render__$5 = function () {
|
|
17623
|
+
var _vm = this;
|
|
17624
|
+
|
|
17625
|
+
var _h = _vm.$createElement;
|
|
17626
|
+
|
|
17627
|
+
var _c = _vm._self._c || _h;
|
|
17628
|
+
|
|
17629
|
+
return _c('path', {
|
|
17630
|
+
attrs: {
|
|
17631
|
+
"id": "love_1_",
|
|
17632
|
+
"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"
|
|
17633
|
+
}
|
|
17634
|
+
});
|
|
17635
|
+
};
|
|
17636
|
+
|
|
17637
|
+
var __vue_staticRenderFns__$5 = [];
|
|
17638
|
+
/* style */
|
|
17639
|
+
|
|
17640
|
+
const __vue_inject_styles__$5 = undefined;
|
|
17641
|
+
/* scoped */
|
|
17642
|
+
|
|
17643
|
+
const __vue_scope_id__$5 = undefined;
|
|
17644
|
+
/* module identifier */
|
|
17645
|
+
|
|
17646
|
+
const __vue_module_identifier__$5 = undefined;
|
|
17647
|
+
/* functional template */
|
|
17648
|
+
|
|
17649
|
+
const __vue_is_functional_template__$5 = false;
|
|
17650
|
+
/* style inject */
|
|
17651
|
+
|
|
17652
|
+
/* style inject SSR */
|
|
17653
|
+
|
|
17654
|
+
/* style inject shadow dom */
|
|
17655
|
+
|
|
17656
|
+
const __vue_component__$a = /*#__PURE__*/normalizeComponent({
|
|
17657
|
+
render: __vue_render__$5,
|
|
17658
|
+
staticRenderFns: __vue_staticRenderFns__$5
|
|
17659
|
+
}, __vue_inject_styles__$5, {}, __vue_scope_id__$5, __vue_is_functional_template__$5, __vue_module_identifier__$5, false, undefined, undefined, undefined);
|
|
17660
|
+
|
|
17661
|
+
var __vue_component__$b = __vue_component__$a;
|
|
17662
|
+
|
|
17663
|
+
/* script */
|
|
17664
|
+
|
|
17665
|
+
/* template */
|
|
17666
|
+
var __vue_render__$4 = function () {
|
|
17667
|
+
var _vm = this;
|
|
17668
|
+
|
|
17669
|
+
var _h = _vm.$createElement;
|
|
17670
|
+
|
|
17671
|
+
var _c = _vm._self._c || _h;
|
|
17672
|
+
|
|
17673
|
+
return _c('path', {
|
|
17674
|
+
attrs: {
|
|
17675
|
+
"id": "warning--01_1_",
|
|
17676
|
+
"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"
|
|
17677
|
+
}
|
|
17678
|
+
});
|
|
17679
|
+
};
|
|
17680
|
+
|
|
17681
|
+
var __vue_staticRenderFns__$4 = [];
|
|
17682
|
+
/* style */
|
|
17683
|
+
|
|
17684
|
+
const __vue_inject_styles__$4 = undefined;
|
|
17685
|
+
/* scoped */
|
|
17686
|
+
|
|
17687
|
+
const __vue_scope_id__$4 = undefined;
|
|
17688
|
+
/* module identifier */
|
|
17689
|
+
|
|
17690
|
+
const __vue_module_identifier__$4 = undefined;
|
|
17691
|
+
/* functional template */
|
|
17692
|
+
|
|
17693
|
+
const __vue_is_functional_template__$4 = false;
|
|
17694
|
+
/* style inject */
|
|
17695
|
+
|
|
17696
|
+
/* style inject SSR */
|
|
17697
|
+
|
|
17698
|
+
/* style inject shadow dom */
|
|
17699
|
+
|
|
17700
|
+
const __vue_component__$8 = /*#__PURE__*/normalizeComponent({
|
|
17701
|
+
render: __vue_render__$4,
|
|
17702
|
+
staticRenderFns: __vue_staticRenderFns__$4
|
|
17703
|
+
}, __vue_inject_styles__$4, {}, __vue_scope_id__$4, __vue_is_functional_template__$4, __vue_module_identifier__$4, false, undefined, undefined, undefined);
|
|
17704
|
+
|
|
17705
|
+
var __vue_component__$9 = __vue_component__$8;
|
|
17706
|
+
|
|
17707
|
+
/* script */
|
|
17708
|
+
|
|
17709
|
+
/* template */
|
|
17710
|
+
var __vue_render__$3 = function () {
|
|
17711
|
+
var _vm = this;
|
|
17712
|
+
|
|
17713
|
+
var _h = _vm.$createElement;
|
|
17714
|
+
|
|
17715
|
+
var _c = _vm._self._c || _h;
|
|
17716
|
+
|
|
17717
|
+
return _c('path', {
|
|
17718
|
+
attrs: {
|
|
17719
|
+
"id": "bulldozer_1_",
|
|
17720
|
+
"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"
|
|
17721
|
+
}
|
|
17722
|
+
});
|
|
17723
|
+
};
|
|
17724
|
+
|
|
17725
|
+
var __vue_staticRenderFns__$3 = [];
|
|
17726
|
+
/* style */
|
|
17727
|
+
|
|
17728
|
+
const __vue_inject_styles__$3 = undefined;
|
|
17729
|
+
/* scoped */
|
|
17730
|
+
|
|
17731
|
+
const __vue_scope_id__$3 = undefined;
|
|
17732
|
+
/* module identifier */
|
|
17733
|
+
|
|
17734
|
+
const __vue_module_identifier__$3 = undefined;
|
|
17735
|
+
/* functional template */
|
|
17736
|
+
|
|
17737
|
+
const __vue_is_functional_template__$3 = false;
|
|
17738
|
+
/* style inject */
|
|
17739
|
+
|
|
17740
|
+
/* style inject SSR */
|
|
17741
|
+
|
|
17742
|
+
/* style inject shadow dom */
|
|
17743
|
+
|
|
17744
|
+
const __vue_component__$6 = /*#__PURE__*/normalizeComponent({
|
|
17745
|
+
render: __vue_render__$3,
|
|
17746
|
+
staticRenderFns: __vue_staticRenderFns__$3
|
|
17747
|
+
}, __vue_inject_styles__$3, {}, __vue_scope_id__$3, __vue_is_functional_template__$3, __vue_module_identifier__$3, false, undefined, undefined, undefined);
|
|
17748
|
+
|
|
17749
|
+
var __vue_component__$7 = __vue_component__$6;
|
|
17750
|
+
|
|
17751
|
+
/* script */
|
|
17752
|
+
|
|
17753
|
+
/* template */
|
|
17754
|
+
var __vue_render__$2 = function () {
|
|
17755
|
+
var _vm = this;
|
|
17756
|
+
|
|
17757
|
+
var _h = _vm.$createElement;
|
|
17758
|
+
|
|
17759
|
+
var _c = _vm._self._c || _h;
|
|
17760
|
+
|
|
17761
|
+
return _c('path', {
|
|
17762
|
+
attrs: {
|
|
17763
|
+
"id": "group",
|
|
17764
|
+
"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"
|
|
17765
|
+
}
|
|
17766
|
+
});
|
|
17767
|
+
};
|
|
17768
|
+
|
|
17769
|
+
var __vue_staticRenderFns__$2 = [];
|
|
17770
|
+
/* style */
|
|
17771
|
+
|
|
17772
|
+
const __vue_inject_styles__$2 = undefined;
|
|
17773
|
+
/* scoped */
|
|
17774
|
+
|
|
17775
|
+
const __vue_scope_id__$2 = undefined;
|
|
17776
|
+
/* module identifier */
|
|
17777
|
+
|
|
17778
|
+
const __vue_module_identifier__$2 = undefined;
|
|
17779
|
+
/* functional template */
|
|
17780
|
+
|
|
17781
|
+
const __vue_is_functional_template__$2 = false;
|
|
17782
|
+
/* style inject */
|
|
17783
|
+
|
|
17784
|
+
/* style inject SSR */
|
|
17785
|
+
|
|
17786
|
+
/* style inject shadow dom */
|
|
17787
|
+
|
|
17788
|
+
const __vue_component__$4 = /*#__PURE__*/normalizeComponent({
|
|
17789
|
+
render: __vue_render__$2,
|
|
17790
|
+
staticRenderFns: __vue_staticRenderFns__$2
|
|
17791
|
+
}, __vue_inject_styles__$2, {}, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, undefined, undefined);
|
|
17792
|
+
|
|
17793
|
+
var __vue_component__$5 = __vue_component__$4;
|
|
17794
|
+
|
|
17795
|
+
/* script */
|
|
17796
|
+
|
|
17797
|
+
/* template */
|
|
17798
|
+
var __vue_render__$1 = function () {
|
|
17799
|
+
var _vm = this;
|
|
17800
|
+
|
|
17801
|
+
var _h = _vm.$createElement;
|
|
17802
|
+
|
|
17803
|
+
var _c = _vm._self._c || _h;
|
|
17804
|
+
|
|
17805
|
+
return _c('path', {
|
|
17806
|
+
attrs: {
|
|
17807
|
+
"id": "hard--drive",
|
|
17808
|
+
"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"
|
|
17809
|
+
}
|
|
17810
|
+
});
|
|
17811
|
+
};
|
|
17812
|
+
|
|
17813
|
+
var __vue_staticRenderFns__$1 = [];
|
|
17814
|
+
/* style */
|
|
17815
|
+
|
|
17816
|
+
const __vue_inject_styles__$1 = undefined;
|
|
17817
|
+
/* scoped */
|
|
17818
|
+
|
|
17819
|
+
const __vue_scope_id__$1 = undefined;
|
|
17820
|
+
/* module identifier */
|
|
17821
|
+
|
|
17822
|
+
const __vue_module_identifier__$1 = undefined;
|
|
17823
|
+
/* functional template */
|
|
17824
|
+
|
|
17825
|
+
const __vue_is_functional_template__$1 = false;
|
|
17826
|
+
/* style inject */
|
|
17827
|
+
|
|
17828
|
+
/* style inject SSR */
|
|
17829
|
+
|
|
17830
|
+
/* style inject shadow dom */
|
|
17831
|
+
|
|
17832
|
+
const __vue_component__$2 = /*#__PURE__*/normalizeComponent({
|
|
17833
|
+
render: __vue_render__$1,
|
|
17834
|
+
staticRenderFns: __vue_staticRenderFns__$1
|
|
17835
|
+
}, __vue_inject_styles__$1, {}, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, undefined, undefined);
|
|
17836
|
+
|
|
17837
|
+
var __vue_component__$3 = __vue_component__$2;
|
|
17838
|
+
|
|
17839
|
+
/* script */
|
|
17840
|
+
|
|
17841
|
+
/* template */
|
|
17842
|
+
var __vue_render__ = function () {
|
|
17843
|
+
var _vm = this;
|
|
17844
|
+
|
|
17845
|
+
var _h = _vm.$createElement;
|
|
17846
|
+
|
|
17847
|
+
var _c = _vm._self._c || _h;
|
|
17848
|
+
|
|
17849
|
+
return _c('path', {
|
|
17850
|
+
attrs: {
|
|
17851
|
+
"id": "user_1_",
|
|
17852
|
+
"d": "M31.36,31h-0.72c0-6.432-4.777-12.232-11.359-13.792c-0.15-0.036-0.261-0.163-0.275-0.317\n\tc-0.015-0.153,0.071-0.299,0.212-0.362c2.861-1.273,4.71-4.116,4.71-7.241c0-4.371-3.556-7.927-7.927-7.927\n\tc-4.372,0-7.928,3.556-7.928,7.927c0,3.125,1.849,5.968,4.711,7.241c0.141,0.063,0.226,0.209,0.212,0.362\n\tc-0.014,0.154-0.125,0.281-0.275,0.317C6.137,18.768,1.36,24.568,1.36,31H0.64c0-6.46,4.574-12.312,11.002-14.248\n\tc-2.634-1.539-4.291-4.375-4.291-7.465c0-4.768,3.879-8.647,8.648-8.647c4.768,0,8.647,3.879,8.647,8.647\n\tc0,3.09-1.656,5.926-4.29,7.465C26.786,18.688,31.36,24.54,31.36,31z"
|
|
17853
|
+
}
|
|
17854
|
+
});
|
|
17855
|
+
};
|
|
17856
|
+
|
|
17857
|
+
var __vue_staticRenderFns__ = [];
|
|
17858
|
+
/* style */
|
|
17859
|
+
|
|
17860
|
+
const __vue_inject_styles__ = undefined;
|
|
17861
|
+
/* scoped */
|
|
17862
|
+
|
|
17863
|
+
const __vue_scope_id__ = undefined;
|
|
17864
|
+
/* module identifier */
|
|
17865
|
+
|
|
17866
|
+
const __vue_module_identifier__ = undefined;
|
|
17867
|
+
/* functional template */
|
|
17868
|
+
|
|
17869
|
+
const __vue_is_functional_template__ = false;
|
|
17870
|
+
/* style inject */
|
|
17871
|
+
|
|
17872
|
+
/* style inject SSR */
|
|
17873
|
+
|
|
17874
|
+
/* style inject shadow dom */
|
|
17875
|
+
|
|
17876
|
+
const __vue_component__ = /*#__PURE__*/normalizeComponent({
|
|
17877
|
+
render: __vue_render__,
|
|
17878
|
+
staticRenderFns: __vue_staticRenderFns__
|
|
17879
|
+
}, __vue_inject_styles__, {}, __vue_scope_id__, __vue_is_functional_template__, __vue_module_identifier__, false, undefined, undefined, undefined);
|
|
17880
|
+
|
|
17881
|
+
var __vue_component__$1 = __vue_component__;
|
|
17882
|
+
|
|
17883
|
+
var queryParam = {
|
|
17884
|
+
name: "QueryParamService",
|
|
17885
|
+
methods: {
|
|
17886
|
+
// used by core and external apps to dynamically register a watch for every object inside data.q
|
|
17887
|
+
watchQueryData(context) {
|
|
17888
|
+
if (context.q) {
|
|
17889
|
+
Object.keys(context.q).forEach(dataItem => {
|
|
17890
|
+
context.$watch("q." + dataItem, function () {
|
|
17891
|
+
this.dataToQueryParams(context);
|
|
17892
|
+
});
|
|
17893
|
+
});
|
|
17894
|
+
}
|
|
17895
|
+
},
|
|
17896
|
+
|
|
17897
|
+
// used only by external apps to sync UI status with URL query parameters
|
|
17898
|
+
initUrlBindingForApp(context, page) {
|
|
17899
|
+
let queryParams = this.getQueryParamsForApp();
|
|
17900
|
+
const requestedPage = queryParams.page || "status";
|
|
17901
|
+
|
|
17902
|
+
if (requestedPage != page) {
|
|
17903
|
+
return;
|
|
17904
|
+
}
|
|
17905
|
+
|
|
17906
|
+
this.syncQueryParamsAndDataForApp(context);
|
|
17907
|
+
return setInterval(() => this.checkUrlChangeForApp(context, page), 500);
|
|
17908
|
+
},
|
|
17909
|
+
|
|
17910
|
+
// used only by external apps to sync UI status with URL query parameters
|
|
17911
|
+
syncQueryParamsAndDataForApp(context) {
|
|
17912
|
+
this.queryParamsToDataForApp(context);
|
|
17913
|
+
this.dataToQueryParams(context);
|
|
17914
|
+
},
|
|
17915
|
+
|
|
17916
|
+
// used to sync UI status with URL query parameters
|
|
17917
|
+
dataToQueryParams(context) {
|
|
17918
|
+
let queryParams = [];
|
|
17919
|
+
|
|
17920
|
+
for (const [key, value] of Object.entries(context.q)) {
|
|
17921
|
+
queryParams.push(key + "=" + encodeURIComponent(value));
|
|
17922
|
+
}
|
|
17923
|
+
|
|
17924
|
+
const urlWithParams = window.parent.core.$route.path + "?" + queryParams.join("&");
|
|
17925
|
+
|
|
17926
|
+
if (window.parent.core.$route.fullPath != urlWithParams) {
|
|
17927
|
+
window.parent.core.$router.replace(urlWithParams);
|
|
17928
|
+
}
|
|
17929
|
+
},
|
|
17930
|
+
|
|
17931
|
+
// used only by external apps to sync UI status with URL query parameters
|
|
17932
|
+
checkUrlChangeForApp(context, page) {
|
|
17933
|
+
const newUrl = window.parent.location.href;
|
|
17934
|
+
|
|
17935
|
+
if (newUrl != context.currentUrl) {
|
|
17936
|
+
context.currentUrl = newUrl;
|
|
17937
|
+
const queryParams = this.getQueryParamsForApp();
|
|
17938
|
+
const requestedPage = queryParams.page || "status"; // emit app navigation event
|
|
17939
|
+
|
|
17940
|
+
const appInstance = /#\/apps\/(\w+)/.exec(window.parent.location.hash)[1];
|
|
17941
|
+
context.$root.$emit("appNavigation", appInstance, requestedPage);
|
|
17942
|
+
|
|
17943
|
+
if (requestedPage !== page) {
|
|
17944
|
+
// trigger a custom event to change app route
|
|
17945
|
+
window.dispatchEvent(new CustomEvent("changeRoute", {
|
|
17946
|
+
detail: requestedPage
|
|
17947
|
+
}));
|
|
17948
|
+
} else {
|
|
17949
|
+
this.syncQueryParamsAndDataForApp(context);
|
|
17950
|
+
}
|
|
17951
|
+
}
|
|
17952
|
+
|
|
17953
|
+
context.currentUrl = window.parent.location.href;
|
|
17954
|
+
},
|
|
17955
|
+
|
|
17956
|
+
getPage() {
|
|
17957
|
+
let queryParams = this.getQueryParamsForApp();
|
|
17958
|
+
const page = queryParams.page || "status";
|
|
17959
|
+
return page;
|
|
17960
|
+
},
|
|
17961
|
+
|
|
17962
|
+
queryParamsToDataForCore(context, queryParams) {
|
|
17963
|
+
if (context.q) {
|
|
17964
|
+
Object.keys(context.q).forEach(dataItem => {
|
|
17965
|
+
if (typeof queryParams[dataItem] !== "undefined") {
|
|
17966
|
+
context.q[dataItem] = this.getTypedValue(queryParams[dataItem]);
|
|
17967
|
+
}
|
|
17968
|
+
});
|
|
17969
|
+
}
|
|
17970
|
+
},
|
|
17971
|
+
|
|
17972
|
+
// used to map a query string parameter value to its typed value
|
|
17973
|
+
getTypedValue(stringValue) {
|
|
17974
|
+
if (stringValue === "true") {
|
|
17975
|
+
return true;
|
|
17976
|
+
}
|
|
17977
|
+
|
|
17978
|
+
if (stringValue === "false") {
|
|
17979
|
+
return false;
|
|
17980
|
+
}
|
|
17981
|
+
|
|
17982
|
+
return stringValue;
|
|
17983
|
+
},
|
|
17984
|
+
|
|
17985
|
+
// used only by external apps to sync UI status with URL query parameters
|
|
17986
|
+
queryParamsToDataForApp(context) {
|
|
17987
|
+
let queryParams = this.getQueryParamsForApp();
|
|
17988
|
+
|
|
17989
|
+
if (context.q) {
|
|
17990
|
+
Object.keys(context.q).forEach(dataItem => {
|
|
17991
|
+
if (typeof queryParams[dataItem] !== "undefined") {
|
|
17992
|
+
context.q[dataItem] = this.getTypedValue(queryParams[dataItem]);
|
|
17993
|
+
}
|
|
17994
|
+
});
|
|
17995
|
+
}
|
|
17996
|
+
},
|
|
17997
|
+
|
|
17998
|
+
// used only by core to extract query parameters from URL
|
|
17999
|
+
getQueryParamsForCore() {
|
|
18000
|
+
if (!window.location.hash.includes("?") || window.location.hash.split("?").length < 2) {
|
|
18001
|
+
return {};
|
|
18002
|
+
}
|
|
18003
|
+
|
|
18004
|
+
const params = new URLSearchParams(window.location.hash.split("?").pop());
|
|
18005
|
+
let queryParams = {};
|
|
18006
|
+
params.forEach((value, key) => {
|
|
18007
|
+
if (key) {
|
|
18008
|
+
queryParams[key] = value;
|
|
18009
|
+
}
|
|
18010
|
+
});
|
|
18011
|
+
return queryParams;
|
|
18012
|
+
},
|
|
18013
|
+
|
|
18014
|
+
// used only by external apps to extract query parameters from URL
|
|
18015
|
+
getQueryParamsForApp() {
|
|
18016
|
+
if (!window.parent.location.hash.includes("?") || window.parent.location.hash.split("?").length < 2) {
|
|
18017
|
+
return {};
|
|
18018
|
+
}
|
|
18019
|
+
|
|
18020
|
+
const params = new URLSearchParams(window.parent.location.hash.split("?").pop());
|
|
18021
|
+
let queryParams = {};
|
|
18022
|
+
params.forEach((value, key) => {
|
|
18023
|
+
if (key) {
|
|
18024
|
+
queryParams[key] = value;
|
|
18025
|
+
}
|
|
18026
|
+
});
|
|
18027
|
+
return queryParams;
|
|
18028
|
+
}
|
|
18029
|
+
|
|
18030
|
+
}
|
|
18031
|
+
};
|
|
18032
|
+
|
|
18033
|
+
var StorageService = {
|
|
18034
|
+
name: "StorageService",
|
|
18035
|
+
methods: {
|
|
18036
|
+
getFromStorage(prop) {
|
|
18037
|
+
return JSON.parse(localStorage.getItem(prop));
|
|
18038
|
+
},
|
|
18039
|
+
|
|
18040
|
+
saveToStorage(prop, object) {
|
|
18041
|
+
localStorage.setItem(prop, JSON.stringify(object));
|
|
18042
|
+
},
|
|
18043
|
+
|
|
18044
|
+
deleteFromStorage(prop) {
|
|
18045
|
+
localStorage.removeItem(prop);
|
|
18046
|
+
}
|
|
18047
|
+
|
|
18048
|
+
}
|
|
18049
|
+
};
|
|
18050
|
+
|
|
18051
|
+
var task = {
|
|
18052
|
+
name: "TaskService",
|
|
18053
|
+
mixins: [StorageService, UtilService],
|
|
18054
|
+
methods: {
|
|
18055
|
+
getTaskContext(taskPath) {
|
|
18056
|
+
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
18057
|
+
return this.axios.get(`${this.$root.apiUrl}/${taskPath}/context`, {
|
|
18058
|
+
headers: {
|
|
18059
|
+
Authorization: `Bearer ${token}`
|
|
18060
|
+
}
|
|
18061
|
+
});
|
|
18062
|
+
},
|
|
18063
|
+
|
|
18064
|
+
getTaskStatus(taskPath) {
|
|
18065
|
+
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
18066
|
+
return this.axios.get(`${this.$root.apiUrl}/${taskPath}/status`, {
|
|
18067
|
+
headers: {
|
|
18068
|
+
Authorization: `Bearer ${token}`
|
|
18069
|
+
}
|
|
18070
|
+
});
|
|
18071
|
+
},
|
|
18072
|
+
|
|
18073
|
+
getClusterTasks() {
|
|
18074
|
+
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
18075
|
+
return this.axios.get(`${this.$root.apiUrl}/cluster/tasks`, {
|
|
18076
|
+
headers: {
|
|
18077
|
+
Authorization: `Bearer ${token}`
|
|
18078
|
+
}
|
|
18079
|
+
});
|
|
18080
|
+
},
|
|
18081
|
+
|
|
18082
|
+
createClusterTask(taskData) {
|
|
18083
|
+
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
18084
|
+
return this.axios.post(`${this.$root.apiUrl}/cluster/tasks`, taskData, {
|
|
18085
|
+
headers: {
|
|
18086
|
+
Authorization: `Bearer ${token}`
|
|
18087
|
+
}
|
|
18088
|
+
});
|
|
18089
|
+
},
|
|
18090
|
+
|
|
18091
|
+
createClusterTaskForApp(taskData) {
|
|
18092
|
+
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
18093
|
+
return this.axios.post(`${window.parent.core.$root.apiUrl}/cluster/tasks`, taskData, {
|
|
18094
|
+
headers: {
|
|
18095
|
+
Authorization: `Bearer ${token}`
|
|
18096
|
+
}
|
|
18097
|
+
});
|
|
18098
|
+
},
|
|
18099
|
+
|
|
18100
|
+
createModuleTaskForApp(moduleId, taskData) {
|
|
18101
|
+
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
18102
|
+
return this.axios.post(`${window.parent.core.$root.apiUrl}/module/${moduleId}/tasks`, taskData, {
|
|
18103
|
+
headers: {
|
|
18104
|
+
Authorization: `Bearer ${token}`
|
|
18105
|
+
}
|
|
18106
|
+
});
|
|
18107
|
+
},
|
|
18108
|
+
|
|
18109
|
+
createNodeTask(nodeId, taskData) {
|
|
18110
|
+
const token = this.getFromStorage("loginInfo") ? this.getFromStorage("loginInfo").token : "";
|
|
18111
|
+
return this.axios.post(`${this.$root.apiUrl}/node/${nodeId}/tasks`, taskData, {
|
|
18112
|
+
headers: {
|
|
18113
|
+
Authorization: `Bearer ${token}`
|
|
18114
|
+
}
|
|
18115
|
+
});
|
|
18116
|
+
},
|
|
18117
|
+
|
|
18118
|
+
getTaskTitle(task) {
|
|
18119
|
+
if (task && task.context && task.context.extra && task.context.extra.title) {
|
|
18120
|
+
return task.context.extra.title;
|
|
18121
|
+
} else {
|
|
18122
|
+
return "";
|
|
18123
|
+
}
|
|
18124
|
+
},
|
|
18125
|
+
|
|
18126
|
+
getTaskKind(task) {
|
|
18127
|
+
switch (task.status) {
|
|
18128
|
+
case "aborted":
|
|
18129
|
+
case "validation-failed":
|
|
18130
|
+
return "error";
|
|
18131
|
+
|
|
18132
|
+
case "completed":
|
|
18133
|
+
return "success";
|
|
18134
|
+
|
|
18135
|
+
case "pending":
|
|
18136
|
+
return "warning";
|
|
18137
|
+
|
|
18138
|
+
default:
|
|
18139
|
+
return "info";
|
|
18140
|
+
}
|
|
18141
|
+
},
|
|
18142
|
+
|
|
18143
|
+
getTaskIcon(task) {
|
|
18144
|
+
switch (task.status) {
|
|
18145
|
+
case "aborted":
|
|
18146
|
+
case "validation-failed":
|
|
18147
|
+
return ErrorFilled16;
|
|
18148
|
+
|
|
18149
|
+
case "completed":
|
|
18150
|
+
return CheckmarkFilled16;
|
|
18151
|
+
|
|
18152
|
+
case "pending":
|
|
18153
|
+
return Warning16;
|
|
18154
|
+
|
|
18155
|
+
default:
|
|
18156
|
+
return InformationFilled16;
|
|
18157
|
+
}
|
|
18158
|
+
},
|
|
18159
|
+
|
|
18160
|
+
getTaskStatusDescription(task, rootTask = true) {
|
|
18161
|
+
let taskLabel = task.context.action; // use taskName instead of action, if available
|
|
18162
|
+
|
|
18163
|
+
if (task.context.extra && task.context.extra.taskName) {
|
|
18164
|
+
taskLabel = task.context.extra.taskName;
|
|
18165
|
+
}
|
|
18166
|
+
|
|
18167
|
+
const taskOrSubtask = rootTask ? "task" : "subtask";
|
|
18168
|
+
let taskPrefix = "";
|
|
18169
|
+
|
|
18170
|
+
if (task.result && task.result.file) {
|
|
18171
|
+
taskPrefix = task.result.file.split("task/")[0];
|
|
18172
|
+
}
|
|
18173
|
+
|
|
18174
|
+
taskLabel = taskPrefix + taskLabel;
|
|
18175
|
+
|
|
18176
|
+
switch (task.status) {
|
|
18177
|
+
case "aborted":
|
|
18178
|
+
return this.$t("task." + taskOrSubtask + "_failed", {
|
|
18179
|
+
task: taskLabel
|
|
18180
|
+
});
|
|
18181
|
+
|
|
18182
|
+
case "validation-failed":
|
|
18183
|
+
return this.$t("task." + taskOrSubtask + "_failed_validation", {
|
|
18184
|
+
task: taskLabel
|
|
18185
|
+
});
|
|
18186
|
+
|
|
18187
|
+
case "completed":
|
|
18188
|
+
return this.$t("task." + taskOrSubtask + "_completed", {
|
|
18189
|
+
task: taskLabel
|
|
18190
|
+
});
|
|
18191
|
+
|
|
18192
|
+
case "pending":
|
|
18193
|
+
return this.$t("task." + taskOrSubtask + "_pending", {
|
|
18194
|
+
task: taskLabel
|
|
18195
|
+
});
|
|
18196
|
+
|
|
18197
|
+
case "running":
|
|
18198
|
+
return this.$t("task." + taskOrSubtask + "_running", {
|
|
18199
|
+
task: taskLabel
|
|
18200
|
+
});
|
|
18201
|
+
|
|
18202
|
+
default:
|
|
18203
|
+
return "";
|
|
18204
|
+
}
|
|
18205
|
+
},
|
|
18206
|
+
|
|
18207
|
+
createErrorNotification(err, message) {
|
|
18208
|
+
console.error(err);
|
|
18209
|
+
this.$root.$emit("createErrorNotification", err, message);
|
|
18210
|
+
},
|
|
18211
|
+
|
|
18212
|
+
createErrorNotificationForApp(err, message) {
|
|
18213
|
+
console.error(err);
|
|
18214
|
+
window.parent.core.$root.$emit("createErrorNotification", err, message);
|
|
18215
|
+
}
|
|
18216
|
+
|
|
18217
|
+
}
|
|
18218
|
+
};
|
|
18219
|
+
|
|
18220
|
+
var dataTable = {
|
|
18221
|
+
name: "DataTableService",
|
|
18222
|
+
mixins: [UtilService],
|
|
17509
18223
|
|
|
17510
18224
|
data() {
|
|
17511
18225
|
return {
|
|
17512
|
-
|
|
17513
|
-
|
|
17514
|
-
|
|
17515
|
-
GearsLottie
|
|
18226
|
+
pageStart: 0,
|
|
18227
|
+
pageNumber: 0,
|
|
18228
|
+
pageLength: 0
|
|
17516
18229
|
};
|
|
18230
|
+
},
|
|
18231
|
+
|
|
18232
|
+
computed: {
|
|
18233
|
+
pagination() {
|
|
18234
|
+
return {
|
|
18235
|
+
numberOfItems: this.tableRows.length,
|
|
18236
|
+
pageSizes: [10, 25, 50, 100]
|
|
18237
|
+
};
|
|
18238
|
+
},
|
|
18239
|
+
|
|
18240
|
+
tablePage() {
|
|
18241
|
+
if (this.pagination) {
|
|
18242
|
+
return this.tableRows.slice(this.pageStart, this.pageStart + this.pageLength);
|
|
18243
|
+
} else {
|
|
18244
|
+
return this.tableRows;
|
|
18245
|
+
}
|
|
18246
|
+
}
|
|
18247
|
+
|
|
18248
|
+
},
|
|
18249
|
+
methods: {
|
|
18250
|
+
paginateTable(ev) {
|
|
18251
|
+
this.pageStart = ev.start - 1;
|
|
18252
|
+
this.pageNumber = ev.page;
|
|
18253
|
+
this.pageLength = ev.length;
|
|
18254
|
+
},
|
|
18255
|
+
|
|
18256
|
+
sortTable(ev) {
|
|
18257
|
+
const order = ev.order;
|
|
18258
|
+
|
|
18259
|
+
if (order === "none") {
|
|
18260
|
+
return;
|
|
18261
|
+
}
|
|
18262
|
+
|
|
18263
|
+
const propertyToSort = this.tableColumns[ev.index];
|
|
18264
|
+
this.tableRows.sort(this.sortByProperty(propertyToSort));
|
|
18265
|
+
|
|
18266
|
+
if (ev.order === "descending") {
|
|
18267
|
+
this.tableRows.reverse();
|
|
18268
|
+
}
|
|
18269
|
+
}
|
|
18270
|
+
|
|
18271
|
+
}
|
|
18272
|
+
};
|
|
18273
|
+
|
|
18274
|
+
function getPageTitle(vm) {
|
|
18275
|
+
const {
|
|
18276
|
+
pageTitle
|
|
18277
|
+
} = vm.$options;
|
|
18278
|
+
|
|
18279
|
+
if (pageTitle) {
|
|
18280
|
+
return typeof pageTitle === "function" ? pageTitle.call(vm) : pageTitle;
|
|
18281
|
+
}
|
|
18282
|
+
}
|
|
18283
|
+
|
|
18284
|
+
var pageTitle = {
|
|
18285
|
+
name: "PageTitleService",
|
|
18286
|
+
|
|
18287
|
+
created() {
|
|
18288
|
+
const pageTitle = getPageTitle(this);
|
|
18289
|
+
|
|
18290
|
+
if (pageTitle) {
|
|
18291
|
+
// window.document would be ok for core, but with window.parent.document we support external apps too (window.parent == window, if it's the root window)
|
|
18292
|
+
window.parent.document.title = pageTitle;
|
|
18293
|
+
}
|
|
17517
18294
|
}
|
|
17518
18295
|
|
|
17519
18296
|
};
|
|
@@ -17646,34 +18423,36 @@ var filters = {
|
|
|
17646
18423
|
|
|
17647
18424
|
var components = /*#__PURE__*/Object.freeze({
|
|
17648
18425
|
__proto__: null,
|
|
17649
|
-
NsButton: __vue_component__$
|
|
17650
|
-
NsEmptyState: __vue_component__$
|
|
18426
|
+
NsButton: __vue_component__$13,
|
|
18427
|
+
NsEmptyState: __vue_component__$_,
|
|
17651
18428
|
NsPictogram: NsPictogram,
|
|
17652
|
-
NsCodeSnippet: __vue_component__$
|
|
18429
|
+
NsCodeSnippet: __vue_component__$Y,
|
|
17653
18430
|
NsInlineNotification: NsInlineNotification,
|
|
17654
18431
|
NsProgressBar: NsProgressBar,
|
|
17655
18432
|
NsSvg: NsSvg,
|
|
17656
|
-
NsTile: __vue_component__$
|
|
17657
|
-
NsToastNotification: __vue_component__$
|
|
17658
|
-
NsInfoCard: __vue_component__$
|
|
17659
|
-
NsStatusCard: __vue_component__$
|
|
17660
|
-
NsSystemdServiceCard: __vue_component__$
|
|
17661
|
-
NsPasswordInput: __vue_component__$
|
|
17662
|
-
NsIconMenu: __vue_component__$
|
|
17663
|
-
NsMeterChart: __vue_component__$
|
|
17664
|
-
NsPieChart: __vue_component__$
|
|
18433
|
+
NsTile: __vue_component__$S,
|
|
18434
|
+
NsToastNotification: __vue_component__$Q,
|
|
18435
|
+
NsInfoCard: __vue_component__$O,
|
|
18436
|
+
NsStatusCard: __vue_component__$M,
|
|
18437
|
+
NsSystemdServiceCard: __vue_component__$K,
|
|
18438
|
+
NsPasswordInput: __vue_component__$I,
|
|
18439
|
+
NsIconMenu: __vue_component__$G,
|
|
18440
|
+
NsMeterChart: __vue_component__$E,
|
|
18441
|
+
NsPieChart: __vue_component__$C,
|
|
17665
18442
|
NsLottieAnimation: NsLottieAnimation,
|
|
17666
|
-
NsDangerDeleteModal: __vue_component__$
|
|
18443
|
+
NsDangerDeleteModal: __vue_component__$A,
|
|
17667
18444
|
NsCircleTimer: NsCircleTimer,
|
|
17668
|
-
NsDropdownAction: __vue_component__$
|
|
17669
|
-
NsTextInput: __vue_component__$
|
|
17670
|
-
NsBackupCard: __vue_component__$
|
|
17671
|
-
NsWizard: __vue_component__$
|
|
17672
|
-
NsMenuItem: __vue_component__$
|
|
17673
|
-
NsMenuDivider: __vue_component__$
|
|
17674
|
-
NsSystemLogsCard: __vue_component__$
|
|
18445
|
+
NsDropdownAction: __vue_component__$y,
|
|
18446
|
+
NsTextInput: __vue_component__$w,
|
|
18447
|
+
NsBackupCard: __vue_component__$t,
|
|
18448
|
+
NsWizard: __vue_component__$q,
|
|
18449
|
+
NsMenuItem: __vue_component__$o,
|
|
18450
|
+
NsMenuDivider: __vue_component__$m,
|
|
18451
|
+
NsSystemLogsCard: __vue_component__$k,
|
|
17675
18452
|
NsModal: NsModal,
|
|
17676
|
-
NsTimePicker: __vue_component__$
|
|
18453
|
+
NsTimePicker: __vue_component__$i,
|
|
18454
|
+
NsDataTable: __vue_component__$f,
|
|
18455
|
+
NsPagination: NsPagination,
|
|
17677
18456
|
ExclamationMarkPictogram: ExclamationMarkPictogram,
|
|
17678
18457
|
GearPictogram: __vue_component__$d,
|
|
17679
18458
|
LovePictogram: __vue_component__$b,
|
|
@@ -17690,7 +18469,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
17690
18469
|
DateTimeService: DateTimeService,
|
|
17691
18470
|
DataTableService: dataTable,
|
|
17692
18471
|
PageTitleService: pageTitle,
|
|
17693
|
-
LottieService:
|
|
18472
|
+
LottieService: LottieService,
|
|
17694
18473
|
Filters: filters
|
|
17695
18474
|
});
|
|
17696
18475
|
|
|
@@ -17702,4 +18481,4 @@ const install = function installNs8UiLib(Vue) {
|
|
|
17702
18481
|
});
|
|
17703
18482
|
}; // Create module definition for Vue.use()
|
|
17704
18483
|
|
|
17705
|
-
export { __vue_component__$7 as BulldozerPictogram, dataTable as DataTableService, DateTimeService, ExclamationMarkPictogram, filters as Filters, __vue_component__$d as GearPictogram, __vue_component__$5 as GroupPictogram, __vue_component__$3 as HardDrivePictogram, IconService,
|
|
18484
|
+
export { __vue_component__$7 as BulldozerPictogram, dataTable as DataTableService, 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__$t as NsBackupCard, __vue_component__$13 as NsButton, NsCircleTimer, __vue_component__$Y as NsCodeSnippet, __vue_component__$A as NsDangerDeleteModal, __vue_component__$f as NsDataTable, __vue_component__$y as NsDropdownAction, __vue_component__$_ as NsEmptyState, __vue_component__$G as NsIconMenu, __vue_component__$O as NsInfoCard, NsInlineNotification, NsLottieAnimation, __vue_component__$m as NsMenuDivider, __vue_component__$o as NsMenuItem, __vue_component__$E as NsMeterChart, NsModal, NsPagination, __vue_component__$I as NsPasswordInput, NsPictogram, __vue_component__$C as NsPieChart, NsProgressBar, __vue_component__$M as NsStatusCard, NsSvg, __vue_component__$k as NsSystemLogsCard, __vue_component__$K as NsSystemdServiceCard, __vue_component__$w as NsTextInput, __vue_component__$S as NsTile, __vue_component__$i as NsTimePicker, __vue_component__$Q 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 };
|