randmarcomps 1.660.0 → 1.661.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.
Files changed (28) hide show
  1. package/README.md +1 -21
  2. package/dist/components/ui/button.d.ts +1 -1
  3. package/dist/components/ui/command.d.ts +4 -4
  4. package/dist/lib.d.ts +1 -11
  5. package/dist/randmarcomps.cjs +23 -23
  6. package/dist/randmarcomps.js +3968 -4539
  7. package/dist/stories/SearchExperience.stories.d.ts +5 -2
  8. package/dist/stories/Treemap.stories.d.ts +0 -4
  9. package/package.json +1 -2
  10. package/dist/components/pages/explore-manufacturers.d.ts +0 -6
  11. package/dist/components/pages/product-overview/components/invoices-table.d.ts +0 -8
  12. package/dist/components/pages/search/components/search-results-header.d.ts +0 -11
  13. package/dist/components/ui/category-card.d.ts +0 -6
  14. package/dist/components/ui/chat/assistant-chat.d.ts +0 -6
  15. package/dist/components/ui/general-document-card.d.ts +0 -6
  16. package/dist/components/ui/input-otp.d.ts +0 -11
  17. package/dist/components/ui/invoice-card.d.ts +0 -6
  18. package/dist/components/ui/order-card.d.ts +0 -6
  19. package/dist/components/ui/page-header.d.ts +0 -6
  20. package/dist/components/ui/partner-page-shell.d.ts +0 -10
  21. package/dist/components/ui/reseller-billing-overview-card.d.ts +0 -9
  22. package/dist/components/ui/sales-overview-card.d.ts +0 -8
  23. package/dist/components/ui/shipment-card.d.ts +0 -6
  24. package/dist/components/ui/top-percent-treemap.d.ts +0 -14
  25. package/dist/stories/ExploreManufacturers.stories.d.ts +0 -6
  26. package/dist/stories/PageHeader.stories.d.ts +0 -9
  27. package/dist/stories/ResellerBillingOverviewCard.stories.d.ts +0 -27
  28. package/dist/stories/SalesOverviewCard.stories.d.ts +0 -23
package/README.md CHANGED
@@ -83,33 +83,13 @@ Supported themes: `central`, `partner`, `reseller`, `manufacturer`, `shopify`. U
83
83
  Then import the components you need:
84
84
 
