@djangocfg/ui-tools 2.1.310 → 2.1.313
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 +38 -22
- package/dist/{DocsLayout-W5JLRNSZ.mjs → DocsLayout-ESVQZO3V.mjs} +3 -3
- package/dist/{DocsLayout-W5JLRNSZ.mjs.map → DocsLayout-ESVQZO3V.mjs.map} +1 -1
- package/dist/{DocsLayout-ZXD2CUOH.cjs → DocsLayout-KUPDWJ3G.cjs} +48 -48
- package/dist/{DocsLayout-ZXD2CUOH.cjs.map → DocsLayout-KUPDWJ3G.cjs.map} +1 -1
- package/dist/Player-M3GC3VPE.mjs +4 -0
- package/dist/Player-M3GC3VPE.mjs.map +1 -0
- package/dist/Player-ZGQKKOWI.css +65 -0
- package/dist/Player-ZGQKKOWI.css.map +1 -0
- package/dist/Player-ZL2X5LGG.cjs +13 -0
- package/dist/Player-ZL2X5LGG.cjs.map +1 -0
- package/dist/{chunk-CXVGN6ZW.cjs → chunk-DFTVB66S.cjs} +7 -6
- package/dist/chunk-DFTVB66S.cjs.map +1 -0
- package/dist/{chunk-2QY3LJR6.mjs → chunk-EUADAUBQ.mjs} +5 -4
- package/dist/chunk-EUADAUBQ.mjs.map +1 -0
- package/dist/chunk-FX2QFYWF.mjs +2059 -0
- package/dist/chunk-FX2QFYWF.mjs.map +1 -0
- package/dist/{chunk-6HNAPVZ2.mjs → chunk-GBLQTHWT.mjs} +11 -13
- package/dist/chunk-GBLQTHWT.mjs.map +1 -0
- package/dist/{chunk-FYLR232K.cjs → chunk-S44PW6NK.cjs} +11 -13
- package/dist/chunk-S44PW6NK.cjs.map +1 -0
- package/dist/chunk-ZLQHUZDU.cjs +2061 -0
- package/dist/chunk-ZLQHUZDU.cjs.map +1 -0
- package/dist/components-WYEZL5TE.cjs +26 -0
- package/dist/{components-3RTH76CV.cjs.map → components-WYEZL5TE.cjs.map} +1 -1
- package/dist/components-ZAGG2PBO.mjs +5 -0
- package/dist/{components-5GVVL2Q6.mjs.map → components-ZAGG2PBO.mjs.map} +1 -1
- package/dist/index.cjs +36 -220
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +65 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +44 -500
- package/dist/index.d.ts +44 -500
- package/dist/index.mjs +16 -62
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
- package/src/components/markdown/MarkdownMessage/ActionRow.tsx +48 -0
- package/src/components/markdown/MarkdownMessage/ChatMessageRow.tsx +97 -0
- package/src/components/markdown/MarkdownMessage/CodeBlock.tsx +9 -13
- package/src/components/markdown/MarkdownMessage/MarkdownMessage.story.tsx +77 -2
- package/src/components/markdown/MarkdownMessage/MarkdownMessage.tsx +2 -3
- package/src/components/markdown/MarkdownMessage/README.md +72 -0
- package/src/components/markdown/MarkdownMessage/components.tsx +3 -3
- package/src/components/markdown/MarkdownMessage/index.ts +6 -0
- package/src/index.ts +2 -11
- package/src/tools/AudioPlayer/AudioPlayer.story.tsx +454 -107
- package/src/tools/AudioPlayer/Player.tsx +80 -0
- package/src/tools/AudioPlayer/PlayerShell.tsx +122 -0
- package/src/tools/AudioPlayer/README.md +139 -204
- package/src/tools/AudioPlayer/audio/audioContext.ts +39 -0
- package/src/tools/AudioPlayer/audio/decodePeaks.ts +36 -0
- package/src/tools/AudioPlayer/audio/index.ts +4 -0
- package/src/tools/AudioPlayer/audio/mediaElementSourceCache.ts +20 -0
- package/src/tools/AudioPlayer/audio/peaksCache.ts +37 -0
- package/src/tools/AudioPlayer/context/AudioRefContext.tsx +9 -0
- package/src/tools/AudioPlayer/context/ControlsContext.tsx +7 -0
- package/src/tools/AudioPlayer/context/LevelsContext.tsx +7 -0
- package/src/tools/AudioPlayer/context/MetaContext.tsx +16 -0
- package/src/tools/AudioPlayer/context/PlayerProvider.tsx +314 -0
- package/src/tools/AudioPlayer/context/StateContext.tsx +7 -0
- package/src/tools/AudioPlayer/context/index.ts +16 -15
- package/src/tools/AudioPlayer/context/selectors.ts +36 -0
- package/src/tools/AudioPlayer/hooks/index.ts +12 -39
- package/src/tools/AudioPlayer/hooks/useActivePlayer.ts +31 -0
- package/src/tools/AudioPlayer/hooks/useAnalyser.ts +62 -0
- package/src/tools/AudioPlayer/hooks/useAudioElementEvents.ts +102 -0
- package/src/tools/AudioPlayer/hooks/useKeyboardShortcuts.ts +91 -0
- package/src/tools/AudioPlayer/hooks/useMediaSession.ts +74 -0
- package/src/tools/AudioPlayer/hooks/usePeaks.ts +83 -0
- package/src/tools/AudioPlayer/hooks/usePlayerPreferences.ts +21 -0
- package/src/tools/AudioPlayer/hooks/usePlayheadLoop.ts +77 -0
- package/src/tools/AudioPlayer/hooks/useResizeObserver.ts +20 -0
- package/src/tools/AudioPlayer/hooks/useThemeWatcher.ts +22 -0
- package/src/tools/AudioPlayer/index.ts +63 -134
- package/src/tools/AudioPlayer/lazy.tsx +8 -97
- package/src/tools/AudioPlayer/parts/Controls/ControlsRow.tsx +30 -0
- package/src/tools/AudioPlayer/parts/Controls/IconButton.tsx +62 -0
- package/src/tools/AudioPlayer/parts/Controls/LoopButton.tsx +33 -0
- package/src/tools/AudioPlayer/parts/Controls/PlayButton.tsx +86 -0
- package/src/tools/AudioPlayer/parts/Controls/SkipButton.tsx +17 -0
- package/src/tools/AudioPlayer/parts/Controls/VolumeControl.tsx +171 -0
- package/src/tools/AudioPlayer/parts/Controls/index.ts +6 -0
- package/src/tools/AudioPlayer/parts/Cover/Cover.tsx +24 -0
- package/src/tools/AudioPlayer/parts/Cover/CoverPlaceholder.tsx +27 -0
- package/src/tools/AudioPlayer/parts/Cover/ReactivePulse.tsx +66 -0
- package/src/tools/AudioPlayer/parts/Cover/index.ts +3 -0
- package/src/tools/AudioPlayer/parts/ErrorState/ErrorState.tsx +35 -0
- package/src/tools/AudioPlayer/parts/ErrorState/index.ts +1 -0
- package/src/tools/AudioPlayer/parts/Layout/CompactLayout.tsx +25 -0
- package/src/tools/AudioPlayer/parts/Layout/DefaultLayout.tsx +48 -0
- package/src/tools/AudioPlayer/parts/Layout/index.ts +2 -0
- package/src/tools/AudioPlayer/parts/Meta/Artist.tsx +14 -0
- package/src/tools/AudioPlayer/parts/Meta/TimeDisplay.tsx +49 -0
- package/src/tools/AudioPlayer/parts/Meta/Title.tsx +13 -0
- package/src/tools/AudioPlayer/parts/Meta/index.ts +3 -0
- package/src/tools/AudioPlayer/parts/Skeleton/CoverSkeleton.tsx +13 -0
- package/src/tools/AudioPlayer/parts/Skeleton/MetaSkeleton.tsx +10 -0
- package/src/tools/AudioPlayer/parts/Skeleton/index.ts +2 -0
- package/src/tools/AudioPlayer/parts/Waveform/BarsWaveform.tsx +48 -0
- package/src/tools/AudioPlayer/parts/Waveform/LiveWaveform.tsx +95 -0
- package/src/tools/AudioPlayer/parts/Waveform/PeaksWaveform.tsx +100 -0
- package/src/tools/AudioPlayer/parts/Waveform/ProgressBar.tsx +76 -0
- package/src/tools/AudioPlayer/parts/Waveform/Waveform.tsx +74 -0
- package/src/tools/AudioPlayer/parts/Waveform/WaveformSkeleton.tsx +16 -0
- package/src/tools/AudioPlayer/parts/Waveform/index.ts +8 -0
- package/src/tools/AudioPlayer/parts/Waveform/waveformInteraction.ts +106 -0
- package/src/tools/AudioPlayer/parts/Waveform/waveformRenderer.ts +91 -0
- package/src/tools/AudioPlayer/parts/index.ts +1 -0
- package/src/tools/AudioPlayer/store/activePlayerBus.ts +63 -0
- package/src/tools/AudioPlayer/store/createLevelsStore.ts +37 -0
- package/src/tools/AudioPlayer/store/index.ts +16 -0
- package/src/tools/AudioPlayer/store/preferencesStore.ts +104 -0
- package/src/tools/AudioPlayer/styles/webview-safe.css +77 -0
- package/src/tools/AudioPlayer/types.ts +95 -0
- package/src/tools/AudioPlayer/utils/bucketize.ts +27 -0
- package/src/tools/AudioPlayer/utils/clamp.ts +5 -0
- package/src/tools/AudioPlayer/utils/dpr.ts +19 -0
- package/src/tools/AudioPlayer/utils/formatTime.ts +12 -8
- package/src/tools/AudioPlayer/utils/index.ts +4 -5
- package/src/tools/AudioPlayer/utils/readCssVar.ts +7 -0
- package/src/tools/AudioPlayer/utils/resolveCanvasColor.ts +28 -0
- package/src/tools/index.ts +5 -75
- package/dist/chunk-2QY3LJR6.mjs.map +0 -1
- package/dist/chunk-6HNAPVZ2.mjs.map +0 -1
- package/dist/chunk-CXVGN6ZW.cjs.map +0 -1
- package/dist/chunk-F2N7P5XU.cjs +0 -30
- package/dist/chunk-F2N7P5XU.cjs.map +0 -1
- package/dist/chunk-FYLR232K.cjs.map +0 -1
- package/dist/chunk-HMHIVEMS.mjs +0 -1619
- package/dist/chunk-HMHIVEMS.mjs.map +0 -1
- package/dist/chunk-JWB2EWQO.mjs +0 -5
- package/dist/chunk-JWB2EWQO.mjs.map +0 -1
- package/dist/chunk-YZX6FH3H.cjs +0 -1656
- package/dist/chunk-YZX6FH3H.cjs.map +0 -1
- package/dist/components-3RTH76CV.cjs +0 -27
- package/dist/components-5GVVL2Q6.mjs +0 -5
- package/dist/components-CPHOUQ5F.cjs +0 -46
- package/dist/components-CPHOUQ5F.cjs.map +0 -1
- package/dist/components-OTK43IMD.mjs +0 -6
- package/dist/components-OTK43IMD.mjs.map +0 -1
- package/src/tools/AudioPlayer/components/HybridAudioPlayer.tsx +0 -225
- package/src/tools/AudioPlayer/components/HybridCompactPlayer.tsx +0 -163
- package/src/tools/AudioPlayer/components/HybridSimplePlayer.tsx +0 -284
- package/src/tools/AudioPlayer/components/HybridWaveform.tsx +0 -286
- package/src/tools/AudioPlayer/components/ReactiveCover/AudioReactiveCover.tsx +0 -151
- package/src/tools/AudioPlayer/components/ReactiveCover/effects/GlowEffect.tsx +0 -110
- package/src/tools/AudioPlayer/components/ReactiveCover/effects/MeshEffect.tsx +0 -58
- package/src/tools/AudioPlayer/components/ReactiveCover/effects/OrbsEffect.tsx +0 -45
- package/src/tools/AudioPlayer/components/ReactiveCover/effects/SpotlightEffect.tsx +0 -82
- package/src/tools/AudioPlayer/components/ReactiveCover/effects/index.ts +0 -8
- package/src/tools/AudioPlayer/components/ReactiveCover/index.ts +0 -6
- package/src/tools/AudioPlayer/components/index.ts +0 -23
- package/src/tools/AudioPlayer/context/HybridAudioProvider.tsx +0 -158
- package/src/tools/AudioPlayer/effects/index.ts +0 -412
- package/src/tools/AudioPlayer/hooks/useAudioBus.ts +0 -76
- package/src/tools/AudioPlayer/hooks/useHybridAudio.ts +0 -403
- package/src/tools/AudioPlayer/hooks/useHybridAudioAnalysis.ts +0 -96
- package/src/tools/AudioPlayer/hooks/useVisualization.tsx +0 -207
- package/src/tools/AudioPlayer/types/effects.ts +0 -73
- package/src/tools/AudioPlayer/types/index.ts +0 -27
- package/src/tools/AudioPlayer/utils/debug.ts +0 -14
package/dist/index.cjs
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
require('./chunk-F2N7P5XU.cjs');
|
|
3
|
+
var chunkZLQHUZDU_cjs = require('./chunk-ZLQHUZDU.cjs');
|
|
4
|
+
var chunkDFTVB66S_cjs = require('./chunk-DFTVB66S.cjs');
|
|
6
5
|
var chunkIHAY6FO6_cjs = require('./chunk-IHAY6FO6.cjs');
|
|
7
6
|
var chunk77HQWEQ6_cjs = require('./chunk-77HQWEQ6.cjs');
|
|
8
7
|
var chunkF2CMIIOH_cjs = require('./chunk-F2CMIIOH.cjs');
|
|
9
|
-
var
|
|
8
|
+
var chunkS44PW6NK_cjs = require('./chunk-S44PW6NK.cjs');
|
|
10
9
|
var chunk33AMWFBZ_cjs = require('./chunk-33AMWFBZ.cjs');
|
|
11
10
|
require('./chunk-2SMCH62O.cjs');
|
|
12
11
|
var chunkL37FZYJU_cjs = require('./chunk-L37FZYJU.cjs');
|
|
@@ -263,14 +262,14 @@ function OpenapiLoadingFallback() {
|
|
|
263
262
|
}
|
|
264
263
|
chunkWGEGR3DF_cjs.__name(OpenapiLoadingFallback, "OpenapiLoadingFallback");
|
|
265
264
|
var LazyDocsLayout = createLazyComponent(
|
|
266
|
-
() => import('./DocsLayout-
|
|
265
|
+
() => import('./DocsLayout-KUPDWJ3G.cjs').then((mod) => ({ default: mod.DocsLayout })),
|
|
267
266
|
{
|
|
268
267
|
displayName: "LazyDocsLayout",
|
|
269
268
|
fallback: /* @__PURE__ */ jsxRuntime.jsx(OpenapiLoadingFallback, {})
|
|
270
269
|
}
|
|
271
270
|
);
|
|
272
271
|
var LazyOpenapiViewer = /* @__PURE__ */ chunkWGEGR3DF_cjs.__name(({ config }) => {
|
|
273
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
272
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkS44PW6NK_cjs.PlaygroundProvider, { config, children: /* @__PURE__ */ jsxRuntime.jsx(LazyDocsLayout, {}) });
|
|
274
273
|
}, "LazyOpenapiViewer");
|
|
275
274
|
LazyOpenapiViewer.displayName = "LazyOpenapiViewer";
|
|
276
275
|
var LazyJsonSchemaForm = createLazyComponent(
|
|
@@ -301,56 +300,11 @@ var LazyLottiePlayer = createLazyComponent(
|
|
|
301
300
|
fallback: /* @__PURE__ */ jsxRuntime.jsx(LottieLoadingFallback, {})
|
|
302
301
|
}
|
|
303
302
|
);
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative", children: [
|
|
307
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-10 w-10 animate-spin rounded-full border-4 border-muted border-t-primary" }),
|
|
308
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
309
|
-
"svg",
|
|
310
|
-
{
|
|
311
|
-
className: "h-5 w-5 text-muted-foreground",
|
|
312
|
-
fill: "none",
|
|
313
|
-
viewBox: "0 0 24 24",
|
|
314
|
-
stroke: "currentColor",
|
|
315
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
316
|
-
"path",
|
|
317
|
-
{
|
|
318
|
-
strokeLinecap: "round",
|
|
319
|
-
strokeLinejoin: "round",
|
|
320
|
-
strokeWidth: 2,
|
|
321
|
-
d: "M9 19V6l12-3v13M9 19c0 1.105-1.343 2-3 2s-3-.895-3-2 1.343-2 3-2 3 .895 3 2zm12-3c0 1.105-1.343 2-3 2s-3-.895-3-2 1.343-2 3-2 3 .895 3 2zM9 10l12-3"
|
|
322
|
-
}
|
|
323
|
-
)
|
|
324
|
-
}
|
|
325
|
-
) })
|
|
326
|
-
] }),
|
|
327
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm text-muted-foreground", children: "Loading audio player..." })
|
|
328
|
-
] }) });
|
|
329
|
-
}
|
|
330
|
-
chunkWGEGR3DF_cjs.__name(AudioLoadingFallback, "AudioLoadingFallback");
|
|
331
|
-
var LazyHybridAudioPlayer = createLazyComponent(
|
|
332
|
-
() => import('./components-CPHOUQ5F.cjs').then((mod) => ({ default: mod.HybridAudioPlayer })),
|
|
333
|
-
{
|
|
334
|
-
displayName: "LazyHybridAudioPlayer",
|
|
335
|
-
fallback: /* @__PURE__ */ jsxRuntime.jsx(AudioLoadingFallback, {})
|
|
336
|
-
}
|
|
337
|
-
);
|
|
338
|
-
var LazyHybridSimplePlayer = createLazyComponent(
|
|
339
|
-
() => import('./components-CPHOUQ5F.cjs').then((mod) => ({ default: mod.HybridSimplePlayer })),
|
|
303
|
+
var LazyPlayer = createLazyComponent(
|
|
304
|
+
() => import('./Player-ZL2X5LGG.cjs').then((mod) => ({ default: mod.Player })),
|
|
340
305
|
{
|
|
341
|
-
displayName: "
|
|
342
|
-
fallback: /* @__PURE__ */ jsxRuntime.jsx(
|
|
343
|
-
}
|
|
344
|
-
);
|
|
345
|
-
var LazyHybridCompactPlayer = createLazyComponent(
|
|
346
|
-
() => import('./components-CPHOUQ5F.cjs').then((mod) => ({ default: mod.HybridCompactPlayer })),
|
|
347
|
-
{
|
|
348
|
-
displayName: "LazyHybridCompactPlayer",
|
|
349
|
-
fallback: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 h-8 px-1 animate-pulse", children: [
|
|
350
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-8 w-8 rounded-md bg-muted flex-shrink-0" }),
|
|
351
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex-1 h-4 rounded bg-muted" }),
|
|
352
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-3 w-12 rounded bg-muted flex-shrink-0" })
|
|
353
|
-
] })
|
|
306
|
+
displayName: "LazyAudioPlayer",
|
|
307
|
+
fallback: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "rounded-lg border border-border/60 bg-card px-4 py-6 text-sm text-muted-foreground", children: "Loading audio player\u2026" })
|
|
354
308
|
}
|
|
355
309
|
);
|
|
356
310
|
function VideoLoadingFallback() {
|
|
@@ -372,7 +326,7 @@ function VideoLoadingFallback() {
|
|
|
372
326
|
}
|
|
373
327
|
chunkWGEGR3DF_cjs.__name(VideoLoadingFallback, "VideoLoadingFallback");
|
|
374
328
|
var LazyVideoPlayer = createLazyComponent(
|
|
375
|
-
() => import('./components-
|
|
329
|
+
() => import('./components-WYEZL5TE.cjs').then((mod) => ({ default: mod.VideoPlayer })),
|
|
376
330
|
{
|
|
377
331
|
displayName: "LazyVideoPlayer",
|
|
378
332
|
fallback: /* @__PURE__ */ jsxRuntime.jsx(VideoLoadingFallback, {})
|
|
@@ -409,20 +363,20 @@ var LazyCronScheduler = createLazyComponent(
|
|
|
409
363
|
var LottiePlayerClient = React.lazy(
|
|
410
364
|
() => import('./LottiePlayer.client-6WVWDO75.cjs').then((mod) => ({ default: mod.LottiePlayer }))
|
|
411
365
|
);
|
|
412
|
-
var
|
|
366
|
+
var LoadingFallback5 = /* @__PURE__ */ chunkWGEGR3DF_cjs.__name(() => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center p-8", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col items-center gap-2", children: [
|
|
413
367
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-8 w-8 animate-spin rounded-full border-4 border-gray-300 border-t-gray-900" }),
|
|
414
368
|
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm text-gray-500", children: "Loading player..." })
|
|
415
369
|
] }) }), "LoadingFallback");
|
|
416
370
|
function LottiePlayer(props) {
|
|
417
|
-
return /* @__PURE__ */ jsxRuntime.jsx(React.Suspense, { fallback: /* @__PURE__ */ jsxRuntime.jsx(
|
|
371
|
+
return /* @__PURE__ */ jsxRuntime.jsx(React.Suspense, { fallback: /* @__PURE__ */ jsxRuntime.jsx(LoadingFallback5, {}), children: /* @__PURE__ */ jsxRuntime.jsx(LottiePlayerClient, { ...props }) });
|
|
418
372
|
}
|
|
419
373
|
chunkWGEGR3DF_cjs.__name(LottiePlayer, "LottiePlayer");
|
|
420
374
|
var DocsLayout = React.lazy(
|
|
421
|
-
() => import('./DocsLayout-
|
|
375
|
+
() => import('./DocsLayout-KUPDWJ3G.cjs').then((mod) => ({ default: mod.DocsLayout }))
|
|
422
376
|
);
|
|
423
|
-
var
|
|
377
|
+
var LoadingFallback6 = /* @__PURE__ */ chunkWGEGR3DF_cjs.__name(() => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex items-center justify-center min-h-[400px]", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-muted-foreground", children: "Loading API Playground..." }) }), "LoadingFallback");
|
|
424
378
|
var Playground = /* @__PURE__ */ chunkWGEGR3DF_cjs.__name(({ config }) => {
|
|
425
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
379
|
+
return /* @__PURE__ */ jsxRuntime.jsx(chunkS44PW6NK_cjs.PlaygroundProvider, { config, children: /* @__PURE__ */ jsxRuntime.jsx(React.Suspense, { fallback: /* @__PURE__ */ jsxRuntime.jsx(LoadingFallback6, {}), children: /* @__PURE__ */ jsxRuntime.jsx(DocsLayout, {}) }) });
|
|
426
380
|
}, "Playground");
|
|
427
381
|
var OpenapiViewer_default = Playground;
|
|
428
382
|
var CronSchedulerClient = React.lazy(() => import('./CronScheduler.client-A4GO6YBY.cjs'));
|
|
@@ -1438,197 +1392,61 @@ function MarkdownToolbar({ editor }) {
|
|
|
1438
1392
|
}
|
|
1439
1393
|
chunkWGEGR3DF_cjs.__name(MarkdownToolbar, "MarkdownToolbar");
|
|
1440
1394
|
|
|
1441
|
-
Object.defineProperty(exports, "
|
|
1442
|
-
enumerable: true,
|
|
1443
|
-
get: function () { return chunkYZX6FH3H_cjs.AudioReactiveCover; }
|
|
1444
|
-
});
|
|
1445
|
-
Object.defineProperty(exports, "COLOR_SCHEMES", {
|
|
1446
|
-
enumerable: true,
|
|
1447
|
-
get: function () { return chunkYZX6FH3H_cjs.COLOR_SCHEMES; }
|
|
1448
|
-
});
|
|
1449
|
-
Object.defineProperty(exports, "COLOR_SCHEME_INFO", {
|
|
1450
|
-
enumerable: true,
|
|
1451
|
-
get: function () { return chunkYZX6FH3H_cjs.COLOR_SCHEME_INFO; }
|
|
1452
|
-
});
|
|
1453
|
-
Object.defineProperty(exports, "EFFECT_ANIMATIONS", {
|
|
1454
|
-
enumerable: true,
|
|
1455
|
-
get: function () { return chunkYZX6FH3H_cjs.EFFECT_ANIMATIONS; }
|
|
1456
|
-
});
|
|
1457
|
-
Object.defineProperty(exports, "GlowEffect", {
|
|
1458
|
-
enumerable: true,
|
|
1459
|
-
get: function () { return chunkYZX6FH3H_cjs.GlowEffect; }
|
|
1460
|
-
});
|
|
1461
|
-
Object.defineProperty(exports, "HybridAudioPlayer", {
|
|
1462
|
-
enumerable: true,
|
|
1463
|
-
get: function () { return chunkYZX6FH3H_cjs.HybridAudioPlayer; }
|
|
1464
|
-
});
|
|
1465
|
-
Object.defineProperty(exports, "HybridAudioProvider", {
|
|
1466
|
-
enumerable: true,
|
|
1467
|
-
get: function () { return chunkYZX6FH3H_cjs.HybridAudioProvider; }
|
|
1468
|
-
});
|
|
1469
|
-
Object.defineProperty(exports, "HybridSimplePlayer", {
|
|
1470
|
-
enumerable: true,
|
|
1471
|
-
get: function () { return chunkYZX6FH3H_cjs.HybridSimplePlayer; }
|
|
1472
|
-
});
|
|
1473
|
-
Object.defineProperty(exports, "HybridWaveform", {
|
|
1474
|
-
enumerable: true,
|
|
1475
|
-
get: function () { return chunkYZX6FH3H_cjs.HybridWaveform; }
|
|
1476
|
-
});
|
|
1477
|
-
Object.defineProperty(exports, "INTENSITY_CONFIG", {
|
|
1478
|
-
enumerable: true,
|
|
1479
|
-
get: function () { return chunkYZX6FH3H_cjs.INTENSITY_CONFIG; }
|
|
1480
|
-
});
|
|
1481
|
-
Object.defineProperty(exports, "INTENSITY_INFO", {
|
|
1482
|
-
enumerable: true,
|
|
1483
|
-
get: function () { return chunkYZX6FH3H_cjs.INTENSITY_INFO; }
|
|
1484
|
-
});
|
|
1485
|
-
Object.defineProperty(exports, "MeshEffect", {
|
|
1486
|
-
enumerable: true,
|
|
1487
|
-
get: function () { return chunkYZX6FH3H_cjs.MeshEffect; }
|
|
1488
|
-
});
|
|
1489
|
-
Object.defineProperty(exports, "OrbsEffect", {
|
|
1490
|
-
enumerable: true,
|
|
1491
|
-
get: function () { return chunkYZX6FH3H_cjs.OrbsEffect; }
|
|
1492
|
-
});
|
|
1493
|
-
Object.defineProperty(exports, "SpotlightEffect", {
|
|
1494
|
-
enumerable: true,
|
|
1495
|
-
get: function () { return chunkYZX6FH3H_cjs.SpotlightEffect; }
|
|
1496
|
-
});
|
|
1497
|
-
Object.defineProperty(exports, "VARIANT_INFO", {
|
|
1498
|
-
enumerable: true,
|
|
1499
|
-
get: function () { return chunkYZX6FH3H_cjs.VARIANT_INFO; }
|
|
1500
|
-
});
|
|
1501
|
-
Object.defineProperty(exports, "VisualizationProvider", {
|
|
1502
|
-
enumerable: true,
|
|
1503
|
-
get: function () { return chunkYZX6FH3H_cjs.VisualizationProvider; }
|
|
1504
|
-
});
|
|
1505
|
-
Object.defineProperty(exports, "calculateGlowLayers", {
|
|
1506
|
-
enumerable: true,
|
|
1507
|
-
get: function () { return chunkYZX6FH3H_cjs.calculateGlowLayers; }
|
|
1508
|
-
});
|
|
1509
|
-
Object.defineProperty(exports, "calculateMeshGradients", {
|
|
1510
|
-
enumerable: true,
|
|
1511
|
-
get: function () { return chunkYZX6FH3H_cjs.calculateMeshGradients; }
|
|
1512
|
-
});
|
|
1513
|
-
Object.defineProperty(exports, "calculateOrbs", {
|
|
1514
|
-
enumerable: true,
|
|
1515
|
-
get: function () { return chunkYZX6FH3H_cjs.calculateOrbs; }
|
|
1516
|
-
});
|
|
1517
|
-
Object.defineProperty(exports, "calculateSpotlight", {
|
|
1518
|
-
enumerable: true,
|
|
1519
|
-
get: function () { return chunkYZX6FH3H_cjs.calculateSpotlight; }
|
|
1520
|
-
});
|
|
1521
|
-
Object.defineProperty(exports, "formatTime", {
|
|
1522
|
-
enumerable: true,
|
|
1523
|
-
get: function () { return chunkYZX6FH3H_cjs.formatTime; }
|
|
1524
|
-
});
|
|
1525
|
-
Object.defineProperty(exports, "getColors", {
|
|
1526
|
-
enumerable: true,
|
|
1527
|
-
get: function () { return chunkYZX6FH3H_cjs.getColors; }
|
|
1528
|
-
});
|
|
1529
|
-
Object.defineProperty(exports, "getEffectConfig", {
|
|
1530
|
-
enumerable: true,
|
|
1531
|
-
get: function () { return chunkYZX6FH3H_cjs.getEffectConfig; }
|
|
1532
|
-
});
|
|
1533
|
-
Object.defineProperty(exports, "prepareEffectColors", {
|
|
1534
|
-
enumerable: true,
|
|
1535
|
-
get: function () { return chunkYZX6FH3H_cjs.prepareEffectColors; }
|
|
1536
|
-
});
|
|
1537
|
-
Object.defineProperty(exports, "useAudioBus", {
|
|
1538
|
-
enumerable: true,
|
|
1539
|
-
get: function () { return chunkYZX6FH3H_cjs.useAudioBus; }
|
|
1540
|
-
});
|
|
1541
|
-
Object.defineProperty(exports, "useAudioBusStore", {
|
|
1542
|
-
enumerable: true,
|
|
1543
|
-
get: function () { return chunkYZX6FH3H_cjs.useAudioBusStore; }
|
|
1544
|
-
});
|
|
1545
|
-
Object.defineProperty(exports, "useAudioVisualization", {
|
|
1546
|
-
enumerable: true,
|
|
1547
|
-
get: function () { return chunkYZX6FH3H_cjs.useAudioVisualization; }
|
|
1548
|
-
});
|
|
1549
|
-
Object.defineProperty(exports, "useHybridAudio", {
|
|
1550
|
-
enumerable: true,
|
|
1551
|
-
get: function () { return chunkYZX6FH3H_cjs.useHybridAudio; }
|
|
1552
|
-
});
|
|
1553
|
-
Object.defineProperty(exports, "useHybridAudioAnalysis", {
|
|
1554
|
-
enumerable: true,
|
|
1555
|
-
get: function () { return chunkYZX6FH3H_cjs.useHybridAudioAnalysis; }
|
|
1556
|
-
});
|
|
1557
|
-
Object.defineProperty(exports, "useHybridAudioContext", {
|
|
1558
|
-
enumerable: true,
|
|
1559
|
-
get: function () { return chunkYZX6FH3H_cjs.useHybridAudioContext; }
|
|
1560
|
-
});
|
|
1561
|
-
Object.defineProperty(exports, "useHybridAudioControls", {
|
|
1562
|
-
enumerable: true,
|
|
1563
|
-
get: function () { return chunkYZX6FH3H_cjs.useHybridAudioControls; }
|
|
1564
|
-
});
|
|
1565
|
-
Object.defineProperty(exports, "useHybridAudioLevels", {
|
|
1566
|
-
enumerable: true,
|
|
1567
|
-
get: function () { return chunkYZX6FH3H_cjs.useHybridAudioLevels; }
|
|
1568
|
-
});
|
|
1569
|
-
Object.defineProperty(exports, "useHybridAudioState", {
|
|
1570
|
-
enumerable: true,
|
|
1571
|
-
get: function () { return chunkYZX6FH3H_cjs.useHybridAudioState; }
|
|
1572
|
-
});
|
|
1573
|
-
Object.defineProperty(exports, "useHybridWebAudio", {
|
|
1574
|
-
enumerable: true,
|
|
1575
|
-
get: function () { return chunkYZX6FH3H_cjs.useHybridWebAudio; }
|
|
1576
|
-
});
|
|
1577
|
-
Object.defineProperty(exports, "useVisualization", {
|
|
1395
|
+
Object.defineProperty(exports, "AudioPlayer", {
|
|
1578
1396
|
enumerable: true,
|
|
1579
|
-
get: function () { return
|
|
1397
|
+
get: function () { return chunkZLQHUZDU_cjs.Player; }
|
|
1580
1398
|
});
|
|
1581
1399
|
Object.defineProperty(exports, "NativeProvider", {
|
|
1582
1400
|
enumerable: true,
|
|
1583
|
-
get: function () { return
|
|
1401
|
+
get: function () { return chunkDFTVB66S_cjs.NativeProvider; }
|
|
1584
1402
|
});
|
|
1585
1403
|
Object.defineProperty(exports, "StreamProvider", {
|
|
1586
1404
|
enumerable: true,
|
|
1587
|
-
get: function () { return
|
|
1405
|
+
get: function () { return chunkDFTVB66S_cjs.StreamProvider; }
|
|
1588
1406
|
});
|
|
1589
1407
|
Object.defineProperty(exports, "VideoControls", {
|
|
1590
1408
|
enumerable: true,
|
|
1591
|
-
get: function () { return
|
|
1409
|
+
get: function () { return chunkDFTVB66S_cjs.VideoControls; }
|
|
1592
1410
|
});
|
|
1593
1411
|
Object.defineProperty(exports, "VideoErrorFallback", {
|
|
1594
1412
|
enumerable: true,
|
|
1595
|
-
get: function () { return
|
|
1413
|
+
get: function () { return chunkDFTVB66S_cjs.VideoErrorFallback; }
|
|
1596
1414
|
});
|
|
1597
1415
|
Object.defineProperty(exports, "VideoPlayer", {
|
|
1598
1416
|
enumerable: true,
|
|
1599
|
-
get: function () { return
|
|
1417
|
+
get: function () { return chunkDFTVB66S_cjs.VideoPlayer; }
|
|
1600
1418
|
});
|
|
1601
1419
|
Object.defineProperty(exports, "VideoPlayerProvider", {
|
|
1602
1420
|
enumerable: true,
|
|
1603
|
-
get: function () { return
|
|
1421
|
+
get: function () { return chunkDFTVB66S_cjs.VideoPlayerProvider; }
|
|
1604
1422
|
});
|
|
1605
1423
|
Object.defineProperty(exports, "VidstackProvider", {
|
|
1606
1424
|
enumerable: true,
|
|
1607
|
-
get: function () { return
|
|
1425
|
+
get: function () { return chunkDFTVB66S_cjs.VidstackProvider; }
|
|
1608
1426
|
});
|
|
1609
1427
|
Object.defineProperty(exports, "createVideoErrorFallback", {
|
|
1610
1428
|
enumerable: true,
|
|
1611
|
-
get: function () { return
|
|
1429
|
+
get: function () { return chunkDFTVB66S_cjs.createVideoErrorFallback; }
|
|
1612
1430
|
});
|
|
1613
1431
|
Object.defineProperty(exports, "isSimpleStreamSource", {
|
|
1614
1432
|
enumerable: true,
|
|
1615
|
-
get: function () { return
|
|
1433
|
+
get: function () { return chunkDFTVB66S_cjs.isSimpleStreamSource; }
|
|
1616
1434
|
});
|
|
1617
1435
|
Object.defineProperty(exports, "resolveFileSource", {
|
|
1618
1436
|
enumerable: true,
|
|
1619
|
-
get: function () { return
|
|
1437
|
+
get: function () { return chunkDFTVB66S_cjs.resolveFileSource; }
|
|
1620
1438
|
});
|
|
1621
1439
|
Object.defineProperty(exports, "resolvePlayerMode", {
|
|
1622
1440
|
enumerable: true,
|
|
1623
|
-
get: function () { return
|
|
1441
|
+
get: function () { return chunkDFTVB66S_cjs.resolvePlayerMode; }
|
|
1624
1442
|
});
|
|
1625
1443
|
Object.defineProperty(exports, "resolveStreamSource", {
|
|
1626
1444
|
enumerable: true,
|
|
1627
|
-
get: function () { return
|
|
1445
|
+
get: function () { return chunkDFTVB66S_cjs.resolveStreamSource; }
|
|
1628
1446
|
});
|
|
1629
1447
|
Object.defineProperty(exports, "useVideoPlayerContext", {
|
|
1630
1448
|
enumerable: true,
|
|
1631
|
-
get: function () { return
|
|
1449
|
+
get: function () { return chunkDFTVB66S_cjs.useVideoPlayerContext; }
|
|
1632
1450
|
});
|
|
1633
1451
|
Object.defineProperty(exports, "ImageViewer", {
|
|
1634
1452
|
enumerable: true,
|
|
@@ -1740,23 +1558,23 @@ Object.defineProperty(exports, "useCronWeekDays", {
|
|
|
1740
1558
|
});
|
|
1741
1559
|
Object.defineProperty(exports, "MarkdownMessage", {
|
|
1742
1560
|
enumerable: true,
|
|
1743
|
-
get: function () { return
|
|
1561
|
+
get: function () { return chunkS44PW6NK_cjs.MarkdownMessage; }
|
|
1744
1562
|
});
|
|
1745
1563
|
Object.defineProperty(exports, "Mermaid", {
|
|
1746
1564
|
enumerable: true,
|
|
1747
|
-
get: function () { return
|
|
1565
|
+
get: function () { return chunkS44PW6NK_cjs.Mermaid_default; }
|
|
1748
1566
|
});
|
|
1749
1567
|
Object.defineProperty(exports, "PrettyCode", {
|
|
1750
1568
|
enumerable: true,
|
|
1751
|
-
get: function () { return
|
|
1569
|
+
get: function () { return chunkS44PW6NK_cjs.PrettyCode_default; }
|
|
1752
1570
|
});
|
|
1753
1571
|
Object.defineProperty(exports, "extractTextFromChildren", {
|
|
1754
1572
|
enumerable: true,
|
|
1755
|
-
get: function () { return
|
|
1573
|
+
get: function () { return chunkS44PW6NK_cjs.extractTextFromChildren; }
|
|
1756
1574
|
});
|
|
1757
1575
|
Object.defineProperty(exports, "useCollapsibleContent", {
|
|
1758
1576
|
enumerable: true,
|
|
1759
|
-
get: function () { return
|
|
1577
|
+
get: function () { return chunkS44PW6NK_cjs.useCollapsibleContent; }
|
|
1760
1578
|
});
|
|
1761
1579
|
Object.defineProperty(exports, "JsonTree", {
|
|
1762
1580
|
enumerable: true,
|
|
@@ -1859,10 +1677,8 @@ exports.CronScheduler = CronScheduler;
|
|
|
1859
1677
|
exports.DiffEditor = DiffEditor;
|
|
1860
1678
|
exports.Editor = Editor;
|
|
1861
1679
|
exports.EditorProvider = EditorProvider;
|
|
1680
|
+
exports.LazyAudioPlayer = LazyPlayer;
|
|
1862
1681
|
exports.LazyCronScheduler = LazyCronScheduler;
|
|
1863
|
-
exports.LazyHybridAudioPlayer = LazyHybridAudioPlayer;
|
|
1864
|
-
exports.LazyHybridCompactPlayer = LazyHybridCompactPlayer;
|
|
1865
|
-
exports.LazyHybridSimplePlayer = LazyHybridSimplePlayer;
|
|
1866
1682
|
exports.LazyImageViewer = LazyImageViewer;
|
|
1867
1683
|
exports.LazyJsonSchemaForm = LazyJsonSchemaForm;
|
|
1868
1684
|
exports.LazyJsonTree = LazyJsonTree;
|