@lingk/sync 1.0.11 → 1.0.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.
- package/build/credentialSections.js +24 -4
- package/build/credentialSections.js.map +1 -1
- package/build/css/lingkStyles.css +14 -2
- package/build/css/main.css +41 -11
- package/build/lightning.js +192 -104
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js +2 -2
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js +195 -44
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js +2 -2
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js.map +1 -1
- package/build/main.js +656 -358
- package/build/main.js.map +1 -1
- package/build/metadataFunctions.js +22 -0
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js +22 -0
- package/build/reducer.js.map +1 -1
- package/build/saveData.js.map +1 -1
- package/package.json +1 -1
|
@@ -9,6 +9,18 @@ body, td {
|
|
|
9
9
|
.form-control{
|
|
10
10
|
width: 300px;
|
|
11
11
|
}
|
|
12
|
+
input.form-control::-webkit-input-placeholder{
|
|
13
|
+
font-size: 12px;
|
|
14
|
+
}
|
|
15
|
+
input.form-control::-moz-placeholder{
|
|
16
|
+
font-size: 12px;
|
|
17
|
+
}
|
|
18
|
+
input.form-control:-ms-input-placeholder{
|
|
19
|
+
font-size: 12px;
|
|
20
|
+
}
|
|
21
|
+
input.form-control::placeholder{
|
|
22
|
+
font-size: 12px;
|
|
23
|
+
}
|
|
12
24
|
.select-button.dropdown-toggle.btn.btn-default{
|
|
13
25
|
padding-right:28px;
|
|
14
26
|
}
|
|
@@ -112,8 +124,8 @@ body, td {
|
|
|
112
124
|
.filter-step-resource{
|
|
113
125
|
background: #337ab7;
|
|
114
126
|
}
|
|
115
|
-
.filter-step-
|
|
116
|
-
|
|
127
|
+
.filter-step-resource:hover{
|
|
128
|
+
background: #286090;
|
|
117
129
|
}
|
|
118
130
|
|
|
119
131
|
.transform-data-type{
|
package/build/css/main.css
CHANGED
|
@@ -379,6 +379,10 @@ aside{
|
|
|
379
379
|
.wizard-map-field:hover {
|
|
380
380
|
background: #dfe0e0 !important;
|
|
381
381
|
}
|
|
382
|
+
.file-table-tbody input:focus{
|
|
383
|
+
border-color: transparent;
|
|
384
|
+
box-shadow: none;
|
|
385
|
+
}
|
|
382
386
|
.schema-panel{
|
|
383
387
|
line-height: 1.4;
|
|
384
388
|
margin-bottom: 8px;
|
|
@@ -1168,26 +1172,42 @@ aside{
|
|
|
1168
1172
|
font-size: 14px;
|
|
1169
1173
|
display: inline-block;
|
|
1170
1174
|
color: white;
|
|
1171
|
-
|
|
1175
|
+
font-weight: bold;
|
|
1176
|
+
padding:6px 15px 4px 8px;
|
|
1172
1177
|
border-top-left-radius: 5px;
|
|
1173
1178
|
border-top-right-radius: 5px;
|
|
1174
|
-
-webkit-transition: all 0.
|
|
1175
|
-
transition: all 0.
|
|
1179
|
+
-webkit-transition: all 0.1s;
|
|
1180
|
+
transition: all 0.1s;
|
|
1176
1181
|
-webkit-user-select: none;
|
|
1177
1182
|
-moz-user-select: none;
|
|
1178
1183
|
-ms-user-select: none;
|
|
1179
1184
|
user-select: none;
|
|
1180
1185
|
}
|
|
1181
|
-
|
|
1186
|
+
.filter-step-resource span{
|
|
1187
|
+
display: inline-block;
|
|
1188
|
+
vertical-align: top;
|
|
1189
|
+
white-space: nowrap;
|
|
1190
|
+
text-overflow: ellipsis;
|
|
1191
|
+
overflow: hidden;
|
|
1192
|
+
}
|
|
1193
|
+
.filter-step-resource svg{
|
|
1194
|
+
margin-right:7px;
|
|
1195
|
+
margin-top:1px;
|
|
1196
|
+
display: inline-block;
|
|
1197
|
+
vertical-align: top;
|
|
1198
|
+
}
|
|
1182
1199
|
.filter-step-panel{
|
|
1183
|
-
height:
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
transition: all 0.25s;
|
|
1200
|
+
height: 74px;
|
|
1201
|
+
-webkit-transition: all 0.1s;
|
|
1202
|
+
transition: all 0.1s;
|
|
1187
1203
|
overflow: hidden;
|
|
1188
1204
|
box-sizing: content-box;
|
|
1205
|
+
background: #F4F4F4;
|
|
1206
|
+
margin-top:-2px;
|
|
1207
|
+
border-width: 1px;
|
|
1208
|
+
border-style: solid;
|
|
1209
|
+
border-color: #337ab7;
|
|
1189
1210
|
}
|
|
1190
|
-
|
|
1191
1211
|
.filter-step-panel-contents{
|
|
1192
1212
|
margin:10px;
|
|
1193
1213
|
}
|
|
@@ -1196,13 +1216,23 @@ aside{
|
|
|
1196
1216
|
max-height:0px;
|
|
1197
1217
|
}
|
|
1198
1218
|
.filter-step-panel-enter-active{
|
|
1199
|
-
max-height:
|
|
1219
|
+
max-height: 74px;
|
|
1200
1220
|
}
|
|
1201
1221
|
.filter-step-panel-leave{
|
|
1202
|
-
max-height:
|
|
1222
|
+
max-height: 74px;
|
|
1203
1223
|
}
|
|
1204
1224
|
.filter-step-panel-leave-active{
|
|
1205
1225
|
max-height: 0px;
|
|
1226
|
+
border-color: transparent;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
.pass-key-svg{
|
|
1230
|
+
fill:grey;
|
|
1231
|
+
cursor:pointer;
|
|
1232
|
+
margin-left:10px;
|
|
1233
|
+
}
|
|
1234
|
+
.pass-key-svg:hover{
|
|
1235
|
+
fill:black !important;
|
|
1206
1236
|
}
|
|
1207
1237
|
|
|
1208
1238
|
.env-content{
|