@telia/teddy 0.0.59 → 0.0.61

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 (86) hide show
  1. package/dist/components/breadcrumbs/breadcrumbs-link.d.ts +1 -1
  2. package/dist/components/breadcrumbs/index.d.ts +1 -1
  3. package/dist/components/card/card-button.cjs +1 -1
  4. package/dist/components/card/card-button.d.ts +3 -29
  5. package/dist/components/card/card-button.js +1 -1
  6. package/dist/components/card/card-illustration.d.ts +1 -1
  7. package/dist/components/card/card-link.d.ts +1 -1
  8. package/dist/components/card/index.d.ts +3 -27
  9. package/dist/components/chip/chip-indicator.d.ts +1 -1
  10. package/dist/components/chip/index.d.ts +1 -1
  11. package/dist/components/expandable-card/expandable-card-button.d.ts +3 -3
  12. package/dist/components/expandable-card/index.d.ts +4 -4
  13. package/dist/components/icon/icon.cjs +9 -9
  14. package/dist/components/icon/icon.js +9 -9
  15. package/dist/components/index.cjs +9 -0
  16. package/dist/components/index.d.ts +2 -0
  17. package/dist/components/index.js +7 -1
  18. package/dist/components/modal/modal.cjs +3 -0
  19. package/dist/components/modal/modal.js +3 -0
  20. package/dist/components/navigation-menu/navigation-menu.d.ts +1 -1
  21. package/dist/components/notabene/notabene-icon.d.ts +1 -1
  22. package/dist/components/notabene/notabene-root.cjs +16 -5
  23. package/dist/components/notabene/notabene-root.d.ts +2 -2
  24. package/dist/components/notabene/notabene-root.js +16 -5
  25. package/dist/components/notification/notification.d.ts +1 -1
  26. package/dist/components/radio-card-group/radio-card-group-content.cjs +3 -0
  27. package/dist/components/radio-card-group/radio-card-group-content.js +3 -0
  28. package/dist/components/radio-card-group/radio-card-group-item-body.cjs +3 -0
  29. package/dist/components/radio-card-group/radio-card-group-item-body.js +3 -0
  30. package/dist/components/radio-card-group/radio-card-group-item-title.cjs +3 -0
  31. package/dist/components/radio-card-group/radio-card-group-item-title.js +3 -0
  32. package/dist/components/radio-card-group/radio-card-group-item.cjs +3 -0
  33. package/dist/components/radio-card-group/radio-card-group-item.js +3 -0
  34. package/dist/components/scroll-area/index.d.ts +3 -3
  35. package/dist/components/scroll-area/scroll-area-button.d.ts +3 -3
  36. package/dist/components/tabs/index.d.ts +3 -3
  37. package/dist/components/tabs/tabs-scroll-button.d.ts +3 -3
  38. package/dist/components/text-field/index.d.ts +2 -2
  39. package/dist/components/text-field/text-field-button.d.ts +2 -2
  40. package/dist/components/toast/index.cjs +10 -0
  41. package/dist/components/toast/index.d.ts +9 -0
  42. package/dist/components/toast/index.js +7 -0
  43. package/dist/components/toast/toast-root.cjs +121 -0
  44. package/dist/components/toast/toast-root.d.ts +9 -0
  45. package/dist/components/toast/toast-root.js +121 -0
  46. package/dist/components/toggle/toggle.d.ts +1 -1
  47. package/dist/components/toggletip/index.cjs +31 -0
  48. package/dist/components/toggletip/index.d.ts +33 -0
  49. package/dist/components/toggletip/index.js +31 -0
  50. package/dist/components/toggletip/toggletip-anchor.cjs +33 -0
  51. package/dist/components/toggletip/toggletip-anchor.d.ts +6 -0
  52. package/dist/components/toggletip/toggletip-anchor.js +16 -0
  53. package/dist/components/toggletip/toggletip-arrow.cjs +38 -0
  54. package/dist/components/toggletip/toggletip-arrow.d.ts +6 -0
  55. package/dist/components/toggletip/toggletip-arrow.js +21 -0
  56. package/dist/components/toggletip/toggletip-close.cjs +48 -0
  57. package/dist/components/toggletip/toggletip-close.d.ts +10 -0
  58. package/dist/components/toggletip/toggletip-close.js +31 -0
  59. package/dist/components/toggletip/toggletip-content.cjs +80 -0
  60. package/dist/components/toggletip/toggletip-content.d.ts +16 -0
  61. package/dist/components/toggletip/toggletip-content.js +63 -0
  62. package/dist/components/toggletip/toggletip-footer.cjs +10 -0
  63. package/dist/components/toggletip/toggletip-footer.d.ts +6 -0
  64. package/dist/components/toggletip/toggletip-footer.js +10 -0
  65. package/dist/components/toggletip/toggletip-heading.cjs +25 -0
  66. package/dist/components/toggletip/toggletip-heading.d.ts +6 -0
  67. package/dist/components/toggletip/toggletip-heading.js +25 -0
  68. package/dist/components/toggletip/toggletip-portal.cjs +31 -0
  69. package/dist/components/toggletip/toggletip-portal.d.ts +11 -0
  70. package/dist/components/toggletip/toggletip-portal.js +14 -0
  71. package/dist/components/toggletip/toggletip-root.cjs +36 -0
  72. package/dist/components/toggletip/toggletip-root.d.ts +26 -0
  73. package/dist/components/toggletip/toggletip-root.js +19 -0
  74. package/dist/components/toggletip/toggletip-trigger.cjs +33 -0
  75. package/dist/components/toggletip/toggletip-trigger.d.ts +10 -0
  76. package/dist/components/toggletip/toggletip-trigger.js +16 -0
  77. package/dist/components/tooltip/index.d.ts +3 -3
  78. package/dist/main.cjs +9 -0
  79. package/dist/main.js +7 -1
  80. package/dist/style.css +1381 -702
  81. package/dist/toggletip.module-A6XIfaD_.cjs +10 -0
  82. package/dist/toggletip.module-BUx6_4pv.js +11 -0
  83. package/dist/utils/generate-styling/grid.d.ts +24 -24
  84. package/dist/utils/generate-styling/index.d.ts +16 -16
  85. package/dist/utils/generate-styling/util.d.ts +2 -2
  86. package/package.json +17 -15
