@elliemae/ds-square-indicator 3.13.1-rc.1 → 3.13.1
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.
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { DSSquareIndicatorT } from './react-desc-prop-types';
|
|
3
|
+
export declare const DSSquareIndicator: React.ComponentType<DSSquareIndicatorT.Props>;
|
|
4
|
+
export declare const DSSquareIndicatorWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<DSSquareIndicatorT.Props>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const sizeToPx: {
|
|
2
|
+
xs: string;
|
|
3
|
+
s: string;
|
|
4
|
+
m: string;
|
|
5
|
+
l: string;
|
|
6
|
+
xl: string;
|
|
7
|
+
xxl: string;
|
|
8
|
+
};
|
|
9
|
+
export declare const sizeToWeight: {
|
|
10
|
+
xs: string;
|
|
11
|
+
s: string;
|
|
12
|
+
m: string;
|
|
13
|
+
l: string;
|
|
14
|
+
xl: string;
|
|
15
|
+
xxl: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const colorToHex: {
|
|
18
|
+
light: string;
|
|
19
|
+
dark: string;
|
|
20
|
+
};
|
|
21
|
+
export declare const sizeToTextSize: {
|
|
22
|
+
xs: string;
|
|
23
|
+
s: string;
|
|
24
|
+
m: string;
|
|
25
|
+
l: string;
|
|
26
|
+
xl: string;
|
|
27
|
+
xxl: string;
|
|
28
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DSSquareIndicator, DSSquareIndicatorWithSchema } from './DSSquareIndicator';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { WeakValidationMap } from 'react';
|
|
2
|
+
export declare namespace DSSquareIndicatorT {
|
|
3
|
+
interface Props {
|
|
4
|
+
size?: 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
|
|
5
|
+
color?: 'light' | 'dark';
|
|
6
|
+
text?: string;
|
|
7
|
+
showText?: boolean;
|
|
8
|
+
withTooltip: boolean;
|
|
9
|
+
tooltipStartPlacementPreference?: 'top-start' | 'top' | 'top-end' | 'right-start' | 'right' | 'right-end' | 'bottom-end' | 'bottom' | 'bottom-start' | 'left-end' | 'left' | 'left-start';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
export declare const SquareIndicatorPropTypes: WeakValidationMap<unknown>;
|
|
13
|
+
export declare const defaultProps: DSSquareIndicatorT.Props;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { DSSquareIndicatorT } from './react-desc-prop-types';
|
|
2
|
+
interface RectProps {
|
|
3
|
+
size: Required<DSSquareIndicatorT.Props>['size'];
|
|
4
|
+
}
|
|
5
|
+
export declare const StyledLineLeft: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & RectProps, never>;
|
|
6
|
+
export declare const StyledLineTop: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & RectProps, never>;
|
|
7
|
+
export declare const StyledLineRight: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & RectProps, never>;
|
|
8
|
+
export declare const StyledLineBottom: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & RectProps, never>;
|
|
9
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-square-indicator",
|
|
3
|
-
"version": "3.13.1
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Indeterminate Progress Indicator",
|
|
6
6
|
"files": [
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"styled-components": "~5.3.6",
|
|
47
47
|
"uid": "^2.0.0",
|
|
48
|
-
"@elliemae/ds-grid": "3.13.1
|
|
49
|
-
"@elliemae/ds-system": "3.13.1
|
|
50
|
-
"@elliemae/ds-tooltip": "3.13.1
|
|
51
|
-
"@elliemae/ds-utilities": "3.13.1
|
|
48
|
+
"@elliemae/ds-grid": "3.13.1",
|
|
49
|
+
"@elliemae/ds-system": "3.13.1",
|
|
50
|
+
"@elliemae/ds-tooltip": "3.13.1",
|
|
51
|
+
"@elliemae/ds-utilities": "3.13.1"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "^17.0.2",
|