@telia/teddy 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/accordion/accordion-root.cjs +17 -15
- package/dist/components/accordion/accordion-root.d.ts +2 -0
- package/dist/components/accordion/accordion-root.js +17 -15
- package/dist/components/avatar/avatar-root.cjs +34 -0
- package/dist/components/avatar/avatar-root.d.ts +17 -0
- package/dist/components/avatar/avatar-root.js +34 -0
- package/dist/components/avatar/index.cjs +6 -0
- package/dist/components/avatar/index.d.ts +9 -0
- package/dist/components/avatar/index.js +6 -0
- package/dist/components/avatar/utils.cjs +10 -0
- package/dist/components/avatar/utils.d.ts +1 -0
- package/dist/components/avatar/utils.js +10 -0
- package/dist/components/breadcrumbs/breadcrumbs-link.d.ts +1 -1
- package/dist/components/breadcrumbs/index.d.ts +1 -1
- package/dist/components/card/card-illustration.d.ts +1 -1
- package/dist/components/card/card-link.d.ts +1 -1
- package/dist/components/card/card.d.ts +1 -1
- package/dist/components/channel-button/channel-button-root.d.ts +6 -6
- package/dist/components/channel-button/index.d.ts +6 -6
- package/dist/components/checkbox/checkbox-group-list.d.ts +1 -1
- package/dist/components/checkbox/checkbox-group.d.ts +1 -1
- package/dist/components/checkbox/index.d.ts +2 -2
- package/dist/components/chip/chip-indicator.d.ts +2 -2
- package/dist/components/chip/index.d.ts +2 -2
- package/dist/components/expandable-card/expandable-card-button.d.ts +4 -4
- package/dist/components/expandable-card/index.d.ts +5 -5
- package/dist/components/flip-card/flip-card-trigger.d.ts +4 -4
- package/dist/components/icon/utils.d.ts +1 -1
- package/dist/components/index.cjs +4 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +4 -0
- package/dist/components/modal/modal-close.cjs +2 -0
- package/dist/components/modal/modal-close.js +2 -0
- package/dist/components/modal/modal-title.d.ts +1 -1
- package/dist/components/navigation-menu/navigation-menu.cjs +2 -0
- package/dist/components/navigation-menu/navigation-menu.d.ts +1 -1
- package/dist/components/navigation-menu/navigation-menu.js +2 -0
- package/dist/components/notabene/notabene-icon.d.ts +2 -2
- package/dist/components/notification/index.d.ts +8 -8
- package/dist/components/notification/notification-icon.d.ts +2 -2
- package/dist/components/notification/notification-root.d.ts +8 -8
- package/dist/components/radio-card-group/radio-card-group-content.cjs +2 -0
- package/dist/components/radio-card-group/radio-card-group-content.js +2 -0
- package/dist/components/radio-card-group/radio-card-group-item-title.cjs +2 -0
- package/dist/components/radio-card-group/radio-card-group-item-title.js +2 -0
- package/dist/components/radio-card-group/radio-card-group-item.cjs +2 -0
- package/dist/components/radio-card-group/radio-card-group-item.js +2 -0
- package/dist/components/scroll-area/index.d.ts +5 -5
- package/dist/components/scroll-area/scroll-area-button.d.ts +4 -4
- package/dist/components/subscription-card/index.cjs +18 -0
- package/dist/components/subscription-card/index.d.ts +74 -0
- package/dist/components/subscription-card/index.js +18 -0
- package/dist/components/subscription-card/subscription-card-avatar.cjs +25 -0
- package/dist/components/subscription-card/subscription-card-avatar.d.ts +10 -0
- package/dist/components/subscription-card/subscription-card-avatar.js +25 -0
- package/dist/components/subscription-card/subscription-card-content.cjs +13 -0
- package/dist/components/subscription-card/subscription-card-content.d.ts +4 -0
- package/dist/components/subscription-card/subscription-card-content.js +13 -0
- package/dist/components/subscription-card/subscription-card-heading.cjs +24 -0
- package/dist/components/subscription-card/subscription-card-heading.d.ts +5 -0
- package/dist/components/subscription-card/subscription-card-heading.js +24 -0
- package/dist/components/subscription-card/subscription-card-root.cjs +60 -0
- package/dist/components/subscription-card/subscription-card-root.d.ts +20 -0
- package/dist/components/subscription-card/subscription-card-root.js +60 -0
- package/dist/components/subscription-card/subscription-card-subtitle.cjs +15 -0
- package/dist/components/subscription-card/subscription-card-subtitle.d.ts +5 -0
- package/dist/components/subscription-card/subscription-card-subtitle.js +15 -0
- package/dist/components/tabs/index.d.ts +1 -1
- package/dist/components/tabs/tabs-root.d.ts +1 -1
- package/dist/components/tabs/tabs-scroll-button.d.ts +4 -4
- package/dist/components/tabs/tabs-scroll.d.ts +1 -1
- package/dist/components/text-field/index.d.ts +4 -4
- package/dist/components/text-field/text-field-button.d.ts +4 -4
- package/dist/components/toggle/toggle.d.ts +2 -2
- package/dist/components/tooltip/index.d.ts +1 -1
- package/dist/main.cjs +4 -0
- package/dist/main.js +4 -0
- package/dist/style.css +404 -252
- package/dist/utils/generate-styling/grid.d.ts +24 -24
- package/dist/utils/generate-styling/index.d.ts +16 -16
- package/dist/utils/generate-styling/util.d.ts +2 -2
- package/package.json +2 -1
|
@@ -27,8 +27,8 @@ 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?: "
|
|
31
|
-
borderStyle?: ("
|
|
30
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
31
|
+
borderStyle?: ("dashed" | "default") | undefined;
|
|
32
32
|
} & {
|
|
33
33
|
iconOnly: true;
|
|
34
34
|
"aria-label": string;
|
|
@@ -39,13 +39,13 @@ export declare const ExpandableCard: import('react').ForwardRefExoticComponent<R
|
|
|
39
39
|
loading?: boolean | undefined;
|
|
40
40
|
fullWidth?: boolean | undefined;
|
|
41
41
|
size?: "sm" | "md" | "lg" | undefined;
|
|
42
|
-
variant?: "
|
|
43
|
-
borderStyle?: ("
|
|
42
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
43
|
+
borderStyle?: ("dashed" | "default") | undefined;
|
|
44
44
|
} & {
|
|
45
45
|
iconOnly?: false | undefined;
|
|
46
46
|
"aria-label"?: string | undefined;
|
|
47
47
|
} & import('react').RefAttributes<HTMLButtonElement>, "ref">, "variant"> & {
|
|
48
|
-
variant?: "
|
|
48
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
49
49
|
position?: "left" | "right" | undefined;
|
|
50
50
|
} & import('react').RefAttributes<HTMLButtonElement>>;
|
|
51
51
|
Indicator: import('react').ForwardRefExoticComponent<Omit<IndicatorProps, "ref"> & import('react').RefAttributes<SVGSVGElement>>;
|
|
@@ -26,8 +26,8 @@ export declare const Trigger: React.ForwardRefExoticComponent<Omit<Omit<Omit<Rea
|
|
|
26
26
|
loading?: boolean | undefined;
|
|
27
27
|
fullWidth?: boolean | undefined;
|
|
28
28
|
size?: "sm" | "md" | "lg" | undefined;
|
|
29
|
-
variant?: "
|
|
30
|
-
borderStyle?: ("
|
|
29
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
30
|
+
borderStyle?: ("dashed" | "default") | undefined;
|
|
31
31
|
} & {
|
|
32
32
|
iconOnly: true;
|
|
33
33
|
"aria-label": string;
|
|
@@ -38,8 +38,8 @@ export declare const Trigger: React.ForwardRefExoticComponent<Omit<Omit<Omit<Rea
|
|
|
38
38
|
loading?: boolean | undefined;
|
|
39
39
|
fullWidth?: boolean | undefined;
|
|
40
40
|
size?: "sm" | "md" | "lg" | undefined;
|
|
41
|
-
variant?: "
|
|
42
|
-
borderStyle?: ("
|
|
41
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
42
|
+
borderStyle?: ("dashed" | "default") | undefined;
|
|
43
43
|
} & {
|
|
44
44
|
iconOnly?: false | undefined;
|
|
45
45
|
"aria-label"?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const isIconName: (value: string | null) => value is "
|
|
1
|
+
export declare const isIconName: (value: string | null) => value is "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" | "skip-back-10sec" | "skip-back-30sec" | "skip-forward-10sec" | "skip-forward-30sec" | "star-filled" | "star" | "switch-arrows" | "sync" | "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-neutral" | "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" | "smart-connect" | "snowflake" | "speedometer" | "split" | "spyware" | "stop" | "suitcase" | "sustainability" | "tag" | "temperature" | "thinking" | "time" | "train" | "transfer" | "undo" | "wavelength" | "weather" | "world" | "android" | "apple" | "bankid-norway" | "bankid" | "facebook" | "instagram" | "linkedin" | "snapchat" | "telia-logo" | "whatsapp" | "windows" | "x" | "youtube" | "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";
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const components_avatar_index = require("./avatar/index.cjs");
|
|
4
|
+
const components_subscriptionCard_index = require("./subscription-card/index.cjs");
|
|
3
5
|
const components_table_index = require("./table/index.cjs");
|
|
4
6
|
const components_flipCard_index = require("./flip-card/index.cjs");
|
|
5
7
|
const components_channelButton_index = require("./channel-button/index.cjs");
|
|
@@ -57,6 +59,8 @@ const components_carousel_carouselRoot = require("./carousel/carousel-root.cjs")
|
|
|
57
59
|
const components_slider_slider = require("./slider/slider.cjs");
|
|
58
60
|
const sonner = require("sonner");
|
|
59
61
|
const components_input_inputGroup = require("./input/input-group.cjs");
|
|
62
|
+
exports.Avatar = components_avatar_index.Avatar;
|
|
63
|
+
exports.SubscriptionCard = components_subscriptionCard_index.SubscriptionCard;
|
|
60
64
|
exports.Table = components_table_index.Table;
|
|
61
65
|
exports.FlipCard = components_flipCard_index.FlipCard;
|
|
62
66
|
exports.ChannelButton = components_channelButton_index.ChannelButton;
|
package/dist/components/index.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { Avatar } from "./avatar/index.js";
|
|
2
|
+
import { SubscriptionCard } from "./subscription-card/index.js";
|
|
1
3
|
import { Table } from "./table/index.js";
|
|
2
4
|
import { FlipCard } from "./flip-card/index.js";
|
|
3
5
|
import { ChannelButton } from "./channel-button/index.js";
|
|
@@ -59,6 +61,7 @@ export {
|
|
|
59
61
|
Accordion,
|
|
60
62
|
AlertBadge,
|
|
61
63
|
default3 as AllIcons,
|
|
64
|
+
Avatar,
|
|
62
65
|
Badge,
|
|
63
66
|
Box,
|
|
64
67
|
Breadcrumbs,
|
|
@@ -104,6 +107,7 @@ export {
|
|
|
104
107
|
Skeleton,
|
|
105
108
|
Slider,
|
|
106
109
|
Spinner,
|
|
110
|
+
SubscriptionCard,
|
|
107
111
|
Table,
|
|
108
112
|
Tabs,
|
|
109
113
|
Text,
|
|
@@ -3,6 +3,8 @@ 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("../avatar/index.cjs");
|
|
7
|
+
require("../subscription-card/index.cjs");
|
|
6
8
|
require("../table/index.cjs");
|
|
7
9
|
require("../flip-card/index.cjs");
|
|
8
10
|
require("../channel-button/index.cjs");
|
|
@@ -11,7 +11,7 @@ declare const Title: React.ForwardRefExoticComponent<({
|
|
|
11
11
|
asChild: true;
|
|
12
12
|
as?: undefined;
|
|
13
13
|
} & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">) | ({
|
|
14
|
-
as?: "
|
|
14
|
+
as?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | undefined;
|
|
15
15
|
asChild?: false | undefined;
|
|
16
16
|
} & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref">)))))))))) & React.RefAttributes<HTMLHeadingElement>>;
|
|
17
17
|
export { Title };
|
|
@@ -12,6 +12,8 @@ require("@radix-ui/react-slot");
|
|
|
12
12
|
require("@radix-ui/react-use-controllable-state");
|
|
13
13
|
require("../../utils/generate-styling/index.cjs");
|
|
14
14
|
require("../../tokens/motion/variables.cjs");
|
|
15
|
+
require("../avatar/index.cjs");
|
|
16
|
+
require("../subscription-card/index.cjs");
|
|
15
17
|
require("../table/index.cjs");
|
|
16
18
|
require("../flip-card/index.cjs");
|
|
17
19
|
require("../channel-button/index.cjs");
|
|
@@ -113,7 +113,7 @@ declare const NavigationMenu: React.ForwardRefExoticComponent<Omit<NavigationMen
|
|
|
113
113
|
variant?: "default" | "float" | undefined;
|
|
114
114
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
115
115
|
Link: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuLinkProps & React.RefAttributes<HTMLAnchorElement>, "ref"> & {
|
|
116
|
-
variant?: "
|
|
116
|
+
variant?: "small" | "button" | "default" | undefined;
|
|
117
117
|
} & React.RefAttributes<HTMLAnchorElement>>;
|
|
118
118
|
Indicator: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
119
119
|
Viewport: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -10,6 +10,8 @@ import "@radix-ui/react-slot";
|
|
|
10
10
|
import "@radix-ui/react-use-controllable-state";
|
|
11
11
|
import "../../utils/generate-styling/index.js";
|
|
12
12
|
import "../../tokens/motion/variables.js";
|
|
13
|
+
import "../avatar/index.js";
|
|
14
|
+
import "../subscription-card/index.js";
|
|
13
15
|
import "../table/index.js";
|
|
14
16
|
import "../flip-card/index.js";
|
|
15
17
|
import "../channel-button/index.js";
|
|
@@ -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: "
|
|
7
|
-
size?: ("xxs" | "xs" | "sm" | "md" | "lg" | "xl"
|
|
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" | "skip-back-10sec" | "skip-back-30sec" | "skip-forward-10sec" | "skip-forward-30sec" | "star-filled" | "star" | "switch-arrows" | "sync" | "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-neutral" | "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" | "smart-connect" | "snowflake" | "speedometer" | "split" | "spyware" | "stop" | "suitcase" | "sustainability" | "tag" | "temperature" | "thinking" | "time" | "train" | "transfer" | "undo" | "wavelength" | "weather" | "world" | "android" | "apple" | "bankid-norway" | "bankid" | "facebook" | "instagram" | "linkedin" | "snapchat" | "telia-logo" | "whatsapp" | "windows" | "x" | "youtube" | "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>>;
|
|
@@ -36,11 +36,11 @@ declare const Notification: import('react').ForwardRefExoticComponent<Omit<Omit<
|
|
|
36
36
|
as?: undefined;
|
|
37
37
|
} & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
|
|
38
38
|
asChild?: boolean | undefined;
|
|
39
|
-
variant?: "beige" | "gray" | "white" | "purple-light" | "
|
|
39
|
+
variant?: "beige" | "gray" | "white" | "purple-light" | "beige-light" | "purple-dark" | undefined;
|
|
40
40
|
bordered?: boolean | undefined;
|
|
41
41
|
shadow?: boolean | undefined;
|
|
42
42
|
backgroundImageSrc?: string | undefined;
|
|
43
|
-
imageGradient?: ("
|
|
43
|
+
imageGradient?: ("dark" | "light" | "default") | undefined;
|
|
44
44
|
layout?: import('../card/card').Layout | undefined;
|
|
45
45
|
} & import('react').RefAttributes<HTMLDivElement>, "ref"> | Omit<Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & 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/radius').RadiusProps & 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 & {
|
|
46
46
|
display?: import('../../utils/generate-styling').DisplayChildren | undefined;
|
|
@@ -52,11 +52,11 @@ declare const Notification: import('react').ForwardRefExoticComponent<Omit<Omit<
|
|
|
52
52
|
asChild?: false | undefined;
|
|
53
53
|
} & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
|
|
54
54
|
asChild?: boolean | undefined;
|
|
55
|
-
variant?: "beige" | "gray" | "white" | "purple-light" | "
|
|
55
|
+
variant?: "beige" | "gray" | "white" | "purple-light" | "beige-light" | "purple-dark" | undefined;
|
|
56
56
|
bordered?: boolean | undefined;
|
|
57
57
|
shadow?: boolean | undefined;
|
|
58
58
|
backgroundImageSrc?: string | undefined;
|
|
59
|
-
imageGradient?: ("
|
|
59
|
+
imageGradient?: ("dark" | "light" | "default") | undefined;
|
|
60
60
|
layout?: import('../card/card').Layout | undefined;
|
|
61
61
|
} & import('react').RefAttributes<HTMLDivElement>, "ref"> | Omit<Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & 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/radius').RadiusProps & 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 & {
|
|
62
62
|
display?: import('../../utils/generate-styling').DisplayChildren | undefined;
|
|
@@ -68,14 +68,14 @@ declare const Notification: import('react').ForwardRefExoticComponent<Omit<Omit<
|
|
|
68
68
|
asChild?: false | undefined;
|
|
69
69
|
} & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
|
|
70
70
|
asChild?: boolean | undefined;
|
|
71
|
-
variant?: "beige" | "gray" | "white" | "purple-light" | "
|
|
71
|
+
variant?: "beige" | "gray" | "white" | "purple-light" | "beige-light" | "purple-dark" | undefined;
|
|
72
72
|
bordered?: boolean | undefined;
|
|
73
73
|
shadow?: boolean | undefined;
|
|
74
74
|
backgroundImageSrc?: string | undefined;
|
|
75
|
-
imageGradient?: ("
|
|
75
|
+
imageGradient?: ("dark" | "light" | "default") | undefined;
|
|
76
76
|
layout?: import('../card/card').Layout | undefined;
|
|
77
|
-
} & import('react').RefAttributes<HTMLDivElement>, "ref">, "
|
|
78
|
-
variant?: "
|
|
77
|
+
} & import('react').RefAttributes<HTMLDivElement>, "ref">, "layout" | "as" | "variant"> & {
|
|
78
|
+
variant?: "error" | "warning" | "beige" | "gray" | "teal" | "information" | "success" | undefined;
|
|
79
79
|
type?: "card" | "tile" | undefined;
|
|
80
80
|
open?: boolean | undefined;
|
|
81
81
|
defaultOpen?: boolean | undefined;
|
|
@@ -3,7 +3,7 @@ import { Icon as IconPrimitives } from '../icon';
|
|
|
3
3
|
|
|
4
4
|
export type IconProps = Partial<React.ComponentPropsWithoutRef<typeof IconPrimitives>>;
|
|
5
5
|
export declare const Icon: React.ForwardRefExoticComponent<Partial<Omit<React.SVGProps<SVGSVGElement> & {
|
|
6
|
-
name: "
|
|
7
|
-
size?: ("xxs" | "xs" | "sm" | "md" | "lg" | "xl"
|
|
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" | "skip-back-10sec" | "skip-back-30sec" | "skip-forward-10sec" | "skip-forward-30sec" | "star-filled" | "star" | "switch-arrows" | "sync" | "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-neutral" | "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" | "smart-connect" | "snowflake" | "speedometer" | "split" | "spyware" | "stop" | "suitcase" | "sustainability" | "tag" | "temperature" | "thinking" | "time" | "train" | "transfer" | "undo" | "wavelength" | "weather" | "world" | "android" | "apple" | "bankid-norway" | "bankid" | "facebook" | "instagram" | "linkedin" | "snapchat" | "telia-logo" | "whatsapp" | "windows" | "x" | "youtube" | "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>>;
|
|
@@ -30,11 +30,11 @@ export declare const Root: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<R
|
|
|
30
30
|
as?: undefined;
|
|
31
31
|
} & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
32
32
|
asChild?: boolean | undefined;
|
|
33
|
-
variant?: "beige" | "gray" | "white" | "purple-light" | "
|
|
33
|
+
variant?: "beige" | "gray" | "white" | "purple-light" | "beige-light" | "purple-dark" | undefined;
|
|
34
34
|
bordered?: boolean | undefined;
|
|
35
35
|
shadow?: boolean | undefined;
|
|
36
36
|
backgroundImageSrc?: string | undefined;
|
|
37
|
-
imageGradient?: ("
|
|
37
|
+
imageGradient?: ("dark" | "light" | "default") | undefined;
|
|
38
38
|
layout?: import('../card/card').Layout | undefined;
|
|
39
39
|
} & React.RefAttributes<HTMLDivElement>, "ref"> | Omit<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & 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/radius').RadiusProps & 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 & {
|
|
40
40
|
display?: import('../../utils/generate-styling').DisplayChildren | undefined;
|
|
@@ -46,11 +46,11 @@ export declare const Root: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<R
|
|
|
46
46
|
asChild?: false | undefined;
|
|
47
47
|
} & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
48
48
|
asChild?: boolean | undefined;
|
|
49
|
-
variant?: "beige" | "gray" | "white" | "purple-light" | "
|
|
49
|
+
variant?: "beige" | "gray" | "white" | "purple-light" | "beige-light" | "purple-dark" | undefined;
|
|
50
50
|
bordered?: boolean | undefined;
|
|
51
51
|
shadow?: boolean | undefined;
|
|
52
52
|
backgroundImageSrc?: string | undefined;
|
|
53
|
-
imageGradient?: ("
|
|
53
|
+
imageGradient?: ("dark" | "light" | "default") | undefined;
|
|
54
54
|
layout?: import('../card/card').Layout | undefined;
|
|
55
55
|
} & React.RefAttributes<HTMLDivElement>, "ref"> | Omit<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & 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/radius').RadiusProps & 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 & {
|
|
56
56
|
display?: import('../../utils/generate-styling').DisplayChildren | undefined;
|
|
@@ -62,18 +62,18 @@ export declare const Root: React.ForwardRefExoticComponent<Omit<Omit<Omit<Omit<R
|
|
|
62
62
|
asChild?: false | undefined;
|
|
63
63
|
} & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
64
64
|
asChild?: boolean | undefined;
|
|
65
|
-
variant?: "beige" | "gray" | "white" | "purple-light" | "
|
|
65
|
+
variant?: "beige" | "gray" | "white" | "purple-light" | "beige-light" | "purple-dark" | undefined;
|
|
66
66
|
bordered?: boolean | undefined;
|
|
67
67
|
shadow?: boolean | undefined;
|
|
68
68
|
backgroundImageSrc?: string | undefined;
|
|
69
|
-
imageGradient?: ("
|
|
69
|
+
imageGradient?: ("dark" | "light" | "default") | undefined;
|
|
70
70
|
layout?: import('../card/card').Layout | undefined;
|
|
71
|
-
} & React.RefAttributes<HTMLDivElement>, "ref">, "
|
|
71
|
+
} & React.RefAttributes<HTMLDivElement>, "ref">, "layout" | "as" | "variant"> & {
|
|
72
72
|
/**
|
|
73
73
|
* The variant of the notification.
|
|
74
74
|
*
|
|
75
75
|
*/
|
|
76
|
-
variant?: "
|
|
76
|
+
variant?: "error" | "warning" | "beige" | "gray" | "teal" | "information" | "success" | undefined;
|
|
77
77
|
/**
|
|
78
78
|
* The tyoe of the notification.
|
|
79
79
|
*
|
|
@@ -4,6 +4,8 @@ require("react/jsx-runtime");
|
|
|
4
4
|
require("clsx");
|
|
5
5
|
require("react");
|
|
6
6
|
require("./radio-card-group-root.cjs");
|
|
7
|
+
require("../avatar/index.cjs");
|
|
8
|
+
require("../subscription-card/index.cjs");
|
|
7
9
|
require("../table/index.cjs");
|
|
8
10
|
require("../flip-card/index.cjs");
|
|
9
11
|
require("../channel-button/index.cjs");
|
|
@@ -2,6 +2,8 @@ import "react/jsx-runtime";
|
|
|
2
2
|
import "clsx";
|
|
3
3
|
import "react";
|
|
4
4
|
import "./radio-card-group-root.js";
|
|
5
|
+
import "../avatar/index.js";
|
|
6
|
+
import "../subscription-card/index.js";
|
|
5
7
|
import "../table/index.js";
|
|
6
8
|
import "../flip-card/index.js";
|
|
7
9
|
import "../channel-button/index.js";
|
|
@@ -12,6 +12,8 @@ const reactSlot = require("@radix-ui/react-slot");
|
|
|
12
12
|
const reactUseControllableState = require("@radix-ui/react-use-controllable-state");
|
|
13
13
|
const utils_generateStyling_index = require("../../utils/generate-styling/index.cjs");
|
|
14
14
|
const tokens_motion_variables = require("../../tokens/motion/variables.cjs");
|
|
15
|
+
require("../avatar/index.cjs");
|
|
16
|
+
require("../subscription-card/index.cjs");
|
|
15
17
|
require("../table/index.cjs");
|
|
16
18
|
require("../flip-card/index.cjs");
|
|
17
19
|
require("../channel-button/index.cjs");
|
|
@@ -10,6 +10,8 @@ import { Slot } from "@radix-ui/react-slot";
|
|
|
10
10
|
import { useControllableState } from "@radix-ui/react-use-controllable-state";
|
|
11
11
|
import { mergeStyles } from "../../utils/generate-styling/index.js";
|
|
12
12
|
import { teddyMotionDuration300 } from "../../tokens/motion/variables.js";
|
|
13
|
+
import "../avatar/index.js";
|
|
14
|
+
import "../subscription-card/index.js";
|
|
13
15
|
import "../table/index.js";
|
|
14
16
|
import "../flip-card/index.js";
|
|
15
17
|
import "../channel-button/index.js";
|
|
@@ -5,6 +5,8 @@ require("clsx");
|
|
|
5
5
|
require("react");
|
|
6
6
|
require("./radio-card-group-root.cjs");
|
|
7
7
|
require("@radix-ui/react-radio-group");
|
|
8
|
+
require("../avatar/index.cjs");
|
|
9
|
+
require("../subscription-card/index.cjs");
|
|
8
10
|
require("../table/index.cjs");
|
|
9
11
|
require("../flip-card/index.cjs");
|
|
10
12
|
require("../channel-button/index.cjs");
|
|
@@ -3,6 +3,8 @@ import "clsx";
|
|
|
3
3
|
import "react";
|
|
4
4
|
import "./radio-card-group-root.js";
|
|
5
5
|
import "@radix-ui/react-radio-group";
|
|
6
|
+
import "../avatar/index.js";
|
|
7
|
+
import "../subscription-card/index.js";
|
|
6
8
|
import "../table/index.js";
|
|
7
9
|
import "../flip-card/index.js";
|
|
8
10
|
import "../channel-button/index.js";
|
|
@@ -3,7 +3,7 @@ import { ItemProps } from './scroll-area-item';
|
|
|
3
3
|
import { ButtonProps } from './scroll-area-button';
|
|
4
4
|
|
|
5
5
|
export declare const ScrollArea: import('react').ForwardRefExoticComponent<Omit<import('@radix-ui/react-scroll-area').ScrollAreaProps & import('react').RefAttributes<HTMLDivElement>, "ref"> & {
|
|
6
|
-
variant?: ("button" | "
|
|
6
|
+
variant?: ("button" | "scrollbar" | "hidden") | undefined;
|
|
7
7
|
scrollBehavior?: "auto" | "smooth" | undefined;
|
|
8
8
|
viewPortClassName?: string | undefined;
|
|
9
9
|
barClassName?: string | undefined;
|
|
@@ -21,8 +21,8 @@ export declare const ScrollArea: import('react').ForwardRefExoticComponent<Omit<
|
|
|
21
21
|
loading?: boolean | undefined;
|
|
22
22
|
fullWidth?: boolean | undefined;
|
|
23
23
|
size?: "sm" | "md" | "lg" | undefined;
|
|
24
|
-
variant?: "
|
|
25
|
-
borderStyle?: ("
|
|
24
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
25
|
+
borderStyle?: ("dashed" | "default") | undefined;
|
|
26
26
|
} & {
|
|
27
27
|
iconOnly: true;
|
|
28
28
|
"aria-label": string;
|
|
@@ -33,8 +33,8 @@ export declare const ScrollArea: import('react').ForwardRefExoticComponent<Omit<
|
|
|
33
33
|
loading?: boolean | undefined;
|
|
34
34
|
fullWidth?: boolean | undefined;
|
|
35
35
|
size?: "sm" | "md" | "lg" | undefined;
|
|
36
|
-
variant?: "
|
|
37
|
-
borderStyle?: ("
|
|
36
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
37
|
+
borderStyle?: ("dashed" | "default") | undefined;
|
|
38
38
|
} & {
|
|
39
39
|
iconOnly?: false | undefined;
|
|
40
40
|
"aria-label"?: string | undefined;
|
|
@@ -17,8 +17,8 @@ export declare const Button: React.ForwardRefExoticComponent<Omit<Omit<Omit<Reac
|
|
|
17
17
|
loading?: boolean | undefined;
|
|
18
18
|
fullWidth?: boolean | undefined;
|
|
19
19
|
size?: "sm" | "md" | "lg" | undefined;
|
|
20
|
-
variant?: "
|
|
21
|
-
borderStyle?: ("
|
|
20
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
21
|
+
borderStyle?: ("dashed" | "default") | undefined;
|
|
22
22
|
} & {
|
|
23
23
|
iconOnly: true;
|
|
24
24
|
"aria-label": string;
|
|
@@ -29,8 +29,8 @@ export declare const Button: React.ForwardRefExoticComponent<Omit<Omit<Omit<Reac
|
|
|
29
29
|
loading?: boolean | undefined;
|
|
30
30
|
fullWidth?: boolean | undefined;
|
|
31
31
|
size?: "sm" | "md" | "lg" | undefined;
|
|
32
|
-
variant?: "
|
|
33
|
-
borderStyle?: ("
|
|
32
|
+
variant?: "list-item" | "text" | "primary" | "secondary" | "destructive" | "tertiary-purple" | "expressive" | "primary-negative" | "secondary-negative" | "destructive-negative" | "tertiary-purple-negative" | "text-negative" | "expressive-negative" | undefined;
|
|
33
|
+
borderStyle?: ("dashed" | "default") | undefined;
|
|
34
34
|
} & {
|
|
35
35
|
iconOnly?: false | undefined;
|
|
36
36
|
"aria-label"?: string | undefined;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const components_subscriptionCard_subscriptionCardRoot = require("./subscription-card-root.cjs");
|
|
4
|
+
const components_subscriptionCard_subscriptionCardHeading = require("./subscription-card-heading.cjs");
|
|
5
|
+
const components_subscriptionCard_subscriptionCardSubtitle = require("./subscription-card-subtitle.cjs");
|
|
6
|
+
const components_subscriptionCard_subscriptionCardAvatar = require("./subscription-card-avatar.cjs");
|
|
7
|
+
const components_subscriptionCard_subscriptionCardContent = require("./subscription-card-content.cjs");
|
|
8
|
+
const SubscriptionCard = components_subscriptionCard_subscriptionCardRoot.Root;
|
|
9
|
+
SubscriptionCard.displayName = "SubscriptionCard";
|
|
10
|
+
SubscriptionCard.Avatar = components_subscriptionCard_subscriptionCardAvatar.Avatar;
|
|
11
|
+
SubscriptionCard.Avatar.displayName = "SubscriptionCard.Avatar";
|
|
12
|
+
SubscriptionCard.Heading = components_subscriptionCard_subscriptionCardHeading.Heading;
|
|
13
|
+
SubscriptionCard.Heading.displayName = "SubscriptionCard.Heading";
|
|
14
|
+
SubscriptionCard.Subtitle = components_subscriptionCard_subscriptionCardSubtitle.Subtitle;
|
|
15
|
+
SubscriptionCard.Subtitle.displayName = "SubscriptionCard.Subtitle";
|
|
16
|
+
SubscriptionCard.Content = components_subscriptionCard_subscriptionCardContent.Content;
|
|
17
|
+
SubscriptionCard.Content.displayName = "SubscriptionCard.Content";
|
|
18
|
+
exports.SubscriptionCard = SubscriptionCard;
|