@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.
@@ -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
 
@@ -212,7 +212,10 @@ input.form-control::placeholder{
212
212
  right: 14px;
213
213
  top: 15px;
214
214
  }
215
-
215
+ .schema-accordion-overlay{
216
+ background: rgb(236, 239, 239);
217
+ z-index: 9988;
218
+ }
216
219
 
217
220
 
218
221
  /*# sourceMappingURL=lingkStyles.css.map*/
@@ -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;
@@ -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(props) {
824
- return _react2.default.createElement(_reactLightningDesignSystem.Input, props);
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;