@economic/taco 2.65.0-radix-update.0 → 2.65.0-test-arrow-navigation.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/taco.cjs +12452 -13843
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.d.ts +16 -12
- package/dist/taco.js +12456 -13847
- package/dist/taco.js.map +1 -1
- package/package.json +13 -3
package/dist/taco.d.ts
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
import { BuiltInAggregationFn } from '@tanstack/react-table';
|
2
2
|
import { BuiltInSortingFn } from '@tanstack/react-table';
|
3
3
|
import { ButtonProps as ButtonProps_2 } from 'react-aria-components';
|
4
|
-
import
|
4
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
5
|
+
import { CollapsibleProps } from '@radix-ui/react-collapsible';
|
5
6
|
import { ColumnFilter } from '@tanstack/react-table';
|
6
7
|
import { ColumnFiltersState } from '@tanstack/react-table';
|
7
8
|
import { ColumnOrderState } from '@tanstack/react-table';
|
@@ -9,16 +10,16 @@ import { ColumnPinningState } from '@tanstack/react-table';
|
|
9
10
|
import { ColumnSizingState } from '@tanstack/react-table';
|
10
11
|
import { ColumnSort } from '@tanstack/react-table';
|
11
12
|
import { default as default_2 } from 'react';
|
12
|
-
import
|
13
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
13
14
|
import { DisclosureGroupProps } from 'react-aria-components';
|
14
15
|
import { DisclosurePanelProps } from 'react-aria-components';
|
15
16
|
import { DisclosureProps } from 'react-aria-components';
|
16
|
-
import
|
17
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
17
18
|
import { IdType } from 'react-table';
|
18
19
|
import { Matcher } from 'react-day-picker';
|
19
20
|
import { Payload } from 'recharts/types/component/DefaultLegendContent';
|
20
21
|
import { Placement as Placement_2 } from 'react-joyride';
|
21
|
-
import
|
22
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
22
23
|
import { RadioGroupProps as RadioGroupProps_2 } from 'react-aria-components';
|
23
24
|
import { RadioProps } from 'react-aria-components';
|
24
25
|
import * as React_2 from 'react';
|
@@ -1057,8 +1058,8 @@ export declare type DialogContentProps = Omit<React_2.HTMLAttributes<HTMLDivElem
|
|
1057
1058
|
/** An accessible label to be announced when the dialog is opened */
|
1058
1059
|
'aria-label': string;
|
1059
1060
|
children: Omit<React_2.ReactNode, 'Function'> | ((props: DialogContentRenderProps) => JSX.Element);
|
1060
|
-
onOpenAutoFocus?:
|
1061
|
-
onCloseAutoFocus?:
|
1061
|
+
onOpenAutoFocus?: DialogPrimitive.DialogContentProps['onOpenAutoFocus'];
|
1062
|
+
onCloseAutoFocus?: DialogPrimitive.DialogContentProps['onCloseAutoFocus'];
|
1062
1063
|
};
|
1063
1064
|
|
1064
1065
|
export declare type DialogContentRenderProps = {
|
@@ -1399,7 +1400,7 @@ export declare type ForwardedPopoverWithStatics = React_2.ForwardRefExoticCompon
|
|
1399
1400
|
Trigger: React_2.ForwardRefExoticComponent<PopoverTriggerProps>;
|
1400
1401
|
Content: React_2.ForwardRefExoticComponent<PopoverContentProps>;
|
1401
1402
|
Close: React_2.ForwardRefExoticComponent<PopoverCloseProps>;
|
1402
|
-
Portal: React_2.FunctionComponent<
|
1403
|
+
Portal: React_2.FunctionComponent<PopoverPrimitive.PortalProps>;
|
1403
1404
|
};
|
1404
1405
|
|
1405
1406
|
export declare type ForwardedRadioGroupWithStatics = React_2.ForwardRefExoticComponent<RadioGroupProps & React_2.RefAttributes<HTMLDivElement>> & {
|
@@ -1989,7 +1990,10 @@ export declare namespace List {
|
|
1989
1990
|
var Link: default_2.ForwardRefExoticComponent<ComposableListItemProps<"a"> & {
|
1990
1991
|
href: string;
|
1991
1992
|
} & default_2.RefAttributes<HTMLAnchorElement>>;
|
1992
|
-
var Collapsible
|
1993
|
+
var Collapsible: default_2.ForwardRefExoticComponent<Omit<ComposableListItemProps<default_2.ForwardRefExoticComponent<CollapsibleProps & default_2.RefAttributes<HTMLDivElement>>>, "children"> & {
|
1994
|
+
children: JSX.Element | JSX.Element[];
|
1995
|
+
defaultOpen?: boolean;
|
1996
|
+
} & default_2.RefAttributes<HTMLDivElement>>;
|
1993
1997
|
var Switch: default_2.ForwardRefExoticComponent<ComposableListItemProps<"div"> & Omit<ControlledSwitchProps, "title"> & default_2.RefAttributes<HTMLDivElement>>;
|
1994
1998
|
var Checkbox: default_2.ForwardRefExoticComponent<ComposableListItemProps<"div"> & Omit<ControlledSwitchProps, "title"> & default_2.RefAttributes<HTMLDivElement>>;
|
1995
1999
|
var Group: default_2.ForwardRefExoticComponent<Omit<default_2.HTMLAttributes<HTMLDivElement>, "children"> & {
|
@@ -2124,7 +2128,7 @@ export declare type ListButtonProps = Omit<ComposableListItemProps<'button'>, 'o
|
|
2124
2128
|
|
2125
2129
|
export declare type ListCheckboxProps = ComposableListItemProps<'div'> & ControlledCheckboxProps;
|
2126
2130
|
|
2127
|
-
export declare type ListCollapsibleProps = Omit<ComposableListItemProps<typeof
|
2131
|
+
export declare type ListCollapsibleProps = Omit<ComposableListItemProps<typeof CollapsiblePrimitive.Root>, 'children'> & {
|
2128
2132
|
children: JSX.Element | JSX.Element[];
|
2129
2133
|
defaultOpen?: boolean;
|
2130
2134
|
};
|
@@ -2238,7 +2242,7 @@ export declare type MenuCheckboxItemProps = Omit<React_2.HTMLAttributes<HTMLDivE
|
|
2238
2242
|
onChange: (checked: boolean | 'indeterminate') => void;
|
2239
2243
|
};
|
2240
2244
|
|
2241
|
-
export declare type MenuContentProps = Omit<
|
2245
|
+
export declare type MenuContentProps = Omit<DropdownMenuPrimitive.DropdownMenuContentProps, 'children' | 'side'> & {
|
2242
2246
|
align?: Align;
|
2243
2247
|
children: React_2.ReactNode;
|
2244
2248
|
/** Set the position of the Menu relative to its trigger. Default value is `bottom` */
|
@@ -2294,7 +2298,7 @@ declare type MenuRadioGroupProps = React_2.HTMLAttributes<HTMLDivElement> & {
|
|
2294
2298
|
|
2295
2299
|
export declare type MenuSeparatorProps = React_2.HTMLAttributes<HTMLDivElement>;
|
2296
2300
|
|
2297
|
-
export declare type MenuSubMenuProps = Omit<
|
2301
|
+
export declare type MenuSubMenuProps = Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps, 'children' | 'side'> & {
|
2298
2302
|
children: React_2.ReactNode;
|
2299
2303
|
};
|
2300
2304
|
|
@@ -2587,7 +2591,7 @@ export declare type PopoverAnchorProps = React_2.HTMLAttributes<HTMLElement>;
|
|
2587
2591
|
|
2588
2592
|
export declare type PopoverCloseProps = React_2.HTMLAttributes<HTMLButtonElement>;
|
2589
2593
|
|
2590
|
-
export declare type PopoverContentProps = Omit<
|
2594
|
+
export declare type PopoverContentProps = Omit<PopoverPrimitive.PopoverContentProps, 'side' | 'children'> & {
|
2591
2595
|
children: React_2.ReactNode | ((props: PopoverContentRenderProps) => React_2.ReactNode);
|
2592
2596
|
/** Set the position of the Popover relative to its trigger. Default value is `bottom` */
|
2593
2597
|
placement?: Placement;
|