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.2rem;
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
- {#if showFilters}
185
- <Tooltip text="Ver filtros">
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
- </Tooltip>
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
- </Tooltip>
204
- {/if}
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}
@@ -40,7 +40,7 @@
40
40
  {#if expandEnabled}
41
41
  <th
42
42
  class="table-header-cell expand-header non-sortable {!dragEnabled
43
- ? 'header-sticky-intersection borderleft'
43
+ ? 'header-sticky-intersection '
44
44
  : ''}"
45
45
  >
46
46
  </th>
@@ -414,7 +414,7 @@
414
414
 
415
415
  .editable-checkbox.checked {
416
416
  background-color: var(--grav-crud-color-neutral);
417
- color: var(--grav-crud-color-border);
417
+ color: var(--grav-crud-color-bg);
418
418
  border-color: var(--grav-crud-color-neutral);
419
419
  }
420
420
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grav-svelte",
3
- "version": "0.0.88",
3
+ "version": "0.0.90",
4
4
  "description": "A collection of Svelte components",
5
5
  "license": "MIT",
6
6
  "scripts": {