@nethserver/ns8-ui-lib 0.0.21 → 0.0.25
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 +291 -406
- package/dist/ns8-ui-lib.min.js +1 -1
- package/dist/ns8-ui-lib.ssr.js +273 -388
- package/package.json +1 -1
- package/src/lib-components/NsEmptyState.vue +20 -2
- package/src/lib-components/NsInfoCard.vue +3 -0
- package/src/lib-components/NsLottieAnimation.vue +68 -0
- package/src/lib-components/NsNodeCard.vue +0 -212
package/dist/ns8-ui-lib.esm.js
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { CvButton, CvIconButton, CvInlineNotification, CvTile, CvToastNotification, CvLink, CvTooltip, CvTag, CvTextInput, CvOverflowMenu } from '@carbon/vue';
|
|
2
|
+
import LottieAnimation from 'lottie-web-vue';
|
|
2
3
|
import Copy20 from '@carbon/icons-vue/es/copy/20';
|
|
3
4
|
import ChevronDown20 from '@carbon/icons-vue/es/chevron--down/20';
|
|
4
5
|
import { carbonPrefixMixin, themeMixin } from '@carbon/vue/src/mixins';
|
|
5
6
|
import CheckmarkFilled20 from '@carbon/icons-vue/es/checkmark--filled/20';
|
|
6
7
|
import ErrorFilled20 from '@carbon/icons-vue/es/error--filled/20';
|
|
7
8
|
import Warning20 from '@carbon/icons-vue/es/warning--filled/20';
|
|
8
|
-
import Chip32 from '@carbon/icons-vue/es/chip/32';
|
|
9
|
-
import Information16 from '@carbon/icons-vue/es/information/16';
|
|
10
9
|
import Vue from 'vue';
|
|
11
10
|
import '@carbon/charts/styles.css';
|
|
12
11
|
import chartsVue, { CcvMeterChart } from '@carbon/charts-vue';
|
|
@@ -34,6 +33,7 @@ import Add20 from '@carbon/icons-vue/es/add/20';
|
|
|
34
33
|
import Rocket20 from '@carbon/icons-vue/es/rocket/20';
|
|
35
34
|
import Rocket32 from '@carbon/icons-vue/es/rocket/32';
|
|
36
35
|
import Chip20 from '@carbon/icons-vue/es/chip/20';
|
|
36
|
+
import Chip32 from '@carbon/icons-vue/es/chip/32';
|
|
37
37
|
import Save20 from '@carbon/icons-vue/es/save/20';
|
|
38
38
|
import Application32 from '@carbon/icons-vue/es/application/32';
|
|
39
39
|
import EdgeNode20 from '@carbon/icons-vue/es/edge-node/20';
|
|
@@ -264,12 +264,12 @@ const __vue_is_functional_template__$l = false;
|
|
|
264
264
|
|
|
265
265
|
/* style inject shadow dom */
|
|
266
266
|
|
|
267
|
-
const __vue_component__$
|
|
267
|
+
const __vue_component__$B = /*#__PURE__*/normalizeComponent({
|
|
268
268
|
render: __vue_render__$k,
|
|
269
269
|
staticRenderFns: __vue_staticRenderFns__$k
|
|
270
270
|
}, __vue_inject_styles__$l, __vue_script__$g, __vue_scope_id__$l, __vue_is_functional_template__$l, __vue_module_identifier__$l, false, createInjector, undefined, undefined);
|
|
271
271
|
|
|
272
|
-
var __vue_component__$
|
|
272
|
+
var __vue_component__$C = __vue_component__$B;
|
|
273
273
|
|
|
274
274
|
//
|
|
275
275
|
//
|
|
@@ -360,16 +360,73 @@ const __vue_is_functional_template__$k = false;
|
|
|
360
360
|
|
|
361
361
|
/* style inject shadow dom */
|
|
362
362
|
|
|
363
|
-
const __vue_component__$
|
|
363
|
+
const __vue_component__$A = /*#__PURE__*/normalizeComponent({
|
|
364
364
|
render: __vue_render__$j,
|
|
365
365
|
staticRenderFns: __vue_staticRenderFns__$j
|
|
366
366
|
}, __vue_inject_styles__$k, __vue_script__$f, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, undefined, undefined, undefined);
|
|
367
367
|
|
|
368
|
-
var NsPictogram = __vue_component__$
|
|
368
|
+
var NsPictogram = __vue_component__$A;
|
|
369
369
|
|
|
370
|
-
|
|
370
|
+
//
|
|
371
|
+
var script$e = {
|
|
372
|
+
name: "NsLottieAnimation",
|
|
373
|
+
components: {
|
|
374
|
+
LottieAnimation
|
|
375
|
+
},
|
|
376
|
+
props: {
|
|
377
|
+
animationData: {
|
|
378
|
+
type: Object,
|
|
379
|
+
required: true
|
|
380
|
+
},
|
|
381
|
+
loop: {
|
|
382
|
+
type: [Boolean, Number],
|
|
383
|
+
default: false
|
|
384
|
+
},
|
|
385
|
+
autoPlay: {
|
|
386
|
+
type: Boolean,
|
|
387
|
+
default: true
|
|
388
|
+
},
|
|
389
|
+
refName: {
|
|
390
|
+
type: String,
|
|
391
|
+
default: "anim"
|
|
392
|
+
},
|
|
393
|
+
animateOnHover: {
|
|
394
|
+
type: Boolean,
|
|
395
|
+
default: true
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
methods: {
|
|
399
|
+
onLoopComplete(eventData) {
|
|
400
|
+
this.$emit("loopComplete", eventData);
|
|
401
|
+
},
|
|
402
|
+
|
|
403
|
+
onComplete(eventData) {
|
|
404
|
+
this.$emit("complete", eventData);
|
|
371
405
|
|
|
406
|
+
if (this.animateOnHover) {
|
|
407
|
+
this.$refs[this.refName].stop();
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
|
|
411
|
+
onEnterFrame(eventData) {
|
|
412
|
+
this.$emit("enterFrame", eventData);
|
|
413
|
+
},
|
|
414
|
+
|
|
415
|
+
onMouseOver(eventData) {
|
|
416
|
+
this.$emit("mouseover", eventData);
|
|
417
|
+
|
|
418
|
+
if (this.animateOnHover) {
|
|
419
|
+
this.$refs[this.refName].play();
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
}
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
/* script */
|
|
427
|
+
const __vue_script__$e = script$e;
|
|
372
428
|
/* template */
|
|
429
|
+
|
|
373
430
|
var __vue_render__$i = function () {
|
|
374
431
|
var _vm = this;
|
|
375
432
|
|
|
@@ -377,12 +434,24 @@ var __vue_render__$i = function () {
|
|
|
377
434
|
|
|
378
435
|
var _c = _vm._self._c || _h;
|
|
379
436
|
|
|
380
|
-
return _c('
|
|
437
|
+
return _c('div', {
|
|
438
|
+
staticClass: "ns-lottie-animation",
|
|
439
|
+
on: {
|
|
440
|
+
"mouseover": _vm.onMouseOver
|
|
441
|
+
}
|
|
442
|
+
}, [_c('LottieAnimation', {
|
|
443
|
+
ref: _vm.refName,
|
|
381
444
|
attrs: {
|
|
382
|
-
"
|
|
383
|
-
"
|
|
445
|
+
"animationData": _vm.animationData,
|
|
446
|
+
"loop": _vm.loop,
|
|
447
|
+
"autoPlay": _vm.autoPlay
|
|
448
|
+
},
|
|
449
|
+
on: {
|
|
450
|
+
"loopComplete": _vm.onLoopComplete,
|
|
451
|
+
"complete": _vm.onComplete,
|
|
452
|
+
"enterFrame": _vm.onEnterFrame
|
|
384
453
|
}
|
|
385
|
-
});
|
|
454
|
+
})], 1);
|
|
386
455
|
};
|
|
387
456
|
|
|
388
457
|
var __vue_staticRenderFns__$i = [];
|
|
@@ -391,7 +460,7 @@ var __vue_staticRenderFns__$i = [];
|
|
|
391
460
|
const __vue_inject_styles__$j = undefined;
|
|
392
461
|
/* scoped */
|
|
393
462
|
|
|
394
|
-
const __vue_scope_id__$j =
|
|
463
|
+
const __vue_scope_id__$j = "data-v-14e97a70";
|
|
395
464
|
/* module identifier */
|
|
396
465
|
|
|
397
466
|
const __vue_module_identifier__$j = undefined;
|
|
@@ -404,25 +473,72 @@ const __vue_is_functional_template__$j = false;
|
|
|
404
473
|
|
|
405
474
|
/* style inject shadow dom */
|
|
406
475
|
|
|
407
|
-
const __vue_component__$
|
|
476
|
+
const __vue_component__$z = /*#__PURE__*/normalizeComponent({
|
|
408
477
|
render: __vue_render__$i,
|
|
409
478
|
staticRenderFns: __vue_staticRenderFns__$i
|
|
410
|
-
}, __vue_inject_styles__$j,
|
|
479
|
+
}, __vue_inject_styles__$j, __vue_script__$e, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, undefined, undefined, undefined);
|
|
411
480
|
|
|
412
|
-
var
|
|
481
|
+
var NsLottieAnimation = __vue_component__$z;
|
|
482
|
+
|
|
483
|
+
/* script */
|
|
484
|
+
|
|
485
|
+
/* template */
|
|
486
|
+
var __vue_render__$h = function () {
|
|
487
|
+
var _vm = this;
|
|
488
|
+
|
|
489
|
+
var _h = _vm.$createElement;
|
|
490
|
+
|
|
491
|
+
var _c = _vm._self._c || _h;
|
|
492
|
+
|
|
493
|
+
return _c('path', {
|
|
494
|
+
attrs: {
|
|
495
|
+
"id": "warning--02_1_",
|
|
496
|
+
"d": "M23.668,29.312l-0.359-0.623c4.522-2.61,7.331-7.473,7.331-12.688c0-8.073-6.567-14.64-14.64-14.64\n\tC7.927,1.36,1.36,7.927,1.36,16c0,5.216,2.81,10.078,7.332,12.688l-0.36,0.623C3.587,26.573,0.64,21.473,0.64,16\n\tC0.64,7.53,7.53,0.64,16,0.64S31.36,7.53,31.36,16C31.36,21.473,28.413,26.573,23.668,29.312z M16.36,24h-0.72V6h0.72V24z M16,28.5\n\tc-0.552,0-1,0.448-1,1s0.448,1,1,1s1-0.448,1-1S16.552,28.5,16,28.5z"
|
|
497
|
+
}
|
|
498
|
+
});
|
|
499
|
+
};
|
|
500
|
+
|
|
501
|
+
var __vue_staticRenderFns__$h = [];
|
|
502
|
+
/* style */
|
|
503
|
+
|
|
504
|
+
const __vue_inject_styles__$i = undefined;
|
|
505
|
+
/* scoped */
|
|
506
|
+
|
|
507
|
+
const __vue_scope_id__$i = undefined;
|
|
508
|
+
/* module identifier */
|
|
509
|
+
|
|
510
|
+
const __vue_module_identifier__$i = undefined;
|
|
511
|
+
/* functional template */
|
|
512
|
+
|
|
513
|
+
const __vue_is_functional_template__$i = false;
|
|
514
|
+
/* style inject */
|
|
515
|
+
|
|
516
|
+
/* style inject SSR */
|
|
517
|
+
|
|
518
|
+
/* style inject shadow dom */
|
|
519
|
+
|
|
520
|
+
const __vue_component__$y = /*#__PURE__*/normalizeComponent({
|
|
521
|
+
render: __vue_render__$h,
|
|
522
|
+
staticRenderFns: __vue_staticRenderFns__$h
|
|
523
|
+
}, __vue_inject_styles__$i, {}, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, undefined, undefined, undefined);
|
|
524
|
+
|
|
525
|
+
var ExclamationMark = __vue_component__$y;
|
|
413
526
|
|
|
414
527
|
//
|
|
415
|
-
var script$
|
|
528
|
+
var script$d = {
|
|
416
529
|
name: "NsEmptyState",
|
|
417
530
|
components: {
|
|
418
531
|
NsPictogram,
|
|
419
|
-
ExclamationMark
|
|
532
|
+
ExclamationMark,
|
|
533
|
+
NsLottieAnimation
|
|
420
534
|
},
|
|
421
535
|
props: {
|
|
422
536
|
title: {
|
|
423
537
|
type: String,
|
|
424
538
|
required: true
|
|
425
|
-
}
|
|
539
|
+
},
|
|
540
|
+
animationData: Object,
|
|
541
|
+
animationTitle: String
|
|
426
542
|
},
|
|
427
543
|
computed: {
|
|
428
544
|
hasPictogramSlot() {
|
|
@@ -437,10 +553,10 @@ var script$e = {
|
|
|
437
553
|
};
|
|
438
554
|
|
|
439
555
|
/* script */
|
|
440
|
-
const __vue_script__$
|
|
556
|
+
const __vue_script__$d = script$d;
|
|
441
557
|
/* template */
|
|
442
558
|
|
|
443
|
-
var __vue_render__$
|
|
559
|
+
var __vue_render__$g = function () {
|
|
444
560
|
var _vm = this;
|
|
445
561
|
|
|
446
562
|
var _h = _vm.$createElement;
|
|
@@ -449,7 +565,16 @@ var __vue_render__$h = function () {
|
|
|
449
565
|
|
|
450
566
|
return _c('div', {
|
|
451
567
|
staticClass: "empty-state"
|
|
452
|
-
}, [_c('
|
|
568
|
+
}, [_vm.animationData ? _c('NsLottieAnimation', {
|
|
569
|
+
staticClass: "animation image",
|
|
570
|
+
attrs: {
|
|
571
|
+
"animationData": _vm.animationData,
|
|
572
|
+
"refName": _vm.animationTitle,
|
|
573
|
+
"animateOnHover": true,
|
|
574
|
+
"loop": 1,
|
|
575
|
+
"autoPlay": true
|
|
576
|
+
}
|
|
577
|
+
}) : _c('NsPictogram', {
|
|
453
578
|
staticClass: "image",
|
|
454
579
|
attrs: {
|
|
455
580
|
"title": "empty state"
|
|
@@ -461,13 +586,13 @@ var __vue_render__$h = function () {
|
|
|
461
586
|
}, [_vm._t("description")], 2)] : _vm._e()], 2);
|
|
462
587
|
};
|
|
463
588
|
|
|
464
|
-
var __vue_staticRenderFns__$
|
|
589
|
+
var __vue_staticRenderFns__$g = [];
|
|
465
590
|
/* style */
|
|
466
591
|
|
|
467
|
-
const __vue_inject_styles__$
|
|
592
|
+
const __vue_inject_styles__$h = function (inject) {
|
|
468
593
|
if (!inject) return;
|
|
469
|
-
inject("data-v-
|
|
470
|
-
source: ".empty-state[data-v-
|
|
594
|
+
inject("data-v-08d7dd18_0", {
|
|
595
|
+
source: ".empty-state[data-v-08d7dd18]{text-align:center;padding:2rem}.empty-state .image[data-v-08d7dd18]{margin-bottom:1rem}.empty-state .description[data-v-08d7dd18]{margin-top:1rem}.animation[data-v-08d7dd18]{display:inline-block;width:64px;height:64px}",
|
|
471
596
|
map: undefined,
|
|
472
597
|
media: undefined
|
|
473
598
|
});
|
|
@@ -475,26 +600,26 @@ const __vue_inject_styles__$i = function (inject) {
|
|
|
475
600
|
/* scoped */
|
|
476
601
|
|
|
477
602
|
|
|
478
|
-
const __vue_scope_id__$
|
|
603
|
+
const __vue_scope_id__$h = "data-v-08d7dd18";
|
|
479
604
|
/* module identifier */
|
|
480
605
|
|
|
481
|
-
const __vue_module_identifier__$
|
|
606
|
+
const __vue_module_identifier__$h = undefined;
|
|
482
607
|
/* functional template */
|
|
483
608
|
|
|
484
|
-
const __vue_is_functional_template__$
|
|
609
|
+
const __vue_is_functional_template__$h = false;
|
|
485
610
|
/* style inject SSR */
|
|
486
611
|
|
|
487
612
|
/* style inject shadow dom */
|
|
488
613
|
|
|
489
|
-
const __vue_component__$
|
|
490
|
-
render: __vue_render__$
|
|
491
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
492
|
-
}, __vue_inject_styles__$
|
|
614
|
+
const __vue_component__$w = /*#__PURE__*/normalizeComponent({
|
|
615
|
+
render: __vue_render__$g,
|
|
616
|
+
staticRenderFns: __vue_staticRenderFns__$g
|
|
617
|
+
}, __vue_inject_styles__$h, __vue_script__$d, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, createInjector, undefined, undefined);
|
|
493
618
|
|
|
494
|
-
var __vue_component__$
|
|
619
|
+
var __vue_component__$x = __vue_component__$w;
|
|
495
620
|
|
|
496
621
|
//
|
|
497
|
-
var script$
|
|
622
|
+
var script$c = {
|
|
498
623
|
name: "NsCodeSnippet",
|
|
499
624
|
components: {
|
|
500
625
|
CvButton,
|
|
@@ -606,10 +731,10 @@ var script$d = {
|
|
|
606
731
|
};
|
|
607
732
|
|
|
608
733
|
/* script */
|
|
609
|
-
const __vue_script__$
|
|
734
|
+
const __vue_script__$c = script$c;
|
|
610
735
|
/* template */
|
|
611
736
|
|
|
612
|
-
var __vue_render__$
|
|
737
|
+
var __vue_render__$f = function () {
|
|
613
738
|
var _vm = this;
|
|
614
739
|
|
|
615
740
|
var _h = _vm.$createElement;
|
|
@@ -671,10 +796,10 @@ var __vue_render__$g = function () {
|
|
|
671
796
|
})], 1) : _vm._e()], 1);
|
|
672
797
|
};
|
|
673
798
|
|
|
674
|
-
var __vue_staticRenderFns__$
|
|
799
|
+
var __vue_staticRenderFns__$f = [];
|
|
675
800
|
/* style */
|
|
676
801
|
|
|
677
|
-
const __vue_inject_styles__$
|
|
802
|
+
const __vue_inject_styles__$g = function (inject) {
|
|
678
803
|
if (!inject) return;
|
|
679
804
|
inject("data-v-59cb538c_0", {
|
|
680
805
|
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}",
|
|
@@ -685,26 +810,26 @@ const __vue_inject_styles__$h = function (inject) {
|
|
|
685
810
|
/* scoped */
|
|
686
811
|
|
|
687
812
|
|
|
688
|
-
const __vue_scope_id__$
|
|
813
|
+
const __vue_scope_id__$g = "data-v-59cb538c";
|
|
689
814
|
/* module identifier */
|
|
690
815
|
|
|
691
|
-
const __vue_module_identifier__$
|
|
816
|
+
const __vue_module_identifier__$g = undefined;
|
|
692
817
|
/* functional template */
|
|
693
818
|
|
|
694
|
-
const __vue_is_functional_template__$
|
|
819
|
+
const __vue_is_functional_template__$g = false;
|
|
695
820
|
/* style inject SSR */
|
|
696
821
|
|
|
697
822
|
/* style inject shadow dom */
|
|
698
823
|
|
|
699
|
-
const __vue_component__$
|
|
700
|
-
render: __vue_render__$
|
|
701
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
702
|
-
}, __vue_inject_styles__$
|
|
824
|
+
const __vue_component__$u = /*#__PURE__*/normalizeComponent({
|
|
825
|
+
render: __vue_render__$f,
|
|
826
|
+
staticRenderFns: __vue_staticRenderFns__$f
|
|
827
|
+
}, __vue_inject_styles__$g, __vue_script__$c, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, createInjector, undefined, undefined);
|
|
703
828
|
|
|
704
|
-
var __vue_component__$
|
|
829
|
+
var __vue_component__$v = __vue_component__$u;
|
|
705
830
|
|
|
706
831
|
//
|
|
707
|
-
var script$
|
|
832
|
+
var script$b = {
|
|
708
833
|
name: "NsInlineNotification",
|
|
709
834
|
extends: CvInlineNotification,
|
|
710
835
|
props: {
|
|
@@ -735,10 +860,10 @@ var script$c = {
|
|
|
735
860
|
};
|
|
736
861
|
|
|
737
862
|
/* script */
|
|
738
|
-
const __vue_script__$
|
|
863
|
+
const __vue_script__$b = script$b;
|
|
739
864
|
/* template */
|
|
740
865
|
|
|
741
|
-
var __vue_render__$
|
|
866
|
+
var __vue_render__$e = function () {
|
|
742
867
|
var _obj;
|
|
743
868
|
|
|
744
869
|
var _vm = this;
|
|
@@ -802,10 +927,10 @@ var __vue_render__$f = function () {
|
|
|
802
927
|
})], 1) : _vm._e()]);
|
|
803
928
|
};
|
|
804
929
|
|
|
805
|
-
var __vue_staticRenderFns__$
|
|
930
|
+
var __vue_staticRenderFns__$e = [];
|
|
806
931
|
/* style */
|
|
807
932
|
|
|
808
|
-
const __vue_inject_styles__$
|
|
933
|
+
const __vue_inject_styles__$f = function (inject) {
|
|
809
934
|
if (!inject) return;
|
|
810
935
|
inject("data-v-3df2e043_0", {
|
|
811
936
|
source: ".title[data-v-3df2e043]{margin-right:.75rem;margin-bottom:.2rem}.mg-right[data-v-3df2e043]{margin-right:.75rem}.details[data-v-3df2e043]{flex-grow:0}.bx--inline-notification__close-button[data-v-3df2e043]{position:absolute!important}",
|
|
@@ -816,23 +941,23 @@ const __vue_inject_styles__$g = function (inject) {
|
|
|
816
941
|
/* scoped */
|
|
817
942
|
|
|
818
943
|
|
|
819
|
-
const __vue_scope_id__$
|
|
944
|
+
const __vue_scope_id__$f = "data-v-3df2e043";
|
|
820
945
|
/* module identifier */
|
|
821
946
|
|
|
822
|
-
const __vue_module_identifier__$
|
|
947
|
+
const __vue_module_identifier__$f = undefined;
|
|
823
948
|
/* functional template */
|
|
824
949
|
|
|
825
|
-
const __vue_is_functional_template__$
|
|
950
|
+
const __vue_is_functional_template__$f = false;
|
|
826
951
|
/* style inject SSR */
|
|
827
952
|
|
|
828
953
|
/* style inject shadow dom */
|
|
829
954
|
|
|
830
|
-
const __vue_component__$
|
|
831
|
-
render: __vue_render__$
|
|
832
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
833
|
-
}, __vue_inject_styles__$
|
|
955
|
+
const __vue_component__$s = /*#__PURE__*/normalizeComponent({
|
|
956
|
+
render: __vue_render__$e,
|
|
957
|
+
staticRenderFns: __vue_staticRenderFns__$e
|
|
958
|
+
}, __vue_inject_styles__$f, __vue_script__$b, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
|
|
834
959
|
|
|
835
|
-
var __vue_component__$
|
|
960
|
+
var __vue_component__$t = __vue_component__$s;
|
|
836
961
|
|
|
837
962
|
//
|
|
838
963
|
//
|
|
@@ -851,7 +976,7 @@ var __vue_component__$v = __vue_component__$u;
|
|
|
851
976
|
//
|
|
852
977
|
//
|
|
853
978
|
//
|
|
854
|
-
var script$
|
|
979
|
+
var script$a = {
|
|
855
980
|
name: "NsProgressBar",
|
|
856
981
|
props: {
|
|
857
982
|
value: {
|
|
@@ -881,10 +1006,10 @@ var script$b = {
|
|
|
881
1006
|
};
|
|
882
1007
|
|
|
883
1008
|
/* script */
|
|
884
|
-
const __vue_script__$
|
|
1009
|
+
const __vue_script__$a = script$a;
|
|
885
1010
|
/* template */
|
|
886
1011
|
|
|
887
|
-
var __vue_render__$
|
|
1012
|
+
var __vue_render__$d = function () {
|
|
888
1013
|
var _vm = this;
|
|
889
1014
|
|
|
890
1015
|
var _h = _vm.$createElement;
|
|
@@ -909,10 +1034,10 @@ var __vue_render__$e = function () {
|
|
|
909
1034
|
})]], 2)]);
|
|
910
1035
|
};
|
|
911
1036
|
|
|
912
|
-
var __vue_staticRenderFns__$
|
|
1037
|
+
var __vue_staticRenderFns__$d = [];
|
|
913
1038
|
/* style */
|
|
914
1039
|
|
|
915
|
-
const __vue_inject_styles__$
|
|
1040
|
+
const __vue_inject_styles__$e = function (inject) {
|
|
916
1041
|
if (!inject) return;
|
|
917
1042
|
inject("data-v-7110814a_0", {
|
|
918
1043
|
source: ".progress-bar-container[data-v-7110814a]{width:100%;position:relative}.slider[data-v-7110814a]{position:absolute;width:100%;height:5px;overflow-x:hidden}.line[data-v-7110814a]{position:absolute;opacity:.4;width:100%;height:5px}.progress-line[data-v-7110814a]{position:absolute;height:5px}.indeterminate-line[data-v-7110814a]{position:absolute;opacity:.4;width:150%;height:5px}.indeterminate-subline[data-v-7110814a]{position:absolute;height:5px}.inc[data-v-7110814a]{animation:increase-data-v-7110814a 2s infinite}.dec[data-v-7110814a]{animation:decrease-data-v-7110814a 2s .5s infinite}@keyframes increase-data-v-7110814a{from{left:-5%;width:5%}to{left:130%;width:100%}}@keyframes decrease-data-v-7110814a{from{left:-80%;width:80%}to{left:110%;width:10%}}",
|
|
@@ -923,25 +1048,25 @@ const __vue_inject_styles__$f = function (inject) {
|
|
|
923
1048
|
/* scoped */
|
|
924
1049
|
|
|
925
1050
|
|
|
926
|
-
const __vue_scope_id__$
|
|
1051
|
+
const __vue_scope_id__$e = "data-v-7110814a";
|
|
927
1052
|
/* module identifier */
|
|
928
1053
|
|
|
929
|
-
const __vue_module_identifier__$
|
|
1054
|
+
const __vue_module_identifier__$e = undefined;
|
|
930
1055
|
/* functional template */
|
|
931
1056
|
|
|
932
|
-
const __vue_is_functional_template__$
|
|
1057
|
+
const __vue_is_functional_template__$e = false;
|
|
933
1058
|
/* style inject SSR */
|
|
934
1059
|
|
|
935
1060
|
/* style inject shadow dom */
|
|
936
1061
|
|
|
937
|
-
const __vue_component__$
|
|
938
|
-
render: __vue_render__$
|
|
939
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
940
|
-
}, __vue_inject_styles__$
|
|
1062
|
+
const __vue_component__$r = /*#__PURE__*/normalizeComponent({
|
|
1063
|
+
render: __vue_render__$d,
|
|
1064
|
+
staticRenderFns: __vue_staticRenderFns__$d
|
|
1065
|
+
}, __vue_inject_styles__$e, __vue_script__$a, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, createInjector, undefined, undefined);
|
|
941
1066
|
|
|
942
|
-
var NsProgressBar = __vue_component__$
|
|
1067
|
+
var NsProgressBar = __vue_component__$r;
|
|
943
1068
|
|
|
944
|
-
var script$
|
|
1069
|
+
var script$9 = {
|
|
945
1070
|
name: "NsSvg",
|
|
946
1071
|
props: {
|
|
947
1072
|
svg: {
|
|
@@ -1000,33 +1125,33 @@ var script$a = {
|
|
|
1000
1125
|
};
|
|
1001
1126
|
|
|
1002
1127
|
/* script */
|
|
1003
|
-
const __vue_script__$
|
|
1128
|
+
const __vue_script__$9 = script$9;
|
|
1004
1129
|
/* template */
|
|
1005
1130
|
|
|
1006
1131
|
/* style */
|
|
1007
1132
|
|
|
1008
|
-
const __vue_inject_styles__$
|
|
1133
|
+
const __vue_inject_styles__$d = undefined;
|
|
1009
1134
|
/* scoped */
|
|
1010
1135
|
|
|
1011
|
-
const __vue_scope_id__$
|
|
1136
|
+
const __vue_scope_id__$d = undefined;
|
|
1012
1137
|
/* module identifier */
|
|
1013
1138
|
|
|
1014
|
-
const __vue_module_identifier__$
|
|
1139
|
+
const __vue_module_identifier__$d = undefined;
|
|
1015
1140
|
/* functional template */
|
|
1016
1141
|
|
|
1017
|
-
const __vue_is_functional_template__$
|
|
1142
|
+
const __vue_is_functional_template__$d = undefined;
|
|
1018
1143
|
/* style inject */
|
|
1019
1144
|
|
|
1020
1145
|
/* style inject SSR */
|
|
1021
1146
|
|
|
1022
1147
|
/* style inject shadow dom */
|
|
1023
1148
|
|
|
1024
|
-
const __vue_component__$
|
|
1149
|
+
const __vue_component__$q = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$d, __vue_script__$9, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, undefined, undefined, undefined);
|
|
1025
1150
|
|
|
1026
|
-
var NsSvg = __vue_component__$
|
|
1151
|
+
var NsSvg = __vue_component__$q;
|
|
1027
1152
|
|
|
1028
1153
|
//
|
|
1029
|
-
var script$
|
|
1154
|
+
var script$8 = {
|
|
1030
1155
|
name: "NsTile",
|
|
1031
1156
|
extends: CvTile,
|
|
1032
1157
|
inheritAttrs: false,
|
|
@@ -1094,10 +1219,10 @@ var script$9 = {
|
|
|
1094
1219
|
};
|
|
1095
1220
|
|
|
1096
1221
|
/* script */
|
|
1097
|
-
const __vue_script__$
|
|
1222
|
+
const __vue_script__$8 = script$8;
|
|
1098
1223
|
/* template */
|
|
1099
1224
|
|
|
1100
|
-
var __vue_render__$
|
|
1225
|
+
var __vue_render__$c = function () {
|
|
1101
1226
|
var _obj;
|
|
1102
1227
|
|
|
1103
1228
|
var _vm = this;
|
|
@@ -1134,10 +1259,10 @@ var __vue_render__$d = function () {
|
|
|
1134
1259
|
}) : _vm._e()], 1);
|
|
1135
1260
|
};
|
|
1136
1261
|
|
|
1137
|
-
var __vue_staticRenderFns__$
|
|
1262
|
+
var __vue_staticRenderFns__$c = [];
|
|
1138
1263
|
/* style */
|
|
1139
1264
|
|
|
1140
|
-
const __vue_inject_styles__$
|
|
1265
|
+
const __vue_inject_styles__$c = function (inject) {
|
|
1141
1266
|
if (!inject) return;
|
|
1142
1267
|
inject("data-v-bbf09f9e_0", {
|
|
1143
1268
|
source: ".ns-tile[data-v-bbf09f9e]{margin-bottom:2rem}.container[data-v-bbf09f9e]{display:flex;flex-direction:column;justify-content:center}.centered[data-v-bbf09f9e]{text-align:center}.large[data-v-bbf09f9e]{min-height:10rem}.tile-icon[data-v-bbf09f9e]{display:block;margin-left:auto;margin-right:auto;margin-bottom:1rem}.tile-footer-icon[data-v-bbf09f9e]{position:absolute;right:1rem;bottom:1rem;flex-shrink:0;width:1.25rem;height:1.25rem}.pad-bottom[data-v-bbf09f9e]{padding-bottom:4rem}",
|
|
@@ -1148,23 +1273,23 @@ const __vue_inject_styles__$d = function (inject) {
|
|
|
1148
1273
|
/* scoped */
|
|
1149
1274
|
|
|
1150
1275
|
|
|
1151
|
-
const __vue_scope_id__$
|
|
1276
|
+
const __vue_scope_id__$c = "data-v-bbf09f9e";
|
|
1152
1277
|
/* module identifier */
|
|
1153
1278
|
|
|
1154
|
-
const __vue_module_identifier__$
|
|
1279
|
+
const __vue_module_identifier__$c = undefined;
|
|
1155
1280
|
/* functional template */
|
|
1156
1281
|
|
|
1157
|
-
const __vue_is_functional_template__$
|
|
1282
|
+
const __vue_is_functional_template__$c = false;
|
|
1158
1283
|
/* style inject SSR */
|
|
1159
1284
|
|
|
1160
1285
|
/* style inject shadow dom */
|
|
1161
1286
|
|
|
1162
|
-
const __vue_component__$
|
|
1163
|
-
render: __vue_render__$
|
|
1164
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1165
|
-
}, __vue_inject_styles__$
|
|
1287
|
+
const __vue_component__$o = /*#__PURE__*/normalizeComponent({
|
|
1288
|
+
render: __vue_render__$c,
|
|
1289
|
+
staticRenderFns: __vue_staticRenderFns__$c
|
|
1290
|
+
}, __vue_inject_styles__$c, __vue_script__$8, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
|
|
1166
1291
|
|
|
1167
|
-
var __vue_component__$
|
|
1292
|
+
var __vue_component__$p = __vue_component__$o;
|
|
1168
1293
|
|
|
1169
1294
|
function toInteger(dirtyNumber) {
|
|
1170
1295
|
if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) {
|
|
@@ -5761,7 +5886,7 @@ var DateTimeService = {
|
|
|
5761
5886
|
};
|
|
5762
5887
|
|
|
5763
5888
|
//
|
|
5764
|
-
var script$
|
|
5889
|
+
var script$7 = {
|
|
5765
5890
|
name: "NsToastNotification",
|
|
5766
5891
|
extends: CvToastNotification,
|
|
5767
5892
|
components: {
|
|
@@ -5803,10 +5928,10 @@ var script$8 = {
|
|
|
5803
5928
|
};
|
|
5804
5929
|
|
|
5805
5930
|
/* script */
|
|
5806
|
-
const __vue_script__$
|
|
5931
|
+
const __vue_script__$7 = script$7;
|
|
5807
5932
|
/* template */
|
|
5808
5933
|
|
|
5809
|
-
var __vue_render__$
|
|
5934
|
+
var __vue_render__$b = function () {
|
|
5810
5935
|
var _obj;
|
|
5811
5936
|
|
|
5812
5937
|
var _vm = this;
|
|
@@ -5889,10 +6014,10 @@ var __vue_render__$c = function () {
|
|
|
5889
6014
|
})], 1) : _vm._e()], 1)]);
|
|
5890
6015
|
};
|
|
5891
6016
|
|
|
5892
|
-
var __vue_staticRenderFns__$
|
|
6017
|
+
var __vue_staticRenderFns__$b = [];
|
|
5893
6018
|
/* style */
|
|
5894
6019
|
|
|
5895
|
-
const __vue_inject_styles__$
|
|
6020
|
+
const __vue_inject_styles__$b = function (inject) {
|
|
5896
6021
|
if (!inject) return;
|
|
5897
6022
|
inject("data-v-79bd81d3_0", {
|
|
5898
6023
|
source: ".notification[data-v-79bd81d3]{margin-bottom:0;margin-right:0}.action[data-v-79bd81d3]{padding-top:0;margin-bottom:0}.bx--toast-notification .bx--inline-notification__action-button.bx--btn--ghost[data-v-79bd81d3]{margin-left:-16px}.notification-description-and-progress[data-v-79bd81d3]{margin-top:.75rem;margin-bottom:.75rem}.fix-margin-bottom[data-v-79bd81d3]{margin-bottom:0}.progress[data-v-79bd81d3]{margin-top:.75rem}.progress-bar-spacer[data-v-79bd81d3]{height:.5rem}.cv-notifiation.bx--toast-notification.notification[data-v-79bd81d3]{width:26vw;min-width:20rem;margin-top:0}.notification-drawer .cv-notifiation.bx--toast-notification.notification[data-v-79bd81d3]{margin-top:1rem}.notification-drawer .cv-notifiation.bx--toast-notification.notification[data-v-79bd81d3]{width:100%;cursor:pointer}.notification-read[data-v-79bd81d3]{border-color:#8d8d8d;color:#c6c6c6}.notification-read .bx--toast-notification__icon[data-v-79bd81d3]{fill:currentColor}.notification-read .bx--toast-notification__subtitle[data-v-79bd81d3]{color:#c6c6c6}.notification-read .bx--toast-notification__title[data-v-79bd81d3]{font-weight:400}.cv-notifiation .timestamp[data-v-79bd81d3]{margin-bottom:.75rem;line-height:1.29;color:#fff;text-decoration:underline}.cv-notifiation .timestamp button[data-v-79bd81d3]{color:#c6c6c6}.bx--tooltip__trigger[data-v-79bd81d3]:not(.bx--btn--icon-only){font-size:inherit}.cv-notifiation .timestamp .bx--tooltip__trigger[data-v-79bd81d3]::before{border-bottom-color:#161616}div.row[data-v-79bd81d3]:last-child{margin-bottom:1.5rem}.bx--toast-notification__details[data-v-79bd81d3]{flex-grow:1}",
|
|
@@ -5907,26 +6032,26 @@ const __vue_inject_styles__$c = function (inject) {
|
|
|
5907
6032
|
/* scoped */
|
|
5908
6033
|
|
|
5909
6034
|
|
|
5910
|
-
const __vue_scope_id__$
|
|
6035
|
+
const __vue_scope_id__$b = "data-v-79bd81d3";
|
|
5911
6036
|
/* module identifier */
|
|
5912
6037
|
|
|
5913
|
-
const __vue_module_identifier__$
|
|
6038
|
+
const __vue_module_identifier__$b = undefined;
|
|
5914
6039
|
/* functional template */
|
|
5915
6040
|
|
|
5916
|
-
const __vue_is_functional_template__$
|
|
6041
|
+
const __vue_is_functional_template__$b = false;
|
|
5917
6042
|
/* style inject SSR */
|
|
5918
6043
|
|
|
5919
6044
|
/* style inject shadow dom */
|
|
5920
6045
|
|
|
5921
|
-
const __vue_component__$
|
|
5922
|
-
render: __vue_render__$
|
|
5923
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
5924
|
-
}, __vue_inject_styles__$
|
|
6046
|
+
const __vue_component__$m = /*#__PURE__*/normalizeComponent({
|
|
6047
|
+
render: __vue_render__$b,
|
|
6048
|
+
staticRenderFns: __vue_staticRenderFns__$b
|
|
6049
|
+
}, __vue_inject_styles__$b, __vue_script__$7, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, createInjector, undefined, undefined);
|
|
5925
6050
|
|
|
5926
|
-
var __vue_component__$
|
|
6051
|
+
var __vue_component__$n = __vue_component__$m;
|
|
5927
6052
|
|
|
5928
6053
|
//
|
|
5929
|
-
var script$
|
|
6054
|
+
var script$6 = {
|
|
5930
6055
|
name: "NsInfoCard",
|
|
5931
6056
|
//components added for storybook to work
|
|
5932
6057
|
components: {
|
|
@@ -5957,10 +6082,10 @@ var script$7 = {
|
|
|
5957
6082
|
};
|
|
5958
6083
|
|
|
5959
6084
|
/* script */
|
|
5960
|
-
const __vue_script__$
|
|
6085
|
+
const __vue_script__$6 = script$6;
|
|
5961
6086
|
/* template */
|
|
5962
6087
|
|
|
5963
|
-
var __vue_render__$
|
|
6088
|
+
var __vue_render__$a = function () {
|
|
5964
6089
|
var _vm = this;
|
|
5965
6090
|
|
|
5966
6091
|
var _h = _vm.$createElement;
|
|
@@ -5992,13 +6117,13 @@ var __vue_render__$b = function () {
|
|
|
5992
6117
|
}, [_vm._t("default")], 2)]);
|
|
5993
6118
|
};
|
|
5994
6119
|
|
|
5995
|
-
var __vue_staticRenderFns__$
|
|
6120
|
+
var __vue_staticRenderFns__$a = [];
|
|
5996
6121
|
/* style */
|
|
5997
6122
|
|
|
5998
|
-
const __vue_inject_styles__$
|
|
6123
|
+
const __vue_inject_styles__$a = function (inject) {
|
|
5999
6124
|
if (!inject) return;
|
|
6000
|
-
inject("data-v-
|
|
6001
|
-
source: ".info-card[data-v-
|
|
6125
|
+
inject("data-v-b195af80_0", {
|
|
6126
|
+
source: ".info-card[data-v-b195af80]{display:flex;flex-direction:column;justify-content:center;min-height:7rem}.row[data-v-b195af80]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.title[data-v-b195af80]{margin-left:.25rem;margin-right:.25rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.description[data-v-b195af80]{margin-left:.25rem;margin-right:.25rem}.slot[data-v-b195af80]{margin-top:.5rem}",
|
|
6002
6127
|
map: undefined,
|
|
6003
6128
|
media: undefined
|
|
6004
6129
|
});
|
|
@@ -6006,26 +6131,26 @@ const __vue_inject_styles__$b = function (inject) {
|
|
|
6006
6131
|
/* scoped */
|
|
6007
6132
|
|
|
6008
6133
|
|
|
6009
|
-
const __vue_scope_id__$
|
|
6134
|
+
const __vue_scope_id__$a = "data-v-b195af80";
|
|
6010
6135
|
/* module identifier */
|
|
6011
6136
|
|
|
6012
|
-
const __vue_module_identifier__$
|
|
6137
|
+
const __vue_module_identifier__$a = undefined;
|
|
6013
6138
|
/* functional template */
|
|
6014
6139
|
|
|
6015
|
-
const __vue_is_functional_template__$
|
|
6140
|
+
const __vue_is_functional_template__$a = false;
|
|
6016
6141
|
/* style inject SSR */
|
|
6017
6142
|
|
|
6018
6143
|
/* style inject shadow dom */
|
|
6019
6144
|
|
|
6020
|
-
const __vue_component__$
|
|
6021
|
-
render: __vue_render__$
|
|
6022
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6023
|
-
}, __vue_inject_styles__$
|
|
6145
|
+
const __vue_component__$k = /*#__PURE__*/normalizeComponent({
|
|
6146
|
+
render: __vue_render__$a,
|
|
6147
|
+
staticRenderFns: __vue_staticRenderFns__$a
|
|
6148
|
+
}, __vue_inject_styles__$a, __vue_script__$6, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, createInjector, undefined, undefined);
|
|
6024
6149
|
|
|
6025
|
-
var __vue_component__$
|
|
6150
|
+
var __vue_component__$l = __vue_component__$k;
|
|
6026
6151
|
|
|
6027
6152
|
//
|
|
6028
|
-
var script$
|
|
6153
|
+
var script$5 = {
|
|
6029
6154
|
name: "NsStatusCard",
|
|
6030
6155
|
//components added for storybook to work
|
|
6031
6156
|
components: {
|
|
@@ -6072,10 +6197,10 @@ var script$6 = {
|
|
|
6072
6197
|
};
|
|
6073
6198
|
|
|
6074
6199
|
/* script */
|
|
6075
|
-
const __vue_script__$
|
|
6200
|
+
const __vue_script__$5 = script$5;
|
|
6076
6201
|
/* template */
|
|
6077
6202
|
|
|
6078
|
-
var __vue_render__$
|
|
6203
|
+
var __vue_render__$9 = function () {
|
|
6079
6204
|
var _vm = this;
|
|
6080
6205
|
|
|
6081
6206
|
var _h = _vm.$createElement;
|
|
@@ -6144,10 +6269,10 @@ var __vue_render__$a = function () {
|
|
|
6144
6269
|
}, [_c('h4', [_vm._v(_vm._s(_vm.valueSuccess))])]) : _c('h4', [_vm._v(_vm._s(_vm.valueSuccess))])], 1) : _vm._e()])]);
|
|
6145
6270
|
};
|
|
6146
6271
|
|
|
6147
|
-
var __vue_staticRenderFns__$
|
|
6272
|
+
var __vue_staticRenderFns__$9 = [];
|
|
6148
6273
|
/* style */
|
|
6149
6274
|
|
|
6150
|
-
const __vue_inject_styles__$
|
|
6275
|
+
const __vue_inject_styles__$9 = function (inject) {
|
|
6151
6276
|
if (!inject) return;
|
|
6152
6277
|
inject("data-v-e4a14fb4_0", {
|
|
6153
6278
|
source: ".status-card[data-v-e4a14fb4]{display:flex;flex-direction:column;justify-content:center}.row[data-v-e4a14fb4]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.value[data-v-e4a14fb4]{margin-left:.25rem;margin-right:.25rem}.label[data-v-e4a14fb4]{margin-left:.25rem;margin-right:.25rem}.success-icon[data-v-e4a14fb4]{margin-right:.25rem}.error-icon[data-v-e4a14fb4]{margin-right:.25rem}.warning-icon[data-v-e4a14fb4]{margin-right:.25rem}.stats[data-v-e4a14fb4]{display:flex;align-items:center;margin-left:.5rem;margin-right:.5rem}",
|
|
@@ -6158,26 +6283,26 @@ const __vue_inject_styles__$a = function (inject) {
|
|
|
6158
6283
|
/* scoped */
|
|
6159
6284
|
|
|
6160
6285
|
|
|
6161
|
-
const __vue_scope_id__$
|
|
6286
|
+
const __vue_scope_id__$9 = "data-v-e4a14fb4";
|
|
6162
6287
|
/* module identifier */
|
|
6163
6288
|
|
|
6164
|
-
const __vue_module_identifier__$
|
|
6289
|
+
const __vue_module_identifier__$9 = undefined;
|
|
6165
6290
|
/* functional template */
|
|
6166
6291
|
|
|
6167
|
-
const __vue_is_functional_template__$
|
|
6292
|
+
const __vue_is_functional_template__$9 = false;
|
|
6168
6293
|
/* style inject SSR */
|
|
6169
6294
|
|
|
6170
6295
|
/* style inject shadow dom */
|
|
6171
6296
|
|
|
6172
|
-
const __vue_component__$
|
|
6173
|
-
render: __vue_render__$
|
|
6174
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6175
|
-
}, __vue_inject_styles__$
|
|
6297
|
+
const __vue_component__$i = /*#__PURE__*/normalizeComponent({
|
|
6298
|
+
render: __vue_render__$9,
|
|
6299
|
+
staticRenderFns: __vue_staticRenderFns__$9
|
|
6300
|
+
}, __vue_inject_styles__$9, __vue_script__$5, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, createInjector, undefined, undefined);
|
|
6176
6301
|
|
|
6177
|
-
var __vue_component__$
|
|
6302
|
+
var __vue_component__$j = __vue_component__$i;
|
|
6178
6303
|
|
|
6179
6304
|
//
|
|
6180
|
-
var script$
|
|
6305
|
+
var script$4 = {
|
|
6181
6306
|
name: "NsSystemdServiceCard",
|
|
6182
6307
|
//components added for storybook to work
|
|
6183
6308
|
components: {
|
|
@@ -6231,10 +6356,10 @@ var script$5 = {
|
|
|
6231
6356
|
};
|
|
6232
6357
|
|
|
6233
6358
|
/* script */
|
|
6234
|
-
const __vue_script__$
|
|
6359
|
+
const __vue_script__$4 = script$4;
|
|
6235
6360
|
/* template */
|
|
6236
6361
|
|
|
6237
|
-
var __vue_render__$
|
|
6362
|
+
var __vue_render__$8 = function () {
|
|
6238
6363
|
var _vm = this;
|
|
6239
6364
|
|
|
6240
6365
|
var _h = _vm.$createElement;
|
|
@@ -6289,10 +6414,10 @@ var __vue_render__$9 = function () {
|
|
|
6289
6414
|
})], 1)])]);
|
|
6290
6415
|
};
|
|
6291
6416
|
|
|
6292
|
-
var __vue_staticRenderFns__$
|
|
6417
|
+
var __vue_staticRenderFns__$8 = [];
|
|
6293
6418
|
/* style */
|
|
6294
6419
|
|
|
6295
|
-
const __vue_inject_styles__$
|
|
6420
|
+
const __vue_inject_styles__$8 = function (inject) {
|
|
6296
6421
|
if (!inject) return;
|
|
6297
6422
|
inject("data-v-e13a5ce6_0", {
|
|
6298
6423
|
source: ".service-card[data-v-e13a5ce6]{display:flex;flex-direction:column;justify-content:center}.row[data-v-e13a5ce6]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.service-name[data-v-e13a5ce6]{margin-left:.25rem;margin-right:.25rem}.success-icon[data-v-e13a5ce6]{margin-right:.25rem}.error-icon[data-v-e13a5ce6]{margin-right:.25rem}.warning-icon[data-v-e13a5ce6]{margin-right:.25rem}.stats[data-v-e13a5ce6]{display:flex;align-items:center;margin-left:.5rem;margin-right:.5rem}",
|
|
@@ -6303,23 +6428,23 @@ const __vue_inject_styles__$9 = function (inject) {
|
|
|
6303
6428
|
/* scoped */
|
|
6304
6429
|
|
|
6305
6430
|
|
|
6306
|
-
const __vue_scope_id__$
|
|
6431
|
+
const __vue_scope_id__$8 = "data-v-e13a5ce6";
|
|
6307
6432
|
/* module identifier */
|
|
6308
6433
|
|
|
6309
|
-
const __vue_module_identifier__$
|
|
6434
|
+
const __vue_module_identifier__$8 = undefined;
|
|
6310
6435
|
/* functional template */
|
|
6311
6436
|
|
|
6312
|
-
const __vue_is_functional_template__$
|
|
6437
|
+
const __vue_is_functional_template__$8 = false;
|
|
6313
6438
|
/* style inject SSR */
|
|
6314
6439
|
|
|
6315
6440
|
/* style inject shadow dom */
|
|
6316
6441
|
|
|
6317
|
-
const __vue_component__$
|
|
6318
|
-
render: __vue_render__$
|
|
6319
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6320
|
-
}, __vue_inject_styles__$
|
|
6442
|
+
const __vue_component__$g = /*#__PURE__*/normalizeComponent({
|
|
6443
|
+
render: __vue_render__$8,
|
|
6444
|
+
staticRenderFns: __vue_staticRenderFns__$8
|
|
6445
|
+
}, __vue_inject_styles__$8, __vue_script__$4, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, createInjector, undefined, undefined);
|
|
6321
6446
|
|
|
6322
|
-
var __vue_component__$
|
|
6447
|
+
var __vue_component__$h = __vue_component__$g;
|
|
6323
6448
|
|
|
6324
6449
|
var UtilService = {
|
|
6325
6450
|
name: "UtilService",
|
|
@@ -6473,7 +6598,7 @@ var UtilService = {
|
|
|
6473
6598
|
};
|
|
6474
6599
|
|
|
6475
6600
|
//
|
|
6476
|
-
var script$
|
|
6601
|
+
var script$3 = {
|
|
6477
6602
|
name: "NsPasswordInput",
|
|
6478
6603
|
components: CvTextInput,
|
|
6479
6604
|
mixins: [UtilService],
|
|
@@ -6628,10 +6753,10 @@ var script$4 = {
|
|
|
6628
6753
|
};
|
|
6629
6754
|
|
|
6630
6755
|
/* script */
|
|
6631
|
-
const __vue_script__$
|
|
6756
|
+
const __vue_script__$3 = script$3;
|
|
6632
6757
|
/* template */
|
|
6633
6758
|
|
|
6634
|
-
var __vue_render__$
|
|
6759
|
+
var __vue_render__$7 = function () {
|
|
6635
6760
|
var _vm = this;
|
|
6636
6761
|
|
|
6637
6762
|
var _h = _vm.$createElement;
|
|
@@ -6718,247 +6843,13 @@ var __vue_render__$8 = function () {
|
|
|
6718
6843
|
}, [_vm._v(_vm._s(_vm.equalLabel))])])], 1)]);
|
|
6719
6844
|
};
|
|
6720
6845
|
|
|
6721
|
-
var __vue_staticRenderFns__$8 = [];
|
|
6722
|
-
/* style */
|
|
6723
|
-
|
|
6724
|
-
const __vue_inject_styles__$8 = function (inject) {
|
|
6725
|
-
if (!inject) return;
|
|
6726
|
-
inject("data-v-61a70522_0", {
|
|
6727
|
-
source: ".new-password-container[data-v-61a70522]{margin-bottom:1rem}.new-password[data-v-61a70522]{margin-bottom:.25rem}.confirm-password[data-v-61a70522]{margin-bottom:.25rem}.password-meter[data-v-61a70522]{display:flex}@media (min-width:672px){.password-meter[data-v-61a70522]{max-width:38rem}}.requirement[data-v-61a70522]{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-61a70522]{background-color:#fff}.requirement[data-v-61a70522]:first-child{margin-left:0}.requirement-ok[data-v-61a70522]{color:#fff;background-color:#198038}",
|
|
6728
|
-
map: undefined,
|
|
6729
|
-
media: undefined
|
|
6730
|
-
});
|
|
6731
|
-
};
|
|
6732
|
-
/* scoped */
|
|
6733
|
-
|
|
6734
|
-
|
|
6735
|
-
const __vue_scope_id__$8 = "data-v-61a70522";
|
|
6736
|
-
/* module identifier */
|
|
6737
|
-
|
|
6738
|
-
const __vue_module_identifier__$8 = undefined;
|
|
6739
|
-
/* functional template */
|
|
6740
|
-
|
|
6741
|
-
const __vue_is_functional_template__$8 = false;
|
|
6742
|
-
/* style inject SSR */
|
|
6743
|
-
|
|
6744
|
-
/* style inject shadow dom */
|
|
6745
|
-
|
|
6746
|
-
const __vue_component__$g = /*#__PURE__*/normalizeComponent({
|
|
6747
|
-
render: __vue_render__$8,
|
|
6748
|
-
staticRenderFns: __vue_staticRenderFns__$8
|
|
6749
|
-
}, __vue_inject_styles__$8, __vue_script__$4, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, createInjector, undefined, undefined);
|
|
6750
|
-
|
|
6751
|
-
var __vue_component__$h = __vue_component__$g;
|
|
6752
|
-
|
|
6753
|
-
//
|
|
6754
|
-
var script$3 = {
|
|
6755
|
-
name: "NsNodeCard",
|
|
6756
|
-
//components added for storybook to work
|
|
6757
|
-
components: {
|
|
6758
|
-
NsSvg,
|
|
6759
|
-
CvTile,
|
|
6760
|
-
Information16
|
|
6761
|
-
},
|
|
6762
|
-
props: {
|
|
6763
|
-
nodeId: String,
|
|
6764
|
-
nodeLabel: {
|
|
6765
|
-
type: String,
|
|
6766
|
-
default: "Node"
|
|
6767
|
-
},
|
|
6768
|
-
isLeader: Boolean,
|
|
6769
|
-
leaderLabel: {
|
|
6770
|
-
type: String,
|
|
6771
|
-
default: "leader"
|
|
6772
|
-
},
|
|
6773
|
-
workerLabel: {
|
|
6774
|
-
type: String,
|
|
6775
|
-
default: "worker"
|
|
6776
|
-
},
|
|
6777
|
-
cpuUsageLabel: {
|
|
6778
|
-
type: String,
|
|
6779
|
-
default: "CPU usage"
|
|
6780
|
-
},
|
|
6781
|
-
cpuLoadLabel: {
|
|
6782
|
-
type: String,
|
|
6783
|
-
default: "CPU load"
|
|
6784
|
-
},
|
|
6785
|
-
cpuLoadTooltip: {
|
|
6786
|
-
type: String,
|
|
6787
|
-
default: "CPU average load of last 1 / 5 / 15 minutes"
|
|
6788
|
-
},
|
|
6789
|
-
memoryUsageLabel: {
|
|
6790
|
-
type: String,
|
|
6791
|
-
default: "Memory usage"
|
|
6792
|
-
},
|
|
6793
|
-
swapUsageLabel: {
|
|
6794
|
-
type: String,
|
|
6795
|
-
default: "Swap usage"
|
|
6796
|
-
},
|
|
6797
|
-
diskUsageLabel: {
|
|
6798
|
-
type: String,
|
|
6799
|
-
default: "usage"
|
|
6800
|
-
},
|
|
6801
|
-
cpuUsage: Number,
|
|
6802
|
-
cpuUsageWarningTh: {
|
|
6803
|
-
type: Number,
|
|
6804
|
-
default: 90
|
|
6805
|
-
},
|
|
6806
|
-
load1Min: Number,
|
|
6807
|
-
load5Min: Number,
|
|
6808
|
-
load15Min: Number,
|
|
6809
|
-
cpuLoadWarningTh: {
|
|
6810
|
-
type: Number,
|
|
6811
|
-
default: 90
|
|
6812
|
-
},
|
|
6813
|
-
memoryUsage: Number,
|
|
6814
|
-
memoryWarningTh: {
|
|
6815
|
-
type: Number,
|
|
6816
|
-
default: 90
|
|
6817
|
-
},
|
|
6818
|
-
swapUsage: Number,
|
|
6819
|
-
swapWarningTh: {
|
|
6820
|
-
type: Number,
|
|
6821
|
-
default: 90
|
|
6822
|
-
},
|
|
6823
|
-
disksUsage: Array,
|
|
6824
|
-
diskWarningTh: {
|
|
6825
|
-
type: Number,
|
|
6826
|
-
default: 90
|
|
6827
|
-
},
|
|
6828
|
-
loading: Boolean,
|
|
6829
|
-
light: Boolean
|
|
6830
|
-
},
|
|
6831
|
-
|
|
6832
|
-
data() {
|
|
6833
|
-
return {
|
|
6834
|
-
Chip32
|
|
6835
|
-
};
|
|
6836
|
-
}
|
|
6837
|
-
|
|
6838
|
-
};
|
|
6839
|
-
|
|
6840
|
-
/* script */
|
|
6841
|
-
const __vue_script__$3 = script$3;
|
|
6842
|
-
/* template */
|
|
6843
|
-
|
|
6844
|
-
var __vue_render__$7 = function () {
|
|
6845
|
-
var _vm = this;
|
|
6846
|
-
|
|
6847
|
-
var _h = _vm.$createElement;
|
|
6848
|
-
|
|
6849
|
-
var _c = _vm._self._c || _h;
|
|
6850
|
-
|
|
6851
|
-
return _c('cv-tile', {
|
|
6852
|
-
staticClass: "node-card",
|
|
6853
|
-
attrs: {
|
|
6854
|
-
"kind": "standard",
|
|
6855
|
-
"light": _vm.light
|
|
6856
|
-
}
|
|
6857
|
-
}, [_c('div', {
|
|
6858
|
-
staticClass: "row"
|
|
6859
|
-
}, [_c('NsSvg', {
|
|
6860
|
-
attrs: {
|
|
6861
|
-
"svg": _vm.Chip32
|
|
6862
|
-
}
|
|
6863
|
-
})], 1), _vm._v(" "), _c('div', {
|
|
6864
|
-
staticClass: "row"
|
|
6865
|
-
}, [_c('h3', {
|
|
6866
|
-
staticClass: "title"
|
|
6867
|
-
}, [_vm._v(_vm._s(_vm.nodeLabel) + " " + _vm._s(_vm.nodeId))])]), _vm._v(" "), _c('div', {
|
|
6868
|
-
staticClass: "row"
|
|
6869
|
-
}, [_vm.isLeader ? _c('cv-tag', {
|
|
6870
|
-
attrs: {
|
|
6871
|
-
"kind": "green",
|
|
6872
|
-
"label": _vm.leaderLabel
|
|
6873
|
-
}
|
|
6874
|
-
}) : _c('cv-tag', {
|
|
6875
|
-
attrs: {
|
|
6876
|
-
"kind": "blue",
|
|
6877
|
-
"label": _vm.workerLabel
|
|
6878
|
-
}
|
|
6879
|
-
})], 1), _vm._v(" "), _vm.loading ? _c('div', {
|
|
6880
|
-
staticClass: "row node-card-skeleton"
|
|
6881
|
-
}, [_c('cv-skeleton-text', {
|
|
6882
|
-
attrs: {
|
|
6883
|
-
"paragraph": true,
|
|
6884
|
-
"line-count": 5
|
|
6885
|
-
}
|
|
6886
|
-
})], 1) : _c('div', {
|
|
6887
|
-
staticClass: "table-wrapper"
|
|
6888
|
-
}, [_c('div', {
|
|
6889
|
-
staticClass: "table"
|
|
6890
|
-
}, [_c('div', {
|
|
6891
|
-
staticClass: "tr"
|
|
6892
|
-
}, [_c('div', {
|
|
6893
|
-
staticClass: "td label"
|
|
6894
|
-
}, [_vm._v(_vm._s(_vm.cpuUsageLabel))]), _vm._v(" "), _c('div', {
|
|
6895
|
-
class: ['td', {
|
|
6896
|
-
warning: _vm.cpuUsage >= _vm.cpuUsageWarningTh
|
|
6897
|
-
}]
|
|
6898
|
-
}, [_vm._v("\n " + _vm._s(_vm.cpuUsage) + "%\n ")])]), _vm._v(" "), _c('div', {
|
|
6899
|
-
staticClass: "tr"
|
|
6900
|
-
}, [_c('div', {
|
|
6901
|
-
staticClass: "td label"
|
|
6902
|
-
}, [_vm._v("\n " + _vm._s(_vm.cpuLoadLabel) + "\n "), _c('cv-tooltip', {
|
|
6903
|
-
staticClass: "info",
|
|
6904
|
-
attrs: {
|
|
6905
|
-
"alignment": "center",
|
|
6906
|
-
"direction": "bottom",
|
|
6907
|
-
"tip": _vm.cpuLoadTooltip
|
|
6908
|
-
}
|
|
6909
|
-
}, [_c('Information16')], 1)], 1), _vm._v(" "), _c('div', {
|
|
6910
|
-
staticClass: "td"
|
|
6911
|
-
}, [_c('span', {
|
|
6912
|
-
class: {
|
|
6913
|
-
warning: _vm.load1Min >= _vm.cpuLoadWarningTh
|
|
6914
|
-
}
|
|
6915
|
-
}, [_vm._v(_vm._s(_vm.load1Min) + "%")]), _vm._v("\n /\n "), _c('span', {
|
|
6916
|
-
class: {
|
|
6917
|
-
warning: _vm.load5Min >= _vm.cpuLoadWarningTh
|
|
6918
|
-
}
|
|
6919
|
-
}, [_vm._v(_vm._s(_vm.load5Min) + "%")]), _vm._v("\n /\n "), _c('span', {
|
|
6920
|
-
class: {
|
|
6921
|
-
warning: _vm.load15Min >= _vm.cpuLoadWarningTh
|
|
6922
|
-
}
|
|
6923
|
-
}, [_vm._v(_vm._s(_vm.load15Min) + "%")])])]), _vm._v(" "), _c('div', {
|
|
6924
|
-
staticClass: "tr"
|
|
6925
|
-
}, [_c('div', {
|
|
6926
|
-
staticClass: "td label"
|
|
6927
|
-
}, [_vm._v(_vm._s(_vm.memoryUsageLabel))]), _vm._v(" "), _c('div', {
|
|
6928
|
-
class: ['td', {
|
|
6929
|
-
warning: _vm.memoryUsage >= _vm.memoryWarningTh
|
|
6930
|
-
}]
|
|
6931
|
-
}, [_vm._v("\n " + _vm._s(_vm.memoryUsage) + "%\n ")])]), _vm._v(" "), _c('div', {
|
|
6932
|
-
staticClass: "tr"
|
|
6933
|
-
}, [_c('div', {
|
|
6934
|
-
staticClass: "td label"
|
|
6935
|
-
}, [_vm._v(_vm._s(_vm.swapUsageLabel))]), _vm._v(" "), _c('div', {
|
|
6936
|
-
class: ['td', {
|
|
6937
|
-
warning: _vm.swapUsage >= _vm.swapWarningTh
|
|
6938
|
-
}]
|
|
6939
|
-
}, [_vm._v("\n " + _vm._s(_vm.swapUsage) + "%\n ")])]), _vm._v(" "), _vm._l(_vm.disksUsage, function (disk, index) {
|
|
6940
|
-
return _c('div', {
|
|
6941
|
-
key: index,
|
|
6942
|
-
staticClass: "tr"
|
|
6943
|
-
}, [_c('div', {
|
|
6944
|
-
staticClass: "td label"
|
|
6945
|
-
}, [_vm._v(_vm._s(disk.diskId) + " " + _vm._s(_vm.diskUsageLabel))]), _vm._v(" "), _c('div', {
|
|
6946
|
-
class: ['td', {
|
|
6947
|
-
warning: disk.usage >= _vm.diskWarningTh
|
|
6948
|
-
}]
|
|
6949
|
-
}, [_vm._v("\n " + _vm._s(disk.usage) + "%\n ")])]);
|
|
6950
|
-
})], 2)]), _vm._v(" "), _c('div', {
|
|
6951
|
-
staticClass: "row slot"
|
|
6952
|
-
}, [_vm._t("default")], 2)]);
|
|
6953
|
-
};
|
|
6954
|
-
|
|
6955
6846
|
var __vue_staticRenderFns__$7 = [];
|
|
6956
6847
|
/* style */
|
|
6957
6848
|
|
|
6958
6849
|
const __vue_inject_styles__$7 = function (inject) {
|
|
6959
6850
|
if (!inject) return;
|
|
6960
|
-
inject("data-v-
|
|
6961
|
-
source: ".
|
|
6851
|
+
inject("data-v-61a70522_0", {
|
|
6852
|
+
source: ".new-password-container[data-v-61a70522]{margin-bottom:1rem}.new-password[data-v-61a70522]{margin-bottom:.25rem}.confirm-password[data-v-61a70522]{margin-bottom:.25rem}.password-meter[data-v-61a70522]{display:flex}@media (min-width:672px){.password-meter[data-v-61a70522]{max-width:38rem}}.requirement[data-v-61a70522]{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-61a70522]{background-color:#fff}.requirement[data-v-61a70522]:first-child{margin-left:0}.requirement-ok[data-v-61a70522]{color:#fff;background-color:#198038}",
|
|
6962
6853
|
map: undefined,
|
|
6963
6854
|
media: undefined
|
|
6964
6855
|
});
|
|
@@ -6966,7 +6857,7 @@ const __vue_inject_styles__$7 = function (inject) {
|
|
|
6966
6857
|
/* scoped */
|
|
6967
6858
|
|
|
6968
6859
|
|
|
6969
|
-
const __vue_scope_id__$7 = "data-v-
|
|
6860
|
+
const __vue_scope_id__$7 = "data-v-61a70522";
|
|
6970
6861
|
/* module identifier */
|
|
6971
6862
|
|
|
6972
6863
|
const __vue_module_identifier__$7 = undefined;
|
|
@@ -7157,16 +7048,12 @@ const __vue_component__$c = /*#__PURE__*/normalizeComponent({
|
|
|
7157
7048
|
var __vue_component__$d = __vue_component__$c;
|
|
7158
7049
|
|
|
7159
7050
|
//
|
|
7160
|
-
|
|
7161
|
-
Vue.use(chartsVue); ////
|
|
7162
|
-
//// remove file?
|
|
7163
|
-
|
|
7051
|
+
Vue.use(chartsVue);
|
|
7164
7052
|
var script$1 = {
|
|
7165
7053
|
name: "NsMeterChart",
|
|
7166
7054
|
components: {
|
|
7167
7055
|
CcvMeterChart
|
|
7168
7056
|
},
|
|
7169
|
-
////
|
|
7170
7057
|
props: {
|
|
7171
7058
|
title: {
|
|
7172
7059
|
type: String,
|
|
@@ -7203,8 +7090,6 @@ var script$1 = {
|
|
|
7203
7090
|
|
|
7204
7091
|
watch: {
|
|
7205
7092
|
value: function () {
|
|
7206
|
-
console.log("watch value", this.value); ////
|
|
7207
|
-
|
|
7208
7093
|
this.data[0].value = this.value;
|
|
7209
7094
|
}
|
|
7210
7095
|
},
|
|
@@ -8111,23 +7996,23 @@ var filters = {
|
|
|
8111
7996
|
|
|
8112
7997
|
var components = /*#__PURE__*/Object.freeze({
|
|
8113
7998
|
__proto__: null,
|
|
8114
|
-
NsButton: __vue_component__$
|
|
8115
|
-
NsEmptyState: __vue_component__$
|
|
7999
|
+
NsButton: __vue_component__$C,
|
|
8000
|
+
NsEmptyState: __vue_component__$x,
|
|
8116
8001
|
NsPictogram: NsPictogram,
|
|
8117
|
-
NsCodeSnippet: __vue_component__$
|
|
8118
|
-
NsInlineNotification: __vue_component__$
|
|
8002
|
+
NsCodeSnippet: __vue_component__$v,
|
|
8003
|
+
NsInlineNotification: __vue_component__$t,
|
|
8119
8004
|
NsProgressBar: NsProgressBar,
|
|
8120
8005
|
NsSvg: NsSvg,
|
|
8121
|
-
NsTile: __vue_component__$
|
|
8122
|
-
NsToastNotification: __vue_component__$
|
|
8123
|
-
NsInfoCard: __vue_component__$
|
|
8124
|
-
NsStatusCard: __vue_component__$
|
|
8125
|
-
NsSystemdServiceCard: __vue_component__$
|
|
8126
|
-
NsPasswordInput: __vue_component__$
|
|
8127
|
-
NsNodeCard: __vue_component__$f,
|
|
8006
|
+
NsTile: __vue_component__$p,
|
|
8007
|
+
NsToastNotification: __vue_component__$n,
|
|
8008
|
+
NsInfoCard: __vue_component__$l,
|
|
8009
|
+
NsStatusCard: __vue_component__$j,
|
|
8010
|
+
NsSystemdServiceCard: __vue_component__$h,
|
|
8011
|
+
NsPasswordInput: __vue_component__$f,
|
|
8128
8012
|
NsIconMenu: __vue_component__$d,
|
|
8129
8013
|
NsMeterChart: __vue_component__$b,
|
|
8130
8014
|
NsPieChart: __vue_component__$9,
|
|
8015
|
+
NsLottieAnimation: NsLottieAnimation,
|
|
8131
8016
|
ExclamationMark: ExclamationMark,
|
|
8132
8017
|
Gear: __vue_component__$7,
|
|
8133
8018
|
Love: __vue_component__$5,
|
|
@@ -8152,4 +8037,4 @@ const install = function installNs8UiLib(Vue) {
|
|
|
8152
8037
|
});
|
|
8153
8038
|
}; // Create module definition for Vue.use()
|
|
8154
8039
|
|
|
8155
|
-
export { __vue_component__$1 as Bulldozer, dataTable as DataTableService, DateTimeService, ExclamationMark, filters as Filters, __vue_component__$7 as Gear, icon as IconService, __vue_component__$5 as Love, __vue_component__$
|
|
8040
|
+
export { __vue_component__$1 as Bulldozer, dataTable as DataTableService, DateTimeService, ExclamationMark, filters as Filters, __vue_component__$7 as Gear, icon as IconService, __vue_component__$5 as Love, __vue_component__$C as NsButton, __vue_component__$v as NsCodeSnippet, __vue_component__$x as NsEmptyState, __vue_component__$d as NsIconMenu, __vue_component__$l as NsInfoCard, __vue_component__$t as NsInlineNotification, NsLottieAnimation, __vue_component__$b as NsMeterChart, __vue_component__$f as NsPasswordInput, NsPictogram, __vue_component__$9 as NsPieChart, NsProgressBar, __vue_component__$j as NsStatusCard, NsSvg, __vue_component__$h as NsSystemdServiceCard, __vue_component__$p as NsTile, __vue_component__$n as NsToastNotification, pageTitle as PageTitleService, queryParam as QueryParamService, StorageService, task as TaskService, UtilService, __vue_component__$3 as Warning, install as default };
|