@konomi-app/ui 5.10.3 → 5.11.0

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/dist/index.cjs CHANGED
@@ -1288,26 +1288,6 @@ var overlayStyles = import_lit.css`
1288
1288
  animation: spin 1.2s infinite linear;
1289
1289
  }
1290
1290
 
1291
- .task-item[data-status='active'] .task-icon .mini-spinner {
1292
- animation:
1293
- spin 1.2s infinite linear,
1294
- queue-spinner-pulse 2s infinite ease-in-out;
1295
- }
1296
-
1297
- @keyframes queue-spinner-pulse {
1298
- 0%,
1299
- 100% {
1300
- box-shadow:
1301
- inset 0 0 0 1px var(--dialog-spinner-track),
1302
- 0 0 0 0 color-mix(in srgb, var(--dialog-accent, #3b82f6) 40%, transparent);
1303
- }
1304
- 50% {
1305
- box-shadow:
1306
- inset 0 0 0 1px var(--dialog-spinner-track),
1307
- 0 0 0 4px color-mix(in srgb, var(--dialog-accent, #3b82f6) 0%, transparent);
1308
- }
1309
- }
1310
-
1311
1291
  .task-icon .mini-spinner-half {
1312
1292
  position: absolute;
1313
1293
  left: 50%;
@@ -2741,9 +2721,10 @@ var toastStyles = import_lit3.css`
2741
2721
  /* Card */
2742
2722
  --toast-card-bg: #fff;
2743
2723
  --toast-card-border: #f3f4f6;
2744
- --toast-card-shadow: 0 4px 12px rgb(0 0 0 / 0.08), 0 1px 3px rgb(0 0 0 / 0.06);
2724
+ --toast-card-shadow:
2725
+ rgba(9, 30, 66, 0.31) 0px 0px 1px 0px, rgba(9, 30, 66, 0.25) 0px 20px 32px -8px;
2745
2726
  --toast-card-radius: 4px;
2746
- --toast-card-padding: 14px 16px;
2727
+ --toast-card-padding: 16px 16px 16px 24px;
2747
2728
 
2748
2729
  /* Colors (inherit from dialog when available) */
2749
2730
  --toast-success: var(--dialog-success, #22c55e);
@@ -2911,14 +2892,15 @@ var toastStyles = import_lit3.css`
2911
2892
  pointer-events: none;
2912
2893
  }
2913
2894
 
2914
- /* Type-based top stripe */
2895
+ /* Type-based left accent bar */
2915
2896
  .toast-card::before {
2916
2897
  content: '';
2917
2898
  position: absolute;
2918
- bottom: 0;
2919
- left: 0;
2920
- right: 0;
2921
- height: 2px;
2899
+ left: 10px;
2900
+ top: 12px;
2901
+ bottom: 12px;
2902
+ width: 4px;
2903
+ border-radius: 9999px;
2922
2904
  }
2923
2905
  .toast-card[data-type='success']::before {
2924
2906
  background: var(--toast-success);