@elliemae/ds-circular-progress-indicator 3.13.1-rc.0 → 3.13.1-rc.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.
@@ -0,0 +1,33 @@
1
+ declare const CircularProgressIndicator: {
2
+ ({ size, showLabel, showTooltip, waiting, loading }: {
3
+ size: any;
4
+ showLabel: any;
5
+ showTooltip: any;
6
+ waiting: any;
7
+ loading: any;
8
+ }): JSX.Element;
9
+ defaultProps: {
10
+ size: string;
11
+ showLabel: boolean;
12
+ showTooltip: boolean;
13
+ waiting: boolean;
14
+ loading: boolean;
15
+ };
16
+ propTypes: {
17
+ size: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
18
+ showLabel: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
19
+ showTooltip: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
20
+ waiting: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
21
+ loading: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
22
+ };
23
+ displayName: string;
24
+ };
25
+ declare const CircularProgressIndicatorWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<{
26
+ size: any;
27
+ showLabel: any;
28
+ showTooltip: any;
29
+ waiting: any;
30
+ loading: any;
31
+ }>;
32
+ export { CircularProgressIndicatorWithSchema };
33
+ export default CircularProgressIndicator;
@@ -0,0 +1,2 @@
1
+ export { default, default as DSCircularProgressIndicator, CircularProgressIndicatorWithSchema, } from './DSCircularProgressIndicator';
2
+ export { DSCircularIndeterminateIndicator, DSCircularIndeterminateIndicatorWithSchema } from './v2';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { DSCircularIndeterminateIndicatorT } from './react-desc-prop-types';
3
+ export declare const DSCircularIndeterminateIndicator: React.ComponentType<DSCircularIndeterminateIndicatorT.Props>;
4
+ export declare const DSCircularIndeterminateIndicatorWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<DSCircularIndeterminateIndicatorT.Props>;
@@ -0,0 +1,28 @@
1
+ export declare const sizeToPx: {
2
+ xs: number;
3
+ s: number;
4
+ m: number;
5
+ l: number;
6
+ xl: number;
7
+ xxl: number;
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 { DSCircularIndeterminateIndicator, DSCircularIndeterminateIndicatorWithSchema, } from './DSCircularIndeterminateIndicator';
@@ -0,0 +1,25 @@
1
+ import type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-utilities';
2
+ import { type DSTooltipV3T } from '@elliemae/ds-tooltip';
3
+ import type { WeakValidationMap } from 'react';
4
+ export declare const defaultProps: DSCircularIndeterminateIndicatorT.DefaultProps;
5
+ export declare namespace DSCircularIndeterminateIndicatorT {
6
+ type TShirtSizes = 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
7
+ type SupportedColors = 'light' | 'dark';
8
+ interface DefaultProps {
9
+ size: TShirtSizes;
10
+ color: SupportedColors;
11
+ text: string;
12
+ showText: boolean;
13
+ withTooltip: boolean;
14
+ tooltipStartPlacementPreference: DSTooltipV3T.Placement;
15
+ }
16
+ interface OptionalProps {
17
+ }
18
+ interface RequiredProps {
19
+ }
20
+ interface Props extends Partial<DefaultProps>, OptionalProps, Omit<GlobalAttributesT<HTMLButtonElement>, keyof DefaultProps | keyof OptionalProps | keyof RequiredProps>, XstyledProps, RequiredProps {
21
+ }
22
+ interface InternalProps extends DefaultProps, OptionalProps, Omit<GlobalAttributesT<HTMLButtonElement>, keyof DefaultProps | keyof OptionalProps | keyof RequiredProps>, XstyledProps, RequiredProps {
23
+ }
24
+ }
25
+ export declare const CircularIndeterminateIndicatorPropTypes: WeakValidationMap<unknown>;
@@ -0,0 +1,8 @@
1
+ export declare const StyledSvg: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
2
+ export declare const StyledPath: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & {
3
+ r: number;
4
+ }, never>;
5
+ export declare const StyledRect: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
6
+ export declare const StyledCircle: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & {
7
+ r: number;
8
+ }, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-circular-progress-indicator",
3
- "version": "3.13.1-rc.0",
3
+ "version": "3.13.1-rc.2",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Circular progress indicator",
6
6
  "files": [
@@ -53,11 +53,11 @@
53
53
  "dependencies": {
54
54
  "styled-components": "~5.3.6",
55
55
  "uid": "~2.0.0",
56
- "@elliemae/ds-classnames": "3.13.1-rc.0",
57
- "@elliemae/ds-system": "3.13.1-rc.0",
58
- "@elliemae/ds-grid": "3.13.1-rc.0",
59
- "@elliemae/ds-tooltip": "3.13.1-rc.0",
60
- "@elliemae/ds-utilities": "3.13.1-rc.0"
56
+ "@elliemae/ds-classnames": "3.13.1-rc.2",
57
+ "@elliemae/ds-grid": "3.13.1-rc.2",
58
+ "@elliemae/ds-system": "3.13.1-rc.2",
59
+ "@elliemae/ds-tooltip": "3.13.1-rc.2",
60
+ "@elliemae/ds-utilities": "3.13.1-rc.2"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@testing-library/jest-dom": "~5.16.4",