@economic/taco 2.54.4 → 2.54.5

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.d.ts CHANGED
@@ -2150,22 +2150,22 @@ declare type MenuButtonProps = {
2150
2150
  onClick: () => void;
2151
2151
  };
2152
2152
 
2153
- declare type MenuCheckboxItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2153
+ export declare type MenuCheckboxItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2154
2154
  disabled?: boolean;
2155
2155
  checked: boolean;
2156
2156
  onChange: (checked: boolean | 'indeterminate') => void;
2157
2157
  };
2158
2158
 
2159
- declare type MenuContentProps = Omit<DropdownMenuPrimitive.DropdownMenuContentProps, 'children' | 'side'> & {
2159
+ export declare type MenuContentProps = Omit<DropdownMenuPrimitive.DropdownMenuContentProps, 'children' | 'side'> & {
2160
2160
  align?: Align;
2161
2161
  children: React_2.ReactNode;
2162
2162
  /** Set the position of the Menu relative to its trigger. Default value is `bottom` */
2163
2163
  placement?: Placement;
2164
2164
  };
2165
2165
 
2166
- declare type MenuHeaderProps = React_2.HTMLAttributes<HTMLDivElement>;
2166
+ export declare type MenuHeaderProps = React_2.HTMLAttributes<HTMLDivElement>;
2167
2167
 
2168
- declare type MenuItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2168
+ export declare type MenuItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2169
2169
  dialog?: (props: Partial<DialogProps>) => JSX.Element;
2170
2170
  disabled?: boolean;
2171
2171
  icon?: IconName;
@@ -2175,7 +2175,7 @@ declare type MenuItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSel
2175
2175
  subMenu?: any;
2176
2176
  };
2177
2177
 
2178
- declare type MenuLinkItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2178
+ export declare type MenuLinkItemProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'onSelect'> & {
2179
2179
  disabled?: boolean;
2180
2180
  icon?: IconName;
2181
2181
  href: string;
@@ -2198,13 +2198,13 @@ declare type MenuRadioGroupItemProps = RadioGroupItemProps<HTMLDivElement>;
2198
2198
 
2199
2199
  declare type MenuRadioGroupProps = RadioGroupProps;
2200
2200
 
2201
- declare type MenuSeparatorProps = React_2.HTMLAttributes<HTMLDivElement>;
2201
+ export declare type MenuSeparatorProps = React_2.HTMLAttributes<HTMLDivElement>;
2202
2202
 
2203
- declare type MenuSubMenuProps = Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps, 'children' | 'side'> & {
2203
+ export declare type MenuSubMenuProps = Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps, 'children' | 'side'> & {
2204
2204
  children: React_2.ReactNode;
2205
2205
  };
2206
2206
 
2207
- declare type MenuTriggerProps = Omit<React_2.HTMLAttributes<HTMLButtonElement>, 'children'> & {
2207
+ export declare type MenuTriggerProps = Omit<React_2.HTMLAttributes<HTMLButtonElement>, 'children'> & {
2208
2208
  children: React_2.ReactElement;
2209
2209
  };
2210
2210
 
@@ -3720,6 +3720,13 @@ export declare type TreeviewItemProps = default_2.LinkHTMLAttributes<HTMLAnchorE
3720
3720
 
3721
3721
  export declare type TreeviewProps = default_2.HTMLAttributes<HTMLDivElement>;
3722
3722
 
3723
+ export declare const Truncate: ({ children, tooltip }: TruncateProps) => default_2.JSX.Element;
3724
+
3725
+ export declare type TruncateProps = {
3726
+ children: default_2.ReactElement;
3727
+ tooltip: string;
3728
+ };
3729
+
3723
3730
  export declare interface UncontrolledCheckboxProps extends CheckboxBaseProps {
3724
3731
  checked?: never;
3725
3732
  onChange?: never;
package/dist/taco.js CHANGED
@@ -84239,6 +84239,7 @@ export {
84239
84239
  Tour,
84240
84240
  TourStep,
84241
84241
  Treeview,
84242
+ Truncate,
84242
84243
  VisuallyHidden,
84243
84244
  WindowedTable,
84244
84245
  convertRowIndexPathToNumberArray,