hamzus-ui 0.0.7 → 0.0.9
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
|
@@ -285,7 +285,7 @@ import { onDestroy, onMount } from 'svelte';
|
|
|
285
285
|
>
|
|
286
286
|
<slot name="content" />
|
|
287
287
|
</content>
|
|
288
|
-
<div class="dropdown-bg-exit"></div>
|
|
288
|
+
<!-- <div class="dropdown-bg-exit"></div> -->
|
|
289
289
|
</content-container>
|
|
290
290
|
</Portal>
|
|
291
291
|
</dropdown>
|
|
@@ -293,7 +293,7 @@ import { onDestroy, onMount } from 'svelte';
|
|
|
293
293
|
<style>
|
|
294
294
|
.trigger {
|
|
295
295
|
all: unset;
|
|
296
|
-
z-index:
|
|
296
|
+
z-index: 200;
|
|
297
297
|
position: relative;
|
|
298
298
|
display: inline-block;
|
|
299
299
|
}
|
|
@@ -306,7 +306,7 @@ import { onDestroy, onMount } from 'svelte';
|
|
|
306
306
|
user-select: none;
|
|
307
307
|
pointer-events: none;
|
|
308
308
|
opacity: 0;
|
|
309
|
-
z-index:
|
|
309
|
+
z-index: 200;
|
|
310
310
|
padding:var(--padding-top) var(--padding-right) var(--padding-bottom) var(--padding-left);
|
|
311
311
|
}
|
|
312
312
|
|
|
@@ -340,14 +340,18 @@ import { onDestroy, onMount } from 'svelte';
|
|
|
340
340
|
}
|
|
341
341
|
|
|
342
342
|
@keyframes entry {
|
|
343
|
-
|
|
343
|
+
0% {
|
|
344
344
|
display: block;
|
|
345
345
|
opacity: 0;
|
|
346
346
|
user-select: none;
|
|
347
347
|
pointer-events: none;
|
|
348
348
|
transform: translate(var(--transform-x), var(--transform-y)) scale(0.9);
|
|
349
349
|
}
|
|
350
|
-
|
|
350
|
+
99% {
|
|
351
|
+
user-select: none;
|
|
352
|
+
pointer-events: none;
|
|
353
|
+
}
|
|
354
|
+
100% {
|
|
351
355
|
display: block;
|
|
352
356
|
opacity: 1;
|
|
353
357
|
user-select: initial;
|
|
@@ -359,8 +363,8 @@ import { onDestroy, onMount } from 'svelte';
|
|
|
359
363
|
from {
|
|
360
364
|
display: block;
|
|
361
365
|
opacity: 1;
|
|
362
|
-
user-select:
|
|
363
|
-
pointer-events:
|
|
366
|
+
user-select: none;
|
|
367
|
+
pointer-events: none;
|
|
364
368
|
transform: translate(0px, 0px) scale(1);
|
|
365
369
|
}
|
|
366
370
|
to {
|