@telia/teddy 0.0.27 → 0.0.29

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.
Files changed (87) hide show
  1. package/dist/components/accordion/accordion-root.cjs +14 -14
  2. package/dist/components/accordion/accordion-root.js +14 -14
  3. package/dist/components/card/card.d.ts +3 -3
  4. package/dist/components/chip/chip-indicator.d.ts +2 -2
  5. package/dist/components/chip/index.d.ts +2 -2
  6. package/dist/components/index.cjs +6 -0
  7. package/dist/components/index.d.ts +2 -0
  8. package/dist/components/index.js +6 -0
  9. package/dist/components/modal/modal.cjs +3 -0
  10. package/dist/components/modal/modal.js +3 -0
  11. package/dist/components/navigation-menu/global-navigation/global-navigation-desktop.cjs +9 -0
  12. package/dist/components/navigation-menu/global-navigation/global-navigation-desktop.d.ts +4 -0
  13. package/dist/components/navigation-menu/global-navigation/global-navigation-desktop.js +9 -0
  14. package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.cjs +21 -0
  15. package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.d.ts +4 -0
  16. package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.js +21 -0
  17. package/dist/components/navigation-menu/global-navigation/global-navigation-my-pages.cjs +369 -0
  18. package/dist/components/navigation-menu/global-navigation/global-navigation-my-pages.d.ts +8 -0
  19. package/dist/components/navigation-menu/global-navigation/global-navigation-my-pages.js +369 -0
  20. package/dist/components/navigation-menu/global-navigation/global-navigation-root.cjs +12 -0
  21. package/dist/components/navigation-menu/global-navigation/global-navigation-root.d.ts +33 -0
  22. package/dist/components/navigation-menu/global-navigation/global-navigation-root.js +12 -0
  23. package/dist/components/navigation-menu/global-navigation/global-navigation-search-field.cjs +37 -0
  24. package/dist/components/navigation-menu/global-navigation/global-navigation-search-field.d.ts +10 -0
  25. package/dist/components/navigation-menu/global-navigation/global-navigation-search-field.js +37 -0
  26. package/dist/components/navigation-menu/global-navigation/global-navigation-search.cjs +12 -0
  27. package/dist/components/navigation-menu/global-navigation/global-navigation-search.d.ts +8 -0
  28. package/dist/components/navigation-menu/global-navigation/global-navigation-search.js +12 -0
  29. package/dist/components/navigation-menu/global-navigation/global-navigation-shopping-cart.cjs +11 -0
  30. package/dist/components/navigation-menu/global-navigation/global-navigation-shopping-cart.d.ts +4 -0
  31. package/dist/components/navigation-menu/global-navigation/global-navigation-shopping-cart.js +11 -0
  32. package/dist/components/navigation-menu/global-navigation/index.cjs +4 -0
  33. package/dist/components/navigation-menu/global-navigation/index.d.ts +6 -0
  34. package/dist/components/navigation-menu/global-navigation/index.js +4 -0
  35. package/dist/components/navigation-menu/global-navigation/utils.cjs +318 -0
  36. package/dist/components/navigation-menu/global-navigation/utils.d.ts +496 -0
  37. package/dist/components/navigation-menu/global-navigation/utils.js +318 -0
  38. package/dist/components/navigation-menu/index.cjs +2 -0
  39. package/dist/components/navigation-menu/index.d.ts +1 -0
  40. package/dist/components/navigation-menu/index.js +2 -0
  41. package/dist/components/navigation-menu/navigation-menu.cjs +49 -23
  42. package/dist/components/navigation-menu/navigation-menu.d.ts +5 -0
  43. package/dist/components/navigation-menu/navigation-menu.js +50 -24
  44. package/dist/components/notabene/index.cjs +4 -0
  45. package/dist/components/notabene/index.d.ts +1 -0
  46. package/dist/components/notabene/index.js +4 -0
  47. package/dist/components/notabene/notabene.cjs +35 -0
  48. package/dist/components/notabene/notabene.d.ts +15 -0
  49. package/dist/components/notabene/notabene.js +35 -0
  50. package/dist/components/notification/notification.d.ts +2 -2
  51. package/dist/components/scroll-area/index.d.ts +2 -2
  52. package/dist/components/scroll-area/scroll-area-button.d.ts +2 -2
  53. package/dist/components/tabs/index.d.ts +2 -2
  54. package/dist/components/tabs/tabs-scroll-button.d.ts +2 -2
  55. package/dist/components/text-field/index.d.ts +2 -2
  56. package/dist/components/text-field/text-field-button.d.ts +2 -2
  57. package/dist/components/toggle/toggle.d.ts +2 -2
  58. package/dist/components/tooltip/index.cjs +22 -0
  59. package/dist/components/tooltip/index.d.ts +40 -0
  60. package/dist/components/tooltip/index.js +22 -0
  61. package/dist/components/tooltip/tooltip-arrow.cjs +33 -0
  62. package/dist/components/tooltip/tooltip-arrow.d.ts +6 -0
  63. package/dist/components/tooltip/tooltip-arrow.js +16 -0
  64. package/dist/components/tooltip/tooltip-content.cjs +46 -0
  65. package/dist/components/tooltip/tooltip-content.d.ts +80 -0
  66. package/dist/components/tooltip/tooltip-content.js +29 -0
  67. package/dist/components/tooltip/tooltip-portal.cjs +26 -0
  68. package/dist/components/tooltip/tooltip-portal.d.ts +7 -0
  69. package/dist/components/tooltip/tooltip-portal.js +9 -0
  70. package/dist/components/tooltip/tooltip-provider.cjs +30 -0
  71. package/dist/components/tooltip/tooltip-provider.d.ts +9 -0
  72. package/dist/components/tooltip/tooltip-provider.js +13 -0
  73. package/dist/components/tooltip/tooltip-root.cjs +36 -0
  74. package/dist/components/tooltip/tooltip-root.d.ts +25 -0
  75. package/dist/components/tooltip/tooltip-root.js +19 -0
  76. package/dist/components/tooltip/tooltip-trigger.cjs +38 -0
  77. package/dist/components/tooltip/tooltip-trigger.d.ts +6 -0
  78. package/dist/components/tooltip/tooltip-trigger.js +21 -0
  79. package/dist/main.cjs +6 -0
  80. package/dist/main.js +6 -0
  81. package/dist/style.css +1202 -1048
  82. package/dist/tooltip.module-D_3DOZOn.cjs +15 -0
  83. package/dist/tooltip.module-DnKU2XS4.js +16 -0
  84. package/dist/utils/generate-styling/grid.d.ts +24 -24
  85. package/dist/utils/generate-styling/index.d.ts +16 -16
  86. package/dist/utils/generate-styling/util.d.ts +2 -2
  87. package/package.json +2 -1
