@kreftforeningen/web-react 1.0.3

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Kreftforeningen
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,167 @@
1
+ # @kreftforeningen/web-react
2
+
3
+ A modern, accessible, and customizable React component library built with [Radix UI](https://www.radix-ui.com/) and [Vite](https://vitejs.dev/), powered by Kreftforeningen design tokens. Perfect for building beautiful, production-ready UIs with speed and consistency.
4
+
5
+ ## Features
6
+
7
+ - **Accessible**: Built on top of Radix UI primitives for accessibility out of the box.
8
+ - **Customizable**: Override styles with CSS variables and design tokens.
9
+ - **Comprehensive**: Includes Accordions, Alerts, Badges, Buttons, Cards, Carousels, Dropdowns, Forms, Tables, Tooltips, and more.
10
+ - **Type-safe**: Written in TypeScript with full type definitions.
11
+ - **Fast**: Powered by Vite for instant HMR and fast builds.
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ pnpm add @kreftforeningen/web-react
17
+
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ Import components directly from the library:
23
+
24
+ ```tsx
25
+ import {
26
+ Button,
27
+ Card,
28
+ Badge,
29
+ Accordion,
30
+ Alert,
31
+ // ...and more
32
+ } from "@kreftforeningen/web-react";
33
+ ```
34
+
35
+ Example:
36
+
37
+ ```tsx
38
+ import { Button, Card, Badge } from "@kreftforeningen/web-react";
39
+
40
+ function Example() {
41
+ return (
42
+ <Card>
43
+ <Badge>New</Badge>
44
+ <h2>Card Title</h2>
45
+ <Button>Click me</Button>
46
+ </Card>
47
+ );
48
+ }
49
+ ```
50
+
51
+ ## Components
52
+
53
+ - Accordion, Alert, AlertDialog, AspectRatio, Avatar, Badge, Breadcrumb, Button, Calendar, Card, Carousel, Checkbox, Collapsible, Command, ContextMenu, Dialog, Drawer, DropdownMenu, HoverCard, Input, InputOTP, Label, Menubar, NavigationMenu, Pagination, Popover, Progress, RadioGroup, Resizable, ScrollArea, Select, Separator, Sheet, Sidebar, Skeleton, Slider, Switch, Table, Tabs, Textarea, Toaster, Toggle, ToggleGroup, Tooltip, and more.
54
+
55
+ See the [source code](./src/lib/main.ts) for a full list of exports.
56
+
57
+ ## Theming
58
+
59
+ All components rely on CSS custom properties (the `--kf-*` tokens) and authored styles.
60
+ You can override styles using the `className` prop, extend the provided variables, or supply your own tokens.
61
+
62
+ ## Development
63
+
64
+ ### Scripts
65
+
66
+ - `pnpm dev` – Start the development server
67
+ - `pnpm build` – Build the library for production
68
+ - `pnpm lint` – Lint the source code
69
+ - `pnpm check-types` – Type-check the codebase
70
+ - `pnpm test` – Run tests
71
+
72
+ ### Requirements
73
+
74
+ - Node.js 18+
75
+ - pnpm
76
+
77
+ ## Daily Development
78
+
79
+ This project follows a **feature branch workflow** with automated releases using [Changesets](https://github.com/changesets/changesets).
80
+
81
+ ### Development Workflow
82
+
83
+ 1. Start from develop
84
+
85
+ ```bash
86
+ git checkout develop
87
+ git pull origin develop
88
+ ```
89
+
90
+ 2. Create a branch
91
+
92
+ ```bash
93
+ git checkout -b feature/new-component
94
+ # or: git checkout -b fix/button-styling
95
+ ```
96
+
97
+ 3. Implement changes and push
98
+
99
+ ```bash
100
+ # edit files...
101
+ git add .
102
+ git commit -m "Implement feature"
103
+ git push -u origin HEAD
104
+ ```
105
+
106
+ Open a PR: feature/fix → develop. Merge after review.
107
+
108
+ Lockfile policy:
109
+
110
+ - Lockfile conflicts are avoided via `.gitattributes` (`pnpm-lock.yaml merge=ours`) which keeps `develop`’s lockfile.
111
+ - If your change updates `package.json`, do not hand-merge the lockfile in the PR; let `develop` win and regenerate on `develop` later.
112
+
113
+ 4. Prepare release on develop (after features are merged)
114
+
115
+ ```bash
116
+ git checkout develop
117
+ git pull origin develop
118
+
119
+ # Bump versions with Changesets
120
+ pnpm changeset
121
+ pnpm changeset version
122
+ ```
123
+
124
+ 5. Regenerate lockfile deterministically
125
+
126
+ ```bash
127
+ rm -f pnpm-lock.yaml
128
+ pnpm install --lockfile-only --ignore-scripts
129
+
130
+ git add .changeset/ package.json pnpm-lock.yaml
131
+ git commit -m "chore: version and lockfile"
132
+ git push origin develop
133
+ ```
134
+
135
+ 6. Release PR: develop → main
136
+
137
+ - Open PR from `develop` into `main`.
138
+ - If `package.json` conflicts, keep `develop` (it already contains the version bumped above).
139
+ - Merge to `main` to release.
140
+
141
+ Notes:
142
+
143
+ - `package.json` has a `packageManager` field. Run `corepack enable` locally to use the pinned pnpm version.
144
+ - Prefer regenerating the lockfile over manual conflict resolution.
145
+
146
+ ### Branch Strategy
147
+
148
+ - **`main`** - Production releases, triggers automatic npm publishing
149
+ - **`develop`** - Integration branch for features
150
+ - **`feature/*`** - Feature development branches
151
+ - **`fix/*`** - Bug fix branches
152
+ - **`docs/*`** - Documentation update branches
153
+
154
+ ## Contributing
155
+
156
+ 1. Fork the repo and create your branch.
157
+ 2. Run `pnpm install` to install dependencies.
158
+ 3. Run `pnpm dev` to start the playground.
159
+ 4. Submit a pull request!
160
+
161
+ ## License
162
+
163
+ MIT
164
+
165
+ ## Author
166
+
167
+ Asbjørn Ness, Kreftforeningen.
@@ -0,0 +1,69 @@
1
+ export { AccentuatedLink, AccentuatedLinkSubtitle, AccentuatedLinkTitle, } from '../accentuated-link';
2
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from '../accordion';
3
+ export { Alert, AlertDescription, AlertTitle } from '../alert';
4
+ export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, } from '../alert-dialog';
5
+ export { AspectRatio } from '../aspect-ratio';
6
+ export { Avatar, AvatarFallback, AvatarImage } from '../avatar';
7
+ export { Badge } from '../badge';
8
+ export { Banner, BannerImage, BannerContent, BannerTitle, BannerDescription, BannerButtons, BannerButtonPrimary, BannerButtonSecondary, } from '../banner';
9
+ export { Breadcrumb, BreadcrumbList, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbSeparator, BreadcrumbEllipsis, } from '../breadcrumb';
10
+ export { Button } from '../button';
11
+ export { ButtonGroup, ButtonGroupSeparator, ButtonGroupText, } from '../button-group';
12
+ export { Calendar, CalendarDayButton } from '../calendar';
13
+ export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from '../card';
14
+ export { Carousel, CarouselContent, CarouselContentWrapper, CarouselDots, CarouselItem, CarouselItemDescription, CarouselPrevious, CarouselNext, } from '../carousel';
15
+ export { ChartContainer, ChartTooltip, ChartTooltipContent, ChartLegend, ChartLegendContent, ChartStyle, } from '../chart';
16
+ export type { ChartConfig } from '../chart';
17
+ export { Checkbox } from '../checkbox';
18
+ export { Collapsible, CollapsibleContent, CollapsibleTrigger, } from '../collapsible';
19
+ export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, } from '../command';
20
+ export { ContextMenu, ContextMenuTrigger, ContextMenuContent, ContextMenuItem, ContextMenuCheckboxItem, ContextMenuRadioItem, ContextMenuLabel, ContextMenuSeparator, ContextMenuShortcut, ContextMenuGroup, ContextMenuPortal, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuRadioGroup, } from '../context-menu';
21
+ export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, } from '../dialog';
22
+ export { Download, DownloadContent, DownloadImage, DownloadMain, DownloadTitle, DownloadDescription, DownloadFooter, DownloadDownloadUrl, DownloadOrderUrl, } from '../download';
23
+ export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, } from '../drawer';
24
+ export { DropdownMenu, DropdownMenuPortal, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubTrigger, DropdownMenuSubContent, } from '../dropdown-menu';
25
+ export { Empty, EmptyHeader, EmptyTitle, EmptyDescription, EmptyContent, EmptyMedia, } from '../empty';
26
+ export { FactBox, FactBoxTitle, FactBoxContent, FactBoxAction, FactBoxDescription, } from '../fact-box';
27
+ export { Feedback, FeedbackHeader, FeedbackTitle, FeedbackDescription, FeedbackContent, FeedbackButtons, FeedbackComment, FeedbackCommentInput, FeedbackButtonPositive, FeedbackButtonNegative, FeedbackSubmit, FeedbackAction, } from '../feedback';
28
+ export { Field, FieldLabel, FieldDescription, FieldError, FieldGroup, FieldLegend, FieldSeparator, FieldSet, FieldContent, FieldTitle, } from '../field';
29
+ export { FooterWrapper, FooterSocial, FooterNavigation, FooterNavigationItem, FooterNavigationLink, FooterContact, FooterActions, FooterContactItem, FooterCopyright, } from '../footer';
30
+ export { HeaderWrapper, HeaderLogo, HeaderNavigation, HeaderButton, HeaderSearch, HeaderMenu, HeaderMenuTrigger, HeaderMenuContent, HeaderMenuList, HeaderMenuListItem, HeaderMenuFooter, HeaderMenuClose, HeaderTitle, } from '../header';
31
+ export { HoverCard, HoverCardContent, HoverCardTrigger } from '../hover-card';
32
+ export { Infographic, InfographicItem, InfographicItemIcon, InfographicItemTitle, InfographicItemTitleNumber, InfographicItemTitleText, InfographicItemDescription, } from '../infographic';
33
+ export { Input } from '../input';
34
+ export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InputGroupInput, InputGroupTextarea, } from '../input-group';
35
+ export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, } from '../input-otp';
36
+ export { Item, ItemMedia, ItemContent, ItemActions, ItemGroup, ItemSeparator, ItemTitle, ItemDescription, ItemHeader, ItemFooter, } from '../item';
37
+ export { Kbd, KbdGroup } from '../kbd';
38
+ export { Label } from '../label';
39
+ export { LinkList, LinkListItem, LinkListTitle, LinkListDescription, } from '../link-list';
40
+ export { Menubar, MenubarPortal, MenubarMenu, MenubarTrigger, MenubarContent, MenubarGroup, MenubarSeparator, MenubarLabel, MenubarItem, MenubarShortcut, MenubarCheckboxItem, MenubarRadioGroup, MenubarRadioItem, MenubarSub, MenubarSubTrigger, MenubarSubContent, } from '../menubar';
41
+ export { ModeToggle } from '../mode-toggle';
42
+ export { NativeSelect, NativeSelectOptGroup, NativeSelectOption, } from '../native-select';
43
+ export { NavigationMenu, NavigationMenuList, NavigationMenuItem, NavigationMenuContent, NavigationMenuTrigger, NavigationMenuLink, NavigationMenuIndicator, NavigationMenuViewport, } from '../navigation-menu';
44
+ export { Pagination, PaginationContent, PaginationLink, PaginationItem, PaginationPrevious, PaginationNext, PaginationEllipsis, } from '../pagination';
45
+ export { Person, PersonItem, PersonItemImage, PersonItemContent, PersonItemName, PersonItemTitle, PersonItemEmail, PersonItemPhone, PersonItemDescription, } from '../person';
46
+ export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor, } from '../popover';
47
+ export { Progress } from '../progress';
48
+ export { RadioGroup, RadioGroupItem } from '../radio-group';
49
+ export { ResizableHandle, ResizablePanel, ResizablePanelGroup, } from '../resizable';
50
+ export { ScrollArea, ScrollBar } from '../scroll-area';
51
+ export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, } from '../select';
52
+ export { Separator } from '../separator';
53
+ export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, } from '../sheet';
54
+ export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, } from '../sidebar';
55
+ export { Skeleton } from '../skeleton';
56
+ export { Slider } from '../slider';
57
+ export { Spinner } from '../spinner';
58
+ export { Switch } from '../switch';
59
+ export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption, } from '../table';
60
+ export { Tabs, TabsContent, TabsList, TabsTrigger } from '../tabs';
61
+ export { Textarea } from '../textarea';
62
+ export { ThemeProvider, useTheme } from '../theme-provider';
63
+ export { Timeline, TimelineItem, TimelineItemTitle, TimelineItemDescription, } from '../timeline';
64
+ export { Toaster } from '../sonner';
65
+ export { toast } from 'sonner';
66
+ export { Toggle } from '../toggle';
67
+ export { ToggleGroup, ToggleGroupItem } from '../toggle-group';
68
+ export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from '../tooltip';
69
+ //# sourceMappingURL=main.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/lib/main.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import { ClassValue } from 'clsx';
2
+ export declare function cn(...inputs: ClassValue[]): string;
3
+ //# sourceMappingURL=utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,UAAU,EAAE,MAAM,MAAM,CAAC;AAE7C,wBAAgB,EAAE,CAAC,GAAG,MAAM,EAAE,UAAU,EAAE,UAEzC"}