@elliemae/ds-loading-indicator 3.16.0-next.2 → 3.16.0-next.21
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/cjs/DSLoadingIndicator.js +13 -9
- package/dist/cjs/DSLoadingIndicator.js.map +2 -2
- package/dist/cjs/index.js +6 -2
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs/package.json +7 -0
- package/dist/esm/DSLoadingIndicator.js +1 -1
- package/dist/esm/DSLoadingIndicator.js.map +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/package.json +7 -0
- package/dist/types/DSLoadingIndicator.d.ts +9 -8
- package/dist/types/index.d.ts +2 -2
- package/package.json +7 -6
|
@@ -18,6 +18,10 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
return to;
|
|
19
19
|
};
|
|
20
20
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
25
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
26
|
mod
|
|
23
27
|
));
|
|
@@ -31,7 +35,7 @@ __export(DSLoadingIndicator_exports, {
|
|
|
31
35
|
module.exports = __toCommonJS(DSLoadingIndicator_exports);
|
|
32
36
|
var React = __toESM(require("react"));
|
|
33
37
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
34
|
-
var
|
|
38
|
+
var import_ds_props_helpers = require("@elliemae/ds-props-helpers");
|
|
35
39
|
var import_ds_classnames = require("@elliemae/ds-classnames");
|
|
36
40
|
var import_ds_spinner = __toESM(require("@elliemae/ds-spinner"));
|
|
37
41
|
var import_ds_overlay = __toESM(require("@elliemae/ds-overlay"));
|
|
@@ -61,17 +65,17 @@ const DSLoadingIndicator = ({
|
|
|
61
65
|
}
|
|
62
66
|
);
|
|
63
67
|
const loadingIndicatorProps = {
|
|
64
|
-
innerRef:
|
|
65
|
-
size:
|
|
66
|
-
loading:
|
|
67
|
-
message:
|
|
68
|
-
hasBackdrop:
|
|
69
|
-
onClickOutside:
|
|
70
|
-
spinner:
|
|
68
|
+
innerRef: import_ds_props_helpers.PropTypes.func.description("Get spinner reference"),
|
|
69
|
+
size: import_ds_props_helpers.PropTypes.oneOf(["s", "m", "l"]).description("Size of the spinner").defaultValue("l"),
|
|
70
|
+
loading: import_ds_props_helpers.PropTypes.bool.description("Whether to show the spinner or not").defaultValue(false),
|
|
71
|
+
message: import_ds_props_helpers.PropTypes.string.description("Message below the spinner"),
|
|
72
|
+
hasBackdrop: import_ds_props_helpers.PropTypes.bool.description("Show a backdrop besides the spinner").defaultValue(true),
|
|
73
|
+
onClickOutside: import_ds_props_helpers.PropTypes.func.description("Handler when a user clicks the outside the spinner"),
|
|
74
|
+
spinner: import_ds_props_helpers.PropTypes.element.description("Render a custom spinner (JSX)")
|
|
71
75
|
};
|
|
72
76
|
DSLoadingIndicator.propTypes = loadingIndicatorProps;
|
|
73
77
|
DSLoadingIndicator.displayName = "DSLoadingIndicator";
|
|
74
|
-
const LoadingIndicatorWithSchema = (0,
|
|
78
|
+
const LoadingIndicatorWithSchema = (0, import_ds_props_helpers.describe)(DSLoadingIndicator);
|
|
75
79
|
LoadingIndicatorWithSchema.propTypes = loadingIndicatorProps;
|
|
76
80
|
var DSLoadingIndicator_default = DSLoadingIndicator;
|
|
77
81
|
//# sourceMappingURL=DSLoadingIndicator.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/DSLoadingIndicator.tsx", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["import React from 'react';\nimport { describe, PropTypes } from '@elliemae/ds-
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["import React from 'react';\nimport { describe, PropTypes } from '@elliemae/ds-props-helpers';\nimport { aggregatedClasses } from '@elliemae/ds-classnames';\nimport DSSpinner from '@elliemae/ds-spinner';\nimport DSOverlay from '@elliemae/ds-overlay';\n\nconst blockName = 'loading-indicator';\n\nconst Container = aggregatedClasses('div')(blockName);\n\nconst DSLoadingIndicator = ({\n innerRef,\n size = 'l',\n loading = false,\n message = null,\n hasBackdrop = true,\n onClickOutside = () => null,\n spinner = null,\n 'aria-label': ariaLabel = '',\n ...rest\n}) => (\n <DSOverlay\n backDropZIndex={200} // https://jira.elliemae.io/browse/PUI-1712\n hasBackdrop={hasBackdrop}\n isOpen={loading}\n onClickOutside={onClickOutside}\n style={{\n position: 'fixed',\n }}\n >\n <Container>\n <DSSpinner ariaLabel={ariaLabel} spinner={spinner} innerRef={innerRef} message={message} size={size} {...rest} />\n </Container>\n </DSOverlay>\n);\n\nconst loadingIndicatorProps = {\n innerRef: PropTypes.func.description('Get spinner reference'),\n size: PropTypes.oneOf(['s', 'm', 'l']).description('Size of the spinner').defaultValue('l'),\n loading: PropTypes.bool.description('Whether to show the spinner or not').defaultValue(false),\n message: PropTypes.string.description('Message below the spinner'),\n hasBackdrop: PropTypes.bool.description('Show a backdrop besides the spinner').defaultValue(true),\n onClickOutside: PropTypes.func.description('Handler when a user clicks the outside the spinner'),\n spinner: PropTypes.element.description('Render a custom spinner (JSX)'),\n};\n\nDSLoadingIndicator.propTypes = loadingIndicatorProps;\nDSLoadingIndicator.displayName = 'DSLoadingIndicator';\nconst LoadingIndicatorWithSchema = describe(DSLoadingIndicator);\nLoadingIndicatorWithSchema.propTypes = loadingIndicatorProps;\n\nexport { DSLoadingIndicator, LoadingIndicatorWithSchema };\nexport default DSLoadingIndicator;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;AD+BjB;AA9BN,8BAAoC;AACpC,2BAAkC;AAClC,wBAAsB;AACtB,wBAAsB;AAEtB,MAAM,YAAY;AAElB,MAAM,gBAAY,wCAAkB,KAAK,EAAE,SAAS;AAEpD,MAAM,qBAAqB,CAAC;AAAA,EAC1B;AAAA,EACA,OAAO;AAAA,EACP,UAAU;AAAA,EACV,UAAU;AAAA,EACV,cAAc;AAAA,EACd,iBAAiB,MAAM;AAAA,EACvB,UAAU;AAAA,EACV,cAAc,YAAY;AAAA,EAC1B,GAAG;AACL,MACE;AAAA,EAAC,kBAAAA;AAAA,EAAA;AAAA,IACC,gBAAgB;AAAA,IAChB;AAAA,IACA,QAAQ;AAAA,IACR;AAAA,IACA,OAAO;AAAA,MACL,UAAU;AAAA,IACZ;AAAA,IAEA,sDAAC,aACC,sDAAC,kBAAAC,SAAA,EAAU,WAAsB,SAAkB,UAAoB,SAAkB,MAAa,GAAG,MAAM,GACjH;AAAA;AACF;AAGF,MAAM,wBAAwB;AAAA,EAC5B,UAAU,kCAAU,KAAK,YAAY,uBAAuB;AAAA,EAC5D,MAAM,kCAAU,MAAM,CAAC,KAAK,KAAK,GAAG,CAAC,EAAE,YAAY,qBAAqB,EAAE,aAAa,GAAG;AAAA,EAC1F,SAAS,kCAAU,KAAK,YAAY,oCAAoC,EAAE,aAAa,KAAK;AAAA,EAC5F,SAAS,kCAAU,OAAO,YAAY,2BAA2B;AAAA,EACjE,aAAa,kCAAU,KAAK,YAAY,qCAAqC,EAAE,aAAa,IAAI;AAAA,EAChG,gBAAgB,kCAAU,KAAK,YAAY,oDAAoD;AAAA,EAC/F,SAAS,kCAAU,QAAQ,YAAY,+BAA+B;AACxE;AAEA,mBAAmB,YAAY;AAC/B,mBAAmB,cAAc;AACjC,MAAM,iCAA6B,kCAAS,kBAAkB;AAC9D,2BAA2B,YAAY;AAGvC,IAAO,6BAAQ;",
|
|
6
6
|
"names": ["DSOverlay", "DSSpinner"]
|
|
7
7
|
}
|
package/dist/cjs/index.js
CHANGED
|
@@ -19,6 +19,10 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
};
|
|
20
20
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
21
21
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
22
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
23
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
24
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
25
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
22
26
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
23
27
|
mod
|
|
24
28
|
));
|
|
@@ -29,6 +33,6 @@ __export(src_exports, {
|
|
|
29
33
|
});
|
|
30
34
|
module.exports = __toCommonJS(src_exports);
|
|
31
35
|
var React = __toESM(require("react"));
|
|
32
|
-
__reExport(src_exports, require("./DSLoadingIndicator"), module.exports);
|
|
33
|
-
var import_DSLoadingIndicator = __toESM(require("./DSLoadingIndicator"));
|
|
36
|
+
__reExport(src_exports, require("./DSLoadingIndicator.js"), module.exports);
|
|
37
|
+
var import_DSLoadingIndicator = __toESM(require("./DSLoadingIndicator.js"));
|
|
34
38
|
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.tsx", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["export * from './DSLoadingIndicator';\n\nexport { default } from './DSLoadingIndicator';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["export * from './DSLoadingIndicator.js';\n\nexport { default } from './DSLoadingIndicator.js';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,wBAAc,oCAAd;AAEA,gCAAwB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { jsx } from "react/jsx-runtime";
|
|
3
|
-
import { describe, PropTypes } from "@elliemae/ds-
|
|
3
|
+
import { describe, PropTypes } from "@elliemae/ds-props-helpers";
|
|
4
4
|
import { aggregatedClasses } from "@elliemae/ds-classnames";
|
|
5
5
|
import DSSpinner from "@elliemae/ds-spinner";
|
|
6
6
|
import DSOverlay from "@elliemae/ds-overlay";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/DSLoadingIndicator.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe, PropTypes } from '@elliemae/ds-
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;AC+BjB;AA9BN,SAAS,UAAU,iBAAiB;AACpC,SAAS,yBAAyB;AAClC,OAAO,eAAe;AACtB,OAAO,eAAe;AAEtB,MAAM,YAAY;AAElB,MAAM,YAAY,kBAAkB,KAAK,EAAE,SAAS;AAEpD,MAAM,qBAAqB,CAAC;AAAA,EAC1B;AAAA,EACA,OAAO;AAAA,EACP,UAAU;AAAA,EACV,UAAU;AAAA,EACV,cAAc;AAAA,EACd,iBAAiB,MAAM;AAAA,EACvB,UAAU;AAAA,EACV,cAAc,YAAY;AAAA,
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe, PropTypes } from '@elliemae/ds-props-helpers';\nimport { aggregatedClasses } from '@elliemae/ds-classnames';\nimport DSSpinner from '@elliemae/ds-spinner';\nimport DSOverlay from '@elliemae/ds-overlay';\n\nconst blockName = 'loading-indicator';\n\nconst Container = aggregatedClasses('div')(blockName);\n\nconst DSLoadingIndicator = ({\n innerRef,\n size = 'l',\n loading = false,\n message = null,\n hasBackdrop = true,\n onClickOutside = () => null,\n spinner = null,\n 'aria-label': ariaLabel = '',\n ...rest\n}) => (\n <DSOverlay\n backDropZIndex={200} // https://jira.elliemae.io/browse/PUI-1712\n hasBackdrop={hasBackdrop}\n isOpen={loading}\n onClickOutside={onClickOutside}\n style={{\n position: 'fixed',\n }}\n >\n <Container>\n <DSSpinner ariaLabel={ariaLabel} spinner={spinner} innerRef={innerRef} message={message} size={size} {...rest} />\n </Container>\n </DSOverlay>\n);\n\nconst loadingIndicatorProps = {\n innerRef: PropTypes.func.description('Get spinner reference'),\n size: PropTypes.oneOf(['s', 'm', 'l']).description('Size of the spinner').defaultValue('l'),\n loading: PropTypes.bool.description('Whether to show the spinner or not').defaultValue(false),\n message: PropTypes.string.description('Message below the spinner'),\n hasBackdrop: PropTypes.bool.description('Show a backdrop besides the spinner').defaultValue(true),\n onClickOutside: PropTypes.func.description('Handler when a user clicks the outside the spinner'),\n spinner: PropTypes.element.description('Render a custom spinner (JSX)'),\n};\n\nDSLoadingIndicator.propTypes = loadingIndicatorProps;\nDSLoadingIndicator.displayName = 'DSLoadingIndicator';\nconst LoadingIndicatorWithSchema = describe(DSLoadingIndicator);\nLoadingIndicatorWithSchema.propTypes = loadingIndicatorProps;\n\nexport { DSLoadingIndicator, LoadingIndicatorWithSchema };\nexport default DSLoadingIndicator;\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;AC+BjB;AA9BN,SAAS,UAAU,iBAAiB;AACpC,SAAS,yBAAyB;AAClC,OAAO,eAAe;AACtB,OAAO,eAAe;AAEtB,MAAM,YAAY;AAElB,MAAM,YAAY,kBAAkB,KAAK,EAAE,SAAS;AAEpD,MAAM,qBAAqB,CAAC;AAAA,EAC1B;AAAA,EACA,OAAO;AAAA,EACP,UAAU;AAAA,EACV,UAAU;AAAA,EACV,cAAc;AAAA,EACd,iBAAiB,MAAM;AAAA,EACvB,UAAU;AAAA,EACV,cAAc,YAAY;AAAA,EAC1B,GAAG;AACL,MACE;AAAA,EAAC;AAAA;AAAA,IACC,gBAAgB;AAAA,IAChB;AAAA,IACA,QAAQ;AAAA,IACR;AAAA,IACA,OAAO;AAAA,MACL,UAAU;AAAA,IACZ;AAAA,IAEA,8BAAC,aACC,8BAAC,aAAU,WAAsB,SAAkB,UAAoB,SAAkB,MAAa,GAAG,MAAM,GACjH;AAAA;AACF;AAGF,MAAM,wBAAwB;AAAA,EAC5B,UAAU,UAAU,KAAK,YAAY,uBAAuB;AAAA,EAC5D,MAAM,UAAU,MAAM,CAAC,KAAK,KAAK,GAAG,CAAC,EAAE,YAAY,qBAAqB,EAAE,aAAa,GAAG;AAAA,EAC1F,SAAS,UAAU,KAAK,YAAY,oCAAoC,EAAE,aAAa,KAAK;AAAA,EAC5F,SAAS,UAAU,OAAO,YAAY,2BAA2B;AAAA,EACjE,aAAa,UAAU,KAAK,YAAY,qCAAqC,EAAE,aAAa,IAAI;AAAA,EAChG,gBAAgB,UAAU,KAAK,YAAY,oDAAoD;AAAA,EAC/F,SAAS,UAAU,QAAQ,YAAY,+BAA+B;AACxE;AAEA,mBAAmB,YAAY;AAC/B,mBAAmB,cAAc;AACjC,MAAM,6BAA6B,SAAS,kBAAkB;AAC9D,2BAA2B,YAAY;AAGvC,IAAO,6BAAQ;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
export * from "./DSLoadingIndicator";
|
|
3
|
-
import { default as default2 } from "./DSLoadingIndicator";
|
|
2
|
+
export * from "./DSLoadingIndicator.js";
|
|
3
|
+
import { default as default2 } from "./DSLoadingIndicator.js";
|
|
4
4
|
export {
|
|
5
5
|
default2 as default
|
|
6
6
|
};
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/index.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './DSLoadingIndicator';\n\nexport { default } from './DSLoadingIndicator';\n"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './DSLoadingIndicator.js';\n\nexport { default } from './DSLoadingIndicator.js';\n"],
|
|
5
5
|
"mappings": "AAAA,YAAY,WAAW;ACAvB,cAAc;AAEd,SAAS,WAAAA,gBAAe;",
|
|
6
6
|
"names": ["default"]
|
|
7
7
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
declare const DSLoadingIndicator: {
|
|
2
3
|
({ innerRef, size, loading, message, hasBackdrop, onClickOutside, spinner, "aria-label": ariaLabel, ...rest }: {
|
|
3
4
|
[x: string]: any;
|
|
@@ -11,17 +12,17 @@ declare const DSLoadingIndicator: {
|
|
|
11
12
|
"aria-label"?: string | undefined;
|
|
12
13
|
}): JSX.Element;
|
|
13
14
|
propTypes: {
|
|
14
|
-
innerRef: import("@elliemae/ds-
|
|
15
|
-
size: import("@elliemae/ds-
|
|
16
|
-
loading: import("@elliemae/ds-
|
|
17
|
-
message: import("@elliemae/ds-
|
|
18
|
-
hasBackdrop: import("@elliemae/ds-
|
|
19
|
-
onClickOutside: import("@elliemae/ds-
|
|
20
|
-
spinner: import("@elliemae/ds-
|
|
15
|
+
innerRef: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
16
|
+
size: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
17
|
+
loading: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
18
|
+
message: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
19
|
+
hasBackdrop: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
20
|
+
onClickOutside: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
21
|
+
spinner: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").ReactDescT;
|
|
21
22
|
};
|
|
22
23
|
displayName: string;
|
|
23
24
|
};
|
|
24
|
-
declare const LoadingIndicatorWithSchema: import("@elliemae/ds-
|
|
25
|
+
declare const LoadingIndicatorWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types").DocumentedReactComponent<{
|
|
25
26
|
[x: string]: any;
|
|
26
27
|
innerRef: any;
|
|
27
28
|
size?: string | undefined;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './DSLoadingIndicator';
|
|
2
|
-
export { default } from './DSLoadingIndicator';
|
|
1
|
+
export * from './DSLoadingIndicator.js';
|
|
2
|
+
export { default } from './DSLoadingIndicator.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-loading-indicator",
|
|
3
|
-
"version": "3.16.0-next.
|
|
3
|
+
"version": "3.16.0-next.21",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Loading Indicator",
|
|
6
6
|
"files": [
|
|
@@ -39,10 +39,11 @@
|
|
|
39
39
|
"indent": 4
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@elliemae/ds-classnames": "3.16.0-next.
|
|
43
|
-
"@elliemae/ds-overlay": "3.16.0-next.
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-
|
|
42
|
+
"@elliemae/ds-classnames": "3.16.0-next.21",
|
|
43
|
+
"@elliemae/ds-overlay": "3.16.0-next.21",
|
|
44
|
+
"@elliemae/ds-props-helpers": "3.16.0-next.21",
|
|
45
|
+
"@elliemae/ds-spinner": "3.16.0-next.21",
|
|
46
|
+
"@elliemae/ds-utilities": "3.16.0-next.21"
|
|
46
47
|
},
|
|
47
48
|
"peerDependencies": {
|
|
48
49
|
"react": "^17.0.2",
|
|
@@ -59,7 +60,7 @@
|
|
|
59
60
|
"eslint:fix": "eslint --ext='.js,.jsx,.test.js,.ts,.tsx' --fix --config='../../.eslintrc.js' src/",
|
|
60
61
|
"dts": "node ../../scripts/dts.mjs",
|
|
61
62
|
"build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
|
|
62
|
-
"dev:build": "pnpm --filter {.}... build
|
|
63
|
+
"dev:build": "pnpm --filter {.}... build",
|
|
63
64
|
"dev:install": "pnpm --filter {.}... i --no-lockfile && pnpm run dev:build",
|
|
64
65
|
"checkDeps": "npx -yes ../ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
65
66
|
}
|