@elliemae/ds-text-wrapper 3.12.0-next.0 → 3.12.0-next.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.
- package/dist/cjs/DSTextWrapper.js +5 -9
- package/dist/cjs/DSTextWrapper.js.map +2 -2
- package/dist/cjs/props.js +3 -9
- package/dist/cjs/props.js.map +2 -2
- package/dist/esm/DSTextWrapper.js +5 -9
- package/dist/esm/DSTextWrapper.js.map +2 -2
- package/dist/esm/props.js +3 -9
- package/dist/esm/props.js.map +2 -2
- package/package.json +3 -3
|
@@ -46,15 +46,11 @@ const DSTextWrapper = ({
|
|
|
46
46
|
textAlignment,
|
|
47
47
|
wordBreak
|
|
48
48
|
}) => {
|
|
49
|
-
const { cssClassName, classNameElement } = (0, import_ds_classnames.convertPropToCssClassName)(
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
textAlignment,
|
|
55
|
-
wordBreak
|
|
56
|
-
}
|
|
57
|
-
);
|
|
49
|
+
const { cssClassName, classNameElement } = (0, import_ds_classnames.convertPropToCssClassName)("text-wrapperRef", className, {
|
|
50
|
+
textEllipsis,
|
|
51
|
+
textAlignment,
|
|
52
|
+
wordBreak
|
|
53
|
+
});
|
|
58
54
|
const limitPerCharacter = () => text.split(" ").reduce(
|
|
59
55
|
(result, word) => {
|
|
60
56
|
let resultIndex = result.length - 1;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/DSTextWrapper.tsx", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["/* eslint-disable react/no-array-index-key */\nimport React from 'react';\nimport { describe } from '@elliemae/ds-utilities';\nimport { convertPropToCssClassName } from '@elliemae/ds-classnames';\nimport { textProps } from './props';\nimport { defaultProps } from './defaultProps';\n\n/**\n * if we don't care about word break\n * const regx = new RegExp(`.{1,${maxCharacters}}`, 'g')\n * text.match(regx)\n *\n * @param {*} param0\n */\nconst DSTextWrapper = ({\n containerProps,\n className,\n style,\n text,\n maxCharacters,\n maxWidth,\n textEllipsis,\n textAlignment,\n wordBreak,\n}) => {\n const { cssClassName, classNameElement } = convertPropToCssClassName(
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;
|
|
4
|
+
"sourcesContent": ["/* eslint-disable react/no-array-index-key */\nimport React from 'react';\nimport { describe } from '@elliemae/ds-utilities';\nimport { convertPropToCssClassName } from '@elliemae/ds-classnames';\nimport { textProps } from './props';\nimport { defaultProps } from './defaultProps';\n\n/**\n * if we don't care about word break\n * const regx = new RegExp(`.{1,${maxCharacters}}`, 'g')\n * text.match(regx)\n *\n * @param {*} param0\n */\nconst DSTextWrapper = ({\n containerProps,\n className,\n style,\n text,\n maxCharacters,\n maxWidth,\n textEllipsis,\n textAlignment,\n wordBreak,\n}) => {\n const { cssClassName, classNameElement } = convertPropToCssClassName('text-wrapperRef', className, {\n textEllipsis,\n textAlignment,\n wordBreak,\n });\n const limitPerCharacter = () =>\n text.split(' ').reduce(\n (result, word) => {\n let resultIndex = result.length - 1;\n if (result[resultIndex].length + word.length > maxCharacters) resultIndex += 1;\n result[resultIndex] = `${result[resultIndex] || ''} ${word}`;\n return result;\n },\n [''],\n );\n\n let displayText = text;\n\n if (textEllipsis) displayText = maxCharacters > 0 ? displayText.substring(0, maxCharacters) : displayText;\n else if (maxCharacters > 0) {\n displayText = limitPerCharacter().map((textpart, index) => (\n <span key={index} className={classNameElement('line')}>\n {textpart}\n </span>\n ));\n }\n\n return (\n <span\n {...containerProps}\n className={cssClassName}\n style={{\n maxWidth: maxCharacters < 1 ? maxWidth : null,\n ...style,\n }}\n >\n {textEllipsis ? <span className={classNameElement('ellipsis-wrapperRef')}>{displayText}</span> : displayText}\n </span>\n );\n};\n\nDSTextWrapper.propTypes = textProps;\nDSTextWrapper.defaultProps = defaultProps;\nDSTextWrapper.displayName = 'DSTextWrapper';\nconst TextWrapperWithSchema = describe(DSTextWrapper);\nTextWrapperWithSchema.propTypes = textProps;\n\nexport { DSTextWrapper, TextWrapperWithSchema };\nexport default DSTextWrapper;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;AD8CjB;AA5CN,0BAAyB;AACzB,2BAA0C;AAC1C,mBAA0B;AAC1B,0BAA6B;AAS7B,MAAM,gBAAgB,CAAC;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MAAM;AACJ,QAAM,EAAE,cAAc,iBAAiB,QAAI,gDAA0B,mBAAmB,WAAW;AAAA,IACjG;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAAC;AACD,QAAM,oBAAoB,MACxB,KAAK,MAAM,GAAG,EAAE;AAAA,IACd,CAAC,QAAQ,SAAS;AAChB,UAAI,cAAc,OAAO,SAAS;AAClC,UAAI,OAAO,aAAa,SAAS,KAAK,SAAS;AAAe,uBAAe;AAC7E,aAAO,eAAe,GAAG,OAAO,gBAAgB,MAAM;AACtD,aAAO;AAAA,IACT;AAAA,IACA,CAAC,EAAE;AAAA,EACL;AAEF,MAAI,cAAc;AAElB,MAAI;AAAc,kBAAc,gBAAgB,IAAI,YAAY,UAAU,GAAG,aAAa,IAAI;AAAA,WACrF,gBAAgB,GAAG;AAC1B,kBAAc,kBAAkB,EAAE,IAAI,CAAC,UAAU,UAC/C,4CAAC;AAAA,MAAiB,WAAW,iBAAiB,MAAM;AAAA,MACjD;AAAA,OADQ,KAEX,CACD;AAAA,EACH;AAEA,SACE,4CAAC;AAAA,IACE,GAAG;AAAA,IACJ,WAAW;AAAA,IACX,OAAO;AAAA,MACL,UAAU,gBAAgB,IAAI,WAAW;AAAA,MACzC,GAAG;AAAA,IACL;AAAA,IAEC,yBAAe,4CAAC;AAAA,MAAK,WAAW,iBAAiB,qBAAqB;AAAA,MAAI;AAAA,KAAY,IAAU;AAAA,GACnG;AAEJ;AAEA,cAAc,YAAY;AAC1B,cAAc,eAAe;AAC7B,cAAc,cAAc;AAC5B,MAAM,4BAAwB,8BAAS,aAAa;AACpD,sBAAsB,YAAY;AAGlC,IAAO,wBAAQ;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/cjs/props.js
CHANGED
|
@@ -30,20 +30,14 @@ module.exports = __toCommonJS(props_exports);
|
|
|
30
30
|
var React = __toESM(require("react"));
|
|
31
31
|
var import_ds_utilities = require("@elliemae/ds-utilities");
|
|
32
32
|
const textProps = {
|
|
33
|
-
containerProps: import_ds_utilities.PropTypes.object.description(
|
|
34
|
-
"Set of Properties attached to the main container"
|
|
35
|
-
),
|
|
33
|
+
containerProps: import_ds_utilities.PropTypes.object.description("Set of Properties attached to the main container"),
|
|
36
34
|
className: import_ds_utilities.PropTypes.string.description("css class"),
|
|
37
35
|
style: import_ds_utilities.PropTypes.object.description("css style"),
|
|
38
36
|
text: import_ds_utilities.PropTypes.string.description("Text to display").isRequired,
|
|
39
|
-
maxCharacters: import_ds_utilities.PropTypes.number.description(
|
|
40
|
-
"Maximum amount of charachters allowed"
|
|
41
|
-
),
|
|
37
|
+
maxCharacters: import_ds_utilities.PropTypes.number.description("Maximum amount of charachters allowed"),
|
|
42
38
|
maxWidth: import_ds_utilities.PropTypes.string.description("Maximum width allowed"),
|
|
43
39
|
textEllipsis: import_ds_utilities.PropTypes.bool.description("Whether to show ellipsis or not"),
|
|
44
|
-
textAlignment: import_ds_utilities.PropTypes.oneOf(["left", "center", "right"]).description(
|
|
45
|
-
"Text alignement"
|
|
46
|
-
),
|
|
40
|
+
textAlignment: import_ds_utilities.PropTypes.oneOf(["left", "center", "right"]).description("Text alignement"),
|
|
47
41
|
wordBreak: import_ds_utilities.PropTypes.bool.description("Whether to break the line or not")
|
|
48
42
|
};
|
|
49
43
|
//# sourceMappingURL=props.js.map
|
package/dist/cjs/props.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/props.tsx", "../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["import { PropTypes } from '@elliemae/ds-utilities';\n\nexport const textProps = {\n containerProps: PropTypes.object.description(
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,0BAA0B;AAEnB,MAAM,YAAY;AAAA,EACvB,gBAAgB,8BAAU,OAAO
|
|
4
|
+
"sourcesContent": ["import { PropTypes } from '@elliemae/ds-utilities';\n\nexport const textProps = {\n containerProps: PropTypes.object.description('Set of Properties attached to the main container'),\n className: PropTypes.string.description('css class'),\n style: PropTypes.object.description('css style'),\n text: PropTypes.string.description('Text to display').isRequired,\n maxCharacters: PropTypes.number.description('Maximum amount of charachters allowed'),\n maxWidth: PropTypes.string.description('Maximum width allowed'),\n textEllipsis: PropTypes.bool.description('Whether to show ellipsis or not'),\n textAlignment: PropTypes.oneOf(['left', 'center', 'right']).description('Text alignement'),\n wordBreak: PropTypes.bool.description('Whether to break the line or not'),\n};\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,0BAA0B;AAEnB,MAAM,YAAY;AAAA,EACvB,gBAAgB,8BAAU,OAAO,YAAY,kDAAkD;AAAA,EAC/F,WAAW,8BAAU,OAAO,YAAY,WAAW;AAAA,EACnD,OAAO,8BAAU,OAAO,YAAY,WAAW;AAAA,EAC/C,MAAM,8BAAU,OAAO,YAAY,iBAAiB,EAAE;AAAA,EACtD,eAAe,8BAAU,OAAO,YAAY,uCAAuC;AAAA,EACnF,UAAU,8BAAU,OAAO,YAAY,uBAAuB;AAAA,EAC9D,cAAc,8BAAU,KAAK,YAAY,iCAAiC;AAAA,EAC1E,eAAe,8BAAU,MAAM,CAAC,QAAQ,UAAU,OAAO,CAAC,EAAE,YAAY,iBAAiB;AAAA,EACzF,WAAW,8BAAU,KAAK,YAAY,kCAAkC;AAC1E;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -15,15 +15,11 @@ const DSTextWrapper = ({
|
|
|
15
15
|
textAlignment,
|
|
16
16
|
wordBreak
|
|
17
17
|
}) => {
|
|
18
|
-
const { cssClassName, classNameElement } = convertPropToCssClassName(
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
textAlignment,
|
|
24
|
-
wordBreak
|
|
25
|
-
}
|
|
26
|
-
);
|
|
18
|
+
const { cssClassName, classNameElement } = convertPropToCssClassName("text-wrapperRef", className, {
|
|
19
|
+
textEllipsis,
|
|
20
|
+
textAlignment,
|
|
21
|
+
wordBreak
|
|
22
|
+
});
|
|
27
23
|
const limitPerCharacter = () => text.split(" ").reduce(
|
|
28
24
|
(result, word) => {
|
|
29
25
|
let resultIndex = result.length - 1;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/DSTextWrapper.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable react/no-array-index-key */\nimport React from 'react';\nimport { describe } from '@elliemae/ds-utilities';\nimport { convertPropToCssClassName } from '@elliemae/ds-classnames';\nimport { textProps } from './props';\nimport { defaultProps } from './defaultProps';\n\n/**\n * if we don't care about word break\n * const regx = new RegExp(`.{1,${maxCharacters}}`, 'g')\n * text.match(regx)\n *\n * @param {*} param0\n */\nconst DSTextWrapper = ({\n containerProps,\n className,\n style,\n text,\n maxCharacters,\n maxWidth,\n textEllipsis,\n textAlignment,\n wordBreak,\n}) => {\n const { cssClassName, classNameElement } = convertPropToCssClassName(
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable react/no-array-index-key */\nimport React from 'react';\nimport { describe } from '@elliemae/ds-utilities';\nimport { convertPropToCssClassName } from '@elliemae/ds-classnames';\nimport { textProps } from './props';\nimport { defaultProps } from './defaultProps';\n\n/**\n * if we don't care about word break\n * const regx = new RegExp(`.{1,${maxCharacters}}`, 'g')\n * text.match(regx)\n *\n * @param {*} param0\n */\nconst DSTextWrapper = ({\n containerProps,\n className,\n style,\n text,\n maxCharacters,\n maxWidth,\n textEllipsis,\n textAlignment,\n wordBreak,\n}) => {\n const { cssClassName, classNameElement } = convertPropToCssClassName('text-wrapperRef', className, {\n textEllipsis,\n textAlignment,\n wordBreak,\n });\n const limitPerCharacter = () =>\n text.split(' ').reduce(\n (result, word) => {\n let resultIndex = result.length - 1;\n if (result[resultIndex].length + word.length > maxCharacters) resultIndex += 1;\n result[resultIndex] = `${result[resultIndex] || ''} ${word}`;\n return result;\n },\n [''],\n );\n\n let displayText = text;\n\n if (textEllipsis) displayText = maxCharacters > 0 ? displayText.substring(0, maxCharacters) : displayText;\n else if (maxCharacters > 0) {\n displayText = limitPerCharacter().map((textpart, index) => (\n <span key={index} className={classNameElement('line')}>\n {textpart}\n </span>\n ));\n }\n\n return (\n <span\n {...containerProps}\n className={cssClassName}\n style={{\n maxWidth: maxCharacters < 1 ? maxWidth : null,\n ...style,\n }}\n >\n {textEllipsis ? <span className={classNameElement('ellipsis-wrapperRef')}>{displayText}</span> : displayText}\n </span>\n );\n};\n\nDSTextWrapper.propTypes = textProps;\nDSTextWrapper.defaultProps = defaultProps;\nDSTextWrapper.displayName = 'DSTextWrapper';\nconst TextWrapperWithSchema = describe(DSTextWrapper);\nTextWrapperWithSchema.propTypes = textProps;\n\nexport { DSTextWrapper, TextWrapperWithSchema };\nexport default DSTextWrapper;\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;AC8CjB;AA5CN,SAAS,gBAAgB;AACzB,SAAS,iCAAiC;AAC1C,SAAS,iBAAiB;AAC1B,SAAS,oBAAoB;AAS7B,MAAM,gBAAgB,CAAC;AAAA,EACrB;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MAAM;AACJ,QAAM,EAAE,cAAc,iBAAiB,IAAI,0BAA0B,mBAAmB,WAAW;AAAA,IACjG;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAAC;AACD,QAAM,oBAAoB,MACxB,KAAK,MAAM,GAAG,EAAE;AAAA,IACd,CAAC,QAAQ,SAAS;AAChB,UAAI,cAAc,OAAO,SAAS;AAClC,UAAI,OAAO,aAAa,SAAS,KAAK,SAAS;AAAe,uBAAe;AAC7E,aAAO,eAAe,GAAG,OAAO,gBAAgB,MAAM;AACtD,aAAO;AAAA,IACT;AAAA,IACA,CAAC,EAAE;AAAA,EACL;AAEF,MAAI,cAAc;AAElB,MAAI;AAAc,kBAAc,gBAAgB,IAAI,YAAY,UAAU,GAAG,aAAa,IAAI;AAAA,WACrF,gBAAgB,GAAG;AAC1B,kBAAc,kBAAkB,EAAE,IAAI,CAAC,UAAU,UAC/C,oBAAC;AAAA,MAAiB,WAAW,iBAAiB,MAAM;AAAA,MACjD;AAAA,OADQ,KAEX,CACD;AAAA,EACH;AAEA,SACE,oBAAC;AAAA,IACE,GAAG;AAAA,IACJ,WAAW;AAAA,IACX,OAAO;AAAA,MACL,UAAU,gBAAgB,IAAI,WAAW;AAAA,MACzC,GAAG;AAAA,IACL;AAAA,IAEC,yBAAe,oBAAC;AAAA,MAAK,WAAW,iBAAiB,qBAAqB;AAAA,MAAI;AAAA,KAAY,IAAU;AAAA,GACnG;AAEJ;AAEA,cAAc,YAAY;AAC1B,cAAc,eAAe;AAC7B,cAAc,cAAc;AAC5B,MAAM,wBAAwB,SAAS,aAAa;AACpD,sBAAsB,YAAY;AAGlC,IAAO,wBAAQ;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/props.js
CHANGED
|
@@ -1,20 +1,14 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { PropTypes } from "@elliemae/ds-utilities";
|
|
3
3
|
const textProps = {
|
|
4
|
-
containerProps: PropTypes.object.description(
|
|
5
|
-
"Set of Properties attached to the main container"
|
|
6
|
-
),
|
|
4
|
+
containerProps: PropTypes.object.description("Set of Properties attached to the main container"),
|
|
7
5
|
className: PropTypes.string.description("css class"),
|
|
8
6
|
style: PropTypes.object.description("css style"),
|
|
9
7
|
text: PropTypes.string.description("Text to display").isRequired,
|
|
10
|
-
maxCharacters: PropTypes.number.description(
|
|
11
|
-
"Maximum amount of charachters allowed"
|
|
12
|
-
),
|
|
8
|
+
maxCharacters: PropTypes.number.description("Maximum amount of charachters allowed"),
|
|
13
9
|
maxWidth: PropTypes.string.description("Maximum width allowed"),
|
|
14
10
|
textEllipsis: PropTypes.bool.description("Whether to show ellipsis or not"),
|
|
15
|
-
textAlignment: PropTypes.oneOf(["left", "center", "right"]).description(
|
|
16
|
-
"Text alignement"
|
|
17
|
-
),
|
|
11
|
+
textAlignment: PropTypes.oneOf(["left", "center", "right"]).description("Text alignement"),
|
|
18
12
|
wordBreak: PropTypes.bool.description("Whether to break the line or not")
|
|
19
13
|
};
|
|
20
14
|
export {
|
package/dist/esm/props.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../scripts/build/transpile/react-shim.js", "../../src/props.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { PropTypes } from '@elliemae/ds-utilities';\n\nexport const textProps = {\n containerProps: PropTypes.object.description(
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,iBAAiB;AAEnB,MAAM,YAAY;AAAA,EACvB,gBAAgB,UAAU,OAAO
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { PropTypes } from '@elliemae/ds-utilities';\n\nexport const textProps = {\n containerProps: PropTypes.object.description('Set of Properties attached to the main container'),\n className: PropTypes.string.description('css class'),\n style: PropTypes.object.description('css style'),\n text: PropTypes.string.description('Text to display').isRequired,\n maxCharacters: PropTypes.number.description('Maximum amount of charachters allowed'),\n maxWidth: PropTypes.string.description('Maximum width allowed'),\n textEllipsis: PropTypes.bool.description('Whether to show ellipsis or not'),\n textAlignment: PropTypes.oneOf(['left', 'center', 'right']).description('Text alignement'),\n wordBreak: PropTypes.bool.description('Whether to break the line or not'),\n};\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,iBAAiB;AAEnB,MAAM,YAAY;AAAA,EACvB,gBAAgB,UAAU,OAAO,YAAY,kDAAkD;AAAA,EAC/F,WAAW,UAAU,OAAO,YAAY,WAAW;AAAA,EACnD,OAAO,UAAU,OAAO,YAAY,WAAW;AAAA,EAC/C,MAAM,UAAU,OAAO,YAAY,iBAAiB,EAAE;AAAA,EACtD,eAAe,UAAU,OAAO,YAAY,uCAAuC;AAAA,EACnF,UAAU,UAAU,OAAO,YAAY,uBAAuB;AAAA,EAC9D,cAAc,UAAU,KAAK,YAAY,iCAAiC;AAAA,EAC1E,eAAe,UAAU,MAAM,CAAC,QAAQ,UAAU,OAAO,CAAC,EAAE,YAAY,iBAAiB;AAAA,EACzF,WAAW,UAAU,KAAK,YAAY,kCAAkC;AAC1E;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-text-wrapper",
|
|
3
|
-
"version": "3.12.0-next.
|
|
3
|
+
"version": "3.12.0-next.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Text Wrapper",
|
|
6
6
|
"files": [
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"indent": 4
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@elliemae/ds-classnames": "3.12.0-next.
|
|
51
|
-
"@elliemae/ds-utilities": "3.12.0-next.
|
|
50
|
+
"@elliemae/ds-classnames": "3.12.0-next.1",
|
|
51
|
+
"@elliemae/ds-utilities": "3.12.0-next.1"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"lodash": "^4.17.21",
|