@elliemae/ds-progress-indicator 3.70.0-next.6 → 3.70.0-next.61

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.
@@ -3,8 +3,5 @@
3
3
  "sideEffects": [
4
4
  "*.css",
5
5
  "*.scss"
6
- ],
7
- "publishConfig": {
8
- "access": "public"
9
- }
6
+ ]
10
7
  }
@@ -3,8 +3,5 @@
3
3
  "sideEffects": [
4
4
  "*.css",
5
5
  "*.scss"
6
- ],
7
- "publishConfig": {
8
- "access": "public"
9
- }
6
+ ]
10
7
  }
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import type { DSProgressIndicatorT } from './react-desc-prop-types.js';
3
3
  declare const DSProgressIndicator: {
4
- ({ containerProps, innerRef, title, counterRenderer, now, min, max, disabled, segments, style, }: DSProgressIndicatorT.Props): import("react/jsx-runtime.js").JSX.Element;
4
+ ({ containerProps, innerRef, title, counterRenderer, now, min, max, disabled, segments, style, }: DSProgressIndicatorT.Props): React.JSX.Element;
5
5
  displayName: string;
6
6
  ProgressBar: {
7
7
  ({ variant, now, min, max, children: progressSegments, }: {
@@ -10,13 +10,13 @@ declare const DSProgressIndicator: {
10
10
  min?: number;
11
11
  max?: number;
12
12
  children?: React.ReactNode;
13
- }): import("react/jsx-runtime.js").JSX.Element;
13
+ }): React.JSX.Element;
14
14
  Segment: (props: {
15
15
  variant: string;
16
16
  now?: number;
17
17
  min?: number;
18
18
  max?: number;
19
- }) => import("react/jsx-runtime.js").JSX.Element;
19
+ }) => React.JSX.Element;
20
20
  };
21
21
  };
22
22
  declare const ProgressIndicatorWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<DSProgressIndicatorT.Props>;
@@ -6,12 +6,12 @@ declare const ProgressBar: {
6
6
  min?: number;
7
7
  max?: number;
8
8
  children?: React.ReactNode;
9
- }): import("react/jsx-runtime.js").JSX.Element;
9
+ }): React.JSX.Element;
10
10
  Segment: (props: {
11
11
  variant: string;
12
12
  now?: number;
13
13
  min?: number;
14
14
  max?: number;
15
- }) => import("react/jsx-runtime.js").JSX.Element;
15
+ }) => React.JSX.Element;
16
16
  };
17
17
  export default ProgressBar;
@@ -1,5 +1,6 @@
1
+ import React from 'react';
1
2
  import type { DSProgressIndicatorT } from './react-desc-prop-types.js';
2
3
  declare const ProgressCounter: ({ now, max, min, renderer, }: DSProgressIndicatorT.PercentageT & {
3
4
  renderer?: DSProgressIndicatorT.DefaultRendererT;
4
- }) => import("react/jsx-runtime.js").JSX.Element;
5
+ }) => React.JSX.Element;
5
6
  export default ProgressCounter;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-progress-indicator",
3
- "version": "3.70.0-next.6",
3
+ "version": "3.70.0-next.61",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Progress Indicator",
6
6
  "files": [
@@ -36,14 +36,14 @@
36
36
  "indent": 4
37
37
  },
38
38
  "dependencies": {
39
- "@elliemae/ds-classnames": "3.70.0-next.6",
40
- "@elliemae/ds-props-helpers": "3.70.0-next.6",
41
- "@elliemae/ds-system": "3.70.0-next.6"
39
+ "@elliemae/ds-classnames": "3.70.0-next.61",
40
+ "@elliemae/ds-props-helpers": "3.70.0-next.61",
41
+ "@elliemae/ds-system": "3.70.0-next.61"
42
42
  },
43
43
  "devDependencies": {
44
44
  "jest": "^30.0.0",
45
- "styled-components": "~5.3.9",
46
- "@elliemae/ds-monorepo-devops": "3.70.0-next.6"
45
+ "styled-components": "~5.3.11",
46
+ "@elliemae/ds-monorepo-devops": "3.70.0-next.61"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "react": "^18.3.1",
@@ -62,4 +62,4 @@
62
62
  "build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
63
63
  "checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
64
64
  }
65
- }
65
+ }
@@ -1 +0,0 @@
1
- export {};