@@ -9,7 +9,7 @@ export declare const Link: React.ForwardRefExoticComponent<Omit<Omit<Omit<React.
9
9
  disableVisited?: boolean | undefined;
10
10
  ensureTargetArea?: boolean | undefined;
11
11
  silent?: boolean | undefined;
12
- variant: "text" | "navigation" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
12
+ variant: "navigation" | "text" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
13
13
  } & React.RefAttributes<HTMLAnchorElement>, "ref">, "variant"> & {
14
14
  home?: boolean | undefined;
15
15
  } & React.RefAttributes<HTMLAnchorElement>>;
@@ -15,7 +15,7 @@ export declare const Breadcrumbs: import('react').ForwardRefExoticComponent<Omit
15
15
  disableVisited?: boolean | undefined;
16
16
  ensureTargetArea?: boolean | undefined;
17
17
  silent?: boolean | undefined;
18
- variant: "text" | "navigation" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
18
+ variant: "navigation" | "text" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
19
19
  } & import('react').RefAttributes<HTMLAnchorElement>, "ref">, "variant"> & {
20
20
  home?: boolean | undefined;
21
21
  } & import('react').RefAttributes<HTMLAnchorElement>>;
@@ -15,7 +15,7 @@ function getButtonVariant(variant) {
15
15
  }
16
16
  }
