@lingk/sync 1.0.16 → 1.0.18
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/build/credentialSections.js +6 -3
- package/build/credentialSections.js.map +1 -1
- package/build/css/lightningStyles.css +5 -2
- package/build/css/lingkStyles.css +4 -1
- package/build/css/main.css +8 -0
- package/build/lightning.js +18 -2
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js.map +1 -1
- package/build/main.js +21 -16
- package/build/main.js.map +1 -1
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/build/saveData.js.map +1 -1
- package/package.json +3 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* CUSTOM STYLES */
|
|
1
|
+
/* LIGHTNING CUSTOM STYLES */
|
|
2
2
|
body, td {
|
|
3
3
|
font-family: "Salesforce Sans", Arial, sans-serif !important;
|
|
4
4
|
}
|
|
@@ -162,7 +162,10 @@ ul li, ol li {
|
|
|
162
162
|
border-top: 1px solid rgb(204, 205, 207);
|
|
163
163
|
border-bottom: 1px solid rgb(204, 205, 207);
|
|
164
164
|
}
|
|
165
|
-
|
|
165
|
+
.schema-accordion-overlay{
|
|
166
|
+
background: white;
|
|
167
|
+
z-index: 9000;
|
|
168
|
+
}
|
|
166
169
|
|
|
167
170
|
|
|
168
171
|
|
package/build/css/main.css
CHANGED
|
@@ -1391,6 +1391,14 @@ aside{
|
|
|
1391
1391
|
.env-creds-json-codemirror .CodeMirror{
|
|
1392
1392
|
height: 236px;
|
|
1393
1393
|
}
|
|
1394
|
+
.schema-accordion-overlay{
|
|
1395
|
+
width: 245px;
|
|
1396
|
+
min-height: 245px;
|
|
1397
|
+
height: 162px;
|
|
1398
|
+
top: 0px;
|
|
1399
|
+
display: inline-block;
|
|
1400
|
+
position: absolute;
|
|
1401
|
+
}
|
|
1394
1402
|
.rc-time-picker {
|
|
1395
1403
|
display: inline-block;
|
|
1396
1404
|
box-sizing: border-box;
|
package/build/lightning.js
CHANGED
|
@@ -820,8 +820,24 @@ module.exports =
|
|
|
820
820
|
|
|
821
821
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
822
822
|
|
|
823
|
-
var I = function I(
|
|
824
|
-
|
|
823
|
+
var I = function I(_ref) {
|
|
824
|
+
var input = _ref.input,
|
|
825
|
+
label = _ref.label,
|
|
826
|
+
placeholder = _ref.placeholder,
|
|
827
|
+
disabled = _ref.disabled,
|
|
828
|
+
type = _ref.type,
|
|
829
|
+
required = _ref.required,
|
|
830
|
+
style = _ref.style,
|
|
831
|
+
value = _ref.value;
|
|
832
|
+
|
|
833
|
+
return _react2.default.createElement(_reactLightningDesignSystem.Input, Object.assign({
|
|
834
|
+
label: label,
|
|
835
|
+
placeholder: placeholder,
|
|
836
|
+
required: required,
|
|
837
|
+
error: '',
|
|
838
|
+
value: value,
|
|
839
|
+
style: style
|
|
840
|
+
}, input));
|
|
825
841
|
};
|
|
826
842
|
|
|
827
843
|
exports.default = I;
|