iconograph-ui 1.2.26 → 1.3.1
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.
|
@@ -1,16 +1,113 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
import { json } from '@sveltejs/kit';
|
|
3
3
|
|
|
4
|
-
export async function GET({ request, cookies }) {
|
|
4
|
+
export async function GET({ request, url, cookies }) {
|
|
5
|
+
let limit = url.searchParams.get('limit');
|
|
6
|
+
let offset = url.searchParams.get('offset');
|
|
7
|
+
offset = offset ? offset : 1;
|
|
5
8
|
|
|
6
9
|
let response = [
|
|
7
|
-
{ id: "
|
|
8
|
-
{ id: "
|
|
9
|
-
{ id: "
|
|
10
|
-
{ id: "
|
|
11
|
-
{ id: "
|
|
12
|
-
{ id: "
|
|
10
|
+
{ id: "1001", name: "Saint Louis", city: "Paris", type: "HOMME", status: "ACTIVE" },
|
|
11
|
+
{ id: "1002", name: "Saint Jean", city: "Jérusalem", type: "HOMME", status: "DISABLED" },
|
|
12
|
+
{ id: "1003", name: "Sainte Blandine", city: "Lyon", type: "FEMME", status: "ACTIVE" },
|
|
13
|
+
{ id: "1004", name: "Saint Christophe", city: "Corinthe", type: "HOMME", status: "ACTIVE" },
|
|
14
|
+
{ id: "1005", name: "Sainte Rita", city: "Lupiano", type: "FEMME", status: "DELETED" },
|
|
15
|
+
{ id: "1006", name: "Saint François d'Assise", city: "Assise", type: "HOMME", status: "ACTIVE" },
|
|
16
|
+
{ id: "1007", name: "Sainte Claire", city: "Assise", type: "FEMME", status: "ACTIVE" },
|
|
17
|
+
{ id: "1008", name: "Saint Pierre", city: "Rome", type: "HOMME", status: "DISABLED" },
|
|
18
|
+
{ id: "1009", name: "Saint Paul", city: "Antioche", type: "HOMME", status: "ACTIVE" },
|
|
19
|
+
{ id: "1010", name: "Sainte Thérèse de Lisieux", city: "Lisieux", type: "FEMME", status: "ACTIVE" },
|
|
20
|
+
{ id: "1011", name: "Saint Augustin", city: "Hippo", type: "HOMME", status: "ACTIVE" },
|
|
21
|
+
{ id: "1012", name: "Saint Thomas d'Aquin", city: "Roccasecca", type: "HOMME", status: "ACTIVE" },
|
|
22
|
+
{ id: "1013", name: "Sainte Bernadette", city: "Lourdes", type: "FEMME", status: "DISABLED" },
|
|
23
|
+
{ id: "1014", name: "Saint Antoine de Padoue", city: "Padoue", type: "HOMME", status: "ACTIVE" },
|
|
24
|
+
{ id: "1015", name: "Saint Martin", city: "Tours", type: "HOMME", status: "DELETED" },
|
|
25
|
+
{ id: "1016", name: "Sainte Jeanne d’Arc", city: "Domrémy", type: "FEMME", status: "ACTIVE" },
|
|
26
|
+
{ id: "1017", name: "Saint Denis", city: "Paris", type: "HOMME", status: "ACTIVE" },
|
|
27
|
+
{ id: "1018", name: "Saint Nicolas", city: "Myre", type: "HOMME", status: "DISABLED" },
|
|
28
|
+
{ id: "1019", name: "Sainte Monique", city: "Tagaste", type: "FEMME", status: "ACTIVE" },
|
|
29
|
+
{ id: "1020", name: "Saint Joseph", city: "Nazareth", type: "HOMME", status: "ACTIVE" },
|
|
30
|
+
{ id: "1021", name: "Saint André", city: "Patras", type: "HOMME", status: "DELETED" },
|
|
31
|
+
{ id: "1022", name: "Sainte Marguerite", city: "Écosse", type: "FEMME", status: "ACTIVE" },
|
|
32
|
+
{ id: "1023", name: "Saint Georges", city: "Lydda", type: "HOMME", status: "ACTIVE" },
|
|
33
|
+
{ id: "1024", name: "Saint Patrick", city: "Irlande", type: "HOMME", status: "DISABLED" },
|
|
34
|
+
{ id: "1025", name: "Sainte Hélène", city: "Constantinople", type: "FEMME", status: "ACTIVE" },
|
|
35
|
+
{ id: "1026", name: "Saint Étienne", city: "Jérusalem", type: "HOMME", status: "ACTIVE" },
|
|
36
|
+
{ id: "1027", name: "Sainte Marie-Madeleine", city: "Magdala", type: "FEMME", status: "ACTIVE" },
|
|
37
|
+
{ id: "1028", name: "Saint Matthieu", city: "Capharnaüm", type: "HOMME", status: "DELETED" },
|
|
38
|
+
{ id: "1029", name: "Saint Marc", city: "Alexandrie", type: "HOMME", status: "ACTIVE" },
|
|
39
|
+
{ id: "1030", name: "Saint Luc", city: "Antioche", type: "HOMME", status: "ACTIVE" },
|
|
40
|
+
{ id: "1031", name: "Sainte Catherine de Sienne", city: "Sienne", type: "FEMME", status: "ACTIVE" },
|
|
41
|
+
{ id: "1032", name: "Saint Benoît", city: "Nursie", type: "HOMME", status: "DISABLED" },
|
|
42
|
+
{ id: "1033", name: "Saint Ignace de Loyola", city: "Loyola", type: "HOMME", status: "ACTIVE" },
|
|
43
|
+
{ id: "1034", name: "Saint Jean Bosco", city: "Turin", type: "HOMME", status: "ACTIVE" },
|
|
44
|
+
{ id: "1035", name: "Sainte Faustine", city: "Cracovie", type: "FEMME", status: "DELETED" },
|
|
45
|
+
{ id: "1036", name: "Saint Cyrille", city: "Alexandrie", type: "HOMME", status: "ACTIVE" },
|
|
46
|
+
{ id: "1037", name: "Saint Méthode", city: "Salonique", type: "HOMME", status: "ACTIVE" },
|
|
47
|
+
{ id: "1038", name: "Sainte Cécile", city: "Rome", type: "FEMME", status: "ACTIVE" },
|
|
48
|
+
{ id: "1039", name: "Saint Ambroise", city: "Milan", type: "HOMME", status: "DISABLED" },
|
|
49
|
+
{ id: "1040", name: "Saint Grégoire", city: "Rome", type: "HOMME", status: "ACTIVE" },
|
|
50
|
+
{ id: "1041", name: "Saint Léon", city: "Rome", type: "HOMME", status: "ACTIVE" },
|
|
51
|
+
{ id: "1042", name: "Sainte Élisabeth", city: "Hongrie", type: "FEMME", status: "ACTIVE" },
|
|
52
|
+
{ id: "1043", name: "Saint Sébastien", city: "Rome", type: "HOMME", status: "DELETED" },
|
|
53
|
+
{ id: "1044", name: "Saint Laurent", city: "Rome", type: "HOMME", status: "ACTIVE" },
|
|
54
|
+
{ id: "1045", name: "Sainte Agnès", city: "Rome", type: "FEMME", status: "ACTIVE" },
|
|
55
|
+
{ id: "1046", name: "Saint Basile", city: "Césarée", type: "HOMME", status: "DISABLED" },
|
|
56
|
+
{ id: "1047", name: "Saint Athanase", city: "Alexandrie", type: "HOMME", status: "ACTIVE" },
|
|
57
|
+
{ id: "1048", name: "Saint Anselme", city: "Aoste", type: "HOMME", status: "ACTIVE" },
|
|
58
|
+
{ id: "1049", name: "Sainte Brigitte", city: "Suède", type: "FEMME", status: "ACTIVE" },
|
|
59
|
+
{ id: "1050", name: "Saint Albert", city: "Cologne", type: "HOMME", status: "ACTIVE" },
|
|
60
|
+
{ id: "1051", name: "Saint Louis-Marie Grignion", city: "Montfort", type: "HOMME", status: "ACTIVE" },
|
|
61
|
+
{ id: "1052", name: "Saint Charles Borromée", city: "Milan", type: "HOMME", status: "DISABLED" },
|
|
62
|
+
{ id: "1053", name: "Sainte Geneviève", city: "Paris", type: "FEMME", status: "ACTIVE" },
|
|
63
|
+
{ id: "1054", name: "Saint Philibert", city: "Tournus", type: "HOMME", status: "DELETED" },
|
|
64
|
+
{ id: "1055", name: "Saint Dominique", city: "Caleruega", type: "HOMME", status: "ACTIVE" },
|
|
65
|
+
{ id: "1056", name: "Sainte Scholastique", city: "Nursie", type: "FEMME", status: "ACTIVE" },
|
|
66
|
+
{ id: "1057", name: "Saint François Xavier", city: "Navarre", type: "HOMME", status: "ACTIVE" },
|
|
67
|
+
{ id: "1058", name: "Saint Vincent de Paul", city: "Pouy", type: "HOMME", status: "DISABLED" },
|
|
68
|
+
{ id: "1059", name: "Sainte Louise de Marillac", city: "Paris", type: "FEMME", status: "ACTIVE" },
|
|
69
|
+
{ id: "1060", name: "Saint Camille de Lellis", city: "Bucchianico", type: "HOMME", status: "ACTIVE" },
|
|
70
|
+
{ id: "1061", name: "Saint Alphonse de Liguori", city: "Naples", type: "HOMME", status: "ACTIVE" },
|
|
71
|
+
{ id: "1062", name: "Sainte Anne", city: "Jérusalem", type: "FEMME", status: "DELETED" },
|
|
72
|
+
{ id: "1063", name: "Saint Joachim", city: "Jérusalem", type: "HOMME", status: "ACTIVE" },
|
|
73
|
+
{ id: "1064", name: "Saint Isaac", city: "Ninive", type: "HOMME", status: "ACTIVE" },
|
|
74
|
+
{ id: "1065", name: "Sainte Véronique", city: "Jérusalem", type: "FEMME", status: "DISABLED" },
|
|
75
|
+
{ id: "1066", name: "Saint Éphrem", city: "Nisibe", type: "HOMME", status: "ACTIVE" },
|
|
76
|
+
{ id: "1067", name: "Saint Maxime", city: "Chalcedoine", type: "HOMME", status: "ACTIVE" },
|
|
77
|
+
{ id: "1068", name: "Sainte Julienne", city: "Cornillon", type: "FEMME", status: "ACTIVE" },
|
|
78
|
+
{ id: "1069", name: "Saint Prosper", city: "Aquitaine", type: "HOMME", status: "ACTIVE" },
|
|
79
|
+
{ id: "1070", name: "Saint Hilaire", city: "Poitiers", type: "HOMME", status: "DELETED" },
|
|
80
|
+
{ id: "1071", name: "Saint Irénée", city: "Lyon", type: "HOMME", status: "ACTIVE" },
|
|
81
|
+
{ id: "1072", name: "Sainte Odile", city: "Alsace", type: "FEMME", status: "ACTIVE" },
|
|
82
|
+
{ id: "1073", name: "Saint Clément", city: "Rome", type: "HOMME", status: "ACTIVE" },
|
|
83
|
+
{ id: "1074", name: "Saint Barnabé", city: "Chypre", type: "HOMME", status: "DISABLED" },
|
|
84
|
+
{ id: "1075", name: "Sainte Philomène", city: "Rome", type: "FEMME", status: "ACTIVE" },
|
|
85
|
+
{ id: "1076", name: "Saint Barthélemy", city: "Arménie", type: "HOMME", status: "ACTIVE" },
|
|
86
|
+
{ id: "1077", name: "Saint Simon", city: "Canaan", type: "HOMME", status: "DELETED" },
|
|
87
|
+
{ id: "1078", name: "Saint Jude", city: "Édesse", type: "HOMME", status: "ACTIVE" },
|
|
88
|
+
{ id: "1079", name: "Saint Jacques", city: "Compostelle", type: "HOMME", status: "ACTIVE" },
|
|
89
|
+
{ id: "1080", name: "Sainte Apolline", city: "Alexandrie", type: "FEMME", status: "ACTIVE" },
|
|
90
|
+
{ id: "1081", name: "Saint Cyr", city: "Tarse", type: "HOMME", status: "DISABLED" },
|
|
91
|
+
{ id: "1082", name: "Sainte Perpétue", city: "Carthage", type: "FEMME", status: "ACTIVE" },
|
|
92
|
+
{ id: "1083", name: "Sainte Félicité", city: "Carthage", type: "FEMME", status: "ACTIVE" },
|
|
93
|
+
{ id: "1084", name: "Saint Polycarpe", city: "Smyrne", type: "HOMME", status: "ACTIVE" },
|
|
94
|
+
{ id: "1085", name: "Saint Justin", city: "Naplouse", type: "HOMME", status: "DELETED" },
|
|
95
|
+
{ id: "1086", name: "Saint Clovis", city: "Soissons", type: "HOMME", status: "ACTIVE" },
|
|
96
|
+
{ id: "1087", name: "Sainte Bathilde", city: "Chelles", type: "FEMME", status: "ACTIVE" },
|
|
97
|
+
{ id: "1088", name: "Saint Louis de Gonzague", city: "Mantoue", type: "HOMME", status: "ACTIVE" },
|
|
98
|
+
{ id: "1089", name: "Sainte Madeleine Sophie", city: "Joigny", type: "FEMME", status: "ACTIVE" },
|
|
99
|
+
{ id: "1090", name: "Saint Claude", city: "Besançon", type: "HOMME", status: "DISABLED" },
|
|
100
|
+
{ id: "1091", name: "Saint Bernard", city: "Clairvaux", type: "HOMME", status: "ACTIVE" },
|
|
101
|
+
{ id: "1092", name: "Sainte Juliette", city: "Césarée", type: "FEMME", status: "ACTIVE" },
|
|
102
|
+
{ id: "1093", name: "Saint Pierre Claver", city: "Verdú", type: "HOMME", status: "ACTIVE" },
|
|
103
|
+
{ id: "1094", name: "Saint François de Sales", city: "Annecy", type: "HOMME", status: "ACTIVE" },
|
|
104
|
+
{ id: "1095", name: "Sainte Jeanne de Chantal", city: "Bourgogne", type: "FEMME", status: "DELETED" },
|
|
105
|
+
{ id: "1096", name: "Saint Prosper d'Aquitaine", city: "Aquitaine", type: "HOMME", status: "ACTIVE" },
|
|
106
|
+
{ id: "1097", name: "Saint Raymond", city: "Barcelone", type: "HOMME", status: "ACTIVE" },
|
|
107
|
+
{ id: "1098", name: "Sainte Marguerite-Marie", city: "Paray-le-Monial", type: "FEMME", status: "ACTIVE" },
|
|
108
|
+
{ id: "1099", name: "Saint Jean-Marie Vianney", city: "Ars", type: "HOMME", status: "ACTIVE" },
|
|
109
|
+
{ id: "1100", name: "Sainte Édith", city: "Angleterre", type: "FEMME", status: "ACTIVE" }
|
|
13
110
|
]
|
|
14
111
|
|
|
15
|
-
return json({ data: response }, { status:
|
|
112
|
+
return json({ data: response.slice((offset - 1) * limit, offset * limit), count: response.length }, { status: 200 });
|
|
16
113
|
}
|
package/lib/table/Table.svelte
CHANGED
|
@@ -3,16 +3,18 @@
|
|
|
3
3
|
import { onMount } from 'svelte';
|
|
4
4
|
import TableRow from "./TableRow.svelte";
|
|
5
5
|
import TableFilter from './TableFilter.svelte';
|
|
6
|
+
import TablePagination from './TablePagination.svelte';
|
|
6
7
|
|
|
7
8
|
export let columns = [];
|
|
8
9
|
export let uri;
|
|
9
10
|
export let actions = false;
|
|
11
|
+
export let pagination = false;
|
|
12
|
+
export let filters = false;
|
|
10
13
|
|
|
11
14
|
let waiting = false;
|
|
12
15
|
let selected = {};
|
|
13
|
-
let pagination = false;
|
|
14
16
|
let total = 0;
|
|
15
|
-
let limit =
|
|
17
|
+
let limit = 25;
|
|
16
18
|
let page = 1;
|
|
17
19
|
|
|
18
20
|
let data = [];
|
|
@@ -47,13 +49,14 @@
|
|
|
47
49
|
async function getData() {
|
|
48
50
|
waiting = true;
|
|
49
51
|
|
|
50
|
-
const response = await fetch(`${uri}?limit=${limit}&
|
|
52
|
+
const response = await fetch(`${uri}?limit=${limit}&offset=${(page - 1) * limit}`, {
|
|
51
53
|
method: 'GET',
|
|
52
54
|
headers: { 'Content-Type': 'application/json' }
|
|
53
55
|
});
|
|
54
56
|
|
|
55
57
|
const resBody = await response.json();
|
|
56
58
|
data = resBody.data;
|
|
59
|
+
total = resBody.count ? resBody.count : 0;
|
|
57
60
|
|
|
58
61
|
selected = {};
|
|
59
62
|
waiting = false;
|
|
@@ -74,7 +77,6 @@
|
|
|
74
77
|
|
|
75
78
|
</script>
|
|
76
79
|
|
|
77
|
-
<!--<div style="max-width: min(calc(100% - 24px), 1100px) !important;">-->
|
|
78
80
|
<div class="table-wrapper">
|
|
79
81
|
<div>
|
|
80
82
|
<!--<div >
|
|
@@ -86,20 +88,15 @@
|
|
|
86
88
|
<h4>{data.length} Schedules Rules</h4>
|
|
87
89
|
<span>({Object.values(selected).filter(Boolean).length} sélectionnées)</span>
|
|
88
90
|
</div>
|
|
89
|
-
<div style="display: flex; gap: 12px;">
|
|
90
|
-
<select bind:value={status} on:change={resetAndGetData} disabled={waiting} >
|
|
91
|
-
{#each statuses as option}
|
|
92
|
-
<option value={option.value}> {option.name} </option>
|
|
93
|
-
{/each}
|
|
94
|
-
</select>
|
|
95
|
-
|
|
96
|
-
</div>
|
|
97
91
|
</div>
|
|
98
92
|
{/if}
|
|
99
93
|
</div>
|
|
100
94
|
</div>-->
|
|
101
95
|
|
|
102
|
-
|
|
96
|
+
{#if filters}
|
|
97
|
+
<TableFilter columns={columns}></TableFilter>
|
|
98
|
+
{/if}
|
|
99
|
+
|
|
103
100
|
<div class="table-header">
|
|
104
101
|
<div><div>
|
|
105
102
|
{#each columns as c}
|
|
@@ -117,27 +114,12 @@
|
|
|
117
114
|
|
|
118
115
|
<div class="table-body">
|
|
119
116
|
{#each data as d }
|
|
120
|
-
|
|
121
|
-
</TableRow>
|
|
117
|
+
<TableRow actions={actions} columns={columns} row={d}></TableRow>
|
|
122
118
|
{/each}
|
|
123
119
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
Page <input type="number" bind:value={page} on:change={getData} disabled={waiting}/>
|
|
128
|
-
/ {Math.round(total / limit)}
|
|
129
|
-
</div>
|
|
130
|
-
<div>
|
|
131
|
-
<select bind:value={limit} on:change={resetAndGetData} disabled={waiting} >
|
|
132
|
-
<option value="50">50</option>
|
|
133
|
-
<option value="100">100</option>
|
|
134
|
-
<option value="500">500</option>
|
|
135
|
-
<option value="1000">1000</option>
|
|
136
|
-
</select>
|
|
137
|
-
/ page
|
|
138
|
-
</div>
|
|
139
|
-
</div>
|
|
140
|
-
{/if}-->
|
|
120
|
+
{#if pagination && data.length > 0}
|
|
121
|
+
<TablePagination bind:page={page} bind:limit={limit} bind:waiting={waiting} bind:total={total} on:pageChange={getData} on:limitChange={resetAndGetData} ></TablePagination>
|
|
122
|
+
{/if}
|
|
141
123
|
|
|
142
124
|
{#if data.length == 0}
|
|
143
125
|
<span>Aucune donnée disponible</span>
|
|
@@ -249,29 +231,5 @@
|
|
|
249
231
|
font-weight: 600;
|
|
250
232
|
font-size: 14px;
|
|
251
233
|
}
|
|
252
|
-
|
|
253
|
-
background-color: #f7f7f7;
|
|
254
|
-
border-bottom: 1px solid #e5e5e5;
|
|
255
|
-
width: calc(100% - 56px);
|
|
256
|
-
height: 48px;
|
|
257
|
-
padding: 0px 28px;
|
|
258
|
-
display: flex;
|
|
259
|
-
align-items: center;
|
|
260
|
-
justify-content: space-between;
|
|
261
|
-
color: #555;
|
|
262
|
-
font-weight: 600;
|
|
263
|
-
font-size: 14px;
|
|
264
|
-
display: flex;
|
|
265
|
-
justify-content: center;
|
|
266
|
-
width: calc(100% - 56px);
|
|
267
|
-
}
|
|
268
|
-
.footer-pagination input[type="number"]{
|
|
269
|
-
width: 50px;
|
|
270
|
-
background-color: #fff;
|
|
271
|
-
margin: 0px 6px;
|
|
272
|
-
}
|
|
273
|
-
.footer-pagination select{
|
|
274
|
-
background-color: #fff;
|
|
275
|
-
margin-left: 60px;
|
|
276
|
-
}
|
|
234
|
+
|
|
277
235
|
</style>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import { createEventDispatcher } from 'svelte'
|
|
3
|
+
const dispatch = createEventDispatcher()
|
|
4
|
+
|
|
5
|
+
export let page;
|
|
6
|
+
export let limit;
|
|
7
|
+
export let waiting;
|
|
8
|
+
export let total;
|
|
9
|
+
|
|
10
|
+
</script>
|
|
11
|
+
|
|
12
|
+
<div class="footer-pagination" >
|
|
13
|
+
<div>
|
|
14
|
+
Page <input type="number" bind:value={page} onchange={() => { dispatch('pageChange', {})}} disabled={waiting}/>
|
|
15
|
+
/ {Math.round(total / limit)}
|
|
16
|
+
</div>
|
|
17
|
+
<div>
|
|
18
|
+
<select bind:value={limit} onchange={() => { dispatch('limitChange', {})}} disabled={waiting} >
|
|
19
|
+
{#each [5, 10, 25, 50, 100, 500] as v }
|
|
20
|
+
<option value={v} selected={v == limit} >{v}</option>
|
|
21
|
+
{/each}
|
|
22
|
+
</select>
|
|
23
|
+
/ page
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
|
|
27
|
+
<style>
|
|
28
|
+
.footer-pagination {
|
|
29
|
+
background-color: #f7f7f7;
|
|
30
|
+
border-bottom: 1px solid #e5e5e5;
|
|
31
|
+
width: calc(100% - 56px);
|
|
32
|
+
height: 48px;
|
|
33
|
+
padding: 0px 28px;
|
|
34
|
+
display: flex;
|
|
35
|
+
align-items: center;
|
|
36
|
+
justify-content: space-between;
|
|
37
|
+
color: #555;
|
|
38
|
+
font-weight: 600;
|
|
39
|
+
font-size: 14px;
|
|
40
|
+
display: flex;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
width: calc(100% - 56px);
|
|
43
|
+
}
|
|
44
|
+
.footer-pagination input[type="number"]{
|
|
45
|
+
width: 50px;
|
|
46
|
+
background-color: #fff;
|
|
47
|
+
margin: 0px 6px;
|
|
48
|
+
}
|
|
49
|
+
.footer-pagination select{
|
|
50
|
+
background-color: #fff;
|
|
51
|
+
margin-left: 60px;
|
|
52
|
+
}
|
|
53
|
+
input, select {
|
|
54
|
+
background-color: var(--theme-input-bg-color, #ebebed);
|
|
55
|
+
height: 32px;
|
|
56
|
+
border: var(--theme-input-border, none);
|
|
57
|
+
border-radius: 8px;
|
|
58
|
+
padding: 0px 16px;
|
|
59
|
+
font-size: 14px;
|
|
60
|
+
line-height: 16px;
|
|
61
|
+
font-weight: 400;
|
|
62
|
+
font-family: var(--theme-text-font);
|
|
63
|
+
color: var(--theme-input-text-font);
|
|
64
|
+
cursor: pointer;
|
|
65
|
+
}
|
|
66
|
+
</style>
|