@obosbbl/grunnmuren-react 2.0.0-canary.50 → 2.0.0-canary.51
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 +2 -2
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RouterProvider, ButtonProps as ButtonProps$1, LinkProps, CheckboxProps as CheckboxProps$1, CheckboxGroupProps as CheckboxGroupProps$1, ListBoxItemProps, ListBoxSectionProps, HeadingProps as HeadingProps$1, ComboBoxProps, RadioGroupProps as RadioGroupProps$1, RadioProps as RadioProps$1, SelectProps as SelectProps$1, TextFieldProps as TextFieldProps$1, NumberFieldProps as NumberFieldProps$1, ContextValue, BreadcrumbProps as BreadcrumbProps$1, BreadcrumbsProps as BreadcrumbsProps$1,
|
|
1
|
+
import { RouterProvider, ButtonProps as ButtonProps$1, LinkProps, CheckboxProps as CheckboxProps$1, CheckboxGroupProps as CheckboxGroupProps$1, ListBoxItemProps, ListBoxSectionProps, HeadingProps as HeadingProps$1, ComboBoxProps, RadioGroupProps as RadioGroupProps$1, RadioProps as RadioProps$1, SelectProps as SelectProps$1, TextFieldProps as TextFieldProps$1, NumberFieldProps as NumberFieldProps$1, ContextValue, BreadcrumbProps as BreadcrumbProps$1, BreadcrumbsProps as BreadcrumbsProps$1, DisclosureProps as DisclosureProps$1 } from 'react-aria-components';
|
|
2
2
|
export { ListBoxItemProps as ComboboxItemProps, Form, ListBoxItemProps as SelectItemProps, DisclosureGroup as UNSAFE_DisclosureGroup, DisclosureGroupProps as UNSAFE_DisclosureGroupProps } from 'react-aria-components';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as react from 'react';
|
|
@@ -569,7 +569,7 @@ type ButtonOrLinkProps = {
|
|
|
569
569
|
*/
|
|
570
570
|
withUnderline?: boolean;
|
|
571
571
|
};
|
|
572
|
-
type BacklinkProps = (ButtonProps$1 |
|
|
572
|
+
type BacklinkProps = (ButtonProps$1 | LinkProps) & ButtonOrLinkProps;
|
|
573
573
|
declare const _Backlink: react.ForwardRefExoticComponent<BacklinkProps & react.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
574
574
|
|
|
575
575
|
type CardProps = VariantProps<typeof cardVariants> & {
|
package/dist/index.mjs
CHANGED
|
@@ -1168,6 +1168,7 @@ const cardVariants = cva({
|
|
|
1168
1168
|
'[&:has(>[data-slot="media"]:first-child)]:flex-col',
|
|
1169
1169
|
'[&:has(>[data-slot="media"]:last-child)]:flex-col-reverse',
|
|
1170
1170
|
'[&:has(>[data-slot="media"])]:md:!flex-row',
|
|
1171
|
+
'[&_[data-slot="media"]]:md:h-fit',
|
|
1171
1172
|
'[&:has(>[data-slot="media"])>*]:md:basis-1/2',
|
|
1172
1173
|
// Position media at the edges of the card
|
|
1173
1174
|
'[&_[data-slot="media"]]:md:mb-[calc(theme(space.3)*-1-theme(borderWidth.DEFAULT))]',
|