@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.
Files changed (32) hide show
  1. package/.gitmodules +3 -0
  2. package/.silex-client.js +4 -4
  3. package/.silex.js +8 -8
  4. package/_data/api-translations.json +8 -2
  5. package/_includes/api-websites.js.html +24 -1
  6. package/_includes/connectors.html +145 -166
  7. package/_includes/websites.html +155 -171
  8. package/_silex/old/meta.json +1 -0
  9. package/_site/css/connectors.css +1 -1
  10. package/_site/css/websites.css +1 -1
  11. package/_site/en/connectors/index.html +145 -166
  12. package/_site/en/index.html +179 -172
  13. package/_site/fr/connectors/index.html +145 -166
  14. package/_site/fr/index.html +179 -172
  15. package/package.json +2 -2
  16. package/pages/connectors.css.liquid +1 -1
  17. package/pages/en/index.md +2 -0
  18. package/pages/fr/index.md +2 -0
  19. package/pages/websites.css.liquid +1 -1
  20. package/_silex/default/meta.json +0 -1
  21. /package/_silex/{default → old}/assets/alex-hoyau.jpg +0 -0
  22. /package/_silex/{default → old}/assets/alex-small.jpg +0 -0
  23. /package/_silex/{default → old}/assets/bg-purpel-silex.webp +0 -0
  24. /package/_silex/{default → old}/assets/bg-silex-purpel.webp +0 -0
  25. /package/_silex/{default → old}/assets/empty-projects-sos.gif +0 -0
  26. /package/_silex/{default → old}/assets/empty-projects.gif +0 -0
  27. /package/_silex/{default → old}/assets/gitlab.svg +0 -0
  28. /package/_silex/{default → old}/assets/logo-silex.svg +0 -0
  29. /package/_silex/{default → old}/assets/picto-silex.png +0 -0
  30. /package/_silex/{default → old}/assets/picto-silex@3x.png +0 -0
  31. /package/_silex/{default → old}/assets/silex-icon-2018@200px.png +0 -0
  32. /package/_silex/{default → old}/website.json +0 -0
@@ -1,169 +1,149 @@
1
-
2
- <!DOCTYPE html>
3
- <html lang="">
4
- <head>
5
- <link rel="stylesheet" href="/css/connectors.css" />
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="en"
14
12
  href="/en/connectors" />
15
-
16
13
  <style>
17
- .before-js > * {
18
- visibility: hidden;
19
- opacity: 0;
20
- transition: opacity .5s ease;
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
- /*FX ANIMATIONS*/
82
- /*scale-round-inside*/
83
- .fx-scale-round {
84
- position:relative;
85
- z-index: 10;
86
- overflow: hidden;
87
- }
88
- .fx-scale-round::after {
89
- content: "";
90
- background: #ffffff;
91
- position: absolute;
92
- z-index: -1;
93
- border-radius: 50%;
94
- left: -50%;
95
- right: -50%;
96
- top: -100%;
97
- bottom: -100%;
98
- transform: scale(0, 0);
99
- transform-origin: center bottom;
100
- transition: all 0.3s ease-out;
101
-
102
- }
103
- .fx-scale-round:hover {
104
- transform-origin: center bottom;
105
- transform: scale(1.1);
106
- transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
107
- }
108
- .fx-scale-round:hover::after {
109
- transform: scale(1, 1);
110
- transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 2.8);
111
- }
112
- /*scale-round-inside*/
113
- /*scale*/
114
- .fx-scale: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
- /*flash*/
120
- .fx-underline:hover, .fx-flash:hover {
121
- animation: flash-in .5s ;
122
- }
123
- /* Underline animation */
124
- .fx-underline {
125
- position: relative;
126
- }
127
- /* Fade in */
128
- .fx-underline::after {
129
- content: '';
130
- position: absolute;
131
- bottom: -3px;
132
- left: 0;
133
- width: 100%;
134
- height: 0.1em;
135
- background-color: #8873fe;
136
- opacity: 0;
137
- transition: transform 0.2s cubic-bezier(0, -0.530, 0.405, 1.8);
138
- }
139
-
140
- .fx-underline:hover::after,
141
- .fx-underline:focus::after {
142
- opacity: 1;
143
- transform: translate3d(0, 2.2em, 0);
144
- }
145
-
146
- /* Scale from center */
147
- .fx-underline:after {
148
- transform: scale(0);
149
- transform-origin: center;
150
- }
151
-
152
- .fx-underline:hover::after,
153
- .fx-underline:focus::after{
154
- transform: scale(1);
155
- }
156
- /* Underline animation */
157
- /*flash-in animation*/
158
- @keyframes flash-in{
159
- 0% {opacity:0;}
160
- 100% {opacity:1;}
161
- }
162
- /*flash-in animation*/
163
-
164
- /*FX ANIMATIONS*/
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
- <script src="/js/vue.global.js"></script>
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
- <title></title>
264
- <link rel="icon" href="" />
265
- <meta property="description" content=""/>
266
- <meta property="og:title" content=""/>
267
- <meta property="og:description" content=""/>
268
- <meta property="og:image" content=""/>
269
- </head>
270
- <body
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
  >Déconnexion</div></div></div></body>
396
- </html>
397
-
376
+ </html>