@@ -22,22 +22,22 @@ function _interopNamespaceDefault(e) {
22
22
  return Object.freeze(n);
23
23
  }
24
24
  const AccordionPrimitive__namespace = /* @__PURE__ */ _interopNamespaceDefault(AccordionPrimitive);
25
- const slideDown = "_slideDown_1u2y1_1";
26
- const slideUp = "_slideUp_1u2y1_1";
25
+ const slideDown = "_slideDown_1arsz_1";
26
+ const slideUp = "_slideUp_1arsz_1";
27
27
  const styles = {
28
- "teddy-accordion--indented": "_teddy-accordion--indented_1u2y1_3",
29
- "teddy-accordion__header": "_teddy-accordion__header_1u2y1_3",
30
- "teddy-accordion__content": "_teddy-accordion__content_1u2y1_6",
31
- "teddy-accordion--negative": "_teddy-accordion--negative_1u2y1_9",
32
- "teddy-accordion__title": "_teddy-accordion__title_1u2y1_13",
33
- "teddy-accordion__trigger": "_teddy-accordion__trigger_1u2y1_16",
34
- "teddy-accordion__item": "_teddy-accordion__item_1u2y1_24",
35
- "teddy-accordion--info-area": "_teddy-accordion--info-area_1u2y1_30",
36
- "teddy-accordion": "_teddy-accordion_1u2y1_3",
37
- "teddy-accordion__indicator": "_teddy-accordion__indicator_1u2y1_136",
38
- "teddy-accordion__indicator--rotate": "_teddy-accordion__indicator--rotate_1u2y1_147",
28
+ "teddy-accordion": "_teddy-accordion_1arsz_3",
29
+ "teddy-accordion--indented": "_teddy-accordion--indented_1arsz_11",
30
+ "teddy-accordion__header": "_teddy-accordion__header_1arsz_11",
31
+ "teddy-accordion__content": "_teddy-accordion__content_1arsz_14",
32
+ "teddy-accordion--negative": "_teddy-accordion--negative_1arsz_17",
33
+ "teddy-accordion__title": "_teddy-accordion__title_1arsz_21",
34
+ "teddy-accordion__trigger": "_teddy-accordion__trigger_1arsz_24",
35
+ "teddy-accordion__item": "_teddy-accordion__item_1arsz_32",
36
+ "teddy-accordion__indicator": "_teddy-accordion__indicator_1arsz_101",
37
+ "teddy-accordion__indicator--rotate": "_teddy-accordion__indicator--rotate_1arsz_112",
39
38
  slideDown,
40
- slideUp
39
+ slideUp,
40
+ "teddy-accordion--info-area": "_teddy-accordion--info-area_1arsz_138"
41
41
  };
42
42
  const rootClassName = "teddy-accordion";
43
43
  const RootContext = React.createContext({ value: void 0, variant: void 0 });
@@ -3,22 +3,22 @@ import clsx from "clsx";
3
3
  import React__default from "react";
4
4
  import * as AccordionPrimitive from "@radix-ui/react-accordion";
5
5
  import { useControllableState } from "@radix-ui/react-use-controllable-state";
6
- const slideDown = "_slideDown_1u2y1_1";
7
- const slideUp = "_slideUp_1u2y1_1";
6
+ const slideDown = "_slideDown_1arsz_1";
7
+ const slideUp = "_slideUp_1arsz_1";
8
8
  const styles = {
9
- "teddy-accordion--indented": "_teddy-accordion--indented_1u2y1_3",
10
- "teddy-accordion__header": "_teddy-accordion__header_1u2y1_3",
11
- "teddy-accordion__content": "_teddy-accordion__content_1u2y1_6",
12
- "teddy-accordion--negative": "_teddy-accordion--negative_1u2y1_9",
13
- "teddy-accordion__title": "_teddy-accordion__title_1u2y1_13",
14
- "teddy-accordion__trigger": "_teddy-accordion__trigger_1u2y1_16",
15
- "teddy-accordion__item": "_teddy-accordion__item_1u2y1_24",
16
- "teddy-accordion--info-area": "_teddy-accordion--info-area_1u2y1_30",
17
- "teddy-accordion": "_teddy-accordion_1u2y1_3",
18
- "teddy-accordion__indicator": "_teddy-accordion__indicator_1u2y1_136",
19
- "teddy-accordion__indicator--rotate": "_teddy-accordion__indicator--rotate_1u2y1_147",
9
+ "teddy-accordion": "_teddy-accordion_1arsz_3",
10
+ "teddy-accordion--indented": "_teddy-accordion--indented_1arsz_11",
11
+ "teddy-accordion__header": "_teddy-accordion__header_1arsz_11",
12
+ "teddy-accordion__content": "_teddy-accordion__content_1arsz_14",
13
+ "teddy-accordion--negative": "_teddy-accordion--negative_1arsz_17",
14
+ "teddy-accordion__title": "_teddy-accordion__title_1arsz_21",
15
+ "teddy-accordion__trigger": "_teddy-accordion__trigger_1arsz_24",
16
+ "teddy-accordion__item": "_teddy-accordion__item_1arsz_32",
17
+ "teddy-accordion__indicator": "_teddy-accordion__indicator_1arsz_101",
18
+ "teddy-accordion__indicator--rotate": "_teddy-accordion__indicator--rotate_1arsz_112",
20
19
  slideDown,
21
- slideUp
20
+ slideUp,
21
+ "teddy-accordion--info-area": "_teddy-accordion--info-area_1arsz_138"
22
22
  };
