hamzus-ui 0.0.26 → 0.0.28
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.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +1 -1
- package/src/layout/Sidebar/SideBar.svelte +9 -0
package/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export { default as Checkbox } from "./src/components/hamzus-ui/Checkboxes/Check
|
|
|
23
23
|
export { default as Switch } from "./src/components/hamzus-ui/Swicth/Swicth.svelte"
|
|
24
24
|
|
|
25
25
|
// data
|
|
26
|
+
export * as Table from "./src/components/hamzus-ui/Table"
|
|
26
27
|
export { default as ProgressCircle } from "./src/components/hamzus-ui/ProgressCircle/ProgressCircle.svelte"
|
|
27
28
|
|
|
28
29
|
|
package/index.js
CHANGED
|
@@ -18,6 +18,7 @@ export { default as TextArea } from "./src/components/hamzus-ui/TextArea/TextAre
|
|
|
18
18
|
export { default as Checkbox } from "./src/components/hamzus-ui/Checkboxes/Checkbox/Checkbox.svelte"
|
|
19
19
|
export { default as Switch } from "./src/components/hamzus-ui/Swicth/Swicth.svelte"
|
|
20
20
|
// data
|
|
21
|
+
export * as Table from "./src/components/hamzus-ui/Table"
|
|
21
22
|
export { default as ProgressCircle } from "./src/components/hamzus-ui/ProgressCircle/ProgressCircle.svelte"
|
|
22
23
|
|
|
23
24
|
export * as DropdownMenu from "./src/components/hamzus-ui/DropdownMenu"
|
package/package.json
CHANGED
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
<nav class="sidebar {$open ? "open" : ""}">
|
|
35
35
|
<div class="sidebar-content">
|
|
36
36
|
<div class="top">
|
|
37
|
+
<slot name="logo"/>
|
|
37
38
|
<IconButton onClick={toggleNav} variant="ghost">
|
|
38
39
|
<svg
|
|
39
40
|
width="24"
|
|
@@ -85,6 +86,14 @@
|
|
|
85
86
|
.top{
|
|
86
87
|
padding-bottom: 7px;
|
|
87
88
|
}
|
|
89
|
+
.top{
|
|
90
|
+
width: 100%;
|
|
91
|
+
display: flex;
|
|
92
|
+
justify-content: end;
|
|
93
|
+
}
|
|
94
|
+
.top:global(:has( > :nth-child(2))) {
|
|
95
|
+
justify-content: space-between;
|
|
96
|
+
}
|
|
88
97
|
/*
|
|
89
98
|
old width margin
|
|
90
99
|
.nav-content.focus {
|