@telia/teddy 0.1.17 → 0.1.19
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/card/card-illustration.d.ts +1 -1
- package/dist/components/card/index.d.ts +1 -1
- package/dist/components/checkbox/checkbox-group.d.ts +2 -2
- package/dist/components/checkbox/index.d.ts +2 -2
- package/dist/components/chip/chip-indicator.d.ts +1 -1
- package/dist/components/chip/index.d.ts +1 -1
- package/dist/components/expandable-card/expandable-card-button.d.ts +2 -2
- package/dist/components/expandable-card/index.d.ts +2 -2
- package/dist/components/icon/utils.d.ts +1 -1
- package/dist/components/index.cjs +2 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +2 -0
- package/dist/components/meter-bar/index.cjs +9 -0
- package/dist/components/meter-bar/index.d.ts +29 -0
- package/dist/components/meter-bar/index.js +9 -0
- package/dist/components/meter-bar/meter-bar-indicator.cjs +65 -0
- package/dist/components/meter-bar/meter-bar-indicator.d.ts +19 -0
- package/dist/components/meter-bar/meter-bar-indicator.js +65 -0
- package/dist/components/meter-bar/meter-bar-root.cjs +9 -0
- package/dist/components/meter-bar/meter-bar-root.d.ts +22 -0
- package/dist/components/meter-bar/meter-bar-root.js +9 -0
- package/dist/components/meter-bar/utils.cjs +24 -0
- package/dist/components/meter-bar/utils.d.ts +6 -0
- package/dist/components/meter-bar/utils.js +24 -0
- package/dist/components/modal/modal.cjs +1 -0
- package/dist/components/modal/modal.js +1 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-desktop.cjs +2 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-desktop.js +2 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.cjs +2 -3
- package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.d.ts +8 -1
- package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.js +3 -4
- package/dist/components/navigation-menu/global-navigation/utils.cjs +276 -16
- package/dist/components/navigation-menu/global-navigation/utils.d.ts +415 -10
- package/dist/components/navigation-menu/global-navigation/utils.js +276 -16
- package/dist/components/navigation-menu/navigation-menu.cjs +1 -0
- package/dist/components/navigation-menu/navigation-menu.d.ts +1 -1
- package/dist/components/navigation-menu/navigation-menu.js +1 -0
- package/dist/components/notabene/notabene-icon.d.ts +1 -1
- package/dist/components/notification/notification.d.ts +4 -4
- package/dist/components/progress-bar/progress-bar.cjs +4 -4
- package/dist/components/progress-bar/progress-bar.js +4 -4
- package/dist/components/radio-card-group/radio-card-group-content.cjs +1 -0
- package/dist/components/radio-card-group/radio-card-group-content.js +1 -0
- package/dist/components/radio-card-group/radio-card-group-item-title.cjs +215 -199
- package/dist/components/radio-card-group/radio-card-group-item-title.js +215 -199
- package/dist/components/radio-card-group/radio-card-group-item.cjs +1 -0
- package/dist/components/radio-card-group/radio-card-group-item.js +1 -0
- package/dist/components/scroll-area/index.d.ts +2 -2
- package/dist/components/scroll-area/scroll-area-button.d.ts +2 -2
- package/dist/components/tabs/index.d.ts +3 -3
- package/dist/components/tabs/tabs-root.d.ts +1 -1
- package/dist/components/tabs/tabs-scroll-button.d.ts +2 -2
- package/dist/components/text-field/index.d.ts +2 -2
- package/dist/components/text-field/text-field-button.d.ts +2 -2
- package/dist/components/toggle/toggle.d.ts +1 -1
- package/dist/components/tooltip/index.d.ts +3 -3
- package/dist/main.cjs +2 -0
- package/dist/main.js +2 -0
- package/dist/style.css +188 -114
- package/dist/utils/generate-styling/grid.d.ts +24 -24
- package/dist/utils/generate-styling/index.d.ts +16 -16
- package/dist/utils/generate-styling/util.d.ts +2 -2
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export type Link = {
|
|
|
16
16
|
appKey?: AppKey;
|
|
17
17
|
links?: Link[];
|
|
18
18
|
icon?: IconName;
|
|
19
|
+
highlightedLinks?: Link[];
|
|
19
20
|
};
|
|
20
21
|
export declare const MY_PAGE_LINKS: {
|
|
21
22
|
readonly name: "Min Side";
|
|
@@ -131,15 +132,74 @@ export declare const PRIVATE_LINKS: {
|
|
|
131
132
|
readonly name: "Privat";
|
|
132
133
|
readonly link: "/";
|
|
133
134
|
readonly appKey: "open-pages";
|
|
135
|
+
readonly highlightedLinks: [{
|
|
136
|
+
readonly name: "Mobilabonnement";
|
|
137
|
+
readonly link: "/mobil/mobilabonnement/priser/";
|
|
138
|
+
readonly appKey: "web-shop";
|
|
139
|
+
}, {
|
|
140
|
+
readonly name: "Mobiltelefoner";
|
|
141
|
+
readonly link: "/mobil/mobiltelefoner/";
|
|
142
|
+
readonly appKey: "web-shop";
|
|
143
|
+
}, {
|
|
144
|
+
readonly name: "Varemerker ";
|
|
145
|
+
readonly link: "/varemerker/";
|
|
146
|
+
readonly appKey: "web-shop";
|
|
147
|
+
}, {
|
|
148
|
+
readonly name: "Kampanjer";
|
|
149
|
+
readonly link: "/kampanje/";
|
|
150
|
+
readonly appKey: "open-pages";
|
|
151
|
+
}, {
|
|
152
|
+
readonly name: "Faktura";
|
|
153
|
+
readonly link: "/hjelp/faktura/";
|
|
154
|
+
readonly appKey: "open-pages";
|
|
155
|
+
}, {
|
|
156
|
+
readonly name: "Se Telia Play";
|
|
157
|
+
readonly link: "https://www.teliaplay.no";
|
|
158
|
+
readonly appKey: "open-pages";
|
|
159
|
+
}];
|
|
134
160
|
readonly links: [{
|
|
135
161
|
readonly name: "Logo";
|
|
136
162
|
readonly link: "/";
|
|
137
163
|
readonly appKey: "open-pages";
|
|
138
164
|
readonly links: [];
|
|
165
|
+
readonly highlightedLinks: [];
|
|
139
166
|
}, {
|
|
140
167
|
readonly name: "Mobil";
|
|
141
168
|
readonly link: "/mobil/";
|
|
142
169
|
readonly appKey: "open-pages";
|
|
170
|
+
readonly highlightedLinks: [{
|
|
171
|
+
readonly name: "Telia X";
|
|
172
|
+
readonly link: "/mobil/mobilabonnement/ubegrenset-data/";
|
|
173
|
+
readonly appKey: "web-shop";
|
|
174
|
+
}, {
|
|
175
|
+
readonly name: "Pakketilbud";
|
|
176
|
+
readonly link: "/mobil/mobilabonnement/pakketilbud/";
|
|
177
|
+
readonly appKey: "web-shop";
|
|
178
|
+
}, {
|
|
179
|
+
readonly name: "iPhone";
|
|
180
|
+
readonly link: "/varemerker/apple/iphone/";
|
|
181
|
+
readonly appKey: "web-shop";
|
|
182
|
+
}, {
|
|
183
|
+
readonly name: "Airpods";
|
|
184
|
+
readonly link: "/varemerker/apple/airpods/";
|
|
185
|
+
readonly appKey: "web-shop";
|
|
186
|
+
}, {
|
|
187
|
+
readonly name: "Kampanjer";
|
|
188
|
+
readonly link: "/kampanje";
|
|
189
|
+
readonly appKey: "open-pages";
|
|
190
|
+
}, {
|
|
191
|
+
readonly name: "SIM, PIN og PUK";
|
|
192
|
+
readonly link: "/mobil/mobilabonnement/sim-kort/";
|
|
193
|
+
readonly appKey: "open-pages";
|
|
194
|
+
}, {
|
|
195
|
+
readonly name: "Utland";
|
|
196
|
+
readonly link: "/mobil/mobilabonnement/utland/";
|
|
197
|
+
readonly appKey: "open-pages";
|
|
198
|
+
}, {
|
|
199
|
+
readonly name: "Eierskifte";
|
|
200
|
+
readonly link: "/mobil/hjelp/bytte-eier/";
|
|
201
|
+
readonly appKey: "open-pages";
|
|
202
|
+
}];
|
|
143
203
|
readonly links: [{
|
|
144
204
|
readonly name: "Mobilabonnement";
|
|
145
205
|
readonly link: "/mobil/mobilabonnement/";
|
|
@@ -160,10 +220,6 @@ export declare const PRIVATE_LINKS: {
|
|
|
160
220
|
readonly name: "Tilbehør";
|
|
161
221
|
readonly link: "/mobil/tilbehor/";
|
|
162
222
|
readonly appKey: "web-shop";
|
|
163
|
-
}, {
|
|
164
|
-
readonly name: "Pakketilbud";
|
|
165
|
-
readonly link: "/mobil/mobilabonnement/pakketilbud/";
|
|
166
|
-
readonly appKey: "web-shop";
|
|
167
223
|
}, {
|
|
168
224
|
readonly name: "Påfyll kontantkort";
|
|
169
225
|
readonly link: "/mobil/mobilabonnement/kontantkort/lade/";
|
|
@@ -172,15 +228,47 @@ export declare const PRIVATE_LINKS: {
|
|
|
172
228
|
readonly name: "Hjelp Mobil";
|
|
173
229
|
readonly link: "/mobil/hjelp/";
|
|
174
230
|
readonly appKey: "open-pages";
|
|
231
|
+
}, {
|
|
232
|
+
readonly name: "Alt om mobil";
|
|
233
|
+
readonly link: "/mobil/";
|
|
234
|
+
readonly appKey: "open-pages";
|
|
175
235
|
}];
|
|
176
236
|
}, {
|
|
177
237
|
readonly name: "TV";
|
|
178
238
|
readonly link: "/tv/";
|
|
179
239
|
readonly appKey: "open-pages";
|
|
240
|
+
readonly highlightedLinks: [{
|
|
241
|
+
readonly name: "Valgmenyen i Telia Play";
|
|
242
|
+
readonly link: "https://account.teliaplay.no/subscription/selection-menu";
|
|
243
|
+
readonly appKey: "open-pages";
|
|
244
|
+
}, {
|
|
245
|
+
readonly name: "Aktivere strømmetjenester";
|
|
246
|
+
readonly link: "/tv/innholdsoversikt/strommetjenester/#registrere";
|
|
247
|
+
readonly appKey: "open-pages";
|
|
248
|
+
}, {
|
|
249
|
+
readonly name: "Premier League";
|
|
250
|
+
readonly link: "/tv/innholdsoversikt/premiumtjenester/premier-league-v-premium/";
|
|
251
|
+
readonly appKey: "open-pages";
|
|
252
|
+
}, {
|
|
253
|
+
readonly name: "Kampanjer";
|
|
254
|
+
readonly link: "/kampanje";
|
|
255
|
+
readonly appKey: "open-pages";
|
|
256
|
+
}, {
|
|
257
|
+
readonly name: "Kom i gang med Telia Play";
|
|
258
|
+
readonly link: "/tv/hjelp/kom-i-gang/";
|
|
259
|
+
readonly appKey: "open-pages";
|
|
260
|
+
}, {
|
|
261
|
+
readonly name: "Slik bruker du Telia Play";
|
|
262
|
+
readonly link: "/tv/hjelp/daglig-bruk/";
|
|
263
|
+
readonly appKey: "open-pages";
|
|
264
|
+
}, {
|
|
265
|
+
readonly name: "Driftsmeldinger og feilsøk";
|
|
266
|
+
readonly link: "/tv/hjelp/tv-feilsok/tv-hjelp-utstyr/";
|
|
267
|
+
readonly appKey: "open-pages";
|
|
268
|
+
}];
|
|
180
269
|
readonly links: [{
|
|
181
270
|
readonly name: "Se Telia Play";
|
|
182
271
|
readonly link: "https://www.teliaplay.no";
|
|
183
|
-
readonly icon: "external";
|
|
184
272
|
readonly appKey: "open-pages";
|
|
185
273
|
}, {
|
|
186
274
|
readonly name: "Innholdsoversikt";
|
|
@@ -202,11 +290,40 @@ export declare const PRIVATE_LINKS: {
|
|
|
202
290
|
readonly name: "Hjelp TV";
|
|
203
291
|
readonly link: "/tv/hjelp/";
|
|
204
292
|
readonly appKey: "open-pages";
|
|
293
|
+
}, {
|
|
294
|
+
readonly name: "Alt om TV";
|
|
295
|
+
readonly link: "/tv";
|
|
296
|
+
readonly appKey: "open-pages";
|
|
205
297
|
}];
|
|
206
298
|
}, {
|
|
207
299
|
readonly name: "Internett";
|
|
208
300
|
readonly link: "/internett/";
|
|
209
301
|
readonly appKey: "open-pages";
|
|
302
|
+
readonly highlightedLinks: [{
|
|
303
|
+
readonly name: "Søk på adresse";
|
|
304
|
+
readonly link: "/internett/sok-adresse";
|
|
305
|
+
readonly appKey: "open-pages";
|
|
306
|
+
}, {
|
|
307
|
+
readonly name: "Bredbånd på hytta";
|
|
308
|
+
readonly link: "/internett/tradlost-bredband-hytte/";
|
|
309
|
+
readonly appKey: "open-pages";
|
|
310
|
+
}, {
|
|
311
|
+
readonly name: "Kampanjer";
|
|
312
|
+
readonly link: "/kampanje";
|
|
313
|
+
readonly appKey: "open-pages";
|
|
314
|
+
}, {
|
|
315
|
+
readonly name: "Problemer med internett";
|
|
316
|
+
readonly link: "/internett/internett-problemer/";
|
|
317
|
+
readonly appKey: "open-pages";
|
|
318
|
+
}, {
|
|
319
|
+
readonly name: "Ruterer og innstillinger";
|
|
320
|
+
readonly link: "/internett/wifi/rutere/";
|
|
321
|
+
readonly appKey: "open-pages";
|
|
322
|
+
}, {
|
|
323
|
+
readonly name: "WiFi-tips";
|
|
324
|
+
readonly link: "/internett/wifi/wifi-tips/";
|
|
325
|
+
readonly appKey: "open-pages";
|
|
326
|
+
}];
|
|
210
327
|
readonly links: [{
|
|
211
328
|
readonly name: "Fast bredbånd";
|
|
212
329
|
readonly link: "/internett/bredband/";
|
|
@@ -235,11 +352,48 @@ export declare const PRIVATE_LINKS: {
|
|
|
235
352
|
readonly name: "Hjelp Internett";
|
|
236
353
|
readonly link: "/internett/hjelp/";
|
|
237
354
|
readonly appKey: "open-pages";
|
|
355
|
+
}, {
|
|
356
|
+
readonly name: "Alt om internett";
|
|
357
|
+
readonly link: "/internett";
|
|
358
|
+
readonly appKey: "open-pages";
|
|
238
359
|
}];
|
|
239
360
|
}, {
|
|
240
361
|
readonly name: "Trygghet";
|
|
241
362
|
readonly link: "/trygghet/";
|
|
242
363
|
readonly appKey: "open-pages";
|
|
364
|
+
readonly highlightedLinks: [{
|
|
365
|
+
readonly name: "Telia Trygg";
|
|
366
|
+
readonly link: "/trygghet/tjenester/telia-trygg/";
|
|
367
|
+
readonly appKey: "open-pages";
|
|
368
|
+
}, {
|
|
369
|
+
readonly name: "Mobilforsikring";
|
|
370
|
+
readonly link: "/trygghet/tjenester/mobilforsikring/";
|
|
371
|
+
readonly appKey: "open-pages";
|
|
372
|
+
}, {
|
|
373
|
+
readonly name: "Telia Sky";
|
|
374
|
+
readonly link: "/trygghet/tjenester/telia-sky/";
|
|
375
|
+
readonly appKey: "open-pages";
|
|
376
|
+
}, {
|
|
377
|
+
readonly name: "Trygg mobil for barn";
|
|
378
|
+
readonly link: "/trygghet/trygg-pa-skjerm/trygg-mobil-til-barn/";
|
|
379
|
+
readonly appKey: "open-pages";
|
|
380
|
+
}, {
|
|
381
|
+
readonly name: "Ta styring over skjermtiden";
|
|
382
|
+
readonly link: "/trygghet/skjermhelse/skjermtid/";
|
|
383
|
+
readonly appKey: "open-pages";
|
|
384
|
+
}, {
|
|
385
|
+
readonly name: "Falske nettbutikker";
|
|
386
|
+
readonly link: "/trygghet/svindel/falske-nettbutikker/";
|
|
387
|
+
readonly appKey: "open-pages";
|
|
388
|
+
}, {
|
|
389
|
+
readonly name: "ID-tyveri";
|
|
390
|
+
readonly link: "/trygghet/svindel/id-tyveri/";
|
|
391
|
+
readonly appKey: "open-pages";
|
|
392
|
+
}, {
|
|
393
|
+
readonly name: "Lynkurs - trygg på skjerm";
|
|
394
|
+
readonly link: "/trygghet/trygg-pa-skjerm/lynkurs/";
|
|
395
|
+
readonly appKey: "open-pages";
|
|
396
|
+
}];
|
|
243
397
|
readonly links: [{
|
|
244
398
|
readonly name: "Tjenester";
|
|
245
399
|
readonly link: "/trygghet/tjenester/";
|
|
@@ -252,6 +406,10 @@ export declare const PRIVATE_LINKS: {
|
|
|
252
406
|
readonly name: "Skjermhelse";
|
|
253
407
|
readonly link: "/trygghet/skjermhelse/";
|
|
254
408
|
readonly appKey: "open-pages";
|
|
409
|
+
}, {
|
|
410
|
+
readonly name: "Trygg på skjerm";
|
|
411
|
+
readonly link: "/trygghet/trygg-pa-skjerm/";
|
|
412
|
+
readonly appKey: "open-pages";
|
|
255
413
|
}, {
|
|
256
414
|
readonly name: "Aktuelt";
|
|
257
415
|
readonly link: "/trygghet/aktuelt/";
|
|
@@ -260,11 +418,40 @@ export declare const PRIVATE_LINKS: {
|
|
|
260
418
|
readonly name: "Hjelp Trygghet";
|
|
261
419
|
readonly link: "/trygghet/hjelp/";
|
|
262
420
|
readonly appKey: "open-pages";
|
|
421
|
+
}, {
|
|
422
|
+
readonly name: "Alt om trygghet";
|
|
423
|
+
readonly link: "/trygghet";
|
|
424
|
+
readonly appKey: "open-pages";
|
|
263
425
|
}];
|
|
264
426
|
}, {
|
|
265
427
|
readonly name: "Hjelp";
|
|
266
428
|
readonly link: "/hjelp/";
|
|
267
429
|
readonly appKey: "open-pages";
|
|
430
|
+
readonly highlightedLinks: [{
|
|
431
|
+
readonly name: "SIM, PIN og PUK";
|
|
432
|
+
readonly link: "/mobil/mobilabonnement/sim-kort/";
|
|
433
|
+
readonly appKey: "open-pages";
|
|
434
|
+
}, {
|
|
435
|
+
readonly name: "Driftsmeldinger";
|
|
436
|
+
readonly link: "/hjelp/driftsmeldinger/";
|
|
437
|
+
readonly appKey: "open-pages";
|
|
438
|
+
}, {
|
|
439
|
+
readonly name: "Dekningskart";
|
|
440
|
+
readonly link: "/nett/dekning/";
|
|
441
|
+
readonly appKey: "open-pages";
|
|
442
|
+
}, {
|
|
443
|
+
readonly name: "Returnere rutere og TV-bokser";
|
|
444
|
+
readonly link: "/hjelp/retur-av-utstyr/";
|
|
445
|
+
readonly appKey: "open-pages";
|
|
446
|
+
}, {
|
|
447
|
+
readonly name: "Last ned apper";
|
|
448
|
+
readonly link: "/hjelp/apper/";
|
|
449
|
+
readonly appKey: "open-pages";
|
|
450
|
+
}, {
|
|
451
|
+
readonly name: "Se din faktura";
|
|
452
|
+
readonly link: "/minside/faktura";
|
|
453
|
+
readonly appKey: "my-pages";
|
|
454
|
+
}];
|
|
268
455
|
readonly links: [{
|
|
269
456
|
readonly name: "Hjelp Mobil";
|
|
270
457
|
readonly link: "/mobil/hjelp/";
|
|
@@ -293,6 +480,10 @@ export declare const PRIVATE_LINKS: {
|
|
|
293
480
|
readonly name: "Finn butikk";
|
|
294
481
|
readonly link: "/hjelp/butikker-og-forhandlere/";
|
|
295
482
|
readonly appKey: "open-pages";
|
|
483
|
+
}, {
|
|
484
|
+
readonly name: "Hjelp til alt";
|
|
485
|
+
readonly link: "/hjelp";
|
|
486
|
+
readonly appKey: "open-pages";
|
|
296
487
|
}];
|
|
297
488
|
}];
|
|
298
489
|
};
|
|
@@ -300,30 +491,36 @@ export declare const BUSINESS_LINKS: {
|
|
|
300
491
|
readonly name: "Bedrift";
|
|
301
492
|
readonly link: "/bedrift/";
|
|
302
493
|
readonly appKey: "open-pages";
|
|
494
|
+
readonly highlightedLinks: [];
|
|
303
495
|
readonly links: [{
|
|
304
496
|
readonly name: "Logo";
|
|
305
497
|
readonly link: "/bedrift/";
|
|
306
498
|
readonly appKey: "open-pages";
|
|
307
499
|
readonly links: [];
|
|
500
|
+
readonly highlightedLinks: [];
|
|
308
501
|
}, {
|
|
309
502
|
readonly name: "Produkter og tjenester";
|
|
310
503
|
readonly link: "/bedrift/produkter-og-tjenester/";
|
|
311
504
|
readonly appKey: "open-pages";
|
|
312
505
|
readonly links: [];
|
|
506
|
+
readonly highlightedLinks: [];
|
|
313
507
|
}, {
|
|
314
508
|
readonly name: "Sikkerhet";
|
|
315
509
|
readonly link: "/bedrift/sikkerhet/";
|
|
316
510
|
readonly appKey: "open-pages";
|
|
317
511
|
readonly links: [];
|
|
512
|
+
readonly highlightedLinks: [];
|
|
318
513
|
}, {
|
|
319
514
|
readonly name: "Innovasjon";
|
|
320
515
|
readonly link: "/bedrift/innovasjon-og-startup/";
|
|
321
516
|
readonly appKey: "open-pages";
|
|
322
517
|
readonly links: [];
|
|
518
|
+
readonly highlightedLinks: [];
|
|
323
519
|
}, {
|
|
324
520
|
readonly name: "Nettbutikk";
|
|
325
521
|
readonly link: "/bedrift/mobilabonnement/";
|
|
326
522
|
readonly appKey: "open-pages";
|
|
523
|
+
readonly highlightedLinks: [];
|
|
327
524
|
readonly links: [{
|
|
328
525
|
readonly name: "Mobilabonnement";
|
|
329
526
|
readonly link: "/bedrift/mobilabonnement/";
|
|
@@ -342,47 +539,112 @@ export declare const BUSINESS_LINKS: {
|
|
|
342
539
|
readonly link: "/bedrift/kundeservice/";
|
|
343
540
|
readonly appKey: "open-pages";
|
|
344
541
|
readonly links: [];
|
|
542
|
+
readonly highlightedLinks: [];
|
|
345
543
|
}];
|
|
346
544
|
};
|
|
347
545
|
export declare const MDU_LINKS: {
|
|
348
546
|
readonly name: "Borettslag";
|
|
349
547
|
readonly link: "/borettslag/";
|
|
350
548
|
readonly appKey: "open-pages";
|
|
549
|
+
readonly highlightedLinks: [];
|
|
351
550
|
readonly links: [{
|
|
352
551
|
readonly name: "Logo";
|
|
353
552
|
readonly link: "/borettslag/";
|
|
354
553
|
readonly appKey: "open-pages";
|
|
355
554
|
readonly links: [];
|
|
555
|
+
readonly highlightedLinks: [];
|
|
356
556
|
}, {
|
|
357
557
|
readonly name: "Beboer";
|
|
358
558
|
readonly link: "/borettslag/beboer/";
|
|
359
559
|
readonly appKey: "open-pages";
|
|
360
560
|
readonly links: [];
|
|
561
|
+
readonly highlightedLinks: [];
|
|
361
562
|
}, {
|
|
362
563
|
readonly name: "Styre";
|
|
363
564
|
readonly link: "/borettslag/styre/";
|
|
364
565
|
readonly appKey: "open-pages";
|
|
365
566
|
readonly links: [];
|
|
567
|
+
readonly highlightedLinks: [];
|
|
366
568
|
}, {
|
|
367
569
|
readonly name: "Utbygger";
|
|
368
570
|
readonly link: "/borettslag/utbygger/";
|
|
369
571
|
readonly appKey: "open-pages";
|
|
370
572
|
readonly links: [];
|
|
573
|
+
readonly highlightedLinks: [];
|
|
371
574
|
}];
|
|
372
575
|
};
|
|
373
576
|
export declare const LINKS: [{
|
|
374
577
|
readonly name: "Privat";
|
|
375
578
|
readonly link: "/";
|
|
376
579
|
readonly appKey: "open-pages";
|
|
580
|
+
readonly highlightedLinks: [{
|
|
581
|
+
readonly name: "Mobilabonnement";
|
|
582
|
+
readonly link: "/mobil/mobilabonnement/priser/";
|
|
583
|
+
readonly appKey: "web-shop";
|
|
584
|
+
}, {
|
|
585
|
+
readonly name: "Mobiltelefoner";
|
|
586
|
+
readonly link: "/mobil/mobiltelefoner/";
|
|
587
|
+
readonly appKey: "web-shop";
|
|
588
|
+
}, {
|
|
589
|
+
readonly name: "Varemerker ";
|
|
590
|
+
readonly link: "/varemerker/";
|
|
591
|
+
readonly appKey: "web-shop";
|
|
592
|
+
}, {
|
|
593
|
+
readonly name: "Kampanjer";
|
|
594
|
+
readonly link: "/kampanje/";
|
|
595
|
+
readonly appKey: "open-pages";
|
|
596
|
+
}, {
|
|
597
|
+
readonly name: "Faktura";
|
|
598
|
+
readonly link: "/hjelp/faktura/";
|
|
599
|
+
readonly appKey: "open-pages";
|
|
600
|
+
}, {
|
|
601
|
+
readonly name: "Se Telia Play";
|
|
602
|
+
readonly link: "https://www.teliaplay.no";
|
|
603
|
+
readonly appKey: "open-pages";
|
|
604
|
+
}];
|
|
377
605
|
readonly links: [{
|
|
378
606
|
readonly name: "Logo";
|
|
379
607
|
readonly link: "/";
|
|
380
608
|
readonly appKey: "open-pages";
|
|
381
609
|
readonly links: [];
|
|
610
|
+
readonly highlightedLinks: [];
|
|
382
611
|
}, {
|
|
383
612
|
readonly name: "Mobil";
|
|
384
613
|
readonly link: "/mobil/";
|
|
385
614
|
readonly appKey: "open-pages";
|
|
615
|
+
readonly highlightedLinks: [{
|
|
616
|
+
readonly name: "Telia X";
|
|
617
|
+
readonly link: "/mobil/mobilabonnement/ubegrenset-data/";
|
|
618
|
+
readonly appKey: "web-shop";
|
|
619
|
+
}, {
|
|
620
|
+
readonly name: "Pakketilbud";
|
|
621
|
+
readonly link: "/mobil/mobilabonnement/pakketilbud/";
|
|
622
|
+
readonly appKey: "web-shop";
|
|
623
|
+
}, {
|
|
624
|
+
readonly name: "iPhone";
|
|
625
|
+
readonly link: "/varemerker/apple/iphone/";
|
|
626
|
+
readonly appKey: "web-shop";
|
|
627
|
+
}, {
|
|
628
|
+
readonly name: "Airpods";
|
|
629
|
+
readonly link: "/varemerker/apple/airpods/";
|
|
630
|
+
readonly appKey: "web-shop";
|
|
631
|
+
}, {
|
|
632
|
+
readonly name: "Kampanjer";
|
|
633
|
+
readonly link: "/kampanje";
|
|
634
|
+
readonly appKey: "open-pages";
|
|
635
|
+
}, {
|
|
636
|
+
readonly name: "SIM, PIN og PUK";
|
|
637
|
+
readonly link: "/mobil/mobilabonnement/sim-kort/";
|
|
638
|
+
readonly appKey: "open-pages";
|
|
639
|
+
}, {
|
|
640
|
+
readonly name: "Utland";
|
|
641
|
+
readonly link: "/mobil/mobilabonnement/utland/";
|
|
642
|
+
readonly appKey: "open-pages";
|
|
643
|
+
}, {
|
|
644
|
+
readonly name: "Eierskifte";
|
|
645
|
+
readonly link: "/mobil/hjelp/bytte-eier/";
|
|
646
|
+
readonly appKey: "open-pages";
|
|
647
|
+
}];
|
|
386
648
|
readonly links: [{
|
|
387
649
|
readonly name: "Mobilabonnement";
|
|
388
650
|
readonly link: "/mobil/mobilabonnement/";
|
|
@@ -403,10 +665,6 @@ export declare const LINKS: [{
|
|
|
403
665
|
readonly name: "Tilbehør";
|
|
404
666
|
readonly link: "/mobil/tilbehor/";
|
|
405
667
|
readonly appKey: "web-shop";
|
|
406
|
-
}, {
|
|
407
|
-
readonly name: "Pakketilbud";
|
|
408
|
-
readonly link: "/mobil/mobilabonnement/pakketilbud/";
|
|
409
|
-
readonly appKey: "web-shop";
|
|
410
668
|
}, {
|
|
411
669
|
readonly name: "Påfyll kontantkort";
|
|
412
670
|
readonly link: "/mobil/mobilabonnement/kontantkort/lade/";
|
|
@@ -415,15 +673,47 @@ export declare const LINKS: [{
|
|
|
415
673
|
readonly name: "Hjelp Mobil";
|
|
416
674
|
readonly link: "/mobil/hjelp/";
|
|
417
675
|
readonly appKey: "open-pages";
|
|
676
|
+
}, {
|
|
677
|
+
readonly name: "Alt om mobil";
|
|
678
|
+
readonly link: "/mobil/";
|
|
679
|
+
readonly appKey: "open-pages";
|
|
418
680
|
}];
|
|
419
681
|
}, {
|
|
420
682
|
readonly name: "TV";
|
|
421
683
|
readonly link: "/tv/";
|
|
422
684
|
readonly appKey: "open-pages";
|
|
685
|
+
readonly highlightedLinks: [{
|
|
686
|
+
readonly name: "Valgmenyen i Telia Play";
|
|
687
|
+
readonly link: "https://account.teliaplay.no/subscription/selection-menu";
|
|
688
|
+
readonly appKey: "open-pages";
|
|
689
|
+
}, {
|
|
690
|
+
readonly name: "Aktivere strømmetjenester";
|
|
691
|
+
readonly link: "/tv/innholdsoversikt/strommetjenester/#registrere";
|
|
692
|
+
readonly appKey: "open-pages";
|
|
693
|
+
}, {
|
|
694
|
+
readonly name: "Premier League";
|
|
695
|
+
readonly link: "/tv/innholdsoversikt/premiumtjenester/premier-league-v-premium/";
|
|
696
|
+
readonly appKey: "open-pages";
|
|
697
|
+
}, {
|
|
698
|
+
readonly name: "Kampanjer";
|
|
699
|
+
readonly link: "/kampanje";
|
|
700
|
+
readonly appKey: "open-pages";
|
|
701
|
+
}, {
|
|
702
|
+
readonly name: "Kom i gang med Telia Play";
|
|
703
|
+
readonly link: "/tv/hjelp/kom-i-gang/";
|
|
704
|
+
readonly appKey: "open-pages";
|
|
705
|
+
}, {
|
|
706
|
+
readonly name: "Slik bruker du Telia Play";
|
|
707
|
+
readonly link: "/tv/hjelp/daglig-bruk/";
|
|
708
|
+
readonly appKey: "open-pages";
|
|
709
|
+
}, {
|
|
710
|
+
readonly name: "Driftsmeldinger og feilsøk";
|
|
711
|
+
readonly link: "/tv/hjelp/tv-feilsok/tv-hjelp-utstyr/";
|
|
712
|
+
readonly appKey: "open-pages";
|
|
713
|
+
}];
|
|
423
714
|
readonly links: [{
|
|
424
715
|
readonly name: "Se Telia Play";
|
|
425
716
|
readonly link: "https://www.teliaplay.no";
|
|
426
|
-
readonly icon: "external";
|
|
427
717
|
readonly appKey: "open-pages";
|
|
428
718
|
}, {
|
|
429
719
|
readonly name: "Innholdsoversikt";
|
|
@@ -445,11 +735,40 @@ export declare const LINKS: [{
|
|
|
445
735
|
readonly name: "Hjelp TV";
|
|
446
736
|
readonly link: "/tv/hjelp/";
|
|
447
737
|
readonly appKey: "open-pages";
|
|
738
|
+
}, {
|
|
739
|
+
readonly name: "Alt om TV";
|
|
740
|
+
readonly link: "/tv";
|
|
741
|
+
readonly appKey: "open-pages";
|
|
448
742
|
}];
|
|
449
743
|
}, {
|
|
450
744
|
readonly name: "Internett";
|
|
451
745
|
readonly link: "/internett/";
|
|
452
746
|
readonly appKey: "open-pages";
|
|
747
|
+
readonly highlightedLinks: [{
|
|
748
|
+
readonly name: "Søk på adresse";
|
|
749
|
+
readonly link: "/internett/sok-adresse";
|
|
750
|
+
readonly appKey: "open-pages";
|
|
751
|
+
}, {
|
|
752
|
+
readonly name: "Bredbånd på hytta";
|
|
753
|
+
readonly link: "/internett/tradlost-bredband-hytte/";
|
|
754
|
+
readonly appKey: "open-pages";
|
|
755
|
+
}, {
|
|
756
|
+
readonly name: "Kampanjer";
|
|
757
|
+
readonly link: "/kampanje";
|
|
758
|
+
readonly appKey: "open-pages";
|
|
759
|
+
}, {
|
|
760
|
+
readonly name: "Problemer med internett";
|
|
761
|
+
readonly link: "/internett/internett-problemer/";
|
|
762
|
+
readonly appKey: "open-pages";
|
|
763
|
+
}, {
|
|
764
|
+
readonly name: "Ruterer og innstillinger";
|
|
765
|
+
readonly link: "/internett/wifi/rutere/";
|
|
766
|
+
readonly appKey: "open-pages";
|
|
767
|
+
}, {
|
|
768
|
+
readonly name: "WiFi-tips";
|
|
769
|
+
readonly link: "/internett/wifi/wifi-tips/";
|
|
770
|
+
readonly appKey: "open-pages";
|
|
771
|
+
}];
|
|
453
772
|
readonly links: [{
|
|
454
773
|
readonly name: "Fast bredbånd";
|
|
455
774
|
readonly link: "/internett/bredband/";
|
|
@@ -478,11 +797,48 @@ export declare const LINKS: [{
|
|
|
478
797
|
readonly name: "Hjelp Internett";
|
|
479
798
|
readonly link: "/internett/hjelp/";
|
|
480
799
|
readonly appKey: "open-pages";
|
|
800
|
+
}, {
|
|
801
|
+
readonly name: "Alt om internett";
|
|
802
|
+
readonly link: "/internett";
|
|
803
|
+
readonly appKey: "open-pages";
|
|
481
804
|
}];
|
|
482
805
|
}, {
|
|
483
806
|
readonly name: "Trygghet";
|
|
484
807
|
readonly link: "/trygghet/";
|
|
485
808
|
readonly appKey: "open-pages";
|
|
809
|
+
readonly highlightedLinks: [{
|
|
810
|
+
readonly name: "Telia Trygg";
|
|
811
|
+
readonly link: "/trygghet/tjenester/telia-trygg/";
|
|
812
|
+
readonly appKey: "open-pages";
|
|
813
|
+
}, {
|
|
814
|
+
readonly name: "Mobilforsikring";
|
|
815
|
+
readonly link: "/trygghet/tjenester/mobilforsikring/";
|
|
816
|
+
readonly appKey: "open-pages";
|
|
817
|
+
}, {
|
|
818
|
+
readonly name: "Telia Sky";
|
|
819
|
+
readonly link: "/trygghet/tjenester/telia-sky/";
|
|
820
|
+
readonly appKey: "open-pages";
|
|
821
|
+
}, {
|
|
822
|
+
readonly name: "Trygg mobil for barn";
|
|
823
|
+
readonly link: "/trygghet/trygg-pa-skjerm/trygg-mobil-til-barn/";
|
|
824
|
+
readonly appKey: "open-pages";
|
|
825
|
+
}, {
|
|
826
|
+
readonly name: "Ta styring over skjermtiden";
|
|
827
|
+
readonly link: "/trygghet/skjermhelse/skjermtid/";
|
|
828
|
+
readonly appKey: "open-pages";
|
|
829
|
+
}, {
|
|
830
|
+
readonly name: "Falske nettbutikker";
|
|
831
|
+
readonly link: "/trygghet/svindel/falske-nettbutikker/";
|
|
832
|
+
readonly appKey: "open-pages";
|
|
833
|
+
}, {
|
|
834
|
+
readonly name: "ID-tyveri";
|
|
835
|
+
readonly link: "/trygghet/svindel/id-tyveri/";
|
|
836
|
+
readonly appKey: "open-pages";
|
|
837
|
+
}, {
|
|
838
|
+
readonly name: "Lynkurs - trygg på skjerm";
|
|
839
|
+
readonly link: "/trygghet/trygg-pa-skjerm/lynkurs/";
|
|
840
|
+
readonly appKey: "open-pages";
|
|
841
|
+
}];
|
|
486
842
|
readonly links: [{
|
|
487
843
|
readonly name: "Tjenester";
|
|
488
844
|
readonly link: "/trygghet/tjenester/";
|
|
@@ -495,6 +851,10 @@ export declare const LINKS: [{
|
|
|
495
851
|
readonly name: "Skjermhelse";
|
|
496
852
|
readonly link: "/trygghet/skjermhelse/";
|
|
497
853
|
readonly appKey: "open-pages";
|
|
854
|
+
}, {
|
|
855
|
+
readonly name: "Trygg på skjerm";
|
|
856
|
+
readonly link: "/trygghet/trygg-pa-skjerm/";
|
|
857
|
+
readonly appKey: "open-pages";
|
|
498
858
|
}, {
|
|
499
859
|
readonly name: "Aktuelt";
|
|
500
860
|
readonly link: "/trygghet/aktuelt/";
|
|
@@ -503,11 +863,40 @@ export declare const LINKS: [{
|
|
|
503
863
|
readonly name: "Hjelp Trygghet";
|
|
504
864
|
readonly link: "/trygghet/hjelp/";
|
|
505
865
|
readonly appKey: "open-pages";
|
|
866
|
+
}, {
|
|
867
|
+
readonly name: "Alt om trygghet";
|
|
868
|
+
readonly link: "/trygghet";
|
|
869
|
+
readonly appKey: "open-pages";
|
|
506
870
|
}];
|
|
507
871
|
}, {
|
|
508
872
|
readonly name: "Hjelp";
|
|
509
873
|
readonly link: "/hjelp/";
|
|
510
874
|
readonly appKey: "open-pages";
|
|
875
|
+
readonly highlightedLinks: [{
|
|
876
|
+
readonly name: "SIM, PIN og PUK";
|
|
877
|
+
readonly link: "/mobil/mobilabonnement/sim-kort/";
|
|
878
|
+
readonly appKey: "open-pages";
|
|
879
|
+
}, {
|
|
880
|
+
readonly name: "Driftsmeldinger";
|
|
881
|
+
readonly link: "/hjelp/driftsmeldinger/";
|
|
882
|
+
readonly appKey: "open-pages";
|
|
883
|
+
}, {
|
|
884
|
+
readonly name: "Dekningskart";
|
|
885
|
+
readonly link: "/nett/dekning/";
|
|
886
|
+
readonly appKey: "open-pages";
|
|
887
|
+
}, {
|
|
888
|
+
readonly name: "Returnere rutere og TV-bokser";
|
|
889
|
+
readonly link: "/hjelp/retur-av-utstyr/";
|
|
890
|
+
readonly appKey: "open-pages";
|
|
891
|
+
}, {
|
|
892
|
+
readonly name: "Last ned apper";
|
|
893
|
+
readonly link: "/hjelp/apper/";
|
|
894
|
+
readonly appKey: "open-pages";
|
|
895
|
+
}, {
|
|
896
|
+
readonly name: "Se din faktura";
|
|
897
|
+
readonly link: "/minside/faktura";
|
|
898
|
+
readonly appKey: "my-pages";
|
|
899
|
+
}];
|
|
511
900
|
readonly links: [{
|
|
512
901
|
readonly name: "Hjelp Mobil";
|
|
513
902
|
readonly link: "/mobil/hjelp/";
|
|
@@ -536,36 +925,46 @@ export declare const LINKS: [{
|
|
|
536
925
|
readonly name: "Finn butikk";
|
|
537
926
|
readonly link: "/hjelp/butikker-og-forhandlere/";
|
|
538
927
|
readonly appKey: "open-pages";
|
|
928
|
+
}, {
|
|
929
|
+
readonly name: "Hjelp til alt";
|
|
930
|
+
readonly link: "/hjelp";
|
|
931
|
+
readonly appKey: "open-pages";
|
|
539
932
|
}];
|
|
540
933
|
}];
|
|
541
934
|
}, {
|
|
542
935
|
readonly name: "Bedrift";
|
|
543
936
|
readonly link: "/bedrift/";
|
|
544
937
|
readonly appKey: "open-pages";
|
|
938
|
+
readonly highlightedLinks: [];
|
|
545
939
|
readonly links: [{
|
|
546
940
|
readonly name: "Logo";
|
|
547
941
|
readonly link: "/bedrift/";
|
|
548
942
|
readonly appKey: "open-pages";
|
|
549
943
|
readonly links: [];
|
|
944
|
+
readonly highlightedLinks: [];
|
|
550
945
|
}, {
|
|
551
946
|
readonly name: "Produkter og tjenester";
|
|
552
947
|
readonly link: "/bedrift/produkter-og-tjenester/";
|
|
553
948
|
readonly appKey: "open-pages";
|
|
554
949
|
readonly links: [];
|
|
950
|
+
readonly highlightedLinks: [];
|
|
555
951
|
}, {
|
|
556
952
|
readonly name: "Sikkerhet";
|
|
557
953
|
readonly link: "/bedrift/sikkerhet/";
|
|
558
954
|
readonly appKey: "open-pages";
|
|
559
955
|
readonly links: [];
|
|
956
|
+
readonly highlightedLinks: [];
|
|
560
957
|
}, {
|
|
561
958
|
readonly name: "Innovasjon";
|
|
562
959
|
readonly link: "/bedrift/innovasjon-og-startup/";
|
|
563
960
|
readonly appKey: "open-pages";
|
|
564
961
|
readonly links: [];
|
|
962
|
+
readonly highlightedLinks: [];
|
|
565
963
|
}, {
|
|
566
964
|
readonly name: "Nettbutikk";
|
|
567
965
|
readonly link: "/bedrift/mobilabonnement/";
|
|
568
966
|
readonly appKey: "open-pages";
|
|
967
|
+
readonly highlightedLinks: [];
|
|
569
968
|
readonly links: [{
|
|
570
969
|
readonly name: "Mobilabonnement";
|
|
571
970
|
readonly link: "/bedrift/mobilabonnement/";
|
|
@@ -584,31 +983,37 @@ export declare const LINKS: [{
|
|
|
584
983
|
readonly link: "/bedrift/kundeservice/";
|
|
585
984
|
readonly appKey: "open-pages";
|
|
586
985
|
readonly links: [];
|
|
986
|
+
readonly highlightedLinks: [];
|
|
587
987
|
}];
|
|
588
988
|
}, {
|
|
589
989
|
readonly name: "Borettslag";
|
|
590
990
|
readonly link: "/borettslag/";
|
|
591
991
|
readonly appKey: "open-pages";
|
|
992
|
+
readonly highlightedLinks: [];
|
|
592
993
|
readonly links: [{
|
|
593
994
|
readonly name: "Logo";
|
|
594
995
|
readonly link: "/borettslag/";
|
|
595
996
|
readonly appKey: "open-pages";
|
|
596
997
|
readonly links: [];
|
|
998
|
+
readonly highlightedLinks: [];
|
|
597
999
|
}, {
|
|
598
1000
|
readonly name: "Beboer";
|
|
599
1001
|
readonly link: "/borettslag/beboer/";
|
|
600
1002
|
readonly appKey: "open-pages";
|
|
601
1003
|
readonly links: [];
|
|
1004
|
+
readonly highlightedLinks: [];
|
|
602
1005
|
}, {
|
|
603
1006
|
readonly name: "Styre";
|
|
604
1007
|
readonly link: "/borettslag/styre/";
|
|
605
1008
|
readonly appKey: "open-pages";
|
|
606
1009
|
readonly links: [];
|
|
1010
|
+
readonly highlightedLinks: [];
|
|
607
1011
|
}, {
|
|
608
1012
|
readonly name: "Utbygger";
|
|
609
1013
|
readonly link: "/borettslag/utbygger/";
|
|
610
1014
|
readonly appKey: "open-pages";
|
|
611
1015
|
readonly links: [];
|
|
1016
|
+
readonly highlightedLinks: [];
|
|
612
1017
|
}];
|
|
613
1018
|
}];
|
|
614
1019
|
export declare const getActiveSubLink: (path: string, links: Link[]) => string;
|