@elliemae/ds-read-more 3.33.0-next.3 → 3.33.0-next.5
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/typescript-testing/typescript-read-more-valid.js +124 -0
- package/dist/cjs/typescript-testing/typescript-read-more-valid.js.map +7 -0
- package/dist/esm/typescript-testing/typescript-read-more-valid.js +101 -0
- package/dist/esm/typescript-testing/typescript-read-more-valid.js.map +7 -0
- package/dist/types/typescript-testing/typescript-read-more-valid.d.ts +1 -0
- package/package.json +8 -8
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __copyProps = (to, from, except, desc) => {
|
|
9
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
|
+
for (let key of __getOwnPropNames(from))
|
|
11
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
12
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
}
|
|
14
|
+
return to;
|
|
15
|
+
};
|
|
16
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
17
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
18
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
19
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
20
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
|
+
mod
|
|
23
|
+
));
|
|
24
|
+
var React = __toESM(require("react"));
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var import__ = require("../index.js");
|
|
27
|
+
const testRequiredProps = {
|
|
28
|
+
content: ""
|
|
29
|
+
};
|
|
30
|
+
const testOptionalProps = {};
|
|
31
|
+
const testPartialDefaults = {
|
|
32
|
+
lines: 2,
|
|
33
|
+
ellipsis: "...",
|
|
34
|
+
onMore: () => {
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
const testProps = {
|
|
38
|
+
...testRequiredProps,
|
|
39
|
+
...testOptionalProps,
|
|
40
|
+
...testPartialDefaults
|
|
41
|
+
};
|
|
42
|
+
const testPropsAsSyntax = {
|
|
43
|
+
...testRequiredProps,
|
|
44
|
+
...testOptionalProps,
|
|
45
|
+
...testPartialDefaults
|
|
46
|
+
};
|
|
47
|
+
const testCompleteDefaults = {
|
|
48
|
+
lines: 2,
|
|
49
|
+
more: "more",
|
|
50
|
+
less: "less",
|
|
51
|
+
onMore: () => {
|
|
52
|
+
},
|
|
53
|
+
onLess: () => {
|
|
54
|
+
},
|
|
55
|
+
ellipsis: "...",
|
|
56
|
+
withTooltip: false
|
|
57
|
+
};
|
|
58
|
+
const testInternalProps = {
|
|
59
|
+
...testRequiredProps,
|
|
60
|
+
...testOptionalProps,
|
|
61
|
+
...testCompleteDefaults
|
|
62
|
+
};
|
|
63
|
+
const testInternalPropsAsSyntax = {
|
|
64
|
+
...testRequiredProps,
|
|
65
|
+
...testOptionalProps,
|
|
66
|
+
...testCompleteDefaults
|
|
67
|
+
};
|
|
68
|
+
const testExplicitDefinition = {
|
|
69
|
+
lines: 2,
|
|
70
|
+
more: "more",
|
|
71
|
+
less: "less",
|
|
72
|
+
onMore: () => {
|
|
73
|
+
},
|
|
74
|
+
onLess: () => {
|
|
75
|
+
},
|
|
76
|
+
ellipsis: "...",
|
|
77
|
+
withTooltip: false,
|
|
78
|
+
content: ""
|
|
79
|
+
};
|
|
80
|
+
const testInferedTypeCompatibility = {
|
|
81
|
+
lines: 2,
|
|
82
|
+
more: "more",
|
|
83
|
+
less: "less",
|
|
84
|
+
onMore: () => {
|
|
85
|
+
},
|
|
86
|
+
onLess: () => {
|
|
87
|
+
},
|
|
88
|
+
ellipsis: "...",
|
|
89
|
+
withTooltip: false,
|
|
90
|
+
content: ""
|
|
91
|
+
};
|
|
92
|
+
const testDefinitionAsConst = {
|
|
93
|
+
lines: 2,
|
|
94
|
+
more: "more",
|
|
95
|
+
less: "less",
|
|
96
|
+
onMore: () => {
|
|
97
|
+
},
|
|
98
|
+
onLess: () => {
|
|
99
|
+
},
|
|
100
|
+
ellipsis: "...",
|
|
101
|
+
withTooltip: false,
|
|
102
|
+
content: ""
|
|
103
|
+
};
|
|
104
|
+
const ExampleUsageComponent = () => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_jsx_runtime.Fragment, { children: [
|
|
105
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.DSReadMore, { ...testExplicitDefinition }),
|
|
106
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.DSReadMore, { ...testInferedTypeCompatibility }),
|
|
107
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import__.DSReadMore, { ...testDefinitionAsConst }),
|
|
108
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
109
|
+
import__.DSReadMore,
|
|
110
|
+
{
|
|
111
|
+
lines: 2,
|
|
112
|
+
more: "more",
|
|
113
|
+
less: "less",
|
|
114
|
+
onMore: () => {
|
|
115
|
+
},
|
|
116
|
+
onLess: () => {
|
|
117
|
+
},
|
|
118
|
+
ellipsis: "...",
|
|
119
|
+
withTooltip: false,
|
|
120
|
+
content: ""
|
|
121
|
+
}
|
|
122
|
+
)
|
|
123
|
+
] });
|
|
124
|
+
//# sourceMappingURL=typescript-read-more-valid.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../src/typescript-testing/typescript-read-more-valid.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable @typescript-eslint/no-unused-vars, no-unused-vars */\nimport { DSReadMore } from '../index.js';\nimport type { DSReadMoreT } from '../index.js';\n\n// test we expose the namespace and the namespace follows our deliverable conventions\ntype ComponentPropsForApp = DSReadMoreT.Props;\ntype ComponentPropsInternals = DSReadMoreT.InternalProps;\ntype ComponentPropsDefaultProps = DSReadMoreT.DefaultProps;\ntype ComponentPropsOptionalProps = DSReadMoreT.OptionalProps;\ntype ComponentPropsRequiredProps = DSReadMoreT.RequiredProps;\n\nconst testRequiredProps: ComponentPropsRequiredProps = {\n content: '',\n};\n\nconst testOptionalProps: ComponentPropsOptionalProps = {};\n\n// difference Props and InternalProps is that InternalProps has all the default props filled in\n// Props allows for partial defaults\nconst testPartialDefaults: Partial<ComponentPropsDefaultProps> = {\n lines: 2,\n ellipsis: '...',\n onMore: () => {},\n};\n\nconst testProps: ComponentPropsForApp = {\n ...testRequiredProps,\n ...testOptionalProps,\n ...testPartialDefaults,\n};\n\nconst testPropsAsSyntax = {\n ...testRequiredProps,\n ...testOptionalProps,\n ...testPartialDefaults,\n} as ComponentPropsForApp;\n\n// InternalProps requires all defaults to be filled in\nconst testCompleteDefaults: Required<ComponentPropsDefaultProps> = {\n lines: 2,\n more: 'more',\n less: 'less',\n onMore: () => {},\n onLess: () => {},\n ellipsis: '...',\n withTooltip: false,\n};\n\nconst testInternalProps: ComponentPropsInternals = {\n ...testRequiredProps,\n ...testOptionalProps,\n ...testCompleteDefaults,\n};\n\nconst testInternalPropsAsSyntax = {\n ...testRequiredProps,\n ...testOptionalProps,\n ...testCompleteDefaults,\n} as ComponentPropsInternals;\n\n// using the explicit type definition, if there is an error, it will be marked on the key that is wrong\nconst testExplicitDefinition: ComponentPropsForApp = {\n lines: 2,\n more: 'more',\n less: 'less',\n onMore: () => {},\n onLess: () => {},\n ellipsis: '...',\n withTooltip: false,\n content: '',\n};\n\n// using the \"as\" syntax, if there is an error, it will be marking the whole object as wrong because it is not compatible with the type\nconst testInferedTypeCompatibility = {\n lines: 2,\n more: 'more',\n less: 'less',\n onMore: () => {},\n onLess: () => {},\n ellipsis: '...',\n withTooltip: false,\n content: '',\n} as ComponentPropsForApp;\n\nconst testDefinitionAsConst = {\n lines: 2,\n more: 'more',\n less: 'less',\n onMore: () => {},\n onLess: () => {},\n ellipsis: '...',\n withTooltip: false,\n content: '',\n} as const;\n\nconst ExampleUsageComponent = () => (\n <>\n {/* works with explicitly casted props, all syntaxes */}\n <DSReadMore {...testExplicitDefinition} />\n <DSReadMore {...testInferedTypeCompatibility} />\n <DSReadMore {...testDefinitionAsConst} />\n {/* works with inline values */}\n <DSReadMore\n lines={2}\n more=\"more\"\n less=\"less\"\n onMore={() => {}}\n onLess={() => {}}\n ellipsis=\"...\"\n withTooltip={false}\n content=\"\"\n />\n </>\n);\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA,YAAuB;ACgGrB;AA/FF,eAA2B;AAU3B,MAAM,oBAAiD;AAAA,EACrD,SAAS;AACX;AAEA,MAAM,oBAAiD,CAAC;AAIxD,MAAM,sBAA2D;AAAA,EAC/D,OAAO;AAAA,EACP,UAAU;AAAA,EACV,QAAQ,MAAM;AAAA,EAAC;AACjB;AAEA,MAAM,YAAkC;AAAA,EACtC,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAEA,MAAM,oBAAoB;AAAA,EACxB,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAGA,MAAM,uBAA6D;AAAA,EACjE,OAAO;AAAA,EACP,MAAM;AAAA,EACN,MAAM;AAAA,EACN,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,UAAU;AAAA,EACV,aAAa;AACf;AAEA,MAAM,oBAA6C;AAAA,EACjD,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAEA,MAAM,4BAA4B;AAAA,EAChC,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAGA,MAAM,yBAA+C;AAAA,EACnD,OAAO;AAAA,EACP,MAAM;AAAA,EACN,MAAM;AAAA,EACN,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,UAAU;AAAA,EACV,aAAa;AAAA,EACb,SAAS;AACX;AAGA,MAAM,+BAA+B;AAAA,EACnC,OAAO;AAAA,EACP,MAAM;AAAA,EACN,MAAM;AAAA,EACN,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,UAAU;AAAA,EACV,aAAa;AAAA,EACb,SAAS;AACX;AAEA,MAAM,wBAAwB;AAAA,EAC5B,OAAO;AAAA,EACP,MAAM;AAAA,EACN,MAAM;AAAA,EACN,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,UAAU;AAAA,EACV,aAAa;AAAA,EACb,SAAS;AACX;AAEA,MAAM,wBAAwB,MAC5B,4EAEE;AAAA,8CAAC,uBAAY,GAAG,wBAAwB;AAAA,EACxC,4CAAC,uBAAY,GAAG,8BAA8B;AAAA,EAC9C,4CAAC,uBAAY,GAAG,uBAAuB;AAAA,EAEvC;AAAA,IAAC;AAAA;AAAA,MACC,OAAO;AAAA,MACP,MAAK;AAAA,MACL,MAAK;AAAA,MACL,QAAQ,MAAM;AAAA,MAAC;AAAA,MACf,QAAQ,MAAM;AAAA,MAAC;AAAA,MACf,UAAS;AAAA,MACT,aAAa;AAAA,MACb,SAAQ;AAAA;AAAA,EACV;AAAA,GACF;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { DSReadMore } from "../index.js";
|
|
4
|
+
const testRequiredProps = {
|
|
5
|
+
content: ""
|
|
6
|
+
};
|
|
7
|
+
const testOptionalProps = {};
|
|
8
|
+
const testPartialDefaults = {
|
|
9
|
+
lines: 2,
|
|
10
|
+
ellipsis: "...",
|
|
11
|
+
onMore: () => {
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
const testProps = {
|
|
15
|
+
...testRequiredProps,
|
|
16
|
+
...testOptionalProps,
|
|
17
|
+
...testPartialDefaults
|
|
18
|
+
};
|
|
19
|
+
const testPropsAsSyntax = {
|
|
20
|
+
...testRequiredProps,
|
|
21
|
+
...testOptionalProps,
|
|
22
|
+
...testPartialDefaults
|
|
23
|
+
};
|
|
24
|
+
const testCompleteDefaults = {
|
|
25
|
+
lines: 2,
|
|
26
|
+
more: "more",
|
|
27
|
+
less: "less",
|
|
28
|
+
onMore: () => {
|
|
29
|
+
},
|
|
30
|
+
onLess: () => {
|
|
31
|
+
},
|
|
32
|
+
ellipsis: "...",
|
|
33
|
+
withTooltip: false
|
|
34
|
+
};
|
|
35
|
+
const testInternalProps = {
|
|
36
|
+
...testRequiredProps,
|
|
37
|
+
...testOptionalProps,
|
|
38
|
+
...testCompleteDefaults
|
|
39
|
+
};
|
|
40
|
+
const testInternalPropsAsSyntax = {
|
|
41
|
+
...testRequiredProps,
|
|
42
|
+
...testOptionalProps,
|
|
43
|
+
...testCompleteDefaults
|
|
44
|
+
};
|
|
45
|
+
const testExplicitDefinition = {
|
|
46
|
+
lines: 2,
|
|
47
|
+
more: "more",
|
|
48
|
+
less: "less",
|
|
49
|
+
onMore: () => {
|
|
50
|
+
},
|
|
51
|
+
onLess: () => {
|
|
52
|
+
},
|
|
53
|
+
ellipsis: "...",
|
|
54
|
+
withTooltip: false,
|
|
55
|
+
content: ""
|
|
56
|
+
};
|
|
57
|
+
const testInferedTypeCompatibility = {
|
|
58
|
+
lines: 2,
|
|
59
|
+
more: "more",
|
|
60
|
+
less: "less",
|
|
61
|
+
onMore: () => {
|
|
62
|
+
},
|
|
63
|
+
onLess: () => {
|
|
64
|
+
},
|
|
65
|
+
ellipsis: "...",
|
|
66
|
+
withTooltip: false,
|
|
67
|
+
content: ""
|
|
68
|
+
};
|
|
69
|
+
const testDefinitionAsConst = {
|
|
70
|
+
lines: 2,
|
|
71
|
+
more: "more",
|
|
72
|
+
less: "less",
|
|
73
|
+
onMore: () => {
|
|
74
|
+
},
|
|
75
|
+
onLess: () => {
|
|
76
|
+
},
|
|
77
|
+
ellipsis: "...",
|
|
78
|
+
withTooltip: false,
|
|
79
|
+
content: ""
|
|
80
|
+
};
|
|
81
|
+
const ExampleUsageComponent = () => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
82
|
+
/* @__PURE__ */ jsx(DSReadMore, { ...testExplicitDefinition }),
|
|
83
|
+
/* @__PURE__ */ jsx(DSReadMore, { ...testInferedTypeCompatibility }),
|
|
84
|
+
/* @__PURE__ */ jsx(DSReadMore, { ...testDefinitionAsConst }),
|
|
85
|
+
/* @__PURE__ */ jsx(
|
|
86
|
+
DSReadMore,
|
|
87
|
+
{
|
|
88
|
+
lines: 2,
|
|
89
|
+
more: "more",
|
|
90
|
+
less: "less",
|
|
91
|
+
onMore: () => {
|
|
92
|
+
},
|
|
93
|
+
onLess: () => {
|
|
94
|
+
},
|
|
95
|
+
ellipsis: "...",
|
|
96
|
+
withTooltip: false,
|
|
97
|
+
content: ""
|
|
98
|
+
}
|
|
99
|
+
)
|
|
100
|
+
] });
|
|
101
|
+
//# sourceMappingURL=typescript-read-more-valid.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../src/typescript-testing/typescript-read-more-valid.tsx"],
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable @typescript-eslint/no-unused-vars, no-unused-vars */\nimport { DSReadMore } from '../index.js';\nimport type { DSReadMoreT } from '../index.js';\n\n// test we expose the namespace and the namespace follows our deliverable conventions\ntype ComponentPropsForApp = DSReadMoreT.Props;\ntype ComponentPropsInternals = DSReadMoreT.InternalProps;\ntype ComponentPropsDefaultProps = DSReadMoreT.DefaultProps;\ntype ComponentPropsOptionalProps = DSReadMoreT.OptionalProps;\ntype ComponentPropsRequiredProps = DSReadMoreT.RequiredProps;\n\nconst testRequiredProps: ComponentPropsRequiredProps = {\n content: '',\n};\n\nconst testOptionalProps: ComponentPropsOptionalProps = {};\n\n// difference Props and InternalProps is that InternalProps has all the default props filled in\n// Props allows for partial defaults\nconst testPartialDefaults: Partial<ComponentPropsDefaultProps> = {\n lines: 2,\n ellipsis: '...',\n onMore: () => {},\n};\n\nconst testProps: ComponentPropsForApp = {\n ...testRequiredProps,\n ...testOptionalProps,\n ...testPartialDefaults,\n};\n\nconst testPropsAsSyntax = {\n ...testRequiredProps,\n ...testOptionalProps,\n ...testPartialDefaults,\n} as ComponentPropsForApp;\n\n// InternalProps requires all defaults to be filled in\nconst testCompleteDefaults: Required<ComponentPropsDefaultProps> = {\n lines: 2,\n more: 'more',\n less: 'less',\n onMore: () => {},\n onLess: () => {},\n ellipsis: '...',\n withTooltip: false,\n};\n\nconst testInternalProps: ComponentPropsInternals = {\n ...testRequiredProps,\n ...testOptionalProps,\n ...testCompleteDefaults,\n};\n\nconst testInternalPropsAsSyntax = {\n ...testRequiredProps,\n ...testOptionalProps,\n ...testCompleteDefaults,\n} as ComponentPropsInternals;\n\n// using the explicit type definition, if there is an error, it will be marked on the key that is wrong\nconst testExplicitDefinition: ComponentPropsForApp = {\n lines: 2,\n more: 'more',\n less: 'less',\n onMore: () => {},\n onLess: () => {},\n ellipsis: '...',\n withTooltip: false,\n content: '',\n};\n\n// using the \"as\" syntax, if there is an error, it will be marking the whole object as wrong because it is not compatible with the type\nconst testInferedTypeCompatibility = {\n lines: 2,\n more: 'more',\n less: 'less',\n onMore: () => {},\n onLess: () => {},\n ellipsis: '...',\n withTooltip: false,\n content: '',\n} as ComponentPropsForApp;\n\nconst testDefinitionAsConst = {\n lines: 2,\n more: 'more',\n less: 'less',\n onMore: () => {},\n onLess: () => {},\n ellipsis: '...',\n withTooltip: false,\n content: '',\n} as const;\n\nconst ExampleUsageComponent = () => (\n <>\n {/* works with explicitly casted props, all syntaxes */}\n <DSReadMore {...testExplicitDefinition} />\n <DSReadMore {...testInferedTypeCompatibility} />\n <DSReadMore {...testDefinitionAsConst} />\n {/* works with inline values */}\n <DSReadMore\n lines={2}\n more=\"more\"\n less=\"less\"\n onMore={() => {}}\n onLess={() => {}}\n ellipsis=\"...\"\n withTooltip={false}\n content=\"\"\n />\n </>\n);\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACgGrB,mBAEE,KAFF;AA/FF,SAAS,kBAAkB;AAU3B,MAAM,oBAAiD;AAAA,EACrD,SAAS;AACX;AAEA,MAAM,oBAAiD,CAAC;AAIxD,MAAM,sBAA2D;AAAA,EAC/D,OAAO;AAAA,EACP,UAAU;AAAA,EACV,QAAQ,MAAM;AAAA,EAAC;AACjB;AAEA,MAAM,YAAkC;AAAA,EACtC,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAEA,MAAM,oBAAoB;AAAA,EACxB,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAGA,MAAM,uBAA6D;AAAA,EACjE,OAAO;AAAA,EACP,MAAM;AAAA,EACN,MAAM;AAAA,EACN,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,UAAU;AAAA,EACV,aAAa;AACf;AAEA,MAAM,oBAA6C;AAAA,EACjD,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAEA,MAAM,4BAA4B;AAAA,EAChC,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACL;AAGA,MAAM,yBAA+C;AAAA,EACnD,OAAO;AAAA,EACP,MAAM;AAAA,EACN,MAAM;AAAA,EACN,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,UAAU;AAAA,EACV,aAAa;AAAA,EACb,SAAS;AACX;AAGA,MAAM,+BAA+B;AAAA,EACnC,OAAO;AAAA,EACP,MAAM;AAAA,EACN,MAAM;AAAA,EACN,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,UAAU;AAAA,EACV,aAAa;AAAA,EACb,SAAS;AACX;AAEA,MAAM,wBAAwB;AAAA,EAC5B,OAAO;AAAA,EACP,MAAM;AAAA,EACN,MAAM;AAAA,EACN,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,QAAQ,MAAM;AAAA,EAAC;AAAA,EACf,UAAU;AAAA,EACV,aAAa;AAAA,EACb,SAAS;AACX;AAEA,MAAM,wBAAwB,MAC5B,iCAEE;AAAA,sBAAC,cAAY,GAAG,wBAAwB;AAAA,EACxC,oBAAC,cAAY,GAAG,8BAA8B;AAAA,EAC9C,oBAAC,cAAY,GAAG,uBAAuB;AAAA,EAEvC;AAAA,IAAC;AAAA;AAAA,MACC,OAAO;AAAA,MACP,MAAK;AAAA,MACL,MAAK;AAAA,MACL,QAAQ,MAAM;AAAA,MAAC;AAAA,MACf,QAAQ,MAAM;AAAA,MAAC;AAAA,MACf,UAAS;AAAA,MACT,aAAa;AAAA,MACb,SAAQ;AAAA;AAAA,EACV;AAAA,GACF;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-read-more",
|
|
3
|
-
"version": "3.33.0-next.
|
|
3
|
+
"version": "3.33.0-next.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Read More",
|
|
6
6
|
"files": [
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
"indent": 4
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@elliemae/ds-button-v2": "3.33.0-next.
|
|
47
|
-
"@elliemae/ds-
|
|
48
|
-
"@elliemae/ds-
|
|
49
|
-
"@elliemae/ds-
|
|
50
|
-
"@elliemae/ds-
|
|
46
|
+
"@elliemae/ds-button-v2": "3.33.0-next.5",
|
|
47
|
+
"@elliemae/ds-utilities": "3.33.0-next.5",
|
|
48
|
+
"@elliemae/ds-props-helpers": "3.33.0-next.5",
|
|
49
|
+
"@elliemae/ds-system": "3.33.0-next.5",
|
|
50
|
+
"@elliemae/ds-tooltip": "3.33.0-next.5"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@elliemae/pui-cli": "~9.0.0-next.31",
|
|
54
54
|
"styled-components": "~5.3.9",
|
|
55
|
-
"@elliemae/ds-monorepo-devops": "3.33.0-next.
|
|
55
|
+
"@elliemae/ds-monorepo-devops": "3.33.0-next.5"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"lodash": "~4.17.5",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
},
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public",
|
|
65
|
-
"typeSafety":
|
|
65
|
+
"typeSafety": true
|
|
66
66
|
},
|
|
67
67
|
"scripts": {
|
|
68
68
|
"dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
|