@silexlabs/silex-dashboard 1.0.36 → 1.0.38
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/.gitmodules +3 -0
- package/.silex-client.js +4 -4
- package/.silex.js +8 -8
- package/_data/api-translations.json +8 -2
- package/_includes/api-websites.js.html +24 -1
- package/_includes/connectors.html +145 -166
- package/_includes/websites.html +155 -171
- package/_silex/old/meta.json +1 -0
- package/_site/css/connectors.css +1 -1
- package/_site/css/websites.css +1 -1
- package/_site/en/connectors/index.html +145 -166
- package/_site/en/index.html +179 -172
- package/_site/fr/connectors/index.html +145 -166
- package/_site/fr/index.html +179 -172
- package/package.json +2 -2
- package/pages/connectors.css.liquid +1 -1
- package/pages/en/index.md +2 -0
- package/pages/fr/index.md +2 -0
- package/pages/websites.css.liquid +1 -1
- package/_silex/default/meta.json +0 -1
- /package/_silex/{default → old}/assets/alex-hoyau.jpg +0 -0
- /package/_silex/{default → old}/assets/alex-small.jpg +0 -0
- /package/_silex/{default → old}/assets/bg-purpel-silex.webp +0 -0
- /package/_silex/{default → old}/assets/bg-silex-purpel.webp +0 -0
- /package/_silex/{default → old}/assets/empty-projects-sos.gif +0 -0
- /package/_silex/{default → old}/assets/empty-projects.gif +0 -0
- /package/_silex/{default → old}/assets/gitlab.svg +0 -0
- /package/_silex/{default → old}/assets/logo-silex.svg +0 -0
- /package/_silex/{default → old}/assets/picto-silex.png +0 -0
- /package/_silex/{default → old}/assets/picto-silex@3x.png +0 -0
- /package/_silex/{default → old}/assets/silex-icon-2018@200px.png +0 -0
- /package/_silex/{default → old}/website.json +0 -0
|
@@ -1,169 +1,149 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<!-- font google -->
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<link rel="stylesheet" href="/css/connectors.css" />
|
|
5
|
+
<!-- font google -->
|
|
7
6
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
8
7
|
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;700&display=swap" rel="stylesheet">
|
|
9
8
|
|
|
10
|
-
|
|
11
9
|
<link
|
|
12
10
|
rel="alternate"
|
|
13
11
|
hreflang="fr"
|
|
14
12
|
href="/fr/connectors" />
|
|
15
|
-
|
|
16
13
|
<style>
|
|
17
|
-
.before-js > * {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
.after-js > * {
|
|
23
|
-
visibility: visible;
|
|
24
|
-
opacity: 1;
|
|
25
|
-
}
|
|
26
|
-
.before-js:before {
|
|
27
|
-
content: 'Loading';
|
|
28
|
-
position: absolute;
|
|
29
|
-
top: 49%;
|
|
30
|
-
left: 49%;
|
|
31
|
-
}
|
|
32
|
-
.after-js:before {
|
|
33
|
-
content: none;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
body { color:#2B1B63;}
|
|
37
|
-
/*BTNS*/
|
|
38
|
-
.button, .pointer { cursor: pointer!important}
|
|
39
|
-
.button{min-width:110px;}
|
|
40
|
-
/*BTNS*/
|
|
41
|
-
a {
|
|
42
|
-
text-decoration: none;
|
|
43
|
-
color:#8873FE;}
|
|
44
|
-
a:hover { text-decoration: underline; }
|
|
45
|
-
.uppercase {text-transform: uppercase;}
|
|
46
|
-
|
|
47
|
-
/*footer position*/
|
|
48
|
-
.main-min-height {min-height: calc(100vh - 560px);}
|
|
49
|
-
/*footer position*/
|
|
50
|
-
|
|
51
|
-
/*label*/
|
|
52
|
-
::placeholder {color: #8873FE;}
|
|
53
|
-
input:focus {
|
|
54
|
-
border: 2px solid ##9977FE;
|
|
55
|
-
background-color:#ffffff;}
|
|
56
|
-
:focus { outline: none;}
|
|
57
|
-
/*label*/
|
|
58
|
-
.skeleton-anim:after {
|
|
59
|
-
width: 100%;
|
|
60
|
-
height: 100%;
|
|
61
|
-
position: absolute;
|
|
62
|
-
top: 0;
|
|
63
|
-
left: 0;
|
|
64
|
-
content: "";
|
|
65
|
-
background:
|
|
66
|
-
linear-gradient(0.25turn, transparent, rgba(255,255,255,.75), transparent),
|
|
67
|
-
linear-gradient(transparent, transparent),
|
|
68
|
-
radial-gradient(38px circle at 19px 19px, transparent 50%, transparent 51%),
|
|
69
|
-
linear-gradient(transparent, transparent);
|
|
70
|
-
background-repeat: no-repeat;
|
|
71
|
-
background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
|
|
72
|
-
background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
|
|
73
|
-
animation: loading 1.5s infinite;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
@keyframes loading {
|
|
77
|
-
to {
|
|
78
|
-
background-position: 200% 0, 0 0, 0 190px, 50px 195px;
|
|
14
|
+
.before-js > * {
|
|
15
|
+
visibility: hidden;
|
|
16
|
+
opacity: 0;
|
|
17
|
+
transition: opacity .5s ease;
|
|
79
18
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
}
|
|
119
|
-
/*
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
.
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
19
|
+
.after-js > * {
|
|
20
|
+
visibility: visible;
|
|
21
|
+
opacity: 1;
|
|
22
|
+
}
|
|
23
|
+
.before-js:before {
|
|
24
|
+
content: 'Loading';
|
|
25
|
+
position: absolute;
|
|
26
|
+
top: 49%;
|
|
27
|
+
left: 49%;
|
|
28
|
+
}
|
|
29
|
+
.after-js:before {
|
|
30
|
+
content: none;
|
|
31
|
+
}
|
|
32
|
+
/*BTNS*/
|
|
33
|
+
.button, .pointer {
|
|
34
|
+
cursor: pointer!important}
|
|
35
|
+
.button{
|
|
36
|
+
min-width:110px;
|
|
37
|
+
}
|
|
38
|
+
/*BTNS*/
|
|
39
|
+
a {
|
|
40
|
+
text-decoration: none;
|
|
41
|
+
color:#8873FE;
|
|
42
|
+
}
|
|
43
|
+
a:hover {
|
|
44
|
+
text-decoration: underline;
|
|
45
|
+
}
|
|
46
|
+
.uppercase {
|
|
47
|
+
text-transform: uppercase;
|
|
48
|
+
}
|
|
49
|
+
.underline:hover{
|
|
50
|
+
text-decoration: underline;
|
|
51
|
+
text-decoration-thickness: from-font;
|
|
52
|
+
text-underline-position: under;
|
|
53
|
+
}
|
|
54
|
+
/*footer position*/
|
|
55
|
+
.main-min-height {
|
|
56
|
+
min-height: calc(100vh - 560px);
|
|
57
|
+
}
|
|
58
|
+
/*footer position*/
|
|
59
|
+
/*label*/
|
|
60
|
+
::placeholder {
|
|
61
|
+
color: #8873FE;
|
|
62
|
+
}
|
|
63
|
+
input:focus {
|
|
64
|
+
border: 2px solid ##9977FE;
|
|
65
|
+
background-color:#ffffff;
|
|
66
|
+
}
|
|
67
|
+
:focus {
|
|
68
|
+
outline: none;
|
|
69
|
+
}
|
|
70
|
+
/*label*/
|
|
71
|
+
.skeleton-anim:after {
|
|
72
|
+
width: 100%;
|
|
73
|
+
height: 100%;
|
|
74
|
+
position: absolute;
|
|
75
|
+
top: 0;
|
|
76
|
+
left: 0;
|
|
77
|
+
content: "";
|
|
78
|
+
background:
|
|
79
|
+
linear-gradient(0.25turn, transparent, rgba(255,255,255,.75), transparent),
|
|
80
|
+
linear-gradient(transparent, transparent),
|
|
81
|
+
radial-gradient(38px circle at 19px 19px, transparent 50%, transparent 51%),
|
|
82
|
+
linear-gradient(transparent, transparent);
|
|
83
|
+
background-repeat: no-repeat;
|
|
84
|
+
background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
|
|
85
|
+
background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
|
|
86
|
+
animation: loading 1.5s infinite;
|
|
87
|
+
}
|
|
88
|
+
@keyframes loading {
|
|
89
|
+
to {
|
|
90
|
+
background-position: 200% 0, 0 0, 0 190px, 50px 195px;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
/*FX ANIMATIONS*/
|
|
94
|
+
/*scale-round-inside_pour-BTN*/
|
|
95
|
+
.fx-scale-round {
|
|
96
|
+
position:relative;
|
|
97
|
+
z-index: 10;
|
|
98
|
+
overflow: hidden;
|
|
99
|
+
}
|
|
100
|
+
.fx-scale-round::after {
|
|
101
|
+
content: "";
|
|
102
|
+
background: #ffffff;
|
|
103
|
+
position: absolute;
|
|
104
|
+
z-index: -1;
|
|
105
|
+
border-radius: 50%;
|
|
106
|
+
left: -50%;
|
|
107
|
+
right: -50%;
|
|
108
|
+
top: -100%;
|
|
109
|
+
bottom: -100%;
|
|
110
|
+
transform: scale(0, 0);
|
|
111
|
+
transform-origin: center bottom;
|
|
112
|
+
transition: all 0.3s ease-out;
|
|
113
|
+
}
|
|
114
|
+
.fx-scale-round:hover {
|
|
115
|
+
transform-origin: center bottom;
|
|
116
|
+
transform: scale(1.1);
|
|
117
|
+
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
118
|
+
}
|
|
119
|
+
.fx-scale-round:hover::after {
|
|
120
|
+
transform: scale(1, 1);
|
|
121
|
+
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
122
|
+
}
|
|
123
|
+
/*scale-round-inside_pour-BTN*/
|
|
124
|
+
/*scale*/
|
|
125
|
+
.fx-scale:hover {
|
|
126
|
+
transform-origin: center bottom;
|
|
127
|
+
transform: scale(1.1);
|
|
128
|
+
transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
|
|
129
|
+
}
|
|
130
|
+
/*flash*/
|
|
131
|
+
.fx-flash:hover {
|
|
132
|
+
animation: flash-in .5s ;
|
|
133
|
+
}
|
|
134
|
+
/*flash-in animation*/
|
|
135
|
+
@keyframes flash-in{
|
|
136
|
+
0% {
|
|
137
|
+
opacity:0;
|
|
138
|
+
}
|
|
139
|
+
100% {
|
|
140
|
+
opacity:1;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
/*flash-in animation*/
|
|
144
|
+
/*FX ANIMATIONS*/
|
|
165
145
|
</style>
|
|
166
|
-
|
|
146
|
+
<script src="/js/vue.global.js"></script>
|
|
167
147
|
<script src="/js/main.js"></script>
|
|
168
148
|
<script type="module">
|
|
169
149
|
window.addEventListener('load', function() {
|
|
@@ -260,14 +240,14 @@ window.addEventListener('load', function() {
|
|
|
260
240
|
})
|
|
261
241
|
</script>
|
|
262
242
|
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
<meta property="og:title" content=""/>
|
|
267
|
-
<meta property="og:description" content=""/>
|
|
268
|
-
<meta property="og:image" content=""/>
|
|
269
|
-
|
|
270
|
-
|
|
243
|
+
<title></title>
|
|
244
|
+
<link rel="icon" href="/assets/favicon-32x32.png" />
|
|
245
|
+
<meta name="description" property="description" content=""/>
|
|
246
|
+
<meta name="og:title" property="og:title" content=""/>
|
|
247
|
+
<meta name="og:description" property="og:description" content=""/>
|
|
248
|
+
<meta name="og:image" property="og:image" content=""/>
|
|
249
|
+
</head>
|
|
250
|
+
<body
|
|
271
251
|
id="i2hcfw"
|
|
272
252
|
class="body app"
|
|
273
253
|
|
|
@@ -393,5 +373,4 @@ window.addEventListener('load', function() {
|
|
|
393
373
|
v-if="error" @click="logout()"
|
|
394
374
|
|
|
395
375
|
>Logout</div></div></div></body>
|
|
396
|
-
|
|
397
|
-
|
|
376
|
+
</html>
|