@elliemae/ds-shared 3.17.0-next.9 → 3.17.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/Animations/BaseAnimation.d.ts +1 -2
- package/dist/types/Animations/Grow.d.ts +1 -2
- package/dist/types/Animations/GrowRight.d.ts +1 -2
- package/dist/types/Animations/GrowVertical.d.ts +1 -2
- package/dist/types/FocusGroup/FocusGrid.d.ts +1 -1
- package/dist/types/FocusGroup/FocusGroupManager.d.ts +1 -1
- package/dist/types/FocusGroup/focusGroupManagerHoc.d.ts +1 -2
- package/dist/types/GroupContext/Group.d.ts +1 -1
- package/dist/types/GroupContext/GroupItem.d.ts +1 -2
- package/dist/types/ScrollSync/ScrollSync.d.ts +1 -1
- package/dist/types/ScrollSync/ScrollSyncPane.d.ts +1 -2
- package/dist/types/ScrollSync/ScrollSyncProvider.d.ts +1 -2
- package/package.json +3 -3
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const BaseAnimation: ({ keys, items, duration, enter, from, leave, onRest, children, }: {
|
|
3
2
|
keys?: undefined;
|
|
4
3
|
items?: never[] | undefined;
|
|
@@ -8,6 +7,6 @@ declare const BaseAnimation: ({ keys, items, duration, enter, from, leave, onRes
|
|
|
8
7
|
leave?: {} | undefined;
|
|
9
8
|
onRest?: (() => null) | undefined;
|
|
10
9
|
children: any;
|
|
11
|
-
}) => JSX.Element;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
12
11
|
export { BaseAnimation };
|
|
13
12
|
export default BaseAnimation;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const Grow: ({ keys, duration, items, from, to, children, onRest }: {
|
|
3
2
|
keys?: undefined;
|
|
4
3
|
duration: any;
|
|
@@ -7,6 +6,6 @@ declare const Grow: ({ keys, duration, items, from, to, children, onRest }: {
|
|
|
7
6
|
to?: number | undefined;
|
|
8
7
|
children: any;
|
|
9
8
|
onRest?: (() => null) | undefined;
|
|
10
|
-
}) => JSX.Element;
|
|
9
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
11
10
|
export { Grow };
|
|
12
11
|
export default Grow;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const GrowRight: ({ keys, items, duration, from, to, children, onRest, }: {
|
|
3
2
|
keys?: undefined;
|
|
4
3
|
items?: undefined;
|
|
@@ -7,6 +6,6 @@ declare const GrowRight: ({ keys, items, duration, from, to, children, onRest, }
|
|
|
7
6
|
to?: number | undefined;
|
|
8
7
|
children: any;
|
|
9
8
|
onRest?: (() => null) | undefined;
|
|
10
|
-
}) => JSX.Element;
|
|
9
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
11
10
|
export { GrowRight };
|
|
12
11
|
export default GrowRight;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const GrowVertical: ({ keys, duration, items, from, to, children, onRest, }: {
|
|
3
2
|
keys?: undefined;
|
|
4
3
|
duration: any;
|
|
@@ -7,6 +6,6 @@ declare const GrowVertical: ({ keys, duration, items, from, to, children, onRest
|
|
|
7
6
|
to?: number | undefined;
|
|
8
7
|
children: any;
|
|
9
8
|
onRest?: (() => null) | undefined;
|
|
10
|
-
}) => JSX.Element;
|
|
9
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
11
10
|
export { GrowVertical };
|
|
12
11
|
export default GrowVertical;
|
|
@@ -7,6 +7,6 @@ declare const FocusGridProvider: ({ shouldWrapRows, shouldWrapCells, shouldRefoc
|
|
|
7
7
|
children: any;
|
|
8
8
|
keyBindings: any;
|
|
9
9
|
hotKeys: any;
|
|
10
|
-
}) => JSX.Element;
|
|
10
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
11
11
|
export { FocusGridProvider, FocusGridProvider as FocusGrid, FocusGridContext };
|
|
12
12
|
export default FocusGridProvider;
|
|
@@ -20,7 +20,7 @@ declare class FocusGroupProvider extends Component {
|
|
|
20
20
|
unregister(item: any): void;
|
|
21
21
|
focusItemByIndex(index: any): void;
|
|
22
22
|
focusItemByNode(node: any): void;
|
|
23
|
-
render(): JSX.Element;
|
|
23
|
+
render(): import("react/jsx-runtime.js").JSX.Element;
|
|
24
24
|
}
|
|
25
25
|
export { FocusGroupProvider, FocusGroupProvider as FocusGroupManager };
|
|
26
26
|
export default FocusGroupProvider;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare function FocusGroupHoc(WrappedComponent: any, options?: {}): ({ onExitFocusGroup, onFocusPrevGroup, focusKeyBindings, ...props }: {
|
|
3
2
|
[x: string]: any;
|
|
4
3
|
onExitFocusGroup: any;
|
|
5
4
|
onFocusPrevGroup: any;
|
|
6
5
|
focusKeyBindings: any;
|
|
7
|
-
}) => JSX.Element;
|
|
6
|
+
}) => import("react/jsx-runtime.js").JSX.Element;
|
|
8
7
|
export { FocusGroupHoc };
|
|
9
8
|
export default FocusGroupHoc;
|
|
@@ -17,7 +17,7 @@ declare class ScrollSync extends Component {
|
|
|
17
17
|
handlePaneScroll: (node: any, groups: any, e: any) => void;
|
|
18
18
|
syncScrollPositions: (scrolledPane: any, groups: any) => void;
|
|
19
19
|
syncScrollPosition(scrolledPane: any, pane: any): void;
|
|
20
|
-
render(): JSX.Element;
|
|
20
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
21
21
|
}
|
|
22
22
|
export { ScrollSync, ScrollSyncContext };
|
|
23
23
|
export default ScrollSync;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
declare const ScrollSyncProvider: {
|
|
3
2
|
({ enabled, horizontal, vertical, children }: {
|
|
4
3
|
enabled: any;
|
|
5
4
|
horizontal: any;
|
|
6
5
|
vertical: any;
|
|
7
6
|
children: any;
|
|
8
|
-
}): JSX.Element;
|
|
7
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
propTypes: {};
|
|
10
9
|
defaultProps: {};
|
|
11
10
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-shared",
|
|
3
|
-
"version": "3.17.0
|
|
3
|
+
"version": "3.17.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Shared components and utilities",
|
|
6
6
|
"files": [
|
|
@@ -224,8 +224,8 @@
|
|
|
224
224
|
"react-window": "~1.8.8",
|
|
225
225
|
"table-resolver": "~4.1.1",
|
|
226
226
|
"uuid": "~8.3.2",
|
|
227
|
-
"@elliemae/ds-popover": "3.17.0
|
|
228
|
-
"@elliemae/ds-utilities": "3.17.0
|
|
227
|
+
"@elliemae/ds-popover": "3.17.0",
|
|
228
|
+
"@elliemae/ds-utilities": "3.17.0"
|
|
229
229
|
},
|
|
230
230
|
"peerDependencies": {
|
|
231
231
|
"lodash": "~4.17.21",
|