@obosbbl/grunnmuren-react 3.6.0 → 3.7.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/index.d.mts +25 -4
- package/dist/index.mjs +119 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -17,13 +17,13 @@ import { CheckboxProps as CheckboxProps$1 } from 'react-aria-components/Checkbox
|
|
|
17
17
|
import { CheckboxGroupProps as CheckboxGroupProps$1 } from 'react-aria-components/CheckboxGroup';
|
|
18
18
|
import { ComboBoxProps } from 'react-aria-components/ComboBox';
|
|
19
19
|
import { DateFormatterOptions } from 'react-aria/useDateFormatter';
|
|
20
|
+
import { ModalOverlayProps as ModalOverlayProps$1 } from 'react-aria-components/Modal';
|
|
20
21
|
import { FileTriggerProps as FileTriggerProps$1 } from 'react-aria-components/FileTrigger';
|
|
21
22
|
import { useFormValidationState } from 'react-stately/private/form/useFormValidationState';
|
|
22
23
|
import { TextProps } from 'react-aria-components/Text';
|
|
23
24
|
import { LabelProps } from 'react-aria-components/Label';
|
|
24
25
|
export { LabelProps } from 'react-aria-components/Label';
|
|
25
26
|
import { DialogProps as DialogProps$1, DialogTriggerProps as DialogTriggerProps$1 } from 'react-aria-components/Dialog';
|
|
26
|
-
import { ModalOverlayProps as ModalOverlayProps$1 } from 'react-aria-components/Modal';
|
|
27
27
|
import { NumberFieldProps as NumberFieldProps$1 } from 'react-aria-components/NumberField';
|
|
28
28
|
import { RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1 } from 'react-aria-components/RadioGroup';
|
|
29
29
|
import { SelectProps as SelectProps$1 } from 'react-aria-components/Select';
|
|
@@ -439,7 +439,7 @@ type HeadingProps = Omit<HTMLProps<HTMLHeadingElement>, 'size'> & VariantProps<t
|
|
|
439
439
|
};
|
|
440
440
|
declare const HeadingContext: react.Context<ContextValue<Partial<HeadingProps>, HTMLHeadingElement>>;
|
|
441
441
|
declare const headingVariants: (props?: ({
|
|
442
|
-
size?: "
|
|
442
|
+
size?: "xl" | "l" | "m" | "s" | "xs" | undefined;
|
|
443
443
|
} & ({
|
|
444
444
|
class?: cva.ClassValue;
|
|
445
445
|
className?: never;
|
|
@@ -495,6 +495,27 @@ type DateFormatterProps = {
|
|
|
495
495
|
*/
|
|
496
496
|
declare const DateFormatter: ({ options: _options, value, children: render }: DateFormatterProps) => ReactNode;
|
|
497
497
|
|
|
498
|
+
declare const drawerVariants: (props?: ({
|
|
499
|
+
placement?: "right" | "left" | "top" | "bottom" | undefined;
|
|
500
|
+
isEntering?: boolean | undefined;
|
|
501
|
+
isExiting?: boolean | undefined;
|
|
502
|
+
} & ({
|
|
503
|
+
class?: cva.ClassValue;
|
|
504
|
+
className?: never;
|
|
505
|
+
} | {
|
|
506
|
+
class?: never;
|
|
507
|
+
className?: cva.ClassValue;
|
|
508
|
+
})) | undefined) => string;
|
|
509
|
+
type DrawerProps = Omit<ModalOverlayProps$1, 'isDismissable' | 'style'> & Pick<VariantProps<typeof drawerVariants>, 'placement'> & {
|
|
510
|
+
/** Additional style properties for the element. */
|
|
511
|
+
style?: React.CSSProperties;
|
|
512
|
+
/** @default 10 Controls the z-index of the drawer overlay */
|
|
513
|
+
zIndex?: number;
|
|
514
|
+
/** @default true Makes the drawer dismissable */
|
|
515
|
+
isDismissable?: boolean;
|
|
516
|
+
};
|
|
517
|
+
declare const Drawer: ({ isDismissable, isOpen, onOpenChange, defaultOpen, className, zIndex, placement, style, ...restProps }: DrawerProps) => react_jsx_runtime.JSX.Element;
|
|
518
|
+
|
|
498
519
|
type FormValidationProps<T> = Parameters<typeof useFormValidationState<T>>[0];
|
|
499
520
|
type FileTriggerProps = Partial<Omit<FormValidationProps<File>, 'value'>> & FileTriggerProps$1 & Omit<HTMLAttributes<HTMLInputElement>, 'onSelect' | 'onChange' | 'required' | 'className'> & {
|
|
500
521
|
ref?: RefObject<HTMLInputElement | null>;
|
|
@@ -922,5 +943,5 @@ type VideoLoopProps = {
|
|
|
922
943
|
};
|
|
923
944
|
declare const VideoLoop: ({ src, format, alt, className }: VideoLoopProps) => react_jsx_runtime.JSX.Element;
|
|
924
945
|
|
|
925
|
-
export { Accordion, AccordionItem, Alertbox, Avatar, Backlink, Badge, Breadcrumb, Breadcrumbs, Button, ButtonContext, Caption, Card, CardLink, Checkbox, CheckboxGroup, Combobox, ListBoxHeader as ComboboxHeader, ListBoxItem as ComboboxItem, ListBoxSection as ComboboxSection, Content, ContentContext, DateFormatter, Description, Disclosure, DisclosureButton, DisclosurePanel, DisclosureStateContext, ErrorMessage, Footer, GrunnmurenProvider, Heading, HeadingContext, Label, Link, LinkList, LinkListContainer, LinkListContext, LinkListItem, Media, MediaContext, NumberField, Radio, RadioGroup, Select, ListBoxHeader as SelectHeader, ListBoxItem as SelectItem, ListBoxSection as SelectSection, Tab, TabList, TabPanel, Tabs, Tag, TagGroup, TagList, TextArea, TextField, Carousel as UNSAFE_Carousel, CarouselButton as UNSAFE_CarouselButton, CarouselContext as UNSAFE_CarouselContext, CarouselControls as UNSAFE_CarouselControls, CarouselItem as UNSAFE_CarouselItem, CarouselItems as UNSAFE_CarouselItems, CarouselItemsContainer as UNSAFE_CarouselItemsContainer, CarouselItemsContainer as UNSAFE_CarouselItemsContainerProps, Dialog as UNSAFE_Dialog, DialogTrigger as UNSAFE_DialogTrigger, FileUpload as UNSAFE_FileUpload, Hero as UNSAFE_Hero, HeroContext as UNSAFE_HeroContext, Modal as UNSAFE_Modal, ResizableTableContainer as UNSAFE_ResizableTableContainer, Step as UNSAFE_Step, Stepper as UNSAFE_Stepper, Table as UNSAFE_Table, TableBody as UNSAFE_TableBody, TableCell as UNSAFE_TableCell, TableColumn as UNSAFE_TableColumn, TableColumnResizer as UNSAFE_TableColumnResizer, UNSAFE_TableContainer, TableHeader as UNSAFE_TableHeader, TableRow as UNSAFE_TableRow, VideoLoop, _useLocale as useLocale };
|
|
926
|
-
export type { AccordionItemProps, AccordionProps, Props as AlertboxProps, AvatarProps, BacklinkProps, BadgeProps, BreadcrumbProps, BreadcrumbsProps, ButtonProps, CaptionProps, CardLinkProps, CardProps, CheckboxGroupProps, CheckboxProps, ComboboxProps, ContentProps, DateFormatterProps, DescriptionProps, DisclosureButtonProps, DisclosurePanelProps, DisclosureProps, ErrorMessageProps, FooterProps, GrunnmurenProviderProps, HeadingProps, LinkListContainerProps, LinkListContextValue, LinkListItemProps, LinkListProps, LinkProps, Locale, MediaProps, NumberFieldProps, RadioGroupProps, RadioProps, SelectProps, TabListProps, TabPanelProps, TabProps, TabsProps, TagGroupProps, TagListProps, TagProps, TextAreaProps, TextFieldProps, CarouselButtonProps as UNSAFE_CarouselButtonProps, CarouselContextValue as UNSAFE_CarouselContextValue, CarouselControlsProps as UNSAFE_CarouselControlsProps, CarouselItemProps as UNSAFE_CarouselItemProps, CarouselItemsProps as UNSAFE_CarouselItemsProps, CarouselProps as UNSAFE_CarouselProps, CarouselElement as UNSAFE_CarouselRef, DialogProps as UNSAFE_DialogProps, DialogTriggerProps as UNSAFE_DialogTriggerProps, FileUploadProps as UNSAFE_FileUploadProps, HeroContextValue as UNSAFE_HeroContextValue, HeroProps as UNSAFE_HeroProps, ModalProps as UNSAFE_ModalProps, ResizableTableContainerProps as UNSAFE_ResizableTableContainerProps, StepProps as UNSAFE_StepProps, StepperProps as UNSAFE_StepperProps, TableBodyProps as UNSAFE_TableBodyProps, TableCellProps as UNSAFE_TableCellProps, TableColumnProps as UNSAFE_TableColumnProps, TableColumnResizerProps as UNSAFE_TableColumnResizerProps, UNSAFE_TableContainerProps, TableHeaderProps as UNSAFE_TableHeaderProps, TableProps as UNSAFE_TableProps, TableRowProps as UNSAFE_TableRowProps };
|
|
946
|
+
export { Accordion, AccordionItem, Alertbox, Avatar, Backlink, Badge, Breadcrumb, Breadcrumbs, Button, ButtonContext, Caption, Card, CardLink, Checkbox, CheckboxGroup, Combobox, ListBoxHeader as ComboboxHeader, ListBoxItem as ComboboxItem, ListBoxSection as ComboboxSection, Content, ContentContext, DateFormatter, Description, Disclosure, DisclosureButton, DisclosurePanel, DisclosureStateContext, ErrorMessage, Footer, GrunnmurenProvider, Heading, HeadingContext, Label, Link, LinkList, LinkListContainer, LinkListContext, LinkListItem, Media, MediaContext, NumberField, Radio, RadioGroup, Select, ListBoxHeader as SelectHeader, ListBoxItem as SelectItem, ListBoxSection as SelectSection, Tab, TabList, TabPanel, Tabs, Tag, TagGroup, TagList, TextArea, TextField, Carousel as UNSAFE_Carousel, CarouselButton as UNSAFE_CarouselButton, CarouselContext as UNSAFE_CarouselContext, CarouselControls as UNSAFE_CarouselControls, CarouselItem as UNSAFE_CarouselItem, CarouselItems as UNSAFE_CarouselItems, CarouselItemsContainer as UNSAFE_CarouselItemsContainer, CarouselItemsContainer as UNSAFE_CarouselItemsContainerProps, Dialog as UNSAFE_Dialog, DialogTrigger as UNSAFE_DialogTrigger, Drawer as UNSAFE_Drawer, FileUpload as UNSAFE_FileUpload, Hero as UNSAFE_Hero, HeroContext as UNSAFE_HeroContext, Modal as UNSAFE_Modal, ResizableTableContainer as UNSAFE_ResizableTableContainer, Step as UNSAFE_Step, Stepper as UNSAFE_Stepper, Table as UNSAFE_Table, TableBody as UNSAFE_TableBody, TableCell as UNSAFE_TableCell, TableColumn as UNSAFE_TableColumn, TableColumnResizer as UNSAFE_TableColumnResizer, UNSAFE_TableContainer, TableHeader as UNSAFE_TableHeader, TableRow as UNSAFE_TableRow, VideoLoop, _useLocale as useLocale };
|
|
947
|
+
export type { AccordionItemProps, AccordionProps, Props as AlertboxProps, AvatarProps, BacklinkProps, BadgeProps, BreadcrumbProps, BreadcrumbsProps, ButtonProps, CaptionProps, CardLinkProps, CardProps, CheckboxGroupProps, CheckboxProps, ComboboxProps, ContentProps, DateFormatterProps, DescriptionProps, DisclosureButtonProps, DisclosurePanelProps, DisclosureProps, ErrorMessageProps, FooterProps, GrunnmurenProviderProps, HeadingProps, LinkListContainerProps, LinkListContextValue, LinkListItemProps, LinkListProps, LinkProps, Locale, MediaProps, NumberFieldProps, RadioGroupProps, RadioProps, SelectProps, TabListProps, TabPanelProps, TabProps, TabsProps, TagGroupProps, TagListProps, TagProps, TextAreaProps, TextFieldProps, CarouselButtonProps as UNSAFE_CarouselButtonProps, CarouselContextValue as UNSAFE_CarouselContextValue, CarouselControlsProps as UNSAFE_CarouselControlsProps, CarouselItemProps as UNSAFE_CarouselItemProps, CarouselItemsProps as UNSAFE_CarouselItemsProps, CarouselProps as UNSAFE_CarouselProps, CarouselElement as UNSAFE_CarouselRef, DialogProps as UNSAFE_DialogProps, DialogTriggerProps as UNSAFE_DialogTriggerProps, DrawerProps as UNSAFE_DrawerProps, FileUploadProps as UNSAFE_FileUploadProps, HeroContextValue as UNSAFE_HeroContextValue, HeroProps as UNSAFE_HeroProps, ModalProps as UNSAFE_ModalProps, ResizableTableContainerProps as UNSAFE_ResizableTableContainerProps, StepProps as UNSAFE_StepProps, StepperProps as UNSAFE_StepperProps, TableBodyProps as UNSAFE_TableBodyProps, TableCellProps as UNSAFE_TableCellProps, TableColumnProps as UNSAFE_TableColumnProps, TableColumnResizerProps as UNSAFE_TableColumnResizerProps, UNSAFE_TableContainerProps, TableHeaderProps as UNSAFE_TableHeaderProps, TableProps as UNSAFE_TableProps, TableRowProps as UNSAFE_TableRowProps };
|
package/dist/index.mjs
CHANGED
|
@@ -1349,6 +1349,7 @@ const Modal = ({ isDismissable = true, isOpen, onOpenChange, defaultOpen, classN
|
|
|
1349
1349
|
onOpenChange: onOpenChange,
|
|
1350
1350
|
defaultOpen: defaultOpen,
|
|
1351
1351
|
isDismissable: isDismissable,
|
|
1352
|
+
isKeyboardDismissDisabled: !isDismissable,
|
|
1352
1353
|
zIndex: zIndex,
|
|
1353
1354
|
fullscreen: fullscreen,
|
|
1354
1355
|
children: /*#__PURE__*/ jsx(Modal$1, {
|
|
@@ -2051,6 +2052,123 @@ function Combobox(props) {
|
|
|
2051
2052
|
return render ? render(formatted) : formatted;
|
|
2052
2053
|
};
|
|
2053
2054
|
|
|
2055
|
+
const drawerVariants = cva({
|
|
2056
|
+
base: [
|
|
2057
|
+
'fixed overflow-auto bg-white text-left shadow-xl',
|
|
2058
|
+
'motion-reduce:animate-none'
|
|
2059
|
+
],
|
|
2060
|
+
variants: {
|
|
2061
|
+
placement: {
|
|
2062
|
+
right: 'top-0 right-0 h-dvh w-full max-w-md rounded-l-2xl p-4',
|
|
2063
|
+
left: 'top-0 left-0 h-dvh w-full max-w-md rounded-r-2xl p-4',
|
|
2064
|
+
top: 'inset-x-0 top-0 max-h-[80dvh] w-full rounded-b-2xl p-4',
|
|
2065
|
+
bottom: 'inset-x-0 bottom-0 max-h-[80dvh] w-full rounded-t-2xl p-4'
|
|
2066
|
+
},
|
|
2067
|
+
isEntering: {
|
|
2068
|
+
true: 'animate-in duration-300 ease-out'
|
|
2069
|
+
},
|
|
2070
|
+
isExiting: {
|
|
2071
|
+
true: 'animate-out duration-200 ease-in'
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
compoundVariants: [
|
|
2075
|
+
{
|
|
2076
|
+
placement: 'right',
|
|
2077
|
+
isEntering: true,
|
|
2078
|
+
className: 'slide-in-from-right'
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
placement: 'right',
|
|
2082
|
+
isExiting: true,
|
|
2083
|
+
className: 'slide-out-to-right'
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
placement: 'left',
|
|
2087
|
+
isEntering: true,
|
|
2088
|
+
className: 'slide-in-from-left'
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
placement: 'left',
|
|
2092
|
+
isExiting: true,
|
|
2093
|
+
className: 'slide-out-to-left'
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
placement: 'top',
|
|
2097
|
+
isEntering: true,
|
|
2098
|
+
className: 'slide-in-from-top'
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
placement: 'top',
|
|
2102
|
+
isExiting: true,
|
|
2103
|
+
className: 'slide-out-to-top'
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
placement: 'bottom',
|
|
2107
|
+
isEntering: true,
|
|
2108
|
+
className: 'slide-in-from-bottom'
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
placement: 'bottom',
|
|
2112
|
+
isExiting: true,
|
|
2113
|
+
className: 'slide-out-to-bottom'
|
|
2114
|
+
}
|
|
2115
|
+
]
|
|
2116
|
+
});
|
|
2117
|
+
const Drawer = ({ isDismissable = true, isOpen, onOpenChange, defaultOpen, className, zIndex = 10, placement = 'right', style = {}, ...restProps })=>{
|
|
2118
|
+
const locale = _useLocale();
|
|
2119
|
+
return /*#__PURE__*/ jsx(Provider, {
|
|
2120
|
+
values: [
|
|
2121
|
+
[
|
|
2122
|
+
HeadingContext,
|
|
2123
|
+
{
|
|
2124
|
+
slots: {
|
|
2125
|
+
[DEFAULT_SLOT]: {},
|
|
2126
|
+
title: {
|
|
2127
|
+
className: 'heading-s',
|
|
2128
|
+
_outerWrapper: (children)=>/*#__PURE__*/ jsxs("div", {
|
|
2129
|
+
className: "flex items-center justify-between gap-x-2",
|
|
2130
|
+
children: [
|
|
2131
|
+
children,
|
|
2132
|
+
isDismissable && /*#__PURE__*/ jsx(Button, {
|
|
2133
|
+
slot: "close",
|
|
2134
|
+
variant: "tertiary",
|
|
2135
|
+
className: "data-focus-visible:outline-focus-inset px-2.5!",
|
|
2136
|
+
"aria-label": translations$1.close[locale],
|
|
2137
|
+
onPress: ()=>onOpenChange?.(false),
|
|
2138
|
+
children: /*#__PURE__*/ jsx(Close, {})
|
|
2139
|
+
})
|
|
2140
|
+
]
|
|
2141
|
+
})
|
|
2142
|
+
}
|
|
2143
|
+
}
|
|
2144
|
+
}
|
|
2145
|
+
]
|
|
2146
|
+
],
|
|
2147
|
+
children: /*#__PURE__*/ jsx(ModalOverlay, {
|
|
2148
|
+
isOpen: isOpen,
|
|
2149
|
+
onOpenChange: onOpenChange,
|
|
2150
|
+
defaultOpen: defaultOpen,
|
|
2151
|
+
isDismissable: isDismissable,
|
|
2152
|
+
isKeyboardDismissDisabled: !isDismissable,
|
|
2153
|
+
style: {
|
|
2154
|
+
zIndex,
|
|
2155
|
+
...style
|
|
2156
|
+
},
|
|
2157
|
+
className: ({ isEntering, isExiting })=>cx('fixed inset-0 bg-black/25 backdrop-blur-sm', isEntering && 'fade-in animate-in duration-300 ease-out', isExiting && 'fade-out animate-out duration-200 ease-in', // Using the motion-safe class does not work, so we use motion-reduce to overwrite instead
|
|
2158
|
+
'motion-reduce:animate-none'),
|
|
2159
|
+
children: /*#__PURE__*/ jsx(Modal$1, {
|
|
2160
|
+
...restProps,
|
|
2161
|
+
className: ({ isEntering, isExiting })=>drawerVariants({
|
|
2162
|
+
placement,
|
|
2163
|
+
isEntering,
|
|
2164
|
+
isExiting,
|
|
2165
|
+
className
|
|
2166
|
+
})
|
|
2167
|
+
})
|
|
2168
|
+
})
|
|
2169
|
+
});
|
|
2170
|
+
};
|
|
2171
|
+
|
|
2054
2172
|
/**
|
|
2055
2173
|
* A FileTrigger allows a user to access the file system with any pressable React Aria or React Spectrum component, or custom components built with usePress.
|
|
2056
2174
|
*/ const FileTrigger = (props)=>{
|
|
@@ -3358,4 +3476,4 @@ const VideoLoop = ({ src, format, alt, className })=>{
|
|
|
3358
3476
|
});
|
|
3359
3477
|
};
|
|
3360
3478
|
|
|
3361
|
-
export { Accordion, AccordionItem, Alertbox, Avatar, Backlink, Badge, Breadcrumb, Breadcrumbs, Button, ButtonContext, Caption, Card, CardLink, Checkbox, CheckboxGroup, Combobox, ListBoxHeader as ComboboxHeader, ListBoxItem as ComboboxItem, ListBoxSection as ComboboxSection, Content, ContentContext, DateFormatter, Description, Disclosure, DisclosureButton, DisclosurePanel, DisclosureStateContext, ErrorMessage, Footer, GrunnmurenProvider, Heading, HeadingContext, Label, Link, LinkList, LinkListContainer, LinkListContext, LinkListItem, Media, MediaContext, NumberField, Radio, RadioGroup, Select, ListBoxHeader as SelectHeader, ListBoxItem as SelectItem, ListBoxSection as SelectSection, Tab, TabList, TabPanel, Tabs, Tag, TagGroup, TagList, TextArea, TextField, Carousel as UNSAFE_Carousel, CarouselButton as UNSAFE_CarouselButton, CarouselContext as UNSAFE_CarouselContext, CarouselControls as UNSAFE_CarouselControls, CarouselItem as UNSAFE_CarouselItem, CarouselItems as UNSAFE_CarouselItems, CarouselItemsContainer as UNSAFE_CarouselItemsContainer, Dialog as UNSAFE_Dialog, DialogTrigger as UNSAFE_DialogTrigger, FileUpload as UNSAFE_FileUpload, Hero as UNSAFE_Hero, HeroContext as UNSAFE_HeroContext, Modal as UNSAFE_Modal, ResizableTableContainer as UNSAFE_ResizableTableContainer, Step as UNSAFE_Step, Stepper as UNSAFE_Stepper, Table as UNSAFE_Table, TableBody as UNSAFE_TableBody, TableCell as UNSAFE_TableCell, TableColumn as UNSAFE_TableColumn, TableColumnResizer as UNSAFE_TableColumnResizer, UNSAFE_TableContainer, TableHeader as UNSAFE_TableHeader, TableRow as UNSAFE_TableRow, VideoLoop, _useLocale as useLocale };
|
|
3479
|
+
export { Accordion, AccordionItem, Alertbox, Avatar, Backlink, Badge, Breadcrumb, Breadcrumbs, Button, ButtonContext, Caption, Card, CardLink, Checkbox, CheckboxGroup, Combobox, ListBoxHeader as ComboboxHeader, ListBoxItem as ComboboxItem, ListBoxSection as ComboboxSection, Content, ContentContext, DateFormatter, Description, Disclosure, DisclosureButton, DisclosurePanel, DisclosureStateContext, ErrorMessage, Footer, GrunnmurenProvider, Heading, HeadingContext, Label, Link, LinkList, LinkListContainer, LinkListContext, LinkListItem, Media, MediaContext, NumberField, Radio, RadioGroup, Select, ListBoxHeader as SelectHeader, ListBoxItem as SelectItem, ListBoxSection as SelectSection, Tab, TabList, TabPanel, Tabs, Tag, TagGroup, TagList, TextArea, TextField, Carousel as UNSAFE_Carousel, CarouselButton as UNSAFE_CarouselButton, CarouselContext as UNSAFE_CarouselContext, CarouselControls as UNSAFE_CarouselControls, CarouselItem as UNSAFE_CarouselItem, CarouselItems as UNSAFE_CarouselItems, CarouselItemsContainer as UNSAFE_CarouselItemsContainer, Dialog as UNSAFE_Dialog, DialogTrigger as UNSAFE_DialogTrigger, Drawer as UNSAFE_Drawer, FileUpload as UNSAFE_FileUpload, Hero as UNSAFE_Hero, HeroContext as UNSAFE_HeroContext, Modal as UNSAFE_Modal, ResizableTableContainer as UNSAFE_ResizableTableContainer, Step as UNSAFE_Step, Stepper as UNSAFE_Stepper, Table as UNSAFE_Table, TableBody as UNSAFE_TableBody, TableCell as UNSAFE_TableCell, TableColumn as UNSAFE_TableColumn, TableColumnResizer as UNSAFE_TableColumnResizer, UNSAFE_TableContainer, TableHeader as UNSAFE_TableHeader, TableRow as UNSAFE_TableRow, VideoLoop, _useLocale as useLocale };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@obosbbl/grunnmuren-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"description": "Grunnmuren components in React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"react-aria-components": "^1.17.0",
|
|
27
27
|
"react-stately": "^3.46.0",
|
|
28
28
|
"use-debounce": "^10.0.4",
|
|
29
|
-
"@obosbbl/grunnmuren-icons-react": "^2.2.
|
|
29
|
+
"@obosbbl/grunnmuren-icons-react": "^2.2.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^24.0.0",
|