@elliemae/ds-modal-slide 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.
|
@@ -39,52 +39,24 @@ module.exports = __toCommonJS(blocks_exports);
|
|
|
39
39
|
var React = __toESM(require("react"));
|
|
40
40
|
var import_ds_classnames = require("@elliemae/ds-classnames");
|
|
41
41
|
const blockName = "modal-slide";
|
|
42
|
-
const Wrapper = (0, import_ds_classnames.aggregatedClasses)("div")(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
);
|
|
51
|
-
const
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
showing: show,
|
|
56
|
-
disappearing: !show
|
|
57
|
-
})
|
|
58
|
-
);
|
|
59
|
-
const Content = (0, import_ds_classnames.aggregatedClasses)("div")(
|
|
60
|
-
blockName,
|
|
61
|
-
"content",
|
|
62
|
-
({ show }) => ({
|
|
63
|
-
showing: show,
|
|
64
|
-
disappearing: !show
|
|
65
|
-
})
|
|
66
|
-
);
|
|
42
|
+
const Wrapper = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "wrapper", ({ show, centered }) => ({
|
|
43
|
+
showing: show,
|
|
44
|
+
disappearing: !show,
|
|
45
|
+
centered
|
|
46
|
+
}));
|
|
47
|
+
const Overlay = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "overlay", ({ show }) => ({
|
|
48
|
+
showing: show,
|
|
49
|
+
disappearing: !show
|
|
50
|
+
}));
|
|
51
|
+
const Content = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "content", ({ show }) => ({
|
|
52
|
+
showing: show,
|
|
53
|
+
disappearing: !show
|
|
54
|
+
}));
|
|
67
55
|
const Title = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "title", () => ({}));
|
|
68
|
-
const BreadcrumTitle = (0, import_ds_classnames.aggregatedClasses)("div")(
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
() => ({})
|
|
72
|
-
);
|
|
73
|
-
const HeaderLeftSide = (0, import_ds_classnames.aggregatedClasses)("div")(
|
|
74
|
-
blockName,
|
|
75
|
-
"header-left-side",
|
|
76
|
-
() => ({})
|
|
77
|
-
);
|
|
78
|
-
const ActualContent = (0, import_ds_classnames.aggregatedClasses)("div")(
|
|
79
|
-
blockName,
|
|
80
|
-
"actual-content",
|
|
81
|
-
() => ({})
|
|
82
|
-
);
|
|
56
|
+
const BreadcrumTitle = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "breadcrum-title", () => ({}));
|
|
57
|
+
const HeaderLeftSide = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "header-left-side", () => ({}));
|
|
58
|
+
const ActualContent = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "actual-content", () => ({}));
|
|
83
59
|
const Header = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "header", () => ({}));
|
|
84
60
|
const Footer = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "footer", () => ({}));
|
|
85
|
-
const FooterWrapper = (0, import_ds_classnames.aggregatedClasses)("div")(
|
|
86
|
-
blockName,
|
|
87
|
-
"footer-wrapper",
|
|
88
|
-
() => ({})
|
|
89
|
-
);
|
|
61
|
+
const FooterWrapper = (0, import_ds_classnames.aggregatedClasses)("div")(blockName, "footer-wrapper", () => ({}));
|
|
90
62
|
//# sourceMappingURL=blocks.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/components/blocks.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["import { aggregatedClasses } from '@elliemae/ds-classnames';\n\nconst blockName = 'modal-slide';\n\nexport const Wrapper = aggregatedClasses('div')(
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,2BAAkC;AAElC,MAAM,YAAY;AAEX,MAAM,cAAU,wCAAkB,KAAK
|
|
4
|
+
"sourcesContent": ["import { aggregatedClasses } from '@elliemae/ds-classnames';\n\nconst blockName = 'modal-slide';\n\nexport const Wrapper = aggregatedClasses('div')(blockName, 'wrapper', ({ show, centered }) => ({\n showing: show,\n disappearing: !show,\n centered,\n}));\n\nexport const Overlay = aggregatedClasses('div')(blockName, 'overlay', ({ show }) => ({\n showing: show,\n disappearing: !show,\n}));\n\nexport const Content = aggregatedClasses('div')(blockName, 'content', ({ show }) => ({\n showing: show,\n disappearing: !show,\n}));\n\nexport const Title = aggregatedClasses('div')(blockName, 'title', () => ({}));\n\nexport const BreadcrumTitle = aggregatedClasses('div')(blockName, 'breadcrum-title', () => ({}));\n\nexport const HeaderLeftSide = aggregatedClasses('div')(blockName, 'header-left-side', () => ({}));\n\nexport const ActualContent = aggregatedClasses('div')(blockName, 'actual-content', () => ({}));\nexport const Header = aggregatedClasses('div')(blockName, 'header', () => ({}));\nexport const Footer = aggregatedClasses('div')(blockName, 'footer', () => ({}));\n\nexport const FooterWrapper = aggregatedClasses('div')(blockName, 'footer-wrapper', () => ({}));\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;ACAA,YAAuB;ADAvB,2BAAkC;AAElC,MAAM,YAAY;AAEX,MAAM,cAAU,wCAAkB,KAAK,EAAE,WAAW,WAAW,CAAC,EAAE,MAAM,SAAS,OAAO;AAAA,EAC7F,SAAS;AAAA,EACT,cAAc,CAAC;AAAA,EACf;AACF,EAAE;AAEK,MAAM,cAAU,wCAAkB,KAAK,EAAE,WAAW,WAAW,CAAC,EAAE,KAAK,OAAO;AAAA,EACnF,SAAS;AAAA,EACT,cAAc,CAAC;AACjB,EAAE;AAEK,MAAM,cAAU,wCAAkB,KAAK,EAAE,WAAW,WAAW,CAAC,EAAE,KAAK,OAAO;AAAA,EACnF,SAAS;AAAA,EACT,cAAc,CAAC;AACjB,EAAE;AAEK,MAAM,YAAQ,wCAAkB,KAAK,EAAE,WAAW,SAAS,OAAO,CAAC,EAAE;AAErE,MAAM,qBAAiB,wCAAkB,KAAK,EAAE,WAAW,mBAAmB,OAAO,CAAC,EAAE;AAExF,MAAM,qBAAiB,wCAAkB,KAAK,EAAE,WAAW,oBAAoB,OAAO,CAAC,EAAE;AAEzF,MAAM,oBAAgB,wCAAkB,KAAK,EAAE,WAAW,kBAAkB,OAAO,CAAC,EAAE;AACtF,MAAM,aAAS,wCAAkB,KAAK,EAAE,WAAW,UAAU,OAAO,CAAC,EAAE;AACvE,MAAM,aAAS,wCAAkB,KAAK,EAAE,WAAW,UAAU,OAAO,CAAC,EAAE;AAEvE,MAAM,oBAAgB,wCAAkB,KAAK,EAAE,WAAW,kBAAkB,OAAO,CAAC,EAAE;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
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 './DSModalSlide';\nexport { default } from './DSModalSlide';\nexport { DSModalSlideHeaderWithSchema } from './components/Header';\nexport { DSModalSlideFooterWithSchema } from './components/Footer'
|
|
4
|
+
"sourcesContent": ["export * from './DSModalSlide';\nexport { default } from './DSModalSlide';\nexport { DSModalSlideHeaderWithSchema } from './components/Header';\nexport { DSModalSlideFooterWithSchema } from './components/Footer';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
5
|
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,wBAAc,2BAAd;AACA,0BAAwB;AACxB,oBAA6C;AAC7C,oBAA6C;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,54 +1,26 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { aggregatedClasses } from "@elliemae/ds-classnames";
|
|
3
3
|
const blockName = "modal-slide";
|
|
4
|
-
const Wrapper = aggregatedClasses("div")(
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
);
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
showing: show,
|
|
18
|
-
disappearing: !show
|
|
19
|
-
})
|
|
20
|
-
);
|
|
21
|
-
const Content = aggregatedClasses("div")(
|
|
22
|
-
blockName,
|
|
23
|
-
"content",
|
|
24
|
-
({ show }) => ({
|
|
25
|
-
showing: show,
|
|
26
|
-
disappearing: !show
|
|
27
|
-
})
|
|
28
|
-
);
|
|
4
|
+
const Wrapper = aggregatedClasses("div")(blockName, "wrapper", ({ show, centered }) => ({
|
|
5
|
+
showing: show,
|
|
6
|
+
disappearing: !show,
|
|
7
|
+
centered
|
|
8
|
+
}));
|
|
9
|
+
const Overlay = aggregatedClasses("div")(blockName, "overlay", ({ show }) => ({
|
|
10
|
+
showing: show,
|
|
11
|
+
disappearing: !show
|
|
12
|
+
}));
|
|
13
|
+
const Content = aggregatedClasses("div")(blockName, "content", ({ show }) => ({
|
|
14
|
+
showing: show,
|
|
15
|
+
disappearing: !show
|
|
16
|
+
}));
|
|
29
17
|
const Title = aggregatedClasses("div")(blockName, "title", () => ({}));
|
|
30
|
-
const BreadcrumTitle = aggregatedClasses("div")(
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
() => ({})
|
|
34
|
-
);
|
|
35
|
-
const HeaderLeftSide = aggregatedClasses("div")(
|
|
36
|
-
blockName,
|
|
37
|
-
"header-left-side",
|
|
38
|
-
() => ({})
|
|
39
|
-
);
|
|
40
|
-
const ActualContent = aggregatedClasses("div")(
|
|
41
|
-
blockName,
|
|
42
|
-
"actual-content",
|
|
43
|
-
() => ({})
|
|
44
|
-
);
|
|
18
|
+
const BreadcrumTitle = aggregatedClasses("div")(blockName, "breadcrum-title", () => ({}));
|
|
19
|
+
const HeaderLeftSide = aggregatedClasses("div")(blockName, "header-left-side", () => ({}));
|
|
20
|
+
const ActualContent = aggregatedClasses("div")(blockName, "actual-content", () => ({}));
|
|
45
21
|
const Header = aggregatedClasses("div")(blockName, "header", () => ({}));
|
|
46
22
|
const Footer = aggregatedClasses("div")(blockName, "footer", () => ({}));
|
|
47
|
-
const FooterWrapper = aggregatedClasses("div")(
|
|
48
|
-
blockName,
|
|
49
|
-
"footer-wrapper",
|
|
50
|
-
() => ({})
|
|
51
|
-
);
|
|
23
|
+
const FooterWrapper = aggregatedClasses("div")(blockName, "footer-wrapper", () => ({}));
|
|
52
24
|
export {
|
|
53
25
|
ActualContent,
|
|
54
26
|
BreadcrumTitle,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../../src/components/blocks.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { aggregatedClasses } from '@elliemae/ds-classnames';\n\nconst blockName = 'modal-slide';\n\nexport const Wrapper = aggregatedClasses('div')(
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,yBAAyB;AAElC,MAAM,YAAY;AAEX,MAAM,UAAU,kBAAkB,KAAK
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { aggregatedClasses } from '@elliemae/ds-classnames';\n\nconst blockName = 'modal-slide';\n\nexport const Wrapper = aggregatedClasses('div')(blockName, 'wrapper', ({ show, centered }) => ({\n showing: show,\n disappearing: !show,\n centered,\n}));\n\nexport const Overlay = aggregatedClasses('div')(blockName, 'overlay', ({ show }) => ({\n showing: show,\n disappearing: !show,\n}));\n\nexport const Content = aggregatedClasses('div')(blockName, 'content', ({ show }) => ({\n showing: show,\n disappearing: !show,\n}));\n\nexport const Title = aggregatedClasses('div')(blockName, 'title', () => ({}));\n\nexport const BreadcrumTitle = aggregatedClasses('div')(blockName, 'breadcrum-title', () => ({}));\n\nexport const HeaderLeftSide = aggregatedClasses('div')(blockName, 'header-left-side', () => ({}));\n\nexport const ActualContent = aggregatedClasses('div')(blockName, 'actual-content', () => ({}));\nexport const Header = aggregatedClasses('div')(blockName, 'header', () => ({}));\nexport const Footer = aggregatedClasses('div')(blockName, 'footer', () => ({}));\n\nexport const FooterWrapper = aggregatedClasses('div')(blockName, 'footer-wrapper', () => ({}));\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,yBAAyB;AAElC,MAAM,YAAY;AAEX,MAAM,UAAU,kBAAkB,KAAK,EAAE,WAAW,WAAW,CAAC,EAAE,MAAM,SAAS,OAAO;AAAA,EAC7F,SAAS;AAAA,EACT,cAAc,CAAC;AAAA,EACf;AACF,EAAE;AAEK,MAAM,UAAU,kBAAkB,KAAK,EAAE,WAAW,WAAW,CAAC,EAAE,KAAK,OAAO;AAAA,EACnF,SAAS;AAAA,EACT,cAAc,CAAC;AACjB,EAAE;AAEK,MAAM,UAAU,kBAAkB,KAAK,EAAE,WAAW,WAAW,CAAC,EAAE,KAAK,OAAO;AAAA,EACnF,SAAS;AAAA,EACT,cAAc,CAAC;AACjB,EAAE;AAEK,MAAM,QAAQ,kBAAkB,KAAK,EAAE,WAAW,SAAS,OAAO,CAAC,EAAE;AAErE,MAAM,iBAAiB,kBAAkB,KAAK,EAAE,WAAW,mBAAmB,OAAO,CAAC,EAAE;AAExF,MAAM,iBAAiB,kBAAkB,KAAK,EAAE,WAAW,oBAAoB,OAAO,CAAC,EAAE;AAEzF,MAAM,gBAAgB,kBAAkB,KAAK,EAAE,WAAW,kBAAkB,OAAO,CAAC,EAAE;AACtF,MAAM,SAAS,kBAAkB,KAAK,EAAE,WAAW,UAAU,OAAO,CAAC,EAAE;AACvE,MAAM,SAAS,kBAAkB,KAAK,EAAE,WAAW,UAAU,OAAO,CAAC,EAAE;AAEvE,MAAM,gBAAgB,kBAAkB,KAAK,EAAE,WAAW,kBAAkB,OAAO,CAAC,EAAE;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
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 './DSModalSlide';\nexport { default } from './DSModalSlide';\nexport { DSModalSlideHeaderWithSchema } from './components/Header';\nexport { DSModalSlideFooterWithSchema } from './components/Footer'
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './DSModalSlide';\nexport { default } from './DSModalSlide';\nexport { DSModalSlideHeaderWithSchema } from './components/Header';\nexport { DSModalSlideFooterWithSchema } from './components/Footer';\n"],
|
|
5
5
|
"mappings": "AAAA,YAAY,WAAW;ACAvB,cAAc;AACd,SAAS,WAAAA,gBAAe;AACxB,SAAS,oCAAoC;AAC7C,SAAS,oCAAoC;",
|
|
6
6
|
"names": ["default"]
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-modal-slide",
|
|
3
|
-
"version": "3.12.0-next.
|
|
3
|
+
"version": "3.12.0-next.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Modal Slide",
|
|
6
6
|
"files": [
|
|
@@ -51,13 +51,13 @@
|
|
|
51
51
|
"indent": 4
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@elliemae/ds-button": "3.12.0-next.
|
|
55
|
-
"@elliemae/ds-classnames": "3.12.0-next.
|
|
56
|
-
"@elliemae/ds-grid": "3.12.0-next.
|
|
57
|
-
"@elliemae/ds-icons": "3.12.0-next.
|
|
58
|
-
"@elliemae/ds-separator": "3.12.0-next.
|
|
59
|
-
"@elliemae/ds-system": "3.12.0-next.
|
|
60
|
-
"@elliemae/ds-utilities": "3.12.0-next.
|
|
54
|
+
"@elliemae/ds-button": "3.12.0-next.1",
|
|
55
|
+
"@elliemae/ds-classnames": "3.12.0-next.1",
|
|
56
|
+
"@elliemae/ds-grid": "3.12.0-next.1",
|
|
57
|
+
"@elliemae/ds-icons": "3.12.0-next.1",
|
|
58
|
+
"@elliemae/ds-separator": "3.12.0-next.1",
|
|
59
|
+
"@elliemae/ds-system": "3.12.0-next.1",
|
|
60
|
+
"@elliemae/ds-utilities": "3.12.0-next.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@testing-library/react": "~12.1.3",
|