@lingk/sync 0.0.10 → 0.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/css/lightning.css +56 -2
- package/build/css/lingk.css +48 -2
- package/build/lightning.js +332 -306
- package/build/lightning.js.map +1 -1
- package/build/lingk.js +319 -305
- package/build/lingk.js.map +1 -1
- package/build/reducer.js +2 -2
- package/build/reducer.js.map +1 -1
- package/package.json +4 -2
package/build/css/lightning.css
CHANGED
|
@@ -24,6 +24,14 @@ ul li, ol li {
|
|
|
24
24
|
}
|
|
25
25
|
.accordion-panel-header{
|
|
26
26
|
background: #0070d2;
|
|
27
|
+
-webkit-transition: all .2s;
|
|
28
|
+
transition: all .2s;
|
|
29
|
+
}
|
|
30
|
+
.accordion-panel-header-selected{
|
|
31
|
+
background: #005fb2;
|
|
32
|
+
}
|
|
33
|
+
.accordion-panel-header:hover{
|
|
34
|
+
background: #005fb2;
|
|
27
35
|
}
|
|
28
36
|
|
|
29
37
|
body{
|
|
@@ -67,13 +75,59 @@ body{
|
|
|
67
75
|
-webkit-user-select: none;
|
|
68
76
|
-ms-user-select: none;
|
|
69
77
|
user-select: none;
|
|
78
|
+
height: 50px;
|
|
70
79
|
}
|
|
71
80
|
.accordion-panel-header:hover{
|
|
72
81
|
text-decoration: underline;
|
|
73
82
|
}
|
|
74
83
|
.accordion-panel-collapse{
|
|
75
|
-
transition:
|
|
76
|
-
-webkit-transition:
|
|
84
|
+
transition: all 0.2s;
|
|
85
|
+
-webkit-transition: all 0.2s;
|
|
77
86
|
padding: 0 13px;
|
|
78
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
|
+
|
|
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
|
+
}
|
|
79
133
|
/*# sourceMappingURL=lightning.css.map*/
|
package/build/css/lingk.css
CHANGED
|
@@ -39,14 +39,60 @@ body{
|
|
|
39
39
|
-webkit-user-select: none;
|
|
40
40
|
-ms-user-select: none;
|
|
41
41
|
user-select: none;
|
|
42
|
+
height: 50px;
|
|
42
43
|
}
|
|
43
44
|
.accordion-panel-header:hover{
|
|
44
45
|
text-decoration: underline;
|
|
45
46
|
}
|
|
46
47
|
.accordion-panel-collapse{
|
|
47
|
-
transition:
|
|
48
|
-
-webkit-transition:
|
|
48
|
+
transition: all 0.2s;
|
|
49
|
+
-webkit-transition: all 0.2s;
|
|
49
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;
|
|
50
96
|
}body {
|
|
51
97
|
margin: 0;
|
|
52
98
|
padding: 0;
|