@telia/teddy 0.0.48 → 0.0.50

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.
@@ -1,3 +1,5 @@
1
+ import { IconName } from '../../icon';
2
+
1
3
  export declare const APP_KEYS: {
2
4
  readonly 'open-pages': "open-pages";
3
5
  readonly 'web-shop': "web-shop";
@@ -8,11 +10,18 @@ export declare const APP_KEYS: {
8
10
  readonly 'business-net': "business-net";
9
11
  };
10
12
  export type AppKey = (typeof APP_KEYS)[keyof typeof APP_KEYS];
13
+ export type Link = {
14
+ name: string;
15
+ link: string;
16
+ appKey?: AppKey;
17
+ links?: Link[];
18
+ icon?: IconName;
19
+ };
11
20
  export declare const MY_PAGE_LINKS: {
12
21
  readonly name: "Min Side";
13
22
  readonly link: "/minside";
14
23
  readonly appKey: "my-pages";
15
- readonly links: readonly [{
24
+ readonly links: [{
16
25
  readonly name: "Hjem";
17
26
  readonly link: "/minside";
18
27
  readonly appKey: "my-pages";
@@ -38,47 +47,47 @@ export declare const MY_BUSINESS_LINKS: {
38
47
  readonly name: "Min bedrift";
39
48
  readonly link: "https://beta.minbedrift.telia.no";
40
49
  readonly appKey: "my-business";
41
- readonly links: readonly [];
50
+ readonly links: [];
42
51
  readonly icon: "home";
43
52
  };
44
53
  export declare const MY_PORTAL_LINKS: {
45
54
  readonly name: "Min portal";
46
55
  readonly link: "https://minportal.telia.no";
47
56
  readonly appKey: "my-portal";
48
- readonly links: readonly [];
57
+ readonly links: [];
49
58
  readonly icon: "end-user";
50
59
  };
51
60
  export declare const BUSINESS_NET_LINKS: {
52
61
  readonly name: "Bedriftsnett";
53
62
  readonly link: "https://sb.telia.no";
54
63
  readonly appKey: "business-net";
55
- readonly links: readonly [];
64
+ readonly links: [];
56
65
  readonly icon: "doc";
57
66
  };
58
- export declare const LOGGED_IN_LINKS_BUSINESS: readonly [{
67
+ export declare const LOGGED_IN_LINKS_BUSINESS: [{
59
68
  readonly name: "Min bedrift";
60
69
  readonly link: "https://beta.minbedrift.telia.no";
61
70
  readonly appKey: "my-business";
62
- readonly links: readonly [];
71
+ readonly links: [];
63
72
  readonly icon: "home";
64
73
  }, {
65
74
  readonly name: "Min portal";
66
75
  readonly link: "https://minportal.telia.no";
67
76
  readonly appKey: "my-portal";
68
- readonly links: readonly [];
77
+ readonly links: [];
69
78
  readonly icon: "end-user";
70
79
  }, {
71
80
  readonly name: "Bedriftsnett";
72
81
  readonly link: "https://sb.telia.no";
73
82
  readonly appKey: "business-net";
74
- readonly links: readonly [];
83
+ readonly links: [];
75
84
  readonly icon: "doc";
76
85
  }];
77
- export declare const LOGGED_IN_LINKS: readonly [{
86
+ export declare const LOGGED_IN_LINKS: [{
78
87
  readonly name: "Min Side";
79
88
  readonly link: "/minside";
80
89
  readonly appKey: "my-pages";
81
- readonly links: readonly [{
90
+ readonly links: [{
82
91
  readonly name: "Hjem";
83
92
  readonly link: "/minside";
84
93
  readonly appKey: "my-pages";
@@ -103,34 +112,34 @@ export declare const LOGGED_IN_LINKS: readonly [{
103
112
  readonly name: "Min bedrift";
104
113
  readonly link: "https://beta.minbedrift.telia.no";
105
114
  readonly appKey: "my-business";
106
- readonly links: readonly [];
115
+ readonly links: [];
107
116
  readonly icon: "home";
108
117
  }, {
109
118
  readonly name: "Min portal";
110
119
  readonly link: "https://minportal.telia.no";
111
120
  readonly appKey: "my-portal";
112
- readonly links: readonly [];
121
+ readonly links: [];
113
122
  readonly icon: "end-user";
114
123
  }, {
115
124
  readonly name: "Bedriftsnett";
116
125
  readonly link: "https://sb.telia.no";
117
126
  readonly appKey: "business-net";
118
- readonly links: readonly [];
127
+ readonly links: [];
119
128
  readonly icon: "doc";
120
129
  }];
121
130
  export declare const PRIVATE_LINKS: {
122
131
  readonly name: "Privat";
123
132
  readonly link: "/";
124
- readonly links: readonly [{
133
+ readonly links: [{
125
134
  readonly name: "Logo";
126
135
  readonly link: "/";
127
136
  readonly appKey: "open-pages";
128
- readonly links: readonly [];
137
+ readonly links: [];
129
138
  }, {
130
139
  readonly name: "Mobil";
131
140
  readonly link: "/mobil/";
132
141
  readonly appKey: "open-pages";
133
- readonly links: readonly [{
142
+ readonly links: [{
134
143
  readonly name: "Mobilabonnement";
135
144
  readonly link: "/mobil/mobilabonnement/";
136
145
  readonly appKey: "open-pages";
@@ -163,7 +172,7 @@ export declare const PRIVATE_LINKS: {
163
172
  readonly name: "TV";
164
173
  readonly link: "/tv/";
165
174
  readonly appKey: "open-pages";
166
- readonly links: readonly [{
175
+ readonly links: [{
167
176
  readonly name: "Se Telia Play";
168
177
  readonly link: "https://www.teliaplay.no";
169
178
  readonly appKey: "open-pages";
@@ -184,9 +193,9 @@ export declare const PRIVATE_LINKS: {
184
193
  readonly name: "Internett";
185
194
  readonly link: "/internett/";
186
195
  readonly appKey: "open-pages";
187
- readonly links: readonly [{
196
+ readonly links: [{
188
197
  readonly name: "Fast bredbånd";
189
- readonly link: "/internett/fast-bredband/";
198
+ readonly link: "/internett/bredband/";
190
199
  readonly appKey: "open-pages";
191
200
  }, {
192
201
  readonly name: "Trådløst bredbånd";
@@ -217,7 +226,7 @@ export declare const PRIVATE_LINKS: {
217
226
  readonly name: "Hjelp";
218
227
  readonly link: "/hjelp/";
219
228
  readonly appKey: "open-pages";
220
- readonly links: readonly [{
229
+ readonly links: [{
221
230
  readonly name: "Hjelp Mobil";
222
231
  readonly link: "/mobil/hjelp/";
223
232
  readonly appKey: "open-pages";
@@ -247,26 +256,26 @@ export declare const PRIVATE_LINKS: {
247
256
  export declare const BUSINESS_LINKS: {
248
257
  readonly name: "Bedrift";
249
258
  readonly link: "/bedrift/";
250
- readonly links: readonly [{
259
+ readonly links: [{
251
260
  readonly name: "Logo";
252
261
  readonly link: "/bedrift/";
253
262
  readonly appKey: "open-pages";
254
- readonly links: readonly [];
263
+ readonly links: [];
255
264
  }, {
256
265
  readonly name: "Produkter og tjenester";
257
266
  readonly link: "/bedrift/produkter-og-tjenester/";
258
267
  readonly appKey: "open-pages";
259
- readonly links: readonly [];
268
+ readonly links: [];
260
269
  }, {
261
- readonly name: "Innovasjon og startup";
270
+ readonly name: "Innovasjon";
262
271
  readonly link: "/bedrift/innovasjon-og-startup/";
263
272
  readonly appKey: "open-pages";
264
- readonly links: readonly [];
273
+ readonly links: [];
265
274
  }, {
266
275
  readonly name: "Nettbutikk";
267
276
  readonly link: "/bedrift/mobilabonnement/";
268
277
  readonly appKey: "web-shop";
269
- readonly links: readonly [{
278
+ readonly links: [{
270
279
  readonly name: "Mobilabonnement";
271
280
  readonly link: "/bedrift/mobilabonnement/";
272
281
  readonly appKey: "web-shop";
@@ -283,52 +292,52 @@ export declare const BUSINESS_LINKS: {
283
292
  readonly name: "Sikkerhet";
284
293
  readonly link: "/bedrift/sikkerhet/";
285
294
  readonly appKey: "open-pages";
286
- readonly links: readonly [];
295
+ readonly links: [];
287
296
  }, {
288
297
  readonly name: "Hjelp";
289
298
  readonly link: "/bedrift/kundeservice/";
290
299
  readonly appKey: "open-pages";
291
- readonly links: readonly [];
300
+ readonly links: [];
292
301
  }];
293
302
  };
294
303
  export declare const MDU_LINKS: {
295
304
  readonly name: "Borettslag";
296
305
  readonly link: "/borettslag/";
297
- readonly links: readonly [{
306
+ readonly links: [{
298
307
  readonly name: "Logo";
299
308
  readonly link: "/borettslag/";
300
309
  readonly appKey: "open-pages";
301
- readonly links: readonly [];
310
+ readonly links: [];
302
311
  }, {
303
312
  readonly name: "Beboer";
304
313
  readonly link: "/borettslag/beboer/";
305
314
  readonly appKey: "open-pages";
306
- readonly links: readonly [];
315
+ readonly links: [];
307
316
  }, {
308
317
  readonly name: "Styre";
309
318
  readonly link: "/borettslag/styre/";
310
319
  readonly appKey: "open-pages";
311
- readonly links: readonly [];
320
+ readonly links: [];
312
321
  }, {
313
322
  readonly name: "Utbygger";
314
323
  readonly link: "/borettslag/utbygger/";
315
324
  readonly appKey: "open-pages";
316
- readonly links: readonly [];
325
+ readonly links: [];
317
326
  }];
318
327
  };
319
- export declare const LINKS: readonly [{
328
+ export declare const LINKS: [{
320
329
  readonly name: "Privat";
321
330
  readonly link: "/";
322
- readonly links: readonly [{
331
+ readonly links: [{
323
332
  readonly name: "Logo";
324
333
  readonly link: "/";
325
334
  readonly appKey: "open-pages";
326
- readonly links: readonly [];
335
+ readonly links: [];
327
336
  }, {
328
337
  readonly name: "Mobil";
329
338
  readonly link: "/mobil/";
330
339
  readonly appKey: "open-pages";
331
- readonly links: readonly [{
340
+ readonly links: [{
332
341
  readonly name: "Mobilabonnement";
333
342
  readonly link: "/mobil/mobilabonnement/";
334
343
  readonly appKey: "open-pages";
@@ -361,7 +370,7 @@ export declare const LINKS: readonly [{
361
370
  readonly name: "TV";
362
371
  readonly link: "/tv/";
363
372
  readonly appKey: "open-pages";
364
- readonly links: readonly [{
373
+ readonly links: [{
365
374
  readonly name: "Se Telia Play";
366
375
  readonly link: "https://www.teliaplay.no";
367
376
  readonly appKey: "open-pages";
@@ -382,9 +391,9 @@ export declare const LINKS: readonly [{
382
391
  readonly name: "Internett";
383
392
  readonly link: "/internett/";
384
393
  readonly appKey: "open-pages";
385
- readonly links: readonly [{
394
+ readonly links: [{
386
395
  readonly name: "Fast bredbånd";
387
- readonly link: "/internett/fast-bredband/";
396
+ readonly link: "/internett/bredband/";
388
397
  readonly appKey: "open-pages";
389
398
  }, {
390
399
  readonly name: "Trådløst bredbånd";
@@ -415,7 +424,7 @@ export declare const LINKS: readonly [{
415
424
  readonly name: "Hjelp";
416
425
  readonly link: "/hjelp/";
417
426
  readonly appKey: "open-pages";
418
- readonly links: readonly [{
427
+ readonly links: [{
419
428
  readonly name: "Hjelp Mobil";
420
429
  readonly link: "/mobil/hjelp/";
421
430
  readonly appKey: "open-pages";
@@ -444,26 +453,26 @@ export declare const LINKS: readonly [{
444
453
  }, {
445
454
  readonly name: "Bedrift";
446
455
  readonly link: "/bedrift/";
447
- readonly links: readonly [{
456
+ readonly links: [{
448
457
  readonly name: "Logo";
449
458
  readonly link: "/bedrift/";
450
459
  readonly appKey: "open-pages";
451
- readonly links: readonly [];
460
+ readonly links: [];
452
461
  }, {
453
462
  readonly name: "Produkter og tjenester";
454
463
  readonly link: "/bedrift/produkter-og-tjenester/";
455
464
  readonly appKey: "open-pages";
456
- readonly links: readonly [];
465
+ readonly links: [];
457
466
  }, {
458
- readonly name: "Innovasjon og startup";
467
+ readonly name: "Innovasjon";
459
468
  readonly link: "/bedrift/innovasjon-og-startup/";
460
469
  readonly appKey: "open-pages";
461
- readonly links: readonly [];
470
+ readonly links: [];
462
471
  }, {
463
472
  readonly name: "Nettbutikk";
464
473
  readonly link: "/bedrift/mobilabonnement/";
465
474
  readonly appKey: "web-shop";
466
- readonly links: readonly [{
475
+ readonly links: [{
467
476
  readonly name: "Mobilabonnement";
468
477
  readonly link: "/bedrift/mobilabonnement/";
469
478
  readonly appKey: "web-shop";
@@ -480,35 +489,36 @@ export declare const LINKS: readonly [{
480
489
  readonly name: "Sikkerhet";
481
490
  readonly link: "/bedrift/sikkerhet/";
482
491
  readonly appKey: "open-pages";
483
- readonly links: readonly [];
492
+ readonly links: [];
484
493
  }, {
485
494
  readonly name: "Hjelp";
486
495
  readonly link: "/bedrift/kundeservice/";
487
496
  readonly appKey: "open-pages";
488
- readonly links: readonly [];
497
+ readonly links: [];
489
498
  }];
490
499
  }, {
491
500
  readonly name: "Borettslag";
492
501
  readonly link: "/borettslag/";
493
- readonly links: readonly [{
502
+ readonly links: [{
494
503
  readonly name: "Logo";
495
504
  readonly link: "/borettslag/";
496
505
  readonly appKey: "open-pages";
497
- readonly links: readonly [];
506
+ readonly links: [];
498
507
  }, {
499
508
  readonly name: "Beboer";
500
509
  readonly link: "/borettslag/beboer/";
501
510
  readonly appKey: "open-pages";
502
- readonly links: readonly [];
511
+ readonly links: [];
503
512
  }, {
504
513
  readonly name: "Styre";
505
514
  readonly link: "/borettslag/styre/";
506
515
  readonly appKey: "open-pages";
507
- readonly links: readonly [];
516
+ readonly links: [];
508
517
  }, {
509
518
  readonly name: "Utbygger";
510
519
  readonly link: "/borettslag/utbygger/";
511
520
  readonly appKey: "open-pages";
512
- readonly links: readonly [];
521
+ readonly links: [];
513
522
  }];
514
523
  }];
524
+ export declare const getActiveSubLink: (path: string, links: Link[]) => string;
@@ -59,7 +59,11 @@ const BUSINESS_NET_LINKS = {
59
59
  links: [],
60
60
  icon: "doc"
61
61
  };
62
- const LOGGED_IN_LINKS_BUSINESS = [MY_BUSINESS_LINKS, MY_PORTAL_LINKS, BUSINESS_NET_LINKS];
62
+ const LOGGED_IN_LINKS_BUSINESS = [
63
+ MY_BUSINESS_LINKS,
64
+ MY_PORTAL_LINKS,
65
+ BUSINESS_NET_LINKS
66
+ ];
63
67
  const LOGGED_IN_LINKS = [MY_PAGE_LINKS, ...LOGGED_IN_LINKS_BUSINESS];
64
68
  const PRIVATE_LINKS = {
65
69
  name: "Privat",
@@ -167,7 +171,7 @@ const PRIVATE_LINKS = {
167
171
  links: [
168
172
  {
169
173
  name: "Fast bredbånd",
170
- link: "/internett/fast-bredband/",
174
+ link: "/internett/bredband/",
171
175
  appKey: APP_KEYS["open-pages"]
172
176
  },
173
177
  {
@@ -263,7 +267,7 @@ const BUSINESS_LINKS = {
263
267
  links: []
264
268
  },
265
269
  {
266
- name: "Innovasjon og startup",
270
+ name: "Innovasjon",
267
271
  link: "/bedrift/innovasjon-og-startup/",
268
272
  appKey: APP_KEYS["open-pages"],
269
273
  links: []
@@ -335,6 +339,15 @@ const MDU_LINKS = {
335
339
  ]
336
340
  };
337
341
  const LINKS = [PRIVATE_LINKS, BUSINESS_LINKS, MDU_LINKS];
342
+ const getActiveSubLink = (path, links) => {
343
+ let activeLink = "";
344
+ links.forEach((link) => {
345
+ if (path.startsWith(link.link) && link.link.length > activeLink.length) {
346
+ activeLink = link.link;
347
+ }
348
+ });
349
+ return activeLink;
350
+ };
338
351
  export {
339
352
  APP_KEYS,
340
353
  BUSINESS_LINKS,
@@ -346,5 +359,6 @@ export {
346
359
  MY_BUSINESS_LINKS,
347
360
  MY_PAGE_LINKS,
348
361
  MY_PORTAL_LINKS,
349
- PRIVATE_LINKS
362
+ PRIVATE_LINKS,
363
+ getActiveSubLink
350
364
  };
@@ -28,33 +28,33 @@ function _interopNamespaceDefault(e) {
28
28
  return Object.freeze(n);
29
29
  }
30
30
  const NavigationMenuPrimitive__namespace = /* @__PURE__ */ _interopNamespaceDefault(NavigationMenuPrimitive);
31
- const enterFromLeft = "_enterFromLeft_15tta_1";
32
- const enterFromRight = "_enterFromRight_15tta_1";
33
- const exitToLeft = "_exitToLeft_15tta_1";
34
- const exitToRight = "_exitToRight_15tta_1";
35
- const scaleIn = "_scaleIn_15tta_1";
36
- const scaleOut = "_scaleOut_15tta_1";
31
+ const scaleIn = "_scaleIn_1wcv5_1";
32
+ const scaleOut = "_scaleOut_1wcv5_1";
33
+ const enterFromRight = "_enterFromRight_1wcv5_1";
34
+ const enterFromLeft = "_enterFromLeft_1wcv5_1";
35
+ const exitToRight = "_exitToRight_1wcv5_1";
36
+ const exitToLeft = "_exitToLeft_1wcv5_1";
37
37
  const styles = {
38
- "teddy-navigation-menu": "_teddy-navigation-menu_15tta_1",
39
- "teddy-navigation-menu__viewport": "_teddy-navigation-menu__viewport_15tta_34",
40
- "teddy-navigation-menu__list": "_teddy-navigation-menu__list_15tta_37",
41
- "teddy-navigation-menu__top-menu-list": "_teddy-navigation-menu__top-menu-list_15tta_59",
42
- "teddy-navigation-menu__top-menu-trigger": "_teddy-navigation-menu__top-menu-trigger_15tta_83",
43
- "teddy-navigation-menu__top-menu-trigger--small": "_teddy-navigation-menu__top-menu-trigger--small_15tta_102",
44
- "teddy-navigation-menu__top-menu-trigger--button": "_teddy-navigation-menu__top-menu-trigger--button_15tta_108",
45
- "teddy-navigation-menu__content": "_teddy-navigation-menu__content_15tta_182",
46
- enterFromLeft,
38
+ "teddy-navigation-menu": "_teddy-navigation-menu_1wcv5_2",
39
+ "teddy-navigation-menu__viewport": "_teddy-navigation-menu__viewport_1wcv5_35",
40
+ "teddy-navigation-menu__list": "_teddy-navigation-menu__list_1wcv5_38",
41
+ "teddy-navigation-menu__top-menu-list": "_teddy-navigation-menu__top-menu-list_1wcv5_60",
42
+ "teddy-navigation-menu__top-menu-trigger": "_teddy-navigation-menu__top-menu-trigger_1wcv5_84",
43
+ "teddy-navigation-menu__top-menu-trigger--small": "_teddy-navigation-menu__top-menu-trigger--small_1wcv5_103",
44
+ "teddy-navigation-menu__top-menu-trigger--button": "_teddy-navigation-menu__top-menu-trigger--button_1wcv5_109",
45
+ "teddy-navigation-menu__content": "_teddy-navigation-menu__content_1wcv5_183",
46
+ "teddy-navigation-menu__trigger": "_teddy-navigation-menu__trigger_1wcv5_219",
47
+ "teddy-navigation-menu__trigger--small": "_teddy-navigation-menu__trigger--small_1wcv5_239",
48
+ "teddy-navigation-menu__trigger--button": "_teddy-navigation-menu__trigger--button_1wcv5_245",
49
+ "teddy-navigation-menu__link": "_teddy-navigation-menu__link_1wcv5_312",
50
+ "teddy-navigation-menu__link--small": "_teddy-navigation-menu__link--small_1wcv5_332",
51
+ "teddy-navigation-menu__link--button": "_teddy-navigation-menu__link--button_1wcv5_338",
52
+ scaleIn,
53
+ scaleOut,
47
54
  enterFromRight,
48
- exitToLeft,
55
+ enterFromLeft,
49
56
  exitToRight,
50
- "teddy-navigation-menu__trigger": "_teddy-navigation-menu__trigger_15tta_230",
51
- "teddy-navigation-menu__trigger--small": "_teddy-navigation-menu__trigger--small_15tta_250",
52
- "teddy-navigation-menu__trigger--button": "_teddy-navigation-menu__trigger--button_15tta_256",
53
- "teddy-navigation-menu__link": "_teddy-navigation-menu__link_15tta_323",
54
- "teddy-navigation-menu__link--small": "_teddy-navigation-menu__link--small_15tta_343",
55
- "teddy-navigation-menu__link--button": "_teddy-navigation-menu__link--button_15tta_349",
56
- scaleIn,
57
- scaleOut
57
+ exitToLeft
58
58
  };
59
59
  const rootClassName = "teddy-navigation-menu";
60
60
  const NavigationMenuContext = React.createContext({
@@ -9,33 +9,33 @@ import { Slot } from "@radix-ui/react-slot";
9
9
  import { useControllableState } from "@radix-ui/react-use-controllable-state";
10
10
  import { mergeStyles } from "../../utils/generate-styling/index.js";
11
11
  import { teddyMotionDuration300 } from "../../tokens/motion/variables.js";
12
- const enterFromLeft = "_enterFromLeft_15tta_1";
13
- const enterFromRight = "_enterFromRight_15tta_1";
14
- const exitToLeft = "_exitToLeft_15tta_1";
15
- const exitToRight = "_exitToRight_15tta_1";
16
- const scaleIn = "_scaleIn_15tta_1";
17
- const scaleOut = "_scaleOut_15tta_1";
12
+ const scaleIn = "_scaleIn_1wcv5_1";
13
+ const scaleOut = "_scaleOut_1wcv5_1";
14
+ const enterFromRight = "_enterFromRight_1wcv5_1";
15
+ const enterFromLeft = "_enterFromLeft_1wcv5_1";
16
+ const exitToRight = "_exitToRight_1wcv5_1";
17
+ const exitToLeft = "_exitToLeft_1wcv5_1";
18
18
  const styles = {
19
- "teddy-navigation-menu": "_teddy-navigation-menu_15tta_1",
20
- "teddy-navigation-menu__viewport": "_teddy-navigation-menu__viewport_15tta_34",
21
- "teddy-navigation-menu__list": "_teddy-navigation-menu__list_15tta_37",
22
- "teddy-navigation-menu__top-menu-list": "_teddy-navigation-menu__top-menu-list_15tta_59",
23
- "teddy-navigation-menu__top-menu-trigger": "_teddy-navigation-menu__top-menu-trigger_15tta_83",
24
- "teddy-navigation-menu__top-menu-trigger--small": "_teddy-navigation-menu__top-menu-trigger--small_15tta_102",
25
- "teddy-navigation-menu__top-menu-trigger--button": "_teddy-navigation-menu__top-menu-trigger--button_15tta_108",
26
- "teddy-navigation-menu__content": "_teddy-navigation-menu__content_15tta_182",
27
- enterFromLeft,
19
+ "teddy-navigation-menu": "_teddy-navigation-menu_1wcv5_2",
20
+ "teddy-navigation-menu__viewport": "_teddy-navigation-menu__viewport_1wcv5_35",
21
+ "teddy-navigation-menu__list": "_teddy-navigation-menu__list_1wcv5_38",
22
+ "teddy-navigation-menu__top-menu-list": "_teddy-navigation-menu__top-menu-list_1wcv5_60",
23
+ "teddy-navigation-menu__top-menu-trigger": "_teddy-navigation-menu__top-menu-trigger_1wcv5_84",
24
+ "teddy-navigation-menu__top-menu-trigger--small": "_teddy-navigation-menu__top-menu-trigger--small_1wcv5_103",
25
+ "teddy-navigation-menu__top-menu-trigger--button": "_teddy-navigation-menu__top-menu-trigger--button_1wcv5_109",
26
+ "teddy-navigation-menu__content": "_teddy-navigation-menu__content_1wcv5_183",
27
+ "teddy-navigation-menu__trigger": "_teddy-navigation-menu__trigger_1wcv5_219",
28
+ "teddy-navigation-menu__trigger--small": "_teddy-navigation-menu__trigger--small_1wcv5_239",
29
+ "teddy-navigation-menu__trigger--button": "_teddy-navigation-menu__trigger--button_1wcv5_245",
30
+ "teddy-navigation-menu__link": "_teddy-navigation-menu__link_1wcv5_312",
31
+ "teddy-navigation-menu__link--small": "_teddy-navigation-menu__link--small_1wcv5_332",
32
+ "teddy-navigation-menu__link--button": "_teddy-navigation-menu__link--button_1wcv5_338",
33
+ scaleIn,
34
+ scaleOut,
28
35
  enterFromRight,
29
- exitToLeft,
36
+ enterFromLeft,
30
37
  exitToRight,
31
- "teddy-navigation-menu__trigger": "_teddy-navigation-menu__trigger_15tta_230",
32
- "teddy-navigation-menu__trigger--small": "_teddy-navigation-menu__trigger--small_15tta_250",
33
- "teddy-navigation-menu__trigger--button": "_teddy-navigation-menu__trigger--button_15tta_256",
34
- "teddy-navigation-menu__link": "_teddy-navigation-menu__link_15tta_323",
35
- "teddy-navigation-menu__link--small": "_teddy-navigation-menu__link--small_15tta_343",
36
- "teddy-navigation-menu__link--button": "_teddy-navigation-menu__link--button_15tta_349",
37
- scaleIn,
38
- scaleOut
38
+ exitToLeft
39
39
  };
40
40
  const rootClassName = "teddy-navigation-menu";
41
41
  const NavigationMenuContext = React__default.createContext({