@dust-tt/sparkle 0.5.7 → 0.5.8-rc-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.
@@ -68,7 +68,8 @@ const NavigationList = React.forwardRef<
68
68
  NavigationList.displayName = "NavigationList";
69
69
 
70
70
  interface NavigationListItemProps
71
- extends React.HTMLAttributes<HTMLDivElement>,
71
+ extends
72
+ React.HTMLAttributes<HTMLDivElement>,
72
73
  Omit<LinkWrapperProps, "children" | "className"> {
73
74
  selected?: boolean;
74
75
  label?: string;
@@ -174,8 +175,7 @@ const NavigationListItem = React.forwardRef<
174
175
  );
175
176
  NavigationListItem.displayName = "NavigationListItem";
176
177
 
177
- interface NavigationListItemActionProps
178
- extends React.HTMLAttributes<HTMLDivElement> {
178
+ interface NavigationListItemActionProps extends React.HTMLAttributes<HTMLDivElement> {
179
179
  showOnHover?: boolean;
180
180
  }
181
181
 
@@ -223,8 +223,7 @@ const labelStyles = cva(
223
223
  "s-flex s-items-center s-justify-between s-gap-2 s-pt-4 s-pb-2 s-heading-xs s-whitespace-nowrap s-overflow-hidden s-text-ellipsis"
224
224
  );
225
225
 
226
- interface NavigationListLabelButtonProps
227
- extends React.ButtonHTMLAttributes<HTMLButtonElement> {
226
+ interface NavigationListLabelButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
228
227
  icon?: React.ComponentType;
229
228
  children?: React.ReactNode;
230
229
  }
@@ -261,7 +260,8 @@ const NavigationListLabelButton = React.forwardRef<
261
260
  NavigationListLabelButton.displayName = "NavigationListLabelButton";
262
261
 
263
262
  interface NavigationListLabelProps
264
- extends React.HTMLAttributes<HTMLDivElement>,
263
+ extends
264
+ React.HTMLAttributes<HTMLDivElement>,
265
265
  VariantProps<typeof variantStyles> {
266
266
  label: string;
267
267
  isCollapsible?: boolean;
@@ -312,8 +312,7 @@ const NavigationListLabel = React.forwardRef<
312
312
 
313
313
  NavigationListLabel.displayName = "NavigationListLabel";
314
314
 
315
- interface NavigationListCollapsibleSectionProps
316
- extends React.HTMLAttributes<HTMLDivElement> {
315
+ interface NavigationListCollapsibleSectionProps extends React.HTMLAttributes<HTMLDivElement> {
317
316
  label: string;
318
317
  action?: React.ReactNode;
319
318
  defaultOpen?: boolean;