@nimbus-ds/components 5.36.0 → 5.38.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/CHANGELOG.md +12 -0
- package/dist/Button/index.d.ts +1 -1
- package/dist/CHANGELOG.md +12 -0
- package/dist/ScrollPane/index.d.ts +7 -0
- package/dist/ScrollPane/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -2358,7 +2358,7 @@ export interface ButtonProperties {
|
|
|
2358
2358
|
* Change the size of the button.
|
|
2359
2359
|
* @default medium
|
|
2360
2360
|
*/
|
|
2361
|
-
size?: "medium" | "small";
|
|
2361
|
+
size?: "large" | "medium" | "small";
|
|
2362
2362
|
}
|
|
2363
2363
|
export type ButtonBaseProps = ButtonProperties & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
2364
2364
|
export declare const Button: PolymorphicForwardRefComponent<"button" | "a", ButtonBaseProps> & ButtonComponents;
|
|
@@ -3706,6 +3706,12 @@ export interface ScrollPaneProperties {
|
|
|
3706
3706
|
* @default true
|
|
3707
3707
|
*/
|
|
3708
3708
|
scrollToItemOnClick?: boolean;
|
|
3709
|
+
/**
|
|
3710
|
+
* Enable grab-to-scroll functionality (click and drag to scroll)
|
|
3711
|
+
* When enabled, prevents item dragging inside the ScrollPane
|
|
3712
|
+
* @default false
|
|
3713
|
+
*/
|
|
3714
|
+
enableGrabScroll?: boolean;
|
|
3709
3715
|
/**
|
|
3710
3716
|
* Custom arrow component to render at the start of the scroll area
|
|
3711
3717
|
*/
|