@elliemae/ds-indeterminate-progress-indicator 2.3.0-alpha.2 → 2.3.0-alpha.7

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.
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,19 +1,22 @@
1
1
  {
2
2
  "name": "@elliemae/ds-indeterminate-progress-indicator",
3
- "version": "2.3.0-alpha.2",
3
+ "version": "2.3.0-alpha.7",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Indeterminate Progress Indicator",
6
- "module": "./esm/index.js",
7
- "main": "./cjs/index.js",
8
- "types": "./types/index.d.ts",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "module": "./dist/esm/index.js",
10
+ "main": "./dist/cjs/index.js",
11
+ "types": "./dist/types/index.d.ts",
9
12
  "exports": {
10
13
  ".": {
11
- "import": "./esm/index.js",
12
- "require": "./cjs/index.js"
14
+ "import": "./dist/esm/index.js",
15
+ "require": "./dist/cjs/index.js"
13
16
  },
14
17
  "./DSIndeterminateProgressIndicator": {
15
- "import": "./esm/DSIndeterminateProgressIndicator.js",
16
- "require": "./cjs/DSIndeterminateProgressIndicator.js"
18
+ "import": "./dist/esm/DSIndeterminateProgressIndicator.js",
19
+ "require": "./dist/cjs/DSIndeterminateProgressIndicator.js"
17
20
  }
18
21
  },
19
22
  "sideEffects": [
@@ -25,19 +28,13 @@
25
28
  "url": "https://git.elliemae.io/platform-ui/dimsum.git"
26
29
  },
27
30
  "engines": {
28
- "npm": ">=7",
29
- "node": ">=14"
31
+ "pnpm": ">=6",
32
+ "node": ">=16"
30
33
  },
31
34
  "author": "ICE MT",
32
- "scripts": {
33
- "dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
34
- "prebuild": "exit 0",
35
- "predev": "exit 0",
36
- "build": "node ../../scripts/build/build.js"
37
- },
38
35
  "dependencies": {
39
- "@elliemae/ds-classnames": "2.3.0-alpha.2",
40
- "@elliemae/ds-truncated-tooltip-text": "2.3.0-alpha.2",
36
+ "@elliemae/ds-classnames": "2.3.0-alpha.7",
37
+ "@elliemae/ds-truncated-tooltip-text": "2.3.0-alpha.7",
41
38
  "react-desc": "~4.1.3"
42
39
  },
43
40
  "peerDependencies": {
@@ -46,7 +43,12 @@
46
43
  },
47
44
  "publishConfig": {
48
45
  "access": "public",
49
- "directory": "dist",
50
- "generateSubmodules": true
46
+ "typeSafety": false
47
+ },
48
+ "scripts": {
49
+ "dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w",
50
+ "prebuild": "exit 0",
51
+ "predev": "exit 0",
52
+ "build": "node ../../scripts/build/build.js"
51
53
  }
52
54
  }
@@ -1,92 +0,0 @@
1
- /// <reference path="../../../../shared/typings/react-desc.d.ts" />
2
- /// <reference types="react" />
3
- declare function DSIndeterminateProgressIndicator({ containerProps, title, complete, failed, processing, processingComplete, processingCompleteTitle, processingFail, processingFailTitle, animated, percent, lineOnly, }: {
4
- containerProps: any;
5
- title: any;
6
- complete: any;
7
- failed: any;
8
- processing: any;
9
- processingComplete: any;
10
- processingCompleteTitle: any;
11
- processingFail: any;
12
- processingFailTitle: any;
13
- animated: any;
14
- percent: any;
15
- lineOnly: any;
16
- }): JSX.Element;
17
- declare namespace DSIndeterminateProgressIndicator {
18
- var defaultProps: {
19
- containerProps: {};
20
- title: string;
21
- complete: boolean;
22
- failed: boolean;
23
- processing: boolean;
24
- processingComplete: boolean;
25
- processingCompleteTitle: string;
26
- processingFail: boolean;
27
- processingFailTitle: string;
28
- animated: boolean;
29
- percent: number;
30
- lineOnly: boolean;
31
- };
32
- var propTypes: {
33
- containerProps: {
34
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
35
- deprecated: import("react-desc").PropTypesDescValidator;
36
- };
37
- isRequired: import("react-desc").PropTypesDescValue;
38
- };
39
- title: {
40
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
41
- deprecated: import("react-desc").PropTypesDescValidator;
42
- };
43
- isRequired: import("react-desc").PropTypesDescValue;
44
- };
45
- processingCompleteTitle: {
46
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
47
- deprecated: import("react-desc").PropTypesDescValidator;
48
- };
49
- isRequired: import("react-desc").PropTypesDescValue;
50
- };
51
- processingFailTitle: {
52
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
53
- deprecated: import("react-desc").PropTypesDescValidator;
54
- };
55
- isRequired: import("react-desc").PropTypesDescValue;
56
- };
57
- complete: {
58
- deprecated: import("react-desc").PropTypesDescValidator;
59
- };
60
- failed: {
61
- deprecated: import("react-desc").PropTypesDescValidator;
62
- };
63
- processing: {
64
- deprecated: import("react-desc").PropTypesDescValidator;
65
- };
66
- processingComplete: {
67
- deprecated: import("react-desc").PropTypesDescValidator;
68
- };
69
- processingFail: {
70
- deprecated: import("react-desc").PropTypesDescValidator;
71
- };
72
- animated: {
73
- deprecated: import("react-desc").PropTypesDescValidator;
74
- };
75
- percent: {
76
- deprecated: import("react-desc").PropTypesDescValidator;
77
- };
78
- lineOnly: {
79
- defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
80
- deprecated: import("react-desc").PropTypesDescValidator;
81
- };
82
- isRequired: import("react-desc").PropTypesDescValue;
83
- };
84
- };
85
- }
86
- declare const IndeterminateProgressIndicatorWithSchema: {
87
- (props?: unknown): JSX.Element;
88
- propTypes: unknown;
89
- toTypescript: () => import("react-desc").TypescriptSchema;
90
- };
91
- export { DSIndeterminateProgressIndicator, IndeterminateProgressIndicatorWithSchema };
92
- export default DSIndeterminateProgressIndicator;
package/types/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export * from './DSIndeterminateProgressIndicator';
2
- export { default } from './DSIndeterminateProgressIndicator';