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