@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.js CHANGED
@@ -1260,26 +1260,6 @@ var overlayStyles = css`
1260
1260
  animation: spin 1.2s infinite linear;
1261
1261
  }
1262
1262
 
1263
- .task-item[data-status='active'] .task-icon .mini-spinner {
1264
- animation:
1265
- spin 1.2s infinite linear,
1266
- queue-spinner-pulse 2s infinite ease-in-out;
1267
- }
1268
-
1269
- @keyframes queue-spinner-pulse {
1270
- 0%,
1271
- 100% {
1272
- box-shadow:
1273
- inset 0 0 0 1px var(--dialog-spinner-track),
1274
- 0 0 0 0 color-mix(in srgb, var(--dialog-accent, #3b82f6) 40%, transparent);
1275
- }
1276
- 50% {
1277
- box-shadow:
1278
- inset 0 0 0 1px var(--dialog-spinner-track),
1279
- 0 0 0 4px color-mix(in srgb, var(--dialog-accent, #3b82f6) 0%, transparent);
1280
- }
1281
- }
1282
-
1283
1263
  .task-icon .mini-spinner-half {
1284
1264
  position: absolute;
1285
1265
  left: 50%;
@@ -2713,9 +2693,10 @@ var toastStyles = css2`
2713
2693
  /* Card */
2714
2694
  --toast-card-bg: #fff;
2715
2695
  --toast-card-border: #f3f4f6;
2716
- --toast-card-shadow: 0 4px 12px rgb(0 0 0 / 0.08), 0 1px 3px rgb(0 0 0 / 0.06);
2696
+ --toast-card-shadow:
2697
+ rgba(9, 30, 66, 0.31) 0px 0px 1px 0px, rgba(9, 30, 66, 0.25) 0px 20px 32px -8px;
2717
2698
  --toast-card-radius: 4px;
2718
- --toast-card-padding: 14px 16px;
2699
+ --toast-card-padding: 16px 16px 16px 24px;
2719
2700
 
2720
2701
  /* Colors (inherit from dialog when available) */
2721
2702
  --toast-success: var(--dialog-success, #22c55e);
@@ -2883,14 +2864,15 @@ var toastStyles = css2`
2883
2864
  pointer-events: none;
2884
2865
  }
2885
2866
 
2886
- /* Type-based top stripe */
2867
+ /* Type-based left accent bar */
2887
2868
  .toast-card::before {
2888
2869
  content: '';
2889
2870
  position: absolute;
2890
- bottom: 0;
2891
- left: 0;
2892
- right: 0;
2893
- height: 2px;
2871
+ left: 10px;
2872
+ top: 12px;
2873
+ bottom: 12px;
2874
+ width: 4px;
2875
+ border-radius: 9999px;
2894
2876
  }
2895
2877
  .toast-card[data-type='success']::before {
2896
2878
  background: var(--toast-success);