@lingk/sync 0.0.51 → 0.0.53
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/css/lightning.css +15 -10
- package/build/css/main.css +258 -4
- package/build/lightning.js +197 -194
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +38 -38
- package/build/lingk.js.map +1 -1
- package/build/main.js +26307 -4774
- package/build/main.js.map +1 -1
- package/build/reducer.js +21 -7
- package/build/reducer.js.map +1 -1
- package/package.json +2 -1
package/build/css/lightning.css
CHANGED
|
@@ -27,6 +27,11 @@ ul li, ol li {
|
|
|
27
27
|
margin-left: 0 !important;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
.slds-modal__content{
|
|
31
|
+
overflow: visible !important;
|
|
32
|
+
padding:0 !important;
|
|
33
|
+
}
|
|
34
|
+
|
|
30
35
|
/* UI */
|
|
31
36
|
|
|
32
37
|
.wizard-sidebar{
|
|
@@ -35,17 +40,22 @@ ul li, ol li {
|
|
|
35
40
|
.wizard-content{
|
|
36
41
|
width: calc(100% - 210px);
|
|
37
42
|
}
|
|
38
|
-
|
|
39
|
-
border: 1px solid #0070d2;
|
|
40
|
-
}
|
|
43
|
+
|
|
41
44
|
.schema-panel{
|
|
42
45
|
border: 1px solid #3a91dc;
|
|
43
|
-
background: #3a91dc;
|
|
44
46
|
}
|
|
45
47
|
.schema-panel:first-child{
|
|
46
48
|
border: 1px solid #0070d2;
|
|
49
|
+
}
|
|
50
|
+
.schema-panel-header{
|
|
51
|
+
background: #3a91dc;
|
|
52
|
+
}
|
|
53
|
+
.schema-panel:first-child .schema-panel-header{
|
|
47
54
|
background: #0070d2;
|
|
48
55
|
}
|
|
56
|
+
.accordion-panel{
|
|
57
|
+
border: 1px solid #0070d2;
|
|
58
|
+
}
|
|
49
59
|
.accordion-panel-header{
|
|
50
60
|
background: #0070d2;
|
|
51
61
|
-webkit-transition: all .2s;
|
|
@@ -57,9 +67,6 @@ ul li, ol li {
|
|
|
57
67
|
.accordion-panel-header:hover{
|
|
58
68
|
background: #005fb2;
|
|
59
69
|
}
|
|
60
|
-
.react-draggable-dragging{
|
|
61
|
-
background: #005fb2;
|
|
62
|
-
}
|
|
63
70
|
|
|
64
71
|
.transform-data-type{
|
|
65
72
|
border: 1px solid #d8dde6;
|
|
@@ -86,13 +93,11 @@ ul li, ol li {
|
|
|
86
93
|
font-weight:normal;
|
|
87
94
|
}
|
|
88
95
|
.rf-select-dropdown-button > button{
|
|
89
|
-
max-width:
|
|
96
|
+
max-width: 150px;
|
|
90
97
|
text-overflow: ellipsis;
|
|
91
98
|
white-space: nowrap;
|
|
92
99
|
overflow: hidden;
|
|
93
100
|
padding-right:30px;
|
|
94
|
-
border: 1px solid transparent;
|
|
95
|
-
background: transparent;
|
|
96
101
|
}
|
|
97
102
|
.rf-select-dropdown-button > button > svg{
|
|
98
103
|
float: right;
|
package/build/css/main.css
CHANGED
|
@@ -35,16 +35,21 @@ body{
|
|
|
35
35
|
border-radius: 7px;
|
|
36
36
|
margin-bottom: 8px;
|
|
37
37
|
color: white;
|
|
38
|
-
padding: 9px 13px;
|
|
39
|
-
font-weight: bold;
|
|
40
38
|
-webkit-user-select: none;
|
|
41
39
|
-moz-user-select: none;
|
|
42
40
|
-ms-user-select: none;
|
|
43
41
|
user-select: none;
|
|
44
|
-
height: 50px;
|
|
45
42
|
border-radius:4px;
|
|
46
43
|
position: relative;
|
|
47
44
|
z-index: 6;
|
|
45
|
+
margin-left:15px;
|
|
46
|
+
}
|
|
47
|
+
.schema-panel:first-child{
|
|
48
|
+
margin-left:0px;
|
|
49
|
+
}
|
|
50
|
+
.schema-panel-header{
|
|
51
|
+
padding: 9px 13px;
|
|
52
|
+
font-weight: bold;
|
|
48
53
|
}
|
|
49
54
|
.accordion-panel{
|
|
50
55
|
line-height: 1.4;
|
|
@@ -211,6 +216,7 @@ body{
|
|
|
211
216
|
-moz-user-select:none;
|
|
212
217
|
-ms-user-select:none;
|
|
213
218
|
user-select:none;
|
|
219
|
+
font-weight: bold;
|
|
214
220
|
}
|
|
215
221
|
.schema-group-dots{
|
|
216
222
|
width: 63%;
|
|
@@ -249,6 +255,16 @@ body{
|
|
|
249
255
|
vertical-align: top;
|
|
250
256
|
float:right;
|
|
251
257
|
}
|
|
258
|
+
.connect-resource-group{
|
|
259
|
+
width: 32px;
|
|
260
|
+
height: 32px;
|
|
261
|
+
text-align: center;
|
|
262
|
+
border-radius: 50%;
|
|
263
|
+
padding-top: 5px;
|
|
264
|
+
cursor: pointer;
|
|
265
|
+
vertical-align: top;
|
|
266
|
+
margin-left:26px;
|
|
267
|
+
}
|
|
252
268
|
.remove-resource-group:hover + .schema-group-nav{
|
|
253
269
|
color: #AA0000;
|
|
254
270
|
}
|
|
@@ -257,6 +273,12 @@ body{
|
|
|
257
273
|
stroke-width:7;
|
|
258
274
|
stroke:#555555;
|
|
259
275
|
}
|
|
276
|
+
.connect-resource-group:hover{
|
|
277
|
+
background: #0070d2;
|
|
278
|
+
}
|
|
279
|
+
.connect-resource-group:hover > svg > path{
|
|
280
|
+
fill:white;
|
|
281
|
+
}
|
|
260
282
|
.remove-resource-group:hover{
|
|
261
283
|
background: #0070d2;
|
|
262
284
|
}
|
|
@@ -362,6 +384,63 @@ body{
|
|
|
362
384
|
display:block;
|
|
363
385
|
}
|
|
364
386
|
|
|
387
|
+
.connect-modal-tabs{
|
|
388
|
+
width:100%;
|
|
389
|
+
height:41px;
|
|
390
|
+
}
|
|
391
|
+
.connect-modal-tab{
|
|
392
|
+
width:50%;
|
|
393
|
+
display: inline-block;
|
|
394
|
+
height:100%;
|
|
395
|
+
text-align: center;
|
|
396
|
+
padding-top:10px;
|
|
397
|
+
position: relative;
|
|
398
|
+
cursor: pointer;
|
|
399
|
+
color: #54698d;
|
|
400
|
+
}
|
|
401
|
+
.connect-modal-tab-selected{
|
|
402
|
+
background: rgb(244, 246, 249);
|
|
403
|
+
color: #16325c;
|
|
404
|
+
}
|
|
405
|
+
.connect-modal-tab-bar{
|
|
406
|
+
width:100%;
|
|
407
|
+
height:4px;
|
|
408
|
+
bottom:0;
|
|
409
|
+
left:0;
|
|
410
|
+
position: absolute;
|
|
411
|
+
background: #3a91dc;
|
|
412
|
+
display: none;
|
|
413
|
+
}
|
|
414
|
+
.connect-modal-tab-selected .connect-modal-tab-bar{
|
|
415
|
+
display: block;
|
|
416
|
+
}
|
|
417
|
+
.connect-modal-tab:hover{
|
|
418
|
+
background: rgb(244, 246, 249);
|
|
419
|
+
color: #16325c;
|
|
420
|
+
}
|
|
421
|
+
.external-keys-row{
|
|
422
|
+
border-bottom: 1px solid #CCCCCC;
|
|
423
|
+
padding:8px 0;
|
|
424
|
+
position:relative;
|
|
425
|
+
}
|
|
426
|
+
.external-keys-column{
|
|
427
|
+
display: inline-block;
|
|
428
|
+
width:47%;
|
|
429
|
+
text-align: center;
|
|
430
|
+
}
|
|
431
|
+
.delete-external-key-row{
|
|
432
|
+
position: absolute;
|
|
433
|
+
right:8px;
|
|
434
|
+
top:13px;
|
|
435
|
+
cursor:pointer;
|
|
436
|
+
}
|
|
437
|
+
.delete-external-key-svg path{
|
|
438
|
+
stroke:grey;
|
|
439
|
+
}
|
|
440
|
+
.delete-external-key-svg:hover path{
|
|
441
|
+
stroke:black;
|
|
442
|
+
}
|
|
443
|
+
|
|
365
444
|
/* ANIMATIONS */
|
|
366
445
|
|
|
367
446
|
.panel-enter{
|
|
@@ -477,10 +556,185 @@ body{
|
|
|
477
556
|
opacity: 0;
|
|
478
557
|
}
|
|
479
558
|
|
|
559
|
+
|
|
560
|
+
.schema-accordion-collapse{
|
|
561
|
+
overflow: visible;
|
|
562
|
+
height: 78px;
|
|
563
|
+
padding:0 12px;
|
|
564
|
+
}
|
|
565
|
+
.panel-collapse-enter{
|
|
566
|
+
-webkit-transition: height 0.2s;
|
|
567
|
+
transition: height 0.2s;
|
|
568
|
+
height:0px;
|
|
569
|
+
overflow: hidden;
|
|
570
|
+
}
|
|
571
|
+
.panel-collapse-enter-active{
|
|
572
|
+
height: 78px;
|
|
573
|
+
overflow: hidden;
|
|
574
|
+
}
|
|
575
|
+
.panel-collapse-leave{
|
|
576
|
+
-webkit-transition: height 0.2s;
|
|
577
|
+
transition: height 0.2s;
|
|
578
|
+
height: 78px;
|
|
579
|
+
overflow: hidden;
|
|
580
|
+
}
|
|
581
|
+
.panel-collapse-leave-active{
|
|
582
|
+
height: 0px;
|
|
583
|
+
overflow: hidden;
|
|
584
|
+
}
|
|
585
|
+
|
|
480
586
|
.react-draggable-dragging{
|
|
481
587
|
box-shadow: 2px 1px 4px 2px rgba(0,0,0,.3);
|
|
482
|
-
margin-left
|
|
588
|
+
margin-left:6px;
|
|
483
589
|
z-index: 9999 !important;
|
|
484
590
|
position:relative;
|
|
591
|
+
}.rc-time-picker {
|
|
592
|
+
display: inline-block;
|
|
593
|
+
box-sizing: border-box;
|
|
594
|
+
}
|
|
595
|
+
.rc-time-picker * {
|
|
596
|
+
box-sizing: border-box;
|
|
597
|
+
}
|
|
598
|
+
.rc-time-picker-input {
|
|
599
|
+
width: 100%;
|
|
600
|
+
position: relative;
|
|
601
|
+
display: inline-block;
|
|
602
|
+
padding: 4px 7px;
|
|
603
|
+
height: 28px;
|
|
604
|
+
cursor: text;
|
|
605
|
+
font-size: 12px;
|
|
606
|
+
line-height: 1.5;
|
|
607
|
+
color: #666;
|
|
608
|
+
background-color: #fff;
|
|
609
|
+
background-image: none;
|
|
610
|
+
border: 1px solid #d9d9d9;
|
|
611
|
+
border-radius: 6px;
|
|
612
|
+
-webkit-transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
613
|
+
transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
614
|
+
}
|
|
615
|
+
.rc-time-picker-panel {
|
|
616
|
+
z-index: 1070;
|
|
617
|
+
width: 170px;
|
|
618
|
+
position: absolute;
|
|
619
|
+
box-sizing: border-box;
|
|
620
|
+
}
|
|
621
|
+
.rc-time-picker-panel * {
|
|
622
|
+
box-sizing: border-box;
|
|
623
|
+
}
|
|
624
|
+
.rc-time-picker-panel-inner {
|
|
625
|
+
display: inline-block;
|
|
626
|
+
position: relative;
|
|
627
|
+
outline: none;
|
|
628
|
+
list-style: none;
|
|
629
|
+
font-size: 12px;
|
|
630
|
+
text-align: left;
|
|
631
|
+
background-color: #fff;
|
|
632
|
+
border-radius: 3px;
|
|
633
|
+
box-shadow: 0 1px 5px #ccc;
|
|
634
|
+
background-clip: padding-box;
|
|
635
|
+
border: 1px solid #ccc;
|
|
636
|
+
line-height: 1.5;
|
|
637
|
+
}
|
|
638
|
+
.rc-time-picker-panel-input {
|
|
639
|
+
margin: 0;
|
|
640
|
+
padding: 0;
|
|
641
|
+
width: 100%;
|
|
642
|
+
cursor: auto;
|
|
643
|
+
line-height: 1.5;
|
|
644
|
+
outline: 0;
|
|
645
|
+
border: 1px solid transparent;
|
|
646
|
+
}
|
|
647
|
+
.rc-time-picker-panel-input-wrap {
|
|
648
|
+
box-sizing: border-box;
|
|
649
|
+
position: relative;
|
|
650
|
+
padding: 6px;
|
|
651
|
+
border-bottom: 1px solid #e9e9e9;
|
|
652
|
+
}
|
|
653
|
+
.rc-time-picker-panel-input-invalid {
|
|
654
|
+
border-color: red;
|
|
655
|
+
}
|
|
656
|
+
.rc-time-picker-panel-clear-btn {
|
|
657
|
+
position: absolute;
|
|
658
|
+
right: 6px;
|
|
659
|
+
cursor: pointer;
|
|
660
|
+
overflow: hidden;
|
|
661
|
+
width: 20px;
|
|
662
|
+
height: 20px;
|
|
663
|
+
text-align: center;
|
|
664
|
+
line-height: 20px;
|
|
665
|
+
top: 6px;
|
|
666
|
+
margin: 0;
|
|
667
|
+
}
|
|
668
|
+
.rc-time-picker-panel-clear-btn:after {
|
|
669
|
+
content: "x";
|
|
670
|
+
font-size: 12px;
|
|
671
|
+
color: #aaa;
|
|
672
|
+
display: inline-block;
|
|
673
|
+
line-height: 1;
|
|
674
|
+
width: 20px;
|
|
675
|
+
-webkit-transition: color 0.3s ease;
|
|
676
|
+
transition: color 0.3s ease;
|
|
677
|
+
}
|
|
678
|
+
.rc-time-picker-panel-clear-btn:hover:after {
|
|
679
|
+
color: #666;
|
|
680
|
+
}
|
|
681
|
+
.rc-time-picker-panel-select {
|
|
682
|
+
float: left;
|
|
683
|
+
font-size: 12px;
|
|
684
|
+
border: 1px solid #e9e9e9;
|
|
685
|
+
border-width: 0 1px;
|
|
686
|
+
margin-left: -1px;
|
|
687
|
+
box-sizing: border-box;
|
|
688
|
+
width: 56px;
|
|
689
|
+
overflow: hidden;
|
|
690
|
+
position: relative;
|
|
691
|
+
}
|
|
692
|
+
.rc-time-picker-panel-select-active {
|
|
693
|
+
overflow-y: auto;
|
|
694
|
+
}
|
|
695
|
+
.rc-time-picker-panel-select:first-child {
|
|
696
|
+
border-left: 0;
|
|
697
|
+
margin-left: 0;
|
|
698
|
+
}
|
|
699
|
+
.rc-time-picker-panel-select:last-child {
|
|
700
|
+
border-right: 0;
|
|
701
|
+
}
|
|
702
|
+
.rc-time-picker-panel-select ul {
|
|
703
|
+
list-style: none;
|
|
704
|
+
box-sizing: border-box;
|
|
705
|
+
margin: 0;
|
|
706
|
+
padding: 0;
|
|
707
|
+
width: 100%;
|
|
708
|
+
max-height: 144px;
|
|
485
709
|
}
|
|
710
|
+
.rc-time-picker-panel-select li {
|
|
711
|
+
list-style: none;
|
|
712
|
+
box-sizing: content-box;
|
|
713
|
+
margin: 0;
|
|
714
|
+
padding: 0 0 0 16px;
|
|
715
|
+
width: 100%;
|
|
716
|
+
height: 24px;
|
|
717
|
+
line-height: 24px;
|
|
718
|
+
text-align: left;
|
|
719
|
+
cursor: pointer;
|
|
720
|
+
-webkit-user-select: none;
|
|
721
|
+
-moz-user-select: none;
|
|
722
|
+
-ms-user-select: none;
|
|
723
|
+
user-select: none;
|
|
724
|
+
}
|
|
725
|
+
.rc-time-picker-panel-select li:hover {
|
|
726
|
+
background: #edfaff;
|
|
727
|
+
}
|
|
728
|
+
li.rc-time-picker-panel-select-option-selected {
|
|
729
|
+
background: #edfaff;
|
|
730
|
+
color: #2db7f5;
|
|
731
|
+
}
|
|
732
|
+
li.rc-time-picker-panel-select-option-disabled {
|
|
733
|
+
color: #bfbfbf;
|
|
734
|
+
}
|
|
735
|
+
li.rc-time-picker-panel-select-option-disabled:hover {
|
|
736
|
+
background: transparent;
|
|
737
|
+
cursor: not-allowed;
|
|
738
|
+
}
|
|
739
|
+
|
|
486
740
|
/*# sourceMappingURL=main.css.map*/
|