@nethserver/ns8-ui-lib 0.1.21 → 0.1.23
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 +732 -542
- package/dist/ns8-ui-lib.min.js +1 -1
- package/dist/ns8-ui-lib.ssr.js +772 -594
- package/package.json +1 -1
- package/src/lib-components/NsBackupCard.vue +4 -0
- package/src/lib-components/NsBackupCardDetails.vue +4 -0
- package/src/lib-components/NsButton.vue +4 -0
- package/src/lib-components/NsByteSlider.vue +4 -0
- package/src/lib-components/NsCheckbox.vue +4 -0
- package/src/lib-components/NsCircleTimer.vue +4 -0
- package/src/lib-components/NsCodeSnippet.vue +4 -0
- package/src/lib-components/NsComboBox.vue +4 -0
- package/src/lib-components/NsDangerDeleteModal.vue +9 -1
- package/src/lib-components/NsDataTable.vue +4 -0
- package/src/lib-components/NsDropdownAction.vue +4 -0
- package/src/lib-components/NsEmptyState.vue +4 -0
- package/src/lib-components/NsIconMenu.vue +4 -0
- package/src/lib-components/NsInfoCard.vue +37 -13
- package/src/lib-components/NsInlineNotification.vue +5 -0
- package/src/lib-components/NsLottieAnimation.vue +4 -0
- package/src/lib-components/NsMenuDivider.vue +4 -0
- package/src/lib-components/NsMenuItem.vue +4 -0
- package/src/lib-components/NsMeterChart.vue +4 -0
- package/src/lib-components/NsModal.vue +4 -0
- package/src/lib-components/NsMultiSelect.vue +4 -0
- package/src/lib-components/NsPagination.vue +4 -0
- package/src/lib-components/NsPasswordInput.vue +4 -0
- package/src/lib-components/NsPictogram.vue +4 -0
- package/src/lib-components/NsProgressBar.vue +4 -0
- package/src/lib-components/NsSlider.vue +4 -0
- package/src/lib-components/NsStatusCard.vue +4 -0
- package/src/lib-components/NsSvg.vue +4 -0
- package/src/lib-components/NsSystemLogsCard.vue +4 -0
- package/src/lib-components/NsSystemdServiceCard.vue +4 -0
- package/src/lib-components/NsTabs.vue +4 -0
- package/src/lib-components/NsTag.vue +4 -0
- package/src/lib-components/NsTextInput.vue +4 -0
- package/src/lib-components/NsTile.vue +4 -0
- package/src/lib-components/NsTimePicker.vue +4 -0
- package/src/lib-components/NsToastNotification.vue +4 -0
- package/src/lib-components/NsToggle.vue +4 -0
- package/src/lib-components/NsWizard.vue +4 -0
- package/src/lib-components/pictograms/BulldozerPictogram.vue +4 -0
- package/src/lib-components/pictograms/ExclamationMarkPictogram.vue +4 -0
- package/src/lib-components/pictograms/FaceSatisfiedPictogram.vue +15 -0
- package/src/lib-components/pictograms/FolderPictogram.vue +13 -0
- package/src/lib-components/pictograms/GearPictogram.vue +4 -0
- package/src/lib-components/pictograms/GroupPictogram.vue +4 -0
- package/src/lib-components/pictograms/HardDrivePictogram.vue +4 -0
- package/src/lib-components/pictograms/LovePictogram.vue +4 -0
- package/src/lib-components/pictograms/UserPictogram.vue +4 -0
- package/src/lib-components/pictograms/UserProfilePictogram.vue +4 -0
- package/src/lib-components/pictograms/WarningPictogram.vue +4 -0
package/dist/ns8-ui-lib.esm.js
CHANGED
|
@@ -3,6 +3,7 @@ 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';
|
|
5
5
|
import { carbonPrefixMixin, themeMixin, uidMixin, methodsMixin } from '@carbon/vue/src/mixins';
|
|
6
|
+
import Information16 from '@carbon/icons-vue/es/information/16';
|
|
6
7
|
import CheckmarkFilled20 from '@carbon/icons-vue/es/checkmark--filled/20';
|
|
7
8
|
import ErrorFilled20 from '@carbon/icons-vue/es/error--filled/20';
|
|
8
9
|
import Warning20 from '@carbon/icons-vue/es/warning--filled/20';
|
|
@@ -31,7 +32,6 @@ import Settings32 from '@carbon/icons-vue/es/settings/32';
|
|
|
31
32
|
import ChevronUp20 from '@carbon/icons-vue/es/chevron--up/20';
|
|
32
33
|
import ChevronLeft20 from '@carbon/icons-vue/es/chevron--left/20';
|
|
33
34
|
import ChevronRight20 from '@carbon/icons-vue/es/chevron--right/20';
|
|
34
|
-
import Information16 from '@carbon/icons-vue/es/information/16';
|
|
35
35
|
import Information20 from '@carbon/icons-vue/es/information/20';
|
|
36
36
|
import InformationFilled16 from '@carbon/icons-vue/es/information--filled/16';
|
|
37
37
|
import Application20 from '@carbon/icons-vue/es/application/20';
|
|
@@ -146,6 +146,12 @@ import CloseFilled32 from '@carbon/icons-vue/es/close--filled/32';
|
|
|
146
146
|
import Badge16 from '@carbon/icons-vue/es/badge/16';
|
|
147
147
|
import Badge20 from '@carbon/icons-vue/es/badge/20';
|
|
148
148
|
import Badge32 from '@carbon/icons-vue/es/badge/32';
|
|
149
|
+
import FolderShared16 from '@carbon/icons-vue/es/folder--shared/16';
|
|
150
|
+
import FolderShared20 from '@carbon/icons-vue/es/folder--shared/20';
|
|
151
|
+
import FolderShared32 from '@carbon/icons-vue/es/folder--shared/32';
|
|
152
|
+
import MailAll16 from '@carbon/icons-vue/es/mail--all/16';
|
|
153
|
+
import MailAll20 from '@carbon/icons-vue/es/mail--all/20';
|
|
154
|
+
import MailAll32 from '@carbon/icons-vue/es/mail--all/32';
|
|
149
155
|
import CvSideNavDivider from '@carbon/vue/src/components/cv-ui-shell/cv-side-nav-divider.vue';
|
|
150
156
|
import Search16 from '@carbon/icons-vue/es/search/16';
|
|
151
157
|
import Close16 from '@carbon/icons-vue/es/close/16';
|
|
@@ -320,7 +326,7 @@ function addStyle(id, css) {
|
|
|
320
326
|
const __vue_script__$B = script$B;
|
|
321
327
|
/* template */
|
|
322
328
|
|
|
323
|
-
var __vue_render__$
|
|
329
|
+
var __vue_render__$J = function () {
|
|
324
330
|
var _vm = this;
|
|
325
331
|
|
|
326
332
|
var _h = _vm.$createElement;
|
|
@@ -343,13 +349,13 @@ var __vue_render__$H = function () {
|
|
|
343
349
|
}) : _vm._e()], 2);
|
|
344
350
|
};
|
|
345
351
|
|
|
346
|
-
var __vue_staticRenderFns__$
|
|
352
|
+
var __vue_staticRenderFns__$J = [];
|
|
347
353
|
/* style */
|
|
348
354
|
|
|
349
|
-
const __vue_inject_styles__$
|
|
355
|
+
const __vue_inject_styles__$M = function (inject) {
|
|
350
356
|
if (!inject) return;
|
|
351
|
-
inject("data-v-
|
|
352
|
-
source: ".bx--btn .bx--btn__icon[data-v-
|
|
357
|
+
inject("data-v-34f1ee57_0", {
|
|
358
|
+
source: ".bx--btn .bx--btn__icon[data-v-34f1ee57]{width:1.25rem;height:1.25rem}.bx--btn.bx--btn--sm .bx--btn__icon[data-v-34f1ee57]{width:1rem;height:1rem}.loader[data-v-34f1ee57]{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-34f1ee57 .5s linear infinite}.bx--btn--ghost .bx--btn__icon.loading[data-v-34f1ee57]{position:static;margin-left:.5rem}.bx--btn--danger--ghost .bx--btn__icon.loading[data-v-34f1ee57],.bx--btn--danger-ghost .bx--btn__icon.loading[data-v-34f1ee57]{position:static;margin-left:.5rem}@keyframes spin-data-v-34f1ee57{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}",
|
|
353
359
|
map: undefined,
|
|
354
360
|
media: undefined
|
|
355
361
|
});
|
|
@@ -357,23 +363,23 @@ const __vue_inject_styles__$K = function (inject) {
|
|
|
357
363
|
/* scoped */
|
|
358
364
|
|
|
359
365
|
|
|
360
|
-
const __vue_scope_id__$
|
|
366
|
+
const __vue_scope_id__$M = "data-v-34f1ee57";
|
|
361
367
|
/* module identifier */
|
|
362
368
|
|
|
363
|
-
const __vue_module_identifier__$
|
|
369
|
+
const __vue_module_identifier__$M = undefined;
|
|
364
370
|
/* functional template */
|
|
365
371
|
|
|
366
|
-
const __vue_is_functional_template__$
|
|
372
|
+
const __vue_is_functional_template__$M = false;
|
|
367
373
|
/* style inject SSR */
|
|
368
374
|
|
|
369
375
|
/* style inject shadow dom */
|
|
370
376
|
|
|
371
|
-
const __vue_component__$
|
|
372
|
-
render: __vue_render__$
|
|
373
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
374
|
-
}, __vue_inject_styles__$
|
|
377
|
+
const __vue_component__$1k = /*#__PURE__*/normalizeComponent({
|
|
378
|
+
render: __vue_render__$J,
|
|
379
|
+
staticRenderFns: __vue_staticRenderFns__$J
|
|
380
|
+
}, __vue_inject_styles__$M, __vue_script__$B, __vue_scope_id__$M, __vue_is_functional_template__$M, __vue_module_identifier__$M, false, createInjector, undefined, undefined);
|
|
375
381
|
|
|
376
|
-
var NsButton = __vue_component__$
|
|
382
|
+
var NsButton = __vue_component__$1k;
|
|
377
383
|
|
|
378
384
|
//
|
|
379
385
|
//
|
|
@@ -391,6 +397,10 @@ var NsButton = __vue_component__$1g;
|
|
|
391
397
|
//
|
|
392
398
|
//
|
|
393
399
|
//
|
|
400
|
+
//
|
|
401
|
+
//
|
|
402
|
+
//
|
|
403
|
+
//
|
|
394
404
|
var script$A = {
|
|
395
405
|
name: "NsPictogram",
|
|
396
406
|
props: {
|
|
@@ -417,7 +427,7 @@ var script$A = {
|
|
|
417
427
|
const __vue_script__$A = script$A;
|
|
418
428
|
/* template */
|
|
419
429
|
|
|
420
|
-
var __vue_render__$
|
|
430
|
+
var __vue_render__$I = function () {
|
|
421
431
|
var _vm = this;
|
|
422
432
|
|
|
423
433
|
var _h = _vm.$createElement;
|
|
@@ -445,31 +455,31 @@ var __vue_render__$G = function () {
|
|
|
445
455
|
}, [_vm._t("default")], 2)]);
|
|
446
456
|
};
|
|
447
457
|
|
|
448
|
-
var __vue_staticRenderFns__$
|
|
458
|
+
var __vue_staticRenderFns__$I = [];
|
|
449
459
|
/* style */
|
|
450
460
|
|
|
451
|
-
const __vue_inject_styles__$
|
|
461
|
+
const __vue_inject_styles__$L = undefined;
|
|
452
462
|
/* scoped */
|
|
453
463
|
|
|
454
|
-
const __vue_scope_id__$
|
|
464
|
+
const __vue_scope_id__$L = undefined;
|
|
455
465
|
/* module identifier */
|
|
456
466
|
|
|
457
|
-
const __vue_module_identifier__$
|
|
467
|
+
const __vue_module_identifier__$L = undefined;
|
|
458
468
|
/* functional template */
|
|
459
469
|
|
|
460
|
-
const __vue_is_functional_template__$
|
|
470
|
+
const __vue_is_functional_template__$L = false;
|
|
461
471
|
/* style inject */
|
|
462
472
|
|
|
463
473
|
/* style inject SSR */
|
|
464
474
|
|
|
465
475
|
/* style inject shadow dom */
|
|
466
476
|
|
|
467
|
-
const __vue_component__$
|
|
468
|
-
render: __vue_render__$
|
|
469
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
470
|
-
}, __vue_inject_styles__$
|
|
477
|
+
const __vue_component__$1j = /*#__PURE__*/normalizeComponent({
|
|
478
|
+
render: __vue_render__$I,
|
|
479
|
+
staticRenderFns: __vue_staticRenderFns__$I
|
|
480
|
+
}, __vue_inject_styles__$L, __vue_script__$A, __vue_scope_id__$L, __vue_is_functional_template__$L, __vue_module_identifier__$L, false, undefined, undefined, undefined);
|
|
471
481
|
|
|
472
|
-
var NsPictogram = __vue_component__$
|
|
482
|
+
var NsPictogram = __vue_component__$1j;
|
|
473
483
|
|
|
474
484
|
//
|
|
475
485
|
var script$z = {
|
|
@@ -531,7 +541,7 @@ var script$z = {
|
|
|
531
541
|
const __vue_script__$z = script$z;
|
|
532
542
|
/* template */
|
|
533
543
|
|
|
534
|
-
var __vue_render__$
|
|
544
|
+
var __vue_render__$H = function () {
|
|
535
545
|
var _vm = this;
|
|
536
546
|
|
|
537
547
|
var _h = _vm.$createElement;
|
|
@@ -558,36 +568,36 @@ var __vue_render__$F = function () {
|
|
|
558
568
|
})], 1);
|
|
559
569
|
};
|
|
560
570
|
|
|
561
|
-
var __vue_staticRenderFns__$
|
|
571
|
+
var __vue_staticRenderFns__$H = [];
|
|
562
572
|
/* style */
|
|
563
573
|
|
|
564
|
-
const __vue_inject_styles__$
|
|
574
|
+
const __vue_inject_styles__$K = undefined;
|
|
565
575
|
/* scoped */
|
|
566
576
|
|
|
567
|
-
const __vue_scope_id__$
|
|
577
|
+
const __vue_scope_id__$K = "data-v-cc2533e0";
|
|
568
578
|
/* module identifier */
|
|
569
579
|
|
|
570
|
-
const __vue_module_identifier__$
|
|
580
|
+
const __vue_module_identifier__$K = undefined;
|
|
571
581
|
/* functional template */
|
|
572
582
|
|
|
573
|
-
const __vue_is_functional_template__$
|
|
583
|
+
const __vue_is_functional_template__$K = false;
|
|
574
584
|
/* style inject */
|
|
575
585
|
|
|
576
586
|
/* style inject SSR */
|
|
577
587
|
|
|
578
588
|
/* style inject shadow dom */
|
|
579
589
|
|
|
580
|
-
const __vue_component__$
|
|
581
|
-
render: __vue_render__$
|
|
582
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
583
|
-
}, __vue_inject_styles__$
|
|
590
|
+
const __vue_component__$1i = /*#__PURE__*/normalizeComponent({
|
|
591
|
+
render: __vue_render__$H,
|
|
592
|
+
staticRenderFns: __vue_staticRenderFns__$H
|
|
593
|
+
}, __vue_inject_styles__$K, __vue_script__$z, __vue_scope_id__$K, __vue_is_functional_template__$K, __vue_module_identifier__$K, false, undefined, undefined, undefined);
|
|
584
594
|
|
|
585
|
-
var NsLottieAnimation = __vue_component__$
|
|
595
|
+
var NsLottieAnimation = __vue_component__$1i;
|
|
586
596
|
|
|
587
597
|
/* script */
|
|
588
598
|
|
|
589
599
|
/* template */
|
|
590
|
-
var __vue_render__$
|
|
600
|
+
var __vue_render__$G = function () {
|
|
591
601
|
var _vm = this;
|
|
592
602
|
|
|
593
603
|
var _h = _vm.$createElement;
|
|
@@ -602,31 +612,31 @@ var __vue_render__$E = function () {
|
|
|
602
612
|
});
|
|
603
613
|
};
|
|
604
614
|
|
|
605
|
-
var __vue_staticRenderFns__$
|
|
615
|
+
var __vue_staticRenderFns__$G = [];
|
|
606
616
|
/* style */
|
|
607
617
|
|
|
608
|
-
const __vue_inject_styles__$
|
|
618
|
+
const __vue_inject_styles__$J = undefined;
|
|
609
619
|
/* scoped */
|
|
610
620
|
|
|
611
|
-
const __vue_scope_id__$
|
|
621
|
+
const __vue_scope_id__$J = undefined;
|
|
612
622
|
/* module identifier */
|
|
613
623
|
|
|
614
|
-
const __vue_module_identifier__$
|
|
624
|
+
const __vue_module_identifier__$J = undefined;
|
|
615
625
|
/* functional template */
|
|
616
626
|
|
|
617
|
-
const __vue_is_functional_template__$
|
|
627
|
+
const __vue_is_functional_template__$J = false;
|
|
618
628
|
/* style inject */
|
|
619
629
|
|
|
620
630
|
/* style inject SSR */
|
|
621
631
|
|
|
622
632
|
/* style inject shadow dom */
|
|
623
633
|
|
|
624
|
-
const __vue_component__$
|
|
625
|
-
render: __vue_render__$
|
|
626
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
627
|
-
}, __vue_inject_styles__$
|
|
634
|
+
const __vue_component__$1h = /*#__PURE__*/normalizeComponent({
|
|
635
|
+
render: __vue_render__$G,
|
|
636
|
+
staticRenderFns: __vue_staticRenderFns__$G
|
|
637
|
+
}, __vue_inject_styles__$J, {}, __vue_scope_id__$J, __vue_is_functional_template__$J, __vue_module_identifier__$J, false, undefined, undefined, undefined);
|
|
628
638
|
|
|
629
|
-
var ExclamationMarkPictogram = __vue_component__$
|
|
639
|
+
var ExclamationMarkPictogram = __vue_component__$1h;
|
|
630
640
|
|
|
631
641
|
//
|
|
632
642
|
var script$y = {
|
|
@@ -664,7 +674,7 @@ var script$y = {
|
|
|
664
674
|
const __vue_script__$y = script$y;
|
|
665
675
|
/* template */
|
|
666
676
|
|
|
667
|
-
var __vue_render__$
|
|
677
|
+
var __vue_render__$F = function () {
|
|
668
678
|
var _vm = this;
|
|
669
679
|
|
|
670
680
|
var _h = _vm.$createElement;
|
|
@@ -694,13 +704,13 @@ var __vue_render__$D = function () {
|
|
|
694
704
|
}, [_vm._t("description")], 2)] : _vm._e()], 2);
|
|
695
705
|
};
|
|
696
706
|
|
|
697
|
-
var __vue_staticRenderFns__$
|
|
707
|
+
var __vue_staticRenderFns__$F = [];
|
|
698
708
|
/* style */
|
|
699
709
|
|
|
700
|
-
const __vue_inject_styles__$
|
|
710
|
+
const __vue_inject_styles__$I = function (inject) {
|
|
701
711
|
if (!inject) return;
|
|
702
|
-
inject("data-v-
|
|
703
|
-
source: ".empty-state[data-v-
|
|
712
|
+
inject("data-v-0540fdb8_0", {
|
|
713
|
+
source: ".empty-state[data-v-0540fdb8]{text-align:center;padding:2rem}.empty-state .image[data-v-0540fdb8]{margin-bottom:1rem}.empty-state .description[data-v-0540fdb8]{margin-top:1rem}.animation[data-v-0540fdb8]{display:inline-block;width:64px;height:64px}",
|
|
704
714
|
map: undefined,
|
|
705
715
|
media: undefined
|
|
706
716
|
});
|
|
@@ -708,23 +718,23 @@ const __vue_inject_styles__$G = function (inject) {
|
|
|
708
718
|
/* scoped */
|
|
709
719
|
|
|
710
720
|
|
|
711
|
-
const __vue_scope_id__$
|
|
721
|
+
const __vue_scope_id__$I = "data-v-0540fdb8";
|
|
712
722
|
/* module identifier */
|
|
713
723
|
|
|
714
|
-
const __vue_module_identifier__$
|
|
724
|
+
const __vue_module_identifier__$I = undefined;
|
|
715
725
|
/* functional template */
|
|
716
726
|
|
|
717
|
-
const __vue_is_functional_template__$
|
|
727
|
+
const __vue_is_functional_template__$I = false;
|
|
718
728
|
/* style inject SSR */
|
|
719
729
|
|
|
720
730
|
/* style inject shadow dom */
|
|
721
731
|
|
|
722
|
-
const __vue_component__$
|
|
723
|
-
render: __vue_render__$
|
|
724
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
725
|
-
}, __vue_inject_styles__$
|
|
732
|
+
const __vue_component__$1f = /*#__PURE__*/normalizeComponent({
|
|
733
|
+
render: __vue_render__$F,
|
|
734
|
+
staticRenderFns: __vue_staticRenderFns__$F
|
|
735
|
+
}, __vue_inject_styles__$I, __vue_script__$y, __vue_scope_id__$I, __vue_is_functional_template__$I, __vue_module_identifier__$I, false, createInjector, undefined, undefined);
|
|
726
736
|
|
|
727
|
-
var __vue_component__$
|
|
737
|
+
var __vue_component__$1g = __vue_component__$1f;
|
|
728
738
|
|
|
729
739
|
//
|
|
730
740
|
var script$x = {
|
|
@@ -842,7 +852,7 @@ var script$x = {
|
|
|
842
852
|
const __vue_script__$x = script$x;
|
|
843
853
|
/* template */
|
|
844
854
|
|
|
845
|
-
var __vue_render__$
|
|
855
|
+
var __vue_render__$E = function () {
|
|
846
856
|
var _vm = this;
|
|
847
857
|
|
|
848
858
|
var _h = _vm.$createElement;
|
|
@@ -904,13 +914,13 @@ var __vue_render__$C = function () {
|
|
|
904
914
|
})], 1) : _vm._e()], 1);
|
|
905
915
|
};
|
|
906
916
|
|
|
907
|
-
var __vue_staticRenderFns__$
|
|
917
|
+
var __vue_staticRenderFns__$E = [];
|
|
908
918
|
/* style */
|
|
909
919
|
|
|
910
|
-
const __vue_inject_styles__$
|
|
920
|
+
const __vue_inject_styles__$H = function (inject) {
|
|
911
921
|
if (!inject) return;
|
|
912
|
-
inject("data-v-
|
|
913
|
-
source: ".bx--snippet--multi .bx--snippet-container[data-v-
|
|
922
|
+
inject("data-v-084a2bcc_0", {
|
|
923
|
+
source: ".bx--snippet--multi .bx--snippet-container[data-v-084a2bcc]{min-height:4.5rem;max-height:9.6rem;overflow-y:hidden}.bx--snippet--multi .bx--snippet-container.no-expand[data-v-084a2bcc]{min-height:2.5rem}.bx--snippet--multi.bx--snippet--expand .bx--snippet-container[data-v-084a2bcc]{max-height:100%}.bx--snippet--multi .bx--copy-btn[data-v-084a2bcc]{position:absolute!important;top:.5rem;right:.5rem;z-index:11;width:3rem;height:2rem}.bx--snippet-btn--expand[data-v-084a2bcc]{right:.5rem;bottom:.5rem}",
|
|
914
924
|
map: undefined,
|
|
915
925
|
media: undefined
|
|
916
926
|
});
|
|
@@ -918,23 +928,23 @@ const __vue_inject_styles__$F = function (inject) {
|
|
|
918
928
|
/* scoped */
|
|
919
929
|
|
|
920
930
|
|
|
921
|
-
const __vue_scope_id__$
|
|
931
|
+
const __vue_scope_id__$H = "data-v-084a2bcc";
|
|
922
932
|
/* module identifier */
|
|
923
933
|
|
|
924
|
-
const __vue_module_identifier__$
|
|
934
|
+
const __vue_module_identifier__$H = undefined;
|
|
925
935
|
/* functional template */
|
|
926
936
|
|
|
927
|
-
const __vue_is_functional_template__$
|
|
937
|
+
const __vue_is_functional_template__$H = false;
|
|
928
938
|
/* style inject SSR */
|
|
929
939
|
|
|
930
940
|
/* style inject shadow dom */
|
|
931
941
|
|
|
932
|
-
const __vue_component__$
|
|
933
|
-
render: __vue_render__$
|
|
934
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
935
|
-
}, __vue_inject_styles__$
|
|
942
|
+
const __vue_component__$1d = /*#__PURE__*/normalizeComponent({
|
|
943
|
+
render: __vue_render__$E,
|
|
944
|
+
staticRenderFns: __vue_staticRenderFns__$E
|
|
945
|
+
}, __vue_inject_styles__$H, __vue_script__$x, __vue_scope_id__$H, __vue_is_functional_template__$H, __vue_module_identifier__$H, false, createInjector, undefined, undefined);
|
|
936
946
|
|
|
937
|
-
var __vue_component__$
|
|
947
|
+
var __vue_component__$1e = __vue_component__$1d;
|
|
938
948
|
|
|
939
949
|
//
|
|
940
950
|
//
|
|
@@ -965,6 +975,10 @@ var __vue_component__$1a = __vue_component__$19;
|
|
|
965
975
|
//
|
|
966
976
|
//
|
|
967
977
|
//
|
|
978
|
+
//
|
|
979
|
+
//
|
|
980
|
+
//
|
|
981
|
+
//
|
|
968
982
|
var script$w = {
|
|
969
983
|
name: "NsCircleTimer",
|
|
970
984
|
props: {
|
|
@@ -1032,7 +1046,7 @@ var script$w = {
|
|
|
1032
1046
|
const __vue_script__$w = script$w;
|
|
1033
1047
|
/* template */
|
|
1034
1048
|
|
|
1035
|
-
var __vue_render__$
|
|
1049
|
+
var __vue_render__$D = function () {
|
|
1036
1050
|
var _vm = this;
|
|
1037
1051
|
|
|
1038
1052
|
var _h = _vm.$createElement;
|
|
@@ -1068,13 +1082,13 @@ var __vue_render__$B = function () {
|
|
|
1068
1082
|
})])])]);
|
|
1069
1083
|
};
|
|
1070
1084
|
|
|
1071
|
-
var __vue_staticRenderFns__$
|
|
1085
|
+
var __vue_staticRenderFns__$D = [];
|
|
1072
1086
|
/* style */
|
|
1073
1087
|
|
|
1074
|
-
const __vue_inject_styles__$
|
|
1088
|
+
const __vue_inject_styles__$G = function (inject) {
|
|
1075
1089
|
if (!inject) return;
|
|
1076
|
-
inject("data-v-
|
|
1077
|
-
source: ".base-timer[data-v-
|
|
1090
|
+
inject("data-v-6609841f_0", {
|
|
1091
|
+
source: ".base-timer[data-v-6609841f]{position:relative}.base-timer__circle[data-v-6609841f]{fill:none;stroke:none}.base-timer__path-remaining[data-v-6609841f]{stroke:currentColor;transform:rotate(90deg);transform-origin:center;transition:1s linear all}.base-timer__svg[data-v-6609841f]{transform:scaleX(-1)}",
|
|
1078
1092
|
map: undefined,
|
|
1079
1093
|
media: undefined
|
|
1080
1094
|
});
|
|
@@ -1082,23 +1096,23 @@ const __vue_inject_styles__$E = function (inject) {
|
|
|
1082
1096
|
/* scoped */
|
|
1083
1097
|
|
|
1084
1098
|
|
|
1085
|
-
const __vue_scope_id__$
|
|
1099
|
+
const __vue_scope_id__$G = "data-v-6609841f";
|
|
1086
1100
|
/* module identifier */
|
|
1087
1101
|
|
|
1088
|
-
const __vue_module_identifier__$
|
|
1102
|
+
const __vue_module_identifier__$G = undefined;
|
|
1089
1103
|
/* functional template */
|
|
1090
1104
|
|
|
1091
|
-
const __vue_is_functional_template__$
|
|
1105
|
+
const __vue_is_functional_template__$G = false;
|
|
1092
1106
|
/* style inject SSR */
|
|
1093
1107
|
|
|
1094
1108
|
/* style inject shadow dom */
|
|
1095
1109
|
|
|
1096
|
-
const __vue_component__$
|
|
1097
|
-
render: __vue_render__$
|
|
1098
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1099
|
-
}, __vue_inject_styles__$
|
|
1110
|
+
const __vue_component__$1c = /*#__PURE__*/normalizeComponent({
|
|
1111
|
+
render: __vue_render__$D,
|
|
1112
|
+
staticRenderFns: __vue_staticRenderFns__$D
|
|
1113
|
+
}, __vue_inject_styles__$G, __vue_script__$w, __vue_scope_id__$G, __vue_is_functional_template__$G, __vue_module_identifier__$G, false, createInjector, undefined, undefined);
|
|
1100
1114
|
|
|
1101
|
-
var NsCircleTimer = __vue_component__$
|
|
1115
|
+
var NsCircleTimer = __vue_component__$1c;
|
|
1102
1116
|
|
|
1103
1117
|
//
|
|
1104
1118
|
var script$v = {
|
|
@@ -1141,7 +1155,7 @@ var script$v = {
|
|
|
1141
1155
|
const __vue_script__$v = script$v;
|
|
1142
1156
|
/* template */
|
|
1143
1157
|
|
|
1144
|
-
var __vue_render__$
|
|
1158
|
+
var __vue_render__$C = function () {
|
|
1145
1159
|
var _obj;
|
|
1146
1160
|
|
|
1147
1161
|
var _vm = this;
|
|
@@ -1164,12 +1178,12 @@ var __vue_render__$A = function () {
|
|
|
1164
1178
|
class: _vm.carbonPrefix + "--inline-notification__icon"
|
|
1165
1179
|
}), _vm._v(" "), _c('div', {
|
|
1166
1180
|
class: _vm.carbonPrefix + "--inline-notification__text-wrapper"
|
|
1167
|
-
}, [_c('p', {
|
|
1181
|
+
}, [_vm.title ? _c('p', {
|
|
1168
1182
|
class: _vm.carbonPrefix + "--inline-notification__title title",
|
|
1169
1183
|
domProps: {
|
|
1170
1184
|
"innerHTML": _vm._s(_vm.title)
|
|
1171
1185
|
}
|
|
1172
|
-
}), _vm._v(" "), _vm.description ? _c('p', {
|
|
1186
|
+
}) : _vm._e(), _vm._v(" "), _vm.description ? _c('p', {
|
|
1173
1187
|
class: [_vm.carbonPrefix + "--inline-notification__subtitle", {
|
|
1174
1188
|
'mg-right': _vm.loading || _vm.timer
|
|
1175
1189
|
}],
|
|
@@ -1212,13 +1226,13 @@ var __vue_render__$A = function () {
|
|
|
1212
1226
|
})], 1) : _vm._e()]);
|
|
1213
1227
|
};
|
|
1214
1228
|
|
|
1215
|
-
var __vue_staticRenderFns__$
|
|
1229
|
+
var __vue_staticRenderFns__$C = [];
|
|
1216
1230
|
/* style */
|
|
1217
1231
|
|
|
1218
|
-
const __vue_inject_styles__$
|
|
1232
|
+
const __vue_inject_styles__$F = function (inject) {
|
|
1219
1233
|
if (!inject) return;
|
|
1220
|
-
inject("data-v-
|
|
1221
|
-
source: ".title[data-v-
|
|
1234
|
+
inject("data-v-20e6c586_0", {
|
|
1235
|
+
source: ".title[data-v-20e6c586]{margin-right:.75rem;margin-bottom:.2rem;font-size:.875rem!important;font-weight:600!important}.mg-right[data-v-20e6c586]{margin-right:.75rem}.action-button[data-v-20e6c586]{margin-right:.5rem}.bx--inline-notification__text-wrapper p[data-v-20e6c586]{padding-right:0!important}",
|
|
1222
1236
|
map: undefined,
|
|
1223
1237
|
media: undefined
|
|
1224
1238
|
});
|
|
@@ -1226,23 +1240,23 @@ const __vue_inject_styles__$D = function (inject) {
|
|
|
1226
1240
|
/* scoped */
|
|
1227
1241
|
|
|
1228
1242
|
|
|
1229
|
-
const __vue_scope_id__$
|
|
1243
|
+
const __vue_scope_id__$F = "data-v-20e6c586";
|
|
1230
1244
|
/* module identifier */
|
|
1231
1245
|
|
|
1232
|
-
const __vue_module_identifier__$
|
|
1246
|
+
const __vue_module_identifier__$F = undefined;
|
|
1233
1247
|
/* functional template */
|
|
1234
1248
|
|
|
1235
|
-
const __vue_is_functional_template__$
|
|
1249
|
+
const __vue_is_functional_template__$F = false;
|
|
1236
1250
|
/* style inject SSR */
|
|
1237
1251
|
|
|
1238
1252
|
/* style inject shadow dom */
|
|
1239
1253
|
|
|
1240
|
-
const __vue_component__$
|
|
1241
|
-
render: __vue_render__$
|
|
1242
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1243
|
-
}, __vue_inject_styles__$
|
|
1254
|
+
const __vue_component__$1b = /*#__PURE__*/normalizeComponent({
|
|
1255
|
+
render: __vue_render__$C,
|
|
1256
|
+
staticRenderFns: __vue_staticRenderFns__$C
|
|
1257
|
+
}, __vue_inject_styles__$F, __vue_script__$v, __vue_scope_id__$F, __vue_is_functional_template__$F, __vue_module_identifier__$F, false, createInjector, undefined, undefined);
|
|
1244
1258
|
|
|
1245
|
-
var NsInlineNotification = __vue_component__$
|
|
1259
|
+
var NsInlineNotification = __vue_component__$1b;
|
|
1246
1260
|
|
|
1247
1261
|
//
|
|
1248
1262
|
//
|
|
@@ -1281,6 +1295,10 @@ var NsInlineNotification = __vue_component__$17;
|
|
|
1281
1295
|
//
|
|
1282
1296
|
//
|
|
1283
1297
|
//
|
|
1298
|
+
//
|
|
1299
|
+
//
|
|
1300
|
+
//
|
|
1301
|
+
//
|
|
1284
1302
|
var script$u = {
|
|
1285
1303
|
name: "NsProgressBar",
|
|
1286
1304
|
props: {
|
|
@@ -1362,7 +1380,7 @@ var script$u = {
|
|
|
1362
1380
|
const __vue_script__$u = script$u;
|
|
1363
1381
|
/* template */
|
|
1364
1382
|
|
|
1365
|
-
var __vue_render__$
|
|
1383
|
+
var __vue_render__$B = function () {
|
|
1366
1384
|
var _vm = this;
|
|
1367
1385
|
|
|
1368
1386
|
var _h = _vm.$createElement;
|
|
@@ -1401,13 +1419,13 @@ var __vue_render__$z = function () {
|
|
|
1401
1419
|
})]], 2)]);
|
|
1402
1420
|
};
|
|
1403
1421
|
|
|
1404
|
-
var __vue_staticRenderFns__$
|
|
1422
|
+
var __vue_staticRenderFns__$B = [];
|
|
1405
1423
|
/* style */
|
|
1406
1424
|
|
|
1407
|
-
const __vue_inject_styles__$
|
|
1425
|
+
const __vue_inject_styles__$E = function (inject) {
|
|
1408
1426
|
if (!inject) return;
|
|
1409
|
-
inject("data-v-
|
|
1410
|
-
source: ".progress-bar-container[data-v-
|
|
1427
|
+
inject("data-v-2813565d_0", {
|
|
1428
|
+
source: ".progress-bar-container[data-v-2813565d]{width:100%;position:relative}.slider[data-v-2813565d]{position:absolute;width:100%;overflow-x:hidden}.line[data-v-2813565d]{position:absolute;opacity:.4;width:100%}.progress-line[data-v-2813565d]{position:absolute}.indeterminate-line[data-v-2813565d]{position:absolute;opacity:.4;width:150%}.indeterminate-subline[data-v-2813565d]{position:absolute}.inc[data-v-2813565d]{animation:increase-data-v-2813565d 2s infinite}.dec[data-v-2813565d]{animation:decrease-data-v-2813565d 2s .5s infinite}@keyframes increase-data-v-2813565d{from{left:-5%;width:5%}to{left:130%;width:100%}}@keyframes decrease-data-v-2813565d{from{left:-80%;width:80%}to{left:110%;width:10%}}",
|
|
1411
1429
|
map: undefined,
|
|
1412
1430
|
media: undefined
|
|
1413
1431
|
});
|
|
@@ -1415,24 +1433,28 @@ const __vue_inject_styles__$C = function (inject) {
|
|
|
1415
1433
|
/* scoped */
|
|
1416
1434
|
|
|
1417
1435
|
|
|
1418
|
-
const __vue_scope_id__$
|
|
1436
|
+
const __vue_scope_id__$E = "data-v-2813565d";
|
|
1419
1437
|
/* module identifier */
|
|
1420
1438
|
|
|
1421
|
-
const __vue_module_identifier__$
|
|
1439
|
+
const __vue_module_identifier__$E = undefined;
|
|
1422
1440
|
/* functional template */
|
|
1423
1441
|
|
|
1424
|
-
const __vue_is_functional_template__$
|
|
1442
|
+
const __vue_is_functional_template__$E = false;
|
|
1425
1443
|
/* style inject SSR */
|
|
1426
1444
|
|
|
1427
1445
|
/* style inject shadow dom */
|
|
1428
1446
|
|
|
1429
|
-
const __vue_component__$
|
|
1430
|
-
render: __vue_render__$
|
|
1431
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1432
|
-
}, __vue_inject_styles__$
|
|
1447
|
+
const __vue_component__$1a = /*#__PURE__*/normalizeComponent({
|
|
1448
|
+
render: __vue_render__$B,
|
|
1449
|
+
staticRenderFns: __vue_staticRenderFns__$B
|
|
1450
|
+
}, __vue_inject_styles__$E, __vue_script__$u, __vue_scope_id__$E, __vue_is_functional_template__$E, __vue_module_identifier__$E, false, createInjector, undefined, undefined);
|
|
1433
1451
|
|
|
1434
|
-
var NsProgressBar = __vue_component__$
|
|
1452
|
+
var NsProgressBar = __vue_component__$1a;
|
|
1435
1453
|
|
|
1454
|
+
//
|
|
1455
|
+
//
|
|
1456
|
+
//
|
|
1457
|
+
//
|
|
1436
1458
|
var script$t = {
|
|
1437
1459
|
name: "NsSvg",
|
|
1438
1460
|
props: {
|
|
@@ -1497,25 +1519,25 @@ const __vue_script__$t = script$t;
|
|
|
1497
1519
|
|
|
1498
1520
|
/* style */
|
|
1499
1521
|
|
|
1500
|
-
const __vue_inject_styles__$
|
|
1522
|
+
const __vue_inject_styles__$D = undefined;
|
|
1501
1523
|
/* scoped */
|
|
1502
1524
|
|
|
1503
|
-
const __vue_scope_id__$
|
|
1525
|
+
const __vue_scope_id__$D = undefined;
|
|
1504
1526
|
/* module identifier */
|
|
1505
1527
|
|
|
1506
|
-
const __vue_module_identifier__$
|
|
1528
|
+
const __vue_module_identifier__$D = undefined;
|
|
1507
1529
|
/* functional template */
|
|
1508
1530
|
|
|
1509
|
-
const __vue_is_functional_template__$
|
|
1531
|
+
const __vue_is_functional_template__$D = undefined;
|
|
1510
1532
|
/* style inject */
|
|
1511
1533
|
|
|
1512
1534
|
/* style inject SSR */
|
|
1513
1535
|
|
|
1514
1536
|
/* style inject shadow dom */
|
|
1515
1537
|
|
|
1516
|
-
const __vue_component__$
|
|
1538
|
+
const __vue_component__$19 = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$D, __vue_script__$t, __vue_scope_id__$D, __vue_is_functional_template__$D, __vue_module_identifier__$D, false, undefined, undefined, undefined);
|
|
1517
1539
|
|
|
1518
|
-
var NsSvg = __vue_component__$
|
|
1540
|
+
var NsSvg = __vue_component__$19;
|
|
1519
1541
|
|
|
1520
1542
|
//
|
|
1521
1543
|
var script$s = {
|
|
@@ -1595,7 +1617,7 @@ var script$s = {
|
|
|
1595
1617
|
const __vue_script__$s = script$s;
|
|
1596
1618
|
/* template */
|
|
1597
1619
|
|
|
1598
|
-
var __vue_render__$
|
|
1620
|
+
var __vue_render__$A = function () {
|
|
1599
1621
|
var _obj;
|
|
1600
1622
|
|
|
1601
1623
|
var _vm = this;
|
|
@@ -1634,13 +1656,13 @@ var __vue_render__$y = function () {
|
|
|
1634
1656
|
}) : _vm._e()], 1);
|
|
1635
1657
|
};
|
|
1636
1658
|
|
|
1637
|
-
var __vue_staticRenderFns__$
|
|
1659
|
+
var __vue_staticRenderFns__$A = [];
|
|
1638
1660
|
/* style */
|
|
1639
1661
|
|
|
1640
|
-
const __vue_inject_styles__$
|
|
1662
|
+
const __vue_inject_styles__$C = function (inject) {
|
|
1641
1663
|
if (!inject) return;
|
|
1642
|
-
inject("data-v-
|
|
1643
|
-
source: ".ns-tile[data-v-
|
|
1664
|
+
inject("data-v-2babf9e8_0", {
|
|
1665
|
+
source: ".ns-tile[data-v-2babf9e8]{margin-bottom:2rem;position:relative}.container[data-v-2babf9e8]{display:flex;flex-direction:column;justify-content:center}.centered[data-v-2babf9e8]{text-align:center}.large[data-v-2babf9e8]{min-height:10rem}.tile-icon[data-v-2babf9e8]{display:block;margin-left:auto;margin-right:auto;margin-bottom:1rem}.tile-footer-icon[data-v-2babf9e8]{position:absolute;right:1rem;bottom:1rem;flex-shrink:0;width:1.25rem;height:1.25rem}.pad-bottom[data-v-2babf9e8]{padding-bottom:4rem}.disabled-tile[data-v-2babf9e8]{color:#c6c6c6}",
|
|
1644
1666
|
map: undefined,
|
|
1645
1667
|
media: undefined
|
|
1646
1668
|
});
|
|
@@ -1648,23 +1670,23 @@ const __vue_inject_styles__$A = function (inject) {
|
|
|
1648
1670
|
/* scoped */
|
|
1649
1671
|
|
|
1650
1672
|
|
|
1651
|
-
const __vue_scope_id__$
|
|
1673
|
+
const __vue_scope_id__$C = "data-v-2babf9e8";
|
|
1652
1674
|
/* module identifier */
|
|
1653
1675
|
|
|
1654
|
-
const __vue_module_identifier__$
|
|
1676
|
+
const __vue_module_identifier__$C = undefined;
|
|
1655
1677
|
/* functional template */
|
|
1656
1678
|
|
|
1657
|
-
const __vue_is_functional_template__$
|
|
1679
|
+
const __vue_is_functional_template__$C = false;
|
|
1658
1680
|
/* style inject SSR */
|
|
1659
1681
|
|
|
1660
1682
|
/* style inject shadow dom */
|
|
1661
1683
|
|
|
1662
|
-
const __vue_component__$
|
|
1663
|
-
render: __vue_render__$
|
|
1664
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
1665
|
-
}, __vue_inject_styles__$
|
|
1684
|
+
const __vue_component__$17 = /*#__PURE__*/normalizeComponent({
|
|
1685
|
+
render: __vue_render__$A,
|
|
1686
|
+
staticRenderFns: __vue_staticRenderFns__$A
|
|
1687
|
+
}, __vue_inject_styles__$C, __vue_script__$s, __vue_scope_id__$C, __vue_is_functional_template__$C, __vue_module_identifier__$C, false, createInjector, undefined, undefined);
|
|
1666
1688
|
|
|
1667
|
-
var __vue_component__$
|
|
1689
|
+
var __vue_component__$18 = __vue_component__$17;
|
|
1668
1690
|
|
|
1669
1691
|
function toInteger(dirtyNumber) {
|
|
1670
1692
|
if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) {
|
|
@@ -6237,6 +6259,10 @@ function utcToZonedTime(dirtyDate, timeZone, options) {
|
|
|
6237
6259
|
return zonedTime
|
|
6238
6260
|
}
|
|
6239
6261
|
|
|
6262
|
+
/*
|
|
6263
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
6264
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
6265
|
+
*/
|
|
6240
6266
|
var DateTimeService = {
|
|
6241
6267
|
name: "DateTimeService",
|
|
6242
6268
|
|
|
@@ -6342,7 +6368,7 @@ var script$r = {
|
|
|
6342
6368
|
const __vue_script__$r = script$r;
|
|
6343
6369
|
/* template */
|
|
6344
6370
|
|
|
6345
|
-
var __vue_render__$
|
|
6371
|
+
var __vue_render__$z = function () {
|
|
6346
6372
|
var _obj;
|
|
6347
6373
|
|
|
6348
6374
|
var _vm = this;
|
|
@@ -6440,16 +6466,16 @@ var __vue_render__$x = function () {
|
|
|
6440
6466
|
})], 1) : _vm._e()], 1)]);
|
|
6441
6467
|
};
|
|
6442
6468
|
|
|
6443
|
-
var __vue_staticRenderFns__$
|
|
6469
|
+
var __vue_staticRenderFns__$z = [];
|
|
6444
6470
|
/* style */
|
|
6445
6471
|
|
|
6446
|
-
const __vue_inject_styles__$
|
|
6472
|
+
const __vue_inject_styles__$B = function (inject) {
|
|
6447
6473
|
if (!inject) return;
|
|
6448
|
-
inject("data-v-
|
|
6449
|
-
source: ".notification[data-v-
|
|
6474
|
+
inject("data-v-7d4a3b16_0", {
|
|
6475
|
+
source: ".notification[data-v-7d4a3b16]{margin-bottom:0;margin-right:0}.action[data-v-7d4a3b16]{padding-top:0;margin-bottom:0}.bx--toast-notification .bx--inline-notification__action-button[data-v-7d4a3b16]{margin-left:-1rem}.bx--toast-notification .bx--inline-notification__action-button.bx--btn--danger[data-v-7d4a3b16]{margin:.5rem 0 .5rem -1rem}.notification-description-and-progress[data-v-7d4a3b16]{margin-top:.75rem;margin-bottom:.75rem}.fix-margin-bottom[data-v-7d4a3b16]{margin-bottom:0}.progress[data-v-7d4a3b16]{margin-top:.75rem}.progress-bar-spacer[data-v-7d4a3b16]{height:.5rem}.cv-notifiation.bx--toast-notification.notification[data-v-7d4a3b16]{width:26vw;min-width:20rem;margin-top:0}.notification-drawer .cv-notifiation.bx--toast-notification.notification[data-v-7d4a3b16]{margin-top:1rem}.notification-drawer .cv-notifiation.bx--toast-notification.notification[data-v-7d4a3b16]{width:100%;cursor:pointer}.notification-read[data-v-7d4a3b16]{border-color:#8d8d8d;color:#c6c6c6}.notification-read .bx--toast-notification__icon[data-v-7d4a3b16]{fill:currentColor}.notification-read .bx--toast-notification__subtitle[data-v-7d4a3b16]{color:#c6c6c6}.notification-read .bx--toast-notification__title[data-v-7d4a3b16]{font-weight:400}.cv-notifiation .timestamp[data-v-7d4a3b16]{margin-bottom:.75rem;line-height:1.29;color:#fff;text-decoration:underline}.cv-notifiation .timestamp button[data-v-7d4a3b16]{color:#c6c6c6}.bx--tooltip__trigger[data-v-7d4a3b16]:not(.bx--btn--icon-only){font-size:inherit}.cv-notifiation .timestamp .bx--tooltip__trigger[data-v-7d4a3b16]::before{border-bottom-color:#161616}div.row[data-v-7d4a3b16]:last-child{margin-bottom:1.5rem}.bx--toast-notification__details[data-v-7d4a3b16]{flex-grow:1}",
|
|
6450
6476
|
map: undefined,
|
|
6451
6477
|
media: undefined
|
|
6452
|
-
}), inject("data-v-
|
|
6478
|
+
}), inject("data-v-7d4a3b16_1", {
|
|
6453
6479
|
source: ".cv-notifiation .timestamp button span{background-color:#161616!important;border-left:1px solid #393939;border-right:1px solid #393939;border-bottom:1px solid #393939}",
|
|
6454
6480
|
map: undefined,
|
|
6455
6481
|
media: undefined
|
|
@@ -6458,30 +6484,31 @@ const __vue_inject_styles__$z = function (inject) {
|
|
|
6458
6484
|
/* scoped */
|
|
6459
6485
|
|
|
6460
6486
|
|
|
6461
|
-
const __vue_scope_id__$
|
|
6487
|
+
const __vue_scope_id__$B = "data-v-7d4a3b16";
|
|
6462
6488
|
/* module identifier */
|
|
6463
6489
|
|
|
6464
|
-
const __vue_module_identifier__$
|
|
6490
|
+
const __vue_module_identifier__$B = undefined;
|
|
6465
6491
|
/* functional template */
|
|
6466
6492
|
|
|
6467
|
-
const __vue_is_functional_template__$
|
|
6493
|
+
const __vue_is_functional_template__$B = false;
|
|
6468
6494
|
/* style inject SSR */
|
|
6469
6495
|
|
|
6470
6496
|
/* style inject shadow dom */
|
|
6471
6497
|
|
|
6472
|
-
const __vue_component__$
|
|
6473
|
-
render: __vue_render__$
|
|
6474
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6475
|
-
}, __vue_inject_styles__$
|
|
6498
|
+
const __vue_component__$15 = /*#__PURE__*/normalizeComponent({
|
|
6499
|
+
render: __vue_render__$z,
|
|
6500
|
+
staticRenderFns: __vue_staticRenderFns__$z
|
|
6501
|
+
}, __vue_inject_styles__$B, __vue_script__$r, __vue_scope_id__$B, __vue_is_functional_template__$B, __vue_module_identifier__$B, false, createInjector, undefined, undefined);
|
|
6476
6502
|
|
|
6477
|
-
var __vue_component__$
|
|
6503
|
+
var __vue_component__$16 = __vue_component__$15;
|
|
6478
6504
|
|
|
6479
6505
|
//
|
|
6480
6506
|
var script$q = {
|
|
6481
6507
|
name: "NsInfoCard",
|
|
6482
6508
|
components: {
|
|
6483
6509
|
NsSvg,
|
|
6484
|
-
NsInlineNotification
|
|
6510
|
+
NsInlineNotification,
|
|
6511
|
+
Information16
|
|
6485
6512
|
},
|
|
6486
6513
|
props: {
|
|
6487
6514
|
title: {
|
|
@@ -6496,6 +6523,18 @@ var script$q = {
|
|
|
6496
6523
|
type: String,
|
|
6497
6524
|
required: false
|
|
6498
6525
|
},
|
|
6526
|
+
titleTooltipAlignment: {
|
|
6527
|
+
type: String,
|
|
6528
|
+
required: false,
|
|
6529
|
+
default: "center",
|
|
6530
|
+
validator: val => ["start", "center", "end"].includes(val)
|
|
6531
|
+
},
|
|
6532
|
+
titleTooltipDirection: {
|
|
6533
|
+
type: String,
|
|
6534
|
+
required: false,
|
|
6535
|
+
default: "bottom",
|
|
6536
|
+
validator: val => ["top", "right", "bottom", "left"].includes(val)
|
|
6537
|
+
},
|
|
6499
6538
|
icon: {
|
|
6500
6539
|
type: [String, Object],
|
|
6501
6540
|
default: undefined,
|
|
@@ -6531,7 +6570,7 @@ var script$q = {
|
|
|
6531
6570
|
const __vue_script__$q = script$q;
|
|
6532
6571
|
/* template */
|
|
6533
6572
|
|
|
6534
|
-
var __vue_render__$
|
|
6573
|
+
var __vue_render__$y = function () {
|
|
6535
6574
|
var _vm = this;
|
|
6536
6575
|
|
|
6537
6576
|
var _h = _vm.$createElement;
|
|
@@ -6565,21 +6604,28 @@ var __vue_render__$w = function () {
|
|
|
6565
6604
|
staticClass: "skeleton",
|
|
6566
6605
|
attrs: {
|
|
6567
6606
|
"paragraph": true,
|
|
6568
|
-
"line-count": 3
|
|
6607
|
+
"line-count": 3,
|
|
6608
|
+
"heading": ""
|
|
6569
6609
|
}
|
|
6570
6610
|
})], 1) : [_vm.title ? _c('div', {
|
|
6571
6611
|
staticClass: "row"
|
|
6572
|
-
}, [_vm.titleTooltip ? _c('cv-tooltip', {
|
|
6573
|
-
attrs: {
|
|
6574
|
-
"alignment": "center",
|
|
6575
|
-
"direction": "bottom",
|
|
6576
|
-
"tip": _vm.titleTooltip
|
|
6577
|
-
}
|
|
6578
6612
|
}, [_c('h3', {
|
|
6579
6613
|
staticClass: "title"
|
|
6580
|
-
}, [_vm._v(
|
|
6581
|
-
staticClass: "title"
|
|
6582
|
-
|
|
6614
|
+
}, [_vm._v(_vm._s(_vm.title))]), _vm._v(" "), _vm.titleTooltip ? _c('cv-interactive-tooltip', {
|
|
6615
|
+
staticClass: "info title-tooltip",
|
|
6616
|
+
attrs: {
|
|
6617
|
+
"alignment": _vm.titleTooltipAlignment,
|
|
6618
|
+
"direction": _vm.titleTooltipDirection
|
|
6619
|
+
}
|
|
6620
|
+
}, [_c('template', {
|
|
6621
|
+
slot: "trigger"
|
|
6622
|
+
}, [_c('Information16')], 1), _vm._v(" "), _c('template', {
|
|
6623
|
+
slot: "content"
|
|
6624
|
+
}, [_c('div', {
|
|
6625
|
+
domProps: {
|
|
6626
|
+
"innerHTML": _vm._s(_vm.titleTooltip)
|
|
6627
|
+
}
|
|
6628
|
+
})])], 2) : _vm._e()], 1) : _vm._e(), _vm._v(" "), _vm.description ? _c('div', {
|
|
6583
6629
|
staticClass: "row"
|
|
6584
6630
|
}, [_c('div', {
|
|
6585
6631
|
staticClass: "description"
|
|
@@ -6588,13 +6634,13 @@ var __vue_render__$w = function () {
|
|
|
6588
6634
|
}, [_vm.hasContentSlot ? _vm._t("content") : _vm._e()], 2)], 2);
|
|
6589
6635
|
};
|
|
6590
6636
|
|
|
6591
|
-
var __vue_staticRenderFns__$
|
|
6637
|
+
var __vue_staticRenderFns__$y = [];
|
|
6592
6638
|
/* style */
|
|
6593
6639
|
|
|
6594
|
-
const __vue_inject_styles__$
|
|
6640
|
+
const __vue_inject_styles__$A = function (inject) {
|
|
6595
6641
|
if (!inject) return;
|
|
6596
|
-
inject("data-v-
|
|
6597
|
-
source: ".info-card[data-v-
|
|
6642
|
+
inject("data-v-e88c3bd6_0", {
|
|
6643
|
+
source: ".info-card[data-v-e88c3bd6]{display:flex;flex-direction:column;justify-content:center;min-height:7rem;position:relative}.skeleton[data-v-e88c3bd6]{margin-top:.5rem;margin-left:auto;margin-right:auto}.row[data-v-e88c3bd6]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.title[data-v-e88c3bd6]{margin-left:.25rem;margin-right:.25rem;margin-bottom:.5rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.title-tooltip[data-v-e88c3bd6]{position:relative;top:-2px}.description[data-v-e88c3bd6]{margin-left:.25rem;margin-right:.25rem}.slot[data-v-e88c3bd6]{margin-top:.5rem}",
|
|
6598
6644
|
map: undefined,
|
|
6599
6645
|
media: undefined
|
|
6600
6646
|
});
|
|
@@ -6602,23 +6648,23 @@ const __vue_inject_styles__$y = function (inject) {
|
|
|
6602
6648
|
/* scoped */
|
|
6603
6649
|
|
|
6604
6650
|
|
|
6605
|
-
const __vue_scope_id__$
|
|
6651
|
+
const __vue_scope_id__$A = "data-v-e88c3bd6";
|
|
6606
6652
|
/* module identifier */
|
|
6607
6653
|
|
|
6608
|
-
const __vue_module_identifier__$
|
|
6654
|
+
const __vue_module_identifier__$A = undefined;
|
|
6609
6655
|
/* functional template */
|
|
6610
6656
|
|
|
6611
|
-
const __vue_is_functional_template__$
|
|
6657
|
+
const __vue_is_functional_template__$A = false;
|
|
6612
6658
|
/* style inject SSR */
|
|
6613
6659
|
|
|
6614
6660
|
/* style inject shadow dom */
|
|
6615
6661
|
|
|
6616
|
-
const __vue_component__
|
|
6617
|
-
render: __vue_render__$
|
|
6618
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6619
|
-
}, __vue_inject_styles__$
|
|
6662
|
+
const __vue_component__$13 = /*#__PURE__*/normalizeComponent({
|
|
6663
|
+
render: __vue_render__$y,
|
|
6664
|
+
staticRenderFns: __vue_staticRenderFns__$y
|
|
6665
|
+
}, __vue_inject_styles__$A, __vue_script__$q, __vue_scope_id__$A, __vue_is_functional_template__$A, __vue_module_identifier__$A, false, createInjector, undefined, undefined);
|
|
6620
6666
|
|
|
6621
|
-
var __vue_component__$
|
|
6667
|
+
var __vue_component__$14 = __vue_component__$13;
|
|
6622
6668
|
|
|
6623
6669
|
//
|
|
6624
6670
|
var script$p = {
|
|
@@ -6671,7 +6717,7 @@ var script$p = {
|
|
|
6671
6717
|
const __vue_script__$p = script$p;
|
|
6672
6718
|
/* template */
|
|
6673
6719
|
|
|
6674
|
-
var __vue_render__$
|
|
6720
|
+
var __vue_render__$x = function () {
|
|
6675
6721
|
var _vm = this;
|
|
6676
6722
|
|
|
6677
6723
|
var _h = _vm.$createElement;
|
|
@@ -6740,13 +6786,13 @@ var __vue_render__$v = function () {
|
|
|
6740
6786
|
}, [_c('h4', [_vm._v(_vm._s(_vm.valueSuccess))])]) : _c('h4', [_vm._v(_vm._s(_vm.valueSuccess))])], 1) : _vm._e()])]);
|
|
6741
6787
|
};
|
|
6742
6788
|
|
|
6743
|
-
var __vue_staticRenderFns__$
|
|
6789
|
+
var __vue_staticRenderFns__$x = [];
|
|
6744
6790
|
/* style */
|
|
6745
6791
|
|
|
6746
|
-
const __vue_inject_styles__$
|
|
6792
|
+
const __vue_inject_styles__$z = function (inject) {
|
|
6747
6793
|
if (!inject) return;
|
|
6748
|
-
inject("data-v-
|
|
6749
|
-
source: ".status-card[data-v-
|
|
6794
|
+
inject("data-v-d6024f1c_0", {
|
|
6795
|
+
source: ".status-card[data-v-d6024f1c]{display:flex;flex-direction:column;justify-content:center}.row[data-v-d6024f1c]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.value[data-v-d6024f1c]{margin-left:.25rem;margin-right:.25rem}.label[data-v-d6024f1c]{margin-left:.25rem;margin-right:.25rem}.success-icon[data-v-d6024f1c]{margin-right:.25rem}.error-icon[data-v-d6024f1c]{margin-right:.25rem}.warning-icon[data-v-d6024f1c]{margin-right:.25rem}.stats[data-v-d6024f1c]{display:flex;align-items:center;margin-left:.5rem;margin-right:.5rem}",
|
|
6750
6796
|
map: undefined,
|
|
6751
6797
|
media: undefined
|
|
6752
6798
|
});
|
|
@@ -6754,23 +6800,23 @@ const __vue_inject_styles__$x = function (inject) {
|
|
|
6754
6800
|
/* scoped */
|
|
6755
6801
|
|
|
6756
6802
|
|
|
6757
|
-
const __vue_scope_id__$
|
|
6803
|
+
const __vue_scope_id__$z = "data-v-d6024f1c";
|
|
6758
6804
|
/* module identifier */
|
|
6759
6805
|
|
|
6760
|
-
const __vue_module_identifier__$
|
|
6806
|
+
const __vue_module_identifier__$z = undefined;
|
|
6761
6807
|
/* functional template */
|
|
6762
6808
|
|
|
6763
|
-
const __vue_is_functional_template__$
|
|
6809
|
+
const __vue_is_functional_template__$z = false;
|
|
6764
6810
|
/* style inject SSR */
|
|
6765
6811
|
|
|
6766
6812
|
/* style inject shadow dom */
|
|
6767
6813
|
|
|
6768
|
-
const __vue_component__$
|
|
6769
|
-
render: __vue_render__$
|
|
6770
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6771
|
-
}, __vue_inject_styles__$
|
|
6814
|
+
const __vue_component__$11 = /*#__PURE__*/normalizeComponent({
|
|
6815
|
+
render: __vue_render__$x,
|
|
6816
|
+
staticRenderFns: __vue_staticRenderFns__$x
|
|
6817
|
+
}, __vue_inject_styles__$z, __vue_script__$p, __vue_scope_id__$z, __vue_is_functional_template__$z, __vue_module_identifier__$z, false, createInjector, undefined, undefined);
|
|
6772
6818
|
|
|
6773
|
-
var __vue_component__$
|
|
6819
|
+
var __vue_component__$12 = __vue_component__$11;
|
|
6774
6820
|
|
|
6775
6821
|
//
|
|
6776
6822
|
var script$o = {
|
|
@@ -6830,7 +6876,7 @@ var script$o = {
|
|
|
6830
6876
|
const __vue_script__$o = script$o;
|
|
6831
6877
|
/* template */
|
|
6832
6878
|
|
|
6833
|
-
var __vue_render__$
|
|
6879
|
+
var __vue_render__$w = function () {
|
|
6834
6880
|
var _vm = this;
|
|
6835
6881
|
|
|
6836
6882
|
var _h = _vm.$createElement;
|
|
@@ -6885,13 +6931,13 @@ var __vue_render__$u = function () {
|
|
|
6885
6931
|
})], 1)])]);
|
|
6886
6932
|
};
|
|
6887
6933
|
|
|
6888
|
-
var __vue_staticRenderFns__$
|
|
6934
|
+
var __vue_staticRenderFns__$w = [];
|
|
6889
6935
|
/* style */
|
|
6890
6936
|
|
|
6891
|
-
const __vue_inject_styles__$
|
|
6937
|
+
const __vue_inject_styles__$y = function (inject) {
|
|
6892
6938
|
if (!inject) return;
|
|
6893
|
-
inject("data-v-
|
|
6894
|
-
source: ".service-card[data-v-
|
|
6939
|
+
inject("data-v-0ece12a7_0", {
|
|
6940
|
+
source: ".service-card[data-v-0ece12a7]{display:flex;flex-direction:column;justify-content:center}.row[data-v-0ece12a7]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.service-name[data-v-0ece12a7]{margin-left:.25rem;margin-right:.25rem;margin-bottom:.5rem}.success-icon[data-v-0ece12a7]{margin-right:.25rem}.error-icon[data-v-0ece12a7]{margin-right:.25rem}.warning-icon[data-v-0ece12a7]{margin-right:.25rem}.stats[data-v-0ece12a7]{display:flex;align-items:center;margin-left:.5rem;margin-right:.5rem}",
|
|
6895
6941
|
map: undefined,
|
|
6896
6942
|
media: undefined
|
|
6897
6943
|
});
|
|
@@ -6899,23 +6945,23 @@ const __vue_inject_styles__$w = function (inject) {
|
|
|
6899
6945
|
/* scoped */
|
|
6900
6946
|
|
|
6901
6947
|
|
|
6902
|
-
const __vue_scope_id__$
|
|
6948
|
+
const __vue_scope_id__$y = "data-v-0ece12a7";
|
|
6903
6949
|
/* module identifier */
|
|
6904
6950
|
|
|
6905
|
-
const __vue_module_identifier__$
|
|
6951
|
+
const __vue_module_identifier__$y = undefined;
|
|
6906
6952
|
/* functional template */
|
|
6907
6953
|
|
|
6908
|
-
const __vue_is_functional_template__$
|
|
6954
|
+
const __vue_is_functional_template__$y = false;
|
|
6909
6955
|
/* style inject SSR */
|
|
6910
6956
|
|
|
6911
6957
|
/* style inject shadow dom */
|
|
6912
6958
|
|
|
6913
|
-
const __vue_component__
|
|
6914
|
-
render: __vue_render__$
|
|
6915
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
6916
|
-
}, __vue_inject_styles__$
|
|
6959
|
+
const __vue_component__$$ = /*#__PURE__*/normalizeComponent({
|
|
6960
|
+
render: __vue_render__$w,
|
|
6961
|
+
staticRenderFns: __vue_staticRenderFns__$w
|
|
6962
|
+
}, __vue_inject_styles__$y, __vue_script__$o, __vue_scope_id__$y, __vue_is_functional_template__$y, __vue_module_identifier__$y, false, createInjector, undefined, undefined);
|
|
6917
6963
|
|
|
6918
|
-
var __vue_component__$
|
|
6964
|
+
var __vue_component__$10 = __vue_component__$$;
|
|
6919
6965
|
|
|
6920
6966
|
//
|
|
6921
6967
|
var script$n = {
|
|
@@ -6976,7 +7022,7 @@ var script$n = {
|
|
|
6976
7022
|
const __vue_script__$n = script$n;
|
|
6977
7023
|
/* template */
|
|
6978
7024
|
|
|
6979
|
-
var __vue_render__$
|
|
7025
|
+
var __vue_render__$v = function () {
|
|
6980
7026
|
var _obj, _obj$1, _obj$2, _obj$3, _obj$4;
|
|
6981
7027
|
|
|
6982
7028
|
var _vm = this;
|
|
@@ -7055,16 +7101,16 @@ var __vue_render__$t = function () {
|
|
|
7055
7101
|
})], 2) : _vm._e()]);
|
|
7056
7102
|
};
|
|
7057
7103
|
|
|
7058
|
-
var __vue_staticRenderFns__$
|
|
7104
|
+
var __vue_staticRenderFns__$v = [];
|
|
7059
7105
|
/* style */
|
|
7060
7106
|
|
|
7061
|
-
const __vue_inject_styles__$
|
|
7107
|
+
const __vue_inject_styles__$x = function (inject) {
|
|
7062
7108
|
if (!inject) return;
|
|
7063
|
-
inject("data-v-
|
|
7064
|
-
source: ".label-with-tooltip[data-v-
|
|
7109
|
+
inject("data-v-27e25f9e_0", {
|
|
7110
|
+
source: ".label-with-tooltip[data-v-27e25f9e]{display:flex;align-items:baseline}.prefix[data-v-27e25f9e]{font-weight:700;margin-right:.5rem;color:#525252}.align-items-center[data-v-27e25f9e]{align-items:center}",
|
|
7065
7111
|
map: undefined,
|
|
7066
7112
|
media: undefined
|
|
7067
|
-
}), inject("data-v-
|
|
7113
|
+
}), inject("data-v-27e25f9e_1", {
|
|
7068
7114
|
source: ".ns-text-input .bx--tooltip__label .bx--tooltip__trigger{margin-left:.25rem}",
|
|
7069
7115
|
map: undefined,
|
|
7070
7116
|
media: undefined
|
|
@@ -7073,23 +7119,23 @@ const __vue_inject_styles__$v = function (inject) {
|
|
|
7073
7119
|
/* scoped */
|
|
7074
7120
|
|
|
7075
7121
|
|
|
7076
|
-
const __vue_scope_id__$
|
|
7122
|
+
const __vue_scope_id__$x = "data-v-27e25f9e";
|
|
7077
7123
|
/* module identifier */
|
|
7078
7124
|
|
|
7079
|
-
const __vue_module_identifier__$
|
|
7125
|
+
const __vue_module_identifier__$x = undefined;
|
|
7080
7126
|
/* functional template */
|
|
7081
7127
|
|
|
7082
|
-
const __vue_is_functional_template__$
|
|
7128
|
+
const __vue_is_functional_template__$x = false;
|
|
7083
7129
|
/* style inject SSR */
|
|
7084
7130
|
|
|
7085
7131
|
/* style inject shadow dom */
|
|
7086
7132
|
|
|
7087
|
-
const __vue_component__$
|
|
7088
|
-
render: __vue_render__$
|
|
7089
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7090
|
-
}, __vue_inject_styles__$
|
|
7133
|
+
const __vue_component__$_ = /*#__PURE__*/normalizeComponent({
|
|
7134
|
+
render: __vue_render__$v,
|
|
7135
|
+
staticRenderFns: __vue_staticRenderFns__$v
|
|
7136
|
+
}, __vue_inject_styles__$x, __vue_script__$n, __vue_scope_id__$x, __vue_is_functional_template__$x, __vue_module_identifier__$x, false, createInjector, undefined, undefined);
|
|
7091
7137
|
|
|
7092
|
-
var NsTextInput = __vue_component__$
|
|
7138
|
+
var NsTextInput = __vue_component__$_;
|
|
7093
7139
|
|
|
7094
7140
|
// Unique ID creation requires a high quality random # generator. In node.js
|
|
7095
7141
|
// this is pretty straight-forward - we use the crypto API.
|
|
@@ -7267,6 +7313,10 @@ uuid.v4 = v4_1;
|
|
|
7267
7313
|
|
|
7268
7314
|
var uuid_1 = uuid;
|
|
7269
7315
|
|
|
7316
|
+
/*
|
|
7317
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
7318
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
7319
|
+
*/
|
|
7270
7320
|
var UtilService = {
|
|
7271
7321
|
name: "UtilService",
|
|
7272
7322
|
|
|
@@ -7816,7 +7866,7 @@ var script$m = {
|
|
|
7816
7866
|
const __vue_script__$m = script$m;
|
|
7817
7867
|
/* template */
|
|
7818
7868
|
|
|
7819
|
-
var __vue_render__$
|
|
7869
|
+
var __vue_render__$u = function () {
|
|
7820
7870
|
var _vm = this;
|
|
7821
7871
|
|
|
7822
7872
|
var _h = _vm.$createElement;
|
|
@@ -7911,13 +7961,13 @@ var __vue_render__$s = function () {
|
|
|
7911
7961
|
}, [_vm._v(_vm._s(_vm.equalLabel))])])], 1)]);
|
|
7912
7962
|
};
|
|
7913
7963
|
|
|
7914
|
-
var __vue_staticRenderFns__$
|
|
7964
|
+
var __vue_staticRenderFns__$u = [];
|
|
7915
7965
|
/* style */
|
|
7916
7966
|
|
|
7917
|
-
const __vue_inject_styles__$
|
|
7967
|
+
const __vue_inject_styles__$w = function (inject) {
|
|
7918
7968
|
if (!inject) return;
|
|
7919
|
-
inject("data-v-
|
|
7920
|
-
source: ".new-password-container[data-v-
|
|
7969
|
+
inject("data-v-462e7980_0", {
|
|
7970
|
+
source: ".new-password-container[data-v-462e7980]{margin-bottom:1rem}.new-password[data-v-462e7980]{margin-bottom:.25rem}.confirm-password[data-v-462e7980]{margin-bottom:.25rem}.password-meter[data-v-462e7980]{display:flex}@media (min-width:672px){.password-meter[data-v-462e7980]{max-width:38rem}}.requirement[data-v-462e7980]{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-462e7980]{background-color:#fff}.requirement[data-v-462e7980]:first-child{margin-left:0}.requirement-ok[data-v-462e7980]{color:#fff;background-color:#198038}.requirement-disabled[data-v-462e7980]{color:#c6c6c6;background-color:#f4f4f4}",
|
|
7921
7971
|
map: undefined,
|
|
7922
7972
|
media: undefined
|
|
7923
7973
|
});
|
|
@@ -7925,23 +7975,23 @@ const __vue_inject_styles__$u = function (inject) {
|
|
|
7925
7975
|
/* scoped */
|
|
7926
7976
|
|
|
7927
7977
|
|
|
7928
|
-
const __vue_scope_id__$
|
|
7978
|
+
const __vue_scope_id__$w = "data-v-462e7980";
|
|
7929
7979
|
/* module identifier */
|
|
7930
7980
|
|
|
7931
|
-
const __vue_module_identifier__$
|
|
7981
|
+
const __vue_module_identifier__$w = undefined;
|
|
7932
7982
|
/* functional template */
|
|
7933
7983
|
|
|
7934
|
-
const __vue_is_functional_template__$
|
|
7984
|
+
const __vue_is_functional_template__$w = false;
|
|
7935
7985
|
/* style inject SSR */
|
|
7936
7986
|
|
|
7937
7987
|
/* style inject shadow dom */
|
|
7938
7988
|
|
|
7939
|
-
const __vue_component__$
|
|
7940
|
-
render: __vue_render__$
|
|
7941
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
7942
|
-
}, __vue_inject_styles__$
|
|
7989
|
+
const __vue_component__$Y = /*#__PURE__*/normalizeComponent({
|
|
7990
|
+
render: __vue_render__$u,
|
|
7991
|
+
staticRenderFns: __vue_staticRenderFns__$u
|
|
7992
|
+
}, __vue_inject_styles__$w, __vue_script__$m, __vue_scope_id__$w, __vue_is_functional_template__$w, __vue_module_identifier__$w, false, createInjector, undefined, undefined);
|
|
7943
7993
|
|
|
7944
|
-
var __vue_component__$
|
|
7994
|
+
var __vue_component__$Z = __vue_component__$Y;
|
|
7945
7995
|
|
|
7946
7996
|
//
|
|
7947
7997
|
var script$l = {
|
|
@@ -7991,7 +8041,7 @@ var script$l = {
|
|
|
7991
8041
|
const __vue_script__$l = script$l;
|
|
7992
8042
|
/* template */
|
|
7993
8043
|
|
|
7994
|
-
var __vue_render__$
|
|
8044
|
+
var __vue_render__$t = function () {
|
|
7995
8045
|
var _obj, _obj$1;
|
|
7996
8046
|
|
|
7997
8047
|
var _vm = this;
|
|
@@ -8107,13 +8157,13 @@ var __vue_render__$r = function () {
|
|
|
8107
8157
|
})])]);
|
|
8108
8158
|
};
|
|
8109
8159
|
|
|
8110
|
-
var __vue_staticRenderFns__$
|
|
8160
|
+
var __vue_staticRenderFns__$t = [];
|
|
8111
8161
|
/* style */
|
|
8112
8162
|
|
|
8113
|
-
const __vue_inject_styles__$
|
|
8163
|
+
const __vue_inject_styles__$v = function (inject) {
|
|
8114
8164
|
if (!inject) return;
|
|
8115
|
-
inject("data-v-
|
|
8116
|
-
source: ".ns-icon-menu[data-v-
|
|
8165
|
+
inject("data-v-137b2ab6_0", {
|
|
8166
|
+
source: ".ns-icon-menu[data-v-137b2ab6]{display:inline-flex}",
|
|
8117
8167
|
map: undefined,
|
|
8118
8168
|
media: undefined
|
|
8119
8169
|
});
|
|
@@ -8121,23 +8171,23 @@ const __vue_inject_styles__$t = function (inject) {
|
|
|
8121
8171
|
/* scoped */
|
|
8122
8172
|
|
|
8123
8173
|
|
|
8124
|
-
const __vue_scope_id__$
|
|
8174
|
+
const __vue_scope_id__$v = "data-v-137b2ab6";
|
|
8125
8175
|
/* module identifier */
|
|
8126
8176
|
|
|
8127
|
-
const __vue_module_identifier__$
|
|
8177
|
+
const __vue_module_identifier__$v = undefined;
|
|
8128
8178
|
/* functional template */
|
|
8129
8179
|
|
|
8130
|
-
const __vue_is_functional_template__$
|
|
8180
|
+
const __vue_is_functional_template__$v = false;
|
|
8131
8181
|
/* style inject SSR */
|
|
8132
8182
|
|
|
8133
8183
|
/* style inject shadow dom */
|
|
8134
8184
|
|
|
8135
|
-
const __vue_component__$
|
|
8136
|
-
render: __vue_render__$
|
|
8137
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
8138
|
-
}, __vue_inject_styles__$
|
|
8185
|
+
const __vue_component__$W = /*#__PURE__*/normalizeComponent({
|
|
8186
|
+
render: __vue_render__$t,
|
|
8187
|
+
staticRenderFns: __vue_staticRenderFns__$t
|
|
8188
|
+
}, __vue_inject_styles__$v, __vue_script__$l, __vue_scope_id__$v, __vue_is_functional_template__$v, __vue_module_identifier__$v, false, createInjector, undefined, undefined);
|
|
8139
8189
|
|
|
8140
|
-
var __vue_component__$
|
|
8190
|
+
var __vue_component__$X = __vue_component__$W;
|
|
8141
8191
|
|
|
8142
8192
|
//
|
|
8143
8193
|
var script$k = {
|
|
@@ -8178,7 +8228,7 @@ var script$k = {
|
|
|
8178
8228
|
const __vue_script__$k = script$k;
|
|
8179
8229
|
/* template */
|
|
8180
8230
|
|
|
8181
|
-
var __vue_render__$
|
|
8231
|
+
var __vue_render__$s = function () {
|
|
8182
8232
|
var _vm = this;
|
|
8183
8233
|
|
|
8184
8234
|
var _h = _vm.$createElement;
|
|
@@ -8201,13 +8251,13 @@ var __vue_render__$q = function () {
|
|
|
8201
8251
|
})], 1);
|
|
8202
8252
|
};
|
|
8203
8253
|
|
|
8204
|
-
var __vue_staticRenderFns__$
|
|
8254
|
+
var __vue_staticRenderFns__$s = [];
|
|
8205
8255
|
/* style */
|
|
8206
8256
|
|
|
8207
|
-
const __vue_inject_styles__$
|
|
8257
|
+
const __vue_inject_styles__$u = function (inject) {
|
|
8208
8258
|
if (!inject) return;
|
|
8209
|
-
inject("data-v-
|
|
8210
|
-
source: ".label[data-v-
|
|
8259
|
+
inject("data-v-4ca10dac_0", {
|
|
8260
|
+
source: ".label[data-v-4ca10dac]{font-weight:700;margin-right:.5rem}.mg-bottom-sm[data-v-4ca10dac]{margin-bottom:.5rem!important}",
|
|
8211
8261
|
map: undefined,
|
|
8212
8262
|
media: undefined
|
|
8213
8263
|
});
|
|
@@ -8215,23 +8265,23 @@ const __vue_inject_styles__$s = function (inject) {
|
|
|
8215
8265
|
/* scoped */
|
|
8216
8266
|
|
|
8217
8267
|
|
|
8218
|
-
const __vue_scope_id__$
|
|
8268
|
+
const __vue_scope_id__$u = "data-v-4ca10dac";
|
|
8219
8269
|
/* module identifier */
|
|
8220
8270
|
|
|
8221
|
-
const __vue_module_identifier__$
|
|
8271
|
+
const __vue_module_identifier__$u = undefined;
|
|
8222
8272
|
/* functional template */
|
|
8223
8273
|
|
|
8224
|
-
const __vue_is_functional_template__$
|
|
8274
|
+
const __vue_is_functional_template__$u = false;
|
|
8225
8275
|
/* style inject SSR */
|
|
8226
8276
|
|
|
8227
8277
|
/* style inject shadow dom */
|
|
8228
8278
|
|
|
8229
|
-
const __vue_component__$
|
|
8230
|
-
render: __vue_render__$
|
|
8231
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
8232
|
-
}, __vue_inject_styles__$
|
|
8279
|
+
const __vue_component__$U = /*#__PURE__*/normalizeComponent({
|
|
8280
|
+
render: __vue_render__$s,
|
|
8281
|
+
staticRenderFns: __vue_staticRenderFns__$s
|
|
8282
|
+
}, __vue_inject_styles__$u, __vue_script__$k, __vue_scope_id__$u, __vue_is_functional_template__$u, __vue_module_identifier__$u, false, createInjector, undefined, undefined);
|
|
8233
8283
|
|
|
8234
|
-
var __vue_component__$
|
|
8284
|
+
var __vue_component__$V = __vue_component__$U;
|
|
8235
8285
|
|
|
8236
8286
|
//
|
|
8237
8287
|
var script$j = {
|
|
@@ -8297,7 +8347,7 @@ var script$j = {
|
|
|
8297
8347
|
const __vue_script__$j = script$j;
|
|
8298
8348
|
/* template */
|
|
8299
8349
|
|
|
8300
|
-
var __vue_render__$
|
|
8350
|
+
var __vue_render__$r = function () {
|
|
8301
8351
|
var _obj, _obj$1, _obj$2, _obj$3;
|
|
8302
8352
|
|
|
8303
8353
|
var _vm = this;
|
|
@@ -8431,31 +8481,31 @@ var __vue_render__$p = function () {
|
|
|
8431
8481
|
})], 1)]);
|
|
8432
8482
|
};
|
|
8433
8483
|
|
|
8434
|
-
var __vue_staticRenderFns__$
|
|
8484
|
+
var __vue_staticRenderFns__$r = [];
|
|
8435
8485
|
/* style */
|
|
8436
8486
|
|
|
8437
|
-
const __vue_inject_styles__$
|
|
8487
|
+
const __vue_inject_styles__$t = undefined;
|
|
8438
8488
|
/* scoped */
|
|
8439
8489
|
|
|
8440
|
-
const __vue_scope_id__$
|
|
8490
|
+
const __vue_scope_id__$t = undefined;
|
|
8441
8491
|
/* module identifier */
|
|
8442
8492
|
|
|
8443
|
-
const __vue_module_identifier__$
|
|
8493
|
+
const __vue_module_identifier__$t = undefined;
|
|
8444
8494
|
/* functional template */
|
|
8445
8495
|
|
|
8446
|
-
const __vue_is_functional_template__$
|
|
8496
|
+
const __vue_is_functional_template__$t = false;
|
|
8447
8497
|
/* style inject */
|
|
8448
8498
|
|
|
8449
8499
|
/* style inject SSR */
|
|
8450
8500
|
|
|
8451
8501
|
/* style inject shadow dom */
|
|
8452
8502
|
|
|
8453
|
-
const __vue_component__$
|
|
8454
|
-
render: __vue_render__$
|
|
8455
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
8456
|
-
}, __vue_inject_styles__$
|
|
8503
|
+
const __vue_component__$T = /*#__PURE__*/normalizeComponent({
|
|
8504
|
+
render: __vue_render__$r,
|
|
8505
|
+
staticRenderFns: __vue_staticRenderFns__$r
|
|
8506
|
+
}, __vue_inject_styles__$t, __vue_script__$j, __vue_scope_id__$t, __vue_is_functional_template__$t, __vue_module_identifier__$t, false, undefined, undefined, undefined);
|
|
8457
8507
|
|
|
8458
|
-
var NsModal = __vue_component__$
|
|
8508
|
+
var NsModal = __vue_component__$T;
|
|
8459
8509
|
|
|
8460
8510
|
//
|
|
8461
8511
|
var script$i = {
|
|
@@ -8510,6 +8560,10 @@ var script$i = {
|
|
|
8510
8560
|
errorDescription: {
|
|
8511
8561
|
type: String,
|
|
8512
8562
|
default: ""
|
|
8563
|
+
},
|
|
8564
|
+
loading: {
|
|
8565
|
+
type: Boolean,
|
|
8566
|
+
default: false
|
|
8513
8567
|
}
|
|
8514
8568
|
},
|
|
8515
8569
|
|
|
@@ -8557,7 +8611,7 @@ var script$i = {
|
|
|
8557
8611
|
const __vue_script__$i = script$i;
|
|
8558
8612
|
/* template */
|
|
8559
8613
|
|
|
8560
|
-
var __vue_render__$
|
|
8614
|
+
var __vue_render__$q = function () {
|
|
8561
8615
|
var _vm = this;
|
|
8562
8616
|
|
|
8563
8617
|
var _h = _vm.$createElement;
|
|
@@ -8569,7 +8623,7 @@ var __vue_render__$o = function () {
|
|
|
8569
8623
|
"kind": "danger",
|
|
8570
8624
|
"size": "default",
|
|
8571
8625
|
"visible": _vm.isShown,
|
|
8572
|
-
"primary-button-disabled": _vm.name !== _vm.userInput
|
|
8626
|
+
"primary-button-disabled": _vm.name !== _vm.userInput || _vm.loading
|
|
8573
8627
|
},
|
|
8574
8628
|
on: {
|
|
8575
8629
|
"modal-hidden": _vm.onModalHidden,
|
|
@@ -8625,13 +8679,13 @@ var __vue_render__$o = function () {
|
|
|
8625
8679
|
}, [_vm._v(_vm._s(_vm.deleteLabel))])], 2);
|
|
8626
8680
|
};
|
|
8627
8681
|
|
|
8628
|
-
var __vue_staticRenderFns__$
|
|
8682
|
+
var __vue_staticRenderFns__$q = [];
|
|
8629
8683
|
/* style */
|
|
8630
8684
|
|
|
8631
|
-
const __vue_inject_styles__$
|
|
8685
|
+
const __vue_inject_styles__$s = function (inject) {
|
|
8632
8686
|
if (!inject) return;
|
|
8633
|
-
inject("data-v-
|
|
8634
|
-
source: ".type-to-confirm[data-v-
|
|
8687
|
+
inject("data-v-3b643702_0", {
|
|
8688
|
+
source: ".type-to-confirm[data-v-3b643702]{margin-top:2rem}",
|
|
8635
8689
|
map: undefined,
|
|
8636
8690
|
media: undefined
|
|
8637
8691
|
});
|
|
@@ -8639,24 +8693,28 @@ const __vue_inject_styles__$q = function (inject) {
|
|
|
8639
8693
|
/* scoped */
|
|
8640
8694
|
|
|
8641
8695
|
|
|
8642
|
-
const __vue_scope_id__$
|
|
8696
|
+
const __vue_scope_id__$s = "data-v-3b643702";
|
|
8643
8697
|
/* module identifier */
|
|
8644
8698
|
|
|
8645
|
-
const __vue_module_identifier__$
|
|
8699
|
+
const __vue_module_identifier__$s = undefined;
|
|
8646
8700
|
/* functional template */
|
|
8647
8701
|
|
|
8648
|
-
const __vue_is_functional_template__$
|
|
8702
|
+
const __vue_is_functional_template__$s = false;
|
|
8649
8703
|
/* style inject SSR */
|
|
8650
8704
|
|
|
8651
8705
|
/* style inject shadow dom */
|
|
8652
8706
|
|
|
8653
|
-
const __vue_component__$
|
|
8654
|
-
render: __vue_render__$
|
|
8655
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
8656
|
-
}, __vue_inject_styles__$
|
|
8707
|
+
const __vue_component__$R = /*#__PURE__*/normalizeComponent({
|
|
8708
|
+
render: __vue_render__$q,
|
|
8709
|
+
staticRenderFns: __vue_staticRenderFns__$q
|
|
8710
|
+
}, __vue_inject_styles__$s, __vue_script__$i, __vue_scope_id__$s, __vue_is_functional_template__$s, __vue_module_identifier__$s, false, createInjector, undefined, undefined);
|
|
8657
8711
|
|
|
8658
|
-
var __vue_component__$
|
|
8712
|
+
var __vue_component__$S = __vue_component__$R;
|
|
8659
8713
|
|
|
8714
|
+
/*
|
|
8715
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
8716
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
8717
|
+
*/
|
|
8660
8718
|
var IconService = {
|
|
8661
8719
|
name: "IconService",
|
|
8662
8720
|
|
|
@@ -8844,7 +8902,15 @@ var IconService = {
|
|
|
8844
8902
|
CloseFilled32,
|
|
8845
8903
|
Badge16,
|
|
8846
8904
|
Badge20,
|
|
8847
|
-
Badge32
|
|
8905
|
+
Badge32,
|
|
8906
|
+
FolderShared16,
|
|
8907
|
+
// samba file server, file shares
|
|
8908
|
+
FolderShared20,
|
|
8909
|
+
FolderShared32,
|
|
8910
|
+
MailAll16,
|
|
8911
|
+
// mail queue
|
|
8912
|
+
MailAll20,
|
|
8913
|
+
MailAll32
|
|
8848
8914
|
};
|
|
8849
8915
|
}
|
|
8850
8916
|
|
|
@@ -8886,7 +8952,7 @@ var script$h = {
|
|
|
8886
8952
|
const __vue_script__$h = script$h;
|
|
8887
8953
|
/* template */
|
|
8888
8954
|
|
|
8889
|
-
var __vue_render__$
|
|
8955
|
+
var __vue_render__$p = function () {
|
|
8890
8956
|
var _obj, _obj$1;
|
|
8891
8957
|
|
|
8892
8958
|
var _vm = this;
|
|
@@ -8986,31 +9052,31 @@ var __vue_render__$n = function () {
|
|
|
8986
9052
|
})])]);
|
|
8987
9053
|
};
|
|
8988
9054
|
|
|
8989
|
-
var __vue_staticRenderFns__$
|
|
9055
|
+
var __vue_staticRenderFns__$p = [];
|
|
8990
9056
|
/* style */
|
|
8991
9057
|
|
|
8992
|
-
const __vue_inject_styles__$
|
|
9058
|
+
const __vue_inject_styles__$r = undefined;
|
|
8993
9059
|
/* scoped */
|
|
8994
9060
|
|
|
8995
|
-
const __vue_scope_id__$
|
|
9061
|
+
const __vue_scope_id__$r = "data-v-1818ed86";
|
|
8996
9062
|
/* module identifier */
|
|
8997
9063
|
|
|
8998
|
-
const __vue_module_identifier__$
|
|
9064
|
+
const __vue_module_identifier__$r = undefined;
|
|
8999
9065
|
/* functional template */
|
|
9000
9066
|
|
|
9001
|
-
const __vue_is_functional_template__$
|
|
9067
|
+
const __vue_is_functional_template__$r = false;
|
|
9002
9068
|
/* style inject */
|
|
9003
9069
|
|
|
9004
9070
|
/* style inject SSR */
|
|
9005
9071
|
|
|
9006
9072
|
/* style inject shadow dom */
|
|
9007
9073
|
|
|
9008
|
-
const __vue_component__$
|
|
9009
|
-
render: __vue_render__$
|
|
9010
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9011
|
-
}, __vue_inject_styles__$
|
|
9074
|
+
const __vue_component__$P = /*#__PURE__*/normalizeComponent({
|
|
9075
|
+
render: __vue_render__$p,
|
|
9076
|
+
staticRenderFns: __vue_staticRenderFns__$p
|
|
9077
|
+
}, __vue_inject_styles__$r, __vue_script__$h, __vue_scope_id__$r, __vue_is_functional_template__$r, __vue_module_identifier__$r, false, undefined, undefined, undefined);
|
|
9012
9078
|
|
|
9013
|
-
var __vue_component__$
|
|
9079
|
+
var __vue_component__$Q = __vue_component__$P;
|
|
9014
9080
|
|
|
9015
9081
|
//
|
|
9016
9082
|
var script$g = {
|
|
@@ -9052,7 +9118,7 @@ var script$g = {
|
|
|
9052
9118
|
const __vue_script__$g = script$g;
|
|
9053
9119
|
/* template */
|
|
9054
9120
|
|
|
9055
|
-
var __vue_render__$
|
|
9121
|
+
var __vue_render__$o = function () {
|
|
9056
9122
|
var _vm = this;
|
|
9057
9123
|
|
|
9058
9124
|
var _h = _vm.$createElement;
|
|
@@ -9106,13 +9172,13 @@ var __vue_render__$m = function () {
|
|
|
9106
9172
|
}, [_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("-")])])])]);
|
|
9107
9173
|
};
|
|
9108
9174
|
|
|
9109
|
-
var __vue_staticRenderFns__$
|
|
9175
|
+
var __vue_staticRenderFns__$o = [];
|
|
9110
9176
|
/* style */
|
|
9111
9177
|
|
|
9112
|
-
const __vue_inject_styles__$
|
|
9178
|
+
const __vue_inject_styles__$q = function (inject) {
|
|
9113
9179
|
if (!inject) return;
|
|
9114
|
-
inject("data-v-
|
|
9115
|
-
source: ".ns-backup-card-details[data-v-
|
|
9180
|
+
inject("data-v-5c5848fc_0", {
|
|
9181
|
+
source: ".ns-backup-card-details[data-v-5c5848fc]{display:contents}.tr[data-v-5c5848fc]{display:table-row}.td[data-v-5c5848fc]{display:table-cell}.label[data-v-5c5848fc]{padding-right:.75rem;font-weight:700;text-align:right;padding-bottom:.5rem}",
|
|
9116
9182
|
map: undefined,
|
|
9117
9183
|
media: undefined
|
|
9118
9184
|
});
|
|
@@ -9120,23 +9186,23 @@ const __vue_inject_styles__$o = function (inject) {
|
|
|
9120
9186
|
/* scoped */
|
|
9121
9187
|
|
|
9122
9188
|
|
|
9123
|
-
const __vue_scope_id__$
|
|
9189
|
+
const __vue_scope_id__$q = "data-v-5c5848fc";
|
|
9124
9190
|
/* module identifier */
|
|
9125
9191
|
|
|
9126
|
-
const __vue_module_identifier__$
|
|
9192
|
+
const __vue_module_identifier__$q = undefined;
|
|
9127
9193
|
/* functional template */
|
|
9128
9194
|
|
|
9129
|
-
const __vue_is_functional_template__$
|
|
9195
|
+
const __vue_is_functional_template__$q = false;
|
|
9130
9196
|
/* style inject SSR */
|
|
9131
9197
|
|
|
9132
9198
|
/* style inject shadow dom */
|
|
9133
9199
|
|
|
9134
|
-
const __vue_component__$
|
|
9135
|
-
render: __vue_render__$
|
|
9136
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9137
|
-
}, __vue_inject_styles__$
|
|
9200
|
+
const __vue_component__$O = /*#__PURE__*/normalizeComponent({
|
|
9201
|
+
render: __vue_render__$o,
|
|
9202
|
+
staticRenderFns: __vue_staticRenderFns__$o
|
|
9203
|
+
}, __vue_inject_styles__$q, __vue_script__$g, __vue_scope_id__$q, __vue_is_functional_template__$q, __vue_module_identifier__$q, false, createInjector, undefined, undefined);
|
|
9138
9204
|
|
|
9139
|
-
var NsBackupCardDetails = __vue_component__$
|
|
9205
|
+
var NsBackupCardDetails = __vue_component__$O;
|
|
9140
9206
|
|
|
9141
9207
|
//
|
|
9142
9208
|
var script$f = {
|
|
@@ -9283,7 +9349,7 @@ var script$f = {
|
|
|
9283
9349
|
const __vue_script__$f = script$f;
|
|
9284
9350
|
/* template */
|
|
9285
9351
|
|
|
9286
|
-
var __vue_render__$
|
|
9352
|
+
var __vue_render__$n = function () {
|
|
9287
9353
|
var _vm = this;
|
|
9288
9354
|
|
|
9289
9355
|
var _h = _vm.$createElement;
|
|
@@ -9399,16 +9465,16 @@ var __vue_render__$l = function () {
|
|
|
9399
9465
|
}, [_vm._v(_vm._s(_vm.goToBackupLabel) + "\n ")])], 1)])], 2);
|
|
9400
9466
|
};
|
|
9401
9467
|
|
|
9402
|
-
var __vue_staticRenderFns__$
|
|
9468
|
+
var __vue_staticRenderFns__$n = [];
|
|
9403
9469
|
/* style */
|
|
9404
9470
|
|
|
9405
|
-
const __vue_inject_styles__$
|
|
9471
|
+
const __vue_inject_styles__$p = function (inject) {
|
|
9406
9472
|
if (!inject) return;
|
|
9407
|
-
inject("data-v-
|
|
9408
|
-
source: ".ns-backup-card[data-v-
|
|
9473
|
+
inject("data-v-6f55bf84_0", {
|
|
9474
|
+
source: ".ns-backup-card[data-v-6f55bf84]{display:flex;flex-direction:column;justify-content:center;min-height:7rem}.backup[data-v-6f55bf84]{margin-bottom:1rem}.backup[data-v-6f55bf84]:last-child{margin-bottom:0}.row[data-v-6f55bf84]{display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}.title[data-v-6f55bf84]{margin-left:.25rem;margin-right:.25rem;margin-bottom:.5rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table-wrapper[data-v-6f55bf84]{display:flex;justify-content:center;margin-bottom:.5rem}.table[data-v-6f55bf84]{display:table}.tr[data-v-6f55bf84]{display:table-row}.td[data-v-6f55bf84]{display:table-cell}.label[data-v-6f55bf84]{padding-right:.75rem;font-weight:700;text-align:right;padding-bottom:.5rem}.status[data-v-6f55bf84]{font-weight:700}.backup-status-icon[data-v-6f55bf84]{margin-right:.25rem}",
|
|
9409
9475
|
map: undefined,
|
|
9410
9476
|
media: undefined
|
|
9411
|
-
}), inject("data-v-
|
|
9477
|
+
}), inject("data-v-6f55bf84_1", {
|
|
9412
9478
|
source: ".ns-backup-card .bx--accordion--start .bx--accordion__content{margin-left:0}",
|
|
9413
9479
|
map: undefined,
|
|
9414
9480
|
media: undefined
|
|
@@ -9417,23 +9483,23 @@ const __vue_inject_styles__$n = function (inject) {
|
|
|
9417
9483
|
/* scoped */
|
|
9418
9484
|
|
|
9419
9485
|
|
|
9420
|
-
const __vue_scope_id__$
|
|
9486
|
+
const __vue_scope_id__$p = "data-v-6f55bf84";
|
|
9421
9487
|
/* module identifier */
|
|
9422
9488
|
|
|
9423
|
-
const __vue_module_identifier__$
|
|
9489
|
+
const __vue_module_identifier__$p = undefined;
|
|
9424
9490
|
/* functional template */
|
|
9425
9491
|
|
|
9426
|
-
const __vue_is_functional_template__$
|
|
9492
|
+
const __vue_is_functional_template__$p = false;
|
|
9427
9493
|
/* style inject SSR */
|
|
9428
9494
|
|
|
9429
9495
|
/* style inject shadow dom */
|
|
9430
9496
|
|
|
9431
|
-
const __vue_component__$
|
|
9432
|
-
render: __vue_render__$
|
|
9433
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9434
|
-
}, __vue_inject_styles__$
|
|
9497
|
+
const __vue_component__$M = /*#__PURE__*/normalizeComponent({
|
|
9498
|
+
render: __vue_render__$n,
|
|
9499
|
+
staticRenderFns: __vue_staticRenderFns__$n
|
|
9500
|
+
}, __vue_inject_styles__$p, __vue_script__$f, __vue_scope_id__$p, __vue_is_functional_template__$p, __vue_module_identifier__$p, false, createInjector, undefined, undefined);
|
|
9435
9501
|
|
|
9436
|
-
var __vue_component__$
|
|
9502
|
+
var __vue_component__$N = __vue_component__$M;
|
|
9437
9503
|
|
|
9438
9504
|
//
|
|
9439
9505
|
var script$e = {
|
|
@@ -9483,7 +9549,7 @@ var script$e = {
|
|
|
9483
9549
|
const __vue_script__$e = script$e;
|
|
9484
9550
|
/* template */
|
|
9485
9551
|
|
|
9486
|
-
var __vue_render__$
|
|
9552
|
+
var __vue_render__$m = function () {
|
|
9487
9553
|
var _obj, _obj$1;
|
|
9488
9554
|
|
|
9489
9555
|
var _vm = this;
|
|
@@ -9625,31 +9691,31 @@ var __vue_render__$k = function () {
|
|
|
9625
9691
|
})], 1)]);
|
|
9626
9692
|
};
|
|
9627
9693
|
|
|
9628
|
-
var __vue_staticRenderFns__$
|
|
9694
|
+
var __vue_staticRenderFns__$m = [];
|
|
9629
9695
|
/* style */
|
|
9630
9696
|
|
|
9631
|
-
const __vue_inject_styles__$
|
|
9697
|
+
const __vue_inject_styles__$o = undefined;
|
|
9632
9698
|
/* scoped */
|
|
9633
9699
|
|
|
9634
|
-
const __vue_scope_id__$
|
|
9700
|
+
const __vue_scope_id__$o = undefined;
|
|
9635
9701
|
/* module identifier */
|
|
9636
9702
|
|
|
9637
|
-
const __vue_module_identifier__$
|
|
9703
|
+
const __vue_module_identifier__$o = undefined;
|
|
9638
9704
|
/* functional template */
|
|
9639
9705
|
|
|
9640
|
-
const __vue_is_functional_template__$
|
|
9706
|
+
const __vue_is_functional_template__$o = false;
|
|
9641
9707
|
/* style inject */
|
|
9642
9708
|
|
|
9643
9709
|
/* style inject SSR */
|
|
9644
9710
|
|
|
9645
9711
|
/* style inject shadow dom */
|
|
9646
9712
|
|
|
9647
|
-
const __vue_component__$
|
|
9648
|
-
render: __vue_render__$
|
|
9649
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9650
|
-
}, __vue_inject_styles__$
|
|
9713
|
+
const __vue_component__$K = /*#__PURE__*/normalizeComponent({
|
|
9714
|
+
render: __vue_render__$m,
|
|
9715
|
+
staticRenderFns: __vue_staticRenderFns__$m
|
|
9716
|
+
}, __vue_inject_styles__$o, __vue_script__$e, __vue_scope_id__$o, __vue_is_functional_template__$o, __vue_module_identifier__$o, false, undefined, undefined, undefined);
|
|
9651
9717
|
|
|
9652
|
-
var __vue_component__$
|
|
9718
|
+
var __vue_component__$L = __vue_component__$K;
|
|
9653
9719
|
|
|
9654
9720
|
//
|
|
9655
9721
|
var script$d = {
|
|
@@ -9678,7 +9744,7 @@ var script$d = {
|
|
|
9678
9744
|
const __vue_script__$d = script$d;
|
|
9679
9745
|
/* template */
|
|
9680
9746
|
|
|
9681
|
-
var __vue_render__$
|
|
9747
|
+
var __vue_render__$l = function () {
|
|
9682
9748
|
var _vm = this;
|
|
9683
9749
|
|
|
9684
9750
|
var _h = _vm.$createElement;
|
|
@@ -9698,13 +9764,13 @@ var __vue_render__$j = function () {
|
|
|
9698
9764
|
}, [_vm._t("icon")], 2) : _vm._e(), _vm._v(" "), _c('span', [_vm._v(_vm._s(_vm.label))])]);
|
|
9699
9765
|
};
|
|
9700
9766
|
|
|
9701
|
-
var __vue_staticRenderFns__$
|
|
9767
|
+
var __vue_staticRenderFns__$l = [];
|
|
9702
9768
|
/* style */
|
|
9703
9769
|
|
|
9704
|
-
const __vue_inject_styles__$
|
|
9770
|
+
const __vue_inject_styles__$n = function (inject) {
|
|
9705
9771
|
if (!inject) return;
|
|
9706
|
-
inject("data-v-
|
|
9707
|
-
source: ".ns-menu-item[data-v-
|
|
9772
|
+
inject("data-v-2e21de12_0", {
|
|
9773
|
+
source: ".ns-menu-item[data-v-2e21de12]{display:flex;align-items:center}.icon[data-v-2e21de12]{margin-right:.5rem}",
|
|
9708
9774
|
map: undefined,
|
|
9709
9775
|
media: undefined
|
|
9710
9776
|
});
|
|
@@ -9712,23 +9778,23 @@ const __vue_inject_styles__$l = function (inject) {
|
|
|
9712
9778
|
/* scoped */
|
|
9713
9779
|
|
|
9714
9780
|
|
|
9715
|
-
const __vue_scope_id__$
|
|
9781
|
+
const __vue_scope_id__$n = "data-v-2e21de12";
|
|
9716
9782
|
/* module identifier */
|
|
9717
9783
|
|
|
9718
|
-
const __vue_module_identifier__$
|
|
9784
|
+
const __vue_module_identifier__$n = undefined;
|
|
9719
9785
|
/* functional template */
|
|
9720
9786
|
|
|
9721
|
-
const __vue_is_functional_template__$
|
|
9787
|
+
const __vue_is_functional_template__$n = false;
|
|
9722
9788
|
/* style inject SSR */
|
|
9723
9789
|
|
|
9724
9790
|
/* style inject shadow dom */
|
|
9725
9791
|
|
|
9726
|
-
const __vue_component__$
|
|
9727
|
-
render: __vue_render__$
|
|
9728
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9729
|
-
}, __vue_inject_styles__$
|
|
9792
|
+
const __vue_component__$I = /*#__PURE__*/normalizeComponent({
|
|
9793
|
+
render: __vue_render__$l,
|
|
9794
|
+
staticRenderFns: __vue_staticRenderFns__$l
|
|
9795
|
+
}, __vue_inject_styles__$n, __vue_script__$d, __vue_scope_id__$n, __vue_is_functional_template__$n, __vue_module_identifier__$n, false, createInjector, undefined, undefined);
|
|
9730
9796
|
|
|
9731
|
-
var __vue_component__$
|
|
9797
|
+
var __vue_component__$J = __vue_component__$I;
|
|
9732
9798
|
|
|
9733
9799
|
//
|
|
9734
9800
|
var script$c = {
|
|
@@ -9742,7 +9808,7 @@ var script$c = {
|
|
|
9742
9808
|
const __vue_script__$c = script$c;
|
|
9743
9809
|
/* template */
|
|
9744
9810
|
|
|
9745
|
-
var __vue_render__$
|
|
9811
|
+
var __vue_render__$k = function () {
|
|
9746
9812
|
var _vm = this;
|
|
9747
9813
|
|
|
9748
9814
|
var _h = _vm.$createElement;
|
|
@@ -9752,31 +9818,31 @@ var __vue_render__$i = function () {
|
|
|
9752
9818
|
return _c('cv-side-nav-divider');
|
|
9753
9819
|
};
|
|
9754
9820
|
|
|
9755
|
-
var __vue_staticRenderFns__$
|
|
9821
|
+
var __vue_staticRenderFns__$k = [];
|
|
9756
9822
|
/* style */
|
|
9757
9823
|
|
|
9758
|
-
const __vue_inject_styles__$
|
|
9824
|
+
const __vue_inject_styles__$m = undefined;
|
|
9759
9825
|
/* scoped */
|
|
9760
9826
|
|
|
9761
|
-
const __vue_scope_id__$
|
|
9827
|
+
const __vue_scope_id__$m = "data-v-25fe7aa1";
|
|
9762
9828
|
/* module identifier */
|
|
9763
9829
|
|
|
9764
|
-
const __vue_module_identifier__$
|
|
9830
|
+
const __vue_module_identifier__$m = undefined;
|
|
9765
9831
|
/* functional template */
|
|
9766
9832
|
|
|
9767
|
-
const __vue_is_functional_template__$
|
|
9833
|
+
const __vue_is_functional_template__$m = false;
|
|
9768
9834
|
/* style inject */
|
|
9769
9835
|
|
|
9770
9836
|
/* style inject SSR */
|
|
9771
9837
|
|
|
9772
9838
|
/* style inject shadow dom */
|
|
9773
9839
|
|
|
9774
|
-
const __vue_component__$
|
|
9775
|
-
render: __vue_render__$
|
|
9776
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9777
|
-
}, __vue_inject_styles__$
|
|
9840
|
+
const __vue_component__$G = /*#__PURE__*/normalizeComponent({
|
|
9841
|
+
render: __vue_render__$k,
|
|
9842
|
+
staticRenderFns: __vue_staticRenderFns__$k
|
|
9843
|
+
}, __vue_inject_styles__$m, __vue_script__$c, __vue_scope_id__$m, __vue_is_functional_template__$m, __vue_module_identifier__$m, false, undefined, undefined, undefined);
|
|
9778
9844
|
|
|
9779
|
-
var __vue_component__$
|
|
9845
|
+
var __vue_component__$H = __vue_component__$G;
|
|
9780
9846
|
|
|
9781
9847
|
//
|
|
9782
9848
|
var script$b = {
|
|
@@ -9901,7 +9967,7 @@ var script$b = {
|
|
|
9901
9967
|
const __vue_script__$b = script$b;
|
|
9902
9968
|
/* template */
|
|
9903
9969
|
|
|
9904
|
-
var __vue_render__$
|
|
9970
|
+
var __vue_render__$j = function () {
|
|
9905
9971
|
var _vm = this;
|
|
9906
9972
|
|
|
9907
9973
|
var _h = _vm.$createElement;
|
|
@@ -9929,31 +9995,31 @@ var __vue_render__$h = function () {
|
|
|
9929
9995
|
}, [_vm._v("\n " + _vm._s(_vm.buttonLabel) + "\n ")])], 1)], 2);
|
|
9930
9996
|
};
|
|
9931
9997
|
|
|
9932
|
-
var __vue_staticRenderFns__$
|
|
9998
|
+
var __vue_staticRenderFns__$j = [];
|
|
9933
9999
|
/* style */
|
|
9934
10000
|
|
|
9935
|
-
const __vue_inject_styles__$
|
|
10001
|
+
const __vue_inject_styles__$l = undefined;
|
|
9936
10002
|
/* scoped */
|
|
9937
10003
|
|
|
9938
|
-
const __vue_scope_id__$
|
|
10004
|
+
const __vue_scope_id__$l = "data-v-604a2128";
|
|
9939
10005
|
/* module identifier */
|
|
9940
10006
|
|
|
9941
|
-
const __vue_module_identifier__$
|
|
10007
|
+
const __vue_module_identifier__$l = undefined;
|
|
9942
10008
|
/* functional template */
|
|
9943
10009
|
|
|
9944
|
-
const __vue_is_functional_template__$
|
|
10010
|
+
const __vue_is_functional_template__$l = false;
|
|
9945
10011
|
/* style inject */
|
|
9946
10012
|
|
|
9947
10013
|
/* style inject SSR */
|
|
9948
10014
|
|
|
9949
10015
|
/* style inject shadow dom */
|
|
9950
10016
|
|
|
9951
|
-
const __vue_component__$
|
|
9952
|
-
render: __vue_render__$
|
|
9953
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
9954
|
-
}, __vue_inject_styles__$
|
|
10017
|
+
const __vue_component__$E = /*#__PURE__*/normalizeComponent({
|
|
10018
|
+
render: __vue_render__$j,
|
|
10019
|
+
staticRenderFns: __vue_staticRenderFns__$j
|
|
10020
|
+
}, __vue_inject_styles__$l, __vue_script__$b, __vue_scope_id__$l, __vue_is_functional_template__$l, __vue_module_identifier__$l, false, undefined, undefined, undefined);
|
|
9955
10021
|
|
|
9956
|
-
var __vue_component__$
|
|
10022
|
+
var __vue_component__$F = __vue_component__$E;
|
|
9957
10023
|
|
|
9958
10024
|
//
|
|
9959
10025
|
var script$a = {
|
|
@@ -10002,7 +10068,7 @@ var script$a = {
|
|
|
10002
10068
|
const __vue_script__$a = script$a;
|
|
10003
10069
|
/* template */
|
|
10004
10070
|
|
|
10005
|
-
var __vue_render__$
|
|
10071
|
+
var __vue_render__$i = function () {
|
|
10006
10072
|
var _obj, _obj$1;
|
|
10007
10073
|
|
|
10008
10074
|
var _vm = this;
|
|
@@ -10046,16 +10112,16 @@ var __vue_render__$g = function () {
|
|
|
10046
10112
|
})], 2) : _vm._e()]);
|
|
10047
10113
|
};
|
|
10048
10114
|
|
|
10049
|
-
var __vue_staticRenderFns__$
|
|
10115
|
+
var __vue_staticRenderFns__$i = [];
|
|
10050
10116
|
/* style */
|
|
10051
10117
|
|
|
10052
|
-
const __vue_inject_styles__$
|
|
10118
|
+
const __vue_inject_styles__$k = function (inject) {
|
|
10053
10119
|
if (!inject) return;
|
|
10054
|
-
inject("data-v-
|
|
10055
|
-
source: ".ns-time-picker .time-picker-field[data-v-
|
|
10120
|
+
inject("data-v-47758547_0", {
|
|
10121
|
+
source: ".ns-time-picker .time-picker-field[data-v-47758547]{padding:0;width:6rem}.ns-time-picker .time-picker-field.narrow-width[data-v-47758547]{width:4.875rem}",
|
|
10056
10122
|
map: undefined,
|
|
10057
10123
|
media: undefined
|
|
10058
|
-
}), inject("data-v-
|
|
10124
|
+
}), inject("data-v-47758547_1", {
|
|
10059
10125
|
source: ".ns-time-picker .time-picker-field,.ns-time-picker .time-picker-field:active,.ns-time-picker .time-picker-field:focus{outline:0}.ns-time-picker .time-picker-field input{height:100%!important;background:0 0!important;border:none!important;padding:0 1rem!important;font-family:\"IBM Plex Mono\",Menlo,\"DejaVu Sans Mono\",\"Bitstream Vera Sans Mono\",Courier,monospace!important;font-size:.875rem!important;font-weight:400!important;width:6rem!important;letter-spacing:.32px}.ns-time-picker .time-picker-field.narrow-width input{width:4.875rem!important}.ns-time-picker .time-picker-field .clear-btn{color:#797979;padding-right:1rem}.ns-time-picker .vue__time-picker .dropdown,.ns-time-picker .vue__time-picker-dropdown{top:2.5rem}.ns-time-picker .time-picker-field .dropdown .hint{display:none}",
|
|
10060
10126
|
map: undefined,
|
|
10061
10127
|
media: undefined
|
|
@@ -10064,30 +10130,35 @@ const __vue_inject_styles__$i = function (inject) {
|
|
|
10064
10130
|
/* scoped */
|
|
10065
10131
|
|
|
10066
10132
|
|
|
10067
|
-
const __vue_scope_id__$
|
|
10133
|
+
const __vue_scope_id__$k = "data-v-47758547";
|
|
10068
10134
|
/* module identifier */
|
|
10069
10135
|
|
|
10070
|
-
const __vue_module_identifier__$
|
|
10136
|
+
const __vue_module_identifier__$k = undefined;
|
|
10071
10137
|
/* functional template */
|
|
10072
10138
|
|
|
10073
|
-
const __vue_is_functional_template__$
|
|
10139
|
+
const __vue_is_functional_template__$k = false;
|
|
10074
10140
|
/* style inject SSR */
|
|
10075
10141
|
|
|
10076
10142
|
/* style inject shadow dom */
|
|
10077
10143
|
|
|
10078
|
-
const __vue_component__$
|
|
10079
|
-
render: __vue_render__$
|
|
10080
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
10081
|
-
}, __vue_inject_styles__$
|
|
10144
|
+
const __vue_component__$C = /*#__PURE__*/normalizeComponent({
|
|
10145
|
+
render: __vue_render__$i,
|
|
10146
|
+
staticRenderFns: __vue_staticRenderFns__$i
|
|
10147
|
+
}, __vue_inject_styles__$k, __vue_script__$a, __vue_scope_id__$k, __vue_is_functional_template__$k, __vue_module_identifier__$k, false, createInjector, undefined, undefined);
|
|
10148
|
+
|
|
10149
|
+
var __vue_component__$D = __vue_component__$C;
|
|
10082
10150
|
|
|
10083
|
-
|
|
10151
|
+
/*
|
|
10152
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
10153
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
10154
|
+
*/
|
|
10084
10155
|
|
|
10085
10156
|
/*
|
|
10086
10157
|
* This component optionally wraps slotted content with the specified tag-type.
|
|
10087
10158
|
*
|
|
10088
10159
|
* If no tag-type is supplied then the slotted content is unwrapped.
|
|
10089
10160
|
*
|
|
10090
|
-
* Unwrapped slots do not
|
|
10161
|
+
* Unwrapped slots do not receive class, style or attributes attached to the wrapper
|
|
10091
10162
|
*
|
|
10092
10163
|
* NOTE: If used at the top level of a component in the unwrapped case your component still needs to have a single root node.
|
|
10093
10164
|
*
|
|
@@ -10119,6 +10190,7 @@ var NsWrapper = {
|
|
|
10119
10190
|
|
|
10120
10191
|
};
|
|
10121
10192
|
|
|
10193
|
+
//
|
|
10122
10194
|
var script$9 = {
|
|
10123
10195
|
name: "NsPagination",
|
|
10124
10196
|
extends: CvPagination,
|
|
@@ -10202,9 +10274,9 @@ const __vue_script__$9 = script$9;
|
|
|
10202
10274
|
|
|
10203
10275
|
/* style */
|
|
10204
10276
|
|
|
10205
|
-
const __vue_inject_styles__$
|
|
10277
|
+
const __vue_inject_styles__$j = function (inject) {
|
|
10206
10278
|
if (!inject) return;
|
|
10207
|
-
inject("data-v-
|
|
10279
|
+
inject("data-v-18171654_0", {
|
|
10208
10280
|
source: ".cv-pagination .bx--select .bx--label{font-size:100%}",
|
|
10209
10281
|
map: undefined,
|
|
10210
10282
|
media: undefined
|
|
@@ -10213,20 +10285,20 @@ const __vue_inject_styles__$h = function (inject) {
|
|
|
10213
10285
|
/* scoped */
|
|
10214
10286
|
|
|
10215
10287
|
|
|
10216
|
-
const __vue_scope_id__$
|
|
10288
|
+
const __vue_scope_id__$j = undefined;
|
|
10217
10289
|
/* module identifier */
|
|
10218
10290
|
|
|
10219
|
-
const __vue_module_identifier__$
|
|
10291
|
+
const __vue_module_identifier__$j = undefined;
|
|
10220
10292
|
/* functional template */
|
|
10221
10293
|
|
|
10222
|
-
const __vue_is_functional_template__$
|
|
10294
|
+
const __vue_is_functional_template__$j = undefined;
|
|
10223
10295
|
/* style inject SSR */
|
|
10224
10296
|
|
|
10225
10297
|
/* style inject shadow dom */
|
|
10226
10298
|
|
|
10227
|
-
const __vue_component__$
|
|
10299
|
+
const __vue_component__$B = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$j, __vue_script__$9, __vue_scope_id__$j, __vue_is_functional_template__$j, __vue_module_identifier__$j, false, createInjector, undefined, undefined);
|
|
10228
10300
|
|
|
10229
|
-
var NsPagination = __vue_component__$
|
|
10301
|
+
var NsPagination = __vue_component__$B;
|
|
10230
10302
|
|
|
10231
10303
|
var v$3 = "5.6.1";
|
|
10232
10304
|
var fr$3 = 24;
|
|
@@ -17250,6 +17322,10 @@ var GearsLottie = {
|
|
|
17250
17322
|
markers: markers
|
|
17251
17323
|
};
|
|
17252
17324
|
|
|
17325
|
+
/*
|
|
17326
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
17327
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
17328
|
+
*/
|
|
17253
17329
|
var LottieService = {
|
|
17254
17330
|
name: "IconService",
|
|
17255
17331
|
|
|
@@ -17601,7 +17677,7 @@ var script$8 = {
|
|
|
17601
17677
|
const __vue_script__$8 = script$8;
|
|
17602
17678
|
/* template */
|
|
17603
17679
|
|
|
17604
|
-
var __vue_render__$
|
|
17680
|
+
var __vue_render__$h = function () {
|
|
17605
17681
|
var _obj, _obj$1, _obj$2, _obj$3;
|
|
17606
17682
|
|
|
17607
17683
|
var _vm = this;
|
|
@@ -17930,31 +18006,31 @@ var __vue_render__$f = function () {
|
|
|
17930
18006
|
}, 'NsPagination', _vm.internalPagination, false)) : _vm._e()], 1)], 2);
|
|
17931
18007
|
};
|
|
17932
18008
|
|
|
17933
|
-
var __vue_staticRenderFns__$
|
|
18009
|
+
var __vue_staticRenderFns__$h = [];
|
|
17934
18010
|
/* style */
|
|
17935
18011
|
|
|
17936
|
-
const __vue_inject_styles__$
|
|
18012
|
+
const __vue_inject_styles__$i = undefined;
|
|
17937
18013
|
/* scoped */
|
|
17938
18014
|
|
|
17939
|
-
const __vue_scope_id__$
|
|
18015
|
+
const __vue_scope_id__$i = undefined;
|
|
17940
18016
|
/* module identifier */
|
|
17941
18017
|
|
|
17942
|
-
const __vue_module_identifier__$
|
|
18018
|
+
const __vue_module_identifier__$i = undefined;
|
|
17943
18019
|
/* functional template */
|
|
17944
18020
|
|
|
17945
|
-
const __vue_is_functional_template__$
|
|
18021
|
+
const __vue_is_functional_template__$i = false;
|
|
17946
18022
|
/* style inject */
|
|
17947
18023
|
|
|
17948
18024
|
/* style inject SSR */
|
|
17949
18025
|
|
|
17950
18026
|
/* style inject shadow dom */
|
|
17951
18027
|
|
|
17952
|
-
const __vue_component__$
|
|
17953
|
-
render: __vue_render__$
|
|
17954
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
17955
|
-
}, __vue_inject_styles__$
|
|
18028
|
+
const __vue_component__$z = /*#__PURE__*/normalizeComponent({
|
|
18029
|
+
render: __vue_render__$h,
|
|
18030
|
+
staticRenderFns: __vue_staticRenderFns__$h
|
|
18031
|
+
}, __vue_inject_styles__$i, __vue_script__$8, __vue_scope_id__$i, __vue_is_functional_template__$i, __vue_module_identifier__$i, false, undefined, undefined, undefined);
|
|
17956
18032
|
|
|
17957
|
-
var __vue_component__$
|
|
18033
|
+
var __vue_component__$A = __vue_component__$z;
|
|
17958
18034
|
|
|
17959
18035
|
//
|
|
17960
18036
|
var script$7 = {
|
|
@@ -17991,7 +18067,7 @@ var script$7 = {
|
|
|
17991
18067
|
const __vue_script__$7 = script$7;
|
|
17992
18068
|
/* template */
|
|
17993
18069
|
|
|
17994
|
-
var __vue_render__$
|
|
18070
|
+
var __vue_render__$g = function () {
|
|
17995
18071
|
var _obj;
|
|
17996
18072
|
|
|
17997
18073
|
var _vm = this;
|
|
@@ -18060,16 +18136,16 @@ var __vue_render__$e = function () {
|
|
|
18060
18136
|
})], 2)])])]);
|
|
18061
18137
|
};
|
|
18062
18138
|
|
|
18063
|
-
var __vue_staticRenderFns__$
|
|
18139
|
+
var __vue_staticRenderFns__$g = [];
|
|
18064
18140
|
/* style */
|
|
18065
18141
|
|
|
18066
|
-
const __vue_inject_styles__$
|
|
18142
|
+
const __vue_inject_styles__$h = function (inject) {
|
|
18067
18143
|
if (!inject) return;
|
|
18068
|
-
inject("data-v-
|
|
18069
|
-
source: ".tooltip[data-v-
|
|
18144
|
+
inject("data-v-c1657d8a_0", {
|
|
18145
|
+
source: ".tooltip[data-v-c1657d8a]{display:inline-block;position:absolute}",
|
|
18070
18146
|
map: undefined,
|
|
18071
18147
|
media: undefined
|
|
18072
|
-
}), inject("data-v-
|
|
18148
|
+
}), inject("data-v-c1657d8a_1", {
|
|
18073
18149
|
source: ".ns-toggle .bx--tooltip__label .bx--tooltip__trigger{margin-left:.25rem}",
|
|
18074
18150
|
map: undefined,
|
|
18075
18151
|
media: undefined
|
|
@@ -18078,23 +18154,23 @@ const __vue_inject_styles__$f = function (inject) {
|
|
|
18078
18154
|
/* scoped */
|
|
18079
18155
|
|
|
18080
18156
|
|
|
18081
|
-
const __vue_scope_id__$
|
|
18157
|
+
const __vue_scope_id__$h = "data-v-c1657d8a";
|
|
18082
18158
|
/* module identifier */
|
|
18083
18159
|
|
|
18084
|
-
const __vue_module_identifier__$
|
|
18160
|
+
const __vue_module_identifier__$h = undefined;
|
|
18085
18161
|
/* functional template */
|
|
18086
18162
|
|
|
18087
|
-
const __vue_is_functional_template__$
|
|
18163
|
+
const __vue_is_functional_template__$h = false;
|
|
18088
18164
|
/* style inject SSR */
|
|
18089
18165
|
|
|
18090
18166
|
/* style inject shadow dom */
|
|
18091
18167
|
|
|
18092
|
-
const __vue_component__$
|
|
18093
|
-
render: __vue_render__$
|
|
18094
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
18095
|
-
}, __vue_inject_styles__$
|
|
18168
|
+
const __vue_component__$x = /*#__PURE__*/normalizeComponent({
|
|
18169
|
+
render: __vue_render__$g,
|
|
18170
|
+
staticRenderFns: __vue_staticRenderFns__$g
|
|
18171
|
+
}, __vue_inject_styles__$h, __vue_script__$7, __vue_scope_id__$h, __vue_is_functional_template__$h, __vue_module_identifier__$h, false, createInjector, undefined, undefined);
|
|
18096
18172
|
|
|
18097
|
-
var __vue_component__$
|
|
18173
|
+
var __vue_component__$y = __vue_component__$x;
|
|
18098
18174
|
|
|
18099
18175
|
//
|
|
18100
18176
|
var script$6 = {
|
|
@@ -18112,7 +18188,7 @@ var script$6 = {
|
|
|
18112
18188
|
const __vue_script__$6 = script$6;
|
|
18113
18189
|
/* template */
|
|
18114
18190
|
|
|
18115
|
-
var __vue_render__$
|
|
18191
|
+
var __vue_render__$f = function () {
|
|
18116
18192
|
var _obj;
|
|
18117
18193
|
|
|
18118
18194
|
var _vm = this;
|
|
@@ -18178,13 +18254,13 @@ var __vue_render__$d = function () {
|
|
|
18178
18254
|
}, [_c('Close16')], 1) : _vm._e()]);
|
|
18179
18255
|
};
|
|
18180
18256
|
|
|
18181
|
-
var __vue_staticRenderFns__$
|
|
18257
|
+
var __vue_staticRenderFns__$f = [];
|
|
18182
18258
|
/* style */
|
|
18183
18259
|
|
|
18184
|
-
const __vue_inject_styles__$
|
|
18260
|
+
const __vue_inject_styles__$g = function (inject) {
|
|
18185
18261
|
if (!inject) return;
|
|
18186
|
-
inject("data-v-
|
|
18187
|
-
source: ".bx--tag--filter[data-v-
|
|
18262
|
+
inject("data-v-2227951d_0", {
|
|
18263
|
+
source: ".bx--tag--filter[data-v-2227951d]{cursor:default}",
|
|
18188
18264
|
map: undefined,
|
|
18189
18265
|
media: undefined
|
|
18190
18266
|
});
|
|
@@ -18192,23 +18268,23 @@ const __vue_inject_styles__$e = function (inject) {
|
|
|
18192
18268
|
/* scoped */
|
|
18193
18269
|
|
|
18194
18270
|
|
|
18195
|
-
const __vue_scope_id__$
|
|
18271
|
+
const __vue_scope_id__$g = "data-v-2227951d";
|
|
18196
18272
|
/* module identifier */
|
|
18197
18273
|
|
|
18198
|
-
const __vue_module_identifier__$
|
|
18274
|
+
const __vue_module_identifier__$g = undefined;
|
|
18199
18275
|
/* functional template */
|
|
18200
18276
|
|
|
18201
|
-
const __vue_is_functional_template__$
|
|
18277
|
+
const __vue_is_functional_template__$g = false;
|
|
18202
18278
|
/* style inject SSR */
|
|
18203
18279
|
|
|
18204
18280
|
/* style inject shadow dom */
|
|
18205
18281
|
|
|
18206
|
-
const __vue_component__$
|
|
18207
|
-
render: __vue_render__$
|
|
18208
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
18209
|
-
}, __vue_inject_styles__$
|
|
18282
|
+
const __vue_component__$w = /*#__PURE__*/normalizeComponent({
|
|
18283
|
+
render: __vue_render__$f,
|
|
18284
|
+
staticRenderFns: __vue_staticRenderFns__$f
|
|
18285
|
+
}, __vue_inject_styles__$g, __vue_script__$6, __vue_scope_id__$g, __vue_is_functional_template__$g, __vue_module_identifier__$g, false, createInjector, undefined, undefined);
|
|
18210
18286
|
|
|
18211
|
-
var NsTag = __vue_component__$
|
|
18287
|
+
var NsTag = __vue_component__$w;
|
|
18212
18288
|
|
|
18213
18289
|
/**
|
|
18214
18290
|
* Removes all key-value entries from the list cache.
|
|
@@ -21221,7 +21297,7 @@ var script$5 = {
|
|
|
21221
21297
|
const __vue_script__$5 = script$5;
|
|
21222
21298
|
/* template */
|
|
21223
21299
|
|
|
21224
|
-
var __vue_render__$
|
|
21300
|
+
var __vue_render__$e = function () {
|
|
21225
21301
|
var _obj, _obj$1, _obj$2, _obj$3, _obj$4, _obj$5, _obj$6;
|
|
21226
21302
|
|
|
21227
21303
|
var _vm = this;
|
|
@@ -21492,16 +21568,16 @@ var __vue_render__$c = function () {
|
|
|
21492
21568
|
}), 1) : _vm._e()]);
|
|
21493
21569
|
};
|
|
21494
21570
|
|
|
21495
|
-
var __vue_staticRenderFns__$
|
|
21571
|
+
var __vue_staticRenderFns__$e = [];
|
|
21496
21572
|
/* style */
|
|
21497
21573
|
|
|
21498
|
-
const __vue_inject_styles__$
|
|
21574
|
+
const __vue_inject_styles__$f = function (inject) {
|
|
21499
21575
|
if (!inject) return;
|
|
21500
|
-
inject("data-v-
|
|
21501
|
-
source: ".bx--multi-select--filterable .bx--tag.selected-item[data-v-
|
|
21576
|
+
inject("data-v-3d8cc568_0", {
|
|
21577
|
+
source: ".bx--multi-select--filterable .bx--tag.selected-item[data-v-3d8cc568]{margin-left:0;margin-bottom:.25rem}.margin-bottom-on-open[data-v-3d8cc568]{margin-bottom:14rem}.label-with-tooltip[data-v-3d8cc568]{display:flex;align-items:baseline}",
|
|
21502
21578
|
map: undefined,
|
|
21503
21579
|
media: undefined
|
|
21504
|
-
}), inject("data-v-
|
|
21580
|
+
}), inject("data-v-3d8cc568_1", {
|
|
21505
21581
|
source: ".selected-item button.bx--tag__close-icon{position:relative;right:1px}.ns-multi-select .bx--tooltip__label .bx--tooltip__trigger{margin-left:.25rem}",
|
|
21506
21582
|
map: undefined,
|
|
21507
21583
|
media: undefined
|
|
@@ -21510,23 +21586,23 @@ const __vue_inject_styles__$d = function (inject) {
|
|
|
21510
21586
|
/* scoped */
|
|
21511
21587
|
|
|
21512
21588
|
|
|
21513
|
-
const __vue_scope_id__$
|
|
21589
|
+
const __vue_scope_id__$f = "data-v-3d8cc568";
|
|
21514
21590
|
/* module identifier */
|
|
21515
21591
|
|
|
21516
|
-
const __vue_module_identifier__$
|
|
21592
|
+
const __vue_module_identifier__$f = undefined;
|
|
21517
21593
|
/* functional template */
|
|
21518
21594
|
|
|
21519
|
-
const __vue_is_functional_template__$
|
|
21595
|
+
const __vue_is_functional_template__$f = false;
|
|
21520
21596
|
/* style inject SSR */
|
|
21521
21597
|
|
|
21522
21598
|
/* style inject shadow dom */
|
|
21523
21599
|
|
|
21524
|
-
const __vue_component__$
|
|
21525
|
-
render: __vue_render__$
|
|
21526
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
21527
|
-
}, __vue_inject_styles__$
|
|
21600
|
+
const __vue_component__$u = /*#__PURE__*/normalizeComponent({
|
|
21601
|
+
render: __vue_render__$e,
|
|
21602
|
+
staticRenderFns: __vue_staticRenderFns__$e
|
|
21603
|
+
}, __vue_inject_styles__$f, __vue_script__$5, __vue_scope_id__$f, __vue_is_functional_template__$f, __vue_module_identifier__$f, false, createInjector, undefined, undefined);
|
|
21528
21604
|
|
|
21529
|
-
var __vue_component__$
|
|
21605
|
+
var __vue_component__$v = __vue_component__$u;
|
|
21530
21606
|
|
|
21531
21607
|
//
|
|
21532
21608
|
var script$4 = {
|
|
@@ -21968,7 +22044,7 @@ var script$4 = {
|
|
|
21968
22044
|
const __vue_script__$4 = script$4;
|
|
21969
22045
|
/* template */
|
|
21970
22046
|
|
|
21971
|
-
var __vue_render__$
|
|
22047
|
+
var __vue_render__$d = function () {
|
|
21972
22048
|
var _obj, _obj$1, _obj$2, _obj$3, _obj$4;
|
|
21973
22049
|
|
|
21974
22050
|
var _vm = this;
|
|
@@ -22187,16 +22263,16 @@ var __vue_render__$b = function () {
|
|
|
22187
22263
|
})], 2) : _vm._e()]);
|
|
22188
22264
|
};
|
|
22189
22265
|
|
|
22190
|
-
var __vue_staticRenderFns__$
|
|
22266
|
+
var __vue_staticRenderFns__$d = [];
|
|
22191
22267
|
/* style */
|
|
22192
22268
|
|
|
22193
|
-
const __vue_inject_styles__$
|
|
22269
|
+
const __vue_inject_styles__$e = function (inject) {
|
|
22194
22270
|
if (!inject) return;
|
|
22195
|
-
inject("data-v-
|
|
22196
|
-
source: ".margin-bottom-on-open[data-v-
|
|
22271
|
+
inject("data-v-654085ae_0", {
|
|
22272
|
+
source: ".margin-bottom-on-open[data-v-654085ae]{margin-bottom:14rem}.label-with-tooltip[data-v-654085ae]{display:flex;align-items:baseline}",
|
|
22197
22273
|
map: undefined,
|
|
22198
22274
|
media: undefined
|
|
22199
|
-
}), inject("data-v-
|
|
22275
|
+
}), inject("data-v-654085ae_1", {
|
|
22200
22276
|
source: ".ns-combo-box .bx--tooltip__label .bx--tooltip__trigger{margin-left:.25rem}",
|
|
22201
22277
|
map: undefined,
|
|
22202
22278
|
media: undefined
|
|
@@ -22205,23 +22281,23 @@ const __vue_inject_styles__$c = function (inject) {
|
|
|
22205
22281
|
/* scoped */
|
|
22206
22282
|
|
|
22207
22283
|
|
|
22208
|
-
const __vue_scope_id__$
|
|
22284
|
+
const __vue_scope_id__$e = "data-v-654085ae";
|
|
22209
22285
|
/* module identifier */
|
|
22210
22286
|
|
|
22211
|
-
const __vue_module_identifier__$
|
|
22287
|
+
const __vue_module_identifier__$e = undefined;
|
|
22212
22288
|
/* functional template */
|
|
22213
22289
|
|
|
22214
|
-
const __vue_is_functional_template__$
|
|
22290
|
+
const __vue_is_functional_template__$e = false;
|
|
22215
22291
|
/* style inject SSR */
|
|
22216
22292
|
|
|
22217
22293
|
/* style inject shadow dom */
|
|
22218
22294
|
|
|
22219
|
-
const __vue_component__$
|
|
22220
|
-
render: __vue_render__$
|
|
22221
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
22222
|
-
}, __vue_inject_styles__$
|
|
22295
|
+
const __vue_component__$s = /*#__PURE__*/normalizeComponent({
|
|
22296
|
+
render: __vue_render__$d,
|
|
22297
|
+
staticRenderFns: __vue_staticRenderFns__$d
|
|
22298
|
+
}, __vue_inject_styles__$e, __vue_script__$4, __vue_scope_id__$e, __vue_is_functional_template__$e, __vue_module_identifier__$e, false, createInjector, undefined, undefined);
|
|
22223
22299
|
|
|
22224
|
-
var __vue_component__$
|
|
22300
|
+
var __vue_component__$t = __vue_component__$s;
|
|
22225
22301
|
|
|
22226
22302
|
//
|
|
22227
22303
|
var script$3 = {
|
|
@@ -22259,7 +22335,7 @@ var script$3 = {
|
|
|
22259
22335
|
const __vue_script__$3 = script$3;
|
|
22260
22336
|
/* template */
|
|
22261
22337
|
|
|
22262
|
-
var __vue_render__$
|
|
22338
|
+
var __vue_render__$c = function () {
|
|
22263
22339
|
var _obj, _obj$1, _obj$2;
|
|
22264
22340
|
|
|
22265
22341
|
var _vm = this;
|
|
@@ -22313,16 +22389,16 @@ var __vue_render__$a = function () {
|
|
|
22313
22389
|
}, [_vm._t("tooltip")], 2)], 2) : _vm._e()], 1)])])]);
|
|
22314
22390
|
};
|
|
22315
22391
|
|
|
22316
|
-
var __vue_staticRenderFns__$
|
|
22392
|
+
var __vue_staticRenderFns__$c = [];
|
|
22317
22393
|
/* style */
|
|
22318
22394
|
|
|
22319
|
-
const __vue_inject_styles__$
|
|
22395
|
+
const __vue_inject_styles__$d = function (inject) {
|
|
22320
22396
|
if (!inject) return;
|
|
22321
|
-
inject("data-v-
|
|
22322
|
-
source: ".label-with-tooltip[data-v-
|
|
22397
|
+
inject("data-v-5df22176_0", {
|
|
22398
|
+
source: ".label-with-tooltip[data-v-5df22176]{display:flex}",
|
|
22323
22399
|
map: undefined,
|
|
22324
22400
|
media: undefined
|
|
22325
|
-
}), inject("data-v-
|
|
22401
|
+
}), inject("data-v-5df22176_1", {
|
|
22326
22402
|
source: ".ns-checkbox .bx--tooltip__label .bx--tooltip__trigger{margin-left:.25rem}",
|
|
22327
22403
|
map: undefined,
|
|
22328
22404
|
media: undefined
|
|
@@ -22331,23 +22407,23 @@ const __vue_inject_styles__$b = function (inject) {
|
|
|
22331
22407
|
/* scoped */
|
|
22332
22408
|
|
|
22333
22409
|
|
|
22334
|
-
const __vue_scope_id__$
|
|
22410
|
+
const __vue_scope_id__$d = "data-v-5df22176";
|
|
22335
22411
|
/* module identifier */
|
|
22336
22412
|
|
|
22337
|
-
const __vue_module_identifier__$
|
|
22413
|
+
const __vue_module_identifier__$d = undefined;
|
|
22338
22414
|
/* functional template */
|
|
22339
22415
|
|
|
22340
|
-
const __vue_is_functional_template__$
|
|
22416
|
+
const __vue_is_functional_template__$d = false;
|
|
22341
22417
|
/* style inject SSR */
|
|
22342
22418
|
|
|
22343
22419
|
/* style inject shadow dom */
|
|
22344
22420
|
|
|
22345
|
-
const __vue_component__$
|
|
22346
|
-
render: __vue_render__$
|
|
22347
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
22348
|
-
}, __vue_inject_styles__$
|
|
22421
|
+
const __vue_component__$q = /*#__PURE__*/normalizeComponent({
|
|
22422
|
+
render: __vue_render__$c,
|
|
22423
|
+
staticRenderFns: __vue_staticRenderFns__$c
|
|
22424
|
+
}, __vue_inject_styles__$d, __vue_script__$3, __vue_scope_id__$d, __vue_is_functional_template__$d, __vue_module_identifier__$d, false, createInjector, undefined, undefined);
|
|
22349
22425
|
|
|
22350
|
-
var __vue_component__$
|
|
22426
|
+
var __vue_component__$r = __vue_component__$q;
|
|
22351
22427
|
|
|
22352
22428
|
//
|
|
22353
22429
|
var script$2 = {
|
|
@@ -22699,7 +22775,7 @@ var script$2 = {
|
|
|
22699
22775
|
const __vue_script__$2 = script$2;
|
|
22700
22776
|
/* template */
|
|
22701
22777
|
|
|
22702
|
-
var __vue_render__$
|
|
22778
|
+
var __vue_render__$b = function () {
|
|
22703
22779
|
var _obj, _obj$1, _obj$2, _obj$3;
|
|
22704
22780
|
|
|
22705
22781
|
var _vm = this;
|
|
@@ -22920,16 +22996,16 @@ var __vue_render__$9 = function () {
|
|
|
22920
22996
|
})], 2) : _vm._e()]);
|
|
22921
22997
|
};
|
|
22922
22998
|
|
|
22923
|
-
var __vue_staticRenderFns__$
|
|
22999
|
+
var __vue_staticRenderFns__$b = [];
|
|
22924
23000
|
/* style */
|
|
22925
23001
|
|
|
22926
|
-
const __vue_inject_styles__$
|
|
23002
|
+
const __vue_inject_styles__$c = function (inject) {
|
|
22927
23003
|
if (!inject) return;
|
|
22928
|
-
inject("data-v-
|
|
22929
|
-
source: ".range-input[data-v-
|
|
23004
|
+
inject("data-v-55c65fcb_0", {
|
|
23005
|
+
source: ".range-input[data-v-55c65fcb]{margin-top:.5rem!important}.mib-gib[data-v-55c65fcb]{margin-left:1rem;margin-top:.5rem!important;margin-bottom:0!important}.human-label[data-v-55c65fcb]{margin-top:1rem}.ns-byte-slider .cv-radio-group.bx--form-item[data-v-55c65fcb]{margin-bottom:.5rem}",
|
|
22930
23006
|
map: undefined,
|
|
22931
23007
|
media: undefined
|
|
22932
|
-
}), inject("data-v-
|
|
23008
|
+
}), inject("data-v-55c65fcb_1", {
|
|
22933
23009
|
source: ".ns-byte-slider .bx--slider-container{flex-wrap:wrap}.ns-byte-slider .bx--slider-text-input{width:5rem}.ns-byte-slider .wrapper[data-invalid]~.bx--form-requirement{display:block;overflow:visible;max-height:12.5rem;font-weight:400;color:#da1e28}",
|
|
22934
23010
|
map: undefined,
|
|
22935
23011
|
media: undefined
|
|
@@ -22938,24 +23014,25 @@ const __vue_inject_styles__$a = function (inject) {
|
|
|
22938
23014
|
/* scoped */
|
|
22939
23015
|
|
|
22940
23016
|
|
|
22941
|
-
const __vue_scope_id__$
|
|
23017
|
+
const __vue_scope_id__$c = "data-v-55c65fcb";
|
|
22942
23018
|
/* module identifier */
|
|
22943
23019
|
|
|
22944
|
-
const __vue_module_identifier__$
|
|
23020
|
+
const __vue_module_identifier__$c = undefined;
|
|
22945
23021
|
/* functional template */
|
|
22946
23022
|
|
|
22947
|
-
const __vue_is_functional_template__$
|
|
23023
|
+
const __vue_is_functional_template__$c = false;
|
|
22948
23024
|
/* style inject SSR */
|
|
22949
23025
|
|
|
22950
23026
|
/* style inject shadow dom */
|
|
22951
23027
|
|
|
22952
|
-
const __vue_component__$
|
|
22953
|
-
render: __vue_render__$
|
|
22954
|
-
staticRenderFns: __vue_staticRenderFns__$
|
|
22955
|
-
}, __vue_inject_styles__$
|
|
23028
|
+
const __vue_component__$o = /*#__PURE__*/normalizeComponent({
|
|
23029
|
+
render: __vue_render__$b,
|
|
23030
|
+
staticRenderFns: __vue_staticRenderFns__$b
|
|
23031
|
+
}, __vue_inject_styles__$c, __vue_script__$2, __vue_scope_id__$c, __vue_is_functional_template__$c, __vue_module_identifier__$c, false, createInjector, undefined, undefined);
|
|
22956
23032
|
|
|
22957
|
-
var __vue_component__$
|
|
23033
|
+
var __vue_component__$p = __vue_component__$o;
|
|
22958
23034
|
|
|
23035
|
+
//
|
|
22959
23036
|
var script$1 = {
|
|
22960
23037
|
name: "NsTabs",
|
|
22961
23038
|
extends: CvTabs,
|
|
@@ -23015,25 +23092,25 @@ const __vue_script__$1 = script$1;
|
|
|
23015
23092
|
|
|
23016
23093
|
/* style */
|
|
23017
23094
|
|
|
23018
|
-
const __vue_inject_styles__$
|
|
23095
|
+
const __vue_inject_styles__$b = undefined;
|
|
23019
23096
|
/* scoped */
|
|
23020
23097
|
|
|
23021
|
-
const __vue_scope_id__$
|
|
23098
|
+
const __vue_scope_id__$b = undefined;
|
|
23022
23099
|
/* module identifier */
|
|
23023
23100
|
|
|
23024
|
-
const __vue_module_identifier__$
|
|
23101
|
+
const __vue_module_identifier__$b = undefined;
|
|
23025
23102
|
/* functional template */
|
|
23026
23103
|
|
|
23027
|
-
const __vue_is_functional_template__$
|
|
23104
|
+
const __vue_is_functional_template__$b = undefined;
|
|
23028
23105
|
/* style inject */
|
|
23029
23106
|
|
|
23030
23107
|
/* style inject SSR */
|
|
23031
23108
|
|
|
23032
23109
|
/* style inject shadow dom */
|
|
23033
23110
|
|
|
23034
|
-
const __vue_component__$
|
|
23111
|
+
const __vue_component__$m = /*#__PURE__*/normalizeComponent({}, __vue_inject_styles__$b, __vue_script__$1, __vue_scope_id__$b, __vue_is_functional_template__$b, __vue_module_identifier__$b, false, undefined, undefined, undefined);
|
|
23035
23112
|
|
|
23036
|
-
var __vue_component__$
|
|
23113
|
+
var __vue_component__$n = __vue_component__$m;
|
|
23037
23114
|
|
|
23038
23115
|
//
|
|
23039
23116
|
var script = {
|
|
@@ -23312,7 +23389,7 @@ var script = {
|
|
|
23312
23389
|
const __vue_script__ = script;
|
|
23313
23390
|
/* template */
|
|
23314
23391
|
|
|
23315
|
-
var __vue_render__$
|
|
23392
|
+
var __vue_render__$a = function () {
|
|
23316
23393
|
var _obj, _obj$1, _obj$2, _obj$3, _obj$4;
|
|
23317
23394
|
|
|
23318
23395
|
var _vm = this;
|
|
@@ -23498,16 +23575,16 @@ var __vue_render__$8 = function () {
|
|
|
23498
23575
|
})], 2) : _vm._e()]);
|
|
23499
23576
|
};
|
|
23500
23577
|
|
|
23501
|
-
var __vue_staticRenderFns__$
|
|
23578
|
+
var __vue_staticRenderFns__$a = [];
|
|
23502
23579
|
/* style */
|
|
23503
23580
|
|
|
23504
|
-
const __vue_inject_styles__$
|
|
23581
|
+
const __vue_inject_styles__$a = function (inject) {
|
|
23505
23582
|
if (!inject) return;
|
|
23506
|
-
inject("data-v-
|
|
23507
|
-
source: ".range-input[data-v-
|
|
23583
|
+
inject("data-v-d17c8692_0", {
|
|
23584
|
+
source: ".range-input[data-v-d17c8692]{margin-top:.5rem!important}.unit-label[data-v-d17c8692]{margin-top:.5rem!important;margin-left:1rem}.ns-slider .cv-radio-group.bx--form-item[data-v-d17c8692]{margin-bottom:.5rem}",
|
|
23508
23585
|
map: undefined,
|
|
23509
23586
|
media: undefined
|
|
23510
|
-
}), inject("data-v-
|
|
23587
|
+
}), inject("data-v-d17c8692_1", {
|
|
23511
23588
|
source: ".ns-slider .bx--slider-container{flex-wrap:wrap}.ns-slider .bx--slider-text-input{width:6rem}.ns-slider .wrapper[data-invalid]~.bx--form-requirement{display:block;overflow:visible;max-height:12.5rem;font-weight:400;color:#da1e28}",
|
|
23512
23589
|
map: undefined,
|
|
23513
23590
|
media: undefined
|
|
@@ -23516,13 +23593,101 @@ const __vue_inject_styles__$8 = function (inject) {
|
|
|
23516
23593
|
/* scoped */
|
|
23517
23594
|
|
|
23518
23595
|
|
|
23519
|
-
const __vue_scope_id__$
|
|
23596
|
+
const __vue_scope_id__$a = "data-v-d17c8692";
|
|
23597
|
+
/* module identifier */
|
|
23598
|
+
|
|
23599
|
+
const __vue_module_identifier__$a = undefined;
|
|
23600
|
+
/* functional template */
|
|
23601
|
+
|
|
23602
|
+
const __vue_is_functional_template__$a = false;
|
|
23603
|
+
/* style inject SSR */
|
|
23604
|
+
|
|
23605
|
+
/* style inject shadow dom */
|
|
23606
|
+
|
|
23607
|
+
const __vue_component__$k = /*#__PURE__*/normalizeComponent({
|
|
23608
|
+
render: __vue_render__$a,
|
|
23609
|
+
staticRenderFns: __vue_staticRenderFns__$a
|
|
23610
|
+
}, __vue_inject_styles__$a, __vue_script__, __vue_scope_id__$a, __vue_is_functional_template__$a, __vue_module_identifier__$a, false, createInjector, undefined, undefined);
|
|
23611
|
+
|
|
23612
|
+
var __vue_component__$l = __vue_component__$k;
|
|
23613
|
+
|
|
23614
|
+
/* script */
|
|
23615
|
+
|
|
23616
|
+
/* template */
|
|
23617
|
+
var __vue_render__$9 = function () {
|
|
23618
|
+
var _vm = this;
|
|
23619
|
+
|
|
23620
|
+
var _h = _vm.$createElement;
|
|
23621
|
+
|
|
23622
|
+
var _c = _vm._self._c || _h;
|
|
23623
|
+
|
|
23624
|
+
return _c('path', {
|
|
23625
|
+
attrs: {
|
|
23626
|
+
"id": "gear_2_",
|
|
23627
|
+
"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"
|
|
23628
|
+
}
|
|
23629
|
+
});
|
|
23630
|
+
};
|
|
23631
|
+
|
|
23632
|
+
var __vue_staticRenderFns__$9 = [];
|
|
23633
|
+
/* style */
|
|
23634
|
+
|
|
23635
|
+
const __vue_inject_styles__$9 = undefined;
|
|
23636
|
+
/* scoped */
|
|
23637
|
+
|
|
23638
|
+
const __vue_scope_id__$9 = undefined;
|
|
23639
|
+
/* module identifier */
|
|
23640
|
+
|
|
23641
|
+
const __vue_module_identifier__$9 = undefined;
|
|
23642
|
+
/* functional template */
|
|
23643
|
+
|
|
23644
|
+
const __vue_is_functional_template__$9 = false;
|
|
23645
|
+
/* style inject */
|
|
23646
|
+
|
|
23647
|
+
/* style inject SSR */
|
|
23648
|
+
|
|
23649
|
+
/* style inject shadow dom */
|
|
23650
|
+
|
|
23651
|
+
const __vue_component__$i = /*#__PURE__*/normalizeComponent({
|
|
23652
|
+
render: __vue_render__$9,
|
|
23653
|
+
staticRenderFns: __vue_staticRenderFns__$9
|
|
23654
|
+
}, __vue_inject_styles__$9, {}, __vue_scope_id__$9, __vue_is_functional_template__$9, __vue_module_identifier__$9, false, undefined, undefined, undefined);
|
|
23655
|
+
|
|
23656
|
+
var __vue_component__$j = __vue_component__$i;
|
|
23657
|
+
|
|
23658
|
+
/* script */
|
|
23659
|
+
|
|
23660
|
+
/* template */
|
|
23661
|
+
var __vue_render__$8 = function () {
|
|
23662
|
+
var _vm = this;
|
|
23663
|
+
|
|
23664
|
+
var _h = _vm.$createElement;
|
|
23665
|
+
|
|
23666
|
+
var _c = _vm._self._c || _h;
|
|
23667
|
+
|
|
23668
|
+
return _c('path', {
|
|
23669
|
+
attrs: {
|
|
23670
|
+
"id": "love_1_",
|
|
23671
|
+
"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"
|
|
23672
|
+
}
|
|
23673
|
+
});
|
|
23674
|
+
};
|
|
23675
|
+
|
|
23676
|
+
var __vue_staticRenderFns__$8 = [];
|
|
23677
|
+
/* style */
|
|
23678
|
+
|
|
23679
|
+
const __vue_inject_styles__$8 = undefined;
|
|
23680
|
+
/* scoped */
|
|
23681
|
+
|
|
23682
|
+
const __vue_scope_id__$8 = undefined;
|
|
23520
23683
|
/* module identifier */
|
|
23521
23684
|
|
|
23522
23685
|
const __vue_module_identifier__$8 = undefined;
|
|
23523
23686
|
/* functional template */
|
|
23524
23687
|
|
|
23525
23688
|
const __vue_is_functional_template__$8 = false;
|
|
23689
|
+
/* style inject */
|
|
23690
|
+
|
|
23526
23691
|
/* style inject SSR */
|
|
23527
23692
|
|
|
23528
23693
|
/* style inject shadow dom */
|
|
@@ -23530,7 +23695,7 @@ const __vue_is_functional_template__$8 = false;
|
|
|
23530
23695
|
const __vue_component__$g = /*#__PURE__*/normalizeComponent({
|
|
23531
23696
|
render: __vue_render__$8,
|
|
23532
23697
|
staticRenderFns: __vue_staticRenderFns__$8
|
|
23533
|
-
}, __vue_inject_styles__$8,
|
|
23698
|
+
}, __vue_inject_styles__$8, {}, __vue_scope_id__$8, __vue_is_functional_template__$8, __vue_module_identifier__$8, false, undefined, undefined, undefined);
|
|
23534
23699
|
|
|
23535
23700
|
var __vue_component__$h = __vue_component__$g;
|
|
23536
23701
|
|
|
@@ -23546,8 +23711,8 @@ var __vue_render__$7 = function () {
|
|
|
23546
23711
|
|
|
23547
23712
|
return _c('path', {
|
|
23548
23713
|
attrs: {
|
|
23549
|
-
"id": "
|
|
23550
|
-
"d": "
|
|
23714
|
+
"id": "warning--01_1_",
|
|
23715
|
+
"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"
|
|
23551
23716
|
}
|
|
23552
23717
|
});
|
|
23553
23718
|
};
|
|
@@ -23590,8 +23755,8 @@ var __vue_render__$6 = function () {
|
|
|
23590
23755
|
|
|
23591
23756
|
return _c('path', {
|
|
23592
23757
|
attrs: {
|
|
23593
|
-
"id": "
|
|
23594
|
-
"d": "
|
|
23758
|
+
"id": "bulldozer_1_",
|
|
23759
|
+
"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"
|
|
23595
23760
|
}
|
|
23596
23761
|
});
|
|
23597
23762
|
};
|
|
@@ -23634,8 +23799,8 @@ var __vue_render__$5 = function () {
|
|
|
23634
23799
|
|
|
23635
23800
|
return _c('path', {
|
|
23636
23801
|
attrs: {
|
|
23637
|
-
"id": "
|
|
23638
|
-
"d": "
|
|
23802
|
+
"id": "group",
|
|
23803
|
+
"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"
|
|
23639
23804
|
}
|
|
23640
23805
|
});
|
|
23641
23806
|
};
|
|
@@ -23678,8 +23843,8 @@ var __vue_render__$4 = function () {
|
|
|
23678
23843
|
|
|
23679
23844
|
return _c('path', {
|
|
23680
23845
|
attrs: {
|
|
23681
|
-
"id": "
|
|
23682
|
-
"d": "
|
|
23846
|
+
"id": "hard--drive",
|
|
23847
|
+
"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"
|
|
23683
23848
|
}
|
|
23684
23849
|
});
|
|
23685
23850
|
};
|
|
@@ -23722,8 +23887,8 @@ var __vue_render__$3 = function () {
|
|
|
23722
23887
|
|
|
23723
23888
|
return _c('path', {
|
|
23724
23889
|
attrs: {
|
|
23725
|
-
"id": "
|
|
23726
|
-
"d": "
|
|
23890
|
+
"id": "user_1_",
|
|
23891
|
+
"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"
|
|
23727
23892
|
}
|
|
23728
23893
|
});
|
|
23729
23894
|
};
|
|
@@ -23766,8 +23931,8 @@ var __vue_render__$2 = function () {
|
|
|
23766
23931
|
|
|
23767
23932
|
return _c('path', {
|
|
23768
23933
|
attrs: {
|
|
23769
|
-
"id": "
|
|
23770
|
-
"d": "
|
|
23934
|
+
"id": "user--profile_1_",
|
|
23935
|
+
"d": "M16,31.36C7.53,31.36,0.64,24.47,0.64,16S7.53,0.64,16,0.64S31.36,7.53,31.36,16\n\tS24.47,31.36,16,31.36z M6.349,27c2.579,2.266,5.957,3.64,9.651,3.64c3.693,0,7.072-1.374,9.65-3.64h-0.01\n\tc0-4.341-2.941-8.161-7.153-9.29c-0.144-0.038-0.248-0.16-0.265-0.307c-0.018-0.146,0.058-0.289,0.188-0.358\n\tc1.678-0.897,2.72-2.635,2.72-4.534c0-2.84-2.306-5.151-5.14-5.151s-5.141,2.311-5.141,5.151c0,1.899,1.042,3.637,2.72,4.534\n\tc0.13,0.069,0.205,0.212,0.188,0.358s-0.122,0.269-0.264,0.307C9.292,18.835,6.36,22.655,6.36,27H6.349z M19.435,17.25\n\tc3.913,1.377,6.646,4.973,6.905,9.104c2.655-2.651,4.3-6.314,4.3-10.354c0-8.073-6.567-14.64-14.64-14.64\n\tC7.927,1.36,1.36,7.927,1.36,16c0,4.04,1.645,7.703,4.3,10.354c0.258-4.135,2.982-7.729,6.883-9.104\n\tc-1.506-1.094-2.415-2.846-2.415-4.739c0-3.237,2.629-5.871,5.86-5.871c3.232,0,5.861,2.633,5.861,5.871\n\tC21.85,14.404,20.941,16.156,19.435,17.25z"
|
|
23771
23936
|
}
|
|
23772
23937
|
});
|
|
23773
23938
|
};
|
|
@@ -23810,8 +23975,8 @@ var __vue_render__$1 = function () {
|
|
|
23810
23975
|
|
|
23811
23976
|
return _c('path', {
|
|
23812
23977
|
attrs: {
|
|
23813
|
-
"id": "
|
|
23814
|
-
"d": "
|
|
23978
|
+
"id": "folder",
|
|
23979
|
+
"d": "M30,27.36H2c-0.75,0-1.36-0.61-1.36-1.36V4c0-0.75,0.61-1.36,1.36-1.36h8.5c0.425,0,0.833,0.203,1.088,0.543\n\tl1.416,2.223C13.108,5.544,13.299,5.64,13.5,5.64H30c0.75,0,1.36,0.61,1.36,1.36v19C31.36,26.75,30.75,27.36,30,27.36z M2,3.36\n\tC1.647,3.36,1.36,3.647,1.36,4v22c0,0.353,0.287,0.64,0.64,0.64h28c0.353,0,0.64-0.287,0.64-0.64V7c0-0.353-0.287-0.64-0.64-0.64\n\tH13.5c-0.426,0-0.833-0.203-1.088-0.544l-1.416-2.223C10.892,3.456,10.7,3.36,10.5,3.36H2z"
|
|
23815
23980
|
}
|
|
23816
23981
|
});
|
|
23817
23982
|
};
|
|
@@ -23854,8 +24019,8 @@ var __vue_render__ = function () {
|
|
|
23854
24019
|
|
|
23855
24020
|
return _c('path', {
|
|
23856
24021
|
attrs: {
|
|
23857
|
-
"id": "
|
|
23858
|
-
"d": "
|
|
24022
|
+
"id": "face--satisfied_1_",
|
|
24023
|
+
"d": "M10.75,13c0,0.414-0.336,0.75-0.75,0.75S9.25,13.414,9.25,13s0.336-0.75,0.75-0.75\n\tS10.75,12.586,10.75,13z M22,12.25c-0.414,0-0.75,0.336-0.75,0.75s0.336,0.75,0.75,0.75s0.75-0.336,0.75-0.75S22.414,12.25,22,12.25\n\tz M16,31.36C7.53,31.36,0.64,24.47,0.64,16S7.53,0.64,16,0.64S31.36,7.53,31.36,16S24.47,31.36,16,31.36z M16,1.36\n\tC7.927,1.36,1.36,7.927,1.36,16c0,8.072,6.567,14.64,14.64,14.64c8.072,0,14.64-6.567,14.64-14.64S24.072,1.36,16,1.36z M16,23.36\n\tc-4.145,0-6.213-3.031-6.299-3.161L10.3,19.8c0.019,0.028,1.952,2.84,5.701,2.84s5.682-2.812,5.701-2.84l0.599,0.399\n\tC22.214,20.329,20.145,23.36,16,23.36z"
|
|
23859
24024
|
}
|
|
23860
24025
|
});
|
|
23861
24026
|
};
|
|
@@ -23886,6 +24051,10 @@ const __vue_component__ = /*#__PURE__*/normalizeComponent({
|
|
|
23886
24051
|
|
|
23887
24052
|
var __vue_component__$1 = __vue_component__;
|
|
23888
24053
|
|
|
24054
|
+
/*
|
|
24055
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
24056
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
24057
|
+
*/
|
|
23889
24058
|
var queryParam = {
|
|
23890
24059
|
name: "QueryParamService",
|
|
23891
24060
|
methods: {
|
|
@@ -24036,6 +24205,10 @@ var queryParam = {
|
|
|
24036
24205
|
}
|
|
24037
24206
|
};
|
|
24038
24207
|
|
|
24208
|
+
/*
|
|
24209
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
24210
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
24211
|
+
*/
|
|
24039
24212
|
var StorageService = {
|
|
24040
24213
|
name: "StorageService",
|
|
24041
24214
|
methods: {
|
|
@@ -24054,6 +24227,10 @@ var StorageService = {
|
|
|
24054
24227
|
}
|
|
24055
24228
|
};
|
|
24056
24229
|
|
|
24230
|
+
/*
|
|
24231
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
24232
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
24233
|
+
*/
|
|
24057
24234
|
var task = {
|
|
24058
24235
|
name: "TaskService",
|
|
24059
24236
|
mixins: [StorageService, UtilService],
|
|
@@ -24231,6 +24408,10 @@ var task = {
|
|
|
24231
24408
|
}
|
|
24232
24409
|
};
|
|
24233
24410
|
|
|
24411
|
+
/*
|
|
24412
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
24413
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
24414
|
+
*/
|
|
24234
24415
|
function getPageTitle(vm) {
|
|
24235
24416
|
const {
|
|
24236
24417
|
pageTitle
|
|
@@ -24260,6 +24441,10 @@ var pageTitle = {
|
|
|
24260
24441
|
|
|
24261
24442
|
};
|
|
24262
24443
|
|
|
24444
|
+
/*
|
|
24445
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
24446
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
24447
|
+
*/
|
|
24263
24448
|
var filters = {
|
|
24264
24449
|
byteFormat: function (size) {
|
|
24265
24450
|
let result;
|
|
@@ -24427,56 +24612,61 @@ var filters = {
|
|
|
24427
24612
|
}
|
|
24428
24613
|
};
|
|
24429
24614
|
|
|
24430
|
-
/*
|
|
24615
|
+
/*
|
|
24616
|
+
* Copyright (C) 2023 Nethesis S.r.l.
|
|
24617
|
+
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
24618
|
+
*/
|
|
24431
24619
|
|
|
24432
24620
|
var components = /*#__PURE__*/Object.freeze({
|
|
24433
24621
|
__proto__: null,
|
|
24434
24622
|
NsButton: NsButton,
|
|
24435
|
-
NsEmptyState: __vue_component__$
|
|
24623
|
+
NsEmptyState: __vue_component__$1g,
|
|
24436
24624
|
NsPictogram: NsPictogram,
|
|
24437
|
-
NsCodeSnippet: __vue_component__$
|
|
24625
|
+
NsCodeSnippet: __vue_component__$1e,
|
|
24438
24626
|
NsInlineNotification: NsInlineNotification,
|
|
24439
24627
|
NsProgressBar: NsProgressBar,
|
|
24440
24628
|
NsSvg: NsSvg,
|
|
24441
|
-
NsTile: __vue_component__$
|
|
24442
|
-
NsToastNotification: __vue_component__$
|
|
24443
|
-
NsInfoCard: __vue_component__$
|
|
24444
|
-
NsStatusCard: __vue_component__$
|
|
24445
|
-
NsSystemdServiceCard: __vue_component__$
|
|
24446
|
-
NsPasswordInput: __vue_component__$
|
|
24447
|
-
NsIconMenu: __vue_component__$
|
|
24448
|
-
NsMeterChart: __vue_component__$
|
|
24629
|
+
NsTile: __vue_component__$18,
|
|
24630
|
+
NsToastNotification: __vue_component__$16,
|
|
24631
|
+
NsInfoCard: __vue_component__$14,
|
|
24632
|
+
NsStatusCard: __vue_component__$12,
|
|
24633
|
+
NsSystemdServiceCard: __vue_component__$10,
|
|
24634
|
+
NsPasswordInput: __vue_component__$Z,
|
|
24635
|
+
NsIconMenu: __vue_component__$X,
|
|
24636
|
+
NsMeterChart: __vue_component__$V,
|
|
24449
24637
|
NsLottieAnimation: NsLottieAnimation,
|
|
24450
|
-
NsDangerDeleteModal: __vue_component__$
|
|
24638
|
+
NsDangerDeleteModal: __vue_component__$S,
|
|
24451
24639
|
NsCircleTimer: NsCircleTimer,
|
|
24452
|
-
NsDropdownAction: __vue_component__$
|
|
24640
|
+
NsDropdownAction: __vue_component__$Q,
|
|
24453
24641
|
NsTextInput: NsTextInput,
|
|
24454
|
-
NsBackupCard: __vue_component__$
|
|
24455
|
-
NsWizard: __vue_component__$
|
|
24456
|
-
NsMenuItem: __vue_component__$
|
|
24457
|
-
NsMenuDivider: __vue_component__$
|
|
24458
|
-
NsSystemLogsCard: __vue_component__$
|
|
24642
|
+
NsBackupCard: __vue_component__$N,
|
|
24643
|
+
NsWizard: __vue_component__$L,
|
|
24644
|
+
NsMenuItem: __vue_component__$J,
|
|
24645
|
+
NsMenuDivider: __vue_component__$H,
|
|
24646
|
+
NsSystemLogsCard: __vue_component__$F,
|
|
24459
24647
|
NsModal: NsModal,
|
|
24460
|
-
NsTimePicker: __vue_component__$
|
|
24461
|
-
NsDataTable: __vue_component__$
|
|
24648
|
+
NsTimePicker: __vue_component__$D,
|
|
24649
|
+
NsDataTable: __vue_component__$A,
|
|
24462
24650
|
NsPagination: NsPagination,
|
|
24463
|
-
NsToggle: __vue_component__$
|
|
24651
|
+
NsToggle: __vue_component__$y,
|
|
24464
24652
|
NsTag: NsTag,
|
|
24465
|
-
NsMultiSelect: __vue_component__$
|
|
24466
|
-
NsComboBox: __vue_component__$
|
|
24467
|
-
NsCheckbox: __vue_component__$
|
|
24468
|
-
NsByteSlider: __vue_component__$
|
|
24469
|
-
NsTabs: __vue_component__$
|
|
24470
|
-
NsSlider: __vue_component__$
|
|
24653
|
+
NsMultiSelect: __vue_component__$v,
|
|
24654
|
+
NsComboBox: __vue_component__$t,
|
|
24655
|
+
NsCheckbox: __vue_component__$r,
|
|
24656
|
+
NsByteSlider: __vue_component__$p,
|
|
24657
|
+
NsTabs: __vue_component__$n,
|
|
24658
|
+
NsSlider: __vue_component__$l,
|
|
24471
24659
|
ExclamationMarkPictogram: ExclamationMarkPictogram,
|
|
24472
|
-
GearPictogram: __vue_component__$
|
|
24473
|
-
LovePictogram: __vue_component__$
|
|
24474
|
-
WarningPictogram: __vue_component__$
|
|
24475
|
-
BulldozerPictogram: __vue_component__$
|
|
24476
|
-
GroupPictogram: __vue_component__$
|
|
24477
|
-
HardDrivePictogram: __vue_component__$
|
|
24478
|
-
UserPictogram: __vue_component__$
|
|
24479
|
-
UserProfilePictogram: __vue_component__$
|
|
24660
|
+
GearPictogram: __vue_component__$j,
|
|
24661
|
+
LovePictogram: __vue_component__$h,
|
|
24662
|
+
WarningPictogram: __vue_component__$f,
|
|
24663
|
+
BulldozerPictogram: __vue_component__$d,
|
|
24664
|
+
GroupPictogram: __vue_component__$b,
|
|
24665
|
+
HardDrivePictogram: __vue_component__$9,
|
|
24666
|
+
UserPictogram: __vue_component__$7,
|
|
24667
|
+
UserProfilePictogram: __vue_component__$5,
|
|
24668
|
+
FolderPictogram: __vue_component__$3,
|
|
24669
|
+
FaceSatisfiedPictogram: __vue_component__$1,
|
|
24480
24670
|
UtilService: UtilService,
|
|
24481
24671
|
QueryParamService: queryParam,
|
|
24482
24672
|
TaskService: task,
|
|
@@ -24496,4 +24686,4 @@ const install = function installNs8UiLib(Vue) {
|
|
|
24496
24686
|
});
|
|
24497
24687
|
}; // Create module definition for Vue.use()
|
|
24498
24688
|
|
|
24499
|
-
export { __vue_component__$
|
|
24689
|
+
export { __vue_component__$d as BulldozerPictogram, DateTimeService, ExclamationMarkPictogram, __vue_component__$1 as FaceSatisfiedPictogram, filters as Filters, __vue_component__$3 as FolderPictogram, __vue_component__$j as GearPictogram, __vue_component__$b as GroupPictogram, __vue_component__$9 as HardDrivePictogram, IconService, LottieService, __vue_component__$h as LovePictogram, __vue_component__$N as NsBackupCard, NsButton, __vue_component__$p as NsByteSlider, __vue_component__$r as NsCheckbox, NsCircleTimer, __vue_component__$1e as NsCodeSnippet, __vue_component__$t as NsComboBox, __vue_component__$S as NsDangerDeleteModal, __vue_component__$A as NsDataTable, __vue_component__$Q as NsDropdownAction, __vue_component__$1g as NsEmptyState, __vue_component__$X as NsIconMenu, __vue_component__$14 as NsInfoCard, NsInlineNotification, NsLottieAnimation, __vue_component__$H as NsMenuDivider, __vue_component__$J as NsMenuItem, __vue_component__$V as NsMeterChart, NsModal, __vue_component__$v as NsMultiSelect, NsPagination, __vue_component__$Z as NsPasswordInput, NsPictogram, NsProgressBar, __vue_component__$l as NsSlider, __vue_component__$12 as NsStatusCard, NsSvg, __vue_component__$F as NsSystemLogsCard, __vue_component__$10 as NsSystemdServiceCard, __vue_component__$n as NsTabs, NsTag, NsTextInput, __vue_component__$18 as NsTile, __vue_component__$D as NsTimePicker, __vue_component__$16 as NsToastNotification, __vue_component__$y as NsToggle, __vue_component__$L as NsWizard, pageTitle as PageTitleService, queryParam as QueryParamService, StorageService, task as TaskService, __vue_component__$7 as UserPictogram, __vue_component__$5 as UserProfilePictogram, UtilService, __vue_component__$f as WarningPictogram, install as default };
|