@skedulo/sked-ui 19.10.1 → 19.10.2
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/components/popups/info-window/InfoWindow.d.ts +18 -3
- package/dist/components/tabs/Tabs/Tabs.d.ts +1 -1
- package/dist/index.js +1525 -1457
- package/package.json +4 -4
- package/yarn.lock +5 -5
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="lodash" />
|
|
2
1
|
import * as React from 'react';
|
|
3
2
|
import { IAnchorScores, ICursorOptions, ICursorPoints, Position as PositionType } from './info-window-utils';
|
|
4
3
|
interface InfoWindowState {
|
|
@@ -127,9 +126,25 @@ export declare class InfoWindow extends React.PureComponent<IInfoWindowProps, IS
|
|
|
127
126
|
detachEventListeners(): void;
|
|
128
127
|
attachEventListeners(): void;
|
|
129
128
|
computeStyles(): {
|
|
129
|
+
contentStyles: React.CSSProperties;
|
|
130
|
+
triangleStyles: React.CSSProperties;
|
|
130
131
|
position: PositionType;
|
|
131
|
-
|
|
132
|
-
|
|
132
|
+
} | {
|
|
133
|
+
position: PositionType;
|
|
134
|
+
triangleStyles: {
|
|
135
|
+
top: string;
|
|
136
|
+
left: string;
|
|
137
|
+
} | {
|
|
138
|
+
top: string;
|
|
139
|
+
left: string;
|
|
140
|
+
};
|
|
141
|
+
contentStyles: {
|
|
142
|
+
top: string;
|
|
143
|
+
left: string;
|
|
144
|
+
} | {
|
|
145
|
+
top: string;
|
|
146
|
+
left: string;
|
|
147
|
+
};
|
|
133
148
|
};
|
|
134
149
|
removeRenderingContainer(): void;
|
|
135
150
|
createRenderContainer(): HTMLDivElement;
|
|
@@ -25,7 +25,7 @@ export declare class Tabs extends React.PureComponent<ITabsProps, ITabsState> {
|
|
|
25
25
|
componentDidUpdate(prevProps: ITabsProps): Promise<void>;
|
|
26
26
|
componentWillUnmount(): void;
|
|
27
27
|
onFocusIn: (index: number, ref: React.RefObject<HTMLElement>, nesting: number) => () => void;
|
|
28
|
-
onFocusOutDebounce: ((nesting: number) => void
|
|
28
|
+
onFocusOutDebounce: import("lodash").DebouncedFunc<(nesting: number) => void>;
|
|
29
29
|
asyncSetState: (state: Partial<ITabsState>) => Promise<unknown>;
|
|
30
30
|
onFocusOut: (nesting: number) => () => void;
|
|
31
31
|
onSelect: () => void;
|