hamzus-ui 0.0.216 → 0.0.218

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hamzus-ui",
3
- "version": "0.0.216",
3
+ "version": "0.0.218",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "svelte": "index.js",
@@ -133,7 +133,7 @@ $: console.log(lastWidth);
133
133
  height: 100dvh;
134
134
  background-color: var(--bg-1);
135
135
  border-right: 1px solid var(--stroke);
136
- z-index: 10000;
136
+ z-index: 98;
137
137
  transition: width 0.1s ease-out;
138
138
  overflow: clip;
139
139
  }
@@ -160,7 +160,7 @@ $: console.log(lastWidth);
160
160
  top: 0px;
161
161
  left: var(--sidebar-width);
162
162
  height: 100dvh;
163
- z-index: 100000;
163
+ z-index: 99;
164
164
  transition: left 0.1s ease-out;
165
165
  }
166
166
 
@@ -21,5 +21,5 @@ export function setCookie(
21
21
  name,
22
22
  value,
23
23
  ) {
24
- document.cookie = `${name}=${value}; path=/; secure; SameSite=Strict`;
24
+ document.cookie = `${name}=${value}; path=/; secure; SameSite=Strict; HttpOnly`;
25
25
  }