85
85
  ```tsx
86
- import {
87
- InputOTP,
88
- InputOTPGroup,
89
- InputOTPSeparator,
90
- InputOTPSlot,
91
- Button
92
- } from 'randmarcomps';
86
+ import { Button } from 'randmarcomps';
93
87
 
94
88
  function App() {
95
89
  return (
96
90
  <div>
97
91
  <Button variant="blue">Blue Button</Button>
98
92
  <Button variant="red">Red Button</Button>
99
-
100
- <InputOTP maxLength={6}>
101
- <InputOTPGroup>
102
- <InputOTPSlot index={0} />
103
- <InputOTPSlot index={1} />
104
- <InputOTPSlot index={2} />
105
- </InputOTPGroup>
106
- <InputOTPSeparator />
107
- <InputOTPGroup>
108
- <InputOTPSlot index={3} />
109
- <InputOTPSlot index={4} />
110
- <InputOTPSlot index={5} />
111
- </InputOTPGroup>
112
- </InputOTP>
113
93
  </div>
114
94
  );
115
95
  }
@@ -8,7 +8,7 @@ interface ConfirmationDialogProps {
8
8
  cancelText?: string;
9
9
  }
10
10
  declare const buttonVariants: (props?: ({
11
- variant?: "link" | "default" | "none" | "destructive" | "outline" | "defaultOutline" | "secondary" | "ghost" | "blue" | "red" | "purple" | null | undefined;
11
+ variant?: "link" | "none" | "default" | "destructive" | "outline" | "defaultOutline" | "secondary" | "ghost" | "blue" | "red" | "purple" | null | undefined;
12
12
  size?: "default" | "sm" | "lg" | "icon" | null | undefined;
13
13
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
14
14
  export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
@@ -18,11 +18,11 @@ declare const Command: React.ForwardRefExoticComponent<Omit<{
18
18
  vimBindings?: boolean;
19
19
  } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
20
20
  declare const CommandDialog: ({ children, ...props }: DialogProps) => React.JSX.Element;
21
- declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, keyof React.InputHTMLAttributes<HTMLInputElement> | "key"> & {
21
+ declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "key" | keyof React.InputHTMLAttributes<HTMLInputElement>> & {
22
22
  ref?: React.Ref<HTMLInputElement>;
23
23
  } & {
24
24
  asChild?: boolean;
25
- }, keyof React.InputHTMLAttributes<HTMLInputElement> | "key" | "asChild">, "type" | "value" | "onChange"> & {
25
+ }, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "value" | "type"> & {
26
26
  value?: string;
27
27
  onValueChange?: (search: string) => void;
28
28
  } & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
@@ -48,7 +48,7 @@ declare const CommandGroup: React.ForwardRefExoticComponent<Omit<{
48
48
  ref?: React.Ref<HTMLDivElement>;
49
49
  } & {
50
50
  asChild?: boolean;
51
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "value" | "heading"> & {
51
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
52
52
  heading?: React.ReactNode;
53
53
  value?: string;
54
54
  forceMount?: boolean;
@@ -66,7 +66,7 @@ declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
66
66
  ref?: React.Ref<HTMLDivElement>;
67
67
  } & {
68
68
  asChild?: boolean;
69
- }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "disabled" | "value" | "onSelect"> & {
69
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
70
70
  disabled?: boolean;
71
71
  onSelect?: (value: string) => void;
72
72
  value?: string;
package/dist/lib.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot } from './components/ui/input-otp';
2
1
  import { RadioGroup, RadioGroupItem } from './components/ui/radio-group';
3
2
  import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from './components/ui/dialog';
4
3
  import { PartnerActions, PartnerActionsProps } from './components/ui/partner-actions';
@@ -17,7 +16,6 @@ import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from './comp
17
16
  import { useIsMobile } from './hooks/use-mobile';
18
17
  import { toast, useToast } from './hooks/use-toast';
19
18
  import { Toaster } from './components/ui/toaster';
20
- import { default as ExploreManufacturers } from './components/pages/explore-manufacturers';
21
19
  import { ChatProvider, useChat, useOptionalChat } from './chat-context';
22
20
  import { RandmarApiConfigProvider, useRandmarApiConfig } from './api-config-context';
23
21
  import { AreaChart, AreaChartProps, DataPoint } from './components/ui/areacharts';
@@ -44,7 +42,6 @@ import { Checkbox } from './components/ui/checkbox';
44
42
  import { CheckboxCardList, CheckboxCardListItem, CheckboxCardListProps, CheckboxCardListRenderState } from './components/ui/checkbox-card-list';
45
43
  import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut } from './components/ui/command';
46
44
  import { CountryFlag, CountryFlagProps } from './components/ui/country-flag';
47
- import { GeneralDocumentCard, GeneralDocumentCardProps } from './components/ui/general-document-card';
48
45
  import { default as Layout } from './components/ui/layout';
49
46
  import { ManufacturerGetStartedButton } from './components/ui/manufacturer-get-started-button';
50
47
  import { ManufacturerReorderingCard } from './components/ui/manufacturer-reordering-card';
@@ -53,17 +50,13 @@ import { default as Navbar, NavbarProps, NavRoute } from './components/ui/navbar
53
50
  import { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from './components/ui/popover';
54
51
  import { ProductCard, ProductCardProps } from './components/ui/product-card';
55
52
  import { ProductImage, ProductImageProps } from './components/ui/product-image';
56
- import { ResellerBillingOverviewCard } from './components/ui/reseller-billing-overview-card';
57
53
  import { ResellerQualificationsCard } from './components/ui/reseller-qualifications-card';
58
- import { SalesOverviewCard } from './components/ui/sales-overview-card';
59
54
  import { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectTrigger, SelectValue } from './components/ui/select';
60
55
  import { SummaryOverviewCard, SummaryOverviewCardField, SummaryOverviewCardFields, SummaryOverviewCardProps } from './components/ui/summary-overview-card';
61
56
  import { Switch } from './components/ui/switch';
62
57
  import { Textarea } from './components/ui/textarea';
63
58
  import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from './components/ui/alert-dialog';
64
59
  import { DataRefreshAssistantCluster, AssistantPromptHelperOptions, DataRefreshAssistantClusterProps } from './components/ui/data-refresh-assistant-cluster';
65
- import { PageHeader, PageHeaderProps } from './components/ui/page-header';
66
- import { PartnerPageShell, PartnerPageShellProps, PARTNER_PAGE_SHELL_CONTENT_CLASS_NAME, PARTNER_PAGE_SHELL_STACK_CLASS_NAME } from './components/ui/partner-page-shell';
67
60
  import { RefreshCluster, RefreshClusterProps } from './components/ui/refresh-cluster';
68
61
  import { RmPageHeader, RmPageHeaderBreadcrumbItem, RmPageHeaderProps } from './components/ui/rm-page-header';
69
62
  import { RmBodyZone, RmBodyZoneProps } from './components/ui/rm-body-zone';
@@ -71,13 +64,11 @@ import { RichTextEditor, RichTextEditorProps } from './components/ui/rich-text-e
71
64
  import { default as ProductOverviewPage } from './components/pages/product-overview/view';
72
65
  import { SearchPageGrid, SearchPageResultGroup } from './components/pages/search/components/grid';
73
66
  import { SearchNoResultsCard, SearchNoResultsCardProps } from './components/pages/search/components/search-no-results-card';
74
- import { SearchResultsHeader, SearchResultsHeaderProps } from './components/pages/search/components/search-results-header';
75
67
  import { SearchResultsSkeleton, SearchResultsSkeletonProps } from './components/pages/search/components/search-results-skeleton';
76
68
  import { SearchPage, SearchPageProps } from './components/pages/search/view';
77
69
  import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from './components/ui/accordion';
78
70
  import { Calendar } from './components/ui/calendar';
79
71
  import { default as AIChatLayout, AIChatLayoutHandle, AIChatLayoutProps } from './components/ui/chat/ai-chat-layout';
80
- import { default as AssistantChat } from './components/ui/chat/assistant-chat';
81
72
  import { DatePicker } from './components/ui/date-picker';
82
73
  import { ExternalProductCard } from './components/ui/external-product-card';
83
74
  import { OpportunitiesTable } from './components/ui/opportunities-table';
@@ -86,11 +77,10 @@ import { ReturnsTable } from './components/ui/returns-table';
86
77
  import { SalesChart } from './components/ui/sales-chart';
87
78
  import { groupSystemLogEntries, ParsedSystemLogEntry, SystemLogDayGroup, SystemLogEntry, SystemLogTimestamp } from './components/ui/system-log-feed.helpers';
88
79
  import { SystemLogFeed, SystemLogFeedProps } from './components/ui/system-log-feed';
89
- import { SimpleNode, TopPercentTreemap } from './components/ui/top-percent-treemap';
90
80
  import { Treemap } from './components/ui/treemap';
91
81
  import { useSidebar } from './hooks/use-sidebar';
92
82
  import { formatMoney, formatNumber, formatYYYYMMDDIntToDateString } from './lib/utils';
93
83
  import { ApiImage, ApiImageProps } from './components/ui/api-image';
94
84
  import { buildApiUrl, useApiOrigin } from './utils/api-url';
95
85
  import { PortalThemeProvider, PortalThemeProviderProps, PortalTheme, PortalThemeApplyTo } from './portal-theme-provider';
96
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActiveOrdersCard, AIChatLayout, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AreaChart, AssistantChat, Avatar, AvatarFallback, AvatarFooter, AvatarImage, Badge, badgeVariants, Button, buttonVariants, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChatLayout, ChatProvider, Checkbox, CheckboxCardList, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CountryFlag, DataRefreshAssistantCluster, DataTable, DatePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ExploreManufacturers, ExternalProductCard, formatMoney, formatNumber, formatYYYYMMDDIntToDateString, GeneralDocumentCard, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Layout, ManufacturerCard, ManufacturerGetStartedButton, ManufacturerOverviewPage, ManufacturerReorderingCard, MultiSelect, Navbar, OpportunitiesTable, OrdersCard, PageHeader, PartnerActions, PartnerCard, PartnerPageShell, PartnerRelationshipPage, PARTNER_PAGE_SHELL_CONTENT_CLASS_NAME, PARTNER_PAGE_SHELL_STACK_CLASS_NAME, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Preloader, ProductCard, ProductImage, ProductInventoryGrid, ProductOverviewPage, Progress, RadioGroup, RadioGroupItem, RefreshCluster, ResellerBillingOverviewCard, ResellerCard, ResellerOverview, ResellerQualificationsCard, ReturnsTable, RichTextEditor, RmBodyZone, RmPageHeader, SalesChart, SalesOverviewCard, ScrollArea, ScrollBar, SearchNoResultsCard, SearchPage, SearchPageGrid, SearchResultsHeader, SearchResultsSkeleton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectTrigger, SelectValue, SummaryOverviewCard, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, SystemLogFeed, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast, toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, Toaster, ToastProps, ToastProvider, ToastTitle, ToastViewport, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Topbar, TopPercentTreemap, Treemap, ApiImage, buildApiUrl, groupSystemLogEntries, PortalThemeProvider, RandmarApiConfigProvider, useApiOrigin, useChat, useIsMobile, useOptionalChat, useRandmarApiConfig, useSidebar, useToast, type AIChatLayoutHandle, type AIChatLayoutProps, type ApiImageProps, type AreaChartProps, type AssistantPromptHelperOptions, type AvatarFooterProps, type BadgeProps, type ButtonProps, type ChatLayoutProps, type CheckboxCardListItem, type CheckboxCardListProps, type CheckboxCardListRenderState, type ConfirmationDialogProps, type CountryFlagProps, type DataPoint, type DataRefreshAssistantClusterProps, type GeneralDocumentCardProps, type InputProps, type ManufacturerCardProps, type NavbarProps, type NavRoute, type PageHeaderProps, type PartnerActionsProps, type PartnerPageShellProps, type ParsedSystemLogEntry, type PreloaderProps, type ProductCardProps, type ProductImageProps, type RefreshClusterProps, type ResellerCardProps, type RichTextEditorProps, type RmBodyZoneProps, type RmPageHeaderBreadcrumbItem, type RmPageHeaderProps, type ScrollAreaProps, type SearchNoResultsCardProps, type SearchPageProps, type SearchPageResultGroup, type SearchResultsHeaderProps, type SearchResultsSkeletonProps, type SimpleNode, type SummaryOverviewCardField, type SummaryOverviewCardFields, type SummaryOverviewCardProps, type SystemLogDayGroup, type SystemLogEntry, type SystemLogFeedProps, type SystemLogTimestamp, type TopbarProps, type PortalThemeProviderProps, type PortalTheme, type PortalThemeApplyTo };
86
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActiveOrdersCard, AIChatLayout, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AreaChart, Avatar, AvatarFallback, AvatarFooter, AvatarImage, Badge, badgeVariants, Button, buttonVariants, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChatLayout, ChatProvider, Checkbox, CheckboxCardList, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CountryFlag, DataRefreshAssistantCluster, DataTable, DatePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ExternalProductCard, formatMoney, formatNumber, formatYYYYMMDDIntToDateString, Input, Label, Layout, ManufacturerCard, ManufacturerGetStartedButton, ManufacturerOverviewPage, ManufacturerReorderingCard, MultiSelect, Navbar, OpportunitiesTable, OrdersCard, PartnerActions, PartnerCard, PartnerRelationshipPage, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Preloader, ProductCard, ProductImage, ProductInventoryGrid, ProductOverviewPage, Progress, RadioGroup, RadioGroupItem, RefreshCluster, ResellerCard, ResellerOverview, ResellerQualificationsCard, ReturnsTable, RichTextEditor, RmBodyZone, RmPageHeader, SalesChart, ScrollArea, ScrollBar, SearchNoResultsCard, SearchPage, SearchPageGrid, SearchResultsSkeleton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectTrigger, SelectValue, SummaryOverviewCard, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Switch, SystemLogFeed, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast, toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, Toaster, ToastProps, ToastProvider, ToastTitle, ToastViewport, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Topbar, Treemap, ApiImage, buildApiUrl, groupSystemLogEntries, PortalThemeProvider, RandmarApiConfigProvider, useApiOrigin, useChat, useIsMobile, useOptionalChat, useRandmarApiConfig, useSidebar, useToast, type AIChatLayoutHandle, type AIChatLayoutProps, type ApiImageProps, type AreaChartProps, type AssistantPromptHelperOptions, type AvatarFooterProps, type BadgeProps, type ButtonProps, type ChatLayoutProps, type CheckboxCardListItem, type CheckboxCardListProps, type CheckboxCardListRenderState, type ConfirmationDialogProps, type CountryFlagProps, type DataPoint, type DataRefreshAssistantClusterProps, type InputProps, type ManufacturerCardProps, type NavbarProps, type NavRoute, type PartnerActionsProps, type ParsedSystemLogEntry, type PreloaderProps, type ProductCardProps, type ProductImageProps, type RefreshClusterProps, type ResellerCardProps, type RichTextEditorProps, type RmBodyZoneProps, type RmPageHeaderBreadcrumbItem, type RmPageHeaderProps, type ScrollAreaProps, type SearchNoResultsCardProps, type SearchPageProps, type SearchPageResultGroup, type SearchResultsSkeletonProps, type SummaryOverviewCardField, type SummaryOverviewCardFields, type SummaryOverviewCardProps, type SystemLogDayGroup, type SystemLogEntry, type SystemLogFeedProps, type SystemLogTimestamp, type TopbarProps, type PortalThemeProviderProps, type PortalTheme, type PortalThemeApplyTo };