23
23
  const rootClassName = "teddy-accordion";
24
24
  const RootContext = React__default.createContext({ value: void 0, variant: void 0 });
@@ -67,7 +67,7 @@ declare const Card: React.ForwardRefExoticComponent<RootProps & React.RefAttribu
67
67
  loading?: boolean | undefined;
68
68
  fullWidth?: boolean | undefined;
69
69
  size?: "sm" | "md" | "lg" | undefined;
70
- variant?: "text" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
70
+ variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
71
71
  } & {
72
72
  iconOnly: true;
73
73
  "aria-label": string;
@@ -78,7 +78,7 @@ declare const Card: React.ForwardRefExoticComponent<RootProps & React.RefAttribu
78
78
  loading?: boolean | undefined;
79
79
  fullWidth?: boolean | undefined;
80
80
  size?: "sm" | "md" | "lg" | undefined;
81
- variant?: "text" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
81
+ variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
82
82
  } & {
83
83
  iconOnly?: false | undefined;
84
84
  "aria-label"?: string | undefined;
@@ -90,7 +90,7 @@ declare const Card: React.ForwardRefExoticComponent<RootProps & React.RefAttribu
90
90
  disableVisited?: boolean | undefined;
91
91
  ensureTargetArea?: boolean | undefined;
92
92
  silent?: boolean | undefined;
93
- variant: "text" | "navigation" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
93
+ variant: "navigation" | "text" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
94
94
  } & React.RefAttributes<HTMLAnchorElement>, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
95
95
  Slot: React.ForwardRefExoticComponent<SlotProps & React.RefAttributes<HTMLDivElement>>;
96
96
  Line: React.ForwardRefExoticComponent<LineProps & React.RefAttributes<HTMLDivElement>>;
@@ -3,7 +3,7 @@ import { Icon } from '../icon';
3
3
 
4
4
  export type IndicatorProps = Partial<React.ComponentPropsWithoutRef<typeof Icon>>;
