@regulaforensics/ui-components 7.6.317-nightly → 7.6.319-nightly
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/index.d.ts +10 -0
- package/dist/index.js +3458 -3397
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -217,6 +217,10 @@ export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
217
217
|
onOpen?: (isOpen: boolean) => void;
|
|
218
218
|
/** The click area for content expansion. */
|
|
219
219
|
openClickArea?: 'icon' | 'head';
|
|
220
|
+
/** Data attributes. */
|
|
221
|
+
dataAttributes?: {
|
|
222
|
+
[key: string]: string;
|
|
223
|
+
};
|
|
220
224
|
}
|
|
221
225
|
|
|
222
226
|
export declare const Icon: IIcon;
|
|
@@ -539,6 +543,12 @@ declare const IRVisibilityStatus: FC<iIRVisibilityStatusProps>;
|
|
|
539
543
|
declare interface IScrollProps extends HTMLAttributes<HTMLDivElement> {
|
|
540
544
|
/** The maximum height of the content after which the scroll appears. */
|
|
541
545
|
maxHeight?: number;
|
|
546
|
+
/** Content that can increase in height */
|
|
547
|
+
extendedItemSelector?: string;
|
|
548
|
+
/** Scrolling delay if the content has increased */
|
|
549
|
+
extendedScrollDelay?: number;
|
|
550
|
+
/** Auto scroll offset */
|
|
551
|
+
extendedScrollOffset?: number;
|
|
542
552
|
/** Content. */
|
|
543
553
|
children: ReactNode;
|
|
544
554
|
}
|