@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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +2 -2
- package/dist/esm/components/Card.js +1 -1
- package/dist/esm/components/Dialog.js +2 -2
- package/dist/esm/components/Dialog.js.map +1 -1
- package/dist/esm/components/NavigationList.d.ts.map +1 -1
- package/dist/esm/components/NavigationList.js.map +1 -1
- package/dist/esm/lottie/collapseBar.d.ts +30 -30
- package/dist/esm/lottie/dragArea.d.ts +23 -23
- package/dist/esm/lottie/spinnerColor.d.ts +72 -72
- package/dist/esm/lottie/spinnerColorXS.d.ts +11 -11
- package/dist/esm/lottie/spinnerDark.d.ts +73 -73
- package/dist/esm/lottie/spinnerDarkLG.d.ts +10 -10
- package/dist/esm/lottie/spinnerLight.d.ts +74 -74
- package/dist/esm/lottie/spinnerLightLG.d.ts +142 -142
- package/dist/esm/lottie/spinnerLightXS.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/Card.tsx +1 -1
- package/src/components/Dialog.tsx +2 -2
- package/src/components/NavigationList.tsx +7 -8
|
@@ -68,7 +68,8 @@ const NavigationList = React.forwardRef<
|
|
|
68
68
|
NavigationList.displayName = "NavigationList";
|
|
69
69
|
|
|
70
70
|
interface NavigationListItemProps
|
|
71
|
-
extends
|
|
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
|
|
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;
|