hamzus-ui 0.0.198 → 0.0.199
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
CHANGED
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
<Tooltip.Trigger slot="trigger">
|
|
178
178
|
{#if $mobileFormat}
|
|
179
179
|
<IconButton
|
|
180
|
-
size="
|
|
180
|
+
size="20px"
|
|
181
181
|
variant="ghost"
|
|
182
182
|
onClick={() => {
|
|
183
183
|
handleSwitchFormat(false);
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
</IconButton>
|
|
219
219
|
{:else}
|
|
220
220
|
<IconButton
|
|
221
|
-
size="
|
|
221
|
+
size="20px"
|
|
222
222
|
variant="secondary"
|
|
223
223
|
onClick={() => {
|
|
224
224
|
handleSwitchFormat(false);
|
|
@@ -268,7 +268,7 @@
|
|
|
268
268
|
<Tooltip.Trigger slot="trigger">
|
|
269
269
|
{#if !$mobileFormat}
|
|
270
270
|
<IconButton
|
|
271
|
-
size="
|
|
271
|
+
size="20px"
|
|
272
272
|
variant="ghost"
|
|
273
273
|
onClick={() => {
|
|
274
274
|
handleSwitchFormat(true);
|
|
@@ -293,7 +293,7 @@
|
|
|
293
293
|
</IconButton>
|
|
294
294
|
{:else}
|
|
295
295
|
<IconButton
|
|
296
|
-
size="
|
|
296
|
+
size="20px"
|
|
297
297
|
variant="secondary"
|
|
298
298
|
onClick={() => {
|
|
299
299
|
handleSwitchFormat(true);
|
|
@@ -326,7 +326,7 @@
|
|
|
326
326
|
{#if $table.actions.length > 0 && $table.selection.length > 0}
|
|
327
327
|
<DropdownMenu.Root>
|
|
328
328
|
<DropdownMenu.Trigger slot="trigger">
|
|
329
|
-
<IconButton variant="
|
|
329
|
+
<IconButton variant="outline">
|
|
330
330
|
<svg
|
|
331
331
|
width="24"
|
|
332
332
|
height="24"
|
|
@@ -359,7 +359,7 @@
|
|
|
359
359
|
|
|
360
360
|
<DropdownMenu.Root>
|
|
361
361
|
<DropdownMenu.Trigger slot="trigger">
|
|
362
|
-
<Button variant="
|
|
362
|
+
<Button variant="outline" style="padding-top:var(--pad-s);padding-bottom:var(--pad-s);">
|
|
363
363
|
<svg
|
|
364
364
|
width="24"
|
|
365
365
|
height="24"
|
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
fill="#292D32"
|
|
381
381
|
/>
|
|
382
382
|
</svg>
|
|
383
|
-
<
|
|
383
|
+
<h6>colonnes</h6>
|
|
384
384
|
</Button>
|
|
385
385
|
</DropdownMenu.Trigger>
|
|
386
386
|
<DropdownMenu.Content slot="content">
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
<IconButton
|
|
411
411
|
onClick={handleGoLeft}
|
|
412
412
|
desabled={canPassToLeft}
|
|
413
|
-
variant="
|
|
413
|
+
variant="outline"
|
|
414
414
|
style="border-top-right-radius: 0px;border-bottom-right-radius: 0px;"
|
|
415
415
|
>
|
|
416
416
|
<svg
|
|
@@ -432,7 +432,7 @@
|
|
|
432
432
|
</IconButton>
|
|
433
433
|
<DropdownMenu.Root>
|
|
434
434
|
<DropdownMenu.Trigger slot="trigger">
|
|
435
|
-
<IconButton variant="
|
|
435
|
+
<IconButton variant="outline" style="border-radius:0px;"
|
|
436
436
|
><h4>
|
|
437
437
|
{Math.floor($table.offset / $table.limit) + 1}
|
|
438
438
|
</h4></IconButton
|
|
@@ -465,7 +465,7 @@
|
|
|
465
465
|
onClick={handleGoRight}
|
|
466
466
|
desabled={canPassToRight}
|
|
467
467
|
style="border-top-left-radius: 0px;border-bottom-left-radius: 0px;"
|
|
468
|
-
variant="
|
|
468
|
+
variant="outline"
|
|
469
469
|
>
|
|
470
470
|
<svg
|
|
471
471
|
width="24"
|
|
@@ -373,7 +373,7 @@
|
|
|
373
373
|
display: flex;
|
|
374
374
|
border-bottom: 1px solid var(--stroke);
|
|
375
375
|
user-select: none;
|
|
376
|
-
background-color: var(--bg-
|
|
376
|
+
background-color: var(--bg-blur);
|
|
377
377
|
position: sticky;
|
|
378
378
|
top: 0;
|
|
379
379
|
z-index: 1;
|
|
@@ -417,5 +417,18 @@
|
|
|
417
417
|
transform: translate(-50%, -50%);
|
|
418
418
|
width: 15px;
|
|
419
419
|
height: 100%;
|
|
420
|
+
z-index: 3;
|
|
420
421
|
}
|
|
422
|
+
|
|
423
|
+
.resizer::after{
|
|
424
|
+
content: '';
|
|
425
|
+
width: 1px;
|
|
426
|
+
height: 100%;
|
|
427
|
+
background-color: var(--stroke);
|
|
428
|
+
position: absolute;
|
|
429
|
+
top: 0px;
|
|
430
|
+
left: 0px;
|
|
431
|
+
transform: translate(-100%);
|
|
432
|
+
z-index: 2;
|
|
433
|
+
}
|
|
421
434
|
</style>
|