tempest-react-sdk 0.55.0 → 0.57.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/README.md +74 -73
- package/dist/components/AppBar/AppBar.module.cjs.map +1 -1
- package/dist/components/AppBar/AppBar.module.js.map +1 -1
- package/dist/components/AudioPlayer/AudioPlayer.cjs +1 -1
- package/dist/components/AudioPlayer/AudioPlayer.js +6 -6
- package/dist/components/Scheduler/Scheduler.module.cjs.map +1 -1
- package/dist/components/Scheduler/Scheduler.module.js.map +1 -1
- package/dist/components/VideoPlayer/VideoPlayer.cjs +2 -0
- package/dist/components/VideoPlayer/VideoPlayer.cjs.map +1 -0
- package/dist/components/VideoPlayer/VideoPlayer.js +229 -0
- package/dist/components/VideoPlayer/VideoPlayer.js.map +1 -0
- package/dist/components/VideoPlayer/VideoPlayer.module.cjs +2 -0
- package/dist/components/VideoPlayer/VideoPlayer.module.cjs.map +1 -0
- package/dist/components/VideoPlayer/VideoPlayer.module.js +19 -0
- package/dist/components/VideoPlayer/VideoPlayer.module.js.map +1 -0
- package/dist/components/VideoPlayer/playback-rates.cjs +2 -0
- package/dist/components/VideoPlayer/playback-rates.cjs.map +1 -0
- package/dist/components/VideoPlayer/playback-rates.js +11 -0
- package/dist/components/VideoPlayer/playback-rates.js.map +1 -0
- package/dist/hooks/use-push-to-talk.cjs +1 -1
- package/dist/hooks/use-push-to-talk.cjs.map +1 -1
- package/dist/hooks/use-push-to-talk.js +2 -2
- package/dist/hooks/use-push-to-talk.js.map +1 -1
- package/dist/imaging/exceptions.cjs +1 -1
- package/dist/imaging/exceptions.cjs.map +1 -1
- package/dist/imaging/exceptions.js +5 -1
- package/dist/imaging/exceptions.js.map +1 -1
- package/dist/imaging/frame.cjs +2 -0
- package/dist/imaging/frame.cjs.map +1 -0
- package/dist/imaging/frame.js +82 -0
- package/dist/imaging/frame.js.map +1 -0
- package/dist/imaging.cjs +1 -1
- package/dist/imaging.d.ts +611 -494
- package/dist/imaging.js +10 -9
- package/dist/styles/AppBar.css +1 -1
- package/dist/styles/Scheduler.css +2 -2
- package/dist/styles/VideoPlayer.css +23 -0
- package/dist/styles/core.css +1 -1
- package/dist/styles/layout.css +2 -2
- package/dist/styles/media.css +22 -0
- package/dist/styles/navigation.css +1 -1
- package/dist/styles.css +1 -1
- package/dist/tempest-react-sdk.cjs +1 -1
- package/dist/tempest-react-sdk.d.ts +317 -35
- package/dist/tempest-react-sdk.js +213 -211
- package/dist/webrtc/link-stats.cjs +1 -1
- package/dist/webrtc/link-stats.cjs.map +1 -1
- package/dist/webrtc/link-stats.js +134 -44
- package/dist/webrtc/link-stats.js.map +1 -1
- package/dist/webrtc/mesh-quality.cjs +1 -1
- package/dist/webrtc/mesh-quality.cjs.map +1 -1
- package/dist/webrtc/mesh-quality.js +8 -2
- package/dist/webrtc/mesh-quality.js.map +1 -1
- package/dist/webrtc/peer-mesh.cjs +1 -1
- package/dist/webrtc/peer-mesh.cjs.map +1 -1
- package/dist/webrtc/peer-mesh.js +85 -63
- package/dist/webrtc/peer-mesh.js.map +1 -1
- package/package.json +1 -1
package/dist/imaging.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { createSurface as
|
|
3
|
-
import { decodeImage as
|
|
4
|
-
import { DEFAULT_QUALITY as
|
|
5
|
-
import { DEFAULT_BACKGROUND as
|
|
6
|
-
import { DEFAULT_COMPRESS_STEPS as
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
1
|
+
import { FrameSeekError as e, ImageDecodeError as t, ImageEncodeError as n, ImagingError as r, ImagingUnavailableError as i, UnsupportedImageTypeError as a } from "./imaging/exceptions.js";
|
|
2
|
+
import { createSurface as o, drawScaled as s, getContext as c } from "./imaging/canvas.js";
|
|
3
|
+
import { decodeImage as l, readImageInfo as u } from "./imaging/decode.js";
|
|
4
|
+
import { DEFAULT_QUALITY as d, DEFAULT_TYPE as f, bestSupportedType as p, encodeImage as m, supportsImageType as h } from "./imaging/encode.js";
|
|
5
|
+
import { DEFAULT_BACKGROUND as g, cropImage as _, flipImage as v, resizeImage as y, rotateImage as b } from "./imaging/transform.js";
|
|
6
|
+
import { DEFAULT_COMPRESS_STEPS as x, DEFAULT_MAX_QUALITY as S, DEFAULT_MIN_QUALITY as C, compressToTarget as w } from "./imaging/compress.js";
|
|
7
|
+
import { DEFAULT_FRAME_TIMEOUT_MS as T, captureFrame as E } from "./imaging/frame.js";
|
|
8
|
+
import { createThumbnails as D } from "./imaging/thumbnails.js";
|
|
9
|
+
import { useImagePreview as O, useImageProcessing as k } from "./imaging/use-image-processing.js";
|
|
10
|
+
export { g as DEFAULT_BACKGROUND, x as DEFAULT_COMPRESS_STEPS, T as DEFAULT_FRAME_TIMEOUT_MS, S as DEFAULT_MAX_QUALITY, C as DEFAULT_MIN_QUALITY, d as DEFAULT_QUALITY, f as DEFAULT_TYPE, e as FrameSeekError, t as ImageDecodeError, n as ImageEncodeError, r as ImagingError, i as ImagingUnavailableError, a as UnsupportedImageTypeError, p as bestSupportedType, E as captureFrame, w as compressToTarget, o as createSurface, D as createThumbnails, _ as cropImage, l as decodeImage, s as drawScaled, m as encodeImage, v as flipImage, c as getContext, u as readImageInfo, y as resizeImage, b as rotateImage, h as supportsImageType, O as useImagePreview, k as useImageProcessing };
|
package/dist/styles/AppBar.css
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
.tempest_bar_SHqWS{align-items:center;gap:var(--tempest-space-2);width:100%;min-height:56px;padding:var(--tempest-space-3) var(--tempest-space-4);font-family:var(--tempest-font-sans);grid-template-columns:auto 1fr auto;display:grid}
|
|
3
3
|
.tempest_bar_SHqWS.tempest_centered_S0CCw{grid-template-columns:1fr auto 1fr}
|
|
4
4
|
.tempest_bar_SHqWS.tempest_surface_fusKb{background:var(--tempest-surface);color:var(--tempest-text)}
|
|
5
|
-
.tempest_bar_SHqWS.tempest_primary_QcCyN{background:var(--tempest-primary);color:var(--tempest-
|
|
5
|
+
.tempest_bar_SHqWS.tempest_primary_QcCyN{background:var(--tempest-primary);color:var(--tempest-primary-foreground)}
|
|
6
6
|
.tempest_bar_SHqWS.tempest_transparent_uGrsu{color:inherit;background:0 0}
|
|
7
7
|
.tempest_bar_SHqWS.tempest_bordered_5M9FZ{border-bottom:1px solid var(--tempest-border)}
|
|
8
8
|
.tempest_bar_SHqWS.tempest_sticky_DStUO{z-index:30;position:sticky;top:0}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
.tempest_dayHead_qxQ-f.tempest_today_rs9C1{color:var(--tempest-primary)}
|
|
6
6
|
.tempest_gutterHead_eSRW-{padding:var(--tempest-space-2);color:var(--tempest-text-muted);text-align:right;font-size:.625rem}
|
|
7
7
|
.tempest_allDayTrack_aOePR{grid-template-columns:repeat(var(--tempest-scheduler-days), minmax(0, 1fr));grid-column:2/-1;gap:2px;padding:2px;display:grid}
|
|
8
|
-
.tempest_allDayEvent_oESg4{padding:0 var(--tempest-space-2);border-radius:var(--tempest-radius-sm);background-color:var(--tempest-primary);color:var(--tempest-primary-
|
|
8
|
+
.tempest_allDayEvent_oESg4{padding:0 var(--tempest-space-2);border-radius:var(--tempest-radius-sm);background-color:var(--tempest-primary);color:var(--tempest-primary-foreground);font:inherit;font-size:var(--tempest-text-xs);text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;border:none;line-height:1.5rem;overflow:hidden}
|
|
9
9
|
.tempest_allDayEvent_oESg4:disabled{cursor:default}
|
|
10
10
|
.tempest_body_GkK47{grid-template-columns:var(--tempest-scheduler-gutter) 1fr;height:var(--tempest-scheduler-height);display:grid;overflow-y:auto}
|
|
11
11
|
.tempest_gutter_BHgLa{border-right:1px solid var(--tempest-border);position:relative}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
.tempest_dayColumn_r3HZQ:first-child{border-left:none}
|
|
16
16
|
.tempest_todayColumn_NdkQu{background-color:var(--tempest-surface)}
|
|
17
17
|
.tempest_hourLine_Wch54{border-top:1px solid var(--tempest-border);pointer-events:none;position:absolute;left:0;right:0}
|
|
18
|
-
.tempest_event_R6dCw{padding:2px var(--tempest-space-1);border:1px solid var(--tempest-bg);border-radius:var(--tempest-radius-sm);background-color:var(--tempest-primary);color:var(--tempest-primary-
|
|
18
|
+
.tempest_event_R6dCw{padding:2px var(--tempest-space-1);border:1px solid var(--tempest-bg);border-radius:var(--tempest-radius-sm);background-color:var(--tempest-primary);color:var(--tempest-primary-foreground);font:inherit;text-align:left;cursor:pointer;flex-direction:column;grid-row:1;gap:1px;display:flex;position:absolute;overflow:hidden}
|
|
19
19
|
.tempest_event_R6dCw:disabled{cursor:default}
|
|
20
20
|
.tempest_event_R6dCw:focus-visible{outline:2px solid var(--tempest-text);outline-offset:-2px}
|
|
21
21
|
.tempest_eventTime_HsFmy{font-variant-numeric:tabular-nums;font-size:.625rem}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* Generated by scripts/split-css.mjs — do not edit. */
|
|
2
|
+
.tempest_player_tP0ul{border:1px solid var(--tempest-border);border-radius:var(--tempest-radius-lg);background-color:var(--tempest-surface);min-width:0;color:var(--tempest-text);font-family:var(--tempest-font-sans);flex-direction:column;display:flex;overflow:hidden}
|
|
3
|
+
.tempest_frame_ds-xN{background-color:#000;width:100%;position:relative}
|
|
4
|
+
.tempest_video_Ejoer{object-fit:contain;width:100%;height:100%;display:block}
|
|
5
|
+
.tempest_chrome_LI2ZI{align-items:center;gap:var(--tempest-space-3);padding:var(--tempest-space-2) var(--tempest-space-3);border-top:1px solid var(--tempest-border);background-color:var(--tempest-surface);flex-wrap:wrap;display:flex}
|
|
6
|
+
.tempest_transport_waV9q{border-radius:var(--tempest-radius-full);background-color:var(--tempest-primary);width:2.25rem;height:2.25rem;color:var(--tempest-primary-foreground);cursor:pointer;transition:var(--tempest-transition-color);border:none;flex:none;justify-content:center;align-items:center;padding:0;display:inline-flex;position:relative}
|
|
7
|
+
.tempest_transport_waV9q:disabled{background-color:var(--tempest-surface-3);color:var(--tempest-text-subtle);cursor:not-allowed}
|
|
8
|
+
.tempest_icon_jIwyC{border-radius:var(--tempest-radius-md);width:2rem;height:2rem;color:var(--tempest-text-muted);cursor:pointer;transition:var(--tempest-transition-color);background-color:#0000;border:none;flex:none;justify-content:center;align-items:center;padding:0;display:inline-flex;position:relative}
|
|
9
|
+
.tempest_icon_jIwyC:hover:not(:disabled){background-color:var(--tempest-surface-2);color:var(--tempest-text)}
|
|
10
|
+
.tempest_icon_jIwyC:disabled{color:var(--tempest-text-subtle);cursor:not-allowed}
|
|
11
|
+
.tempest_seek_qB6l-{min-width:3rem;height:1.25rem;accent-color:var(--tempest-primary);cursor:pointer;background:0 0;flex:8rem;margin:0}
|
|
12
|
+
.tempest_volume_R0Fr0{min-width:2.5rem;height:1.25rem;accent-color:var(--tempest-primary);cursor:pointer;background:0 0;flex:0 4.5rem;margin:0}
|
|
13
|
+
.tempest_seek_qB6l-:disabled,.tempest_volume_R0Fr0:disabled{accent-color:var(--tempest-surface-3);cursor:not-allowed}
|
|
14
|
+
.tempest_rate_Dluev{padding:var(--tempest-space-1) var(--tempest-space-2);border:1px solid var(--tempest-border);border-radius:var(--tempest-radius-md);background-color:var(--tempest-surface);color:var(--tempest-text);font-family:inherit;font-size:var(--tempest-text-xs);font-variant-numeric:tabular-nums;cursor:pointer;flex:none}
|
|
15
|
+
.tempest_rate_Dluev:disabled{color:var(--tempest-text-subtle);cursor:not-allowed}
|
|
16
|
+
.tempest_transport_waV9q:focus-visible,.tempest_icon_jIwyC:focus-visible,.tempest_seek_qB6l-:focus-visible,.tempest_volume_R0Fr0:focus-visible,.tempest_rate_Dluev:focus-visible{outline:var(--tempest-focus-ring-width) solid var(--tempest-focus-ring-color);outline-offset:2px;border-radius:var(--tempest-radius-sm)}
|
|
17
|
+
.tempest_time_z9Tg1{gap:var(--tempest-space-1);color:var(--tempest-text-muted);font-size:var(--tempest-text-xs);font-variant-numeric:tabular-nums;flex:none;display:inline-flex}
|
|
18
|
+
.tempest_actions_UxFoM{align-items:center;gap:var(--tempest-space-1);flex:none;display:inline-flex}
|
|
19
|
+
.tempest_immersive_eSsR6{border:none;border-radius:0;width:100%;height:100%}
|
|
20
|
+
.tempest_immersive_eSsR6 .tempest_frame_ds-xN{flex:auto;min-height:0;aspect-ratio:auto!important}
|
|
21
|
+
@media (prefers-reduced-motion:reduce){.tempest_transport_waV9q,.tempest_icon_jIwyC{transition:none}}
|
|
22
|
+
@media (pointer:coarse){.tempest_transport_waV9q:after,.tempest_icon_jIwyC:after{content:"";position:absolute;inset:-6px}}
|
|
23
|
+
@media (width<=480px){.tempest_chrome_LI2ZI{gap:var(--tempest-space-2);padding:var(--tempest-space-2)}.tempest_seek_qB6l-{flex:100%;order:-1}.tempest_volume_R0Fr0{display:none}}
|
package/dist/styles/core.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* Generated by scripts/split-css.mjs — do not edit. */
|
|
2
2
|
:root{--tempest-primary-50:#eef4ff;--tempest-primary-100:#d9e6ff;--tempest-primary-200:#b3ccff;--tempest-primary-300:#80aaff;--tempest-primary-400:#4d85ff;--tempest-primary-500:#06f;--tempest-primary-600:#0052cc;--tempest-primary-700:#003d99;--tempest-primary-800:#002e75;--tempest-primary-900:#001f4d;--tempest-primary:var(--tempest-primary-500);--tempest-primary-hover:var(--tempest-primary-600);--tempest-primary-active:var(--tempest-primary-700);--tempest-primary-soft:var(--tempest-primary-50);--tempest-primary-soft-hover:var(--tempest-primary-100);--tempest-primary-foreground:#fff;--tempest-danger-on-solid:#fff;--tempest-info-on-solid:#fff;--tempest-success-on-solid:#1f0606;--tempest-warning-on-solid:#1f0606;--tempest-primary-on-soft:var(--tempest-primary-600);--tempest-gray-50:#f8f9fb;--tempest-gray-100:#f1f3f6;--tempest-gray-200:#e4e7ec;--tempest-gray-300:#d0d5dd;--tempest-gray-400:#98a2b3;--tempest-gray-500:#667085;--tempest-gray-600:#475467;--tempest-gray-700:#344054;--tempest-gray-800:#1d2939;--tempest-gray-900:#101828;--tempest-bg:#fff;--tempest-surface:var(--tempest-gray-50);--tempest-surface-2:var(--tempest-gray-100);--tempest-surface-3:var(--tempest-gray-200);--tempest-border:var(--tempest-gray-200);--tempest-border-strong:var(--tempest-gray-300);--tempest-text:var(--tempest-gray-900);--tempest-text-muted:var(--tempest-gray-600);--tempest-text-subtle:var(--tempest-gray-500);--tempest-text-on-primary:#fff;--tempest-success:#15803d;--tempest-success-fg:#14532d;--tempest-success-bg:#dcfce7;--tempest-success-border:#86efac;--tempest-success-solid:#16a34a;--tempest-warning:#b45309;--tempest-warning-fg:#78350f;--tempest-warning-bg:#fef3c7;--tempest-warning-border:#fcd34d;--tempest-warning-solid:#d97706;--tempest-danger:#b91c1c;--tempest-danger-fg:#7f1d1d;--tempest-danger-bg:#fee2e2;--tempest-danger-border:#fca5a5;--tempest-danger-solid:#dc2626;--tempest-danger-hover:#991b1b;--tempest-info:#1d4ed8;--tempest-info-fg:#1e3a8a;--tempest-info-bg:#dbeafe;--tempest-info-border:#93c5fd;--tempest-info-solid:#2563eb;--tempest-focus-ring-color:#0066ff59;--tempest-focus-ring-width:3px;--tempest-focus-ring-offset:2px;--tempest-radius-xs:2px;--tempest-radius-sm:4px;--tempest-radius-md:8px;--tempest-radius-lg:12px;--tempest-radius-xl:16px;--tempest-radius-2xl:24px;--tempest-radius-full:9999px;--tempest-shadow-xs:0 1px 2px #0f172a0a;--tempest-shadow-sm:0 1px 3px #0f172a14, 0 1px 2px #0f172a0a;--tempest-shadow-md:0 4px 12px #0f172a14, 0 2px 4px #0f172a0a;--tempest-shadow-lg:0 12px 32px #0f172a1f, 0 4px 8px #0f172a0f;--tempest-shadow-xl:0 24px 48px #0f172a2e, 0 8px 16px #0f172a14;--tempest-shadow-inner:inset 0 2px 4px #0f172a0f;--tempest-space-0:0px;--tempest-space-1:4px;--tempest-space-2:8px;--tempest-space-3:12px;--tempest-space-4:16px;--tempest-space-5:20px;--tempest-space-6:24px;--tempest-space-7:28px;--tempest-space-8:32px;--tempest-space-10:40px;--tempest-space-12:48px;--tempest-space-16:64px;--tempest-space-20:80px;--tempest-space-24:96px;--tempest-font-sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;--tempest-font-mono:ui-monospace, SFMono-Regular, "SF Mono", "Cascadia Code", Menlo, Consolas, "Liberation Mono", monospace;--tempest-font-display:var(--tempest-font-sans);--tempest-z-base:0;--tempest-z-raised:10;--tempest-z-dropdown:1000;--tempest-z-sticky:1020;--tempest-z-overlay:1050;--tempest-z-modal:1100;--tempest-z-popover:1150;--tempest-z-toast:1200;--tempest-z-tooltip:1300;--tempest-bp-xs:480px;--tempest-bp-sm:640px;--tempest-bp-md:768px;--tempest-bp-lg:1024px;--tempest-bp-xl:1280px;--tempest-bp-2xl:1536px;--tempest-chart-1:#2563eb;--tempest-chart-2:#16a34a;--tempest-chart-3:#f59e0b;--tempest-chart-4:#7c3aed;--tempest-chart-5:#ec4899;--tempest-chart-6:#06b6d4;--tempest-chart-7:#ea580c;--tempest-chart-8:#0f766e;--tempest-chart-sequential-1:#dde8fe;--tempest-chart-sequential-2:#acc8fe;--tempest-chart-sequential-3:#7aa7ff;--tempest-chart-sequential-4:#4983fc;--tempest-chart-sequential-5:#3667ce;--tempest-chart-sequential-6:#2b4e96;--tempest-chart-sequential-7:#25375a;--tempest-chart-diverging-1:#0f3ca1;--tempest-chart-diverging-2:#416eca;--tempest-chart-diverging-3:#7ba0e7;--tempest-chart-diverging-4:#bdd2f9;--tempest-chart-diverging-5:#e4e7ec;--tempest-chart-diverging-6:#f6c3bc;--tempest-chart-diverging-7:#de847a;--tempest-chart-diverging-8:#ba473f;--tempest-chart-diverging-9:#870f11;--tempest-chart-grid:var(--tempest-gray-200);--tempest-chart-axis:var(--tempest-gray-500);--tempest-code-comment:#5f666e;--tempest-code-punctuation:#5d6671;--tempest-code-string:#327243;--tempest-code-number:#9d5035;--tempest-code-keyword:#625baf;--tempest-code-literal:#9f4c4f;--tempest-code-function:#1a6c94;--tempest-code-tag:#974d72;--tempest-code-attribute:#127171;--tempest-code-property:#127171;--tempest-safe-area-top:env(safe-area-inset-top,0px);--tempest-safe-area-right:env(safe-area-inset-right,0px);--tempest-safe-area-bottom:env(safe-area-inset-bottom,0px);--tempest-safe-area-left:env(safe-area-inset-left,0px)}
|
|
3
|
-
[data-tempest-theme=dark]{--tempest-primary-50:#0a1730;--tempest-primary-100:#0f2245;--tempest-primary-200:#133066;--tempest-primary-300:#1a4399;--tempest-primary-400:#2563eb;--tempest-primary-500:#3b82f6;--tempest-primary-600:#60a5fa;--tempest-primary-700:#93c5fd;--tempest-primary-800:#bfdbfe;--tempest-primary-900:#dbeafe;--tempest-primary:var(--tempest-primary-500);--tempest-primary-hover:var(--tempest-primary-600);--tempest-primary-active:var(--tempest-primary-700);--tempest-primary-soft:var(--tempest-primary-100);--tempest-primary-soft-hover:var(--tempest-primary-200);--tempest-primary-on-soft:var(--tempest-primary-700);--tempest-bg:#0b0d12;--tempest-surface:#14171f;--tempest-surface-2:#1d2230;--tempest-surface-3:#262d3f;--tempest-border:#2a3142;--tempest-border-strong:#3a4258;--tempest-text:#f1f3f8;--tempest-text-muted:#aab2c0;--tempest-text-subtle:#
|
|
3
|
+
[data-tempest-theme=dark]{--tempest-primary-50:#0a1730;--tempest-primary-100:#0f2245;--tempest-primary-200:#133066;--tempest-primary-300:#1a4399;--tempest-primary-400:#2563eb;--tempest-primary-500:#3b82f6;--tempest-primary-600:#60a5fa;--tempest-primary-700:#93c5fd;--tempest-primary-800:#bfdbfe;--tempest-primary-900:#dbeafe;--tempest-primary:var(--tempest-primary-500);--tempest-primary-hover:var(--tempest-primary-600);--tempest-primary-active:var(--tempest-primary-700);--tempest-primary-soft:var(--tempest-primary-100);--tempest-primary-soft-hover:var(--tempest-primary-200);--tempest-primary-on-soft:var(--tempest-primary-700);--tempest-bg:#0b0d12;--tempest-surface:#14171f;--tempest-surface-2:#1d2230;--tempest-surface-3:#262d3f;--tempest-border:#2a3142;--tempest-border-strong:#3a4258;--tempest-text:#f1f3f8;--tempest-text-muted:#aab2c0;--tempest-text-subtle:#7b849a;--tempest-primary-foreground:#1f0606;--tempest-text-on-primary:var(--tempest-primary-foreground);--tempest-danger-on-solid:#1f0606;--tempest-info-on-solid:#1f0606;--tempest-success-on-solid:#1f0606;--tempest-warning-on-solid:#1f0606;--tempest-success-fg:#4ade80;--tempest-success-bg:#052e16;--tempest-success-border:#166534;--tempest-success-solid:#22c55e;--tempest-success:#4ade80;--tempest-warning-fg:#fbbf24;--tempest-warning-bg:#2c1c05;--tempest-warning-border:#78350f;--tempest-warning-solid:#f59e0b;--tempest-warning:#fbbf24;--tempest-danger-fg:#f87171;--tempest-danger-bg:#2c0a0a;--tempest-danger-border:#7f1d1d;--tempest-danger-solid:#ef4444;--tempest-danger:#f87171;--tempest-danger-hover:#f87171;--tempest-info-fg:#60a5fa;--tempest-info-bg:#0a1730;--tempest-info-border:#1e3a8a;--tempest-info-solid:#3b82f6;--tempest-info:#60a5fa;--tempest-focus-ring-color:#60a5fa73;--tempest-shadow-xs:0 1px 2px #0000004d;--tempest-shadow-sm:0 1px 3px #0006, 0 1px 2px #0003;--tempest-shadow-md:0 4px 12px #0006, 0 2px 4px #0003;--tempest-shadow-lg:0 12px 32px #00000080, 0 4px 8px #0000004d;--tempest-shadow-xl:0 24px 48px #0009, 0 8px 16px #0000004d;--tempest-chart-1:#60a5fa;--tempest-chart-2:#4ade80;--tempest-chart-3:#fbbf24;--tempest-chart-4:#a78bfa;--tempest-chart-5:#f472b6;--tempest-chart-6:#22d3ee;--tempest-chart-7:#fb923c;--tempest-chart-8:#2dd4bf;--tempest-chart-sequential-1:#172849;--tempest-chart-sequential-2:#1b3c83;--tempest-chart-sequential-3:#2453b9;--tempest-chart-sequential-4:#376fe5;--tempest-chart-sequential-5:#5b90fb;--tempest-chart-sequential-6:#8cb2fa;--tempest-chart-sequential-7:#bad2fe;--tempest-chart-diverging-1:#1543a8;--tempest-chart-diverging-2:#416eca;--tempest-chart-diverging-3:#7599e0;--tempest-chart-diverging-4:#b0c5ec;--tempest-chart-diverging-5:#262d3f;--tempest-chart-diverging-6:#e8b6af;--tempest-chart-diverging-7:#d77e74;--tempest-chart-diverging-8:#ba473f;--tempest-chart-diverging-9:#94020c;--tempest-chart-grid:var(--tempest-gray-300);--tempest-chart-axis:var(--tempest-gray-600);--tempest-code-comment:#838b93;--tempest-code-punctuation:#818b95;--tempest-code-string:#589866;--tempest-code-number:#c57558;--tempest-code-keyword:#8580d8;--tempest-code-literal:#c87172;--tempest-code-function:#2893c6;--tempest-code-tag:#c07197;--tempest-code-attribute:#349897;--tempest-code-property:#349897}
|
|
4
4
|
:root{--tempest-text-2xs:10px;--tempest-text-xs:12px;--tempest-text-sm:13px;--tempest-text-base:14px;--tempest-text-md:15px;--tempest-text-lg:16px;--tempest-text-xl:18px;--tempest-text-2xl:20px;--tempest-text-3xl:24px;--tempest-text-4xl:30px;--tempest-text-5xl:36px;--tempest-text-6xl:48px;--tempest-leading-none:1;--tempest-leading-tight:1.2;--tempest-leading-snug:1.35;--tempest-leading-normal:1.5;--tempest-leading-relaxed:1.65;--tempest-leading-loose:1.9;--tempest-weight-regular:400;--tempest-weight-medium:500;--tempest-weight-semibold:600;--tempest-weight-bold:700;--tempest-weight-extrabold:800;--tempest-tracking-tight:-.02em;--tempest-tracking-normal:0;--tempest-tracking-wide:.025em;--tempest-tracking-wider:.05em;--tempest-tracking-widest:.1em;--tempest-text-fluid-sm:clamp(13px, 12px + .2vw, 15px);--tempest-text-fluid-base:clamp(14px, 13px + .3vw, 16px);--tempest-text-fluid-lg:clamp(16px, 14px + .5vw, 20px);--tempest-text-fluid-xl:clamp(18px, 15px + .8vw, 24px);--tempest-text-fluid-2xl:clamp(20px, 16px + 1.2vw, 30px);--tempest-text-fluid-3xl:clamp(24px, 18px + 2vw, 40px);--tempest-text-fluid-4xl:clamp(28px, 20px + 3vw, 56px);--tempest-text-fluid-5xl:clamp(32px, 24px + 4vw, 72px);--tempest-text-fluid-6xl:clamp(40px, 28px + 5vw, 96px);--tempest-duration-instant:0s;--tempest-duration-fast:.12s;--tempest-duration-base:.18s;--tempest-duration-slow:.28s;--tempest-duration-slower:.42s;--tempest-ease-linear:linear;--tempest-ease-in:cubic-bezier(.4, 0, 1, 1);--tempest-ease-out:cubic-bezier(0, 0, .2, 1);--tempest-ease-in-out:cubic-bezier(.4, 0, .2, 1);--tempest-ease-emphasized:cubic-bezier(.2, 0, 0, 1);--tempest-ease-bounce:cubic-bezier(.34, 1.56, .64, 1);--tempest-transition-color:color var(--tempest-duration-fast) var(--tempest-ease-out), background-color var(--tempest-duration-fast) var(--tempest-ease-out), border-color var(--tempest-duration-fast) var(--tempest-ease-out);--tempest-transition-shadow:box-shadow var(--tempest-duration-base) var(--tempest-ease-out);--tempest-transition-transform:transform var(--tempest-duration-fast) var(--tempest-ease-out);--tempest-transition-base:color var(--tempest-duration-fast) var(--tempest-ease-out), background-color var(--tempest-duration-fast) var(--tempest-ease-out), border-color var(--tempest-duration-fast) var(--tempest-ease-out), box-shadow var(--tempest-duration-base) var(--tempest-ease-out), transform var(--tempest-duration-fast) var(--tempest-ease-out), opacity var(--tempest-duration-fast) var(--tempest-ease-out)}
|
|
5
5
|
@media (prefers-reduced-motion:reduce){:root{--tempest-duration-fast:.01ms;--tempest-duration-base:.01ms;--tempest-duration-slow:.01ms;--tempest-duration-slower:.01ms}}
|
|
6
6
|
:root,[data-tempest-density=comfortable]{--tempest-control-height-xs:24px;--tempest-control-height-sm:32px;--tempest-control-height-md:40px;--tempest-control-height-lg:48px;--tempest-control-height-xl:56px;--tempest-control-padding-xs:var(--tempest-space-2);--tempest-control-padding-sm:var(--tempest-space-3);--tempest-control-padding-md:var(--tempest-space-4);--tempest-control-padding-lg:var(--tempest-space-5);--tempest-control-padding-xl:var(--tempest-space-6);--tempest-control-font-xs:var(--tempest-text-xs);--tempest-control-font-sm:var(--tempest-text-sm);--tempest-control-font-md:var(--tempest-text-base);--tempest-control-font-lg:var(--tempest-text-lg);--tempest-control-font-xl:var(--tempest-text-xl);--tempest-control-radius:var(--tempest-radius-md);--tempest-control-gap:var(--tempest-space-2)}
|
package/dist/styles/layout.css
CHANGED
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
.tempest_dayHead_qxQ-f.tempest_today_rs9C1{color:var(--tempest-primary)}
|
|
95
95
|
.tempest_gutterHead_eSRW-{padding:var(--tempest-space-2);color:var(--tempest-text-muted);text-align:right;font-size:.625rem}
|
|
96
96
|
.tempest_allDayTrack_aOePR{grid-template-columns:repeat(var(--tempest-scheduler-days), minmax(0, 1fr));grid-column:2/-1;gap:2px;padding:2px;display:grid}
|
|
97
|
-
.tempest_allDayEvent_oESg4{padding:0 var(--tempest-space-2);border-radius:var(--tempest-radius-sm);background-color:var(--tempest-primary);color:var(--tempest-primary-
|
|
97
|
+
.tempest_allDayEvent_oESg4{padding:0 var(--tempest-space-2);border-radius:var(--tempest-radius-sm);background-color:var(--tempest-primary);color:var(--tempest-primary-foreground);font:inherit;font-size:var(--tempest-text-xs);text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;border:none;line-height:1.5rem;overflow:hidden}
|
|
98
98
|
.tempest_allDayEvent_oESg4:disabled{cursor:default}
|
|
99
99
|
.tempest_body_GkK47{grid-template-columns:var(--tempest-scheduler-gutter) 1fr;height:var(--tempest-scheduler-height);display:grid;overflow-y:auto}
|
|
100
100
|
.tempest_gutter_BHgLa{border-right:1px solid var(--tempest-border);position:relative}
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
.tempest_dayColumn_r3HZQ:first-child{border-left:none}
|
|
105
105
|
.tempest_todayColumn_NdkQu{background-color:var(--tempest-surface)}
|
|
106
106
|
.tempest_hourLine_Wch54{border-top:1px solid var(--tempest-border);pointer-events:none;position:absolute;left:0;right:0}
|
|
107
|
-
.tempest_event_R6dCw{padding:2px var(--tempest-space-1);border:1px solid var(--tempest-bg);border-radius:var(--tempest-radius-sm);background-color:var(--tempest-primary);color:var(--tempest-primary-
|
|
107
|
+
.tempest_event_R6dCw{padding:2px var(--tempest-space-1);border:1px solid var(--tempest-bg);border-radius:var(--tempest-radius-sm);background-color:var(--tempest-primary);color:var(--tempest-primary-foreground);font:inherit;text-align:left;cursor:pointer;flex-direction:column;grid-row:1;gap:1px;display:flex;position:absolute;overflow:hidden}
|
|
108
108
|
.tempest_event_R6dCw:disabled{cursor:default}
|
|
109
109
|
.tempest_event_R6dCw:focus-visible{outline:2px solid var(--tempest-text);outline-offset:-2px}
|
|
110
110
|
.tempest_eventTime_HsFmy{font-variant-numeric:tabular-nums;font-size:.625rem}
|
package/dist/styles/media.css
CHANGED
|
@@ -50,3 +50,25 @@
|
|
|
50
50
|
.tempest_statusIcon_k2Hmu{flex:none}
|
|
51
51
|
.tempest_notice_ELics{padding:var(--tempest-space-3);border:1px solid var(--tempest-border);border-radius:var(--tempest-radius-lg);background-color:var(--tempest-surface);color:var(--tempest-text-muted);font-size:var(--tempest-text-sm);margin:0}
|
|
52
52
|
.tempest_footer_6SO7U{color:var(--tempest-text-muted);font-size:var(--tempest-text-xs)}
|
|
53
|
+
.tempest_player_tP0ul{border:1px solid var(--tempest-border);border-radius:var(--tempest-radius-lg);background-color:var(--tempest-surface);min-width:0;color:var(--tempest-text);font-family:var(--tempest-font-sans);flex-direction:column;display:flex;overflow:hidden}
|
|
54
|
+
.tempest_frame_ds-xN{background-color:#000;width:100%;position:relative}
|
|
55
|
+
.tempest_video_Ejoer{object-fit:contain;width:100%;height:100%;display:block}
|
|
56
|
+
.tempest_chrome_LI2ZI{align-items:center;gap:var(--tempest-space-3);padding:var(--tempest-space-2) var(--tempest-space-3);border-top:1px solid var(--tempest-border);background-color:var(--tempest-surface);flex-wrap:wrap;display:flex}
|
|
57
|
+
.tempest_transport_waV9q{border-radius:var(--tempest-radius-full);background-color:var(--tempest-primary);width:2.25rem;height:2.25rem;color:var(--tempest-primary-foreground);cursor:pointer;transition:var(--tempest-transition-color);border:none;flex:none;justify-content:center;align-items:center;padding:0;display:inline-flex;position:relative}
|
|
58
|
+
.tempest_transport_waV9q:disabled{background-color:var(--tempest-surface-3);color:var(--tempest-text-subtle);cursor:not-allowed}
|
|
59
|
+
.tempest_icon_jIwyC{border-radius:var(--tempest-radius-md);width:2rem;height:2rem;color:var(--tempest-text-muted);cursor:pointer;transition:var(--tempest-transition-color);background-color:#0000;border:none;flex:none;justify-content:center;align-items:center;padding:0;display:inline-flex;position:relative}
|
|
60
|
+
.tempest_icon_jIwyC:hover:not(:disabled){background-color:var(--tempest-surface-2);color:var(--tempest-text)}
|
|
61
|
+
.tempest_icon_jIwyC:disabled{color:var(--tempest-text-subtle);cursor:not-allowed}
|
|
62
|
+
.tempest_seek_qB6l-{min-width:3rem;height:1.25rem;accent-color:var(--tempest-primary);cursor:pointer;background:0 0;flex:8rem;margin:0}
|
|
63
|
+
.tempest_volume_R0Fr0{min-width:2.5rem;height:1.25rem;accent-color:var(--tempest-primary);cursor:pointer;background:0 0;flex:0 4.5rem;margin:0}
|
|
64
|
+
.tempest_seek_qB6l-:disabled,.tempest_volume_R0Fr0:disabled{accent-color:var(--tempest-surface-3);cursor:not-allowed}
|
|
65
|
+
.tempest_rate_Dluev{padding:var(--tempest-space-1) var(--tempest-space-2);border:1px solid var(--tempest-border);border-radius:var(--tempest-radius-md);background-color:var(--tempest-surface);color:var(--tempest-text);font-family:inherit;font-size:var(--tempest-text-xs);font-variant-numeric:tabular-nums;cursor:pointer;flex:none}
|
|
66
|
+
.tempest_rate_Dluev:disabled{color:var(--tempest-text-subtle);cursor:not-allowed}
|
|
67
|
+
.tempest_transport_waV9q:focus-visible,.tempest_icon_jIwyC:focus-visible,.tempest_seek_qB6l-:focus-visible,.tempest_volume_R0Fr0:focus-visible,.tempest_rate_Dluev:focus-visible{outline:var(--tempest-focus-ring-width) solid var(--tempest-focus-ring-color);outline-offset:2px;border-radius:var(--tempest-radius-sm)}
|
|
68
|
+
.tempest_time_z9Tg1{gap:var(--tempest-space-1);color:var(--tempest-text-muted);font-size:var(--tempest-text-xs);font-variant-numeric:tabular-nums;flex:none;display:inline-flex}
|
|
69
|
+
.tempest_actions_UxFoM{align-items:center;gap:var(--tempest-space-1);flex:none;display:inline-flex}
|
|
70
|
+
.tempest_immersive_eSsR6{border:none;border-radius:0;width:100%;height:100%}
|
|
71
|
+
.tempest_immersive_eSsR6 .tempest_frame_ds-xN{flex:auto;min-height:0;aspect-ratio:auto!important}
|
|
72
|
+
@media (prefers-reduced-motion:reduce){.tempest_transport_waV9q,.tempest_icon_jIwyC{transition:none}}
|
|
73
|
+
@media (pointer:coarse){.tempest_transport_waV9q:after,.tempest_icon_jIwyC:after{content:"";position:absolute;inset:-6px}}
|
|
74
|
+
@media (width<=480px){.tempest_chrome_LI2ZI{gap:var(--tempest-space-2);padding:var(--tempest-space-2)}.tempest_seek_qB6l-{flex:100%;order:-1}.tempest_volume_R0Fr0{display:none}}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
.tempest_bar_SHqWS{align-items:center;gap:var(--tempest-space-2);width:100%;min-height:56px;padding:var(--tempest-space-3) var(--tempest-space-4);font-family:var(--tempest-font-sans);grid-template-columns:auto 1fr auto;display:grid}
|
|
3
3
|
.tempest_bar_SHqWS.tempest_centered_S0CCw{grid-template-columns:1fr auto 1fr}
|
|
4
4
|
.tempest_bar_SHqWS.tempest_surface_fusKb{background:var(--tempest-surface);color:var(--tempest-text)}
|
|
5
|
-
.tempest_bar_SHqWS.tempest_primary_QcCyN{background:var(--tempest-primary);color:var(--tempest-
|
|
5
|
+
.tempest_bar_SHqWS.tempest_primary_QcCyN{background:var(--tempest-primary);color:var(--tempest-primary-foreground)}
|
|
6
6
|
.tempest_bar_SHqWS.tempest_transparent_uGrsu{color:inherit;background:0 0}
|
|
7
7
|
.tempest_bar_SHqWS.tempest_bordered_5M9FZ{border-bottom:1px solid var(--tempest-border)}
|
|
8
8
|
.tempest_bar_SHqWS.tempest_sticky_DStUO{z-index:30;position:sticky;top:0}
|