orc-shared 5.10.0-dev.11 → 5.10.0-dev.12
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.
|
@@ -70,7 +70,7 @@ var AboutParagraph = exports.AboutParagraph = _styledComponents.default.p.withCo
|
|
|
70
70
|
var AboutLink = exports.AboutLink = _styledComponents.default.a.withConfig({
|
|
71
71
|
displayName: "About__AboutLink",
|
|
72
72
|
componentId: "sc-1y9zgcc-2"
|
|
73
|
-
})(["color:#
|
|
73
|
+
})(["color:#337ab7;text-decoration:none;"]);
|
|
74
74
|
var getClickOutsideHandler = exports.getClickOutsideHandler = function getClickOutsideHandler(_ref, updateViewState) {
|
|
75
75
|
var show = _ref.show;
|
|
76
76
|
return show ? function (event) {
|
package/package.json
CHANGED
|
@@ -77,7 +77,7 @@ export const AboutParagraph = styled.p`
|
|
|
77
77
|
`;
|
|
78
78
|
|
|
79
79
|
export const AboutLink = styled.a`
|
|
80
|
-
color: #
|
|
80
|
+
color: #337ab7;
|
|
81
81
|
text-decoration: none;
|
|
82
82
|
`;
|
|
83
83
|
|
|
@@ -86,7 +86,7 @@ export const getClickOutsideHandler = ({ show }, updateViewState) => {
|
|
|
86
86
|
? event => {
|
|
87
87
|
event.stopPropagation();
|
|
88
88
|
updateViewState("show", false);
|
|
89
|
-
|
|
89
|
+
}
|
|
90
90
|
: () => {};
|
|
91
91
|
};
|
|
92
92
|
|
|
@@ -117,7 +117,7 @@ export const About = ({ currentApplication }) => {
|
|
|
117
117
|
key="application-version"
|
|
118
118
|
message={currentApplication.displayName.concat(" ", window.BUILD_NUMBER)}
|
|
119
119
|
/>,
|
|
120
|
-
|
|
120
|
+
]
|
|
121
121
|
: null}
|
|
122
122
|
{DEPENDENCIES && DEPENDENCIES["orc-shared"]
|
|
123
123
|
? [
|
|
@@ -129,7 +129,7 @@ export const About = ({ currentApplication }) => {
|
|
|
129
129
|
values: { version: trimStart(DEPENDENCIES["orc-shared"], "^") },
|
|
130
130
|
}}
|
|
131
131
|
/>,
|
|
132
|
-
|
|
132
|
+
]
|
|
133
133
|
: null}
|
|
134
134
|
{DEPENDENCIES && DEPENDENCIES["orc-scripts"]
|
|
135
135
|
? [
|
|
@@ -141,7 +141,7 @@ export const About = ({ currentApplication }) => {
|
|
|
141
141
|
values: { version: trimStart(DEPENDENCIES["orc-scripts"], "^") },
|
|
142
142
|
}}
|
|
143
143
|
/>,
|
|
144
|
-
|
|
144
|
+
]
|
|
145
145
|
: null}
|
|
146
146
|
{DEPENDENCIES && DEPENDENCIES["orc-secret"]
|
|
147
147
|
? [
|
|
@@ -153,7 +153,7 @@ export const About = ({ currentApplication }) => {
|
|
|
153
153
|
values: { version: trimStart(DEPENDENCIES["orc-secret"], "^") },
|
|
154
154
|
}}
|
|
155
155
|
/>,
|
|
156
|
-
|
|
156
|
+
]
|
|
157
157
|
: null}
|
|
158
158
|
</AboutParagraph>
|
|
159
159
|
<AboutParagraph long>
|