@elliemae/ds-scrollable-container 3.14.0-next.9 → 3.14.0-rc.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/dist/types/DSScrollableContainer.d.ts +5 -0
- package/dist/types/config/index.d.ts +1 -0
- package/dist/types/config/useConfig.d.ts +11 -0
- package/dist/types/exported_related/definitions.d.ts +27 -0
- package/dist/types/exported_related/index.d.ts +1 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/react-desc-prop-types.d.ts +11 -0
- package/package.json +3 -3
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { DSScrollableContainerT } from './react-desc-prop-types';
|
|
3
|
+
declare const DSScrollableContainer: React.ComponentType<DSScrollableContainerT.Props>;
|
|
4
|
+
declare const DSScrollableContainerWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<DSScrollableContainerT.Props>;
|
|
5
|
+
export { DSScrollableContainer, DSScrollableContainerWithSchema };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './useConfig';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-utilities';
|
|
3
|
+
import type { DSScrollableContainerT } from '../react-desc-prop-types';
|
|
4
|
+
interface UseConfigT {
|
|
5
|
+
propsWithDefault: DSScrollableContainerT.Props;
|
|
6
|
+
globalAttributes: GlobalAttributesT;
|
|
7
|
+
xstyledProps: XstyledProps;
|
|
8
|
+
osTargetRef: React.RefObject<HTMLDivElement>;
|
|
9
|
+
}
|
|
10
|
+
export declare const useConfig: (props: DSScrollableContainerT.Props) => UseConfigT;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare const DSScrollableContainerName = "DSScrollableContainer";
|
|
2
|
+
export declare const DSScrollableContainerSlots: {
|
|
3
|
+
ROOT: string;
|
|
4
|
+
HOST: string;
|
|
5
|
+
RESIZE_OBSERVER_HOST: string;
|
|
6
|
+
PADDING: string;
|
|
7
|
+
VIEWPORT: string;
|
|
8
|
+
CONTENT: string;
|
|
9
|
+
SCROLLBAR_HORIZONTAL: string;
|
|
10
|
+
SCROLLBAR_VERTICAL: string;
|
|
11
|
+
SCROLLBAR_TRACK: string;
|
|
12
|
+
SCROLLBAR_HANDLE: string;
|
|
13
|
+
SCROLLBAR_CORNER: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const DSScrollableContainerDataTestIds: {
|
|
16
|
+
ROOT: string;
|
|
17
|
+
HOST: string;
|
|
18
|
+
RESIZE_OBSERVER_HOST: string;
|
|
19
|
+
PADDING: string;
|
|
20
|
+
VIEWPORT: string;
|
|
21
|
+
CONTENT: string;
|
|
22
|
+
SCROLLBAR_HORIZONTAL: string;
|
|
23
|
+
SCROLLBAR_VERTICAL: string;
|
|
24
|
+
SCROLLBAR_TRACK: string;
|
|
25
|
+
SCROLLBAR_HANDLE: string;
|
|
26
|
+
SCROLLBAR_CORNER: string;
|
|
27
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './definitions';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { WeakValidationMap } from 'react';
|
|
2
|
+
import type React from 'react';
|
|
3
|
+
import type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-utilities';
|
|
4
|
+
export declare namespace DSScrollableContainerT {
|
|
5
|
+
interface OptionalProps {
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
interface Props extends OptionalProps, XstyledProps, GlobalAttributesT<HTMLDivElement> {
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
export declare const DSScrollableContainerPropTypes: WeakValidationMap<unknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-scrollable-container",
|
|
3
|
-
"version": "3.14.0-
|
|
3
|
+
"version": "3.14.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Scrollable Container",
|
|
6
6
|
"files": [
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"overlayscrollbars": "1.13.3",
|
|
39
|
-
"@elliemae/ds-system": "3.14.0-
|
|
40
|
-
"@elliemae/ds-utilities": "3.14.0-
|
|
39
|
+
"@elliemae/ds-system": "3.14.0-rc.0",
|
|
40
|
+
"@elliemae/ds-utilities": "3.14.0-rc.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "^17.0.2",
|