@lingk/sync 0.0.14 → 0.0.16
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 +17 -95
- package/build/css/lingk.css +1 -96
- package/build/css/main.css +119 -0
- package/build/css/main.css.map +1 -0
- package/build/lightning.js +63 -4295
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +71 -4302
- package/build/lingk.js.map +1 -1
- package/build/main.js +4338 -0
- package/build/main.js.map +1 -0
- package/build/reducer.js +2 -2
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/css/lightning.css
CHANGED
|
@@ -4,6 +4,21 @@ body, td {
|
|
|
4
4
|
font-family: "Salesforce Sans", Arial, sans-serif !important;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
+
/* SLDS OVERWRITES */
|
|
8
|
+
button:focus {outline:0!important;}
|
|
9
|
+
a:focus {outline:0!important;}
|
|
10
|
+
.slds-checkbox [type="checkbox"]:focus + .slds-checkbox--faux,
|
|
11
|
+
.slds-checkbox [type="checkbox"]:focus ~ .slds-checkbox--faux,
|
|
12
|
+
.slds-checkbox [type="checkbox"]:focus + .slds-checkbox__label .slds-checkbox--faux {
|
|
13
|
+
content: '';
|
|
14
|
+
border-color: #d8dde6;
|
|
15
|
+
box-shadow: none; }
|
|
16
|
+
.slds-checkbox [type="checkbox"]:checked + .slds-checkbox--faux,
|
|
17
|
+
.slds-checkbox [type="checkbox"]:checked ~ .slds-checkbox--faux,
|
|
18
|
+
.slds-checkbox [type="checkbox"]:checked + .slds-checkbox__label .slds-checkbox--faux {
|
|
19
|
+
border-color: #9faab5;
|
|
20
|
+
background-color: white; }
|
|
21
|
+
|
|
7
22
|
.noSidebarCell, .sidebarCell .fixed{
|
|
8
23
|
margin: 0;
|
|
9
24
|
padding: 0 !important;
|
|
@@ -13,6 +28,8 @@ ul li, ol li {
|
|
|
13
28
|
margin-left: 0 !important;
|
|
14
29
|
}
|
|
15
30
|
|
|
31
|
+
/* UI */
|
|
32
|
+
|
|
16
33
|
.wizard-sidebar{
|
|
17
34
|
width:250px;
|
|
18
35
|
}
|
|
@@ -34,100 +51,5 @@ ul li, ol li {
|
|
|
34
51
|
background: #005fb2;
|
|
35
52
|
}
|
|
36
53
|
|
|
37
|
-
body{
|
|
38
|
-
margin: 0;
|
|
39
|
-
padding: 0;
|
|
40
|
-
-webkit-font-smoothing: antialiased;
|
|
41
|
-
}
|
|
42
|
-
.wizard-body{
|
|
43
|
-
width:100%;
|
|
44
|
-
height: 100%;
|
|
45
|
-
}
|
|
46
|
-
.wizard-sidebar{
|
|
47
|
-
display: inline-block;
|
|
48
|
-
height: 100%;
|
|
49
|
-
}
|
|
50
|
-
.wizard-content{
|
|
51
|
-
vertical-align:top;
|
|
52
|
-
padding:31px 28px 31px 45px;
|
|
53
|
-
display:inline-block;
|
|
54
|
-
height: 100%;
|
|
55
|
-
overflow-y: scroll;
|
|
56
|
-
}
|
|
57
|
-
.wizard-schema-field {
|
|
58
|
-
cursor:pointer;
|
|
59
|
-
}
|
|
60
|
-
.wizard-schema-field:hover {
|
|
61
|
-
background: #dfe0e0 !important;
|
|
62
|
-
}
|
|
63
|
-
.accordion-panel{
|
|
64
|
-
line-height: 1.4;
|
|
65
|
-
border-radius: 7px;
|
|
66
|
-
overflow: hidden;
|
|
67
|
-
margin-bottom: 6px;
|
|
68
|
-
}
|
|
69
|
-
.accordion-panel-header{
|
|
70
|
-
color: white;
|
|
71
|
-
padding: 9px 13px;
|
|
72
|
-
font-weight: bold;
|
|
73
|
-
cursor:pointer;
|
|
74
|
-
-moz-user-select: none;
|
|
75
|
-
-webkit-user-select: none;
|
|
76
|
-
-ms-user-select: none;
|
|
77
|
-
user-select: none;
|
|
78
|
-
height: 50px;
|
|
79
|
-
}
|
|
80
|
-
.accordion-panel-header:hover{
|
|
81
|
-
text-decoration: underline;
|
|
82
|
-
}
|
|
83
|
-
.accordion-panel-collapse{
|
|
84
|
-
transition: all 0.2s;
|
|
85
|
-
-webkit-transition: all 0.2s;
|
|
86
|
-
padding: 0 13px;
|
|
87
|
-
}
|
|
88
|
-
.transition{
|
|
89
|
-
transition: all 0.3s;
|
|
90
|
-
-webkit-transition: all 0.3s;
|
|
91
|
-
}
|
|
92
|
-
.schema-field:first-child {
|
|
93
|
-
margin-top: 3px;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
54
|
|
|
97
|
-
|
|
98
|
-
/* ANIMATIONS */
|
|
99
|
-
|
|
100
|
-
.panel-enter{
|
|
101
|
-
opacity: 0;
|
|
102
|
-
}
|
|
103
|
-
.panel-enter-active{
|
|
104
|
-
opacity: 1;
|
|
105
|
-
}
|
|
106
|
-
.panel-leave{
|
|
107
|
-
opacity: 1;
|
|
108
|
-
}
|
|
109
|
-
.panel-leave-active{
|
|
110
|
-
opacity: 0;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.fieldslabel-enter{
|
|
114
|
-
-webkit-transition: height 0.2s, opacity 0.3s;
|
|
115
|
-
transition: height 0.2s, opacity 0.3s;
|
|
116
|
-
height: 0;
|
|
117
|
-
opacity: 0;
|
|
118
|
-
}
|
|
119
|
-
.fieldslabel-enter-active{
|
|
120
|
-
height: 27px;
|
|
121
|
-
opacity: 1;
|
|
122
|
-
}
|
|
123
|
-
.fieldslabel-leave{
|
|
124
|
-
-webkit-transition: height 0.2s;
|
|
125
|
-
transition: height 0.2s;
|
|
126
|
-
height: 27px;
|
|
127
|
-
opacity: 1;
|
|
128
|
-
}
|
|
129
|
-
.fieldslabel-leave-active{
|
|
130
|
-
height: 0;
|
|
131
|
-
opacity: 0;
|
|
132
|
-
}
|
|
133
55
|
/*# sourceMappingURL=lightning.css.map*/
|
package/build/css/lingk.css
CHANGED
|
@@ -1,99 +1,4 @@
|
|
|
1
|
-
body{
|
|
2
|
-
margin: 0;
|
|
3
|
-
padding: 0;
|
|
4
|
-
-webkit-font-smoothing: antialiased;
|
|
5
|
-
}
|
|
6
|
-
.wizard-body{
|
|
7
|
-
width:100%;
|
|
8
|
-
height: 100%;
|
|
9
|
-
}
|
|
10
|
-
.wizard-sidebar{
|
|
11
|
-
display: inline-block;
|
|
12
|
-
height: 100%;
|
|
13
|
-
}
|
|
14
|
-
.wizard-content{
|
|
15
|
-
vertical-align:top;
|
|
16
|
-
padding:31px 28px 31px 45px;
|
|
17
|
-
display:inline-block;
|
|
18
|
-
height: 100%;
|
|
19
|
-
overflow-y: scroll;
|
|
20
|
-
}
|
|
21
|
-
.wizard-schema-field {
|
|
22
|
-
cursor:pointer;
|
|
23
|
-
}
|
|
24
|
-
.wizard-schema-field:hover {
|
|
25
|
-
background: #dfe0e0 !important;
|
|
26
|
-
}
|
|
27
|
-
.accordion-panel{
|
|
28
|
-
line-height: 1.4;
|
|
29
|
-
border-radius: 7px;
|
|
30
|
-
overflow: hidden;
|
|
31
|
-
margin-bottom: 6px;
|
|
32
|
-
}
|
|
33
|
-
.accordion-panel-header{
|
|
34
|
-
color: white;
|
|
35
|
-
padding: 9px 13px;
|
|
36
|
-
font-weight: bold;
|
|
37
|
-
cursor:pointer;
|
|
38
|
-
-moz-user-select: none;
|
|
39
|
-
-webkit-user-select: none;
|
|
40
|
-
-ms-user-select: none;
|
|
41
|
-
user-select: none;
|
|
42
|
-
height: 50px;
|
|
43
|
-
}
|
|
44
|
-
.accordion-panel-header:hover{
|
|
45
|
-
text-decoration: underline;
|
|
46
|
-
}
|
|
47
|
-
.accordion-panel-collapse{
|
|
48
|
-
transition: all 0.2s;
|
|
49
|
-
-webkit-transition: all 0.2s;
|
|
50
|
-
padding: 0 13px;
|
|
51
|
-
}
|
|
52
|
-
.transition{
|
|
53
|
-
transition: all 0.3s;
|
|
54
|
-
-webkit-transition: all 0.3s;
|
|
55
|
-
}
|
|
56
|
-
.schema-field:first-child {
|
|
57
|
-
margin-top: 3px;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
/* ANIMATIONS */
|
|
63
|
-
|
|
64
|
-
.panel-enter{
|
|
65
|
-
opacity: 0;
|
|
66
|
-
}
|
|
67
|
-
.panel-enter-active{
|
|
68
|
-
opacity: 1;
|
|
69
|
-
}
|
|
70
|
-
.panel-leave{
|
|
71
|
-
opacity: 1;
|
|
72
|
-
}
|
|
73
|
-
.panel-leave-active{
|
|
74
|
-
opacity: 0;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.fieldslabel-enter{
|
|
78
|
-
-webkit-transition: height 0.2s, opacity 0.3s;
|
|
79
|
-
transition: height 0.2s, opacity 0.3s;
|
|
80
|
-
height: 0;
|
|
81
|
-
opacity: 0;
|
|
82
|
-
}
|
|
83
|
-
.fieldslabel-enter-active{
|
|
84
|
-
height: 27px;
|
|
85
|
-
opacity: 1;
|
|
86
|
-
}
|
|
87
|
-
.fieldslabel-leave{
|
|
88
|
-
-webkit-transition: height 0.2s;
|
|
89
|
-
transition: height 0.2s;
|
|
90
|
-
height: 27px;
|
|
91
|
-
opacity: 1;
|
|
92
|
-
}
|
|
93
|
-
.fieldslabel-leave-active{
|
|
94
|
-
height: 0;
|
|
95
|
-
opacity: 0;
|
|
96
|
-
}body {
|
|
1
|
+
body {
|
|
97
2
|
margin: 0;
|
|
98
3
|
padding: 0;
|
|
99
4
|
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
* {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|
|
4
|
+
body{
|
|
5
|
+
margin: 0;
|
|
6
|
+
padding: 0;
|
|
7
|
+
-webkit-font-smoothing: antialiased;
|
|
8
|
+
}
|
|
9
|
+
.wizard-body{
|
|
10
|
+
width:100%;
|
|
11
|
+
height: 100%;
|
|
12
|
+
}
|
|
13
|
+
.wizard-sidebar{
|
|
14
|
+
display: inline-block;
|
|
15
|
+
height: 100%;
|
|
16
|
+
}
|
|
17
|
+
.wizard-content{
|
|
18
|
+
vertical-align:top;
|
|
19
|
+
padding:31px 28px 31px 45px;
|
|
20
|
+
display:inline-block;
|
|
21
|
+
height: 100%;
|
|
22
|
+
overflow-y: scroll;
|
|
23
|
+
}
|
|
24
|
+
.wizard-schema-field {
|
|
25
|
+
cursor:pointer;
|
|
26
|
+
}
|
|
27
|
+
.wizard-schema-field:hover {
|
|
28
|
+
background: #dfe0e0 !important;
|
|
29
|
+
}
|
|
30
|
+
.accordion-panel{
|
|
31
|
+
line-height: 1.4;
|
|
32
|
+
border-radius: 7px;
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
margin-bottom: 6px;
|
|
35
|
+
}
|
|
36
|
+
.accordion-panel-header{
|
|
37
|
+
color: white;
|
|
38
|
+
padding: 9px 13px;
|
|
39
|
+
font-weight: bold;
|
|
40
|
+
cursor:pointer;
|
|
41
|
+
-webkit-user-select: none;
|
|
42
|
+
-moz-user-select: none;
|
|
43
|
+
-ms-user-select: none;
|
|
44
|
+
user-select: none;
|
|
45
|
+
height: 50px;
|
|
46
|
+
}
|
|
47
|
+
.accordion-panel-header:hover{
|
|
48
|
+
text-decoration: underline;
|
|
49
|
+
}
|
|
50
|
+
.accordion-panel-close{
|
|
51
|
+
width: 32px;
|
|
52
|
+
height: 32px;
|
|
53
|
+
padding-top:7px;
|
|
54
|
+
text-align: center;
|
|
55
|
+
display: inline-block;
|
|
56
|
+
float: right;
|
|
57
|
+
border-radius: 50%;
|
|
58
|
+
margin-top:1px;
|
|
59
|
+
}
|
|
60
|
+
.accordion-panel-close:hover{
|
|
61
|
+
background: rgba(255,255,255,0.5);
|
|
62
|
+
}
|
|
63
|
+
.accordion-panel-collapse{
|
|
64
|
+
-webkit-transition: all 0.2s;
|
|
65
|
+
transition: all 0.2s;
|
|
66
|
+
padding: 0 13px;
|
|
67
|
+
}
|
|
68
|
+
.transition{
|
|
69
|
+
-webkit-transition: all 0.3s;
|
|
70
|
+
transition: all 0.3s;
|
|
71
|
+
}
|
|
72
|
+
.schema-field:first-child {
|
|
73
|
+
margin-top: 3px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
/* ANIMATIONS */
|
|
79
|
+
|
|
80
|
+
.panel-enter{
|
|
81
|
+
margin-top: 28px;
|
|
82
|
+
opacity: 0;
|
|
83
|
+
height: 0 !important;
|
|
84
|
+
}
|
|
85
|
+
.panel-enter-active{
|
|
86
|
+
margin-top: 28px;
|
|
87
|
+
opacity: 1;
|
|
88
|
+
height:auto;
|
|
89
|
+
}
|
|
90
|
+
.panel-leave{
|
|
91
|
+
opacity: 1;
|
|
92
|
+
height:auto;
|
|
93
|
+
}
|
|
94
|
+
.panel-leave-active{
|
|
95
|
+
opacity: 0;
|
|
96
|
+
height:0 !important;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.fieldslabel-enter{
|
|
100
|
+
-webkit-transition: height 0.3s, opacity 0.3s;
|
|
101
|
+
transition: height 0.3s, opacity 0.3s;
|
|
102
|
+
height: 0;
|
|
103
|
+
opacity: 0;
|
|
104
|
+
}
|
|
105
|
+
.fieldslabel-enter-active{
|
|
106
|
+
height: 28px;
|
|
107
|
+
opacity: 1;
|
|
108
|
+
}
|
|
109
|
+
.fieldslabel-leave{
|
|
110
|
+
-webkit-transition: height 0.3s;
|
|
111
|
+
transition: height 0.3s;
|
|
112
|
+
height: 28px;
|
|
113
|
+
opacity: 1;
|
|
114
|
+
}
|
|
115
|
+
.fieldslabel-leave-active{
|
|
116
|
+
height: 0;
|
|
117
|
+
opacity: 0;
|
|
118
|
+
}
|
|
119
|
+
/*# sourceMappingURL=main.css.map*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"css/main.css","sourceRoot":""}
|