@elliemae/ds-card 3.32.2-next.1 → 3.33.0-next.0
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/index.js +27 -2
- package/dist/cjs/index.js.map +3 -3
- package/dist/esm/index.js +35 -1
- package/dist/esm/index.js.map +2 -2
- package/dist/types/index.d.ts +7 -1
- package/package.json +7 -3
package/dist/cjs/index.js
CHANGED
|
@@ -5,6 +5,10 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
8
12
|
var __copyProps = (to, from, except, desc) => {
|
|
9
13
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
10
14
|
for (let key of __getOwnPropNames(from))
|
|
@@ -13,7 +17,6 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
13
17
|
}
|
|
14
18
|
return to;
|
|
15
19
|
};
|
|
16
|
-
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
17
20
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
18
21
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
19
22
|
// file that has been converted to a CommonJS file using a Babel-
|
|
@@ -24,7 +27,29 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
24
27
|
));
|
|
25
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
26
29
|
var src_exports = {};
|
|
30
|
+
__export(src_exports, {
|
|
31
|
+
ActionAddon: () => import_ds_card_v2_action_addon.DSCardV2ActionAddon,
|
|
32
|
+
CardGroup: () => import_ds_card_v2_group.DSCardV2Group,
|
|
33
|
+
CustomCard: () => import_ds_card_v2.DSCardV2,
|
|
34
|
+
DSCard: () => import_ds_card_v1.DSCard,
|
|
35
|
+
DSCardActionAddonWithSchema: () => import_ds_card_v2_action_addon.DSCardV2ActionAddonWithSchema,
|
|
36
|
+
DSCardBody: () => import_ds_card_v12.DSCardBody,
|
|
37
|
+
DSCardBodyWithSchema: () => import_ds_card_v12.DSCardBodyWithSchema,
|
|
38
|
+
DSCardCustomWithSchema: () => import_ds_card_v2.DSCardV2WithSchema,
|
|
39
|
+
DSCardDetailWithSchema: () => import_ds_card_v1_detail.DSCardV1DetailWithSchema,
|
|
40
|
+
DSCardGroupWithSchema: () => import_ds_card_v2_group.DSCardV2GroupWithSchema,
|
|
41
|
+
DSCardHeader: () => import_ds_card_v13.DSCardHeader,
|
|
42
|
+
DSCardHeaderWithSchema: () => import_ds_card_v13.DSCardHeaderWithSchema,
|
|
43
|
+
DSCardWithSchema: () => import_ds_card_v1.DSCardWithSchema,
|
|
44
|
+
DetailCard: () => import_ds_card_v1_detail.DSCardV1Detail
|
|
45
|
+
});
|
|
27
46
|
module.exports = __toCommonJS(src_exports);
|
|
28
47
|
var React = __toESM(require("react"));
|
|
29
|
-
|
|
48
|
+
var import_ds_card_v1 = require("@elliemae/ds-card-v1");
|
|
49
|
+
var import_ds_card_v12 = require("@elliemae/ds-card-v1");
|
|
50
|
+
var import_ds_card_v13 = require("@elliemae/ds-card-v1");
|
|
51
|
+
var import_ds_card_v2 = require("@elliemae/ds-card-v2");
|
|
52
|
+
var import_ds_card_v2_action_addon = require("@elliemae/ds-card-v2-action-addon");
|
|
53
|
+
var import_ds_card_v2_group = require("@elliemae/ds-card-v2-group");
|
|
54
|
+
var import_ds_card_v1_detail = require("@elliemae/ds-card-v1-detail");
|
|
30
55
|
//# 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
|
|
5
|
-
"mappings": "
|
|
6
|
-
"names": []
|
|
4
|
+
"sourcesContent": ["export { DSCard, DSCardWithSchema } from '@elliemae/ds-card-v1';\nexport { DSCardBody, DSCardBodyWithSchema } from '@elliemae/ds-card-v1';\nexport { DSCardHeader, DSCardHeaderWithSchema } from '@elliemae/ds-card-v1';\nexport {\n DSCardV2 as CustomCard,\n DSCardV2WithSchema as DSCardCustomWithSchema,\n type DSCardV2T,\n} from '@elliemae/ds-card-v2';\nexport {\n DSCardV2ActionAddon as ActionAddon,\n DSCardV2ActionAddonWithSchema as DSCardActionAddonWithSchema,\n type DSCardV2ActionAddonT,\n} from '@elliemae/ds-card-v2-action-addon';\nexport {\n DSCardV2Group as CardGroup,\n DSCardV2GroupWithSchema as DSCardGroupWithSchema,\n type DSCardV2GroupT,\n} from '@elliemae/ds-card-v2-group';\nexport {\n DSCardV1Detail as DetailCard,\n DSCardV1DetailWithSchema as DSCardDetailWithSchema,\n type DSCardV1DetailT,\n} from '@elliemae/ds-card-v1-detail';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,wBAAyC;AACzC,IAAAA,qBAAiD;AACjD,IAAAA,qBAAqD;AACrD,wBAIO;AACP,qCAIO;AACP,8BAIO;AACP,+BAIO;",
|
|
6
|
+
"names": ["import_ds_card_v1"]
|
|
7
7
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
|
|
2
|
+
import { DSCard, DSCardWithSchema } from "@elliemae/ds-card-v1";
|
|
3
|
+
import { DSCardBody, DSCardBodyWithSchema } from "@elliemae/ds-card-v1";
|
|
4
|
+
import { DSCardHeader, DSCardHeaderWithSchema } from "@elliemae/ds-card-v1";
|
|
5
|
+
import {
|
|
6
|
+
DSCardV2,
|
|
7
|
+
DSCardV2WithSchema
|
|
8
|
+
} from "@elliemae/ds-card-v2";
|
|
9
|
+
import {
|
|
10
|
+
DSCardV2ActionAddon,
|
|
11
|
+
DSCardV2ActionAddonWithSchema
|
|
12
|
+
} from "@elliemae/ds-card-v2-action-addon";
|
|
13
|
+
import {
|
|
14
|
+
DSCardV2Group,
|
|
15
|
+
DSCardV2GroupWithSchema
|
|
16
|
+
} from "@elliemae/ds-card-v2-group";
|
|
17
|
+
import {
|
|
18
|
+
DSCardV1Detail,
|
|
19
|
+
DSCardV1DetailWithSchema
|
|
20
|
+
} from "@elliemae/ds-card-v1-detail";
|
|
21
|
+
export {
|
|
22
|
+
DSCardV2ActionAddon as ActionAddon,
|
|
23
|
+
DSCardV2Group as CardGroup,
|
|
24
|
+
DSCardV2 as CustomCard,
|
|
25
|
+
DSCard,
|
|
26
|
+
DSCardV2ActionAddonWithSchema as DSCardActionAddonWithSchema,
|
|
27
|
+
DSCardBody,
|
|
28
|
+
DSCardBodyWithSchema,
|
|
29
|
+
DSCardV2WithSchema as DSCardCustomWithSchema,
|
|
30
|
+
DSCardV1DetailWithSchema as DSCardDetailWithSchema,
|
|
31
|
+
DSCardV2GroupWithSchema as DSCardGroupWithSchema,
|
|
32
|
+
DSCardHeader,
|
|
33
|
+
DSCardHeaderWithSchema,
|
|
34
|
+
DSCardWithSchema,
|
|
35
|
+
DSCardV1Detail as DetailCard
|
|
36
|
+
};
|
|
3
37
|
//# sourceMappingURL=index.js.map
|
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
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACAvB,cAAc;",
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export { DSCard, DSCardWithSchema } from '@elliemae/ds-card-v1';\nexport { DSCardBody, DSCardBodyWithSchema } from '@elliemae/ds-card-v1';\nexport { DSCardHeader, DSCardHeaderWithSchema } from '@elliemae/ds-card-v1';\nexport {\n DSCardV2 as CustomCard,\n DSCardV2WithSchema as DSCardCustomWithSchema,\n type DSCardV2T,\n} from '@elliemae/ds-card-v2';\nexport {\n DSCardV2ActionAddon as ActionAddon,\n DSCardV2ActionAddonWithSchema as DSCardActionAddonWithSchema,\n type DSCardV2ActionAddonT,\n} from '@elliemae/ds-card-v2-action-addon';\nexport {\n DSCardV2Group as CardGroup,\n DSCardV2GroupWithSchema as DSCardGroupWithSchema,\n type DSCardV2GroupT,\n} from '@elliemae/ds-card-v2-group';\nexport {\n DSCardV1Detail as DetailCard,\n DSCardV1DetailWithSchema as DSCardDetailWithSchema,\n type DSCardV1DetailT,\n} from '@elliemae/ds-card-v1-detail';\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,QAAQ,wBAAwB;AACzC,SAAS,YAAY,4BAA4B;AACjD,SAAS,cAAc,8BAA8B;AACrD;AAAA,EACc;AAAA,EACU;AAAA,OAEjB;AACP;AAAA,EACyB;AAAA,EACU;AAAA,OAE5B;AACP;AAAA,EACmB;AAAA,EACU;AAAA,OAEtB;AACP;AAAA,EACoB;AAAA,EACU;AAAA,OAEvB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { DSCard, DSCardWithSchema } from '@elliemae/ds-card-v1';
|
|
2
|
+
export { DSCardBody, DSCardBodyWithSchema } from '@elliemae/ds-card-v1';
|
|
3
|
+
export { DSCardHeader, DSCardHeaderWithSchema } from '@elliemae/ds-card-v1';
|
|
4
|
+
export { DSCardV2 as CustomCard, DSCardV2WithSchema as DSCardCustomWithSchema, type DSCardV2T, } from '@elliemae/ds-card-v2';
|
|
5
|
+
export { DSCardV2ActionAddon as ActionAddon, DSCardV2ActionAddonWithSchema as DSCardActionAddonWithSchema, type DSCardV2ActionAddonT, } from '@elliemae/ds-card-v2-action-addon';
|
|
6
|
+
export { DSCardV2Group as CardGroup, DSCardV2GroupWithSchema as DSCardGroupWithSchema, type DSCardV2GroupT, } from '@elliemae/ds-card-v2-group';
|
|
7
|
+
export { DSCardV1Detail as DetailCard, DSCardV1DetailWithSchema as DSCardDetailWithSchema, type DSCardV1DetailT, } from '@elliemae/ds-card-v1-detail';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-card",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.33.0-next.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Card",
|
|
6
6
|
"files": [
|
|
@@ -35,11 +35,15 @@
|
|
|
35
35
|
"indent": 4
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@elliemae/ds-
|
|
38
|
+
"@elliemae/ds-card-v1": "3.33.0-next.0",
|
|
39
|
+
"@elliemae/ds-card-v2-group": "3.33.0-next.0",
|
|
40
|
+
"@elliemae/ds-card-v2-action-addon": "3.33.0-next.0",
|
|
41
|
+
"@elliemae/ds-card-v1-detail": "3.33.0-next.0",
|
|
42
|
+
"@elliemae/ds-card-v2": "3.33.0-next.0"
|
|
39
43
|
},
|
|
40
44
|
"devDependencies": {
|
|
41
45
|
"@elliemae/pui-cli": "~9.0.0-next.31",
|
|
42
|
-
"@elliemae/ds-monorepo-devops": "3.
|
|
46
|
+
"@elliemae/ds-monorepo-devops": "3.33.0-next.0"
|
|
43
47
|
},
|
|
44
48
|
"peerDependencies": {
|
|
45
49
|
"react": "^17.0.2",
|