@tiledesk/tiledesk-voice-twilio-connector 0.1.26-rc1 → 0.1.26-rc3
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/package.json +1 -1
- package/template/configure.html +15 -15
- package/template/css/configure.css +18 -0
- package/template/error.html +15 -16
package/package.json
CHANGED
package/template/configure.html
CHANGED
|
@@ -6,26 +6,26 @@
|
|
|
6
6
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
8
|
|
|
9
|
-
<!--
|
|
10
|
-
<link rel="stylesheet" href="https://
|
|
11
|
-
|
|
9
|
+
<!-- Bootstrap 5.3 CSS -->
|
|
10
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
|
|
11
|
+
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
|
|
12
|
+
crossorigin="anonymous">
|
|
12
13
|
|
|
13
|
-
<!--
|
|
14
|
-
<link rel="stylesheet" href="https://
|
|
15
|
-
integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
|
|
16
|
-
|
|
17
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
14
|
+
<!-- Font Awesome 7 (latest version) -->
|
|
15
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css" crossorigin="anonymous" />
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
<
|
|
17
|
+
<!-- Font Poppins -->
|
|
18
|
+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet" />
|
|
19
|
+
|
|
20
|
+
<!-- Custom CSS -->
|
|
21
|
+
<link rel="stylesheet" href="./css/configure.css">
|
|
21
22
|
|
|
22
|
-
<!--
|
|
23
|
-
<script src="https://
|
|
24
|
-
|
|
23
|
+
<!-- Bootstrap 5.3 JavaScript Bundle (include Popper) -->
|
|
24
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
|
25
|
+
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
|
|
26
|
+
crossorigin="anonymous">
|
|
25
27
|
</script>
|
|
26
28
|
|
|
27
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
28
|
-
<link rel="stylesheet" href="./css/configure.css">
|
|
29
29
|
|
|
30
30
|
<style>
|
|
31
31
|
body {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
body {
|
|
4
4
|
padding: 20px 0px;
|
|
5
|
+
font-size: 14px;
|
|
5
6
|
}
|
|
6
7
|
|
|
7
8
|
.header {
|
|
@@ -145,6 +146,12 @@ ul {
|
|
|
145
146
|
padding: 6px 36px 6px 14px;
|
|
146
147
|
}
|
|
147
148
|
|
|
149
|
+
input[readonly],
|
|
150
|
+
textarea[readonly] {
|
|
151
|
+
background-color: #eee !important;
|
|
152
|
+
opacity: 1;
|
|
153
|
+
}
|
|
154
|
+
|
|
148
155
|
.custom-input {
|
|
149
156
|
height: 45px;
|
|
150
157
|
box-shadow: 0px 0px 7px 0px #bdbdbd;
|
|
@@ -168,6 +175,15 @@ ul {
|
|
|
168
175
|
box-shadow: 0px 0px 7px 0px #bdbdbd;
|
|
169
176
|
border: solid 2px transparent;
|
|
170
177
|
border-radius: 6px;
|
|
178
|
+
appearance: none; /* Rimuove lo stile di default */
|
|
179
|
+
-webkit-appearance: none; /* Safari */
|
|
180
|
+
-moz-appearance: none; /* Firefox */
|
|
181
|
+
background-color: #fff;
|
|
182
|
+
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='gray' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14l-4.796-5.481C2.122 5.332 2.482 4.5 3.252 4.5h9.496c.77 0 1.13.832.801 1.159l-4.796 5.481a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
|
|
183
|
+
background-repeat: no-repeat;
|
|
184
|
+
background-position: right 0.75rem center; /* posizionamento freccia */
|
|
185
|
+
background-size: 12px;
|
|
186
|
+
padding-right: 2rem; /* spazio per la freccia */
|
|
171
187
|
}
|
|
172
188
|
|
|
173
189
|
.custom-select:hover {
|
|
@@ -199,6 +215,7 @@ ul {
|
|
|
199
215
|
width: 300px;
|
|
200
216
|
background-color: #8c8e8fbd;
|
|
201
217
|
font-size: 13px;
|
|
218
|
+
font-weight: 400;
|
|
202
219
|
color: #fff;
|
|
203
220
|
text-align: center;
|
|
204
221
|
padding: 8px 8px;
|
|
@@ -340,6 +357,7 @@ ul {
|
|
|
340
357
|
flex-direction: column;
|
|
341
358
|
align-items: center;
|
|
342
359
|
justify-content: center;
|
|
360
|
+
font-size: 14px;
|
|
343
361
|
}
|
|
344
362
|
|
|
345
363
|
.error-modal {
|
package/template/error.html
CHANGED
|
@@ -6,27 +6,26 @@
|
|
|
6
6
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
8
8
|
|
|
9
|
-
<!--
|
|
10
|
-
<link rel="stylesheet" href="https://
|
|
11
|
-
|
|
9
|
+
<!-- Bootstrap 5.3 CSS -->
|
|
10
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
|
|
11
|
+
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
|
|
12
|
+
crossorigin="anonymous">
|
|
12
13
|
|
|
13
|
-
<!--
|
|
14
|
-
<link rel="stylesheet" href="https://
|
|
15
|
-
integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
|
|
16
|
-
|
|
17
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
14
|
+
<!-- Font Awesome 7 (latest version) -->
|
|
15
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css" crossorigin="anonymous" />
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
<!-- Latest compiled and minified JavaScript -->
|
|
23
|
-
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"
|
|
24
|
-
integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous">
|
|
25
|
-
</script>
|
|
17
|
+
<!-- Font Poppins -->
|
|
18
|
+
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet" />
|
|
26
19
|
|
|
27
|
-
|
|
20
|
+
<!-- Custom CSS -->
|
|
28
21
|
<link rel="stylesheet" href="./css/error.css">
|
|
29
22
|
|
|
23
|
+
<!-- Bootstrap 5.3 JavaScript Bundle (include Popper) -->
|
|
24
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
|
|
25
|
+
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
|
|
26
|
+
crossorigin="anonymous">
|
|
27
|
+
</script>
|
|
28
|
+
|
|
30
29
|
<style>
|
|
31
30
|
body {
|
|
32
31
|
font-family: 'Poppins', serif;
|