@economic/taco 2.69.2-onEditingChange-stale.0 → 2.69.2-search-race-condition.1
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 +6147 -625
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.d.ts +4 -4
- package/dist/taco.js +6147 -625
- package/dist/taco.js.map +1 -1
- package/package.json +3 -17
- package/tailwind.config.js +0 -3
package/dist/taco.d.ts
CHANGED
@@ -1057,7 +1057,7 @@ export declare type DialogContentDrawerRenderProps = DialogContext['drawer'];
|
|
1057
1057
|
export declare type DialogContentProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'children'> & {
|
1058
1058
|
/** An accessible label to be announced when the dialog is opened */
|
1059
1059
|
'aria-label': string;
|
1060
|
-
children:
|
1060
|
+
children: React_2.ReactNode | ((props: DialogContentRenderProps) => React_2.ReactNode);
|
1061
1061
|
onOpenAutoFocus?: DialogPrimitive.DialogContentProps['onOpenAutoFocus'];
|
1062
1062
|
onCloseAutoFocus?: DialogPrimitive.DialogContentProps['onCloseAutoFocus'];
|
1063
1063
|
};
|
@@ -1165,7 +1165,7 @@ declare type DrawerCloseProps = default_2.HTMLAttributes<HTMLButtonElement>;
|
|
1165
1165
|
declare type DrawerContentProps = Omit<default_2.HTMLAttributes<HTMLDivElement>, 'children'> & {
|
1166
1166
|
/** An accessible label to be announced when the side drawer is opened */
|
1167
1167
|
'aria-label': string;
|
1168
|
-
children:
|
1168
|
+
children: default_2.ReactNode | ((props: DrawerContentRenderProps) => default_2.ReactNode);
|
1169
1169
|
};
|
1170
1170
|
|
1171
1171
|
declare type DrawerContentRenderProps = {
|
@@ -3071,7 +3071,7 @@ export declare type Table3Ref = TableRef & {
|
|
3071
3071
|
createRow?: (row: unknown) => Promise<void>;
|
3072
3072
|
save: (rowId?: string) => Promise<boolean>;
|
3073
3073
|
removeRowChanges: (rowId: string) => Promise<void>;
|
3074
|
-
forceValidate
|
3074
|
+
forceValidate?: () => Promise<string[]>;
|
3075
3075
|
};
|
3076
3076
|
};
|
3077
3077
|
};
|
@@ -3930,7 +3930,7 @@ export declare const Truncate: ({ children, tooltip }: TruncateProps) => default
|
|
3930
3930
|
|
3931
3931
|
export declare type TruncateProps = {
|
3932
3932
|
children: default_2.ReactElement;
|
3933
|
-
tooltip: string;
|
3933
|
+
tooltip: string | JSX.Element;
|
3934
3934
|
};
|
3935
3935
|
|
3936
3936
|
export declare interface UncontrolledCheckboxProps extends CheckboxBaseProps {
|