hamzus-ui 0.0.202 → 0.0.204
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/index.js
CHANGED
|
@@ -47,7 +47,6 @@ export * as ResponsiveTable from "./src/components/hamzus-ui/ResponsiveTable"
|
|
|
47
47
|
export { default as Skeleton } from "./src/components/hamzus-ui/Skeleton/Skeleton.svelte"
|
|
48
48
|
export { default as LineLoader } from "./src/components/hamzus-ui/LineLoader/LineLoader.svelte"
|
|
49
49
|
export { default as RotativeLoader } from "./src/components/hamzus-ui/RotativeLoader/RotativeLoader.svelte"
|
|
50
|
-
export { default as LineLoader } from "./src/components/hamzus-ui/LineLoader/LineLoader.svelte"
|
|
51
50
|
export { default as ProgressCircle } from "./src/components/hamzus-ui/ProgressCircle/ProgressCircle.svelte"
|
|
52
51
|
|
|
53
52
|
// graphique
|
package/package.json
CHANGED
|
@@ -408,9 +408,10 @@
|
|
|
408
408
|
{#if pagination}
|
|
409
409
|
<div class="pagination">
|
|
410
410
|
<IconButton
|
|
411
|
+
size="26px"
|
|
411
412
|
onClick={handleGoLeft}
|
|
412
413
|
desabled={canPassToLeft}
|
|
413
|
-
variant="
|
|
414
|
+
variant="ghost"
|
|
414
415
|
style="border-top-right-radius: 0px;border-bottom-right-radius: 0px;"
|
|
415
416
|
>
|
|
416
417
|
<svg
|
|
@@ -432,7 +433,7 @@
|
|
|
432
433
|
</IconButton>
|
|
433
434
|
<DropdownMenu.Root>
|
|
434
435
|
<DropdownMenu.Trigger slot="trigger">
|
|
435
|
-
<IconButton variant="
|
|
436
|
+
<IconButton size="26px" variant="ghost" style="border-radius:0px;"
|
|
436
437
|
><h4>
|
|
437
438
|
{Math.floor($table.offset / $table.limit) + 1}
|
|
438
439
|
</h4></IconButton
|
|
@@ -462,10 +463,11 @@
|
|
|
462
463
|
</DropdownMenu.Root>
|
|
463
464
|
|
|
464
465
|
<IconButton
|
|
466
|
+
size="26px"
|
|
465
467
|
onClick={handleGoRight}
|
|
466
468
|
desabled={canPassToRight}
|
|
467
469
|
style="border-top-left-radius: 0px;border-bottom-left-radius: 0px;"
|
|
468
|
-
variant="
|
|
470
|
+
variant="ghost"
|
|
469
471
|
>
|
|
470
472
|
<svg
|
|
471
473
|
width="24"
|
|
@@ -606,6 +608,8 @@
|
|
|
606
608
|
}
|
|
607
609
|
.pagination {
|
|
608
610
|
display: flex;
|
|
611
|
+
border-radius: var(--pad-l);
|
|
612
|
+
border: 1px solid var(--stroke);
|
|
609
613
|
}
|
|
610
614
|
|
|
611
615
|
.actions {
|