5
5
  export declare const Indicator: React.ForwardRefExoticComponent<Partial<Omit<React.SVGProps<SVGSVGElement> & {
6
- name: "key" | "search" | "split" | "link" | "add" | "reverse" | "infinite" | "radio" | "visible" | "copy" | "help" | "zoom-out" | "filter" | "x" | "zoom" | "menu" | "map" | "summary" | "time" | "video" | "image" | "stop" | "download" | "alert" | "email" | "alarm-off" | "alarm-on" | "attachment" | "bookmark-filled" | "bookmark" | "copy-filled" | "dislike" | "edit" | "heart-filled" | "heart" | "invisible" | "like" | "lock-open" | "lock" | "login" | "logout" | "maximize" | "minimize" | "mute" | "password-invisible" | "password-visible" | "play-filled" | "play" | "remove-filled" | "remove" | "save" | "send" | "settings" | "share" | "shortcut" | "shuffle" | "sync" | "skip-back-10sec" | "skip-back-30sec" | "skip-forward-10sec" | "skip-forward-30sec" | "star-filled" | "star" | "switch-arrows" | "tv-next" | "tv-pause" | "tv-previous" | "tv-stop" | "upload" | "volume" | "connected-building" | "home" | "hospital" | "industry" | "premises-datacenter" | "premises-large" | "premises-medium" | "premises-small" | "premises" | "store" | "address-book" | "b2b-customer" | "care" | "chat-robot" | "chat" | "child-1" | "child-2" | "conversation" | "customer-dialogue" | "dsl-hub" | "end-user" | "handshake" | "headphones" | "letter" | "mms" | "new-contact" | "new-group" | "news" | "parental-guide" | "people-hub" | "people" | "portal" | "signature" | "smiley-happy" | "smiley-sad" | "sms" | "support" | "user-admin" | "vcard" | "voicemail" | "battery" | "bluetooth" | "broadband" | "broken-phone" | "cast" | "cloud-connect" | "connected" | "core-router" | "daas-device" | "data-transfer" | "desktop" | "devices" | "esim-simcard" | "esim" | "face-id" | "fiber" | "fingerprint" | "fiveg" | "fourg" | "home-installation" | "industrial-iot" | "internet" | "it-service" | "laptop" | "mobile-broadband" | "network" | "phone-recycling" | "phone-ringing" | "phone" | "rack" | "refill-card" | "remote-control" | "repair" | "roaming" | "router" | "secure-device" | "sense-car" | "server" | "service-device" | "service-supervision" | "slow-wifi" | "smart-wifi" | "smartphone" | "smartwatch" | "tablet" | "trade-phone" | "tv" | "usb" | "voice-switch" | "wallplug" | "wireless-off" | "wireless-weak" | "wireless" | "world-alert" | "world-off" | "world-question" | "bar-chart" | "doc" | "document-doc" | "document-edit" | "document-pdf" | "document-ppt" | "excel" | "folder-copy" | "folder-new" | "folder" | "gif" | "graph" | "media-content" | "org-chart" | "pie-chart" | "print" | "register" | "report" | "simcard" | "spell-check" | "credit-card" | "euro" | "invoice" | "kontantkort" | "kr" | "late-payment" | "money-back-euro" | "money-back-kr" | "money-euro" | "money-kr" | "pay-monthly-euro" | "pay-monthly-kr" | "pay-once-euro" | "pay-once-kr" | "payment-success" | "savings" | "wallet" | "airplay" | "camera" | "entertainment" | "external" | "film" | "games" | "megaphone" | "microphone" | "music" | "player-settings" | "record" | "stream" | "trailer" | "video-conference" | "activity-level" | "ai-robot" | "bag" | "basketball" | "blood-pressure" | "bulb" | "business-continuity" | "business-intelligence" | "calendar" | "cart" | "close-circle" | "cloud" | "coffee" | "compass" | "construction" | "cookie" | "delivery" | "drone" | "education" | "efficiency" | "environment" | "facemask" | "flag" | "focus" | "food" | "fraud" | "getting-started" | "home-care" | "job-search" | "layers" | "measuring-health" | "moisture" | "offering" | "offshore" | "optimization" | "pebble" | "pet-dog" | "pin" | "plane" | "plus-minus" | "police" | "power-grid" | "present" | "press-button" | "price" | "pulse" | "recycle" | "reservation" | "route" | "ruler" | "satellite" | "secured-1" | "secured-2" | "security-camera" | "shopping" | "snowflake" | "speedometer" | "spyware" | "suitcase" | "sustainability" | "tag" | "temperature" | "thinking" | "train" | "transfer" | "undo" | "wavelength" | "weather" | "world" | "android" | "apple" | "bankid-norway" | "bankid" | "facebook" | "instagram" | "youtube" | "linkedin" | "snapchat" | "telia-logo" | "whatsapp" | "windows" | "alert-filled" | "check-circle-filled" | "check-circle" | "error-filled" | "error" | "info-filled" | "info" | "question-filled" | "question" | "warning" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-subdirectory" | "arrow-up" | "card-view" | "checkmark-bold" | "checkmark" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "close" | "grid-view" | "list-view" | "minus-bold" | "minus" | "more-horizontal" | "more-vertical" | "plus" | "services" | "sorter" | "table-view";
7
- size?: ("sm" | "md" | "lg" | "xl" | "font" | "xxs" | "xs") | undefined;
6
+ name: "alarm-off" | "alarm-on" | "attachment" | "bookmark-filled" | "bookmark" | "copy-filled" | "copy" | "dislike" | "download" | "edit" | "filter" | "heart-filled" | "heart" | "invisible" | "like" | "lock-open" | "lock" | "login" | "logout" | "maximize" | "minimize" | "mute" | "password-invisible" | "password-visible" | "play-filled" | "play" | "remove-filled" | "remove" | "save" | "send" | "settings" | "share" | "shortcut" | "shuffle" | "sync" | "skip-back-10sec" | "skip-back-30sec" | "skip-forward-10sec" | "skip-forward-30sec" | "star-filled" | "star" | "switch-arrows" | "tv-next" | "tv-pause" | "tv-previous" | "tv-stop" | "upload" | "visible" | "volume" | "zoom-out" | "zoom" | "connected-building" | "home" | "hospital" | "industry" | "premises-datacenter" | "premises-large" | "premises-medium" | "premises-small" | "premises" | "store" | "address-book" | "b2b-customer" | "care" | "chat-robot" | "chat" | "child-1" | "child-2" | "conversation" | "customer-dialogue" | "dsl-hub" | "email" | "end-user" | "handshake" | "headphones" | "letter" | "mms" | "new-contact" | "new-group" | "news" | "parental-guide" | "people-hub" | "people" | "portal" | "signature" | "smiley-happy" | "smiley-sad" | "sms" | "support" | "user-admin" | "vcard" | "voicemail" | "battery" | "bluetooth" | "broadband" | "broken-phone" | "cast" | "cloud-connect" | "connected" | "core-router" | "daas-device" | "data-transfer" | "desktop" | "devices" | "esim-simcard" | "esim" | "face-id" | "fiber" | "fingerprint" | "fiveg" | "fourg" | "home-installation" | "industrial-iot" | "internet" | "it-service" | "laptop" | "mobile-broadband" | "network" | "phone-recycling" | "phone-ringing" | "phone" | "rack" | "refill-card" | "remote-control" | "repair" | "roaming" | "router" | "secure-device" | "sense-car" | "server" | "service-device" | "service-supervision" | "slow-wifi" | "smart-wifi" | "smartphone" | "smartwatch" | "tablet" | "trade-phone" | "tv" | "usb" | "voice-switch" | "wallplug" | "wireless-off" | "wireless-weak" | "wireless" | "world-alert" | "world-off" | "world-question" | "bar-chart" | "doc" | "document-doc" | "document-edit" | "document-pdf" | "document-ppt" | "excel" | "folder-copy" | "folder-new" | "folder" | "gif" | "graph" | "media-content" | "org-chart" | "pie-chart" | "print" | "register" | "report" | "simcard" | "spell-check" | "summary" | "credit-card" | "euro" | "invoice" | "kontantkort" | "kr" | "late-payment" | "money-back-euro" | "money-back-kr" | "money-euro" | "money-kr" | "pay-monthly-euro" | "pay-monthly-kr" | "pay-once-euro" | "pay-once-kr" | "payment-success" | "savings" | "wallet" | "airplay" | "camera" | "entertainment" | "external" | "film" | "games" | "image" | "link" | "megaphone" | "microphone" | "music" | "player-settings" | "record" | "stream" | "trailer" | "video-conference" | "video" | "activity-level" | "add" | "ai-robot" | "bag" | "basketball" | "blood-pressure" | "bulb" | "business-continuity" | "business-intelligence" | "calendar" | "cart" | "close-circle" | "cloud" | "coffee" | "compass" | "construction" | "cookie" | "delivery" | "drone" | "education" | "efficiency" | "environment" | "facemask" | "flag" | "focus" | "food" | "fraud" | "getting-started" | "home-care" | "infinite" | "job-search" | "key" | "layers" | "map" | "measuring-health" | "moisture" | "offering" | "offshore" | "optimization" | "pebble" | "pet-dog" | "pin" | "plane" | "plus-minus" | "police" | "power-grid" | "present" | "press-button" | "price" | "pulse" | "radio" | "recycle" | "reservation" | "reverse" | "route" | "ruler" | "satellite" | "secured-1" | "secured-2" | "security-camera" | "shopping" | "snowflake" | "speedometer" | "spyware" | "split" | "stop" | "suitcase" | "sustainability" | "tag" | "temperature" | "thinking" | "time" | "train" | "transfer" | "undo" | "wavelength" | "weather" | "world" | "android" | "apple" | "bankid-norway" | "bankid" | "facebook" | "instagram" | "youtube" | "linkedin" | "snapchat" | "telia-logo" | "whatsapp" | "windows" | "x" | "alert-filled" | "alert" | "check-circle-filled" | "check-circle" | "error-filled" | "error" | "help" | "info-filled" | "info" | "question-filled" | "question" | "warning" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-subdirectory" | "arrow-up" | "card-view" | "checkmark-bold" | "checkmark" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "close" | "grid-view" | "list-view" | "menu" | "minus-bold" | "minus" | "more-horizontal" | "more-vertical" | "plus" | "search" | "services" | "sorter" | "table-view";
7
+ size?: ("font" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl") | undefined;
8
8
  children?: React.ReactNode;
9
9
  }, "ref">> & React.RefAttributes<SVGSVGElement>>;
@@ -5,8 +5,8 @@ import { ItemProps } from './chip-item';
5
5
  export declare const Chip: import('react').ForwardRefExoticComponent<RootProps & import('react').RefAttributes<HTMLDivElement>> & {
6
6
  Item: import('react').ForwardRefExoticComponent<ItemProps & import('react').RefAttributes<HTMLButtonElement>>;
7
7
  Indicator: import('react').ForwardRefExoticComponent<Partial<Omit<import('react').SVGProps<SVGSVGElement> & {
8
- name: "key" | "search" | "split" | "link" | "add" | "reverse" | "infinite" | "radio" | "visible" | "copy" | "help" | "zoom-out" | "filter" | "x" | "zoom" | "menu" | "map" | "summary" | "time" | "video" | "image" | "stop" | "download" | "alert" | "email" | "alarm-off" | "alarm-on" | "attachment" | "bookmark-filled" | "bookmark" | "copy-filled" | "dislike" | "edit" | "heart-filled" | "heart" | "invisible" | "like" | "lock-open" | "lock" | "login" | "logout" | "maximize" | "minimize" | "mute" | "password-invisible" | "password-visible" | "play-filled" | "play" | "remove-filled" | "remove" | "save" | "send" | "settings" | "share" | "shortcut" | "shuffle" | "sync" | "skip-back-10sec" | "skip-back-30sec" | "skip-forward-10sec" | "skip-forward-30sec" | "star-filled" | "star" | "switch-arrows" | "tv-next" | "tv-pause" | "tv-previous" | "tv-stop" | "upload" | "volume" | "connected-building" | "home" | "hospital" | "industry" | "premises-datacenter" | "premises-large" | "premises-medium" | "premises-small" | "premises" | "store" | "address-book" | "b2b-customer" | "care" | "chat-robot" | "chat" | "child-1" | "child-2" | "conversation" | "customer-dialogue" | "dsl-hub" | "end-user" | "handshake" | "headphones" | "letter" | "mms" | "new-contact" | "new-group" | "news" | "parental-guide" | "people-hub" | "people" | "portal" | "signature" | "smiley-happy" | "smiley-sad" | "sms" | "support" | "user-admin" | "vcard" | "voicemail" | "battery" | "bluetooth" | "broadband" | "broken-phone" | "cast" | "cloud-connect" | "connected" | "core-router" | "daas-device" | "data-transfer" | "desktop" | "devices" | "esim-simcard" | "esim" | "face-id" | "fiber" | "fingerprint" | "fiveg" | "fourg" | "home-installation" | "industrial-iot" | "internet" | "it-service" | "laptop" | "mobile-broadband" | "network" | "phone-recycling" | "phone-ringing" | "phone" | "rack" | "refill-card" | "remote-control" | "repair" | "roaming" | "router" | "secure-device" | "sense-car" | "server" | "service-device" | "service-supervision" | "slow-wifi" | "smart-wifi" | "smartphone" | "smartwatch" | "tablet" | "trade-phone" | "tv" | "usb" | "voice-switch" | "wallplug" | "wireless-off" | "wireless-weak" | "wireless" | "world-alert" | "world-off" | "world-question" | "bar-chart" | "doc" | "document-doc" | "document-edit" | "document-pdf" | "document-ppt" | "excel" | "folder-copy" | "folder-new" | "folder" | "gif" | "graph" | "media-content" | "org-chart" | "pie-chart" | "print" | "register" | "report" | "simcard" | "spell-check" | "credit-card" | "euro" | "invoice" | "kontantkort" | "kr" | "late-payment" | "money-back-euro" | "money-back-kr" | "money-euro" | "money-kr" | "pay-monthly-euro" | "pay-monthly-kr" | "pay-once-euro" | "pay-once-kr" | "payment-success" | "savings" | "wallet" | "airplay" | "camera" | "entertainment" | "external" | "film" | "games" | "megaphone" | "microphone" | "music" | "player-settings" | "record" | "stream" | "trailer" | "video-conference" | "activity-level" | "ai-robot" | "bag" | "basketball" | "blood-pressure" | "bulb" | "business-continuity" | "business-intelligence" | "calendar" | "cart" | "close-circle" | "cloud" | "coffee" | "compass" | "construction" | "cookie" | "delivery" | "drone" | "education" | "efficiency" | "environment" | "facemask" | "flag" | "focus" | "food" | "fraud" | "getting-started" | "home-care" | "job-search" | "layers" | "measuring-health" | "moisture" | "offering" | "offshore" | "optimization" | "pebble" | "pet-dog" | "pin" | "plane" | "plus-minus" | "police" | "power-grid" | "present" | "press-button" | "price" | "pulse" | "recycle" | "reservation" | "route" | "ruler" | "satellite" | "secured-1" | "secured-2" | "security-camera" | "shopping" | "snowflake" | "speedometer" | "spyware" | "suitcase" | "sustainability" | "tag" | "temperature" | "thinking" | "train" | "transfer" | "undo" | "wavelength" | "weather" | "world" | "android" | "apple" | "bankid-norway" | "bankid" | "facebook" | "instagram" | "youtube" | "linkedin" | "snapchat" | "telia-logo" | "whatsapp" | "windows" | "alert-filled" | "check-circle-filled" | "check-circle" | "error-filled" | "error" | "info-filled" | "info" | "question-filled" | "question" | "warning" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-subdirectory" | "arrow-up" | "card-view" | "checkmark-bold" | "checkmark" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "close" | "grid-view" | "list-view" | "minus-bold" | "minus" | "more-horizontal" | "more-vertical" | "plus" | "services" | "sorter" | "table-view";
9
- size?: ("sm" | "md" | "lg" | "xl" | "font" | "xxs" | "xs") | undefined;
8
+ name: "alarm-off" | "alarm-on" | "attachment" | "bookmark-filled" | "bookmark" | "copy-filled" | "copy" | "dislike" | "download" | "edit" | "filter" | "heart-filled" | "heart" | "invisible" | "like" | "lock-open" | "lock" | "login" | "logout" | "maximize" | "minimize" | "mute" | "password-invisible" | "password-visible" | "play-filled" | "play" | "remove-filled" | "remove" | "save" | "send" | "settings" | "share" | "shortcut" | "shuffle" | "sync" | "skip-back-10sec" | "skip-back-30sec" | "skip-forward-10sec" | "skip-forward-30sec" | "star-filled" | "star" | "switch-arrows" | "tv-next" | "tv-pause" | "tv-previous" | "tv-stop" | "upload" | "visible" | "volume" | "zoom-out" | "zoom" | "connected-building" | "home" | "hospital" | "industry" | "premises-datacenter" | "premises-large" | "premises-medium" | "premises-small" | "premises" | "store" | "address-book" | "b2b-customer" | "care" | "chat-robot" | "chat" | "child-1" | "child-2" | "conversation" | "customer-dialogue" | "dsl-hub" | "email" | "end-user" | "handshake" | "headphones" | "letter" | "mms" | "new-contact" | "new-group" | "news" | "parental-guide" | "people-hub" | "people" | "portal" | "signature" | "smiley-happy" | "smiley-sad" | "sms" | "support" | "user-admin" | "vcard" | "voicemail" | "battery" | "bluetooth" | "broadband" | "broken-phone" | "cast" | "cloud-connect" | "connected" | "core-router" | "daas-device" | "data-transfer" | "desktop" | "devices" | "esim-simcard" | "esim" | "face-id" | "fiber" | "fingerprint" | "fiveg" | "fourg" | "home-installation" | "industrial-iot" | "internet" | "it-service" | "laptop" | "mobile-broadband" | "network" | "phone-recycling" | "phone-ringing" | "phone" | "rack" | "refill-card" | "remote-control" | "repair" | "roaming" | "router" | "secure-device" | "sense-car" | "server" | "service-device" | "service-supervision" | "slow-wifi" | "smart-wifi" | "smartphone" | "smartwatch" | "tablet" | "trade-phone" | "tv" | "usb" | "voice-switch" | "wallplug" | "wireless-off" | "wireless-weak" | "wireless" | "world-alert" | "world-off" | "world-question" | "bar-chart" | "doc" | "document-doc" | "document-edit" | "document-pdf" | "document-ppt" | "excel" | "folder-copy" | "folder-new" | "folder" | "gif" | "graph" | "media-content" | "org-chart" | "pie-chart" | "print" | "register" | "report" | "simcard" | "spell-check" | "summary" | "credit-card" | "euro" | "invoice" | "kontantkort" | "kr" | "late-payment" | "money-back-euro" | "money-back-kr" | "money-euro" | "money-kr" | "pay-monthly-euro" | "pay-monthly-kr" | "pay-once-euro" | "pay-once-kr" | "payment-success" | "savings" | "wallet" | "airplay" | "camera" | "entertainment" | "external" | "film" | "games" | "image" | "link" | "megaphone" | "microphone" | "music" | "player-settings" | "record" | "stream" | "trailer" | "video-conference" | "video" | "activity-level" | "add" | "ai-robot" | "bag" | "basketball" | "blood-pressure" | "bulb" | "business-continuity" | "business-intelligence" | "calendar" | "cart" | "close-circle" | "cloud" | "coffee" | "compass" | "construction" | "cookie" | "delivery" | "drone" | "education" | "efficiency" | "environment" | "facemask" | "flag" | "focus" | "food" | "fraud" | "getting-started" | "home-care" | "infinite" | "job-search" | "key" | "layers" | "map" | "measuring-health" | "moisture" | "offering" | "offshore" | "optimization" | "pebble" | "pet-dog" | "pin" | "plane" | "plus-minus" | "police" | "power-grid" | "present" | "press-button" | "price" | "pulse" | "radio" | "recycle" | "reservation" | "reverse" | "route" | "ruler" | "satellite" | "secured-1" | "secured-2" | "security-camera" | "shopping" | "snowflake" | "speedometer" | "spyware" | "split" | "stop" | "suitcase" | "sustainability" | "tag" | "temperature" | "thinking" | "time" | "train" | "transfer" | "undo" | "wavelength" | "weather" | "world" | "android" | "apple" | "bankid-norway" | "bankid" | "facebook" | "instagram" | "youtube" | "linkedin" | "snapchat" | "telia-logo" | "whatsapp" | "windows" | "x" | "alert-filled" | "alert" | "check-circle-filled" | "check-circle" | "error-filled" | "error" | "help" | "info-filled" | "info" | "question-filled" | "question" | "warning" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-subdirectory" | "arrow-up" | "card-view" | "checkmark-bold" | "checkmark" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "close" | "grid-view" | "list-view" | "menu" | "minus-bold" | "minus" | "more-horizontal" | "more-vertical" | "plus" | "search" | "services" | "sorter" | "table-view";
9
+ size?: ("font" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl") | undefined;
10
10
  children?: import('react').ReactNode;
11
11
  }, "ref">> & import('react').RefAttributes<SVGSVGElement>>;
12
12
  };
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const components_notabene_notabene = require("./notabene/notabene.cjs");
4
+ const components_tooltip_index = require("./tooltip/index.cjs");
3
5
  const components_list_index = require("./list/index.cjs");
4
6
  const components_scrollArea_index = require("./scroll-area/index.cjs");
5
7
  const components_tabs_index = require("./tabs/index.cjs");
@@ -14,6 +16,7 @@ const components_flex_flex = require("./flex/flex.cjs");
14
16
  const components_card_card = require("./card/card.cjs");
15
17
  const components_grid_grid = require("./grid/grid.cjs");
16
18
  const components_navigationMenu_navigationMenu = require("./navigation-menu/navigation-menu.cjs");
19
+ const components_navigationMenu_globalNavigation_globalNavigationMyPages = require("./navigation-menu/global-navigation/global-navigation-my-pages.cjs");
17
20
  const components_toggle_toggle = require("./toggle/toggle.cjs");
18
21
  const components_accordion_index = require("./accordion/index.cjs");
19
22
  const components_link_link = require("./link/link.cjs");
@@ -35,6 +38,8 @@ const components_heading_heading = require("./heading/heading.cjs");
35
38
  const components_visuallyHidden_visuallyHidden = require("./visually-hidden/visually-hidden.cjs");
36
39
  const components_textSpacing_textSpacing = require("./text-spacing/text-spacing.cjs");
37
40
  const components_input_inputGroup = require("./input/input-group.cjs");
41
+ exports.Notabene = components_notabene_notabene.Notabene;
42
+ exports.Tooltip = components_tooltip_index.Tooltip;
38
43
  exports.List = components_list_index.List;
39
44
  exports.ScrollArea = components_scrollArea_index.ScrollArea;
40
45
  exports.Tabs = components_tabs_index.Tabs;
@@ -49,6 +54,7 @@ exports.Flex = components_flex_flex.Flex;
49
54
  exports.Card = components_card_card.Card;
50
55
  exports.Grid = components_grid_grid.Grid;
51
56
  exports.NavigationMenu = components_navigationMenu_navigationMenu.NavigationMenu;
57
+ exports.GlobalNavigation = components_navigationMenu_globalNavigation_globalNavigationMyPages.GlobalNavigation;
52
58
  exports.Toggle = components_toggle_toggle.Toggle;
53
59
  exports.Accordion = components_accordion_index.Accordion;
54
60
  exports.Link = components_link_link.Link;
@@ -1,3 +1,5 @@
1
+ export * from './notabene';
2
+ export * from './tooltip';
1
3
  export * from './list';
2
4
  export * from './scroll-area';
3
5
  export * from './tabs';
@@ -1,3 +1,5 @@
1
+ import { Notabene } from "./notabene/notabene.js";
2
+ import { Tooltip } from "./tooltip/index.js";
1
3
  import { List } from "./list/index.js";
2
4
  import { ScrollArea } from "./scroll-area/index.js";
3
5
  import { Tabs } from "./tabs/index.js";
@@ -12,6 +14,7 @@ import { Flex } from "./flex/flex.js";
12
14
  import { Card } from "./card/card.js";
13
15
  import { Grid } from "./grid/grid.js";
14
16
  import { NavigationMenu } from "./navigation-menu/navigation-menu.js";
17
+ import { G } from "./navigation-menu/global-navigation/global-navigation-my-pages.js";
15
18
  import { Toggle } from "./toggle/toggle.js";
16
19
  import { Accordion } from "./accordion/index.js";
17
20
  import { Link } from "./link/link.js";
@@ -46,6 +49,7 @@ export {
46
49
  Drawer,
47
50
  FieldErrorText,
48
51
  Flex,
52
+ G as GlobalNavigation,
49
53
  Grid,
50
54
  Heading,
51
55
  HelperText,
@@ -58,6 +62,7 @@ export {
58
62
  List,
59
63
  Modal,
60
64
  NavigationMenu,
65
+ Notabene,
61
66
  Notification,
62
67
  RadioGroup,
63
68
  ScrollArea,
@@ -67,6 +72,7 @@ export {
67
72
  TextField,
68
73
  TextSpacing,
69
74
  Toggle,
75
+ Tooltip,
70
76
  VisuallyHidden,
71
77
  default2 as iconsHref
72
78
  };
@@ -3,6 +3,8 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const jsxRuntime = require("react/jsx-runtime");
4
4
  const React = require("react");
5
5
  const DrawerPrimitive = require("@radix-ui/react-dialog");
6
+ require("../notabene/notabene.cjs");
7
+ require("../tooltip/index.cjs");
6
8
  require("../list/index.cjs");
7
9
  require("../scroll-area/index.cjs");
8
10
  require("../tabs/index.cjs");
@@ -16,6 +18,7 @@ const components_flex_flex = require("../flex/flex.cjs");
16
18
  require("../card/card.cjs");
17
19
  require("../grid/grid.cjs");
18
20
  require("../navigation-menu/navigation-menu.cjs");
21
+ require("../navigation-menu/global-navigation/global-navigation-my-pages.cjs");
19
22
  require("../toggle/toggle.cjs");
20
23
  require("../accordion/index.cjs");
21
24
  require("../link/link.cjs");
@@ -1,6 +1,8 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import React__default, { useEffect } from "react";
3
3
  import * as DrawerPrimitive from "@radix-ui/react-dialog";
4
+ import "../notabene/notabene.js";
5
+ import "../tooltip/index.js";
4
6
  import "../list/index.js";
5
7
  import "../scroll-area/index.js";
6
8
  import "../tabs/index.js";
@@ -14,6 +16,7 @@ import { Flex } from "../flex/flex.js";
14
16
  import "../card/card.js";
15
17
  import "../grid/grid.js";
16
18
  import "../navigation-menu/navigation-menu.js";
19
+ import "../navigation-menu/global-navigation/global-navigation-my-pages.js";
17
20
  import "../toggle/toggle.js";
18
21
  import "../accordion/index.js";
19
22
  import "../link/link.js";
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ require("react/jsx-runtime");
4
+ require("react");
5
+ require("../navigation-menu.cjs");
6
+ const components_navigationMenu_globalNavigation_globalNavigationMyPages = require("./global-navigation-my-pages.cjs");
7
+ require("./utils.cjs");
8
+ require("../../box/box.cjs");
9
+ exports.Desktop = components_navigationMenu_globalNavigation_globalNavigationMyPages.Desktop;
@@ -0,0 +1,4 @@
1
+ import { default as React } from 'react';
2
+
3
+ export type DesktopProps = React.ComponentPropsWithoutRef<'div'>;
4
+ export declare const Desktop: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,9 @@
1
+ import "react/jsx-runtime";
2
+ import "react";
3
+ import "../navigation-menu.js";
4
+ import { D } from "./global-navigation-my-pages.js";
5
+ import "./utils.js";
6
+ import "../../box/box.js";
7
+ export {
8
+ D as Desktop
9
+ };
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ require("react/jsx-runtime");
4
+ require("react");
5
+ const components_navigationMenu_globalNavigation_globalNavigationMyPages = require("./global-navigation-my-pages.cjs");
6
+ require("clsx");
7
+ require("../navigation-menu.cjs");
8
+ require("../../flex/flex.cjs");
9
+ require("../../box/box.cjs");
10
+ require("../../drawer/index.cjs");
11
+ require("../../button/button.cjs");
12
+ require("../../../assets/sprite.269ba410-teddy.svg");
13
+ require("../../icon/icon.cjs");
14
+ require("./global-navigation-search-field.cjs");
15
+ require("../../tabs/index.cjs");
16
+ require("./utils.cjs");
17
+ require("../../accordion/index.cjs");
18
+ require("../../visually-hidden/visually-hidden.cjs");
19
+ require("../../link/link.cjs");
20
+ require("../../list/index.cjs");
21
+ exports.Mobile = components_navigationMenu_globalNavigation_globalNavigationMyPages.Mobile;
@@ -0,0 +1,4 @@
1
+ import { default as React } from 'react';
2
+
3
+ export type MobileProps = React.ComponentPropsWithoutRef<'div'>;
4
+ export declare const Mobile: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,21 @@
1
+ import "react/jsx-runtime";
2
+ import "react";
3
+ import { M } from "./global-navigation-my-pages.js";
4
+ import "clsx";
5
+ import "../navigation-menu.js";
6
+ import "../../flex/flex.js";
7
+ import "../../box/box.js";
8
+ import "../../drawer/index.js";
9
+ import "../../button/button.js";
10
+ import "../../../assets/sprite.269ba410-teddy.svg";
11
+ import "../../icon/icon.js";
12
+ import "./global-navigation-search-field.js";
13
+ import "../../tabs/index.js";
14
+ import "./utils.js";
15
+ import "../../accordion/index.js";
16
+ import "../../visually-hidden/visually-hidden.js";
17
+ import "../../link/link.js";
18
+ import "../../list/index.js";
19
+ export {
20
+ M as Mobile
21
+ };