@elliemae/ds-banner 2.0.0-rc.9 → 2.1.0-rc.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/cjs/DSBanner.js +6 -4
- package/cjs/styles.js +32 -23
- package/esm/DSBanner.js +6 -4
- package/esm/styles.js +31 -22
- package/package.json +4 -4
- package/types/DSBanner.d.ts +2 -2
- package/types/propTypes.d.ts +2 -2
- package/types/styles.d.ts +7 -7
package/cjs/DSBanner.js
CHANGED
|
@@ -27,9 +27,9 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
|
27
27
|
|
|
28
28
|
var _CloseX, _span;
|
|
29
29
|
|
|
30
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
30
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
31
31
|
|
|
32
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
32
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
33
33
|
|
|
34
34
|
const DSBanner = _ref => {
|
|
35
35
|
let {
|
|
@@ -47,8 +47,10 @@ const DSBanner = _ref => {
|
|
|
47
47
|
const linkRef = React.useRef(null);
|
|
48
48
|
const [current, setCurrent] = React.useState(isOpen);
|
|
49
49
|
const [isAnimating, setIsAnimating] = React.useState(false);
|
|
50
|
-
const [height, setHeight] = React.useState(0);
|
|
51
50
|
const [alertTabIndex, setAlertTabIndex] = React.useState(undefined);
|
|
51
|
+
const ownerState = {
|
|
52
|
+
type
|
|
53
|
+
};
|
|
52
54
|
React__default["default"].useEffect(() => {
|
|
53
55
|
if (actionRef && actionRef.current) {
|
|
54
56
|
actionRef.current.focusOnWrapper = () => {
|
|
@@ -85,9 +87,9 @@ const DSBanner = _ref => {
|
|
|
85
87
|
isOpen: isOpen,
|
|
86
88
|
isAnimating: isAnimating,
|
|
87
89
|
onAnimationEnd: () => setCurrent(isOpen),
|
|
88
|
-
height: height,
|
|
89
90
|
"data-testid": "ds-banner-container"
|
|
90
91
|
}, containerProps), {}, {
|
|
92
|
+
ownerState: ownerState,
|
|
91
93
|
children: /*#__PURE__*/jsxRuntime.jsxs(styles.StyledInnerContainer, {
|
|
92
94
|
type: type,
|
|
93
95
|
isOpen: isOpen,
|
package/cjs/styles.js
CHANGED
|
@@ -2,18 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _taggedTemplateLiteral = require('@babel/runtime/helpers/taggedTemplateLiteral');
|
|
6
|
+
var dsSystem = require('@elliemae/ds-system');
|
|
6
7
|
var DSButton = require('@elliemae/ds-button');
|
|
7
8
|
var styleHelpers = require('./utils/styleHelpers.js');
|
|
8
9
|
|
|
9
10
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
10
11
|
|
|
11
|
-
var
|
|
12
|
+
var _taggedTemplateLiteral__default = /*#__PURE__*/_interopDefaultLegacy(_taggedTemplateLiteral);
|
|
12
13
|
var DSButton__default = /*#__PURE__*/_interopDefaultLegacy(DSButton);
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7;
|
|
16
|
+
const StyledBannerContainer = dsSystem.styled('div', {
|
|
17
|
+
name: 'DS-Banner',
|
|
18
|
+
slot: 'root'
|
|
19
|
+
})(_templateObject || (_templateObject = _taggedTemplateLiteral__default["default"](["\n overflow: hidden;\n height: ", ";\n ", ";\n"])), _ref => {
|
|
17
20
|
let {
|
|
18
21
|
isOpen
|
|
19
22
|
} = _ref;
|
|
@@ -26,9 +29,10 @@ const StyledBannerContainer = /*#__PURE__*/styled__default["default"].div.withCo
|
|
|
26
29
|
} = _ref2;
|
|
27
30
|
return styleHelpers.handleAnimation(isAnimating, isOpen, height);
|
|
28
31
|
});
|
|
29
|
-
const StyledInnerContainer =
|
|
30
|
-
|
|
31
|
-
|
|
32
|
+
const StyledInnerContainer = dsSystem.styled('div', {
|
|
33
|
+
name: 'DS-Banner',
|
|
34
|
+
slot: 'innerContainer'
|
|
35
|
+
})(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral__default["default"](["\n padding-right: 6px;\n display: grid;\n align-items: center;\n min-height: 41px;\n width: 100%;\n background-color: ", ";\n border-bottom: 5px solid ", ";\n ", ";\n &:focus {\n position: relative;\n &:after {\n content: '';\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n pointer-events: none;\n border-radius: 2px;\n width: calc(100%);\n border: 2px solid #1e79c2;\n height: calc(100% + 4px);\n }\n }\n grid-template-columns: auto minmax(auto, auto) minmax(auto, 1fr) auto;\n"])), _ref3 => {
|
|
32
36
|
let {
|
|
33
37
|
theme
|
|
34
38
|
} = _ref3;
|
|
@@ -46,9 +50,10 @@ const StyledInnerContainer = /*#__PURE__*/styled__default["default"].div.withCon
|
|
|
46
50
|
} = _ref5;
|
|
47
51
|
return styleHelpers.handleAnimation(isAnimating, isOpen);
|
|
48
52
|
});
|
|
49
|
-
const StyledIconContainer =
|
|
50
|
-
|
|
51
|
-
|
|
53
|
+
const StyledIconContainer = dsSystem.styled('div', {
|
|
54
|
+
name: 'DS-Banner',
|
|
55
|
+
slot: 'iconContainer'
|
|
56
|
+
})(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral__default["default"](["\n margin-right: ", ";\n margin-left: ", ";\n"])), _ref6 => {
|
|
52
57
|
let {
|
|
53
58
|
theme
|
|
54
59
|
} = _ref6;
|
|
@@ -59,9 +64,10 @@ const StyledIconContainer = /*#__PURE__*/styled__default["default"].div.withConf
|
|
|
59
64
|
} = _ref7;
|
|
60
65
|
return theme.space.xs;
|
|
61
66
|
});
|
|
62
|
-
const StyledTitle =
|
|
63
|
-
|
|
64
|
-
|
|
67
|
+
const StyledTitle = dsSystem.styled('div', {
|
|
68
|
+
name: 'DS-Banner',
|
|
69
|
+
slot: 'title'
|
|
70
|
+
})(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral__default["default"](["\n color: ", ";\n font-size: ", ";\n font-weight: ", ";\n"])), _ref8 => {
|
|
65
71
|
let {
|
|
66
72
|
theme
|
|
67
73
|
} = _ref8;
|
|
@@ -77,9 +83,10 @@ const StyledTitle = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
|
77
83
|
} = _ref10;
|
|
78
84
|
return theme.fontWeights.semibold;
|
|
79
85
|
});
|
|
80
|
-
const StyledSubTitle =
|
|
81
|
-
|
|
82
|
-
|
|
86
|
+
const StyledSubTitle = dsSystem.styled('div', {
|
|
87
|
+
name: 'DS-Banner',
|
|
88
|
+
slot: 'subtitle'
|
|
89
|
+
})(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral__default["default"](["\n width: 100%;\n margin-left: ", ";\n font-size: ", ";\n font-weight: ", ";\n"])), _ref11 => {
|
|
83
90
|
let {
|
|
84
91
|
theme
|
|
85
92
|
} = _ref11;
|
|
@@ -95,9 +102,10 @@ const StyledSubTitle = /*#__PURE__*/styled__default["default"].div.withConfig({
|
|
|
95
102
|
} = _ref13;
|
|
96
103
|
return theme.fontWeights.regular;
|
|
97
104
|
});
|
|
98
|
-
const StyledActionLink =
|
|
99
|
-
|
|
100
|
-
|
|
105
|
+
const StyledActionLink = dsSystem.styled('a', {
|
|
106
|
+
name: 'DS-Banner',
|
|
107
|
+
slot: 'action'
|
|
108
|
+
})(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral__default["default"](["\n margin-left: ", ";\n white-space: nowrap;\n text-decoration: none;\n line-height: 1.1;\n font-size: ", ";\n font-weight: ", ";\n color: ", ";\n"])), _ref14 => {
|
|
101
109
|
let {
|
|
102
110
|
theme,
|
|
103
111
|
isBodyEmpty
|
|
@@ -119,9 +127,10 @@ const StyledActionLink = /*#__PURE__*/styled__default["default"].a.withConfig({
|
|
|
119
127
|
} = _ref17;
|
|
120
128
|
return theme.colors.brand[600];
|
|
121
129
|
});
|
|
122
|
-
const StyledCloseButton =
|
|
123
|
-
|
|
124
|
-
|
|
130
|
+
const StyledCloseButton = dsSystem.styled(DSButton__default["default"], {
|
|
131
|
+
name: 'DS-Banner',
|
|
132
|
+
slot: 'closeButton'
|
|
133
|
+
})(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral__default["default"](["\n margin-left: ", ";\n &:not(focus) {\n border: transparent;\n }\n"])), _ref18 => {
|
|
125
134
|
let {
|
|
126
135
|
theme
|
|
127
136
|
} = _ref18;
|
package/esm/DSBanner.js
CHANGED
|
@@ -17,9 +17,9 @@ import { jsx, jsxs } from 'react/jsx-runtime';
|
|
|
17
17
|
|
|
18
18
|
var _CloseX, _span;
|
|
19
19
|
|
|
20
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
20
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
21
21
|
|
|
22
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
22
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
23
23
|
|
|
24
24
|
const DSBanner = _ref => {
|
|
25
25
|
let {
|
|
@@ -37,8 +37,10 @@ const DSBanner = _ref => {
|
|
|
37
37
|
const linkRef = useRef(null);
|
|
38
38
|
const [current, setCurrent] = useState(isOpen);
|
|
39
39
|
const [isAnimating, setIsAnimating] = useState(false);
|
|
40
|
-
const [height, setHeight] = useState(0);
|
|
41
40
|
const [alertTabIndex, setAlertTabIndex] = useState(undefined);
|
|
41
|
+
const ownerState = {
|
|
42
|
+
type
|
|
43
|
+
};
|
|
42
44
|
React.useEffect(() => {
|
|
43
45
|
if (actionRef && actionRef.current) {
|
|
44
46
|
actionRef.current.focusOnWrapper = () => {
|
|
@@ -75,9 +77,9 @@ const DSBanner = _ref => {
|
|
|
75
77
|
isOpen: isOpen,
|
|
76
78
|
isAnimating: isAnimating,
|
|
77
79
|
onAnimationEnd: () => setCurrent(isOpen),
|
|
78
|
-
height: height,
|
|
79
80
|
"data-testid": "ds-banner-container"
|
|
80
81
|
}, containerProps), {}, {
|
|
82
|
+
ownerState: ownerState,
|
|
81
83
|
children: /*#__PURE__*/jsxs(StyledInnerContainer, {
|
|
82
84
|
type: type,
|
|
83
85
|
isOpen: isOpen,
|
package/esm/styles.js
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _taggedTemplateLiteral from '@babel/runtime/helpers/esm/taggedTemplateLiteral';
|
|
2
|
+
import { styled } from '@elliemae/ds-system';
|
|
2
3
|
import DSButton from '@elliemae/ds-button';
|
|
3
4
|
import { handleAnimation, handleBorderColor } from './utils/styleHelpers.js';
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7;
|
|
7
|
+
const StyledBannerContainer = styled('div', {
|
|
8
|
+
name: 'DS-Banner',
|
|
9
|
+
slot: 'root'
|
|
10
|
+
})(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n overflow: hidden;\n height: ", ";\n ", ";\n"])), _ref => {
|
|
8
11
|
let {
|
|
9
12
|
isOpen
|
|
10
13
|
} = _ref;
|
|
@@ -17,9 +20,10 @@ const StyledBannerContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
17
20
|
} = _ref2;
|
|
18
21
|
return handleAnimation(isAnimating, isOpen, height);
|
|
19
22
|
});
|
|
20
|
-
const StyledInnerContainer =
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
const StyledInnerContainer = styled('div', {
|
|
24
|
+
name: 'DS-Banner',
|
|
25
|
+
slot: 'innerContainer'
|
|
26
|
+
})(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n padding-right: 6px;\n display: grid;\n align-items: center;\n min-height: 41px;\n width: 100%;\n background-color: ", ";\n border-bottom: 5px solid ", ";\n ", ";\n &:focus {\n position: relative;\n &:after {\n content: '';\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n pointer-events: none;\n border-radius: 2px;\n width: calc(100%);\n border: 2px solid #1e79c2;\n height: calc(100% + 4px);\n }\n }\n grid-template-columns: auto minmax(auto, auto) minmax(auto, 1fr) auto;\n"])), _ref3 => {
|
|
23
27
|
let {
|
|
24
28
|
theme
|
|
25
29
|
} = _ref3;
|
|
@@ -37,9 +41,10 @@ const StyledInnerContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
37
41
|
} = _ref5;
|
|
38
42
|
return handleAnimation(isAnimating, isOpen);
|
|
39
43
|
});
|
|
40
|
-
const StyledIconContainer =
|
|
41
|
-
|
|
42
|
-
|
|
44
|
+
const StyledIconContainer = styled('div', {
|
|
45
|
+
name: 'DS-Banner',
|
|
46
|
+
slot: 'iconContainer'
|
|
47
|
+
})(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n margin-right: ", ";\n margin-left: ", ";\n"])), _ref6 => {
|
|
43
48
|
let {
|
|
44
49
|
theme
|
|
45
50
|
} = _ref6;
|
|
@@ -50,9 +55,10 @@ const StyledIconContainer = /*#__PURE__*/styled.div.withConfig({
|
|
|
50
55
|
} = _ref7;
|
|
51
56
|
return theme.space.xs;
|
|
52
57
|
});
|
|
53
|
-
const StyledTitle =
|
|
54
|
-
|
|
55
|
-
|
|
58
|
+
const StyledTitle = styled('div', {
|
|
59
|
+
name: 'DS-Banner',
|
|
60
|
+
slot: 'title'
|
|
61
|
+
})(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n color: ", ";\n font-size: ", ";\n font-weight: ", ";\n"])), _ref8 => {
|
|
56
62
|
let {
|
|
57
63
|
theme
|
|
58
64
|
} = _ref8;
|
|
@@ -68,9 +74,10 @@ const StyledTitle = /*#__PURE__*/styled.div.withConfig({
|
|
|
68
74
|
} = _ref10;
|
|
69
75
|
return theme.fontWeights.semibold;
|
|
70
76
|
});
|
|
71
|
-
const StyledSubTitle =
|
|
72
|
-
|
|
73
|
-
|
|
77
|
+
const StyledSubTitle = styled('div', {
|
|
78
|
+
name: 'DS-Banner',
|
|
79
|
+
slot: 'subtitle'
|
|
80
|
+
})(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n width: 100%;\n margin-left: ", ";\n font-size: ", ";\n font-weight: ", ";\n"])), _ref11 => {
|
|
74
81
|
let {
|
|
75
82
|
theme
|
|
76
83
|
} = _ref11;
|
|
@@ -86,9 +93,10 @@ const StyledSubTitle = /*#__PURE__*/styled.div.withConfig({
|
|
|
86
93
|
} = _ref13;
|
|
87
94
|
return theme.fontWeights.regular;
|
|
88
95
|
});
|
|
89
|
-
const StyledActionLink =
|
|
90
|
-
|
|
91
|
-
|
|
96
|
+
const StyledActionLink = styled('a', {
|
|
97
|
+
name: 'DS-Banner',
|
|
98
|
+
slot: 'action'
|
|
99
|
+
})(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["\n margin-left: ", ";\n white-space: nowrap;\n text-decoration: none;\n line-height: 1.1;\n font-size: ", ";\n font-weight: ", ";\n color: ", ";\n"])), _ref14 => {
|
|
92
100
|
let {
|
|
93
101
|
theme,
|
|
94
102
|
isBodyEmpty
|
|
@@ -110,9 +118,10 @@ const StyledActionLink = /*#__PURE__*/styled.a.withConfig({
|
|
|
110
118
|
} = _ref17;
|
|
111
119
|
return theme.colors.brand[600];
|
|
112
120
|
});
|
|
113
|
-
const StyledCloseButton =
|
|
114
|
-
|
|
115
|
-
|
|
121
|
+
const StyledCloseButton = styled(DSButton, {
|
|
122
|
+
name: 'DS-Banner',
|
|
123
|
+
slot: 'closeButton'
|
|
124
|
+
})(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n margin-left: ", ";\n &:not(focus) {\n border: transparent;\n }\n"])), _ref18 => {
|
|
116
125
|
let {
|
|
117
126
|
theme
|
|
118
127
|
} = _ref18;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-banner",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Banner",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"build": "node ../../scripts/build/build.js"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@elliemae/ds-button": "2.
|
|
64
|
-
"@elliemae/ds-icons": "2.
|
|
65
|
-
"@elliemae/ds-system": "2.
|
|
63
|
+
"@elliemae/ds-button": "2.1.0-rc.0",
|
|
64
|
+
"@elliemae/ds-icons": "2.1.0-rc.0",
|
|
65
|
+
"@elliemae/ds-system": "2.1.0-rc.0",
|
|
66
66
|
"react-desc": "~4.1.2"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
package/types/DSBanner.d.ts
CHANGED
|
@@ -31,10 +31,10 @@ declare const DSBanner: {
|
|
|
31
31
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
32
32
|
};
|
|
33
33
|
onClose: {
|
|
34
|
-
defaultValue
|
|
34
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
35
35
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
36
36
|
};
|
|
37
|
-
isRequired: import("react-desc").
|
|
37
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
38
38
|
};
|
|
39
39
|
isOpen: {
|
|
40
40
|
deprecated: import("react-desc").PropTypesDescValidator;
|
package/types/propTypes.d.ts
CHANGED
|
@@ -13,10 +13,10 @@ export declare const propTypes: {
|
|
|
13
13
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
14
14
|
};
|
|
15
15
|
onClose: {
|
|
16
|
-
defaultValue
|
|
16
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
17
17
|
deprecated: import("react-desc").PropTypesDescValidator;
|
|
18
18
|
};
|
|
19
|
-
isRequired: import("react-desc").
|
|
19
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
20
20
|
};
|
|
21
21
|
isOpen: {
|
|
22
22
|
deprecated: import("react-desc").PropTypesDescValidator;
|
package/types/styles.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { StyledActionLinkT, StyledBannerContainerT, StyledInnerContainerT } from './index.d';
|
|
2
|
-
export declare const StyledBannerContainer: import("styled-components").StyledComponent<
|
|
3
|
-
export declare const StyledInnerContainer: import("styled-components").StyledComponent<
|
|
4
|
-
export declare const StyledIconContainer: import("styled-components").StyledComponent<"div", import("styled
|
|
5
|
-
export declare const StyledTitle: import("styled-components").StyledComponent<"div", import("styled
|
|
6
|
-
export declare const StyledSubTitle: import("styled-components").StyledComponent<"div", import("styled
|
|
7
|
-
export declare const StyledActionLink: import("styled-components").StyledComponent<
|
|
8
|
-
export declare const StyledCloseButton: import("styled-components").StyledComponent<any, import("styled
|
|
2
|
+
export declare const StyledBannerContainer: import("styled-components").StyledComponent<StyledBannerContainerT, import("@elliemae/ds-system/types/styled/types").Theme, {}, never>;
|
|
3
|
+
export declare const StyledInnerContainer: import("styled-components").StyledComponent<StyledInnerContainerT, import("@elliemae/ds-system/types/styled/types").Theme, {}, never>;
|
|
4
|
+
export declare const StyledIconContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system/types/styled/types").Theme, {}, never>;
|
|
5
|
+
export declare const StyledTitle: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system/types/styled/types").Theme, {}, never>;
|
|
6
|
+
export declare const StyledSubTitle: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system/types/styled/types").Theme, {}, never>;
|
|
7
|
+
export declare const StyledActionLink: import("styled-components").StyledComponent<StyledActionLinkT, import("@elliemae/ds-system/types/styled/types").Theme, {}, never>;
|
|
8
|
+
export declare const StyledCloseButton: import("styled-components").StyledComponent<any, import("@elliemae/ds-system/types/styled/types").Theme, any, any>;
|