@telia/teddy 0.6.2 → 0.6.4
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/components/dashboard-card/dashboard-card-content.d.ts +1 -1
- package/dist/components/dashboard-card/dashboard-card-footer.cjs +11 -0
- package/dist/components/dashboard-card/dashboard-card-footer.d.ts +4 -0
- package/dist/components/dashboard-card/dashboard-card-footer.js +11 -0
- package/dist/components/dashboard-card/dashboard-card-root.cjs +15 -14
- package/dist/components/dashboard-card/dashboard-card-root.js +15 -14
- package/dist/components/dashboard-card/index.cjs +3 -0
- package/dist/components/dashboard-card/index.d.ts +12 -1
- package/dist/components/dashboard-card/index.js +3 -0
- package/dist/components/navigation-menu/global-navigation/utils.cjs +335 -23
- package/dist/components/navigation-menu/global-navigation/utils.d.ts +524 -42
- package/dist/components/navigation-menu/global-navigation/utils.js +335 -23
- package/dist/style.css +43 -37
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
|
|
3
|
-
export type ContentProps = React.ComponentPropsWithoutRef<'div'
|
|
3
|
+
export type ContentProps = React.ComponentPropsWithoutRef<'div'>;
|
|
4
4
|
export declare const Content: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const React = require("react");
|
|
5
|
+
const clsx = require("clsx");
|
|
6
|
+
const components_dashboardCard_dashboardCardRoot = require("./dashboard-card-root.cjs");
|
|
7
|
+
const Footer = React.forwardRef(({ className, ...props }, forwardRef) => {
|
|
8
|
+
const classes = clsx([components_dashboardCard_dashboardCardRoot.styles[`${components_dashboardCard_dashboardCardRoot.rootClassName}__footer`]], className);
|
|
9
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { ...props, ref: forwardRef, className: classes });
|
|
10
|
+
});
|
|
11
|
+
exports.Footer = Footer;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
export type FooterProps = React.ComponentPropsWithoutRef<'div'>;
|
|
4
|
+
export declare const Footer: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import React__default from "react";
|
|
3
|
+
import clsx from "clsx";
|
|
4
|
+
import { s as styles, rootClassName } from "./dashboard-card-root.js";
|
|
5
|
+
const Footer = React__default.forwardRef(({ className, ...props }, forwardRef) => {
|
|
6
|
+
const classes = clsx([styles[`${rootClassName}__footer`]], className);
|
|
7
|
+
return /* @__PURE__ */ jsx("div", { ...props, ref: forwardRef, className: classes });
|
|
8
|
+
});
|
|
9
|
+
export {
|
|
10
|
+
Footer
|
|
11
|
+
};
|
|
@@ -7,20 +7,21 @@ const reactSlot = require("@radix-ui/react-slot");
|
|
|
7
7
|
require("../../assets/sprite.c3af21af-teddy.svg");
|
|
8
8
|
const components_icon_icon = require("../icon/icon.cjs");
|
|
9
9
|
const styles = {
|
|
10
|
-
"teddy-dashboard-card": "_teddy-dashboard-
|
|
11
|
-
"teddy-dashboard-card__content": "_teddy-dashboard-
|
|
12
|
-
"teddy-dashboard-
|
|
13
|
-
"teddy-dashboard-card--
|
|
14
|
-
"teddy-dashboard-card--
|
|
15
|
-
"teddy-dashboard-card--
|
|
16
|
-
"teddy-dashboard-card--
|
|
17
|
-
"teddy-dashboard-card--
|
|
18
|
-
"teddy-dashboard-
|
|
19
|
-
"teddy-dashboard-
|
|
20
|
-
"teddy-dashboard-
|
|
21
|
-
"teddy-dashboard-
|
|
22
|
-
"teddy-dashboard-
|
|
23
|
-
"teddy-dashboard-
|
|
10
|
+
"teddy-dashboard-card": "_teddy-dashboard-card_hpo7d_3",
|
|
11
|
+
"teddy-dashboard-card__content": "_teddy-dashboard-card__content_hpo7d_18",
|
|
12
|
+
"teddy-dashboard-card__footer": "_teddy-dashboard-card__footer_hpo7d_19",
|
|
13
|
+
"teddy-dashboard-card--white": "_teddy-dashboard-card--white_hpo7d_22",
|
|
14
|
+
"teddy-dashboard-card--disabled": "_teddy-dashboard-card--disabled_hpo7d_26",
|
|
15
|
+
"teddy-dashboard-card--border": "_teddy-dashboard-card--border_hpo7d_35",
|
|
16
|
+
"teddy-dashboard-card--grey": "_teddy-dashboard-card--grey_hpo7d_47",
|
|
17
|
+
"teddy-dashboard-card--purple-light": "_teddy-dashboard-card--purple-light_hpo7d_60",
|
|
18
|
+
"teddy-dashboard-card--beige-light": "_teddy-dashboard-card--beige-light_hpo7d_73",
|
|
19
|
+
"teddy-dashboard-card__layout": "_teddy-dashboard-card__layout_hpo7d_86",
|
|
20
|
+
"teddy-dashboard-card__avatar": "_teddy-dashboard-card__avatar_hpo7d_96",
|
|
21
|
+
"teddy-dashboard-card__illustration": "_teddy-dashboard-card__illustration_hpo7d_99",
|
|
22
|
+
"teddy-dashboard-card__heading": "_teddy-dashboard-card__heading_hpo7d_102",
|
|
23
|
+
"teddy-dashboard-card__subtitle": "_teddy-dashboard-card__subtitle_hpo7d_106",
|
|
24
|
+
"teddy-dashboard-card__chevron": "_teddy-dashboard-card__chevron_hpo7d_110"
|
|
24
25
|
};
|
|
25
26
|
const rootClassName = "teddy-dashboard-card";
|
|
26
27
|
const RootContext = React.createContext(void 0);
|
|
@@ -5,20 +5,21 @@ import { Slottable, Slot } from "@radix-ui/react-slot";
|
|
|
5
5
|
import "../../assets/sprite.c3af21af-teddy.svg";
|
|
6
6
|
import { Icon } from "../icon/icon.js";
|
|
7
7
|
const styles = {
|
|
8
|
-
"teddy-dashboard-card": "_teddy-dashboard-
|
|
9
|
-
"teddy-dashboard-card__content": "_teddy-dashboard-
|
|
10
|
-
"teddy-dashboard-
|
|
11
|
-
"teddy-dashboard-card--
|
|
12
|
-
"teddy-dashboard-card--
|
|
13
|
-
"teddy-dashboard-card--
|
|
14
|
-
"teddy-dashboard-card--
|
|
15
|
-
"teddy-dashboard-card--
|
|
16
|
-
"teddy-dashboard-
|
|
17
|
-
"teddy-dashboard-
|
|
18
|
-
"teddy-dashboard-
|
|
19
|
-
"teddy-dashboard-
|
|
20
|
-
"teddy-dashboard-
|
|
21
|
-
"teddy-dashboard-
|
|
8
|
+
"teddy-dashboard-card": "_teddy-dashboard-card_hpo7d_3",
|
|
9
|
+
"teddy-dashboard-card__content": "_teddy-dashboard-card__content_hpo7d_18",
|
|
10
|
+
"teddy-dashboard-card__footer": "_teddy-dashboard-card__footer_hpo7d_19",
|
|
11
|
+
"teddy-dashboard-card--white": "_teddy-dashboard-card--white_hpo7d_22",
|
|
12
|
+
"teddy-dashboard-card--disabled": "_teddy-dashboard-card--disabled_hpo7d_26",
|
|
13
|
+
"teddy-dashboard-card--border": "_teddy-dashboard-card--border_hpo7d_35",
|
|
14
|
+
"teddy-dashboard-card--grey": "_teddy-dashboard-card--grey_hpo7d_47",
|
|
15
|
+
"teddy-dashboard-card--purple-light": "_teddy-dashboard-card--purple-light_hpo7d_60",
|
|
16
|
+
"teddy-dashboard-card--beige-light": "_teddy-dashboard-card--beige-light_hpo7d_73",
|
|
17
|
+
"teddy-dashboard-card__layout": "_teddy-dashboard-card__layout_hpo7d_86",
|
|
18
|
+
"teddy-dashboard-card__avatar": "_teddy-dashboard-card__avatar_hpo7d_96",
|
|
19
|
+
"teddy-dashboard-card__illustration": "_teddy-dashboard-card__illustration_hpo7d_99",
|
|
20
|
+
"teddy-dashboard-card__heading": "_teddy-dashboard-card__heading_hpo7d_102",
|
|
21
|
+
"teddy-dashboard-card__subtitle": "_teddy-dashboard-card__subtitle_hpo7d_106",
|
|
22
|
+
"teddy-dashboard-card__chevron": "_teddy-dashboard-card__chevron_hpo7d_110"
|
|
22
23
|
};
|
|
23
24
|
const rootClassName = "teddy-dashboard-card";
|
|
24
25
|
const RootContext = React__default.createContext(void 0);
|
|
@@ -6,6 +6,7 @@ const components_dashboardCard_dashboardCardSubtitle = require("./dashboard-card
|
|
|
6
6
|
const components_dashboardCard_dashboardCardAvatar = require("./dashboard-card-avatar.cjs");
|
|
7
7
|
const components_dashboardCard_dashboardCardContent = require("./dashboard-card-content.cjs");
|
|
8
8
|
const components_dashboardCard_dashboardCardIllustration = require("./dashboard-card-illustration.cjs");
|
|
9
|
+
const components_dashboardCard_dashboardCardFooter = require("./dashboard-card-footer.cjs");
|
|
9
10
|
const DashboardCard = components_dashboardCard_dashboardCardRoot.Root;
|
|
10
11
|
DashboardCard.displayName = "DashboardCard";
|
|
11
12
|
DashboardCard.Avatar = components_dashboardCard_dashboardCardAvatar.Avatar;
|
|
@@ -18,4 +19,6 @@ DashboardCard.Subtitle = components_dashboardCard_dashboardCardSubtitle.Subtitle
|
|
|
18
19
|
DashboardCard.Subtitle.displayName = "DashboardCard.Subtitle";
|
|
19
20
|
DashboardCard.Content = components_dashboardCard_dashboardCardContent.Content;
|
|
20
21
|
DashboardCard.Content.displayName = "DashboardCard.Content";
|
|
22
|
+
DashboardCard.Footer = components_dashboardCard_dashboardCardFooter.Footer;
|
|
23
|
+
DashboardCard.Footer.displayName = "DashboardCard.Footer";
|
|
21
24
|
exports.DashboardCard = DashboardCard;
|
|
@@ -4,14 +4,16 @@ import { Subtitle, SubtitleProps } from './dashboard-card-subtitle';
|
|
|
4
4
|
import { Avatar, AvatarProps } from './dashboard-card-avatar';
|
|
5
5
|
import { Content, ContentProps } from './dashboard-card-content';
|
|
6
6
|
import { Illustration, IllustrationProps } from './dashboard-card-illustration';
|
|
7
|
+
import { Footer, FooterProps } from './dashboard-card-footer';
|
|
7
8
|
|
|
8
9
|
export type DashboardCardProps = {
|
|
9
10
|
Root: RootProps;
|
|
10
11
|
Avatar: AvatarProps;
|
|
12
|
+
Illustration: IllustrationProps;
|
|
11
13
|
Heading: HeadingProps;
|
|
12
14
|
Subtitle: SubtitleProps;
|
|
13
15
|
Content: ContentProps;
|
|
14
|
-
|
|
16
|
+
Footer: FooterProps;
|
|
15
17
|
};
|
|
16
18
|
/**
|
|
17
19
|
* Dashboard card is used as a navigation anchor from MinSide homepage to other pages.
|
|
@@ -81,5 +83,14 @@ declare const DashboardCard: import('react').ForwardRefExoticComponent<Omit<impo
|
|
|
81
83
|
* <DashboardCard.Content/>
|
|
82
84
|
*/
|
|
83
85
|
Content: typeof Content;
|
|
86
|
+
/**
|
|
87
|
+
* Footer component for the DashboardCard.
|
|
88
|
+
*
|
|
89
|
+
* @component
|
|
90
|
+
*
|
|
91
|
+
* @example
|
|
92
|
+
* <DashboardCard.Footer/>
|
|
93
|
+
*/
|
|
94
|
+
Footer: typeof Footer;
|
|
84
95
|
};
|
|
85
96
|
export { DashboardCard };
|
|
@@ -4,6 +4,7 @@ import { Subtitle } from "./dashboard-card-subtitle.js";
|
|
|
4
4
|
import { Avatar } from "./dashboard-card-avatar.js";
|
|
5
5
|
import { Content } from "./dashboard-card-content.js";
|
|
6
6
|
import { Illustration } from "./dashboard-card-illustration.js";
|
|
7
|
+
import { Footer } from "./dashboard-card-footer.js";
|
|
7
8
|
const DashboardCard = Root;
|
|
8
9
|
DashboardCard.displayName = "DashboardCard";
|
|
9
10
|
DashboardCard.Avatar = Avatar;
|
|
@@ -16,6 +17,8 @@ DashboardCard.Subtitle = Subtitle;
|
|
|
16
17
|
DashboardCard.Subtitle.displayName = "DashboardCard.Subtitle";
|
|
17
18
|
DashboardCard.Content = Content;
|
|
18
19
|
DashboardCard.Content.displayName = "DashboardCard.Content";
|
|
20
|
+
DashboardCard.Footer = Footer;
|
|
21
|
+
DashboardCard.Footer.displayName = "DashboardCard.Footer";
|
|
19
22
|
export {
|
|
20
23
|
DashboardCard
|
|
21
24
|
};
|
|
@@ -255,14 +255,18 @@ const PRIVATE_LINKS = {
|
|
|
255
255
|
}
|
|
256
256
|
],
|
|
257
257
|
links: [
|
|
258
|
+
{
|
|
259
|
+
name: "Alle mobilabonnement",
|
|
260
|
+
link: "/mobilabonnement/"
|
|
261
|
+
},
|
|
258
262
|
{
|
|
259
263
|
name: "Ubegrenset data",
|
|
260
264
|
link: "/mobilabonnement/ubegrenset-data/",
|
|
261
265
|
appKey: APP_KEYS["web-shop"]
|
|
262
266
|
},
|
|
263
267
|
{
|
|
264
|
-
name: "Mobilabonnement for
|
|
265
|
-
link: "/mobilabonnement/
|
|
268
|
+
name: "Mobilabonnement for familie",
|
|
269
|
+
link: "/mobilabonnement/familie/",
|
|
266
270
|
appKey: APP_KEYS["web-shop"]
|
|
267
271
|
},
|
|
268
272
|
{
|
|
@@ -270,11 +274,6 @@ const PRIVATE_LINKS = {
|
|
|
270
274
|
link: "/mobilabonnement/barn/",
|
|
271
275
|
appKey: APP_KEYS["web-shop"]
|
|
272
276
|
},
|
|
273
|
-
{
|
|
274
|
-
name: "Mobilabonnement for familie",
|
|
275
|
-
link: "/mobilabonnement/familie/",
|
|
276
|
-
appKey: APP_KEYS["web-shop"]
|
|
277
|
-
},
|
|
278
277
|
{
|
|
279
278
|
name: "Kontantkort",
|
|
280
279
|
link: "/mobilabonnement/kontantkort/",
|
|
@@ -286,13 +285,13 @@ const PRIVATE_LINKS = {
|
|
|
286
285
|
appKey: APP_KEYS["web-shop"]
|
|
287
286
|
},
|
|
288
287
|
{
|
|
289
|
-
name: "
|
|
290
|
-
link: "/mobilabonnement/
|
|
291
|
-
appKey: APP_KEYS["
|
|
288
|
+
name: "Prisliste",
|
|
289
|
+
link: "/mobilabonnement/priser/",
|
|
290
|
+
appKey: APP_KEYS["web-shop"]
|
|
292
291
|
},
|
|
293
292
|
{
|
|
294
|
-
name: "
|
|
295
|
-
link: "/mobilabonnement/",
|
|
293
|
+
name: "Hjelp mobil",
|
|
294
|
+
link: "/mobilabonnement/hjelp/",
|
|
296
295
|
appKey: APP_KEYS["open-pages"]
|
|
297
296
|
}
|
|
298
297
|
]
|
|
@@ -637,29 +636,248 @@ const BUSINESS_LINKS = {
|
|
|
637
636
|
name: "Produkter og tjenester",
|
|
638
637
|
link: "/bedrift/produkter-og-tjenester/",
|
|
639
638
|
appKey: APP_KEYS["open-pages"],
|
|
640
|
-
links: [
|
|
641
|
-
|
|
639
|
+
links: [
|
|
640
|
+
{
|
|
641
|
+
name: "Mobil og utstyr",
|
|
642
|
+
link: "/bedrift/mobil-og-utstyr/",
|
|
643
|
+
appKey: APP_KEYS["open-pages"]
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
name: "Telefoni og kundebetjening",
|
|
647
|
+
link: "/bedrift/telefoni-og-kundebetjening/",
|
|
648
|
+
appKey: APP_KEYS["open-pages"]
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
name: "Internett og Bredbånd",
|
|
652
|
+
link: "/bedrift/internett-og-bredband/",
|
|
653
|
+
appKey: APP_KEYS["open-pages"]
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
name: "Nettverk",
|
|
657
|
+
link: "/bedrift/nettverk/",
|
|
658
|
+
appKey: APP_KEYS["open-pages"]
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
name: "Sikkerhet",
|
|
662
|
+
link: "/bedrift/sikkerhet/",
|
|
663
|
+
appKey: APP_KEYS["open-pages"]
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
name: "Sky",
|
|
667
|
+
link: "/bedrift/sky/",
|
|
668
|
+
appKey: APP_KEYS["open-pages"]
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
name: "IoT",
|
|
672
|
+
link: "/bedrift/iot/",
|
|
673
|
+
appKey: APP_KEYS["open-pages"]
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
name: "Crowd Insights",
|
|
677
|
+
link: "/bedrift/crowd-insights/",
|
|
678
|
+
appKey: APP_KEYS["open-pages"]
|
|
679
|
+
}
|
|
680
|
+
],
|
|
681
|
+
highlightedLinks: [
|
|
682
|
+
{
|
|
683
|
+
name: "Hjelpesider mobil",
|
|
684
|
+
link: "/bedrift/kundeservice/mobil/#selvhjelp-mobil",
|
|
685
|
+
appKey: APP_KEYS["open-pages"]
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
name: "Hjelpesider datakom",
|
|
689
|
+
link: "/bedrift/kundeservice/datakommunikasjon/#selvhjelp-datakom",
|
|
690
|
+
appKey: APP_KEYS["open-pages"]
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
name: "Bransjer",
|
|
694
|
+
link: "/bedrift/teliabyen/",
|
|
695
|
+
appKey: APP_KEYS["open-pages"]
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
name: "Be om tilbud",
|
|
699
|
+
link: "/bedrift/produkter-og-tjenester/be-om-tilbud/",
|
|
700
|
+
appKey: APP_KEYS["open-pages"]
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
name: "Alle produkter og tjenester",
|
|
704
|
+
link: "/bedrift/produkter-og-tjenester/",
|
|
705
|
+
appKey: APP_KEYS["open-pages"]
|
|
706
|
+
}
|
|
707
|
+
]
|
|
642
708
|
},
|
|
643
709
|
{
|
|
644
710
|
name: "Sikkerhet",
|
|
645
711
|
link: "/bedrift/sikkerhet/",
|
|
646
712
|
appKey: APP_KEYS["open-pages"],
|
|
647
|
-
links: [
|
|
648
|
-
|
|
713
|
+
links: [
|
|
714
|
+
{
|
|
715
|
+
name: "Trygge ansatte",
|
|
716
|
+
link: "/bedrift/sikkerhet/trygg-surfing/",
|
|
717
|
+
appKey: APP_KEYS["open-pages"]
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
name: "Sikre skytjenester",
|
|
721
|
+
link: "/bedrift/sikkerhet/sikre-skytjenester/",
|
|
722
|
+
appKey: APP_KEYS["open-pages"]
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
name: "Sikre nettverk",
|
|
726
|
+
link: "/bedrift/sikkerhet/sikre-nettverket/",
|
|
727
|
+
appKey: APP_KEYS["open-pages"]
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
name: "Alt om sikkerhet",
|
|
731
|
+
link: "/bedrift/sikkerhet/",
|
|
732
|
+
appKey: APP_KEYS["open-pages"]
|
|
733
|
+
}
|
|
734
|
+
],
|
|
735
|
+
highlightedLinks: [
|
|
736
|
+
{
|
|
737
|
+
name: "Sikkerhetsrådgivning",
|
|
738
|
+
link: "/bedrift/sikkerhet/sikkerhetsradgivning/",
|
|
739
|
+
appKey: APP_KEYS["open-pages"]
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
name: "Sikkerhetsløsninger",
|
|
743
|
+
link: "/bedrift/sikkerhet/sikkerhetslosninger/",
|
|
744
|
+
appKey: APP_KEYS["open-pages"]
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
name: "Proaktiv support og drift",
|
|
748
|
+
link: "/bedrift/sikkerhet/proaktiv-support-og-drift/",
|
|
749
|
+
appKey: APP_KEYS["open-pages"]
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
name: "Gjenoppretting og læring",
|
|
753
|
+
link: "/bedrift/sikkerhet/gjenoppretting-og-laring/",
|
|
754
|
+
appKey: APP_KEYS["open-pages"]
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
name: "Be om tilbud",
|
|
758
|
+
link: "/bedrift/produkter-og-tjenester/be-om-tilbud/",
|
|
759
|
+
appKey: APP_KEYS["open-pages"]
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
name: "Bransjer",
|
|
763
|
+
link: "/bedrift/teliabyen/",
|
|
764
|
+
appKey: APP_KEYS["open-pages"]
|
|
765
|
+
}
|
|
766
|
+
]
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
name: "Kundehistorier",
|
|
770
|
+
link: "/bedrift/produkter-og-tjenester/kundehistorier/",
|
|
771
|
+
appKey: APP_KEYS["open-pages"],
|
|
772
|
+
links: [
|
|
773
|
+
{
|
|
774
|
+
name: "Innovasjon med 5G",
|
|
775
|
+
link: "/bedrift/produkter-og-tjenester/kundehistorier/innovasjon-med-5g/",
|
|
776
|
+
appKey: APP_KEYS["open-pages"]
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
name: "Helhetlige løsninger",
|
|
780
|
+
link: "/bedrift/produkter-og-tjenester/kundehistorier/helhetlige-losninger/",
|
|
781
|
+
appKey: APP_KEYS["open-pages"]
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
name: "Sikkerhet i alle ledd",
|
|
785
|
+
link: "/bedrift/produkter-og-tjenester/kundehistorier/sikkerhet-i-alle-ledd/",
|
|
786
|
+
appKey: APP_KEYS["open-pages"]
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
name: "Grønne løsninger",
|
|
790
|
+
link: "/bedrift/produkter-og-tjenester/kundehistorier/gronne-losninger/",
|
|
791
|
+
appKey: APP_KEYS["open-pages"]
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
name: "Alt om kundehistorier",
|
|
795
|
+
link: "/bedrift/produkter-og-tjenester/kundehistorier/",
|
|
796
|
+
appKey: APP_KEYS["open-pages"]
|
|
797
|
+
}
|
|
798
|
+
],
|
|
799
|
+
highlightedLinks: [
|
|
800
|
+
{
|
|
801
|
+
name: "Bransjer",
|
|
802
|
+
link: "/bedrift/teliabyen/",
|
|
803
|
+
appKey: APP_KEYS["open-pages"]
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
name: "Be om tilbud",
|
|
807
|
+
link: "/bedrift/produkter-og-tjenester/be-om-tilbud/",
|
|
808
|
+
appKey: APP_KEYS["open-pages"]
|
|
809
|
+
}
|
|
810
|
+
]
|
|
649
811
|
},
|
|
650
812
|
{
|
|
651
813
|
name: "Innovasjon",
|
|
652
814
|
link: "/bedrift/innovasjon-og-startup/",
|
|
653
815
|
appKey: APP_KEYS["open-pages"],
|
|
654
|
-
links: [
|
|
655
|
-
|
|
816
|
+
links: [
|
|
817
|
+
{
|
|
818
|
+
name: "Innovasjonsløsninger",
|
|
819
|
+
link: "/bedrift/innovasjon-og-startup/#losninger",
|
|
820
|
+
appKey: APP_KEYS["open-pages"]
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
name: "Telia Startup",
|
|
824
|
+
link: "/bedrift/innovasjon-og-startup/telia-startup/",
|
|
825
|
+
appKey: APP_KEYS["open-pages"]
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
name: "Våre startups",
|
|
829
|
+
link: "/bedrift/innovasjon-og-startup/vare-startups/",
|
|
830
|
+
appKey: APP_KEYS["open-pages"]
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
name: "Alt om Innovasjon",
|
|
834
|
+
link: "/bedrift/innovasjon-og-startup/",
|
|
835
|
+
appKey: APP_KEYS["open-pages"]
|
|
836
|
+
}
|
|
837
|
+
],
|
|
838
|
+
highlightedLinks: [
|
|
839
|
+
{
|
|
840
|
+
name: "Kundehistorier",
|
|
841
|
+
link: "/bedrift/produkter-og-tjenester/kundehistorier/",
|
|
842
|
+
appKey: APP_KEYS["open-pages"]
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
name: "Bransjer",
|
|
846
|
+
link: "/bedrift/teliabyen/",
|
|
847
|
+
appKey: APP_KEYS["open-pages"]
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
name: "Be om tilbud",
|
|
851
|
+
link: "/bedrift/produkter-og-tjenester/be-om-tilbud/",
|
|
852
|
+
appKey: APP_KEYS["open-pages"]
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
name: "5G",
|
|
856
|
+
link: "/bedrift/5g-bedrift/",
|
|
857
|
+
appKey: APP_KEYS["open-pages"]
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
name: "IoT",
|
|
861
|
+
link: "/bedrift/iot/",
|
|
862
|
+
appKey: APP_KEYS["open-pages"]
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
name: "Crowd Insights",
|
|
866
|
+
link: "/bedrift/crowd-insights/",
|
|
867
|
+
appKey: APP_KEYS["open-pages"]
|
|
868
|
+
}
|
|
869
|
+
]
|
|
656
870
|
},
|
|
657
871
|
{
|
|
658
872
|
name: "Nettbutikk",
|
|
659
|
-
link: "/bedrift/
|
|
660
|
-
appKey: APP_KEYS["
|
|
661
|
-
highlightedLinks: [],
|
|
873
|
+
link: "/bedrift/mobiltelefoner/",
|
|
874
|
+
appKey: APP_KEYS["web-shop"],
|
|
662
875
|
links: [
|
|
876
|
+
{
|
|
877
|
+
name: "Be om tilbud",
|
|
878
|
+
link: "/bedrift/produkter-og-tjenester/be-om-tilbud/",
|
|
879
|
+
appKey: APP_KEYS["open-pages"]
|
|
880
|
+
},
|
|
663
881
|
{
|
|
664
882
|
name: "Mobilabonnement",
|
|
665
883
|
link: "/bedrift/mobilabonnement/",
|
|
@@ -675,14 +893,108 @@ const BUSINESS_LINKS = {
|
|
|
675
893
|
link: "/bedrift/mobilt-bredband/",
|
|
676
894
|
appKey: APP_KEYS["web-shop"]
|
|
677
895
|
}
|
|
896
|
+
],
|
|
897
|
+
highlightedLinks: [
|
|
898
|
+
{
|
|
899
|
+
name: "Telia Ubegrenset",
|
|
900
|
+
link: "/bedrift/mobilabonnement/telia-ubegrenset/",
|
|
901
|
+
appKey: APP_KEYS["web-shop"]
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
name: "Telia Dobbel",
|
|
905
|
+
link: "/bedrift/mobilabonnement/telia-dobbel/",
|
|
906
|
+
appKey: APP_KEYS["web-shop"]
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
name: "Data Boost for ansatte",
|
|
910
|
+
link: "/bedrift/mobil-og-utstyr/data-boost-b2b/",
|
|
911
|
+
appKey: APP_KEYS["web-shop"]
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
name: "Ekstra datapakke for ansatte",
|
|
915
|
+
link: "/bedrift/mobil-og-utstyr/ekstra-datapakker/",
|
|
916
|
+
appKey: APP_KEYS["web-shop"]
|
|
917
|
+
}
|
|
678
918
|
]
|
|
679
919
|
},
|
|
680
920
|
{
|
|
681
921
|
name: "Hjelp",
|
|
682
922
|
link: "/bedrift/kundeservice/",
|
|
683
923
|
appKey: APP_KEYS["open-pages"],
|
|
684
|
-
links: [
|
|
685
|
-
|
|
924
|
+
links: [
|
|
925
|
+
{
|
|
926
|
+
name: "Hjelpesider mobil og telefoni",
|
|
927
|
+
link: "/bedrift/kundeservice/mobil/#selvhjelp-mobil",
|
|
928
|
+
appKey: APP_KEYS["open-pages"]
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
name: "Hjelpesider datakommunikasjon",
|
|
932
|
+
link: "/bedrift/kundeservice/datakommunikasjon/#selvhjelp-datakom",
|
|
933
|
+
appKey: APP_KEYS["open-pages"]
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
name: "Kundeservice mobil og telefoni",
|
|
937
|
+
link: "/bedrift/kundeservice/mobil/",
|
|
938
|
+
appKey: APP_KEYS["open-pages"]
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
name: "Kundeservice datakommunikasjon",
|
|
942
|
+
link: "/bedrift/kundeservice/datakommunikasjon/",
|
|
943
|
+
appKey: APP_KEYS["open-pages"]
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
name: "Kundeservice TV og digital skilting",
|
|
947
|
+
link: "/bedrift/kundeservice/tv-og-digital-skilting/",
|
|
948
|
+
appKey: APP_KEYS["open-pages"]
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
name: "Alt om hjelp",
|
|
952
|
+
link: "/bedrift/kundeservice/",
|
|
953
|
+
appKey: APP_KEYS["open-pages"]
|
|
954
|
+
}
|
|
955
|
+
],
|
|
956
|
+
highlightedLinks: [
|
|
957
|
+
{
|
|
958
|
+
name: "SIM, PIN og PUK",
|
|
959
|
+
link: "/mobilabonnement/sim-kort/",
|
|
960
|
+
appKey: APP_KEYS["open-pages"]
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
name: "Dekningskart",
|
|
964
|
+
link: "/nett/dekning/",
|
|
965
|
+
appKey: APP_KEYS["open-pages"]
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
name: "Faktura",
|
|
969
|
+
link: "/bedrift/kundeservice/mobil/faktura-hjelpesider/",
|
|
970
|
+
appKey: APP_KEYS["open-pages"]
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
name: "Eierskifte",
|
|
974
|
+
link: "/bedrift/mobil-og-utstyr/bytte-eier-pa-bedriftsabonnement/",
|
|
975
|
+
appKey: APP_KEYS["open-pages"]
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
name: "Min Bedrift",
|
|
979
|
+
link: "https://beta.minbedrift.telia.no/",
|
|
980
|
+
appKey: APP_KEYS["my-business"]
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
name: "Min Portal",
|
|
984
|
+
link: "https://minportal.telia.no/",
|
|
985
|
+
appKey: APP_KEYS["my-portal"]
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
name: "Sentralbord",
|
|
989
|
+
link: "https://teliasmartconnect.com/",
|
|
990
|
+
appKey: APP_KEYS["open-pages"]
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
name: "Ny kunde",
|
|
994
|
+
link: "/bedrift/velkommen/",
|
|
995
|
+
appKey: APP_KEYS["open-pages"]
|
|
996
|
+
}
|
|
997
|
+
]
|
|
686
998
|
}
|
|
687
999
|
]
|
|
688
1000
|
};
|