grav-svelte 0.0.88 → 0.0.90
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.
|
@@ -114,13 +114,12 @@
|
|
|
114
114
|
.filter-group {
|
|
115
115
|
display: inline-flex;
|
|
116
116
|
gap: 0.5rem;
|
|
117
|
-
padding: 0.5rem;
|
|
118
117
|
}
|
|
119
118
|
|
|
120
119
|
@media (min-width: 640px) {
|
|
121
120
|
.filter-group {
|
|
122
121
|
padding: 0;
|
|
123
|
-
gap: 0.
|
|
122
|
+
gap: 0.5rem;
|
|
124
123
|
margin-right: 0.5rem;
|
|
125
124
|
}
|
|
126
125
|
}
|
|
@@ -177,12 +177,9 @@
|
|
|
177
177
|
</button>
|
|
178
178
|
</Tooltip>
|
|
179
179
|
{/if}
|
|
180
|
-
</div>
|
|
181
|
-
<!-- Show Filters Button -->
|
|
182
|
-
<div class="filter-group" role="group">
|
|
183
180
|
{#if Filtros && Filtros.length > 0}
|
|
184
|
-
|
|
185
|
-
|
|
181
|
+
<Tooltip text="Ver filtros">
|
|
182
|
+
{#if showFilters}
|
|
186
183
|
<button
|
|
187
184
|
type="button"
|
|
188
185
|
on:click={() => (showFilters = !showFilters)}
|
|
@@ -190,9 +187,7 @@
|
|
|
190
187
|
>
|
|
191
188
|
<i class="fa-solid fa-sliders"></i>
|
|
192
189
|
</button>
|
|
193
|
-
|
|
194
|
-
{:else}
|
|
195
|
-
<Tooltip text="Ver filtros">
|
|
190
|
+
{:else}
|
|
196
191
|
<button
|
|
197
192
|
type="button"
|
|
198
193
|
on:click={() => (showFilters = !showFilters)}
|
|
@@ -200,8 +195,8 @@
|
|
|
200
195
|
>
|
|
201
196
|
<i class="fa-solid fa-sliders"></i>
|
|
202
197
|
</button>
|
|
203
|
-
|
|
204
|
-
|
|
198
|
+
{/if}
|
|
199
|
+
</Tooltip>
|
|
205
200
|
{/if}
|
|
206
201
|
{#if showSettingsButton}
|
|
207
202
|
<Tooltip text="Configuración">
|
|
@@ -215,8 +210,8 @@
|
|
|
215
210
|
</Tooltip>
|
|
216
211
|
{/if}
|
|
217
212
|
</div>
|
|
218
|
-
|
|
219
|
-
|
|
213
|
+
<!-- Show Filters Button -->
|
|
214
|
+
<div class="filter-group" role="group"></div>
|
|
220
215
|
</div>
|
|
221
216
|
</div>
|
|
222
217
|
<!-- Filtros Dynamic -->
|
|
@@ -288,8 +283,7 @@
|
|
|
288
283
|
{/each}
|
|
289
284
|
<!-- Filtro 2 -->
|
|
290
285
|
{#if showMostrandoInput}
|
|
291
|
-
|
|
292
|
-
<div class="filter-item ">
|
|
286
|
+
<div class="filter-item">
|
|
293
287
|
<InputFormText
|
|
294
288
|
label="Mostrando:"
|
|
295
289
|
bind:valueVar={localPageSizeStr}
|