17
17
  const Button = React.forwardRef(
18
- ({ className, iconOnly = false, ...props }, forwardRef) => {
18
+ ({ className, iconOnly, ...props }, forwardRef) => {
19
19
  const context = React.useContext(components_card_card.RootContext);
20
20
  const classes = clsx(
21
21
  [components_card_card.styles[`${components_card_card.rootClassName}__button`]],
@@ -1,35 +1,9 @@
1
1
  import { default as React } from 'react';
2
- import { Button as PrimitiveButton } from '../button';
2
+ import { ButtonProps as PrimitiveButtonProps } from '../button';
3
3
 
4
- export type ButtonProps = Omit<React.ComponentPropsWithoutRef<typeof PrimitiveButton>, 'variant'> & {
5
- variant?: React.ComponentPropsWithoutRef<typeof PrimitiveButton>['variant'];
6
- };
4
+ export type ButtonProps = PrimitiveButtonProps;
7
5
  /**
8
6
  * The button element is used when you want a trigger in the card
9
7
  * When this card button element is used, the entire card is clickable
10
8
  */
11
- export declare const Button: React.ForwardRefExoticComponent<Omit<Omit<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "aria-label"> & import('../../utils/generate-styling/flex').FlexChildren & import('../../utils/generate-styling/grid').GridChildren & import('../../utils/generate-styling/position').PositionProps & import('../../utils/generate-styling/inset').InsetProps & import('../../utils/generate-styling/margin').MarginProps & import('../../utils/generate-styling/padding').PaddingProps & import('../../utils/generate-styling/width').WidthProps & import('../../utils/generate-styling/height').HeightProps & import('../../utils/generate-styling/color').ColorProps & {
12
- display?: import('../../utils/generate-styling').DisplayChildren | undefined;
13
- } & {
14
- asChild?: boolean | undefined;
15
- loading?: boolean | undefined;
16
- fullWidth?: boolean | undefined;
17
- size?: "sm" | "md" | "lg" | undefined;
18
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
19
- } & {
20
- iconOnly: true;
21
- "aria-label": string;
22
- } & React.RefAttributes<HTMLButtonElement>, "ref"> | Omit<Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "aria-label"> & import('../../utils/generate-styling/flex').FlexChildren & import('../../utils/generate-styling/grid').GridChildren & import('../../utils/generate-styling/position').PositionProps & import('../../utils/generate-styling/inset').InsetProps & import('../../utils/generate-styling/margin').MarginProps & import('../../utils/generate-styling/padding').PaddingProps & import('../../utils/generate-styling/width').WidthProps & import('../../utils/generate-styling/height').HeightProps & import('../../utils/generate-styling/color').ColorProps & {
23
- display?: import('../../utils/generate-styling').DisplayChildren | undefined;
24
- } & {
25
- asChild?: boolean | undefined;
26
- loading?: boolean | undefined;
27
- fullWidth?: boolean | undefined;
28
- size?: "sm" | "md" | "lg" | undefined;
29
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
30
- } & {
31
- iconOnly?: false | undefined;
32
- "aria-label"?: string | undefined;
33
- } & React.RefAttributes<HTMLButtonElement>, "ref">, "variant"> & {
34
- variant?: React.ComponentPropsWithoutRef<typeof PrimitiveButton>['variant'];
35
- } & React.RefAttributes<HTMLButtonElement>>;
9
+ export declare const Button: React.ForwardRefExoticComponent<PrimitiveButtonProps & React.RefAttributes<HTMLButtonElement>>;
@@ -13,7 +13,7 @@ function getButtonVariant(variant) {
13
13
  }
14
14
  }
15
15
  const Button = React__default.forwardRef(
16
- ({ className, iconOnly = false, ...props }, forwardRef) => {
16
+ ({ className, iconOnly, ...props }, forwardRef) => {
17
17
  const context = React__default.useContext(RootContext);
18
18
  const classes = clsx(
19
19
  [styles[`${rootClassName}__button`]],
@@ -9,7 +9,7 @@ export type IllustrationProps = React.ComponentPropsWithoutRef<'div'> & {
9
9
  /** The illustration for the card */
10
10
  export declare const Illustration: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
11
11
  /** The inset allows make the image bleed out to the edges */
12
- inset?: "all" | "top" | "bottom" | "right" | "left" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top-right-left" | "bottom-left-right" | "top-bottom" | "left-right" | undefined;
12
+ inset?: "all" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | "left" | "right" | "top-right-left" | "bottom-left-right" | "top-bottom" | "left-right" | undefined;
13
13
  rounded?: boolean | undefined;
14
14
  } & React.RefAttributes<HTMLDivElement>>;
15
15
  export {};
@@ -7,5 +7,5 @@ export declare const Link: React.ForwardRefExoticComponent<Omit<Omit<React.Detai
7
7
  disableVisited?: boolean | undefined;
8
8
  ensureTargetArea?: boolean | undefined;
9
9
  silent?: boolean | undefined;
10
- variant: "text" | "navigation" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
10
+ variant: "navigation" | "text" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
11
11
  } & React.RefAttributes<HTMLAnchorElement>, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
@@ -10,34 +10,10 @@ import { FooterProps } from './card-footer';
10
10
 
11
11
  export declare const Card: import('react').ForwardRefExoticComponent<RootProps & import('react').RefAttributes<HTMLDivElement>> & {
12
12
  Heading: import('react').ForwardRefExoticComponent<HeadingProps & import('react').RefAttributes<HTMLHeadingElement>>;
13
- Button: import('react').ForwardRefExoticComponent<Omit<Omit<Omit<import('react').ButtonHTMLAttributes<HTMLButtonElement>, "aria-label"> & import('../../utils/generate-styling/flex').FlexChildren & import('../../utils/generate-styling/grid').GridChildren & import('../../utils/generate-styling/position').PositionProps & import('../../utils/generate-styling/inset').InsetProps & import('../../utils/generate-styling/margin').MarginProps & import('../../utils/generate-styling/padding').PaddingProps & import('../../utils/generate-styling/width').WidthProps & import('../../utils/generate-styling/height').HeightProps & import('../../utils/generate-styling/color').ColorProps & {
14
- display?: import('../../utils/generate-styling').DisplayChildren | undefined;
15
- } & {
16
- asChild?: boolean | undefined;
17
- loading?: boolean | undefined;
18
- fullWidth?: boolean | undefined;
19
- size?: "sm" | "md" | "lg" | undefined;
20
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
21
- } & {
22
- iconOnly: true;
23
- "aria-label": string;
24
- } & import('react').RefAttributes<HTMLButtonElement>, "ref"> | Omit<Omit<import('react').ButtonHTMLAttributes<HTMLButtonElement>, "aria-label"> & import('../../utils/generate-styling/flex').FlexChildren & import('../../utils/generate-styling/grid').GridChildren & import('../../utils/generate-styling/position').PositionProps & import('../../utils/generate-styling/inset').InsetProps & import('../../utils/generate-styling/margin').MarginProps & import('../../utils/generate-styling/padding').PaddingProps & import('../../utils/generate-styling/width').WidthProps & import('../../utils/generate-styling/height').HeightProps & import('../../utils/generate-styling/color').ColorProps & {
25
- display?: import('../../utils/generate-styling').DisplayChildren | undefined;
26
- } & {
27
- asChild?: boolean | undefined;
28
- loading?: boolean | undefined;
29
- fullWidth?: boolean | undefined;
30
- size?: "sm" | "md" | "lg" | undefined;
31
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
32
- } & {
33
- iconOnly?: false | undefined;
34
- "aria-label"?: string | undefined;
35
- } & import('react').RefAttributes<HTMLButtonElement>, "ref">, "variant"> & {
36
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
37
- } & import('react').RefAttributes<HTMLButtonElement>>;
13
+ Button: import('react').ForwardRefExoticComponent<import('..').ButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
38
14
  Content: import('react').ForwardRefExoticComponent<ContentProps & import('react').RefAttributes<HTMLDivElement>>;
39
15
  Illustration: import('react').ForwardRefExoticComponent<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
40
- inset?: "all" | "top" | "bottom" | "right" | "left" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top-right-left" | "bottom-left-right" | "top-bottom" | "left-right" | undefined;
16
+ inset?: "all" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | "left" | "right" | "top-right-left" | "bottom-left-right" | "top-bottom" | "left-right" | undefined;
41
17
  rounded?: boolean | undefined;
42
18
  } & import('react').RefAttributes<HTMLDivElement>>;
43
19
  Line: import('react').ForwardRefExoticComponent<LineProps & import('react').RefAttributes<HTMLDivElement>>;
@@ -46,7 +22,7 @@ export declare const Card: import('react').ForwardRefExoticComponent<RootProps &
46
22
  disableVisited?: boolean | undefined;
47
23
  ensureTargetArea?: boolean | undefined;
48
24
  silent?: boolean | undefined;
49
- variant: "text" | "navigation" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
25
+ variant: "navigation" | "text" | "text-negative" | "standalone" | "standalone-negative" | "navigation-negative";
50
26
  } & import('react').RefAttributes<HTMLAnchorElement>, "ref"> & import('react').RefAttributes<HTMLAnchorElement>>;
51
27
  Slot: import('react').ForwardRefExoticComponent<SlotProps & import('react').RefAttributes<HTMLDivElement>>;
52
28
  Footer: import('react').ForwardRefExoticComponent<FooterProps & import('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: "link" | "map" | "menu" | "search" | "summary" | "time" | "video" | "filter" | "image" | "stop" | "key" | "x" | "download" | "split" | "alert" | "radio" | "email" | "copy" | "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" | "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" | "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" | "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" | "layers" | "measuring-health" | "moisture" | "offering" | "offshore" | "optimization" | "pebble" | "pet-dog" | "pin" | "plane" | "plus-minus" | "police" | "power-grid" | "present" | "press-button" | "price" | "pulse" | "recycle" | "reservation" | "reverse" | "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" | "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" | "minus-bold" | "minus" | "more-horizontal" | "more-vertical" | "plus" | "services" | "sorter" | "table-view";
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
7
  size?: ("font" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl") | undefined;
8
8
  children?: React.ReactNode;
9
9
  }, "ref">> & React.RefAttributes<SVGSVGElement>>;
@@ -5,7 +5,7 @@ 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: "link" | "map" | "menu" | "search" | "summary" | "time" | "video" | "filter" | "image" | "stop" | "key" | "x" | "download" | "split" | "alert" | "radio" | "email" | "copy" | "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" | "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" | "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" | "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" | "layers" | "measuring-health" | "moisture" | "offering" | "offshore" | "optimization" | "pebble" | "pet-dog" | "pin" | "plane" | "plus-minus" | "police" | "power-grid" | "present" | "press-button" | "price" | "pulse" | "recycle" | "reservation" | "reverse" | "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" | "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" | "minus-bold" | "minus" | "more-horizontal" | "more-vertical" | "plus" | "services" | "sorter" | "table-view";
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
9
  size?: ("font" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl") | undefined;
10
10
  children?: import('react').ReactNode;
11
11
  }, "ref">> & import('react').RefAttributes<SVGSVGElement>>;
@@ -12,7 +12,7 @@ export declare const Button: React.ForwardRefExoticComponent<Omit<Omit<Omit<Reac
12
12
  loading?: boolean | undefined;
13
13
  fullWidth?: boolean | undefined;
14
14
  size?: "sm" | "md" | "lg" | undefined;
15
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
15
+ variant?: "list-item" | "primary" | "text" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
16
16
  } & {
17
17
  iconOnly: true;
18
18
  "aria-label": string;
@@ -23,11 +23,11 @@ export declare const Button: React.ForwardRefExoticComponent<Omit<Omit<Omit<Reac
23
23
  loading?: boolean | undefined;
24
24
  fullWidth?: boolean | undefined;
25
25
  size?: "sm" | "md" | "lg" | undefined;
26
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
26
+ variant?: "list-item" | "primary" | "text" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
27
27
  } & {
28
28
  iconOnly?: false | undefined;
29
29
  "aria-label"?: string | undefined;
30
30
  } & React.RefAttributes<HTMLButtonElement>, "ref">, "variant"> & {
31
31
  variant?: React.ComponentPropsWithoutRef<typeof PrimitiveButton>['variant'];
32
- position?: "right" | "left" | undefined;
32
+ position?: "left" | "right" | undefined;
33
33
  } & React.RefAttributes<HTMLButtonElement>>;
@@ -27,7 +27,7 @@ export declare const ExpandableCard: import('react').ForwardRefExoticComponent<R
27
27
  loading?: boolean | undefined;
28
28
  fullWidth?: boolean | undefined;
29
29
  size?: "sm" | "md" | "lg" | undefined;
30
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
30
+ variant?: "list-item" | "primary" | "text" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
31
31
  } & {
32
32
  iconOnly: true;
33
33
  "aria-label": string;
@@ -38,13 +38,13 @@ export declare const ExpandableCard: import('react').ForwardRefExoticComponent<R
38
38
  loading?: boolean | undefined;
39
39
  fullWidth?: boolean | undefined;
40
40
  size?: "sm" | "md" | "lg" | undefined;
41
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
41
+ variant?: "list-item" | "primary" | "text" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
42
42
  } & {
43
43
  iconOnly?: false | undefined;
44
44
  "aria-label"?: string | undefined;
45
45
  } & import('react').RefAttributes<HTMLButtonElement>, "ref">, "variant"> & {
46
- variant?: "text" | "text-negative" | "list-item" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "expressive-negative" | undefined;
47
- position?: "right" | "left" | undefined;
46
+ variant?: "list-item" | "primary" | "text" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
47
+ position?: "left" | "right" | undefined;
48
48
  } & import('react').RefAttributes<HTMLButtonElement>>;
49
49
  Indicator: import('react').ForwardRefExoticComponent<Omit<IndicatorProps, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
50
50
  };
@@ -4,15 +4,15 @@ const jsxRuntime = require("react/jsx-runtime");
4
4
  const iconsHref = require("../../assets/sprite.269ba410-teddy.svg");
5
5
  const clsx = require("clsx");
6
6
  const styles = {
7
- "teddy-icon": "_teddy-icon_1rwgf_2",
8
- "teddy-icon--font": "_teddy-icon--font_1rwgf_7",
9
- "teddy-icon--xxs": "_teddy-icon--xxs_1rwgf_11",
10
- "teddy-icon--xs": "_teddy-icon--xs_1rwgf_15",
11
- "teddy-icon--sm": "_teddy-icon--sm_1rwgf_19",
12
- "teddy-icon--md": "_teddy-icon--md_1rwgf_23",
13
- "teddy-icon--lg": "_teddy-icon--lg_1rwgf_27",
14
- "teddy-icon--xl": "_teddy-icon--xl_1rwgf_31",
15
- "teddy-icon-with-children": "_teddy-icon-with-children_1rwgf_35"
7
+ "teddy-icon": "_teddy-icon_1ur3a_2",
8
+ "teddy-icon--font": "_teddy-icon--font_1ur3a_8",
9
+ "teddy-icon--xxs": "_teddy-icon--xxs_1ur3a_12",
10
+ "teddy-icon--xs": "_teddy-icon--xs_1ur3a_16",
11
+ "teddy-icon--sm": "_teddy-icon--sm_1ur3a_20",
12
+ "teddy-icon--md": "_teddy-icon--md_1ur3a_24",
13
+ "teddy-icon--lg": "_teddy-icon--lg_1ur3a_28",
14
+ "teddy-icon--xl": "_teddy-icon--xl_1ur3a_32",
15
+ "teddy-icon-with-children": "_teddy-icon-with-children_1ur3a_36"
16
16
  };
17
17
  const rootClassName = "teddy-icon";
18
18
  const rootClassNameWithChildren = `${rootClassName}-with-children`;
@@ -2,15 +2,15 @@ import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import iconsHref from "../../assets/sprite.269ba410-teddy.svg";
3
3
  import clsx from "clsx";
4
4
  const styles = {
5
- "teddy-icon": "_teddy-icon_1rwgf_2",
6
- "teddy-icon--font": "_teddy-icon--font_1rwgf_7",
7
- "teddy-icon--xxs": "_teddy-icon--xxs_1rwgf_11",
8
- "teddy-icon--xs": "_teddy-icon--xs_1rwgf_15",
9
- "teddy-icon--sm": "_teddy-icon--sm_1rwgf_19",
10
- "teddy-icon--md": "_teddy-icon--md_1rwgf_23",
11
- "teddy-icon--lg": "_teddy-icon--lg_1rwgf_27",
12
- "teddy-icon--xl": "_teddy-icon--xl_1rwgf_31",
13
- "teddy-icon-with-children": "_teddy-icon-with-children_1rwgf_35"
5
+ "teddy-icon": "_teddy-icon_1ur3a_2",
6
+ "teddy-icon--font": "_teddy-icon--font_1ur3a_8",
7
+ "teddy-icon--xxs": "_teddy-icon--xxs_1ur3a_12",
8
+ "teddy-icon--xs": "_teddy-icon--xs_1ur3a_16",
9
+ "teddy-icon--sm": "_teddy-icon--sm_1ur3a_20",
10
+ "teddy-icon--md": "_teddy-icon--md_1ur3a_24",
11
+ "teddy-icon--lg": "_teddy-icon--lg_1ur3a_28",
12
+ "teddy-icon--xl": "_teddy-icon--xl_1ur3a_32",
13
+ "teddy-icon-with-children": "_teddy-icon-with-children_1ur3a_36"
14
14
  };
15
15
  const rootClassName = "teddy-icon";
16
16
  const rootClassNameWithChildren = `${rootClassName}-with-children`;
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const components_toast_index = require("./toast/index.cjs");
4
+ const components_toggletip_index = require("./toggletip/index.cjs");
3
5
  const components_breadcrumbs_index = require("./breadcrumbs/index.cjs");
4
6
  const components_radioCardGroup_radioCardGroupItemTitle = require("./radio-card-group/radio-card-group-item-title.cjs");
5
7
  const components_ribbon_index = require("./ribbon/index.cjs");
@@ -44,7 +46,10 @@ const components_heading_heading = require("./heading/heading.cjs");
44
46
  const components_visuallyHidden_visuallyHidden = require("./visually-hidden/visually-hidden.cjs");
45
47
  const components_textSpacing_textSpacing = require("./text-spacing/text-spacing.cjs");
46
48
  const components_container_container = require("./container/container.cjs");
49
+ const sonner = require("sonner");
47
50
  const components_input_inputGroup = require("./input/input-group.cjs");
51
+ exports.Toast = components_toast_index.Toast;
52
+ exports.Toggletip = components_toggletip_index.Toggletip;
48
53
  exports.Breadcrumbs = components_breadcrumbs_index.Breadcrumbs;
49
54
  exports.Modal = components_radioCardGroup_radioCardGroupItemTitle.Modal;
50
55
  exports.RadioCardGroup = components_radioCardGroup_radioCardGroupItemTitle.RadioCardGroup;
@@ -90,4 +95,8 @@ exports.Heading = components_heading_heading.Heading;
90
95
  exports.VisuallyHidden = components_visuallyHidden_visuallyHidden.VisuallyHidden;
91
96
  exports.TextSpacing = components_textSpacing_textSpacing.TextSpacing;
92
97
  exports.Container = components_container_container.Container;
98
+ Object.defineProperty(exports, "toast", {
99
+ enumerable: true,
100
+ get: () => sonner.toast
101
+ });
93
102
  exports.Input = components_input_inputGroup.Input;
@@ -1,3 +1,5 @@
1
+ export * from './toast';
2
+ export * from './toggletip';
1
3
  export * from './breadcrumbs';
2
4
  export * from './radio-card-group';
3
5
  export * from './ribbon';
@@ -1,3 +1,5 @@
1
+ import { Toast } from "./toast/index.js";
2
+ import { Toggletip } from "./toggletip/index.js";
1
3
  import { Breadcrumbs } from "./breadcrumbs/index.js";
2
4
  import { M, R } from "./radio-card-group/radio-card-group-item-title.js";
3
5
  import { Ribbon } from "./ribbon/index.js";
@@ -42,6 +44,7 @@ import { Heading } from "./heading/heading.js";
42
44
  import { VisuallyHidden } from "./visually-hidden/visually-hidden.js";
43
45
  import { TextSpacing } from "./text-spacing/text-spacing.js";
44
46
  import { Container } from "./container/container.js";
47
+ import { toast } from "sonner";
45
48
  import { I } from "./input/input-group.js";
46
49
  export {
47
50
  Accordion,
@@ -86,8 +89,11 @@ export {
86
89
  Text,
87
90
  TextField,
88
91
  TextSpacing,
92
+ Toast,
89
93
  Toggle,
94
+ Toggletip,
90
95
  Tooltip,
91
96
  VisuallyHidden,
92
- default2 as iconsHref
97
+ default2 as iconsHref,
98
+ toast
93
99
  };
@@ -3,6 +3,9 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  require("react/jsx-runtime");
4
4
  require("react");
5
5
  require("@radix-ui/react-dialog");
6
+ require("../toast/toast-root.cjs");
7
+ require("sonner");
8
+ require("../toggletip/index.cjs");
6
9
  require("../breadcrumbs/index.cjs");
7
10
  const components_radioCardGroup_radioCardGroupItemTitle = require("../radio-card-group/radio-card-group-item-title.cjs");
8
11
  require("../ribbon/index.cjs");
@@ -1,6 +1,9 @@
1
1
  import "react/jsx-runtime";
2
2
  import "react";
3
3
  import "@radix-ui/react-dialog";
4
+ import "../toast/toast-root.js";
5
+ import "sonner";
6
+ import "../toggletip/index.js";
4
7
  import "../breadcrumbs/index.js";
5
8
  import { M } from "../radio-card-group/radio-card-group-item-title.js";
6
9
  import "../ribbon/index.js";
@@ -106,7 +106,7 @@ declare const NavigationMenu: React.ForwardRefExoticComponent<Omit<NavigationMen
106
106
  variant?: "default" | "float" | undefined;
107
107
  } & React.RefAttributes<HTMLDivElement>>;
108
108
  Link: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuLinkProps & React.RefAttributes<HTMLAnchorElement>, "ref"> & {
109
- variant?: "button" | "small" | "default" | undefined;
109
+ variant?: "small" | "button" | "default" | undefined;
110
110
  } & React.RefAttributes<HTMLAnchorElement>>;
111
111
  Indicator: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
112
112
  Viewport: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -3,7 +3,7 @@ import { Icon as PrimitiveIcon } from '../icon';
3
3
 
4
4
  export type IconProps = Partial<React.ComponentPropsWithoutRef<typeof PrimitiveIcon>>;
5
5
  export declare const Icon: React.ForwardRefExoticComponent<Partial<Omit<React.SVGProps<SVGSVGElement> & {
6
- name: "link" | "map" | "menu" | "search" | "summary" | "time" | "video" | "filter" | "image" | "stop" | "key" | "x" | "download" | "split" | "alert" | "radio" | "email" | "copy" | "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" | "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" | "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" | "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" | "layers" | "measuring-health" | "moisture" | "offering" | "offshore" | "optimization" | "pebble" | "pet-dog" | "pin" | "plane" | "plus-minus" | "police" | "power-grid" | "present" | "press-button" | "price" | "pulse" | "recycle" | "reservation" | "reverse" | "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" | "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" | "minus-bold" | "minus" | "more-horizontal" | "more-vertical" | "plus" | "services" | "sorter" | "table-view";
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
7
  size?: ("font" | "xxs" | "xs" | "sm" | "md" | "lg" | "xl") | undefined;
8
8
  children?: React.ReactNode;
9
9
  }, "ref">> & React.RefAttributes<SVGSVGElement>>;
@@ -3,17 +3,28 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
3
  const jsxRuntime = require("react/jsx-runtime");
4
4
  const React = require("react");
5
5
  const clsx = require("clsx");
6
- const components_box_box = require("../box/box.cjs");
6
+ const components_flex_flex = require("../flex/flex.cjs");
7
7
  const styles = {
8
- "teddy-notabene": "_teddy-notabene_1kgqm_1",
9
- "teddy-notabene__icon": "_teddy-notabene__icon_1kgqm_9",
10
- "teddy-notabene__heading": "_teddy-notabene__heading_1kgqm_9"
8
+ "teddy-notabene": "_teddy-notabene_78ui9_1",
9
+ "teddy-notabene__icon": "_teddy-notabene__icon_78ui9_5",
10
+ "teddy-notabene__heading": "_teddy-notabene__heading_78ui9_5"
11
11
  };
12
12
  const rootClassName = "teddy-notabene";
13
13
  const Root = React.forwardRef(
14
14
  ({ children, className, ...props }, forwardRef) => {
15
15
  const classes = clsx([styles[`${rootClassName}`]], className);
16
- return /* @__PURE__ */ jsxRuntime.jsx(components_box_box.Box, { ...props, ref: forwardRef, className: classes, children });
16
+ return /* @__PURE__ */ jsxRuntime.jsx(
17
+ components_flex_flex.Flex,
18
+ {
19
+ gap: { sm: "150", md: "300" },
20
+ direction: { sm: "column", md: "row" },
21
+ p: { sm: "300", md: "400" },
22
+ ...props,
23
+ ref: forwardRef,
24
+ className: classes,
25
+ children
26
+ }
27
+ );
17
28
  }
18
29
  );
19
30
  Root.displayName = "Root";
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
- import { Box as PrimitiveBox } from '../box';
2
+ import { Flex } from '../flex';
3
3
 
4
4
  export declare const rootClassName = "teddy-notabene";
5
- export type RootProps = Partial<React.ComponentPropsWithoutRef<typeof PrimitiveBox>>;
5
+ export type RootProps = Partial<React.ComponentPropsWithoutRef<typeof Flex>>;
6
6
  export declare const Root: React.ForwardRefExoticComponent<RootProps & React.RefAttributes<HTMLDivElement>>;
@@ -1,17 +1,28 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
2
  import React__default from "react";
3
3
  import clsx from "clsx";
4
- import { Box } from "../box/box.js";
4
+ import { Flex } from "../flex/flex.js";
5
5
  const styles = {
6
- "teddy-notabene": "_teddy-notabene_1kgqm_1",
7
- "teddy-notabene__icon": "_teddy-notabene__icon_1kgqm_9",
8
- "teddy-notabene__heading": "_teddy-notabene__heading_1kgqm_9"
6
+ "teddy-notabene": "_teddy-notabene_78ui9_1",
7
+ "teddy-notabene__icon": "_teddy-notabene__icon_78ui9_5",
8
+ "teddy-notabene__heading": "_teddy-notabene__heading_78ui9_5"
9
9
  };
10
10
  const rootClassName = "teddy-notabene";
11
11
  const Root = React__default.forwardRef(
12
12
  ({ children, className, ...props }, forwardRef) => {
13
13
  const classes = clsx([styles[`${rootClassName}`]], className);
14
- return /* @__PURE__ */ jsx(Box, { ...props, ref: forwardRef, className: classes, children });
14
+ return /* @__PURE__ */ jsx(
15
+ Flex,
16
+ {
17
+ gap: { sm: "150", md: "300" },
18
+ direction: { sm: "column", md: "row" },
19
+ p: { sm: "300", md: "400" },
20
+ ...props,
21
+ ref: forwardRef,
22
+ className: classes,
23
+ children
24
+ }
25
+ );
15
26
  }
16
27
  );
17
28
  Root.displayName = "Root";