diff --git a/frontend-tools/video-editor/client/src/components/ClipSegments.tsx b/frontend-tools/video-editor/client/src/components/ClipSegments.tsx
index 65b7215c..02bb8c23 100644
--- a/frontend-tools/video-editor/client/src/components/ClipSegments.tsx
+++ b/frontend-tools/video-editor/client/src/components/ClipSegments.tsx
@@ -1,85 +1,83 @@
-import { formatTime, formatLongTime } from "@/lib/timeUtils";
-import "../styles/ClipSegments.css";
+import { formatTime, formatLongTime } from '@/lib/timeUtils';
+import '../styles/ClipSegments.css';
export interface Segment {
- id: number;
- name: string;
- startTime: number;
- endTime: number;
- thumbnail: string;
+ id: number;
+ name: string;
+ startTime: number;
+ endTime: number;
+ thumbnail: string;
}
interface ClipSegmentsProps {
- segments: Segment[];
+ segments: Segment[];
}
const ClipSegments = ({ segments }: ClipSegmentsProps) => {
- // Sort segments by startTime
- const sortedSegments = [...segments].sort((a, b) => a.startTime - b.startTime);
+ // Sort segments by startTime
+ const sortedSegments = [...segments].sort((a, b) => a.startTime - b.startTime);
- // Handle delete segment click
- const handleDeleteSegment = (segmentId: number) => {
- // Create and dispatch the delete event
- const deleteEvent = new CustomEvent("delete-segment", {
- detail: { segmentId }
- });
- document.dispatchEvent(deleteEvent);
- };
+ // Handle delete segment click
+ const handleDeleteSegment = (segmentId: number) => {
+ // Create and dispatch the delete event
+ const deleteEvent = new CustomEvent('delete-segment', {
+ detail: { segmentId },
+ });
+ document.dispatchEvent(deleteEvent);
+ };
- // Generate the same color background for a segment as shown in the timeline
- const getSegmentColorClass = (index: number) => {
- // Return CSS class based on index modulo 8
- // This matches the CSS nth-child selectors in the timeline
- return `segment-default-color segment-color-${(index % 8) + 1}`;
- };
+ // Generate the same color background for a segment as shown in the timeline
+ const getSegmentColorClass = (index: number) => {
+ // Return CSS class based on index modulo 8
+ // This matches the CSS nth-child selectors in the timeline
+ return `segment-default-color segment-color-${(index % 8) + 1}`;
+ };
- return (
-
-
Clip Segments
+ return (
+
+
Clip Segments
- {sortedSegments.map((segment, index) => (
-
-
-
-
-
Segment {index + 1}
-
- {formatTime(segment.startTime)} - {formatTime(segment.endTime)}
-
-
- Duration: {formatLongTime(segment.endTime - segment.startTime)}
-
-
-
-
-
handleDeleteSegment(segment.id)}
- >
-
-
-
-
-
+ {sortedSegments.map((segment, index) => (
+
+
+
+
+
Segment {index + 1}
+
+ {formatTime(segment.startTime)} - {formatTime(segment.endTime)}
+
+
+ Duration: {formatLongTime(segment.endTime - segment.startTime)}
+
+
+
+
+
handleDeleteSegment(segment.id)}
+ >
+
+
+
+
+
+
+ ))}
+
+ {sortedSegments.length === 0 && (
+
No segments created yet. Use the split button to create segments.
+ )}
- ))}
-
- {sortedSegments.length === 0 && (
-
- No segments created yet. Use the split button to create segments.
-
- )}
-
- );
+ );
};
export default ClipSegments;
diff --git a/frontend-tools/video-editor/client/src/components/EditingTools.tsx b/frontend-tools/video-editor/client/src/components/EditingTools.tsx
index 34e7b91a..fc3a5470 100644
--- a/frontend-tools/video-editor/client/src/components/EditingTools.tsx
+++ b/frontend-tools/video-editor/client/src/components/EditingTools.tsx
@@ -1,108 +1,108 @@
-import "../styles/EditingTools.css";
-import { useEffect, useState } from "react";
+import '../styles/EditingTools.css';
+import { useEffect, useState } from 'react';
interface EditingToolsProps {
- onSplit: () => void;
- onReset: () => void;
- onUndo: () => void;
- onRedo: () => void;
- onPlaySegments: () => void;
- onPlay: () => void;
- canUndo: boolean;
- canRedo: boolean;
- isPlaying?: boolean;
- isPlayingSegments?: boolean;
+ onSplit: () => void;
+ onReset: () => void;
+ onUndo: () => void;
+ onRedo: () => void;
+ onPlaySegments: () => void;
+ onPlay: () => void;
+ canUndo: boolean;
+ canRedo: boolean;
+ isPlaying?: boolean;
+ isPlayingSegments?: boolean;
}
const EditingTools = ({
- onSplit,
- onReset,
- onUndo,
- onRedo,
- onPlaySegments,
- onPlay,
- canUndo,
- canRedo,
- isPlaying = false,
- isPlayingSegments = false
+ onSplit,
+ onReset,
+ onUndo,
+ onRedo,
+ onPlaySegments,
+ onPlay,
+ canUndo,
+ canRedo,
+ isPlaying = false,
+ isPlayingSegments = false,
}: EditingToolsProps) => {
- const [isSmallScreen, setIsSmallScreen] = useState(false);
+ const [isSmallScreen, setIsSmallScreen] = useState(false);
- useEffect(() => {
- const checkScreenSize = () => {
- setIsSmallScreen(window.innerWidth <= 640);
+ useEffect(() => {
+ const checkScreenSize = () => {
+ setIsSmallScreen(window.innerWidth <= 640);
+ };
+
+ checkScreenSize();
+ window.addEventListener('resize', checkScreenSize);
+ return () => window.removeEventListener('resize', checkScreenSize);
+ }, []);
+
+ // Handle play button click with iOS fix
+ const handlePlay = () => {
+ // Ensure lastSeekedPosition is used when play is clicked
+ if (typeof window !== 'undefined') {
+ console.log('Play button clicked, current lastSeekedPosition:', window.lastSeekedPosition);
+ }
+
+ // Call the original handler
+ onPlay();
};
- checkScreenSize();
- window.addEventListener("resize", checkScreenSize);
- return () => window.removeEventListener("resize", checkScreenSize);
- }, []);
+ return (
+
+
+ {/* Left side - Play buttons group */}
+
+ {/* Play Segments button */}
+
+ {isPlayingSegments ? (
+ <>
+
+
+
+
+
+ Stop Preview
+ Stop Preview
+ >
+ ) : (
+ <>
+
+
+
+
+ Play Preview
+ Play Preview
+ >
+ )}
+
- // Handle play button click with iOS fix
- const handlePlay = () => {
- // Ensure lastSeekedPosition is used when play is clicked
- if (typeof window !== "undefined") {
- console.log("Play button clicked, current lastSeekedPosition:", window.lastSeekedPosition);
- }
-
- // Call the original handler
- onPlay();
- };
-
- return (
-
-
- {/* Left side - Play buttons group */}
-
- {/* Play Segments button */}
-
- {isPlayingSegments ? (
- <>
-
-
-
-
-
- Stop Preview
- Stop Preview
- >
- ) : (
- <>
-
-
-
-
- Play Preview
- Play Preview
- >
- )}
-
-
- {/* Play Preview button */}
- {/*
*/}
- {/* Standard Play button (only shown when not in segments playback on small screens) */}
- {(!isPlayingSegments || !isSmallScreen) && (
-
- {isPlaying && !isPlayingSegments ? (
- <>
-
-
-
-
-
- Pause
- Pause
- >
- ) : (
- <>
-
-
-
-
- Play
- Play
- >
- )}
-
- )}
+ {/* Standard Play button (only shown when not in segments playback on small screens) */}
+ {(!isPlayingSegments || !isSmallScreen) && (
+
+ {isPlaying && !isPlayingSegments ? (
+ <>
+
+
+
+
+
+ Pause
+ Pause
+ >
+ ) : (
+ <>
+
+
+
+
+ Play
+ Play
+ >
+ )}
+
+ )}
- {/* Segments Playback message (replaces play button during segments playback) */}
- {/* {isPlayingSegments && !isSmallScreen && (
+ {/* Segments Playback message (replaces play button during segments playback) */}
+ {/* {isPlayingSegments && !isSmallScreen && (
@@ -190,8 +190,8 @@ const EditingTools = ({
)} */}
- {/* Preview mode message (replaces play button) */}
- {/* {isPreviewMode && (
+ {/* Preview mode message (replaces play button) */}
+ {/* {isPreviewMode && (
@@ -201,72 +201,72 @@ const EditingTools = ({
Preview Mode
)} */}
-
+
- {/* Right side - Editing tools */}
-
-
-
-
-
-
- Undo
-
-
-
-
-
-
- Redo
-
-
-
-
-
-
- Reset
-
+ {/* Right side - Editing tools */}
+
+
+
+
+
+
+ Undo
+
+
+
+
+
+
+ Redo
+
+
+
+
+
+
+ Reset
+
+
+
-
-
- );
+ );
};
export default EditingTools;
diff --git a/frontend-tools/video-editor/client/src/components/IOSPlayPrompt.tsx b/frontend-tools/video-editor/client/src/components/IOSPlayPrompt.tsx
index 8719730e..33ea80d7 100644
--- a/frontend-tools/video-editor/client/src/components/IOSPlayPrompt.tsx
+++ b/frontend-tools/video-editor/client/src/components/IOSPlayPrompt.tsx
@@ -1,55 +1,55 @@
-import React, { useState, useEffect } from "react";
-import "../styles/IOSPlayPrompt.css";
+import React, { useState, useEffect } from 'react';
+import '../styles/IOSPlayPrompt.css';
interface MobilePlayPromptProps {
- videoRef: React.RefObject
;
- onPlay: () => void;
+ videoRef: React.RefObject;
+ onPlay: () => void;
}
const MobilePlayPrompt: React.FC = ({ videoRef, onPlay }) => {
- const [isVisible, setIsVisible] = useState(false);
+ const [isVisible, setIsVisible] = useState(false);
- // Check if the device is mobile
- useEffect(() => {
- const checkIsMobile = () => {
- // More comprehensive check for mobile/tablet devices
- return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile|mobile|CriOS/i.test(
- navigator.userAgent
- );
+ // Check if the device is mobile
+ useEffect(() => {
+ const checkIsMobile = () => {
+ // More comprehensive check for mobile/tablet devices
+ return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile|mobile|CriOS/i.test(
+ navigator.userAgent
+ );
+ };
+
+ // Always show for mobile devices on each visit
+ const isMobile = checkIsMobile();
+ setIsVisible(isMobile);
+ }, []);
+
+ // Close the prompt when video plays
+ useEffect(() => {
+ const video = videoRef.current;
+ if (!video) return;
+
+ const handlePlay = () => {
+ // Just close the prompt when video plays
+ setIsVisible(false);
+ };
+
+ video.addEventListener('play', handlePlay);
+ return () => {
+ video.removeEventListener('play', handlePlay);
+ };
+ }, [videoRef]);
+
+ const handlePlayClick = () => {
+ onPlay();
+ // Prompt will be closed by the play event handler
};
- // Always show for mobile devices on each visit
- const isMobile = checkIsMobile();
- setIsVisible(isMobile);
- }, []);
+ if (!isVisible) return null;
- // Close the prompt when video plays
- useEffect(() => {
- const video = videoRef.current;
- if (!video) return;
-
- const handlePlay = () => {
- // Just close the prompt when video plays
- setIsVisible(false);
- };
-
- video.addEventListener("play", handlePlay);
- return () => {
- video.removeEventListener("play", handlePlay);
- };
- }, [videoRef]);
-
- const handlePlayClick = () => {
- onPlay();
- // Prompt will be closed by the play event handler
- };
-
- if (!isVisible) return null;
-
- return (
-
-
- {/*
Mobile Device Notice
+ return (
+
+
+ {/*
Mobile Device Notice
For the best video editing experience on mobile devices, you need to play the video first before
@@ -65,12 +65,12 @@ const MobilePlayPrompt: React.FC = ({ videoRef, onPlay })
*/}
-
- Click to start editing...
-
-
-
- );
+
+ Click to start editing...
+
+
+
+ );
};
export default MobilePlayPrompt;
diff --git a/frontend-tools/video-editor/client/src/components/IOSVideoPlayer.tsx b/frontend-tools/video-editor/client/src/components/IOSVideoPlayer.tsx
index fe045628..361d406f 100644
--- a/frontend-tools/video-editor/client/src/components/IOSVideoPlayer.tsx
+++ b/frontend-tools/video-editor/client/src/components/IOSVideoPlayer.tsx
@@ -1,184 +1,184 @@
-import { useEffect, useState, useRef } from "react";
-import { formatTime } from "@/lib/timeUtils";
-import "../styles/IOSVideoPlayer.css";
+import { useEffect, useState, useRef } from 'react';
+import { formatTime } from '@/lib/timeUtils';
+import '../styles/IOSVideoPlayer.css';
interface IOSVideoPlayerProps {
- videoRef: React.RefObject
;
- currentTime: number;
- duration: number;
+ videoRef: React.RefObject;
+ currentTime: number;
+ duration: number;
}
const IOSVideoPlayer = ({ videoRef, currentTime, duration }: IOSVideoPlayerProps) => {
- const [videoUrl, setVideoUrl] = useState("");
- const [iosVideoRef, setIosVideoRef] = useState(null);
+ const [videoUrl, setVideoUrl] = useState('');
+ const [iosVideoRef, setIosVideoRef] = useState(null);
- // Refs for hold-to-continue functionality
- const incrementIntervalRef = useRef(null);
- const decrementIntervalRef = useRef(null);
+ // Refs for hold-to-continue functionality
+ const incrementIntervalRef = useRef(null);
+ const decrementIntervalRef = useRef(null);
- // Clean up intervals on unmount
- useEffect(() => {
- return () => {
- if (incrementIntervalRef.current) clearInterval(incrementIntervalRef.current);
- if (decrementIntervalRef.current) clearInterval(decrementIntervalRef.current);
+ // Clean up intervals on unmount
+ useEffect(() => {
+ return () => {
+ if (incrementIntervalRef.current) clearInterval(incrementIntervalRef.current);
+ if (decrementIntervalRef.current) clearInterval(decrementIntervalRef.current);
+ };
+ }, []);
+
+ // Get the video source URL from the main player
+ useEffect(() => {
+ if (videoRef.current && videoRef.current.querySelector('source')) {
+ const source = videoRef.current.querySelector('source') as HTMLSourceElement;
+ if (source && source.src) {
+ setVideoUrl(source.src);
+ }
+ } else {
+ // Fallback to sample video if needed
+ setVideoUrl('/videos/sample-video.mp4');
+ }
+ }, [videoRef]);
+
+ // Function to jump 15 seconds backward
+ const jumpBackward15 = () => {
+ if (iosVideoRef) {
+ const newTime = Math.max(0, iosVideoRef.currentTime - 15);
+ iosVideoRef.currentTime = newTime;
+ }
};
- }, []);
- // Get the video source URL from the main player
- useEffect(() => {
- if (videoRef.current && videoRef.current.querySelector("source")) {
- const source = videoRef.current.querySelector("source") as HTMLSourceElement;
- if (source && source.src) {
- setVideoUrl(source.src);
- }
- } else {
- // Fallback to sample video if needed
- setVideoUrl("/videos/sample-video-10m.mp4");
- }
- }, [videoRef]);
+ // Function to jump 15 seconds forward
+ const jumpForward15 = () => {
+ if (iosVideoRef) {
+ const newTime = Math.min(iosVideoRef.duration, iosVideoRef.currentTime + 15);
+ iosVideoRef.currentTime = newTime;
+ }
+ };
- // Function to jump 15 seconds backward
- const jumpBackward15 = () => {
- if (iosVideoRef) {
- const newTime = Math.max(0, iosVideoRef.currentTime - 15);
- iosVideoRef.currentTime = newTime;
- }
- };
+ // Start continuous 50ms increment when button is held
+ const startIncrement = (e: React.MouseEvent | React.TouchEvent) => {
+ // Prevent default to avoid text selection
+ e.preventDefault();
- // Function to jump 15 seconds forward
- const jumpForward15 = () => {
- if (iosVideoRef) {
- const newTime = Math.min(iosVideoRef.duration, iosVideoRef.currentTime + 15);
- iosVideoRef.currentTime = newTime;
- }
- };
+ if (!iosVideoRef) return;
+ if (incrementIntervalRef.current) clearInterval(incrementIntervalRef.current);
- // Start continuous 50ms increment when button is held
- const startIncrement = (e: React.MouseEvent | React.TouchEvent) => {
- // Prevent default to avoid text selection
- e.preventDefault();
-
- if (!iosVideoRef) return;
- if (incrementIntervalRef.current) clearInterval(incrementIntervalRef.current);
-
- // First immediate adjustment
- iosVideoRef.currentTime = Math.min(iosVideoRef.duration, iosVideoRef.currentTime + 0.05);
-
- // Setup continuous adjustment
- incrementIntervalRef.current = setInterval(() => {
- if (iosVideoRef) {
+ // First immediate adjustment
iosVideoRef.currentTime = Math.min(iosVideoRef.duration, iosVideoRef.currentTime + 0.05);
- }
- }, 100);
- };
- // Stop continuous increment
- const stopIncrement = () => {
- if (incrementIntervalRef.current) {
- clearInterval(incrementIntervalRef.current);
- incrementIntervalRef.current = null;
- }
- };
+ // Setup continuous adjustment
+ incrementIntervalRef.current = setInterval(() => {
+ if (iosVideoRef) {
+ iosVideoRef.currentTime = Math.min(iosVideoRef.duration, iosVideoRef.currentTime + 0.05);
+ }
+ }, 100);
+ };
- // Start continuous 50ms decrement when button is held
- const startDecrement = (e: React.MouseEvent | React.TouchEvent) => {
- // Prevent default to avoid text selection
- e.preventDefault();
+ // Stop continuous increment
+ const stopIncrement = () => {
+ if (incrementIntervalRef.current) {
+ clearInterval(incrementIntervalRef.current);
+ incrementIntervalRef.current = null;
+ }
+ };
- if (!iosVideoRef) return;
- if (decrementIntervalRef.current) clearInterval(decrementIntervalRef.current);
+ // Start continuous 50ms decrement when button is held
+ const startDecrement = (e: React.MouseEvent | React.TouchEvent) => {
+ // Prevent default to avoid text selection
+ e.preventDefault();
- // First immediate adjustment
- iosVideoRef.currentTime = Math.max(0, iosVideoRef.currentTime - 0.05);
+ if (!iosVideoRef) return;
+ if (decrementIntervalRef.current) clearInterval(decrementIntervalRef.current);
- // Setup continuous adjustment
- decrementIntervalRef.current = setInterval(() => {
- if (iosVideoRef) {
+ // First immediate adjustment
iosVideoRef.currentTime = Math.max(0, iosVideoRef.currentTime - 0.05);
- }
- }, 100);
- };
- // Stop continuous decrement
- const stopDecrement = () => {
- if (decrementIntervalRef.current) {
- clearInterval(decrementIntervalRef.current);
- decrementIntervalRef.current = null;
- }
- };
+ // Setup continuous adjustment
+ decrementIntervalRef.current = setInterval(() => {
+ if (iosVideoRef) {
+ iosVideoRef.currentTime = Math.max(0, iosVideoRef.currentTime - 0.05);
+ }
+ }, 100);
+ };
- return (
-
- {/* Current Time / Duration Display */}
-
-
- {formatTime(currentTime)} / {formatTime(duration)}
-
-
+ // Stop continuous decrement
+ const stopDecrement = () => {
+ if (decrementIntervalRef.current) {
+ clearInterval(decrementIntervalRef.current);
+ decrementIntervalRef.current = null;
+ }
+ };
- {/* iOS-optimized Video Element with Native Controls */}
-
setIosVideoRef(ref)}
- className="w-full rounded-md"
- src={videoUrl}
- controls
- playsInline
- webkit-playsinline="true"
- x-webkit-airplay="allow"
- preload="auto"
- crossOrigin="anonymous"
- >
-
- Your browser doesn't support HTML5 video.
-
+ return (
+
+ {/* Current Time / Duration Display */}
+
+
+ {formatTime(currentTime)} / {formatTime(duration)}
+
+
- {/* iOS Video Skip Controls */}
-
-
- -15s
-
-
- +15s
-
-
+ {/* iOS-optimized Video Element with Native Controls */}
+
setIosVideoRef(ref)}
+ className="w-full rounded-md"
+ src={videoUrl}
+ controls
+ playsInline
+ webkit-playsinline="true"
+ x-webkit-airplay="allow"
+ preload="auto"
+ crossOrigin="anonymous"
+ >
+
+ Your browser doesn't support HTML5 video.
+
- {/* iOS Fine Control Buttons */}
-
-
- -50ms
-
-
- +50ms
-
-
+ {/* iOS Video Skip Controls */}
+
+
+ -15s
+
+
+ +15s
+
+
-
-
This player uses native iOS controls for better compatibility with iOS devices.
-
-
- );
+ {/* iOS Fine Control Buttons */}
+
+
+ -50ms
+
+
+ +50ms
+
+
+
+
+
This player uses native iOS controls for better compatibility with iOS devices.
+
+
+ );
};
export default IOSVideoPlayer;
diff --git a/frontend-tools/video-editor/client/src/components/Modal.tsx b/frontend-tools/video-editor/client/src/components/Modal.tsx
index d5f27c87..3f9a7d57 100644
--- a/frontend-tools/video-editor/client/src/components/Modal.tsx
+++ b/frontend-tools/video-editor/client/src/components/Modal.tsx
@@ -1,74 +1,74 @@
-import React, { useEffect } from "react";
-import "../styles/Modal.css";
+import React, { useEffect } from 'react';
+import '../styles/Modal.css';
interface ModalProps {
- isOpen: boolean;
- onClose: () => void;
- title: string;
- children: React.ReactNode;
- actions?: React.ReactNode;
+ isOpen: boolean;
+ onClose: () => void;
+ title: string;
+ children: React.ReactNode;
+ actions?: React.ReactNode;
}
const Modal: React.FC = ({ isOpen, onClose, title, children, actions }) => {
- // Close modal when Escape key is pressed
- useEffect(() => {
- const handleEscapeKey = (event: KeyboardEvent) => {
- if (event.key === "Escape" && isOpen) {
- onClose();
- }
+ // Close modal when Escape key is pressed
+ useEffect(() => {
+ const handleEscapeKey = (event: KeyboardEvent) => {
+ if (event.key === 'Escape' && isOpen) {
+ onClose();
+ }
+ };
+
+ document.addEventListener('keydown', handleEscapeKey);
+
+ // Disable body scrolling when modal is open
+ if (isOpen) {
+ document.body.style.overflow = 'hidden';
+ }
+
+ return () => {
+ document.removeEventListener('keydown', handleEscapeKey);
+ document.body.style.overflow = '';
+ };
+ }, [isOpen, onClose]);
+
+ if (!isOpen) return null;
+
+ // Handle click outside the modal content to close it
+ const handleClickOutside = (event: React.MouseEvent) => {
+ if (event.target === event.currentTarget) {
+ onClose();
+ }
};
- document.addEventListener("keydown", handleEscapeKey);
+ return (
+
+
e.stopPropagation()}>
+
+
{title}
+
+
+
+
+
+
+
- // Disable body scrolling when modal is open
- if (isOpen) {
- document.body.style.overflow = "hidden";
- }
+
{children}
- return () => {
- document.removeEventListener("keydown", handleEscapeKey);
- document.body.style.overflow = "";
- };
- }, [isOpen, onClose]);
-
- if (!isOpen) return null;
-
- // Handle click outside the modal content to close it
- const handleClickOutside = (event: React.MouseEvent) => {
- if (event.target === event.currentTarget) {
- onClose();
- }
- };
-
- return (
-
-
e.stopPropagation()}>
-
-
{title}
-
-
-
-
-
-
+ {actions &&
{actions}
}
+
-
-
{children}
-
- {actions &&
{actions}
}
-
-
- );
+ );
};
export default Modal;
diff --git a/frontend-tools/video-editor/client/src/components/TimelineControls.tsx b/frontend-tools/video-editor/client/src/components/TimelineControls.tsx
index 3bf7e6fe..ab057cc3 100644
--- a/frontend-tools/video-editor/client/src/components/TimelineControls.tsx
+++ b/frontend-tools/video-editor/client/src/components/TimelineControls.tsx
@@ -1,2828 +1,2769 @@
-import { useRef, useEffect, useState } from "react";
-import { formatTime, formatDetailedTime } from "../lib/timeUtils";
-import { generateThumbnail, generateSolidColor } from "../lib/videoUtils";
-import { Segment } from "./ClipSegments";
-import Modal from "./Modal";
-import { trimVideo } from "../services/videoApi";
-import logger from "../lib/logger";
-import "../styles/TimelineControls.css";
-import "../styles/TwoRowTooltip.css";
-import playIcon from "../assets/play-icon.svg";
-import pauseIcon from "../assets/pause-icon.svg";
-import playFromBeginningIcon from "../assets/play-from-beginning-icon.svg";
-import segmentEndIcon from "../assets/segment-end-new.svg";
-import segmentStartIcon from "../assets/segment-start-new.svg";
-import segmentNewStartIcon from "../assets/segment-start-new-cutaway.svg";
-import segmentNewEndIcon from "../assets/segment-end-new-cutaway.svg";
+import { useRef, useEffect, useState } from 'react';
+import { formatTime, formatDetailedTime } from '../lib/timeUtils';
+import { generateThumbnail, generateSolidColor } from '../lib/videoUtils';
+import { Segment } from './ClipSegments';
+import Modal from './Modal';
+import { trimVideo } from '../services/videoApi';
+import logger from '../lib/logger';
+import '../styles/TimelineControls.css';
+import '../styles/TwoRowTooltip.css';
+import playIcon from '../assets/play-icon.svg';
+import pauseIcon from '../assets/pause-icon.svg';
+import playFromBeginningIcon from '../assets/play-from-beginning-icon.svg';
+import segmentEndIcon from '../assets/segment-end-new.svg';
+import segmentStartIcon from '../assets/segment-start-new.svg';
+import segmentNewStartIcon from '../assets/segment-start-new-cutaway.svg';
+import segmentNewEndIcon from '../assets/segment-end-new-cutaway.svg';
// Add styles for the media page link
const mediaPageLinkStyles = {
- color: "#007bff",
- textDecoration: "none",
- fontWeight: "bold",
- "&:hover": {
- textDecoration: "underline",
- color: "#0056b3"
- }
+ color: '#007bff',
+ textDecoration: 'none',
+ fontWeight: 'bold',
+ '&:hover': {
+ textDecoration: 'underline',
+ color: '#0056b3',
+ },
} as const;
interface TimelineControlsProps {
- currentTime: number;
- duration: number;
- thumbnails: string[];
- trimStart: number;
- trimEnd: number;
- splitPoints: number[];
- zoomLevel: number;
- clipSegments: Segment[];
- onTrimStartChange: (time: number) => void;
- onTrimEndChange: (time: number) => void;
- onZoomChange: (level: number) => void;
- onSeek: (time: number) => void;
- videoRef: React.RefObject
;
- onSave?: () => void;
- onSaveACopy?: () => void;
- onSaveSegments?: () => void;
- hasUnsavedChanges?: boolean;
- isIOSUninitialized?: boolean;
- isPlaying: boolean;
- setIsPlaying: (playing: boolean) => void;
- onPlayPause: () => void; // Add this prop
- isPlayingSegments?: boolean;
+ currentTime: number;
+ duration: number;
+ thumbnails: string[];
+ trimStart: number;
+ trimEnd: number;
+ splitPoints: number[];
+ zoomLevel: number;
+ clipSegments: Segment[];
+ onTrimStartChange: (time: number) => void;
+ onTrimEndChange: (time: number) => void;
+ onZoomChange: (level: number) => void;
+ onSeek: (time: number) => void;
+ videoRef: React.RefObject;
+ onSave?: () => void;
+ onSaveACopy?: () => void;
+ onSaveSegments?: () => void;
+ hasUnsavedChanges?: boolean;
+ isIOSUninitialized?: boolean;
+ isPlaying: boolean;
+ setIsPlaying: (playing: boolean) => void;
+ onPlayPause: () => void; // Add this prop
+ isPlayingSegments?: boolean;
}
// Function to calculate and constrain tooltip position to keep it on screen
// Uses smooth transitions instead of hard breakpoints to eliminate jumping
const constrainTooltipPosition = (positionPercent: number) => {
- // Smooth transition zones instead of hard breakpoints
- const leftTransitionStart = 0;
- const leftTransitionEnd = 25;
- const rightTransitionStart = 75;
- const rightTransitionEnd = 100;
+ // Smooth transition zones instead of hard breakpoints
+ const leftTransitionStart = 0;
+ const leftTransitionEnd = 25;
+ const rightTransitionStart = 75;
+ const rightTransitionEnd = 100;
- let leftValue: string;
- let transform: string;
+ let leftValue: string;
+ let transform: string;
- if (positionPercent <= leftTransitionEnd) {
- // Left side: smooth transition from center to left-aligned
- if (positionPercent <= leftTransitionStart) {
- // Fully left-aligned
- leftValue = "0%";
- transform = "none";
+ if (positionPercent <= leftTransitionEnd) {
+ // Left side: smooth transition from center to left-aligned
+ if (positionPercent <= leftTransitionStart) {
+ // Fully left-aligned
+ leftValue = '0%';
+ transform = 'none';
+ } else {
+ // Smooth transition zone
+ const transitionProgress =
+ (positionPercent - leftTransitionStart) / (leftTransitionEnd - leftTransitionStart);
+ const translateAmount = -50 * transitionProgress; // Gradually reduce from 0% to -50%
+ leftValue = `${positionPercent}%`;
+ transform = `translateX(${translateAmount}%)`;
+ }
+ } else if (positionPercent >= rightTransitionStart) {
+ // Right side: smooth transition from center to right-aligned
+ if (positionPercent >= rightTransitionEnd) {
+ // Fully right-aligned
+ leftValue = '100%';
+ transform = 'translateX(-100%)';
+ } else {
+ // Smooth transition zone
+ const transitionProgress =
+ (positionPercent - rightTransitionStart) / (rightTransitionEnd - rightTransitionStart);
+ const translateAmount = -50 - 50 * transitionProgress; // Gradually change from -50% to -100%
+ leftValue = `${positionPercent}%`;
+ transform = `translateX(${translateAmount}%)`;
+ }
} else {
- // Smooth transition zone
- const transitionProgress =
- (positionPercent - leftTransitionStart) / (leftTransitionEnd - leftTransitionStart);
- const translateAmount = -50 * transitionProgress; // Gradually reduce from 0% to -50%
- leftValue = `${positionPercent}%`;
- transform = `translateX(${translateAmount}%)`;
+ // Center zone: normal centered positioning
+ leftValue = `${positionPercent}%`;
+ transform = 'translateX(-50%)';
}
- } else if (positionPercent >= rightTransitionStart) {
- // Right side: smooth transition from center to right-aligned
- if (positionPercent >= rightTransitionEnd) {
- // Fully right-aligned
- leftValue = "100%";
- transform = "translateX(-100%)";
- } else {
- // Smooth transition zone
- const transitionProgress =
- (positionPercent - rightTransitionStart) / (rightTransitionEnd - rightTransitionStart);
- const translateAmount = -50 - 50 * transitionProgress; // Gradually change from -50% to -100%
- leftValue = `${positionPercent}%`;
- transform = `translateX(${translateAmount}%)`;
- }
- } else {
- // Center zone: normal centered positioning
- leftValue = `${positionPercent}%`;
- transform = "translateX(-50%)";
- }
- return { left: leftValue, transform };
+ return { left: leftValue, transform };
};
const TimelineControls = ({
- currentTime,
- duration,
- thumbnails,
- trimStart,
- trimEnd,
- splitPoints,
- zoomLevel,
- clipSegments,
- onTrimStartChange,
- onTrimEndChange,
- onZoomChange,
- onSeek,
- videoRef,
- onSave,
- onSaveACopy,
- onSaveSegments,
- hasUnsavedChanges = false,
- isIOSUninitialized = false,
- isPlaying,
- setIsPlaying,
- onPlayPause, // Add this prop
- isPlayingSegments = false
-}: TimelineControlsProps) => {
- const timelineRef = useRef(null);
- const leftHandleRef = useRef(null);
- const rightHandleRef = useRef(null);
- const [selectedSegmentId, setSelectedSegmentId] = useState(null);
- const [showEmptySpaceTooltip, setShowEmptySpaceTooltip] = useState(false);
- const [tooltipPosition, setTooltipPosition] = useState({ x: 0, y: 0 });
- const [clickedTime, setClickedTime] = useState(0);
- const [isZoomDropdownOpen, setIsZoomDropdownOpen] = useState(false);
- const [availableSegmentDuration, setAvailableSegmentDuration] = useState(30); // Default 30 seconds
- const [isPlayingSegment, setIsPlayingSegment] = useState(false);
- const [activeSegment, setActiveSegment] = useState(null);
- const [displayTime, setDisplayTime] = useState(0);
- // Track when we should continue playing (clicking play after boundary stop)
- const [continuePastBoundary, setContinuePastBoundary] = useState(false);
-
- // Reference for the scrollable container
- const scrollContainerRef = useRef(null);
-
- // Helper function for time adjustment buttons to maintain playback state
- const handleTimeAdjustment = (offsetSeconds: number) => (e: React.MouseEvent) => {
- e.stopPropagation();
-
- // Calculate new time based on offset (positive or negative)
- const newTime =
- offsetSeconds < 0
- ? Math.max(0, clickedTime + offsetSeconds) // For negative offsets (going back)
- : Math.min(duration, clickedTime + offsetSeconds); // For positive offsets (going forward)
-
- // Save the current playing state before seeking
- const wasPlaying = isPlayingSegment;
-
- // Seek to the new time
- onSeek(newTime);
-
- // Update both clicked time and display time
- setClickedTime(newTime);
- setDisplayTime(newTime);
-
- // Resume playback if it was playing before
- if (wasPlaying && videoRef.current) {
- videoRef.current.play();
- setIsPlayingSegment(true);
- }
- };
-
- // Enhanced helper for continuous time adjustment when button is held down
- const handleContinuousTimeAdjustment = (offsetSeconds: number) => {
- // Fixed adjustment amount - exactly 50ms each time
- const adjustmentValue = offsetSeconds;
- // Hold timer for continuous adjustment
- let holdTimer: NodeJS.Timeout | null = null;
- let continuousTimer: NodeJS.Timeout | null = null;
- // Store the last time value to correctly calculate the next increment
- let lastTimeValue = clickedTime;
-
- // Function to perform time adjustment
- const adjustTime = () => {
- // Calculate new time based on fixed offset (positive or negative)
- const newTime =
- adjustmentValue < 0
- ? Math.max(0, lastTimeValue + adjustmentValue) // For negative offsets (going back)
- : Math.min(duration, lastTimeValue + adjustmentValue); // For positive offsets (going forward)
-
- // Update our last time value for next adjustment
- lastTimeValue = newTime;
-
- // Save the current playing state before seeking
- const wasPlaying = isPlayingSegment;
-
- // Seek to the new time
- onSeek(newTime);
-
- // Update both clicked time and display time
- setClickedTime(newTime);
- setDisplayTime(newTime);
-
- // Update tooltip position
- if (timelineRef.current) {
- const rect = timelineRef.current.getBoundingClientRect();
- const positionPercent = (newTime / duration) * 100;
- const xPos = rect.left + rect.width * (positionPercent / 100);
- setTooltipPosition({
- x: xPos,
- y: rect.top - 10
- });
-
- // Find if we're in a segment at the new time
- const segmentAtTime = clipSegments.find(
- (seg) => newTime >= seg.startTime && newTime <= seg.endTime
- );
-
- if (segmentAtTime) {
- // Show segment tooltip
- setSelectedSegmentId(segmentAtTime.id);
- setShowEmptySpaceTooltip(false);
- } else {
- // Show cutaway tooltip
- setSelectedSegmentId(null);
- const availableSpace = calculateAvailableSpace(newTime);
- setAvailableSegmentDuration(availableSpace);
- setShowEmptySpaceTooltip(true);
- }
- }
-
- // Resume playback if it was playing before
- if (wasPlaying && videoRef.current) {
- videoRef.current.play();
- setIsPlayingSegment(true);
- }
- };
-
- // Return mouse event handlers with touch support
- return {
- onMouseDown: (e: React.MouseEvent) => {
- e.stopPropagation();
- e.preventDefault();
-
- // Update the initial last time value
- lastTimeValue = clickedTime;
-
- // Perform initial adjustment
- adjustTime();
-
- // Start continuous adjustment after 1.5s hold
- holdTimer = setTimeout(() => {
- // After 1.5s delay, start adjusting at a slower pace (every 200ms)
- continuousTimer = setInterval(adjustTime, 200);
- }, 750);
-
- // Add mouse up and leave handlers to document to ensure we catch the release
- const clearTimers = () => {
- if (holdTimer) {
- clearTimeout(holdTimer);
- holdTimer = null;
- }
- if (continuousTimer) {
- clearInterval(continuousTimer);
- continuousTimer = null;
- }
- document.removeEventListener("mouseup", clearTimers);
- document.removeEventListener("mouseleave", clearTimers);
- };
-
- document.addEventListener("mouseup", clearTimers);
- document.addEventListener("mouseleave", clearTimers);
- },
- onTouchStart: (e: React.TouchEvent) => {
- e.stopPropagation();
- e.preventDefault();
- 21;
-
- // Update the initial last time value
- lastTimeValue = clickedTime;
-
- // Perform initial adjustment
- adjustTime();
-
- // Start continuous adjustment after 1.5s hold
- holdTimer = setTimeout(() => {
- // After 1.5s delay, start adjusting at a slower pace (every 200ms)
- continuousTimer = setInterval(adjustTime, 200);
- }, 750);
-
- // Add touch end handler to ensure we catch the release
- const clearTimers = () => {
- if (holdTimer) {
- clearTimeout(holdTimer);
- holdTimer = null;
- }
- if (continuousTimer) {
- clearInterval(continuousTimer);
- continuousTimer = null;
- }
- document.removeEventListener("touchend", clearTimers);
- document.removeEventListener("touchcancel", clearTimers);
- };
-
- document.addEventListener("touchend", clearTimers);
- document.addEventListener("touchcancel", clearTimers);
- },
- onClick: (e: React.MouseEvent) => {
- // This prevents the click event from firing twice
- e.stopPropagation();
- }
- };
- };
-
- // Modal states
- const [showSaveModal, setShowSaveModal] = useState(false);
- const [showSaveAsModal, setShowSaveAsModal] = useState(false);
- const [showSaveSegmentsModal, setShowSaveSegmentsModal] = useState(false);
- const [showProcessingModal, setShowProcessingModal] = useState(false);
- const [showSuccessModal, setShowSuccessModal] = useState(false);
- const [showErrorModal, setShowErrorModal] = useState(false);
- const [successMessage, setSuccessMessage] = useState("");
- const [errorMessage, setErrorMessage] = useState("");
- const [redirectUrl, setRedirectUrl] = useState("");
- const [saveType, setSaveType] = useState<"save" | "copy" | "segments">("save");
-
- // Calculate positions as percentages
- const currentTimePercent = duration > 0 ? (currentTime / duration) * 100 : 0;
- const trimStartPercent = duration > 0 ? (trimStart / duration) * 100 : 0;
- const trimEndPercent = duration > 0 ? (trimEnd / duration) * 100 : 0;
-
- // No need for an extra effect here as we handle displayTime updates in the segment playback effect
-
- // Save and API handlers
- const handleSaveConfirm = async () => {
- // Close confirmation modal and show processing modal
- setShowSaveModal(false);
- setShowProcessingModal(true);
- setSaveType("save");
-
- try {
- // Format segments data for API request
- const segments = clipSegments.map((segment) => ({
- startTime: formatDetailedTime(segment.startTime),
- endTime: formatDetailedTime(segment.endTime)
- }));
-
- const mediaId =
- (typeof window !== "undefined" && (window as any).MEDIA_DATA?.mediaId) || null;
- const redirectURL =
- (typeof window !== "undefined" && (window as any).MEDIA_DATA?.redirectURL) || null;
-
- // Log the request details for debugging
- logger.debug("Save request:", {
- mediaId,
- segments,
- saveAsCopy: false,
- redirectURL
- });
-
- const response = await trimVideo(mediaId, {
- segments,
- saveAsCopy: false
- });
-
- // Log the response for debugging
- logger.debug("Save response:", response);
-
- // Hide processing modal
- setShowProcessingModal(false);
-
- // Check if response indicates success (200 OK)
- if (response.status === 200) {
- // For "Save", use the redirectURL from the window or response
- const finalRedirectUrl = redirectURL || response.url_redirect;
- logger.debug("Using redirect URL:", finalRedirectUrl);
-
- setRedirectUrl(finalRedirectUrl);
- setSuccessMessage("Video saved successfully!");
-
- // Show success modal
- setShowSuccessModal(true);
- } else if (response.status === 400) {
- // Set error message from response and show error modal
- const errorMsg = response.error || "An error occurred during processing";
- logger.debug("Save error (400):", errorMsg);
- setErrorMessage(errorMsg);
- setShowErrorModal(true);
- } else {
- // Handle other status codes as needed
- logger.debug("Save error (unknown status):", response);
- setErrorMessage("An unexpected error occurred");
- setShowErrorModal(true);
- }
- } catch (error) {
- logger.error("Error processing video:", error);
- setShowProcessingModal(false);
-
- // Set error message and show error modal
- const errorMsg =
- error instanceof Error ? error.message : "An error occurred during processing";
- logger.debug("Save error (exception):", errorMsg);
- setErrorMessage(errorMsg);
- setShowErrorModal(true);
- }
- };
-
- const handleSaveAsCopyConfirm = async () => {
- // Close confirmation modal and show processing modal
- setShowSaveAsModal(false);
- setShowProcessingModal(true);
- setSaveType("copy");
-
- try {
- // Format segments data for API request
- const segments = clipSegments.map((segment) => ({
- startTime: formatDetailedTime(segment.startTime),
- endTime: formatDetailedTime(segment.endTime)
- }));
-
- const mediaId =
- (typeof window !== "undefined" && (window as any).MEDIA_DATA?.mediaId) || null;
- const redirectUserMediaURL =
- (typeof window !== "undefined" && (window as any).MEDIA_DATA?.redirectUserMediaURL) || null;
-
- // Log the request details for debugging
- logger.debug("Save as copy request:", {
- mediaId,
- segments,
- saveAsCopy: true,
- redirectUserMediaURL
- });
-
- const response = await trimVideo(mediaId, {
- segments,
- saveAsCopy: true
- });
-
- // Log the response for debugging
- logger.debug("Save as copy response:", response);
-
- // Hide processing modal
- setShowProcessingModal(false);
-
- // Check if response indicates success (200 OK)
- if (response.status === 200) {
- // For "Save As Copy", use the redirectUserMediaURL from the window
- const finalRedirectUrl = redirectUserMediaURL || response.url_redirect;
- logger.debug("Using redirect user media URL:", finalRedirectUrl);
-
- setRedirectUrl(finalRedirectUrl);
- setSuccessMessage("Video saved as a new copy!");
-
- // Show success modal
- setShowSuccessModal(true);
- } else if (response.status === 400) {
- // Set error message from response and show error modal
- const errorMsg = response.error || "An error occurred during processing";
- logger.debug("Save as copy error (400):", errorMsg);
- setErrorMessage(errorMsg);
- setShowErrorModal(true);
- } else {
- // Handle other status codes as needed
- logger.debug("Save as copy error (unknown status):", response);
- setErrorMessage("An unexpected error occurred");
- setShowErrorModal(true);
- }
- } catch (error) {
- logger.error("Error processing video:", error);
- setShowProcessingModal(false);
-
- // Set error message and show error modal
- const errorMsg =
- error instanceof Error ? error.message : "An error occurred during processing";
- logger.debug("Save as copy error (exception):", errorMsg);
- setErrorMessage(errorMsg);
- setShowErrorModal(true);
- }
- };
-
- const handleSaveSegmentsConfirm = async () => {
- // Close confirmation modal and show processing modal
- setShowSaveSegmentsModal(false);
- setShowProcessingModal(true);
- setSaveType("segments");
-
- try {
- // Format segments data for API request, with each segment saved as a separate file
- const segments = clipSegments.map((segment) => ({
- startTime: formatDetailedTime(segment.startTime),
- endTime: formatDetailedTime(segment.endTime),
- name: segment.name // Include segment name for individual files
- }));
-
- const mediaId =
- (typeof window !== "undefined" && (window as any).MEDIA_DATA?.mediaId) || null;
- const redirectUserMediaURL =
- (typeof window !== "undefined" && (window as any).MEDIA_DATA?.redirectUserMediaURL) || null;
-
- // Log the request details for debugging
- logger.debug("Save segments request:", {
- mediaId,
- segments,
- saveAsCopy: true,
- saveIndividualSegments: true,
- redirectUserMediaURL
- });
-
- const response = await trimVideo(mediaId, {
- segments,
- saveAsCopy: true,
- saveIndividualSegments: true
- });
-
- // Log the response for debugging
- logger.debug("Save segments response:", response);
-
- // Hide processing modal
- setShowProcessingModal(false);
-
- // Check if response indicates success (200 OK)
- if (response.status === 200) {
- // For "Save Segments", use the redirectUserMediaURL from the window
- const finalRedirectUrl = redirectUserMediaURL || response.url_redirect;
- logger.debug("Using redirect user media URL for segments:", finalRedirectUrl);
-
- setRedirectUrl(finalRedirectUrl);
- setSuccessMessage(`${segments.length} segments saved successfully!`);
-
- // Show success modal
- setShowSuccessModal(true);
- } else if (response.status === 400) {
- // Set error message from response and show error modal
- const errorMsg = response.error || "An error occurred during processing";
- logger.debug("Save segments error (400):", errorMsg);
- setErrorMessage(errorMsg);
- setShowErrorModal(true);
- } else {
- // Handle other status codes as needed
- logger.debug("Save segments error (unknown status):", response);
- setErrorMessage("An unexpected error occurred");
- setShowErrorModal(true);
- }
- } catch (error) {
- // Handle errors
- logger.error("Error processing video segments:", error);
- setShowProcessingModal(false);
-
- // Set error message and show error modal
- const errorMsg =
- error instanceof Error ? error.message : "An error occurred during processing";
- logger.debug("Save segments error (exception):", errorMsg);
- setErrorMessage(errorMsg);
- setShowErrorModal(true);
- }
- };
-
- // Auto-scroll and update tooltip position when seeking to a different time
- useEffect(() => {
- if (scrollContainerRef.current && timelineRef.current && zoomLevel > 1) {
- const containerWidth = scrollContainerRef.current.clientWidth;
- const timelineWidth = timelineRef.current.clientWidth;
- const markerPosition = (currentTime / duration) * timelineWidth;
-
- // Calculate the position where we want the marker to be visible
- // (center of the viewport when possible)
- const desiredScrollPosition = Math.max(0, markerPosition - containerWidth / 2);
-
- // Smooth scroll to the desired position
- scrollContainerRef.current.scrollTo({
- left: desiredScrollPosition,
- behavior: "smooth"
- });
-
- // Update tooltip position to stay with the marker
- const rect = timelineRef.current.getBoundingClientRect();
-
- // Calculate the visible position of the marker after scrolling
- const containerRect = scrollContainerRef.current.getBoundingClientRect();
- const visibleTimelineLeft = rect.left - scrollContainerRef.current.scrollLeft;
- const markerX = visibleTimelineLeft + (currentTimePercent / 100) * rect.width;
-
- // Only update if we have a tooltip showing
- if (selectedSegmentId !== null || showEmptySpaceTooltip) {
- setTooltipPosition({
- x: markerX,
- y: rect.top - 10
- });
- setClickedTime(currentTime);
- }
- }
- }, [
currentTime,
- zoomLevel,
duration,
- selectedSegmentId,
- showEmptySpaceTooltip,
- currentTimePercent
- ]);
+ thumbnails,
+ trimStart,
+ trimEnd,
+ splitPoints,
+ zoomLevel,
+ clipSegments,
+ onTrimStartChange,
+ onTrimEndChange,
+ onZoomChange,
+ onSeek,
+ videoRef,
+ onSave,
+ onSaveACopy,
+ onSaveSegments,
+ hasUnsavedChanges = false,
+ isIOSUninitialized = false,
+ isPlaying,
+ setIsPlaying,
+ onPlayPause, // Add this prop
+ isPlayingSegments = false,
+}: TimelineControlsProps) => {
+ const timelineRef = useRef(null);
+ const leftHandleRef = useRef(null);
+ const rightHandleRef = useRef(null);
+ const [selectedSegmentId, setSelectedSegmentId] = useState(null);
+ const [showEmptySpaceTooltip, setShowEmptySpaceTooltip] = useState(false);
+ const [tooltipPosition, setTooltipPosition] = useState({ x: 0, y: 0 });
+ const [clickedTime, setClickedTime] = useState(0);
+ const [isZoomDropdownOpen, setIsZoomDropdownOpen] = useState(false);
+ const [availableSegmentDuration, setAvailableSegmentDuration] = useState(30); // Default 30 seconds
+ const [isPlayingSegment, setIsPlayingSegment] = useState(false);
+ const [activeSegment, setActiveSegment] = useState(null);
+ const [displayTime, setDisplayTime] = useState(0);
+ // Track when we should continue playing (clicking play after boundary stop)
+ const [continuePastBoundary, setContinuePastBoundary] = useState(false);
- // Effect to check active segment boundaries during playback
- useEffect(() => {
- // Skip if no video or no active segment
- const video = videoRef.current;
- if (!video || !activeSegment || !isPlayingSegment) {
- // Log why we're skipping
- if (!video) logger.debug("Skipping segment boundary check - no video element");
- else if (!activeSegment) logger.debug("Skipping segment boundary check - no active segment");
- else if (!isPlayingSegment)
- logger.debug("Skipping segment boundary check - not in segment playback mode");
- return;
- }
+ // Reference for the scrollable container
+ const scrollContainerRef = useRef(null);
- // Skip boundary checking when playing all segments
- if (isPlayingSegments) {
- logger.debug("Skipping segment boundary check during segments playback");
- return;
- }
+ // Helper function for time adjustment buttons to maintain playback state
+ const handleTimeAdjustment = (offsetSeconds: number) => (e: React.MouseEvent) => {
+ e.stopPropagation();
- logger.debug(
- "Segment boundary check ACTIVATED for segment:",
- activeSegment.id,
- "Start:",
- formatDetailedTime(activeSegment.startTime),
- "End:",
- formatDetailedTime(activeSegment.endTime)
- );
+ // Calculate new time based on offset (positive or negative)
+ const newTime =
+ offsetSeconds < 0
+ ? Math.max(0, clickedTime + offsetSeconds) // For negative offsets (going back)
+ : Math.min(duration, clickedTime + offsetSeconds); // For positive offsets (going forward)
- const handleTimeUpdate = () => {
- const timeLeft = activeSegment.endTime - video.currentTime;
+ // Save the current playing state before seeking
+ const wasPlaying = isPlayingSegment;
- // Log every second to show we're actually checking
- if (Math.round(timeLeft * 10) % 10 === 0) {
- logger.debug(
- "Segment playback - time remaining:",
- formatDetailedTime(timeLeft),
- "Current:",
- formatDetailedTime(video.currentTime),
- "End:",
- formatDetailedTime(activeSegment.endTime),
- "ContinuePastBoundary:",
- continuePastBoundary
- );
- }
+ // Seek to the new time
+ onSeek(newTime);
- // If we've already passed the segment end, stop immediately
- if (video.currentTime > activeSegment.endTime) {
- video.pause();
- video.currentTime = activeSegment.endTime;
- setIsPlayingSegment(false);
- // Reset continuePastBoundary when stopping at boundary
- setContinuePastBoundary(false);
- logger.debug(
- "Passed segment end - setting back to exact boundary:",
- formatDetailedTime(activeSegment.endTime)
- );
- return;
- }
+ // Update both clicked time and display time
+ setClickedTime(newTime);
+ setDisplayTime(newTime);
- // If we've reached very close to the end of the active segment
- // Use a small tolerance to ensure we stop as close as possible to boundary
- // But not exactly at the boundary to avoid rounding errors
- if (activeSegment.endTime - video.currentTime < 0.05) {
- if (!continuePastBoundary) {
- // Pause playback and set the time exactly at the end boundary
- video.pause();
- video.currentTime = activeSegment.endTime;
- setIsPlayingSegment(false);
- logger.debug(
- "Paused at segment end boundary:",
- formatDetailedTime(activeSegment.endTime)
- );
-
- // Look for the next segment after this one (for potential continuation)
- const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
- const nextSegment = sortedSegments.find((seg) => seg.startTime > activeSegment.endTime);
-
- // If there's a next segment immediately after this one, update the tooltip to show that segment
- if (nextSegment && Math.abs(nextSegment.startTime - activeSegment.endTime) < 0.1) {
- logger.debug("Found adjacent next segment:", nextSegment.id);
- setSelectedSegmentId(nextSegment.id);
- setActiveSegment(nextSegment);
- setDisplayTime(nextSegment.startTime);
- setClickedTime(nextSegment.startTime);
- video.currentTime = nextSegment.startTime;
- }
- } else {
- // We're continuing past the boundary
- logger.debug(
- "Continuing past segment boundary:",
- formatDetailedTime(activeSegment.endTime)
- );
-
- // Reset the flag after we've passed the boundary to ensure we stop at the next boundary
- if (video.currentTime > activeSegment.endTime) {
- setContinuePastBoundary(false);
- logger.debug("Past segment boundary - resetting continuePastBoundary flag");
- // Remove the active segment to avoid boundary checking until next segment is activated
- setActiveSegment(null);
- sessionStorage.removeItem("continuingPastSegment");
- }
+ // Resume playback if it was playing before
+ if (wasPlaying && videoRef.current) {
+ videoRef.current.play();
+ setIsPlayingSegment(true);
}
- }
};
- // Add event listener for timeupdate to check segment boundaries
- video.addEventListener("timeupdate", handleTimeUpdate);
+ // Enhanced helper for continuous time adjustment when button is held down
+ const handleContinuousTimeAdjustment = (offsetSeconds: number) => {
+ // Fixed adjustment amount - exactly 50ms each time
+ const adjustmentValue = offsetSeconds;
+ // Hold timer for continuous adjustment
+ let holdTimer: NodeJS.Timeout | null = null;
+ let continuousTimer: NodeJS.Timeout | null = null;
+ // Store the last time value to correctly calculate the next increment
+ let lastTimeValue = clickedTime;
- return () => {
- video.removeEventListener("timeupdate", handleTimeUpdate);
- logger.debug("Segment boundary check DEACTIVATED");
- };
- }, [activeSegment, isPlayingSegment, continuePastBoundary, clipSegments]);
+ // Function to perform time adjustment
+ const adjustTime = () => {
+ // Calculate new time based on fixed offset (positive or negative)
+ const newTime =
+ adjustmentValue < 0
+ ? Math.max(0, lastTimeValue + adjustmentValue) // For negative offsets (going back)
+ : Math.min(duration, lastTimeValue + adjustmentValue); // For positive offsets (going forward)
- // Update display time and check for transitions between segments and empty spaces
- useEffect(() => {
- // Always update display time to match current video time when playing
- if (videoRef.current) {
- // If video is playing, always update the displayed time in the tooltip
- if (!videoRef.current.paused) {
- setDisplayTime(currentTime);
+ // Update our last time value for next adjustment
+ lastTimeValue = newTime;
- // Also update clicked time to keep them in sync when playing
- // This ensures correct time is shown when pausing
- setClickedTime(currentTime);
+ // Save the current playing state before seeking
+ const wasPlaying = isPlayingSegment;
- if (selectedSegmentId !== null) {
- setIsPlayingSegment(true);
- }
+ // Seek to the new time
+ onSeek(newTime);
- // While playing, continuously check if we're in a segment or empty space
- // to update the tooltip accordingly, regardless of where we started playing
+ // Update both clicked time and display time
+ setClickedTime(newTime);
+ setDisplayTime(newTime);
- // Check if we're in any segment at current time
- const segmentAtCurrentTime = clipSegments.find(
- (seg) => currentTime >= seg.startTime && currentTime <= seg.endTime
- );
+ // Update tooltip position
+ if (timelineRef.current) {
+ const rect = timelineRef.current.getBoundingClientRect();
+ const positionPercent = (newTime / duration) * 100;
+ const xPos = rect.left + rect.width * (positionPercent / 100);
+ setTooltipPosition({
+ x: xPos,
+ y: rect.top - 10,
+ });
- // Update tooltip position based on current time percentage
- const newTimePercent = (currentTime / duration) * 100;
- if (timelineRef.current) {
- const timelineWidth = timelineRef.current.offsetWidth;
- const markerX = (newTimePercent / 100) * timelineWidth;
- setTooltipPosition({
- x: markerX,
- y: timelineRef.current.getBoundingClientRect().top - 10
- });
- }
+ // Find if we're in a segment at the new time
+ const segmentAtTime = clipSegments.find((seg) => newTime >= seg.startTime && newTime <= seg.endTime);
- // Check for the special "continue past segment" state in sessionStorage
- const isContinuingPastSegment = sessionStorage.getItem("continuingPastSegment") === "true";
+ if (segmentAtTime) {
+ // Show segment tooltip
+ setSelectedSegmentId(segmentAtTime.id);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // Show cutaway tooltip
+ setSelectedSegmentId(null);
+ const availableSpace = calculateAvailableSpace(newTime);
+ setAvailableSegmentDuration(availableSpace);
+ setShowEmptySpaceTooltip(true);
+ }
+ }
- // If we're in a segment now
- if (segmentAtCurrentTime) {
- // Get video element reference for boundary checks
- const video = videoRef.current;
+ // Resume playback if it was playing before
+ if (wasPlaying && videoRef.current) {
+ videoRef.current.play();
+ setIsPlayingSegment(true);
+ }
+ };
- // Special check for virtual segments (cutaway playback)
- // If we have an active virtual segment (negative ID) and we're in a regular segment now,
- // we need to STOP at the start of this segment - that's the boundary of our cutaway
- const isPlayingVirtualSegment = activeSegment && activeSegment.id < 0 && isPlayingSegment;
+ // Return mouse event handlers with touch support
+ return {
+ onMouseDown: (e: React.MouseEvent) => {
+ e.stopPropagation();
+ e.preventDefault();
- // If the active segment is different from the current segment and it's not a virtual segment
- // and we're not in "continue past boundary" mode, set this segment as the active segment
- if (
- activeSegment?.id !== segmentAtCurrentTime.id &&
- !isPlayingVirtualSegment &&
- !isContinuingPastSegment &&
- !continuePastBoundary
- ) {
- // We've entered a new segment during normal playback
- logger.debug(
- `Entered a new segment during playback: ${segmentAtCurrentTime.id}, setting as active`
- );
- setActiveSegment(segmentAtCurrentTime);
- setSelectedSegmentId(segmentAtCurrentTime.id);
- setShowEmptySpaceTooltip(false);
- // Reset continuation flags to ensure boundary detection works for this new segment
- setContinuePastBoundary(false);
- sessionStorage.removeItem("continuingPastSegment");
- }
+ // Update the initial last time value
+ lastTimeValue = clickedTime;
- // If we're playing a virtual segment and enter a real segment, we've reached our boundary
- // We should stop playback
- if (isPlayingVirtualSegment && video && segmentAtCurrentTime) {
- logger.debug(
- `CUTAWAY BOUNDARY REACHED: Current position ${formatDetailedTime(
- video.currentTime
- )} at segment ${segmentAtCurrentTime.id} - STOPPING at boundary ${formatDetailedTime(
- segmentAtCurrentTime.startTime
- )}`
- );
- video.pause();
- // Force exact time position with high precision and multiple attempts
- setTimeout(() => {
- if (videoRef.current) {
- // First seek directly to exact start time, no offset
- videoRef.current.currentTime = segmentAtCurrentTime.startTime;
- // Update UI immediately to match video position
- onSeek(segmentAtCurrentTime.startTime);
- // Also update tooltip time displays
- setDisplayTime(segmentAtCurrentTime.startTime);
- setClickedTime(segmentAtCurrentTime.startTime);
+ // Perform initial adjustment
+ adjustTime();
- // Reset continuePastBoundary when reaching a segment boundary
- setContinuePastBoundary(false);
+ // Start continuous adjustment after 1.5s hold
+ holdTimer = setTimeout(() => {
+ // After 1.5s delay, start adjusting at a slower pace (every 200ms)
+ continuousTimer = setInterval(adjustTime, 200);
+ }, 750);
- // Update tooltip to show segment tooltip at boundary
- setSelectedSegmentId(segmentAtCurrentTime.id);
- setShowEmptySpaceTooltip(false);
-
- // Force multiple adjustments to ensure exact precision
- const verifyPosition = () => {
- if (videoRef.current) {
- // Always force the exact time in every verification
- videoRef.current.currentTime = segmentAtCurrentTime.startTime;
-
- // Make sure we update the UI to reflect the corrected position
- onSeek(segmentAtCurrentTime.startTime);
-
- // Update the displayTime and clickedTime state to match exact position
- setDisplayTime(segmentAtCurrentTime.startTime);
- setClickedTime(segmentAtCurrentTime.startTime);
-
- logger.debug(
- `Position corrected to exact segment boundary: ${formatDetailedTime(
- videoRef.current.currentTime
- )} (target: ${formatDetailedTime(segmentAtCurrentTime.startTime)})`
- );
- }
+ // Add mouse up and leave handlers to document to ensure we catch the release
+ const clearTimers = () => {
+ if (holdTimer) {
+ clearTimeout(holdTimer);
+ holdTimer = null;
+ }
+ if (continuousTimer) {
+ clearInterval(continuousTimer);
+ continuousTimer = null;
+ }
+ document.removeEventListener('mouseup', clearTimers);
+ document.removeEventListener('mouseleave', clearTimers);
};
- // Apply multiple correction attempts with increasing delays
- setTimeout(verifyPosition, 10); // Immediate correction
- setTimeout(verifyPosition, 20); // First correction
- setTimeout(verifyPosition, 50); // Second correction
- setTimeout(verifyPosition, 100); // Third correction
- setTimeout(verifyPosition, 200); // Final correction
+ document.addEventListener('mouseup', clearTimers);
+ document.addEventListener('mouseleave', clearTimers);
+ },
+ onTouchStart: (e: React.TouchEvent) => {
+ e.stopPropagation();
+ e.preventDefault();
+ 21;
- // Also add event listeners to ensure position is corrected whenever video state changes
- videoRef.current.addEventListener("seeked", verifyPosition);
- videoRef.current.addEventListener("canplay", verifyPosition);
- videoRef.current.addEventListener("waiting", verifyPosition);
+ // Update the initial last time value
+ lastTimeValue = clickedTime;
- // Remove these event listeners after a short time
- setTimeout(() => {
- if (videoRef.current) {
- videoRef.current.removeEventListener("seeked", verifyPosition);
- videoRef.current.removeEventListener("canplay", verifyPosition);
- videoRef.current.removeEventListener("waiting", verifyPosition);
- }
- }, 300);
- }
- }, 10);
- setIsPlayingSegment(false);
- setActiveSegment(null);
- return; // Exit early, we've handled this case
- }
+ // Perform initial adjustment
+ adjustTime();
- // Only update active segment if we're not in "continue past segment" mode
- // or if we're in a virtual cutaway segment
- const continuingPastSegment =
- (activeSegment === null && isPlayingSegment === true) ||
- isContinuingPastSegment ||
- isPlayingVirtualSegment;
+ // Start continuous adjustment after 1.5s hold
+ holdTimer = setTimeout(() => {
+ // After 1.5s delay, start adjusting at a slower pace (every 200ms)
+ continuousTimer = setInterval(adjustTime, 200);
+ }, 750);
- if (continuingPastSegment) {
- // We're in the special case where we're continuing past a segment boundary
- // or playing a cutaway area
- // Just update the tooltip, but don't reactivate boundary checking
- if (selectedSegmentId !== segmentAtCurrentTime.id || showEmptySpaceTooltip) {
- logger.debug(
- "Tooltip updated for segment during continued playback:",
- segmentAtCurrentTime.id,
- isPlayingVirtualSegment ? "(cutaway playback - keeping virtual segment)" : ""
- );
- setSelectedSegmentId(segmentAtCurrentTime.id);
- setShowEmptySpaceTooltip(false);
+ // Add touch end handler to ensure we catch the release
+ const clearTimers = () => {
+ if (holdTimer) {
+ clearTimeout(holdTimer);
+ holdTimer = null;
+ }
+ if (continuousTimer) {
+ clearInterval(continuousTimer);
+ continuousTimer = null;
+ }
+ document.removeEventListener('touchend', clearTimers);
+ document.removeEventListener('touchcancel', clearTimers);
+ };
- // If we're in a different segment now, clear the continuation flag
- // but only if it's not the same segment we were in before
- // AND we're not playing a cutaway area
- if (
- !isPlayingVirtualSegment &&
- sessionStorage.getItem("lastSegmentId") !== segmentAtCurrentTime.id.toString()
- ) {
- logger.debug("Moved to a different segment - ending continuation mode");
- sessionStorage.removeItem("continuingPastSegment");
- }
+ document.addEventListener('touchend', clearTimers);
+ document.addEventListener('touchcancel', clearTimers);
+ },
+ onClick: (e: React.MouseEvent) => {
+ // This prevents the click event from firing twice
+ e.stopPropagation();
+ },
+ };
+ };
+
+ // Modal states
+ const [showSaveModal, setShowSaveModal] = useState(false);
+ const [showSaveAsModal, setShowSaveAsModal] = useState(false);
+ const [showSaveSegmentsModal, setShowSaveSegmentsModal] = useState(false);
+ const [showProcessingModal, setShowProcessingModal] = useState(false);
+ const [showSuccessModal, setShowSuccessModal] = useState(false);
+ const [showErrorModal, setShowErrorModal] = useState(false);
+ const [successMessage, setSuccessMessage] = useState('');
+ const [errorMessage, setErrorMessage] = useState('');
+ const [redirectUrl, setRedirectUrl] = useState('');
+ const [saveType, setSaveType] = useState<'save' | 'copy' | 'segments'>('save');
+
+ // Calculate positions as percentages
+ const currentTimePercent = duration > 0 ? (currentTime / duration) * 100 : 0;
+ const trimStartPercent = duration > 0 ? (trimStart / duration) * 100 : 0;
+ const trimEndPercent = duration > 0 ? (trimEnd / duration) * 100 : 0;
+
+ // No need for an extra effect here as we handle displayTime updates in the segment playback effect
+
+ // Save and API handlers
+ const handleSaveConfirm = async () => {
+ // Close confirmation modal and show processing modal
+ setShowSaveModal(false);
+ setShowProcessingModal(true);
+ setSaveType('save');
+
+ try {
+ // Format segments data for API request
+ const segments = clipSegments.map((segment) => ({
+ startTime: formatDetailedTime(segment.startTime),
+ endTime: formatDetailedTime(segment.endTime),
+ }));
+
+ const mediaId = (typeof window !== 'undefined' && (window as any).MEDIA_DATA?.mediaId) || null;
+ const redirectURL = (typeof window !== 'undefined' && (window as any).MEDIA_DATA?.redirectURL) || null;
+
+ // Log the request details for debugging
+ logger.debug('Save request:', {
+ mediaId,
+ segments,
+ saveAsCopy: false,
+ redirectURL,
+ });
+
+ const response = await trimVideo(mediaId, {
+ segments,
+ saveAsCopy: false,
+ });
+
+ // Log the response for debugging
+ logger.debug('Save response:', response);
+
+ // Hide processing modal
+ setShowProcessingModal(false);
+
+ // Check if response indicates success (200 OK)
+ if (response.status === 200) {
+ // For "Save", use the redirectURL from the window or response
+ const finalRedirectUrl = redirectURL || response.url_redirect;
+ logger.debug('Using redirect URL:', finalRedirectUrl);
+
+ setRedirectUrl(finalRedirectUrl);
+ setSuccessMessage('Video saved successfully!');
+
+ // Show success modal
+ setShowSuccessModal(true);
+ } else if (response.status === 400) {
+ // Set error message from response and show error modal
+ const errorMsg = response.error || 'An error occurred during processing';
+ logger.debug('Save error (400):', errorMsg);
+ setErrorMessage(errorMsg);
+ setShowErrorModal(true);
+ } else {
+ // Handle other status codes as needed
+ logger.debug('Save error (unknown status):', response);
+ setErrorMessage('An unexpected error occurred');
+ setShowErrorModal(true);
}
- } else {
- // Normal case - update both tooltip and active segment
- if (activeSegment?.id !== segmentAtCurrentTime.id || showEmptySpaceTooltip) {
- logger.debug("Playback moved into segment:", segmentAtCurrentTime.id);
- setSelectedSegmentId(segmentAtCurrentTime.id);
- setActiveSegment(segmentAtCurrentTime);
- setShowEmptySpaceTooltip(false);
+ } catch (error) {
+ logger.error('Error processing video:', error);
+ setShowProcessingModal(false);
- // Store the current segment ID for comparison later
- sessionStorage.setItem("lastSegmentId", segmentAtCurrentTime.id.toString());
- }
- }
+ // Set error message and show error modal
+ const errorMsg = error instanceof Error ? error.message : 'An error occurred during processing';
+ logger.debug('Save error (exception):', errorMsg);
+ setErrorMessage(errorMsg);
+ setShowErrorModal(true);
}
- // If we're in empty space now
- else {
- // Check if we need to change the tooltip (we were in a segment before)
- if (activeSegment !== null || !showEmptySpaceTooltip) {
- logger.debug("Playback moved to empty space");
- setSelectedSegmentId(null);
- setActiveSegment(null);
+ };
- // Calculate available space for new segment before showing tooltip
- const availableSpace = calculateAvailableSpace(currentTime);
+ const handleSaveAsCopyConfirm = async () => {
+ // Close confirmation modal and show processing modal
+ setShowSaveAsModal(false);
+ setShowProcessingModal(true);
+ setSaveType('copy');
+
+ try {
+ // Format segments data for API request
+ const segments = clipSegments.map((segment) => ({
+ startTime: formatDetailedTime(segment.startTime),
+ endTime: formatDetailedTime(segment.endTime),
+ }));
+
+ const mediaId = (typeof window !== 'undefined' && (window as any).MEDIA_DATA?.mediaId) || null;
+ const redirectUserMediaURL =
+ (typeof window !== 'undefined' && (window as any).MEDIA_DATA?.redirectUserMediaURL) || null;
+
+ // Log the request details for debugging
+ logger.debug('Save as copy request:', {
+ mediaId,
+ segments,
+ saveAsCopy: true,
+ redirectUserMediaURL,
+ });
+
+ const response = await trimVideo(mediaId, {
+ segments,
+ saveAsCopy: true,
+ });
+
+ // Log the response for debugging
+ logger.debug('Save as copy response:', response);
+
+ // Hide processing modal
+ setShowProcessingModal(false);
+
+ // Check if response indicates success (200 OK)
+ if (response.status === 200) {
+ // For "Save As Copy", use the redirectUserMediaURL from the window
+ const finalRedirectUrl = redirectUserMediaURL || response.url_redirect;
+ logger.debug('Using redirect user media URL:', finalRedirectUrl);
+
+ setRedirectUrl(finalRedirectUrl);
+ setSuccessMessage('Video saved as a new copy!');
+
+ // Show success modal
+ setShowSuccessModal(true);
+ } else if (response.status === 400) {
+ // Set error message from response and show error modal
+ const errorMsg = response.error || 'An error occurred during processing';
+ logger.debug('Save as copy error (400):', errorMsg);
+ setErrorMessage(errorMsg);
+ setShowErrorModal(true);
+ } else {
+ // Handle other status codes as needed
+ logger.debug('Save as copy error (unknown status):', response);
+ setErrorMessage('An unexpected error occurred');
+ setShowErrorModal(true);
+ }
+ } catch (error) {
+ logger.error('Error processing video:', error);
+ setShowProcessingModal(false);
+
+ // Set error message and show error modal
+ const errorMsg = error instanceof Error ? error.message : 'An error occurred during processing';
+ logger.debug('Save as copy error (exception):', errorMsg);
+ setErrorMessage(errorMsg);
+ setShowErrorModal(true);
+ }
+ };
+
+ const handleSaveSegmentsConfirm = async () => {
+ // Close confirmation modal and show processing modal
+ setShowSaveSegmentsModal(false);
+ setShowProcessingModal(true);
+ setSaveType('segments');
+
+ try {
+ // Format segments data for API request, with each segment saved as a separate file
+ const segments = clipSegments.map((segment) => ({
+ startTime: formatDetailedTime(segment.startTime),
+ endTime: formatDetailedTime(segment.endTime),
+ name: segment.name, // Include segment name for individual files
+ }));
+
+ const mediaId = (typeof window !== 'undefined' && (window as any).MEDIA_DATA?.mediaId) || null;
+ const redirectUserMediaURL =
+ (typeof window !== 'undefined' && (window as any).MEDIA_DATA?.redirectUserMediaURL) || null;
+
+ // Log the request details for debugging
+ logger.debug('Save segments request:', {
+ mediaId,
+ segments,
+ saveAsCopy: true,
+ saveIndividualSegments: true,
+ redirectUserMediaURL,
+ });
+
+ const response = await trimVideo(mediaId, {
+ segments,
+ saveAsCopy: true,
+ saveIndividualSegments: true,
+ });
+
+ // Log the response for debugging
+ logger.debug('Save segments response:', response);
+
+ // Hide processing modal
+ setShowProcessingModal(false);
+
+ // Check if response indicates success (200 OK)
+ if (response.status === 200) {
+ // For "Save Segments", use the redirectUserMediaURL from the window
+ const finalRedirectUrl = redirectUserMediaURL || response.url_redirect;
+ logger.debug('Using redirect user media URL for segments:', finalRedirectUrl);
+
+ setRedirectUrl(finalRedirectUrl);
+ setSuccessMessage(`${segments.length} segments saved successfully!`);
+
+ // Show success modal
+ setShowSuccessModal(true);
+ } else if (response.status === 400) {
+ // Set error message from response and show error modal
+ const errorMsg = response.error || 'An error occurred during processing';
+ logger.debug('Save segments error (400):', errorMsg);
+ setErrorMessage(errorMsg);
+ setShowErrorModal(true);
+ } else {
+ // Handle other status codes as needed
+ logger.debug('Save segments error (unknown status):', response);
+ setErrorMessage('An unexpected error occurred');
+ setShowErrorModal(true);
+ }
+ } catch (error) {
+ // Handle errors
+ logger.error('Error processing video segments:', error);
+ setShowProcessingModal(false);
+
+ // Set error message and show error modal
+ const errorMsg = error instanceof Error ? error.message : 'An error occurred during processing';
+ logger.debug('Save segments error (exception):', errorMsg);
+ setErrorMessage(errorMsg);
+ setShowErrorModal(true);
+ }
+ };
+
+ // Auto-scroll and update tooltip position when seeking to a different time
+ useEffect(() => {
+ if (scrollContainerRef.current && timelineRef.current && zoomLevel > 1) {
+ const containerWidth = scrollContainerRef.current.clientWidth;
+ const timelineWidth = timelineRef.current.clientWidth;
+ const markerPosition = (currentTime / duration) * timelineWidth;
+
+ // Calculate the position where we want the marker to be visible
+ // (center of the viewport when possible)
+ const desiredScrollPosition = Math.max(0, markerPosition - containerWidth / 2);
+
+ // Smooth scroll to the desired position
+ scrollContainerRef.current.scrollTo({
+ left: desiredScrollPosition,
+ behavior: 'smooth',
+ });
+
+ // Update tooltip position to stay with the marker
+ const rect = timelineRef.current.getBoundingClientRect();
+
+ // Calculate the visible position of the marker after scrolling
+ const containerRect = scrollContainerRef.current.getBoundingClientRect();
+ const visibleTimelineLeft = rect.left - scrollContainerRef.current.scrollLeft;
+ const markerX = visibleTimelineLeft + (currentTimePercent / 100) * rect.width;
+
+ // Only update if we have a tooltip showing
+ if (selectedSegmentId !== null || showEmptySpaceTooltip) {
+ setTooltipPosition({
+ x: markerX,
+ y: rect.top - 10,
+ });
+ setClickedTime(currentTime);
+ }
+ }
+ }, [currentTime, zoomLevel, duration, selectedSegmentId, showEmptySpaceTooltip, currentTimePercent]);
+
+ // Effect to check active segment boundaries during playback
+ useEffect(() => {
+ // Skip if no video or no active segment
+ const video = videoRef.current;
+ if (!video || !activeSegment || !isPlayingSegment) {
+ // Log why we're skipping
+ if (!video) logger.debug('Skipping segment boundary check - no video element');
+ else if (!activeSegment) logger.debug('Skipping segment boundary check - no active segment');
+ else if (!isPlayingSegment) logger.debug('Skipping segment boundary check - not in segment playback mode');
+ return;
+ }
+
+ // Skip boundary checking when playing all segments
+ if (isPlayingSegments) {
+ logger.debug('Skipping segment boundary check during segments playback');
+ return;
+ }
+
+ logger.debug(
+ 'Segment boundary check ACTIVATED for segment:',
+ activeSegment.id,
+ 'Start:',
+ formatDetailedTime(activeSegment.startTime),
+ 'End:',
+ formatDetailedTime(activeSegment.endTime)
+ );
+
+ const handleTimeUpdate = () => {
+ const timeLeft = activeSegment.endTime - video.currentTime;
+
+ // Log every second to show we're actually checking
+ if (Math.round(timeLeft * 10) % 10 === 0) {
+ logger.debug(
+ 'Segment playback - time remaining:',
+ formatDetailedTime(timeLeft),
+ 'Current:',
+ formatDetailedTime(video.currentTime),
+ 'End:',
+ formatDetailedTime(activeSegment.endTime),
+ 'ContinuePastBoundary:',
+ continuePastBoundary
+ );
+ }
+
+ // If we've already passed the segment end, stop immediately
+ if (video.currentTime > activeSegment.endTime) {
+ video.pause();
+ video.currentTime = activeSegment.endTime;
+ setIsPlayingSegment(false);
+ // Reset continuePastBoundary when stopping at boundary
+ setContinuePastBoundary(false);
+ logger.debug(
+ 'Passed segment end - setting back to exact boundary:',
+ formatDetailedTime(activeSegment.endTime)
+ );
+ return;
+ }
+
+ // If we've reached very close to the end of the active segment
+ // Use a small tolerance to ensure we stop as close as possible to boundary
+ // But not exactly at the boundary to avoid rounding errors
+ if (activeSegment.endTime - video.currentTime < 0.05) {
+ if (!continuePastBoundary) {
+ // Pause playback and set the time exactly at the end boundary
+ video.pause();
+ video.currentTime = activeSegment.endTime;
+ setIsPlayingSegment(false);
+ logger.debug('Paused at segment end boundary:', formatDetailedTime(activeSegment.endTime));
+
+ // Look for the next segment after this one (for potential continuation)
+ const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+ const nextSegment = sortedSegments.find((seg) => seg.startTime > activeSegment.endTime);
+
+ // If there's a next segment immediately after this one, update the tooltip to show that segment
+ if (nextSegment && Math.abs(nextSegment.startTime - activeSegment.endTime) < 0.1) {
+ logger.debug('Found adjacent next segment:', nextSegment.id);
+ setSelectedSegmentId(nextSegment.id);
+ setActiveSegment(nextSegment);
+ setDisplayTime(nextSegment.startTime);
+ setClickedTime(nextSegment.startTime);
+ video.currentTime = nextSegment.startTime;
+ }
+ } else {
+ // We're continuing past the boundary
+ logger.debug('Continuing past segment boundary:', formatDetailedTime(activeSegment.endTime));
+
+ // Reset the flag after we've passed the boundary to ensure we stop at the next boundary
+ if (video.currentTime > activeSegment.endTime) {
+ setContinuePastBoundary(false);
+ logger.debug('Past segment boundary - resetting continuePastBoundary flag');
+ // Remove the active segment to avoid boundary checking until next segment is activated
+ setActiveSegment(null);
+ sessionStorage.removeItem('continuingPastSegment');
+ }
+ }
+ }
+ };
+
+ // Add event listener for timeupdate to check segment boundaries
+ video.addEventListener('timeupdate', handleTimeUpdate);
+
+ return () => {
+ video.removeEventListener('timeupdate', handleTimeUpdate);
+ logger.debug('Segment boundary check DEACTIVATED');
+ };
+ }, [activeSegment, isPlayingSegment, continuePastBoundary, clipSegments]);
+
+ // Update display time and check for transitions between segments and empty spaces
+ useEffect(() => {
+ // Always update display time to match current video time when playing
+ if (videoRef.current) {
+ // If video is playing, always update the displayed time in the tooltip
+ if (!videoRef.current.paused) {
+ setDisplayTime(currentTime);
+
+ // Also update clicked time to keep them in sync when playing
+ // This ensures correct time is shown when pausing
+ setClickedTime(currentTime);
+
+ if (selectedSegmentId !== null) {
+ setIsPlayingSegment(true);
+ }
+
+ // While playing, continuously check if we're in a segment or empty space
+ // to update the tooltip accordingly, regardless of where we started playing
+
+ // Check if we're in any segment at current time
+ const segmentAtCurrentTime = clipSegments.find(
+ (seg) => currentTime >= seg.startTime && currentTime <= seg.endTime
+ );
+
+ // Update tooltip position based on current time percentage
+ const newTimePercent = (currentTime / duration) * 100;
+ if (timelineRef.current) {
+ const timelineWidth = timelineRef.current.offsetWidth;
+ const markerX = (newTimePercent / 100) * timelineWidth;
+ setTooltipPosition({
+ x: markerX,
+ y: timelineRef.current.getBoundingClientRect().top - 10,
+ });
+ }
+
+ // Check for the special "continue past segment" state in sessionStorage
+ const isContinuingPastSegment = sessionStorage.getItem('continuingPastSegment') === 'true';
+
+ // If we're in a segment now
+ if (segmentAtCurrentTime) {
+ // Get video element reference for boundary checks
+ const video = videoRef.current;
+
+ // Special check for virtual segments (cutaway playback)
+ // If we have an active virtual segment (negative ID) and we're in a regular segment now,
+ // we need to STOP at the start of this segment - that's the boundary of our cutaway
+ const isPlayingVirtualSegment = activeSegment && activeSegment.id < 0 && isPlayingSegment;
+
+ // If the active segment is different from the current segment and it's not a virtual segment
+ // and we're not in "continue past boundary" mode, set this segment as the active segment
+ if (
+ activeSegment?.id !== segmentAtCurrentTime.id &&
+ !isPlayingVirtualSegment &&
+ !isContinuingPastSegment &&
+ !continuePastBoundary
+ ) {
+ // We've entered a new segment during normal playback
+ logger.debug(
+ `Entered a new segment during playback: ${segmentAtCurrentTime.id}, setting as active`
+ );
+ setActiveSegment(segmentAtCurrentTime);
+ setSelectedSegmentId(segmentAtCurrentTime.id);
+ setShowEmptySpaceTooltip(false);
+ // Reset continuation flags to ensure boundary detection works for this new segment
+ setContinuePastBoundary(false);
+ sessionStorage.removeItem('continuingPastSegment');
+ }
+
+ // If we're playing a virtual segment and enter a real segment, we've reached our boundary
+ // We should stop playback
+ if (isPlayingVirtualSegment && video && segmentAtCurrentTime) {
+ logger.debug(
+ `CUTAWAY BOUNDARY REACHED: Current position ${formatDetailedTime(
+ video.currentTime
+ )} at segment ${segmentAtCurrentTime.id} - STOPPING at boundary ${formatDetailedTime(
+ segmentAtCurrentTime.startTime
+ )}`
+ );
+ video.pause();
+ // Force exact time position with high precision and multiple attempts
+ setTimeout(() => {
+ if (videoRef.current) {
+ // First seek directly to exact start time, no offset
+ videoRef.current.currentTime = segmentAtCurrentTime.startTime;
+ // Update UI immediately to match video position
+ onSeek(segmentAtCurrentTime.startTime);
+ // Also update tooltip time displays
+ setDisplayTime(segmentAtCurrentTime.startTime);
+ setClickedTime(segmentAtCurrentTime.startTime);
+
+ // Reset continuePastBoundary when reaching a segment boundary
+ setContinuePastBoundary(false);
+
+ // Update tooltip to show segment tooltip at boundary
+ setSelectedSegmentId(segmentAtCurrentTime.id);
+ setShowEmptySpaceTooltip(false);
+
+ // Force multiple adjustments to ensure exact precision
+ const verifyPosition = () => {
+ if (videoRef.current) {
+ // Always force the exact time in every verification
+ videoRef.current.currentTime = segmentAtCurrentTime.startTime;
+
+ // Make sure we update the UI to reflect the corrected position
+ onSeek(segmentAtCurrentTime.startTime);
+
+ // Update the displayTime and clickedTime state to match exact position
+ setDisplayTime(segmentAtCurrentTime.startTime);
+ setClickedTime(segmentAtCurrentTime.startTime);
+
+ logger.debug(
+ `Position corrected to exact segment boundary: ${formatDetailedTime(
+ videoRef.current.currentTime
+ )} (target: ${formatDetailedTime(segmentAtCurrentTime.startTime)})`
+ );
+ }
+ };
+
+ // Apply multiple correction attempts with increasing delays
+ setTimeout(verifyPosition, 10); // Immediate correction
+ setTimeout(verifyPosition, 20); // First correction
+ setTimeout(verifyPosition, 50); // Second correction
+ setTimeout(verifyPosition, 100); // Third correction
+ setTimeout(verifyPosition, 200); // Final correction
+
+ // Also add event listeners to ensure position is corrected whenever video state changes
+ videoRef.current.addEventListener('seeked', verifyPosition);
+ videoRef.current.addEventListener('canplay', verifyPosition);
+ videoRef.current.addEventListener('waiting', verifyPosition);
+
+ // Remove these event listeners after a short time
+ setTimeout(() => {
+ if (videoRef.current) {
+ videoRef.current.removeEventListener('seeked', verifyPosition);
+ videoRef.current.removeEventListener('canplay', verifyPosition);
+ videoRef.current.removeEventListener('waiting', verifyPosition);
+ }
+ }, 300);
+ }
+ }, 10);
+ setIsPlayingSegment(false);
+ setActiveSegment(null);
+ return; // Exit early, we've handled this case
+ }
+
+ // Only update active segment if we're not in "continue past segment" mode
+ // or if we're in a virtual cutaway segment
+ const continuingPastSegment =
+ (activeSegment === null && isPlayingSegment === true) ||
+ isContinuingPastSegment ||
+ isPlayingVirtualSegment;
+
+ if (continuingPastSegment) {
+ // We're in the special case where we're continuing past a segment boundary
+ // or playing a cutaway area
+ // Just update the tooltip, but don't reactivate boundary checking
+ if (selectedSegmentId !== segmentAtCurrentTime.id || showEmptySpaceTooltip) {
+ logger.debug(
+ 'Tooltip updated for segment during continued playback:',
+ segmentAtCurrentTime.id,
+ isPlayingVirtualSegment ? '(cutaway playback - keeping virtual segment)' : ''
+ );
+ setSelectedSegmentId(segmentAtCurrentTime.id);
+ setShowEmptySpaceTooltip(false);
+
+ // If we're in a different segment now, clear the continuation flag
+ // but only if it's not the same segment we were in before
+ // AND we're not playing a cutaway area
+ if (
+ !isPlayingVirtualSegment &&
+ sessionStorage.getItem('lastSegmentId') !== segmentAtCurrentTime.id.toString()
+ ) {
+ logger.debug('Moved to a different segment - ending continuation mode');
+ sessionStorage.removeItem('continuingPastSegment');
+ }
+ }
+ } else {
+ // Normal case - update both tooltip and active segment
+ if (activeSegment?.id !== segmentAtCurrentTime.id || showEmptySpaceTooltip) {
+ logger.debug('Playback moved into segment:', segmentAtCurrentTime.id);
+ setSelectedSegmentId(segmentAtCurrentTime.id);
+ setActiveSegment(segmentAtCurrentTime);
+ setShowEmptySpaceTooltip(false);
+
+ // Store the current segment ID for comparison later
+ sessionStorage.setItem('lastSegmentId', segmentAtCurrentTime.id.toString());
+ }
+ }
+ }
+ // If we're in empty space now
+ else {
+ // Check if we need to change the tooltip (we were in a segment before)
+ if (activeSegment !== null || !showEmptySpaceTooltip) {
+ logger.debug('Playback moved to empty space');
+ setSelectedSegmentId(null);
+ setActiveSegment(null);
+
+ // Calculate available space for new segment before showing tooltip
+ const availableSpace = calculateAvailableSpace(currentTime);
+ setAvailableSegmentDuration(availableSpace);
+
+ // Show empty space tooltip if there's enough space
+ if (availableSpace >= 0.5) {
+ setShowEmptySpaceTooltip(true);
+ logger.debug('Empty space with available duration:', availableSpace);
+ } else {
+ setShowEmptySpaceTooltip(false);
+ }
+ }
+ }
+ } else if (videoRef.current.paused && isPlayingSegment) {
+ // When just paused from playing state, update display time to show the actual stopped position
+ setDisplayTime(currentTime);
+ setClickedTime(currentTime);
+ setIsPlayingSegment(false);
+
+ // Log the stopping point
+ logger.debug('Video paused at:', formatDetailedTime(currentTime));
+ }
+ }
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, [currentTime, isPlayingSegment, activeSegment, selectedSegmentId, clipSegments]);
+
+ // Close zoom dropdown when clicking outside
+ useEffect(() => {
+ const handleClickOutside = (event: MouseEvent) => {
+ const target = event.target as HTMLElement;
+ if (isZoomDropdownOpen && !target.closest('.zoom-dropdown-container')) {
+ setIsZoomDropdownOpen(false);
+ }
+ };
+
+ document.addEventListener('mousedown', handleClickOutside);
+ return () => {
+ document.removeEventListener('mousedown', handleClickOutside);
+ };
+ }, [isZoomDropdownOpen]);
+
+ // Global click handler to close tooltips when clicking outside
+ useEffect(() => {
+ // Remove the global click handler that closes tooltips
+ // This keeps the popup always visible, even when clicking outside the timeline
+
+ // Keeping the dependency array to avoid linting errors
+ return () => {};
+ }, [selectedSegmentId, showEmptySpaceTooltip, isPlayingSegment]);
+
+ // Initialize drag handlers for trim handles
+ useEffect(() => {
+ const leftHandle = leftHandleRef.current;
+ const rightHandle = rightHandleRef.current;
+ const timeline = timelineRef.current;
+
+ if (!leftHandle || !rightHandle || !timeline) return;
+
+ const initDrag = (isLeft: boolean) => (e: MouseEvent) => {
+ e.preventDefault();
+
+ const timelineRect = timeline.getBoundingClientRect();
+ let isDragging = true;
+ let finalTime = isLeft ? trimStart : trimEnd; // Track the final time for history recording
+
+ // Use custom events to indicate drag state
+ const createCustomEvent = (type: string) => {
+ return new CustomEvent('trim-handle-event', {
+ detail: { type, isStart: isLeft },
+ });
+ };
+
+ // Dispatch start drag event to signal not to record history during drag
+ document.dispatchEvent(createCustomEvent('drag-start'));
+
+ const onMouseMove = (moveEvent: MouseEvent) => {
+ if (!isDragging) return;
+
+ const timelineWidth = timelineRect.width;
+ const position = Math.max(0, Math.min(1, (moveEvent.clientX - timelineRect.left) / timelineWidth));
+ const newTime = position * duration;
+
+ // Store position globally for iOS Safari
+ if (typeof window !== 'undefined') {
+ window.lastSeekedPosition = newTime;
+ }
+
+ if (isLeft) {
+ if (newTime < trimEnd) {
+ // Don't record in history during drag - this avoids multiple history entries
+ document.dispatchEvent(
+ new CustomEvent('update-trim', {
+ detail: {
+ time: newTime,
+ isStart: true,
+ recordHistory: false,
+ },
+ })
+ );
+ finalTime = newTime;
+ }
+ } else {
+ if (newTime > trimStart) {
+ // Don't record in history during drag - this avoids multiple history entries
+ document.dispatchEvent(
+ new CustomEvent('update-trim', {
+ detail: {
+ time: newTime,
+ isStart: false,
+ recordHistory: false,
+ },
+ })
+ );
+ finalTime = newTime;
+ }
+ }
+ };
+
+ const onMouseUp = () => {
+ isDragging = false;
+ document.removeEventListener('mousemove', onMouseMove);
+ document.removeEventListener('mouseup', onMouseUp);
+
+ // Now record the final position in history with action type
+ if (isLeft) {
+ // Final update with history recording
+ document.dispatchEvent(
+ new CustomEvent('update-trim', {
+ detail: {
+ time: finalTime,
+ isStart: true,
+ recordHistory: true,
+ action: 'adjust_trim_start',
+ },
+ })
+ );
+ } else {
+ document.dispatchEvent(
+ new CustomEvent('update-trim', {
+ detail: {
+ time: finalTime,
+ isStart: false,
+ recordHistory: true,
+ action: 'adjust_trim_end',
+ },
+ })
+ );
+ }
+
+ // Dispatch end drag event
+ document.dispatchEvent(createCustomEvent('drag-end'));
+ };
+
+ document.addEventListener('mousemove', onMouseMove);
+ document.addEventListener('mouseup', onMouseUp);
+ };
+
+ leftHandle.addEventListener('mousedown', initDrag(true));
+ rightHandle.addEventListener('mousedown', initDrag(false));
+
+ return () => {
+ leftHandle.removeEventListener('mousedown', initDrag(true));
+ rightHandle.removeEventListener('mousedown', initDrag(false));
+ };
+ }, [duration, trimStart, trimEnd, onTrimStartChange, onTrimEndChange]);
+
+ // Render solid color backgrounds evenly spread across timeline
+ const renderThumbnails = () => {
+ // Create thumbnail sections even if we don't have actual thumbnail data
+ const numSections = thumbnails.length || 10; // Default to 10 sections if no thumbnails
+
+ return Array.from({ length: numSections }).map((_, index) => {
+ const segmentDuration = duration / numSections;
+ const segmentStartTime = index * segmentDuration;
+ const segmentEndTime = segmentStartTime + segmentDuration;
+ const midpointTime = (segmentStartTime + segmentEndTime) / 2;
+
+ // Get a solid color based on the segment position
+ const backgroundColor = generateSolidColor(midpointTime, duration);
+
+ return (
+
+ );
+ });
+ };
+
+ // Render split points
+ const renderSplitPoints = () => {
+ return splitPoints.map((point, index) => {
+ const pointPercent = (point / duration) * 100;
+ return
;
+ });
+ };
+
+ // Helper function to calculate available space for a new segment
+ const calculateAvailableSpace = (startTime: number): number => {
+ // Always return at least 0.1 seconds to ensure tooltip shows
+ const MIN_SPACE = 0.1;
+
+ // Determine the amount of available space:
+ // 1. Check remaining space until the end of video
+ const remainingDuration = Math.max(0, duration - startTime);
+
+ // 2. Find the next segment (if any)
+ const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+
+ // Find the next and previous segments
+ const nextSegment = sortedSegments.find((seg) => seg.startTime > startTime);
+ const prevSegment = [...sortedSegments].reverse().find((seg) => seg.endTime < startTime);
+
+ // Calculate the actual available space
+ let availableSpace;
+ if (nextSegment) {
+ // Space until next segment
+ availableSpace = nextSegment.startTime - startTime;
+ } else {
+ // Space until end of video
+ availableSpace = duration - startTime;
+ }
+
+ // Log the space calculation for debugging
+ logger.debug('Space calculation:', {
+ position: formatDetailedTime(startTime),
+ nextSegment: nextSegment ? formatDetailedTime(nextSegment.startTime) : 'none',
+ prevSegment: prevSegment ? formatDetailedTime(prevSegment.endTime) : 'none',
+ availableSpace: formatDetailedTime(Math.max(MIN_SPACE, availableSpace)),
+ });
+
+ // Always return at least MIN_SPACE to ensure tooltip shows
+ return Math.max(MIN_SPACE, availableSpace);
+ };
+
+ // Function to update tooltip based on current time position
+ const updateTooltipForPosition = (currentPosition: number) => {
+ if (!timelineRef.current) return;
+
+ // Find if we're in a segment at the current position with a small tolerance
+ const segmentAtPosition = clipSegments.find((seg) => {
+ const isWithinSegment = currentPosition >= seg.startTime && currentPosition <= seg.endTime;
+ const isVeryCloseToStart = Math.abs(currentPosition - seg.startTime) < 0.001;
+ const isVeryCloseToEnd = Math.abs(currentPosition - seg.endTime) < 0.001;
+ return isWithinSegment || isVeryCloseToStart || isVeryCloseToEnd;
+ });
+
+ // Find the next and previous segments
+ const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+ const nextSegment = sortedSegments.find((seg) => seg.startTime > currentPosition);
+ const prevSegment = [...sortedSegments].reverse().find((seg) => seg.endTime < currentPosition);
+
+ if (segmentAtPosition) {
+ // We're in or exactly at a segment boundary
+ setSelectedSegmentId(segmentAtPosition.id);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // We're in a cutaway area
+ // Calculate available space for new segment
+ const availableSpace = calculateAvailableSpace(currentPosition);
setAvailableSegmentDuration(availableSpace);
- // Show empty space tooltip if there's enough space
- if (availableSpace >= 0.5) {
- setShowEmptySpaceTooltip(true);
- logger.debug("Empty space with available duration:", availableSpace);
- } else {
- setShowEmptySpaceTooltip(false);
- }
- }
- }
- } else if (videoRef.current.paused && isPlayingSegment) {
- // When just paused from playing state, update display time to show the actual stopped position
- setDisplayTime(currentTime);
- setClickedTime(currentTime);
- setIsPlayingSegment(false);
+ // Always show empty space tooltip
+ setSelectedSegmentId(null);
+ setShowEmptySpaceTooltip(true);
- // Log the stopping point
- logger.debug("Video paused at:", formatDetailedTime(currentTime));
- }
- }
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, [currentTime, isPlayingSegment, activeSegment, selectedSegmentId, clipSegments]);
-
- // Close zoom dropdown when clicking outside
- useEffect(() => {
- const handleClickOutside = (event: MouseEvent) => {
- const target = event.target as HTMLElement;
- if (isZoomDropdownOpen && !target.closest(".zoom-dropdown-container")) {
- setIsZoomDropdownOpen(false);
- }
- };
-
- document.addEventListener("mousedown", handleClickOutside);
- return () => {
- document.removeEventListener("mousedown", handleClickOutside);
- };
- }, [isZoomDropdownOpen]);
-
- // Global click handler to close tooltips when clicking outside
- useEffect(() => {
- // Remove the global click handler that closes tooltips
- // This keeps the popup always visible, even when clicking outside the timeline
-
- // Keeping the dependency array to avoid linting errors
- return () => {};
- }, [selectedSegmentId, showEmptySpaceTooltip, isPlayingSegment]);
-
- // Initialize drag handlers for trim handles
- useEffect(() => {
- const leftHandle = leftHandleRef.current;
- const rightHandle = rightHandleRef.current;
- const timeline = timelineRef.current;
-
- if (!leftHandle || !rightHandle || !timeline) return;
-
- const initDrag = (isLeft: boolean) => (e: MouseEvent) => {
- e.preventDefault();
-
- const timelineRect = timeline.getBoundingClientRect();
- let isDragging = true;
- let finalTime = isLeft ? trimStart : trimEnd; // Track the final time for history recording
-
- // Use custom events to indicate drag state
- const createCustomEvent = (type: string) => {
- return new CustomEvent("trim-handle-event", {
- detail: { type, isStart: isLeft }
- });
- };
-
- // Dispatch start drag event to signal not to record history during drag
- document.dispatchEvent(createCustomEvent("drag-start"));
-
- const onMouseMove = (moveEvent: MouseEvent) => {
- if (!isDragging) return;
-
- const timelineWidth = timelineRect.width;
- const position = Math.max(
- 0,
- Math.min(1, (moveEvent.clientX - timelineRect.left) / timelineWidth)
- );
- const newTime = position * duration;
-
- // Store position globally for iOS Safari
- if (typeof window !== "undefined") {
- window.lastSeekedPosition = newTime;
- }
-
- if (isLeft) {
- if (newTime < trimEnd) {
- // Don't record in history during drag - this avoids multiple history entries
- document.dispatchEvent(
- new CustomEvent("update-trim", {
- detail: {
- time: newTime,
- isStart: true,
- recordHistory: false
- }
- })
- );
- finalTime = newTime;
- }
- } else {
- if (newTime > trimStart) {
- // Don't record in history during drag - this avoids multiple history entries
- document.dispatchEvent(
- new CustomEvent("update-trim", {
- detail: {
- time: newTime,
- isStart: false,
- recordHistory: false
- }
- })
- );
- finalTime = newTime;
- }
- }
- };
-
- const onMouseUp = () => {
- isDragging = false;
- document.removeEventListener("mousemove", onMouseMove);
- document.removeEventListener("mouseup", onMouseUp);
-
- // Now record the final position in history with action type
- if (isLeft) {
- // Final update with history recording
- document.dispatchEvent(
- new CustomEvent("update-trim", {
- detail: {
- time: finalTime,
- isStart: true,
- recordHistory: true,
- action: "adjust_trim_start"
- }
- })
- );
- } else {
- document.dispatchEvent(
- new CustomEvent("update-trim", {
- detail: {
- time: finalTime,
- isStart: false,
- recordHistory: true,
- action: "adjust_trim_end"
- }
- })
- );
- }
-
- // Dispatch end drag event
- document.dispatchEvent(createCustomEvent("drag-end"));
- };
-
- document.addEventListener("mousemove", onMouseMove);
- document.addEventListener("mouseup", onMouseUp);
- };
-
- leftHandle.addEventListener("mousedown", initDrag(true));
- rightHandle.addEventListener("mousedown", initDrag(false));
-
- return () => {
- leftHandle.removeEventListener("mousedown", initDrag(true));
- rightHandle.removeEventListener("mousedown", initDrag(false));
- };
- }, [duration, trimStart, trimEnd, onTrimStartChange, onTrimEndChange]);
-
- // Render solid color backgrounds evenly spread across timeline
- const renderThumbnails = () => {
- // Create thumbnail sections even if we don't have actual thumbnail data
- const numSections = thumbnails.length || 10; // Default to 10 sections if no thumbnails
-
- return Array.from({ length: numSections }).map((_, index) => {
- const segmentDuration = duration / numSections;
- const segmentStartTime = index * segmentDuration;
- const segmentEndTime = segmentStartTime + segmentDuration;
- const midpointTime = (segmentStartTime + segmentEndTime) / 2;
-
- // Get a solid color based on the segment position
- const backgroundColor = generateSolidColor(midpointTime, duration);
-
- return (
-
- );
- });
- };
-
- // Render split points
- const renderSplitPoints = () => {
- return splitPoints.map((point, index) => {
- const pointPercent = (point / duration) * 100;
- return
;
- });
- };
-
- // Helper function to calculate available space for a new segment
- const calculateAvailableSpace = (startTime: number): number => {
- // Always return at least 0.1 seconds to ensure tooltip shows
- const MIN_SPACE = 0.1;
-
- // Determine the amount of available space:
- // 1. Check remaining space until the end of video
- const remainingDuration = Math.max(0, duration - startTime);
-
- // 2. Find the next segment (if any)
- const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
-
- // Find the next and previous segments
- const nextSegment = sortedSegments.find((seg) => seg.startTime > startTime);
- const prevSegment = [...sortedSegments].reverse().find((seg) => seg.endTime < startTime);
-
- // Calculate the actual available space
- let availableSpace;
- if (nextSegment) {
- // Space until next segment
- availableSpace = nextSegment.startTime - startTime;
- } else {
- // Space until end of video
- availableSpace = duration - startTime;
- }
-
- // Log the space calculation for debugging
- logger.debug("Space calculation:", {
- position: formatDetailedTime(startTime),
- nextSegment: nextSegment ? formatDetailedTime(nextSegment.startTime) : "none",
- prevSegment: prevSegment ? formatDetailedTime(prevSegment.endTime) : "none",
- availableSpace: formatDetailedTime(Math.max(MIN_SPACE, availableSpace))
- });
-
- // Always return at least MIN_SPACE to ensure tooltip shows
- return Math.max(MIN_SPACE, availableSpace);
- };
-
- // Function to update tooltip based on current time position
- const updateTooltipForPosition = (currentPosition: number) => {
- if (!timelineRef.current) return;
-
- // Find if we're in a segment at the current position with a small tolerance
- const segmentAtPosition = clipSegments.find((seg) => {
- const isWithinSegment = currentPosition >= seg.startTime && currentPosition <= seg.endTime;
- const isVeryCloseToStart = Math.abs(currentPosition - seg.startTime) < 0.001;
- const isVeryCloseToEnd = Math.abs(currentPosition - seg.endTime) < 0.001;
- return isWithinSegment || isVeryCloseToStart || isVeryCloseToEnd;
- });
-
- // Find the next and previous segments
- const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
- const nextSegment = sortedSegments.find((seg) => seg.startTime > currentPosition);
- const prevSegment = [...sortedSegments].reverse().find((seg) => seg.endTime < currentPosition);
-
- if (segmentAtPosition) {
- // We're in or exactly at a segment boundary
- setSelectedSegmentId(segmentAtPosition.id);
- setShowEmptySpaceTooltip(false);
- } else {
- // We're in a cutaway area
- // Calculate available space for new segment
- const availableSpace = calculateAvailableSpace(currentPosition);
- setAvailableSegmentDuration(availableSpace);
-
- // Always show empty space tooltip
- setSelectedSegmentId(null);
- setShowEmptySpaceTooltip(true);
-
- // Log position info for debugging
- logger.debug("Cutaway position:", {
- current: formatDetailedTime(currentPosition),
- prevSegmentEnd: prevSegment ? formatDetailedTime(prevSegment.endTime) : "none",
- nextSegmentStart: nextSegment ? formatDetailedTime(nextSegment.startTime) : "none",
- availableSpace: formatDetailedTime(availableSpace)
- });
- }
-
- // Update tooltip position
- const rect = timelineRef.current.getBoundingClientRect();
- const positionPercent = (currentPosition / duration) * 100;
- let xPos;
-
- if (zoomLevel > 1 && scrollContainerRef.current) {
- // For zoomed timeline, adjust for scroll position
- const visibleTimelineLeft = rect.left - scrollContainerRef.current.scrollLeft;
- xPos = visibleTimelineLeft + rect.width * (positionPercent / 100);
- } else {
- // For non-zoomed timeline, use simple calculation
- xPos = rect.left + rect.width * (positionPercent / 100);
- }
-
- setTooltipPosition({
- x: xPos,
- y: rect.top - 10
- });
- };
-
- // Handle timeline click to seek and show a tooltip
- const handleTimelineClick = (e: React.MouseEvent) => {
- // Remove the check that prevents interaction during preview mode
- // This allows users to click and jump in the timeline while previewing
-
- if (!timelineRef.current || !scrollContainerRef.current) return;
-
- // If on mobile device and video hasn't been initialized, don't handle timeline clicks
- if (isIOSUninitialized) {
- return;
- }
-
- // Check if video is globally playing before the click
- const wasPlaying = videoRef.current && !videoRef.current.paused;
- logger.debug("Video was playing before timeline click:", wasPlaying);
-
- // Reset continuation flag when clicking on timeline - ensures proper boundary detection
- setContinuePastBoundary(false);
-
- const rect = timelineRef.current.getBoundingClientRect();
-
- // Account for scroll position when calculating the click position
- let position;
- if (zoomLevel > 1) {
- // When zoomed, we need to account for the scroll position
- const scrollLeft = scrollContainerRef.current.scrollLeft;
- const totalWidth = timelineRef.current.clientWidth;
- position = (e.clientX - rect.left + scrollLeft) / totalWidth;
- } else {
- // Normal calculation for 1x zoom
- position = (e.clientX - rect.left) / rect.width;
- }
-
- const newTime = position * duration;
-
- // Log the position for debugging
- logger.debug(
- "Timeline clicked at:",
- formatDetailedTime(newTime),
- "distance from end:",
- formatDetailedTime(duration - newTime)
- );
-
- // Store position globally for iOS Safari (this is critical for first-time visits)
- if (typeof window !== "undefined") {
- window.lastSeekedPosition = newTime;
- }
-
- // Seek to the clicked position immediately for all clicks
- onSeek(newTime);
-
- // Always update both clicked time and display time for tooltip actions
- setClickedTime(newTime);
- setDisplayTime(newTime);
-
- // Find if we clicked in a segment with a small tolerance for boundaries
- const segmentAtClickedTime = clipSegments.find((seg) => {
- // Standard check for being inside a segment
- const isInside = newTime >= seg.startTime && newTime <= seg.endTime;
- // Additional checks for being exactly at the start or end boundary (with small tolerance)
- const isAtStart = Math.abs(newTime - seg.startTime) < 0.01;
- const isAtEnd = Math.abs(newTime - seg.endTime) < 0.01;
-
- return isInside || isAtStart || isAtEnd;
- });
-
- // Handle active segment assignment for boundary checking
- if (segmentAtClickedTime) {
- setActiveSegment(segmentAtClickedTime);
- }
-
- // Resume playback based on the current mode
- if (videoRef.current) {
- // Special handling for segments playback mode
- if (isPlayingSegments && wasPlaying) {
- // Update the current segment index if we clicked into a segment
- if (segmentAtClickedTime) {
- const orderedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
- const targetSegmentIndex = orderedSegments.findIndex(
- (seg) => seg.id === segmentAtClickedTime.id
- );
-
- if (targetSegmentIndex !== -1) {
- // Dispatch a custom event to update the current segment index
- const updateSegmentIndexEvent = new CustomEvent("update-segment-index", {
- detail: { segmentIndex: targetSegmentIndex }
+ // Log position info for debugging
+ logger.debug('Cutaway position:', {
+ current: formatDetailedTime(currentPosition),
+ prevSegmentEnd: prevSegment ? formatDetailedTime(prevSegment.endTime) : 'none',
+ nextSegmentStart: nextSegment ? formatDetailedTime(nextSegment.startTime) : 'none',
+ availableSpace: formatDetailedTime(availableSpace),
});
- document.dispatchEvent(updateSegmentIndexEvent);
- logger.debug(
- `Segments playback mode: updating segment index to ${targetSegmentIndex} for timeline click in segment ${segmentAtClickedTime.id}`
- );
- }
}
- logger.debug("Segments playback mode: resuming playback after timeline click");
- videoRef.current
- .play()
- .then(() => {
- setIsPlayingSegment(true);
- logger.debug("Resumed segments playback after timeline seeking");
- })
- .catch((err) => {
- console.error("Error resuming segments playback:", err);
- setIsPlayingSegment(false);
- });
- }
- // Resume playback if it was playing before (but not during segments playback)
- else if (wasPlaying && !isPlayingSegments) {
- logger.debug("Resuming playback after timeline click");
- videoRef.current
- .play()
- .then(() => {
- setIsPlayingSegment(true);
- logger.debug("Resumed playback after seeking");
- })
- .catch((err) => {
- console.error("Error resuming playback:", err);
- setIsPlayingSegment(false);
- });
- }
- }
-
- // Only process tooltip display if clicked on the timeline background or thumbnails, not on other UI elements
- if (
- e.target === timelineRef.current ||
- (e.target as HTMLElement).classList.contains("timeline-thumbnail")
- ) {
- // Check if there's a segment at the clicked position
- if (segmentAtClickedTime) {
- setSelectedSegmentId(segmentAtClickedTime.id);
- setShowEmptySpaceTooltip(false);
- } else {
- // We're in a cutaway area - always show tooltip
- setSelectedSegmentId(null);
-
- // Calculate the available space for a new segment
- const availableSpace = calculateAvailableSpace(newTime);
- setAvailableSegmentDuration(availableSpace);
-
- // Calculate and set tooltip position correctly for zoomed timeline
+ // Update tooltip position
+ const rect = timelineRef.current.getBoundingClientRect();
+ const positionPercent = (currentPosition / duration) * 100;
let xPos;
- if (zoomLevel > 1) {
- // For zoomed timeline, calculate the visible position
- const visibleTimelineLeft = rect.left - scrollContainerRef.current.scrollLeft;
- const clickPosPercent = newTime / duration;
- xPos = visibleTimelineLeft + clickPosPercent * rect.width;
+
+ if (zoomLevel > 1 && scrollContainerRef.current) {
+ // For zoomed timeline, adjust for scroll position
+ const visibleTimelineLeft = rect.left - scrollContainerRef.current.scrollLeft;
+ xPos = visibleTimelineLeft + rect.width * (positionPercent / 100);
} else {
- // For 1x zoom, use the client X
- xPos = e.clientX;
+ // For non-zoomed timeline, use simple calculation
+ xPos = rect.left + rect.width * (positionPercent / 100);
}
setTooltipPosition({
- x: xPos,
- y: rect.top - 10 // Position tooltip above the timeline
+ x: xPos,
+ y: rect.top - 10,
});
+ };
- // Always show the empty space tooltip in cutaway areas
- setShowEmptySpaceTooltip(true);
+ // Handle timeline click to seek and show a tooltip
+ const handleTimelineClick = (e: React.MouseEvent) => {
+ // Remove the check that prevents interaction during preview mode
+ // This allows users to click and jump in the timeline while previewing
- // Log the cutaway area details
- const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
- const prevSegment = [...sortedSegments].reverse().find((seg) => seg.endTime < newTime);
- const nextSegment = sortedSegments.find((seg) => seg.startTime > newTime);
+ if (!timelineRef.current || !scrollContainerRef.current) return;
- logger.debug("Clicked in cutaway area:", {
- position: formatDetailedTime(newTime),
- availableSpace: formatDetailedTime(availableSpace),
- prevSegmentEnd: prevSegment ? formatDetailedTime(prevSegment.endTime) : "none",
- nextSegmentStart: nextSegment ? formatDetailedTime(nextSegment.startTime) : "none"
- });
- }
- }
- };
+ // If on mobile device and video hasn't been initialized, don't handle timeline clicks
+ if (isIOSUninitialized) {
+ return;
+ }
- // Handle segment resize - works with both mouse and touch events
- const handleSegmentResize =
- (segmentId: number, isLeft: boolean) => (e: React.MouseEvent | React.TouchEvent) => {
- // Remove the check that prevents interaction during preview mode
- // This allows users to resize segments while previewing
+ // Check if video is globally playing before the click
+ const wasPlaying = videoRef.current && !videoRef.current.paused;
+ logger.debug('Video was playing before timeline click:', wasPlaying);
- e.preventDefault();
- e.stopPropagation(); // Prevent triggering parent's events
+ // Reset continuation flag when clicking on timeline - ensures proper boundary detection
+ setContinuePastBoundary(false);
- if (!timelineRef.current) return;
+ const rect = timelineRef.current.getBoundingClientRect();
- const timelineRect = timelineRef.current.getBoundingClientRect();
- const timelineWidth = timelineRect.width;
+ // Account for scroll position when calculating the click position
+ let position;
+ if (zoomLevel > 1) {
+ // When zoomed, we need to account for the scroll position
+ const scrollLeft = scrollContainerRef.current.scrollLeft;
+ const totalWidth = timelineRef.current.clientWidth;
+ position = (e.clientX - rect.left + scrollLeft) / totalWidth;
+ } else {
+ // Normal calculation for 1x zoom
+ position = (e.clientX - rect.left) / rect.width;
+ }
- // Find the segment that's being resized
- const segment = clipSegments.find((seg) => seg.id === segmentId);
- if (!segment) return;
-
- const originalStartTime = segment.startTime;
- const originalEndTime = segment.endTime;
-
- // Store the original segment state to compare after dragging
- const segmentBeforeDrag = { ...segment };
-
- // Add a visual indicator that we're in resize mode (for mouse devices)
- document.body.style.cursor = "ew-resize";
-
- // Add a temporary overlay to help with dragging outside the element
- const overlay = document.createElement("div");
- overlay.style.position = "fixed";
- overlay.style.top = "0";
- overlay.style.left = "0";
- overlay.style.width = "100vw";
- overlay.style.height = "100vh";
- overlay.style.zIndex = "1000";
- overlay.style.cursor = "ew-resize";
- document.body.appendChild(overlay);
-
- // Track dragging state and final positions
- let isDragging = true;
- let finalStartTime = originalStartTime;
- let finalEndTime = originalEndTime;
-
- // Dispatch an event to signal drag start
- document.dispatchEvent(
- new CustomEvent("segment-drag-start", {
- detail: { segmentId }
- })
- );
-
- // Keep the tooltip visible during drag
- // Function to handle both mouse and touch movements
- const handleDragMove = (clientX: number) => {
- if (!isDragging || !timelineRef.current) return;
-
- const updatedTimelineRect = timelineRef.current.getBoundingClientRect();
- const position = Math.max(
- 0,
- Math.min(1, (clientX - updatedTimelineRect.left) / updatedTimelineRect.width)
- );
const newTime = position * duration;
- // Create a temporary segment with the current drag position to check against
- const draggedSegment = {
- id: segmentId,
- startTime: isLeft ? newTime : originalStartTime,
- endTime: isLeft ? originalEndTime : newTime,
- name: "",
- thumbnail: ""
- };
-
- // Check if the current marker position intersects with where the segment will be
- const currentSegmentStart = isLeft ? newTime : originalStartTime;
- const currentSegmentEnd = isLeft ? originalEndTime : newTime;
- const isMarkerInSegment =
- currentTime >= currentSegmentStart && currentTime <= currentSegmentEnd;
-
- // Update tooltip based on marker intersection
- if (isMarkerInSegment) {
- // Show segment tooltip if marker is inside the segment
- setSelectedSegmentId(segmentId);
- setShowEmptySpaceTooltip(false);
- } else {
- // Show cutaway tooltip if marker is outside the segment
- setSelectedSegmentId(null);
- // Calculate available space for cutaway tooltip
- const availableSpace = calculateAvailableSpace(currentTime);
- setAvailableSegmentDuration(availableSpace);
- setShowEmptySpaceTooltip(true);
- }
-
- // Find neighboring segments (exclude the current one)
- const otherSegments = clipSegments.filter((seg) => seg.id !== segmentId);
-
- // Calculate new start/end times based on drag direction
- let newStartTime = originalStartTime;
- let newEndTime = originalEndTime;
-
- if (isLeft) {
- // Dragging left handle - adjust start time
- newStartTime = Math.min(newTime, originalEndTime - 0.5);
-
- // Find the closest left neighbor
- const leftNeighbors = otherSegments
- .filter((seg) => seg.endTime <= originalStartTime)
- .sort((a, b) => b.endTime - a.endTime);
-
- const leftNeighbor = leftNeighbors[0];
-
- // Prevent overlapping with left neighbor
- if (leftNeighbor && newStartTime < leftNeighbor.endTime) {
- newStartTime = leftNeighbor.endTime;
- }
-
- // Snap to the nearest segment with a small threshold
- const snapThreshold = 0.3; // seconds
-
- if (leftNeighbor && Math.abs(newStartTime - leftNeighbor.endTime) < snapThreshold) {
- newStartTime = leftNeighbor.endTime;
- }
-
- // Update final value for history recording
- finalStartTime = newStartTime;
- } else {
- // Dragging right handle - adjust end time
- newEndTime = Math.max(newTime, originalStartTime + 0.5);
-
- // Find the closest right neighbor
- const rightNeighbors = otherSegments
- .filter((seg) => seg.startTime >= originalEndTime)
- .sort((a, b) => a.startTime - b.startTime);
-
- const rightNeighbor = rightNeighbors[0];
-
- // Prevent overlapping with right neighbor
- if (rightNeighbor && newEndTime > rightNeighbor.startTime) {
- newEndTime = rightNeighbor.startTime;
- }
-
- // Snap to the nearest segment with a small threshold
- const snapThreshold = 0.3; // seconds
-
- if (rightNeighbor && Math.abs(newEndTime - rightNeighbor.startTime) < snapThreshold) {
- newEndTime = rightNeighbor.startTime;
- }
-
- // Update final value for history recording
- finalEndTime = newEndTime;
- }
-
- // Create a new segments array with the updated segment
- const updatedSegments = clipSegments.map((seg) => {
- if (seg.id === segmentId) {
- return {
- ...seg,
- startTime: newStartTime,
- endTime: newEndTime
- };
- }
- return seg;
- });
-
- // Create a custom event to update the segments WITHOUT recording in history during drag
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: false // Don't record intermediate states
- }
- });
- document.dispatchEvent(updateEvent);
-
- // During dragging, check if the current tooltip needs to be updated based on segment position
- if (selectedSegmentId === segmentId && videoRef.current) {
- const currentTime = videoRef.current.currentTime;
- const segment = updatedSegments.find((seg) => seg.id === segmentId);
-
- if (segment) {
- // Check if playhead position is now outside the segment after dragging
- const isInsideSegment =
- currentTime >= segment.startTime && currentTime <= segment.endTime;
-
- // Log the current position information for debugging
- logger.debug(
- `During drag - playhead at ${formatDetailedTime(currentTime)} is ${
- isInsideSegment ? "inside" : "outside"
- } segment (${formatDetailedTime(segment.startTime)} - ${formatDetailedTime(
- segment.endTime
- )})`
- );
-
- if (!isInsideSegment && isPlayingSegment) {
- logger.debug(
- "Playhead position is outside segment after dragging - updating tooltip"
- );
- // Stop playback if we were playing and dragged the segment away from playhead
- videoRef.current.pause();
- setIsPlayingSegment(false);
- setActiveSegment(null);
- }
-
- // Update display time to stay in bounds of the segment
- if (currentTime < segment.startTime) {
- logger.debug(
- `Adjusting display time to segment start: ${formatDetailedTime(segment.startTime)}`
- );
- setDisplayTime(segment.startTime);
-
- // Update UI state to reflect that playback will be from segment start
- setClickedTime(segment.startTime);
- } else if (currentTime > segment.endTime) {
- logger.debug(
- `Adjusting display time to segment end: ${formatDetailedTime(segment.endTime)}`
- );
- setDisplayTime(segment.endTime);
-
- // Update UI state to reflect that playback will be from segment end
- setClickedTime(segment.endTime);
- }
- }
- }
- };
-
- // Function to handle the end of dragging (for both mouse and touch)
- const handleDragEnd = () => {
- if (!isDragging) return;
-
- isDragging = false;
-
- // Clean up event listeners for both mouse and touch
- document.removeEventListener("mousemove", handleMouseMove);
- document.removeEventListener("mouseup", handleMouseUp);
- document.removeEventListener("touchmove", handleTouchMove);
- document.removeEventListener("touchend", handleTouchEnd);
- document.removeEventListener("touchcancel", handleTouchEnd);
-
- // Reset styles
- document.body.style.cursor = "";
- if (document.body.contains(overlay)) {
- document.body.removeChild(overlay);
- }
-
- // Record the final position in history as a single action
- const finalSegments = clipSegments.map((seg) => {
- if (seg.id === segmentId) {
- return {
- ...seg,
- startTime: finalStartTime,
- endTime: finalEndTime
- };
- }
- return seg;
- });
-
- // Now we can create a history record for the complete drag operation
- const actionType = isLeft ? "adjust_segment_start" : "adjust_segment_end";
- document.dispatchEvent(
- new CustomEvent("update-segments", {
- detail: {
- segments: finalSegments,
- recordHistory: true,
- action: actionType
- }
- })
+ // Log the position for debugging
+ logger.debug(
+ 'Timeline clicked at:',
+ formatDetailedTime(newTime),
+ 'distance from end:',
+ formatDetailedTime(duration - newTime)
);
- // After drag is complete, do a final check to see if playhead is inside the segment
- if (selectedSegmentId === segmentId && videoRef.current) {
- const currentTime = videoRef.current.currentTime;
- const segment = finalSegments.find((seg) => seg.id === segmentId);
-
- if (segment) {
- const isInsideSegment =
- currentTime >= segment.startTime && currentTime <= segment.endTime;
-
- logger.debug(
- `Drag complete - playhead at ${formatDetailedTime(currentTime)} is ${
- isInsideSegment ? "inside" : "outside"
- } segment (${formatDetailedTime(segment.startTime)} - ${formatDetailedTime(
- segment.endTime
- )})`
- );
-
- // Check if playhead status changed during drag
- const wasInsideSegmentBefore =
- currentTime >= segmentBeforeDrag.startTime &&
- currentTime <= segmentBeforeDrag.endTime;
-
- logger.debug(
- `Playhead was ${
- wasInsideSegmentBefore ? "inside" : "outside"
- } segment before drag, now ${isInsideSegment ? "inside" : "outside"}`
- );
-
- // Update UI elements based on segment position
- if (!isInsideSegment) {
- // If we were playing and the playhead is now outside the segment, stop playback
- if (isPlayingSegment) {
- videoRef.current.pause();
- setIsPlayingSegment(false);
- setActiveSegment(null);
- setContinuePastBoundary(false);
- logger.debug(
- "Stopped playback because playhead is outside segment after drag completion"
- );
- }
-
- // Update display time to be within the segment's bounds
- if (currentTime < segment.startTime) {
- logger.debug(
- `Final adjustment - setting display time to segment start: ${formatDetailedTime(
- segment.startTime
- )}`
- );
- setDisplayTime(segment.startTime);
- setClickedTime(segment.startTime);
- } else if (currentTime > segment.endTime) {
- logger.debug(
- `Final adjustment - setting display time to segment end: ${formatDetailedTime(
- segment.endTime
- )}`
- );
- setDisplayTime(segment.endTime);
- setClickedTime(segment.endTime);
- }
- }
- // Special case: playhead was outside segment before, but now it's inside - can start playback
- else if (!wasInsideSegmentBefore && isInsideSegment) {
- logger.debug("Playhead moved INTO segment during drag - can start playback");
- setActiveSegment(segment);
- }
- // Another special case: playhead was inside segment before, but now is also inside but at a different position
- else if (
- wasInsideSegmentBefore &&
- isInsideSegment &&
- (segment.startTime !== segmentBeforeDrag.startTime ||
- segment.endTime !== segmentBeforeDrag.endTime)
- ) {
- logger.debug(
- "Segment boundaries changed while playhead remained inside - updating activeSegment"
- );
- // Update the active segment reference to ensure boundary detection works with new bounds
- setActiveSegment(segment);
- }
- }
+ // Store position globally for iOS Safari (this is critical for first-time visits)
+ if (typeof window !== 'undefined') {
+ window.lastSeekedPosition = newTime;
}
- };
- // Mouse-specific event handlers
- const handleMouseMove = (moveEvent: MouseEvent) => {
- handleDragMove(moveEvent.clientX);
- };
+ // Seek to the clicked position immediately for all clicks
+ onSeek(newTime);
- const handleMouseUp = () => {
- handleDragEnd();
- };
+ // Always update both clicked time and display time for tooltip actions
+ setClickedTime(newTime);
+ setDisplayTime(newTime);
- // Touch-specific event handlers
- const handleTouchMove = (moveEvent: TouchEvent) => {
- if (moveEvent.touches.length > 0) {
- moveEvent.preventDefault(); // Prevent scrolling while dragging
- handleDragMove(moveEvent.touches[0].clientX);
+ // Find if we clicked in a segment with a small tolerance for boundaries
+ const segmentAtClickedTime = clipSegments.find((seg) => {
+ // Standard check for being inside a segment
+ const isInside = newTime >= seg.startTime && newTime <= seg.endTime;
+ // Additional checks for being exactly at the start or end boundary (with small tolerance)
+ const isAtStart = Math.abs(newTime - seg.startTime) < 0.01;
+ const isAtEnd = Math.abs(newTime - seg.endTime) < 0.01;
+
+ return isInside || isAtStart || isAtEnd;
+ });
+
+ // Handle active segment assignment for boundary checking
+ if (segmentAtClickedTime) {
+ setActiveSegment(segmentAtClickedTime);
}
- };
- const handleTouchEnd = () => {
- handleDragEnd();
- };
+ // Resume playback based on the current mode
+ if (videoRef.current) {
+ // Special handling for segments playback mode
+ if (isPlayingSegments && wasPlaying) {
+ // Update the current segment index if we clicked into a segment
+ if (segmentAtClickedTime) {
+ const orderedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+ const targetSegmentIndex = orderedSegments.findIndex((seg) => seg.id === segmentAtClickedTime.id);
- // Register event listeners for both mouse and touch
- document.addEventListener("mousemove", handleMouseMove, {
- passive: false
- });
- document.addEventListener("mouseup", handleMouseUp);
- document.addEventListener("touchmove", handleTouchMove, {
- passive: false
- });
- document.addEventListener("touchend", handleTouchEnd);
- document.addEventListener("touchcancel", handleTouchEnd);
+ if (targetSegmentIndex !== -1) {
+ // Dispatch a custom event to update the current segment index
+ const updateSegmentIndexEvent = new CustomEvent('update-segment-index', {
+ detail: { segmentIndex: targetSegmentIndex },
+ });
+ document.dispatchEvent(updateSegmentIndexEvent);
+ logger.debug(
+ `Segments playback mode: updating segment index to ${targetSegmentIndex} for timeline click in segment ${segmentAtClickedTime.id}`
+ );
+ }
+ }
+
+ logger.debug('Segments playback mode: resuming playback after timeline click');
+ videoRef.current
+ .play()
+ .then(() => {
+ setIsPlayingSegment(true);
+ logger.debug('Resumed segments playback after timeline seeking');
+ })
+ .catch((err) => {
+ console.error('Error resuming segments playback:', err);
+ setIsPlayingSegment(false);
+ });
+ }
+ // Resume playback if it was playing before (but not during segments playback)
+ else if (wasPlaying && !isPlayingSegments) {
+ logger.debug('Resuming playback after timeline click');
+ videoRef.current
+ .play()
+ .then(() => {
+ setIsPlayingSegment(true);
+ logger.debug('Resumed playback after seeking');
+ })
+ .catch((err) => {
+ console.error('Error resuming playback:', err);
+ setIsPlayingSegment(false);
+ });
+ }
+ }
+
+ // Only process tooltip display if clicked on the timeline background or thumbnails, not on other UI elements
+ if (e.target === timelineRef.current || (e.target as HTMLElement).classList.contains('timeline-thumbnail')) {
+ // Check if there's a segment at the clicked position
+ if (segmentAtClickedTime) {
+ setSelectedSegmentId(segmentAtClickedTime.id);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // We're in a cutaway area - always show tooltip
+ setSelectedSegmentId(null);
+
+ // Calculate the available space for a new segment
+ const availableSpace = calculateAvailableSpace(newTime);
+ setAvailableSegmentDuration(availableSpace);
+
+ // Calculate and set tooltip position correctly for zoomed timeline
+ let xPos;
+ if (zoomLevel > 1) {
+ // For zoomed timeline, calculate the visible position
+ const visibleTimelineLeft = rect.left - scrollContainerRef.current.scrollLeft;
+ const clickPosPercent = newTime / duration;
+ xPos = visibleTimelineLeft + clickPosPercent * rect.width;
+ } else {
+ // For 1x zoom, use the client X
+ xPos = e.clientX;
+ }
+
+ setTooltipPosition({
+ x: xPos,
+ y: rect.top - 10, // Position tooltip above the timeline
+ });
+
+ // Always show the empty space tooltip in cutaway areas
+ setShowEmptySpaceTooltip(true);
+
+ // Log the cutaway area details
+ const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+ const prevSegment = [...sortedSegments].reverse().find((seg) => seg.endTime < newTime);
+ const nextSegment = sortedSegments.find((seg) => seg.startTime > newTime);
+
+ logger.debug('Clicked in cutaway area:', {
+ position: formatDetailedTime(newTime),
+ availableSpace: formatDetailedTime(availableSpace),
+ prevSegmentEnd: prevSegment ? formatDetailedTime(prevSegment.endTime) : 'none',
+ nextSegmentStart: nextSegment ? formatDetailedTime(nextSegment.startTime) : 'none',
+ });
+ }
+ }
};
- // Handle segment click to show the tooltip
- const handleSegmentClick = (segmentId: number) => (e: React.MouseEvent) => {
- // Remove the check that prevents interaction during preview mode
- // This allows users to click segments while previewing
+ // Handle segment resize - works with both mouse and touch events
+ const handleSegmentResize = (segmentId: number, isLeft: boolean) => (e: React.MouseEvent | React.TouchEvent) => {
+ // Remove the check that prevents interaction during preview mode
+ // This allows users to resize segments while previewing
- // Don't show tooltip if clicked on handle
- if ((e.target as HTMLElement).classList.contains("clip-segment-handle")) {
- return;
- }
+ e.preventDefault();
+ e.stopPropagation(); // Prevent triggering parent's events
- e.preventDefault();
- e.stopPropagation();
+ if (!timelineRef.current) return;
- logger.debug("Segment clicked:", segmentId);
+ const timelineRect = timelineRef.current.getBoundingClientRect();
+ const timelineWidth = timelineRect.width;
- // Reset continuation flag when selecting a segment - ensures proper boundary detection
- setContinuePastBoundary(false);
+ // Find the segment that's being resized
+ const segment = clipSegments.find((seg) => seg.id === segmentId);
+ if (!segment) return;
- // Check if video is currently playing before clicking
- const wasPlaying = videoRef.current && !videoRef.current.paused;
- logger.debug("seekVideo: Was playing before:", wasPlaying);
+ const originalStartTime = segment.startTime;
+ const originalEndTime = segment.endTime;
- // Set the current segment as selected
- setSelectedSegmentId(segmentId);
+ // Store the original segment state to compare after dragging
+ const segmentBeforeDrag = { ...segment };
- // Find the segment in our data
- const segment = clipSegments.find((seg) => seg.id === segmentId);
- if (!segment) return;
+ // Add a visual indicator that we're in resize mode (for mouse devices)
+ document.body.style.cursor = 'ew-resize';
- // Find the segment element in the DOM
- const segmentElement = e.currentTarget as HTMLElement;
- const segmentRect = segmentElement.getBoundingClientRect();
+ // Add a temporary overlay to help with dragging outside the element
+ const overlay = document.createElement('div');
+ overlay.style.position = 'fixed';
+ overlay.style.top = '0';
+ overlay.style.left = '0';
+ overlay.style.width = '100vw';
+ overlay.style.height = '100vh';
+ overlay.style.zIndex = '1000';
+ overlay.style.cursor = 'ew-resize';
+ document.body.appendChild(overlay);
- // Calculate relative click position within the segment (0 to 1)
- const relativeX = (e.clientX - segmentRect.left) / segmentRect.width;
+ // Track dragging state and final positions
+ let isDragging = true;
+ let finalStartTime = originalStartTime;
+ let finalEndTime = originalEndTime;
- // Convert to time based on segment's start and end times
- const clickTime = segment.startTime + relativeX * (segment.endTime - segment.startTime);
+ // Dispatch an event to signal drag start
+ document.dispatchEvent(
+ new CustomEvent('segment-drag-start', {
+ detail: { segmentId },
+ })
+ );
- // Ensure time is within segment bounds
- const boundedTime = Math.max(segment.startTime, Math.min(segment.endTime, clickTime));
+ // Keep the tooltip visible during drag
+ // Function to handle both mouse and touch movements
+ const handleDragMove = (clientX: number) => {
+ if (!isDragging || !timelineRef.current) return;
- // Set both clicked time and display time for UI
- setClickedTime(boundedTime);
- setDisplayTime(boundedTime);
+ const updatedTimelineRect = timelineRef.current.getBoundingClientRect();
+ const position = Math.max(0, Math.min(1, (clientX - updatedTimelineRect.left) / updatedTimelineRect.width));
+ const newTime = position * duration;
- // Check if the video's current time is inside or outside the segment
- // This helps with updating the tooltip correctly after dragging operations
- if (videoRef.current) {
- const currentVideoTime = videoRef.current.currentTime;
- const isPlayheadInsideSegment =
- currentVideoTime >= segment.startTime && currentVideoTime <= segment.endTime;
+ // Create a temporary segment with the current drag position to check against
+ const draggedSegment = {
+ id: segmentId,
+ startTime: isLeft ? newTime : originalStartTime,
+ endTime: isLeft ? originalEndTime : newTime,
+ name: '',
+ thumbnail: '',
+ };
- logger.debug(
- `Segment click - playhead at ${formatDetailedTime(currentVideoTime)} is ${
- isPlayheadInsideSegment ? "inside" : "outside"
- } segment (${formatDetailedTime(segment.startTime)} - ${formatDetailedTime(
- segment.endTime
- )})`
- );
+ // Check if the current marker position intersects with where the segment will be
+ const currentSegmentStart = isLeft ? newTime : originalStartTime;
+ const currentSegmentEnd = isLeft ? originalEndTime : newTime;
+ const isMarkerInSegment = currentTime >= currentSegmentStart && currentTime <= currentSegmentEnd;
- // If playhead is outside the segment, update the display time to segment boundary
- if (!isPlayheadInsideSegment) {
- // Adjust the display time based on which end is closer to the playhead
- if (
- Math.abs(currentVideoTime - segment.startTime) <
- Math.abs(currentVideoTime - segment.endTime)
- ) {
- // Playhead is closer to segment start
- logger.debug(
- `Playhead outside segment - adjusting to segment start: ${formatDetailedTime(
- segment.startTime
- )}`
- );
- setDisplayTime(segment.startTime);
- // Don't update clickedTime here since we already set it to the clicked position
- } else {
- // Playhead is closer to segment end
- logger.debug(
- `Playhead outside segment - adjusting to segment end: ${formatDetailedTime(
- segment.endTime
- )}`
- );
- setDisplayTime(segment.endTime);
- // Don't update clickedTime here since we already set it to the clicked position
- }
- }
- }
+ // Update tooltip based on marker intersection
+ if (isMarkerInSegment) {
+ // Show segment tooltip if marker is inside the segment
+ setSelectedSegmentId(segmentId);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // Show cutaway tooltip if marker is outside the segment
+ setSelectedSegmentId(null);
+ // Calculate available space for cutaway tooltip
+ const availableSpace = calculateAvailableSpace(currentTime);
+ setAvailableSegmentDuration(availableSpace);
+ setShowEmptySpaceTooltip(true);
+ }
- // Seek to this position (this will update the video's current time)
- onSeek(boundedTime);
+ // Find neighboring segments (exclude the current one)
+ const otherSegments = clipSegments.filter((seg) => seg.id !== segmentId);
- // Handle playback continuation based on the current mode
- if (videoRef.current) {
- // Special handling for segments playback mode
- if (isPlayingSegments && wasPlaying) {
- // Update the current segment index for segments playback mode
- const orderedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
- const targetSegmentIndex = orderedSegments.findIndex((seg) => seg.id === segmentId);
+ // Calculate new start/end times based on drag direction
+ let newStartTime = originalStartTime;
+ let newEndTime = originalEndTime;
- if (targetSegmentIndex !== -1) {
- // Dispatch a custom event to update the current segment index
- const updateSegmentIndexEvent = new CustomEvent("update-segment-index", {
- detail: { segmentIndex: targetSegmentIndex }
- });
- document.dispatchEvent(updateSegmentIndexEvent);
- logger.debug(
- `Segments playback mode: updating segment index to ${targetSegmentIndex} for segment ${segmentId}`
- );
- }
+ if (isLeft) {
+ // Dragging left handle - adjust start time
+ newStartTime = Math.min(newTime, originalEndTime - 0.5);
- // In segments playback mode, we want to continue the segments playback from the new position
- // The segments playback will naturally handle continuing to the next segments
- logger.debug("Segments playback mode: continuing playback from new position");
- videoRef.current
- .play()
- .then(() => {
- setIsPlayingSegment(true);
- logger.debug("Continued segments playback after segment click");
- })
- .catch((err) => {
- console.error("Error continuing segments playback after segment click:", err);
- });
- }
- // If video was playing before, ensure it continues playing (but not in segments mode)
- else if (wasPlaying && !isPlayingSegments) {
- // Set current segment as active segment for boundary checking
- setActiveSegment(segment);
- // Reset the continuePastBoundary flag when clicking on a segment to ensure boundaries work
- setContinuePastBoundary(false);
- // Continue playing from the new position
- videoRef.current
- .play()
- .then(() => {
- setIsPlayingSegment(true);
- logger.debug("Continued preview playback after segment click");
- })
- .catch((err) => {
- console.error("Error resuming playback after segment click:", err);
- });
- }
- }
+ // Find the closest left neighbor
+ const leftNeighbors = otherSegments
+ .filter((seg) => seg.endTime <= originalStartTime)
+ .sort((a, b) => b.endTime - a.endTime);
- // Calculate tooltip position directly above click point
- const tooltipX = e.clientX;
- const tooltipY = segmentRect.top - 10;
+ const leftNeighbor = leftNeighbors[0];
- setTooltipPosition({
- x: tooltipX,
- y: tooltipY
- });
+ // Prevent overlapping with left neighbor
+ if (leftNeighbor && newStartTime < leftNeighbor.endTime) {
+ newStartTime = leftNeighbor.endTime;
+ }
- // Auto-scroll to center the clicked position for zoomed timeline
- if (zoomLevel > 1 && timelineRef.current && scrollContainerRef.current) {
- const timelineRect = timelineRef.current.getBoundingClientRect();
- const timelineWidth = timelineRef.current.clientWidth;
- const containerWidth = scrollContainerRef.current.clientWidth;
+ // Snap to the nearest segment with a small threshold
+ const snapThreshold = 0.3; // seconds
- // Calculate pixel position of clicked time
- const clickedPosPixel = (boundedTime / duration) * timelineWidth;
+ if (leftNeighbor && Math.abs(newStartTime - leftNeighbor.endTime) < snapThreshold) {
+ newStartTime = leftNeighbor.endTime;
+ }
- // Center the view on the clicked position
- const targetScrollLeft = Math.max(0, clickedPosPixel - containerWidth / 2);
+ // Update final value for history recording
+ finalStartTime = newStartTime;
+ } else {
+ // Dragging right handle - adjust end time
+ newEndTime = Math.max(newTime, originalStartTime + 0.5);
- // Smooth scroll to the clicked point
- scrollContainerRef.current.scrollTo({
- left: targetScrollLeft,
- behavior: "smooth"
- });
+ // Find the closest right neighbor
+ const rightNeighbors = otherSegments
+ .filter((seg) => seg.startTime >= originalEndTime)
+ .sort((a, b) => a.startTime - b.startTime);
- // Update tooltip position after scrolling completes
- setTimeout(() => {
- if (timelineRef.current && scrollContainerRef.current) {
- // Calculate new position based on viewport
- const updatedRect = timelineRef.current.getBoundingClientRect();
- const timePercent = boundedTime / duration;
- const newPosition =
- timePercent * timelineWidth - scrollContainerRef.current.scrollLeft + updatedRect.left;
+ const rightNeighbor = rightNeighbors[0];
- setTooltipPosition({
- x: newPosition,
- y: tooltipY
- });
- }
- }, 300); // Wait for smooth scrolling to complete
- }
+ // Prevent overlapping with right neighbor
+ if (rightNeighbor && newEndTime > rightNeighbor.startTime) {
+ newEndTime = rightNeighbor.startTime;
+ }
- // We no longer need a local click handler as we have a global one
- // that handles closing tooltips when clicking outside
- };
+ // Snap to the nearest segment with a small threshold
+ const snapThreshold = 0.3; // seconds
- // Show tooltip for the segment
- const setShowTooltip = (show: boolean, segmentId: number, x: number, y: number) => {
- setSelectedSegmentId(show ? segmentId : null);
- setTooltipPosition({ x, y });
- };
+ if (rightNeighbor && Math.abs(newEndTime - rightNeighbor.startTime) < snapThreshold) {
+ newEndTime = rightNeighbor.startTime;
+ }
- // Render the clip segments on the timeline
- const renderClipSegments = () => {
- return clipSegments.map((segment, index) => {
- const startPercent = (segment.startTime / duration) * 100;
- const widthPercent = ((segment.endTime - segment.startTime) / duration) * 100;
+ // Update final value for history recording
+ finalEndTime = newEndTime;
+ }
- // Generate a solid background color based on segment position
- const backgroundColor = generateSolidColor(
- (segment.startTime + segment.endTime) / 2,
- duration
- );
+ // Create a new segments array with the updated segment
+ const updatedSegments = clipSegments.map((seg) => {
+ if (seg.id === segmentId) {
+ return {
+ ...seg,
+ startTime: newStartTime,
+ endTime: newEndTime,
+ };
+ }
+ return seg;
+ });
- return (
-
-
-
Segment {index + 1}
-
- {formatTime(segment.startTime)} - {formatTime(segment.endTime)}
-
-
- Duration: {formatTime(segment.endTime - segment.startTime)}
-
-
+ // Create a custom event to update the segments WITHOUT recording in history during drag
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: false, // Don't record intermediate states
+ },
+ });
+ document.dispatchEvent(updateEvent);
- {/* Resize handles with both mouse and touch support */}
- {isPlayingSegments ? null : (
- <>
-
{
- e.stopPropagation();
- handleSegmentResize(segment.id, true)(e);
- }}
- onTouchStart={(e) => {
- e.stopPropagation();
- handleSegmentResize(segment.id, true)(e);
- }}
- >
-
{
- e.stopPropagation();
- handleSegmentResize(segment.id, false)(e);
- }}
- onTouchStart={(e) => {
- e.stopPropagation();
- handleSegmentResize(segment.id, false)(e);
- }}
- >
- >
- )}
-
- );
- });
- };
+ // During dragging, check if the current tooltip needs to be updated based on segment position
+ if (selectedSegmentId === segmentId && videoRef.current) {
+ const currentTime = videoRef.current.currentTime;
+ const segment = updatedSegments.find((seg) => seg.id === segmentId);
- // Add a new useEffect hook to listen for segment deletion events
- useEffect(() => {
- const handleSegmentDelete = (event: CustomEvent) => {
- const { segmentId } = event.detail;
+ if (segment) {
+ // Check if playhead position is now outside the segment after dragging
+ const isInsideSegment = currentTime >= segment.startTime && currentTime <= segment.endTime;
- // Check if this was the last segment before deletion
- const remainingSegments = clipSegments.filter((seg) => seg.id !== segmentId);
- if (remainingSegments.length === 0) {
- // Create a full video segment
- const fullVideoSegment: Segment = {
- id: Date.now(),
- name: "Full Video",
- startTime: 0,
- endTime: duration,
- thumbnail: ""
+ // Log the current position information for debugging
+ logger.debug(
+ `During drag - playhead at ${formatDetailedTime(currentTime)} is ${
+ isInsideSegment ? 'inside' : 'outside'
+ } segment (${formatDetailedTime(segment.startTime)} - ${formatDetailedTime(segment.endTime)})`
+ );
+
+ if (!isInsideSegment && isPlayingSegment) {
+ logger.debug('Playhead position is outside segment after dragging - updating tooltip');
+ // Stop playback if we were playing and dragged the segment away from playhead
+ videoRef.current.pause();
+ setIsPlayingSegment(false);
+ setActiveSegment(null);
+ }
+
+ // Update display time to stay in bounds of the segment
+ if (currentTime < segment.startTime) {
+ logger.debug(
+ `Adjusting display time to segment start: ${formatDetailedTime(segment.startTime)}`
+ );
+ setDisplayTime(segment.startTime);
+
+ // Update UI state to reflect that playback will be from segment start
+ setClickedTime(segment.startTime);
+ } else if (currentTime > segment.endTime) {
+ logger.debug(`Adjusting display time to segment end: ${formatDetailedTime(segment.endTime)}`);
+ setDisplayTime(segment.endTime);
+
+ // Update UI state to reflect that playback will be from segment end
+ setClickedTime(segment.endTime);
+ }
+ }
+ }
};
- // Create and dispatch the update event to replace all segments with the full video segment
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: [fullVideoSegment],
- recordHistory: true,
- action: "create_full_video_segment"
- }
+ // Function to handle the end of dragging (for both mouse and touch)
+ const handleDragEnd = () => {
+ if (!isDragging) return;
+
+ isDragging = false;
+
+ // Clean up event listeners for both mouse and touch
+ document.removeEventListener('mousemove', handleMouseMove);
+ document.removeEventListener('mouseup', handleMouseUp);
+ document.removeEventListener('touchmove', handleTouchMove);
+ document.removeEventListener('touchend', handleTouchEnd);
+ document.removeEventListener('touchcancel', handleTouchEnd);
+
+ // Reset styles
+ document.body.style.cursor = '';
+ if (document.body.contains(overlay)) {
+ document.body.removeChild(overlay);
+ }
+
+ // Record the final position in history as a single action
+ const finalSegments = clipSegments.map((seg) => {
+ if (seg.id === segmentId) {
+ return {
+ ...seg,
+ startTime: finalStartTime,
+ endTime: finalEndTime,
+ };
+ }
+ return seg;
+ });
+
+ // Now we can create a history record for the complete drag operation
+ const actionType = isLeft ? 'adjust_segment_start' : 'adjust_segment_end';
+ document.dispatchEvent(
+ new CustomEvent('update-segments', {
+ detail: {
+ segments: finalSegments,
+ recordHistory: true,
+ action: actionType,
+ },
+ })
+ );
+
+ // After drag is complete, do a final check to see if playhead is inside the segment
+ if (selectedSegmentId === segmentId && videoRef.current) {
+ const currentTime = videoRef.current.currentTime;
+ const segment = finalSegments.find((seg) => seg.id === segmentId);
+
+ if (segment) {
+ const isInsideSegment = currentTime >= segment.startTime && currentTime <= segment.endTime;
+
+ logger.debug(
+ `Drag complete - playhead at ${formatDetailedTime(currentTime)} is ${
+ isInsideSegment ? 'inside' : 'outside'
+ } segment (${formatDetailedTime(segment.startTime)} - ${formatDetailedTime(segment.endTime)})`
+ );
+
+ // Check if playhead status changed during drag
+ const wasInsideSegmentBefore =
+ currentTime >= segmentBeforeDrag.startTime && currentTime <= segmentBeforeDrag.endTime;
+
+ logger.debug(
+ `Playhead was ${
+ wasInsideSegmentBefore ? 'inside' : 'outside'
+ } segment before drag, now ${isInsideSegment ? 'inside' : 'outside'}`
+ );
+
+ // Update UI elements based on segment position
+ if (!isInsideSegment) {
+ // If we were playing and the playhead is now outside the segment, stop playback
+ if (isPlayingSegment) {
+ videoRef.current.pause();
+ setIsPlayingSegment(false);
+ setActiveSegment(null);
+ setContinuePastBoundary(false);
+ logger.debug('Stopped playback because playhead is outside segment after drag completion');
+ }
+
+ // Update display time to be within the segment's bounds
+ if (currentTime < segment.startTime) {
+ logger.debug(
+ `Final adjustment - setting display time to segment start: ${formatDetailedTime(
+ segment.startTime
+ )}`
+ );
+ setDisplayTime(segment.startTime);
+ setClickedTime(segment.startTime);
+ } else if (currentTime > segment.endTime) {
+ logger.debug(
+ `Final adjustment - setting display time to segment end: ${formatDetailedTime(
+ segment.endTime
+ )}`
+ );
+ setDisplayTime(segment.endTime);
+ setClickedTime(segment.endTime);
+ }
+ }
+ // Special case: playhead was outside segment before, but now it's inside - can start playback
+ else if (!wasInsideSegmentBefore && isInsideSegment) {
+ logger.debug('Playhead moved INTO segment during drag - can start playback');
+ setActiveSegment(segment);
+ }
+ // Another special case: playhead was inside segment before, but now is also inside but at a different position
+ else if (
+ wasInsideSegmentBefore &&
+ isInsideSegment &&
+ (segment.startTime !== segmentBeforeDrag.startTime ||
+ segment.endTime !== segmentBeforeDrag.endTime)
+ ) {
+ logger.debug(
+ 'Segment boundaries changed while playhead remained inside - updating activeSegment'
+ );
+ // Update the active segment reference to ensure boundary detection works with new bounds
+ setActiveSegment(segment);
+ }
+ }
+ }
+ };
+
+ // Mouse-specific event handlers
+ const handleMouseMove = (moveEvent: MouseEvent) => {
+ handleDragMove(moveEvent.clientX);
+ };
+
+ const handleMouseUp = () => {
+ handleDragEnd();
+ };
+
+ // Touch-specific event handlers
+ const handleTouchMove = (moveEvent: TouchEvent) => {
+ if (moveEvent.touches.length > 0) {
+ moveEvent.preventDefault(); // Prevent scrolling while dragging
+ handleDragMove(moveEvent.touches[0].clientX);
+ }
+ };
+
+ const handleTouchEnd = () => {
+ handleDragEnd();
+ };
+
+ // Register event listeners for both mouse and touch
+ document.addEventListener('mousemove', handleMouseMove, {
+ passive: false,
});
- document.dispatchEvent(updateEvent);
-
- // Update UI to show the segment tooltip
- setSelectedSegmentId(fullVideoSegment.id);
- setShowEmptySpaceTooltip(false);
- setClickedTime(currentTime);
- setDisplayTime(currentTime);
- setActiveSegment(fullVideoSegment);
-
- // Calculate tooltip position at current time
- if (timelineRef.current) {
- const rect = timelineRef.current.getBoundingClientRect();
- const posPercent = (currentTime / duration) * 100;
- const xPosition = rect.left + rect.width * (posPercent / 100);
-
- setTooltipPosition({
- x: xPosition,
- y: rect.top - 10
- });
-
- logger.debug("Created full video segment:", {
- id: fullVideoSegment.id,
- duration: formatDetailedTime(duration),
- currentPosition: formatDetailedTime(currentTime)
- });
- }
- } else if (selectedSegmentId === segmentId) {
- // Handle normal segment deletion
- const deletedSegment = clipSegments.find((seg) => seg.id === segmentId);
- if (!deletedSegment) return;
-
- // Calculate available space after deletion
- const availableSpace = calculateAvailableSpace(currentTime);
-
- // Update UI to show cutaway tooltip
- setSelectedSegmentId(null);
- setShowEmptySpaceTooltip(true);
- setAvailableSegmentDuration(availableSpace);
-
- // Calculate tooltip position
- if (timelineRef.current) {
- const rect = timelineRef.current.getBoundingClientRect();
- const posPercent = (currentTime / duration) * 100;
- const xPosition = rect.left + rect.width * (posPercent / 100);
-
- setTooltipPosition({
- x: xPosition,
- y: rect.top - 10
- });
-
- logger.debug("Segment deleted, showing cutaway tooltip:", {
- position: formatDetailedTime(currentTime),
- availableSpace: formatDetailedTime(availableSpace)
- });
- }
- }
+ document.addEventListener('mouseup', handleMouseUp);
+ document.addEventListener('touchmove', handleTouchMove, {
+ passive: false,
+ });
+ document.addEventListener('touchend', handleTouchEnd);
+ document.addEventListener('touchcancel', handleTouchEnd);
};
- // Add event listener for the custom delete-segment event
- document.addEventListener("delete-segment", handleSegmentDelete as EventListener);
+ // Handle segment click to show the tooltip
+ const handleSegmentClick = (segmentId: number) => (e: React.MouseEvent) => {
+ // Remove the check that prevents interaction during preview mode
+ // This allows users to click segments while previewing
- // Clean up event listener on component unmount
- return () => {
- document.removeEventListener("delete-segment", handleSegmentDelete as EventListener);
+ // Don't show tooltip if clicked on handle
+ if ((e.target as HTMLElement).classList.contains('clip-segment-handle')) {
+ return;
+ }
+
+ e.preventDefault();
+ e.stopPropagation();
+
+ logger.debug('Segment clicked:', segmentId);
+
+ // Reset continuation flag when selecting a segment - ensures proper boundary detection
+ setContinuePastBoundary(false);
+
+ // Check if video is currently playing before clicking
+ const wasPlaying = videoRef.current && !videoRef.current.paused;
+ logger.debug('seekVideo: Was playing before:', wasPlaying);
+
+ // Set the current segment as selected
+ setSelectedSegmentId(segmentId);
+
+ // Find the segment in our data
+ const segment = clipSegments.find((seg) => seg.id === segmentId);
+ if (!segment) return;
+
+ // Find the segment element in the DOM
+ const segmentElement = e.currentTarget as HTMLElement;
+ const segmentRect = segmentElement.getBoundingClientRect();
+
+ // Calculate relative click position within the segment (0 to 1)
+ const relativeX = (e.clientX - segmentRect.left) / segmentRect.width;
+
+ // Convert to time based on segment's start and end times
+ const clickTime = segment.startTime + relativeX * (segment.endTime - segment.startTime);
+
+ // Ensure time is within segment bounds
+ const boundedTime = Math.max(segment.startTime, Math.min(segment.endTime, clickTime));
+
+ // Set both clicked time and display time for UI
+ setClickedTime(boundedTime);
+ setDisplayTime(boundedTime);
+
+ // Check if the video's current time is inside or outside the segment
+ // This helps with updating the tooltip correctly after dragging operations
+ if (videoRef.current) {
+ const currentVideoTime = videoRef.current.currentTime;
+ const isPlayheadInsideSegment =
+ currentVideoTime >= segment.startTime && currentVideoTime <= segment.endTime;
+
+ logger.debug(
+ `Segment click - playhead at ${formatDetailedTime(currentVideoTime)} is ${
+ isPlayheadInsideSegment ? 'inside' : 'outside'
+ } segment (${formatDetailedTime(segment.startTime)} - ${formatDetailedTime(segment.endTime)})`
+ );
+
+ // If playhead is outside the segment, update the display time to segment boundary
+ if (!isPlayheadInsideSegment) {
+ // Adjust the display time based on which end is closer to the playhead
+ if (Math.abs(currentVideoTime - segment.startTime) < Math.abs(currentVideoTime - segment.endTime)) {
+ // Playhead is closer to segment start
+ logger.debug(
+ `Playhead outside segment - adjusting to segment start: ${formatDetailedTime(
+ segment.startTime
+ )}`
+ );
+ setDisplayTime(segment.startTime);
+ // Don't update clickedTime here since we already set it to the clicked position
+ } else {
+ // Playhead is closer to segment end
+ logger.debug(
+ `Playhead outside segment - adjusting to segment end: ${formatDetailedTime(segment.endTime)}`
+ );
+ setDisplayTime(segment.endTime);
+ // Don't update clickedTime here since we already set it to the clicked position
+ }
+ }
+ }
+
+ // Seek to this position (this will update the video's current time)
+ onSeek(boundedTime);
+
+ // Handle playback continuation based on the current mode
+ if (videoRef.current) {
+ // Special handling for segments playback mode
+ if (isPlayingSegments && wasPlaying) {
+ // Update the current segment index for segments playback mode
+ const orderedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+ const targetSegmentIndex = orderedSegments.findIndex((seg) => seg.id === segmentId);
+
+ if (targetSegmentIndex !== -1) {
+ // Dispatch a custom event to update the current segment index
+ const updateSegmentIndexEvent = new CustomEvent('update-segment-index', {
+ detail: { segmentIndex: targetSegmentIndex },
+ });
+ document.dispatchEvent(updateSegmentIndexEvent);
+ logger.debug(
+ `Segments playback mode: updating segment index to ${targetSegmentIndex} for segment ${segmentId}`
+ );
+ }
+
+ // In segments playback mode, we want to continue the segments playback from the new position
+ // The segments playback will naturally handle continuing to the next segments
+ logger.debug('Segments playback mode: continuing playback from new position');
+ videoRef.current
+ .play()
+ .then(() => {
+ setIsPlayingSegment(true);
+ logger.debug('Continued segments playback after segment click');
+ })
+ .catch((err) => {
+ console.error('Error continuing segments playback after segment click:', err);
+ });
+ }
+ // If video was playing before, ensure it continues playing (but not in segments mode)
+ else if (wasPlaying && !isPlayingSegments) {
+ // Set current segment as active segment for boundary checking
+ setActiveSegment(segment);
+ // Reset the continuePastBoundary flag when clicking on a segment to ensure boundaries work
+ setContinuePastBoundary(false);
+ // Continue playing from the new position
+ videoRef.current
+ .play()
+ .then(() => {
+ setIsPlayingSegment(true);
+ logger.debug('Continued preview playback after segment click');
+ })
+ .catch((err) => {
+ console.error('Error resuming playback after segment click:', err);
+ });
+ }
+ }
+
+ // Calculate tooltip position directly above click point
+ const tooltipX = e.clientX;
+ const tooltipY = segmentRect.top - 10;
+
+ setTooltipPosition({
+ x: tooltipX,
+ y: tooltipY,
+ });
+
+ // Auto-scroll to center the clicked position for zoomed timeline
+ if (zoomLevel > 1 && timelineRef.current && scrollContainerRef.current) {
+ const timelineRect = timelineRef.current.getBoundingClientRect();
+ const timelineWidth = timelineRef.current.clientWidth;
+ const containerWidth = scrollContainerRef.current.clientWidth;
+
+ // Calculate pixel position of clicked time
+ const clickedPosPixel = (boundedTime / duration) * timelineWidth;
+
+ // Center the view on the clicked position
+ const targetScrollLeft = Math.max(0, clickedPosPixel - containerWidth / 2);
+
+ // Smooth scroll to the clicked point
+ scrollContainerRef.current.scrollTo({
+ left: targetScrollLeft,
+ behavior: 'smooth',
+ });
+
+ // Update tooltip position after scrolling completes
+ setTimeout(() => {
+ if (timelineRef.current && scrollContainerRef.current) {
+ // Calculate new position based on viewport
+ const updatedRect = timelineRef.current.getBoundingClientRect();
+ const timePercent = boundedTime / duration;
+ const newPosition =
+ timePercent * timelineWidth - scrollContainerRef.current.scrollLeft + updatedRect.left;
+
+ setTooltipPosition({
+ x: newPosition,
+ y: tooltipY,
+ });
+ }
+ }, 300); // Wait for smooth scrolling to complete
+ }
+
+ // We no longer need a local click handler as we have a global one
+ // that handles closing tooltips when clicking outside
};
- }, [selectedSegmentId, clipSegments, currentTime, duration, timelineRef]);
- // Add an effect to synchronize tooltip play state with video play state
- useEffect(() => {
- const video = videoRef.current;
- if (!video) return;
+ // Show tooltip for the segment
+ const setShowTooltip = (show: boolean, segmentId: number, x: number, y: number) => {
+ setSelectedSegmentId(show ? segmentId : null);
+ setTooltipPosition({ x, y });
+ };
- const handlePlay = () => {
- if (!videoRef.current) return;
+ // Render the clip segments on the timeline
+ const renderClipSegments = () => {
+ return clipSegments.map((segment, index) => {
+ const startPercent = (segment.startTime / duration) * 100;
+ const widthPercent = ((segment.endTime - segment.startTime) / duration) * 100;
- const video = videoRef.current;
- const currentPosition = video.currentTime;
+ // Generate a solid background color based on segment position
+ const backgroundColor = generateSolidColor((segment.startTime + segment.endTime) / 2, duration);
- // Reset continuePastBoundary flag when starting new playback
- setContinuePastBoundary(false);
+ return (
+
+
+
Segment {index + 1}
+
+ {formatTime(segment.startTime)} - {formatTime(segment.endTime)}
+
+
+ Duration: {formatTime(segment.endTime - segment.startTime)}
+
+
- // Find the next stopping point based on current position
- let stopTime = duration;
- let currentSegment = null;
- let nextSegment = null;
+ {/* Resize handles with both mouse and touch support */}
+ {isPlayingSegments ? null : (
+ <>
+
{
+ e.stopPropagation();
+ handleSegmentResize(segment.id, true)(e);
+ }}
+ onTouchStart={(e) => {
+ e.stopPropagation();
+ handleSegmentResize(segment.id, true)(e);
+ }}
+ >
+
{
+ e.stopPropagation();
+ handleSegmentResize(segment.id, false)(e);
+ }}
+ onTouchStart={(e) => {
+ e.stopPropagation();
+ handleSegmentResize(segment.id, false)(e);
+ }}
+ >
+ >
+ )}
+
+ );
+ });
+ };
- // First, check if we're inside a segment with high precision
- currentSegment = clipSegments.find((seg) => {
- const isWithinSegment = currentPosition >= seg.startTime && currentPosition <= seg.endTime;
- const isAtExactStart = Math.abs(currentPosition - seg.startTime) < 0.001; // Within 1ms of start
- const isAtExactEnd = Math.abs(currentPosition - seg.endTime) < 0.001; // Within 1ms of end
- return isWithinSegment || isAtExactStart || isAtExactEnd;
- });
+ // Add a new useEffect hook to listen for segment deletion events
+ useEffect(() => {
+ const handleSegmentDelete = (event: CustomEvent) => {
+ const { segmentId } = event.detail;
- // Find the next segment with high precision
- nextSegment = clipSegments
- .filter((seg) => {
- const isAfterCurrent = seg.startTime > currentPosition;
- const isNotAtExactPosition = Math.abs(seg.startTime - currentPosition) > 0.001;
- return isAfterCurrent && isNotAtExactPosition;
- })
- .sort((a, b) => a.startTime - b.startTime)[0];
+ // Check if this was the last segment before deletion
+ const remainingSegments = clipSegments.filter((seg) => seg.id !== segmentId);
+ if (remainingSegments.length === 0) {
+ // Create a full video segment
+ const fullVideoSegment: Segment = {
+ id: Date.now(),
+ name: 'Full Video',
+ startTime: 0,
+ endTime: duration,
+ thumbnail: '',
+ };
- // Determine where to stop based on position
- if (currentSegment) {
- // If we're in a segment, stop at its end
- stopTime = currentSegment.endTime;
- setActiveSegment(currentSegment);
- } else if (nextSegment) {
- // If we're in a cutaway and there's a next segment, stop at its start
- stopTime = nextSegment.startTime;
- // Don't set active segment since we're in a cutaway
- }
+ // Create and dispatch the update event to replace all segments with the full video segment
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: [fullVideoSegment],
+ recordHistory: true,
+ action: 'create_full_video_segment',
+ },
+ });
+ document.dispatchEvent(updateEvent);
- // Create a boundary checker function with high precision
- const checkBoundary = () => {
+ // Update UI to show the segment tooltip
+ setSelectedSegmentId(fullVideoSegment.id);
+ setShowEmptySpaceTooltip(false);
+ setClickedTime(currentTime);
+ setDisplayTime(currentTime);
+ setActiveSegment(fullVideoSegment);
+
+ // Calculate tooltip position at current time
+ if (timelineRef.current) {
+ const rect = timelineRef.current.getBoundingClientRect();
+ const posPercent = (currentTime / duration) * 100;
+ const xPosition = rect.left + rect.width * (posPercent / 100);
+
+ setTooltipPosition({
+ x: xPosition,
+ y: rect.top - 10,
+ });
+
+ logger.debug('Created full video segment:', {
+ id: fullVideoSegment.id,
+ duration: formatDetailedTime(duration),
+ currentPosition: formatDetailedTime(currentTime),
+ });
+ }
+ } else if (selectedSegmentId === segmentId) {
+ // Handle normal segment deletion
+ const deletedSegment = clipSegments.find((seg) => seg.id === segmentId);
+ if (!deletedSegment) return;
+
+ // Calculate available space after deletion
+ const availableSpace = calculateAvailableSpace(currentTime);
+
+ // Update UI to show cutaway tooltip
+ setSelectedSegmentId(null);
+ setShowEmptySpaceTooltip(true);
+ setAvailableSegmentDuration(availableSpace);
+
+ // Calculate tooltip position
+ if (timelineRef.current) {
+ const rect = timelineRef.current.getBoundingClientRect();
+ const posPercent = (currentTime / duration) * 100;
+ const xPosition = rect.left + rect.width * (posPercent / 100);
+
+ setTooltipPosition({
+ x: xPosition,
+ y: rect.top - 10,
+ });
+
+ logger.debug('Segment deleted, showing cutaway tooltip:', {
+ position: formatDetailedTime(currentTime),
+ availableSpace: formatDetailedTime(availableSpace),
+ });
+ }
+ }
+ };
+
+ // Add event listener for the custom delete-segment event
+ document.addEventListener('delete-segment', handleSegmentDelete as EventListener);
+
+ // Clean up event listener on component unmount
+ return () => {
+ document.removeEventListener('delete-segment', handleSegmentDelete as EventListener);
+ };
+ }, [selectedSegmentId, clipSegments, currentTime, duration, timelineRef]);
+
+ // Add an effect to synchronize tooltip play state with video play state
+ useEffect(() => {
+ const video = videoRef.current;
if (!video) return;
- const currentPosition = video.currentTime;
- const timeLeft = stopTime - currentPosition;
+ const handlePlay = () => {
+ if (!videoRef.current) return;
- // If we're approaching the boundary (within 1ms) or have passed it
- if (timeLeft <= 0.001 || currentPosition >= stopTime) {
- // First pause playback
- video.pause();
+ const video = videoRef.current;
+ const currentPosition = video.currentTime;
- // Force exact position with multiple verification attempts
- const setExactPosition = () => {
- if (!video) return;
+ // Reset continuePastBoundary flag when starting new playback
+ setContinuePastBoundary(false);
- // Set to exact boundary time
- video.currentTime = stopTime;
- onSeek(stopTime);
- setDisplayTime(stopTime);
- setClickedTime(stopTime);
+ // Find the next stopping point based on current position
+ let stopTime = duration;
+ let currentSegment = null;
+ let nextSegment = null;
- logger.debug("Position verification:", {
- target: formatDetailedTime(stopTime),
- actual: formatDetailedTime(video.currentTime),
- difference: Math.abs(video.currentTime - stopTime).toFixed(3)
+ // First, check if we're inside a segment with high precision
+ currentSegment = clipSegments.find((seg) => {
+ const isWithinSegment = currentPosition >= seg.startTime && currentPosition <= seg.endTime;
+ const isAtExactStart = Math.abs(currentPosition - seg.startTime) < 0.001; // Within 1ms of start
+ const isAtExactEnd = Math.abs(currentPosition - seg.endTime) < 0.001; // Within 1ms of end
+ return isWithinSegment || isAtExactStart || isAtExactEnd;
});
- };
- // Multiple attempts to ensure precision
- setExactPosition();
- setTimeout(setExactPosition, 10);
- setTimeout(setExactPosition, 20);
- setTimeout(setExactPosition, 50);
+ // Find the next segment with high precision
+ nextSegment = clipSegments
+ .filter((seg) => {
+ const isAfterCurrent = seg.startTime > currentPosition;
+ const isNotAtExactPosition = Math.abs(seg.startTime - currentPosition) > 0.001;
+ return isAfterCurrent && isNotAtExactPosition;
+ })
+ .sort((a, b) => a.startTime - b.startTime)[0];
- // Update UI based on where we stopped
- if (currentSegment) {
- setSelectedSegmentId(currentSegment.id);
- setShowEmptySpaceTooltip(false);
- } else if (nextSegment) {
- setSelectedSegmentId(nextSegment.id);
- setShowEmptySpaceTooltip(false);
- setActiveSegment(nextSegment);
- } else {
- setSelectedSegmentId(null);
- setShowEmptySpaceTooltip(true);
- setActiveSegment(null);
- }
+ // Determine where to stop based on position
+ if (currentSegment) {
+ // If we're in a segment, stop at its end
+ stopTime = currentSegment.endTime;
+ setActiveSegment(currentSegment);
+ } else if (nextSegment) {
+ // If we're in a cutaway and there's a next segment, stop at its start
+ stopTime = nextSegment.startTime;
+ // Don't set active segment since we're in a cutaway
+ }
- // Remove our boundary checker
- video.removeEventListener("timeupdate", checkBoundary);
- setIsPlaying(false);
- setIsPlayingSegment(false);
- // Reset continuePastBoundary flag when stopping at boundary
- setContinuePastBoundary(false);
- return;
- }
- };
+ // Create a boundary checker function with high precision
+ const checkBoundary = () => {
+ if (!video) return;
- // Start our boundary checker
- video.addEventListener("timeupdate", checkBoundary);
+ const currentPosition = video.currentTime;
+ const timeLeft = stopTime - currentPosition;
- // Start playing
- video
- .play()
- .then(() => {
- setIsPlaying(true);
- setIsPlayingSegment(true);
- logger.debug("Playback started:", {
- from: formatDetailedTime(currentPosition),
- to: formatDetailedTime(stopTime),
- currentSegment: currentSegment ? `Segment ${currentSegment.id}` : "None",
- nextSegment: nextSegment ? `Segment ${nextSegment.id}` : "None"
- });
- })
- .catch((err) => {
- console.error("Error playing video:", err);
- });
- };
+ // If we're approaching the boundary (within 1ms) or have passed it
+ if (timeLeft <= 0.001 || currentPosition >= stopTime) {
+ // First pause playback
+ video.pause();
- const handlePause = () => {
- logger.debug("Video paused from external control");
- setIsPlayingSegment(false);
- };
+ // Force exact position with multiple verification attempts
+ const setExactPosition = () => {
+ if (!video) return;
- video.addEventListener("play", handlePlay);
- video.addEventListener("pause", handlePause);
+ // Set to exact boundary time
+ video.currentTime = stopTime;
+ onSeek(stopTime);
+ setDisplayTime(stopTime);
+ setClickedTime(stopTime);
- return () => {
- video.removeEventListener("play", handlePlay);
- video.removeEventListener("pause", handlePause);
- };
- }, [clipSegments, duration, onSeek]);
+ logger.debug('Position verification:', {
+ target: formatDetailedTime(stopTime),
+ actual: formatDetailedTime(video.currentTime),
+ difference: Math.abs(video.currentTime - stopTime).toFixed(3),
+ });
+ };
- // Handle mouse movement over timeline to remember position
- const handleTimelineMouseMove = (e: React.MouseEvent) => {
- if (!timelineRef.current) return;
+ // Multiple attempts to ensure precision
+ setExactPosition();
+ setTimeout(setExactPosition, 10);
+ setTimeout(setExactPosition, 20);
+ setTimeout(setExactPosition, 50);
- const rect = timelineRef.current.getBoundingClientRect();
- const position = (e.clientX - rect.left) / rect.width;
- const time = position * duration;
+ // Update UI based on where we stopped
+ if (currentSegment) {
+ setSelectedSegmentId(currentSegment.id);
+ setShowEmptySpaceTooltip(false);
+ } else if (nextSegment) {
+ setSelectedSegmentId(nextSegment.id);
+ setShowEmptySpaceTooltip(false);
+ setActiveSegment(nextSegment);
+ } else {
+ setSelectedSegmentId(null);
+ setShowEmptySpaceTooltip(true);
+ setActiveSegment(null);
+ }
- // Ensure time is within bounds
- const boundedTime = Math.max(0, Math.min(duration, time));
-
- // Store position globally for iOS Safari
- if (typeof window !== "undefined") {
- window.lastSeekedPosition = boundedTime;
- }
- };
-
- // Add the dragging state and handlers to the component
-
- // Inside the TimelineControls component, add these new state variables
- const [isDragging, setIsDragging] = useState(false);
- // Add a dragging ref to track state without relying on React's state updates
- const isDraggingRef = useRef(false);
-
- // Add drag handlers to enable dragging the timeline marker
- const startDrag = (e: React.MouseEvent | React.TouchEvent) => {
- // If on mobile device and video hasn't been initialized, don't allow dragging
- if (isIOSUninitialized) {
- return;
- }
-
- e.stopPropagation(); // Don't trigger the timeline click
- e.preventDefault(); // Prevent text selection during drag
-
- setIsDragging(true);
- isDraggingRef.current = true; // Use ref for immediate value access
-
- // Show tooltip immediately when starting to drag
- updateTooltipForPosition(currentTime);
-
- // Handle mouse events
- const handleMouseMove = (moveEvent: MouseEvent) => {
- if (!timelineRef.current || !scrollContainerRef.current) return;
-
- // Calculate the position based on mouse or touch coordinates
- const rect = timelineRef.current.getBoundingClientRect();
- let position;
-
- if (zoomLevel > 1) {
- // When zoomed, account for scroll position
- const scrollLeft = scrollContainerRef.current.scrollLeft;
- const totalWidth = timelineRef.current.clientWidth;
- position = (moveEvent.clientX - rect.left + scrollLeft) / totalWidth;
- } else {
- // Normal calculation for 1x zoom
- position = (moveEvent.clientX - rect.left) / rect.width;
- }
-
- // Constrain position between 0 and 1
- position = Math.max(0, Math.min(1, position));
-
- // Convert to time and seek
- const newTime = position * duration;
-
- // Update both clicked time and display time
- setClickedTime(newTime);
- setDisplayTime(newTime);
-
- // Update tooltip state based on new position
- updateTooltipForPosition(newTime);
-
- // Store position globally for iOS Safari
- if (typeof window !== "undefined") {
- (window as any).lastSeekedPosition = newTime;
- }
-
- // Seek to the new position
- onSeek(newTime);
- };
-
- // Handle mouse up to stop dragging
- const handleMouseUp = () => {
- setIsDragging(false);
- isDraggingRef.current = false; // Update ref immediately
- document.removeEventListener("mousemove", handleMouseMove);
- document.removeEventListener("mouseup", handleMouseUp);
- };
-
- // Add event listeners to track movement and release
- document.addEventListener("mousemove", handleMouseMove);
- document.addEventListener("mouseup", handleMouseUp);
- };
-
- // Handle touch events for mobile devices
- const startTouchDrag = (e: React.TouchEvent) => {
- // If on mobile device and video hasn't been initialized, don't allow dragging
- if (isIOSUninitialized) {
- return;
- }
-
- e.stopPropagation(); // Don't trigger the timeline click
- e.preventDefault(); // Prevent text selection during drag
-
- setIsDragging(true);
- isDraggingRef.current = true; // Use ref for immediate value access
-
- // Show tooltip immediately when starting to drag
- updateTooltipForPosition(currentTime);
-
- // Handle touch move events
- const handleTouchMove = (moveEvent: TouchEvent) => {
- if (!timelineRef.current || !scrollContainerRef.current || !moveEvent.touches[0]) return;
-
- // Calculate the position based on touch coordinates
- const rect = timelineRef.current.getBoundingClientRect();
- let position;
-
- if (zoomLevel > 1) {
- // When zoomed, account for scroll position
- const scrollLeft = scrollContainerRef.current.scrollLeft;
- const totalWidth = timelineRef.current.clientWidth;
- position = (moveEvent.touches[0].clientX - rect.left + scrollLeft) / totalWidth;
- } else {
- // Normal calculation for 1x zoom
- position = (moveEvent.touches[0].clientX - rect.left) / rect.width;
- }
-
- // Constrain position between 0 and 1
- position = Math.max(0, Math.min(1, position));
-
- // Convert to time and seek
- const newTime = position * duration;
-
- // Update both clicked time and display time
- setClickedTime(newTime);
- setDisplayTime(newTime);
-
- // Update tooltip state based on new position
- updateTooltipForPosition(newTime);
-
- // Store position globally for mobile browsers
- if (typeof window !== "undefined") {
- (window as any).lastSeekedPosition = newTime;
- }
-
- // Seek to the new position
- onSeek(newTime);
- };
-
- // Handle touch end to stop dragging
- const handleTouchEnd = () => {
- setIsDragging(false);
- isDraggingRef.current = false; // Update ref immediately
- document.removeEventListener("touchmove", handleTouchMove);
- document.removeEventListener("touchend", handleTouchEnd);
- document.removeEventListener("touchcancel", handleTouchEnd);
- };
-
- // Add event listeners to track movement and release
- document.addEventListener("touchmove", handleTouchMove, {
- passive: false
- });
- document.addEventListener("touchend", handleTouchEnd);
- document.addEventListener("touchcancel", handleTouchEnd);
- };
-
- // Add a useEffect to log the redirect URL whenever it changes
- useEffect(() => {
- if (redirectUrl) {
- logger.debug("Redirect URL updated:", {
- redirectUrl,
- saveType,
- isSuccessModalOpen: showSuccessModal
- });
- }
- }, [redirectUrl, saveType, showSuccessModal]);
-
- // Add a useEffect for auto-redirection
- useEffect(() => {
- let countdownInterval: NodeJS.Timeout;
- let redirectTimeout: NodeJS.Timeout;
-
- if (showSuccessModal && redirectUrl) {
- // Start countdown timer
- let secondsLeft = 10;
-
- // Update the countdown every second
- countdownInterval = setInterval(() => {
- secondsLeft--;
- const countdownElement = document.querySelector(".countdown");
- if (countdownElement) {
- countdownElement.textContent = secondsLeft.toString();
- }
-
- if (secondsLeft <= 0) {
- clearInterval(countdownInterval);
- }
- }, 1000);
-
- // Set redirect timeout
- redirectTimeout = setTimeout(() => {
- // Reset unsaved changes flag before navigating away
- if (onSave) onSave();
-
- // Redirect to the URL
- logger.debug("Automatically redirecting to:", redirectUrl);
- window.location.href = redirectUrl;
- }, 10000); // 10 seconds
- }
-
- // Cleanup on unmount or when success modal closes
- return () => {
- if (countdownInterval) clearInterval(countdownInterval);
- if (redirectTimeout) clearTimeout(redirectTimeout);
- };
- }, [showSuccessModal, redirectUrl, onSave]);
-
- return (
-
- {/* Current Timecode with Milliseconds */}
-
-
- Timeline
-
-
- Total Segments:{" "}
-
- {formatDetailedTime(
- clipSegments.reduce((sum, segment) => sum + (segment.endTime - segment.startTime), 0)
- )}
-
-
-
-
- {/* Timeline Container with Scrollable Wrapper */}
-
1 ? "auto" : "hidden"
- }}
- >
-
- {/* Current Position Marker */}
-
- {/* Top circle for popup toggle */}
-
{
- // Prevent event propagation to avoid triggering the timeline container click
- e.stopPropagation();
-
- // For ensuring accurate segment detection, refresh clipSegments first
- // This helps when clicking right after creating a new segment
- const refreshedSegmentAtCurrentTime = clipSegments.find(
- (seg) => currentTime >= seg.startTime && currentTime <= seg.endTime
- );
-
- // Toggle tooltip visibility with a single click
- if (selectedSegmentId || showEmptySpaceTooltip) {
- // When tooltip is open and - icon is clicked, simply close the tooltips
- logger.debug("Closing tooltip");
- setSelectedSegmentId(null);
- setShowEmptySpaceTooltip(false);
- // Don't reopen the tooltip - just leave it closed
- return;
- } else {
- // Use our improved tooltip position logic
- updateTooltipForPosition(currentTime);
- logger.debug("Opening tooltip at:", formatDetailedTime(currentTime));
+ // Remove our boundary checker
+ video.removeEventListener('timeupdate', checkBoundary);
+ setIsPlaying(false);
+ setIsPlayingSegment(false);
+ // Reset continuePastBoundary flag when stopping at boundary
+ setContinuePastBoundary(false);
+ return;
}
- }}
- >
-
- {selectedSegmentId || showEmptySpaceTooltip ? "-" : "+"}
-
+ };
+
+ // Start our boundary checker
+ video.addEventListener('timeupdate', checkBoundary);
+
+ // Start playing
+ video
+ .play()
+ .then(() => {
+ setIsPlaying(true);
+ setIsPlayingSegment(true);
+ logger.debug('Playback started:', {
+ from: formatDetailedTime(currentPosition),
+ to: formatDetailedTime(stopTime),
+ currentSegment: currentSegment ? `Segment ${currentSegment.id}` : 'None',
+ nextSegment: nextSegment ? `Segment ${nextSegment.id}` : 'None',
+ });
+ })
+ .catch((err) => {
+ console.error('Error playing video:', err);
+ });
+ };
+
+ const handlePause = () => {
+ logger.debug('Video paused from external control');
+ setIsPlayingSegment(false);
+ };
+
+ video.addEventListener('play', handlePlay);
+ video.addEventListener('pause', handlePause);
+
+ return () => {
+ video.removeEventListener('play', handlePlay);
+ video.removeEventListener('pause', handlePause);
+ };
+ }, [clipSegments, duration, onSeek]);
+
+ // Handle mouse movement over timeline to remember position
+ const handleTimelineMouseMove = (e: React.MouseEvent
) => {
+ if (!timelineRef.current) return;
+
+ const rect = timelineRef.current.getBoundingClientRect();
+ const position = (e.clientX - rect.left) / rect.width;
+ const time = position * duration;
+
+ // Ensure time is within bounds
+ const boundedTime = Math.max(0, Math.min(duration, time));
+
+ // Store position globally for iOS Safari
+ if (typeof window !== 'undefined') {
+ window.lastSeekedPosition = boundedTime;
+ }
+ };
+
+ // Add the dragging state and handlers to the component
+
+ // Inside the TimelineControls component, add these new state variables
+ const [isDragging, setIsDragging] = useState(false);
+ // Add a dragging ref to track state without relying on React's state updates
+ const isDraggingRef = useRef(false);
+
+ // Add drag handlers to enable dragging the timeline marker
+ const startDrag = (e: React.MouseEvent | React.TouchEvent) => {
+ // If on mobile device and video hasn't been initialized, don't allow dragging
+ if (isIOSUninitialized) {
+ return;
+ }
+
+ e.stopPropagation(); // Don't trigger the timeline click
+ e.preventDefault(); // Prevent text selection during drag
+
+ setIsDragging(true);
+ isDraggingRef.current = true; // Use ref for immediate value access
+
+ // Show tooltip immediately when starting to drag
+ updateTooltipForPosition(currentTime);
+
+ // Handle mouse events
+ const handleMouseMove = (moveEvent: MouseEvent) => {
+ if (!timelineRef.current || !scrollContainerRef.current) return;
+
+ // Calculate the position based on mouse or touch coordinates
+ const rect = timelineRef.current.getBoundingClientRect();
+ let position;
+
+ if (zoomLevel > 1) {
+ // When zoomed, account for scroll position
+ const scrollLeft = scrollContainerRef.current.scrollLeft;
+ const totalWidth = timelineRef.current.clientWidth;
+ position = (moveEvent.clientX - rect.left + scrollLeft) / totalWidth;
+ } else {
+ // Normal calculation for 1x zoom
+ position = (moveEvent.clientX - rect.left) / rect.width;
+ }
+
+ // Constrain position between 0 and 1
+ position = Math.max(0, Math.min(1, position));
+
+ // Convert to time and seek
+ const newTime = position * duration;
+
+ // Update both clicked time and display time
+ setClickedTime(newTime);
+ setDisplayTime(newTime);
+
+ // Update tooltip state based on new position
+ updateTooltipForPosition(newTime);
+
+ // Store position globally for iOS Safari
+ if (typeof window !== 'undefined') {
+ (window as any).lastSeekedPosition = newTime;
+ }
+
+ // Seek to the new position
+ onSeek(newTime);
+ };
+
+ // Handle mouse up to stop dragging
+ const handleMouseUp = () => {
+ setIsDragging(false);
+ isDraggingRef.current = false; // Update ref immediately
+ document.removeEventListener('mousemove', handleMouseMove);
+ document.removeEventListener('mouseup', handleMouseUp);
+ };
+
+ // Add event listeners to track movement and release
+ document.addEventListener('mousemove', handleMouseMove);
+ document.addEventListener('mouseup', handleMouseUp);
+ };
+
+ // Handle touch events for mobile devices
+ const startTouchDrag = (e: React.TouchEvent) => {
+ // If on mobile device and video hasn't been initialized, don't allow dragging
+ if (isIOSUninitialized) {
+ return;
+ }
+
+ e.stopPropagation(); // Don't trigger the timeline click
+ e.preventDefault(); // Prevent text selection during drag
+
+ setIsDragging(true);
+ isDraggingRef.current = true; // Use ref for immediate value access
+
+ // Show tooltip immediately when starting to drag
+ updateTooltipForPosition(currentTime);
+
+ // Handle touch move events
+ const handleTouchMove = (moveEvent: TouchEvent) => {
+ if (!timelineRef.current || !scrollContainerRef.current || !moveEvent.touches[0]) return;
+
+ // Calculate the position based on touch coordinates
+ const rect = timelineRef.current.getBoundingClientRect();
+ let position;
+
+ if (zoomLevel > 1) {
+ // When zoomed, account for scroll position
+ const scrollLeft = scrollContainerRef.current.scrollLeft;
+ const totalWidth = timelineRef.current.clientWidth;
+ position = (moveEvent.touches[0].clientX - rect.left + scrollLeft) / totalWidth;
+ } else {
+ // Normal calculation for 1x zoom
+ position = (moveEvent.touches[0].clientX - rect.left) / rect.width;
+ }
+
+ // Constrain position between 0 and 1
+ position = Math.max(0, Math.min(1, position));
+
+ // Convert to time and seek
+ const newTime = position * duration;
+
+ // Update both clicked time and display time
+ setClickedTime(newTime);
+ setDisplayTime(newTime);
+
+ // Update tooltip state based on new position
+ updateTooltipForPosition(newTime);
+
+ // Store position globally for mobile browsers
+ if (typeof window !== 'undefined') {
+ (window as any).lastSeekedPosition = newTime;
+ }
+
+ // Seek to the new position
+ onSeek(newTime);
+ };
+
+ // Handle touch end to stop dragging
+ const handleTouchEnd = () => {
+ setIsDragging(false);
+ isDraggingRef.current = false; // Update ref immediately
+ document.removeEventListener('touchmove', handleTouchMove);
+ document.removeEventListener('touchend', handleTouchEnd);
+ document.removeEventListener('touchcancel', handleTouchEnd);
+ };
+
+ // Add event listeners to track movement and release
+ document.addEventListener('touchmove', handleTouchMove, {
+ passive: false,
+ });
+ document.addEventListener('touchend', handleTouchEnd);
+ document.addEventListener('touchcancel', handleTouchEnd);
+ };
+
+ // Add a useEffect to log the redirect URL whenever it changes
+ useEffect(() => {
+ if (redirectUrl) {
+ logger.debug('Redirect URL updated:', {
+ redirectUrl,
+ saveType,
+ isSuccessModalOpen: showSuccessModal,
+ });
+ }
+ }, [redirectUrl, saveType, showSuccessModal]);
+
+ // Add a useEffect for auto-redirection
+ useEffect(() => {
+ let countdownInterval: NodeJS.Timeout;
+ let redirectTimeout: NodeJS.Timeout;
+
+ if (showSuccessModal && redirectUrl) {
+ // Start countdown timer
+ let secondsLeft = 10;
+
+ // Update the countdown every second
+ countdownInterval = setInterval(() => {
+ secondsLeft--;
+ const countdownElement = document.querySelector('.countdown');
+ if (countdownElement) {
+ countdownElement.textContent = secondsLeft.toString();
+ }
+
+ if (secondsLeft <= 0) {
+ clearInterval(countdownInterval);
+ }
+ }, 1000);
+
+ // Set redirect timeout
+ redirectTimeout = setTimeout(() => {
+ // Reset unsaved changes flag before navigating away
+ if (onSave) onSave();
+
+ // Redirect to the URL
+ logger.debug('Automatically redirecting to:', redirectUrl);
+ window.location.href = redirectUrl;
+ }, 10000); // 10 seconds
+ }
+
+ // Cleanup on unmount or when success modal closes
+ return () => {
+ if (countdownInterval) clearInterval(countdownInterval);
+ if (redirectTimeout) clearTimeout(redirectTimeout);
+ };
+ }, [showSuccessModal, redirectUrl, onSave]);
+
+ return (
+
+ {/* Current Timecode with Milliseconds */}
+
+
+ Timeline
+
+
+ Total Segments:{' '}
+
+ {formatDetailedTime(
+ clipSegments.reduce((sum, segment) => sum + (segment.endTime - segment.startTime), 0)
+ )}
+
+
- {/* Bottom circle for dragging */}
- {isPlayingSegments ? null : (
-
- â‹®
-
- )}
-
-
- {/* Trim Line Markers - hidden when segments exist */}
- {clipSegments.length === 0 && (
- <>
-
-
- >
- )}
-
- {/* Clip Segments */}
- {renderClipSegments()}
-
- {/* Split Points */}
- {renderSplitPoints()}
-
- {/* Thumbnails */}
- {renderThumbnails()}
-
- {/* Segment Tooltip */}
- {selectedSegmentId !== null && (
+ {/* Timeline Container with Scrollable Wrapper */}
{
- if (isPlayingSegments) {
- e.stopPropagation();
- e.preventDefault();
- }
- }}
+ ref={scrollContainerRef}
+ className={`timeline-scroll-container ${isPlayingSegments ? 'segments-playback-mode' : ''}`}
+ style={{
+ overflow: zoomLevel > 1 ? 'auto' : 'hidden',
+ }}
>
- {/* First row with time adjustment buttons */}
-
-
- -50ms
-
{
- if (isPlayingSegments) {
- e.stopPropagation();
- e.preventDefault();
- }
- }}
- >
- {formatDetailedTime(displayTime)}
-
-
- +50ms
-
-
-
- {/* Second row with action buttons */}
-
-
{
- e.stopPropagation();
- // Call the delete segment function with the current segment ID
- const deleteEvent = new CustomEvent("delete-segment", {
- detail: {
- segmentId: selectedSegmentId
- }
- });
- document.dispatchEvent(deleteEvent);
- // We don't need to manually close the tooltip - our event handler will take care of updating the UI
- }}
- >
-
-
-
-
-
-
-
-
{
- e.stopPropagation();
- // Call the split segment function with the current segment ID and time
- const splitEvent = new CustomEvent("split-segment", {
- detail: {
- segmentId: selectedSegmentId,
- time: clickedTime
- }
- });
- document.dispatchEvent(splitEvent);
- // Keep the tooltip open
- // setSelectedSegmentId(null);
- }}
- >
-
-
-
-
-
-
-
-
-
{
- e.stopPropagation();
-
- // Find the selected segment
- const segment = clipSegments.find((seg) => seg.id === selectedSegmentId);
- if (segment && videoRef.current) {
- // Enable continuePastBoundary flag when user explicitly clicks play
- // This will allow playback to continue even if we're at segment boundary
- setContinuePastBoundary(true);
- logger.debug(
- "Setting continuePastBoundary=true to allow playback through boundaries"
- );
-
- // Special handling for when we're at the end of the segment already
- // Check if we're at or extremely close to the end boundary
- if (Math.abs(videoRef.current.currentTime - segment.endTime) < 0.05) {
- logger.debug(
- `Already at end boundary (${formatDetailedTime(
- videoRef.current.currentTime
- )}), nudging position back slightly`
- );
- const newPosition = Math.max(segment.startTime, segment.endTime - 0.1); // Move 100ms back from end
- videoRef.current.currentTime = newPosition;
- onSeek(newPosition);
- setClickedTime(newPosition);
- logger.debug(`Position adjusted to ${formatDetailedTime(newPosition)}`);
- } else {
- // Normal case - just seek to the start of the segment
- onSeek(segment.startTime);
- setClickedTime(segment.startTime);
- }
-
- // Set active segment for boundary checking before playing
- setActiveSegment(segment);
-
- // Start playing from the beginning of the segment with proper promise handling
- videoRef.current
- .play()
- .then(() => {
- setIsPlayingSegment(true);
- logger.debug("Playing from beginning of segment");
- })
- .catch((err) => {
- console.error("Error playing from beginning:", err);
- });
- }
-
- // Don't close the tooltip
- }}
- >
-
-
- {/*
+ {/* Current Position Marker */}
+
+ {/* Top circle for popup toggle */}
+
{
+ // Prevent event propagation to avoid triggering the timeline container click
+ e.stopPropagation();
+
+ // For ensuring accurate segment detection, refresh clipSegments first
+ // This helps when clicking right after creating a new segment
+ const refreshedSegmentAtCurrentTime = clipSegments.find(
+ (seg) => currentTime >= seg.startTime && currentTime <= seg.endTime
+ );
+
+ // Toggle tooltip visibility with a single click
+ if (selectedSegmentId || showEmptySpaceTooltip) {
+ // When tooltip is open and - icon is clicked, simply close the tooltips
+ logger.debug('Closing tooltip');
+ setSelectedSegmentId(null);
+ setShowEmptySpaceTooltip(false);
+ // Don't reopen the tooltip - just leave it closed
+ return;
+ } else {
+ // Use our improved tooltip position logic
+ updateTooltipForPosition(currentTime);
+ logger.debug('Opening tooltip at:', formatDetailedTime(currentTime));
+ }
+ }}
+ >
+
+ {selectedSegmentId || showEmptySpaceTooltip ? '-' : '+'}
+
+
+
+ {/* Bottom circle for dragging */}
+ {isPlayingSegments ? null : (
+
+ â‹®
+
+ )}
+
+
+ {/* Trim Line Markers - hidden when segments exist */}
+ {clipSegments.length === 0 && (
+ <>
+
+
+ >
+ )}
+
+ {/* Clip Segments */}
+ {renderClipSegments()}
+
+ {/* Split Points */}
+ {renderSplitPoints()}
+
+ {/* Thumbnails */}
+ {renderThumbnails()}
+
+ {/* Segment Tooltip */}
+ {selectedSegmentId !== null && (
+ {
+ if (isPlayingSegments) {
+ e.stopPropagation();
+ e.preventDefault();
+ }
+ }}
+ >
+ {/* First row with time adjustment buttons */}
+
+
+ -50ms
+
+
{
+ if (isPlayingSegments) {
+ e.stopPropagation();
+ e.preventDefault();
+ }
+ }}
+ >
+ {formatDetailedTime(displayTime)}
+
+
+ +50ms
+
+
+
+ {/* Second row with action buttons */}
+
+
{
+ e.stopPropagation();
+ // Call the delete segment function with the current segment ID
+ const deleteEvent = new CustomEvent('delete-segment', {
+ detail: {
+ segmentId: selectedSegmentId,
+ },
+ });
+ document.dispatchEvent(deleteEvent);
+ // We don't need to manually close the tooltip - our event handler will take care of updating the UI
+ }}
+ >
+
+
+
+
+
+
+
+
{
+ e.stopPropagation();
+ // Call the split segment function with the current segment ID and time
+ const splitEvent = new CustomEvent('split-segment', {
+ detail: {
+ segmentId: selectedSegmentId,
+ time: clickedTime,
+ },
+ });
+ document.dispatchEvent(splitEvent);
+ // Keep the tooltip open
+ // setSelectedSegmentId(null);
+ }}
+ >
+
+
+
+
+
+
+
+
+
{
+ e.stopPropagation();
+
+ // Find the selected segment
+ const segment = clipSegments.find((seg) => seg.id === selectedSegmentId);
+ if (segment && videoRef.current) {
+ // Enable continuePastBoundary flag when user explicitly clicks play
+ // This will allow playback to continue even if we're at segment boundary
+ setContinuePastBoundary(true);
+ logger.debug(
+ 'Setting continuePastBoundary=true to allow playback through boundaries'
+ );
+
+ // Special handling for when we're at the end of the segment already
+ // Check if we're at or extremely close to the end boundary
+ if (Math.abs(videoRef.current.currentTime - segment.endTime) < 0.05) {
+ logger.debug(
+ `Already at end boundary (${formatDetailedTime(
+ videoRef.current.currentTime
+ )}), nudging position back slightly`
+ );
+ const newPosition = Math.max(segment.startTime, segment.endTime - 0.1); // Move 100ms back from end
+ videoRef.current.currentTime = newPosition;
+ onSeek(newPosition);
+ setClickedTime(newPosition);
+ logger.debug(`Position adjusted to ${formatDetailedTime(newPosition)}`);
+ } else {
+ // Normal case - just seek to the start of the segment
+ onSeek(segment.startTime);
+ setClickedTime(segment.startTime);
+ }
+
+ // Set active segment for boundary checking before playing
+ setActiveSegment(segment);
+
+ // Start playing from the beginning of the segment with proper promise handling
+ videoRef.current
+ .play()
+ .then(() => {
+ setIsPlayingSegment(true);
+ logger.debug('Playing from beginning of segment');
+ })
+ .catch((err) => {
+ console.error('Error playing from beginning:', err);
+ });
+ }
+
+ // Don't close the tooltip
+ }}
+ >
+
+
+ {/*
{
@@ -2869,622 +2810,654 @@ const TimelineControls = ({
)}
*/}
- {/* Play/Pause button for empty space - Same as main play/pause button */}
-
{
- e.stopPropagation();
+ {/* Play/Pause button for empty space - Same as main play/pause button */}
+ {
+ e.stopPropagation();
- if (isPlaying) {
- // If playing, just pause
- if (videoRef.current) {
- videoRef.current.pause();
- setIsPlayingSegment(false);
- setContinuePastBoundary(false);
- }
- } else {
- onPlayPause();
- }
- }}
- >
- {isPlaying ? (
-
- ) : (
-
- )}
-
+ if (isPlaying) {
+ // If playing, just pause
+ if (videoRef.current) {
+ videoRef.current.pause();
+ setIsPlayingSegment(false);
+ setContinuePastBoundary(false);
+ }
+ } else {
+ onPlayPause();
+ }
+ }}
+ >
+ {isPlaying ? (
+
+ ) : (
+
+ )}
+
-
{
- e.stopPropagation();
+ {
+ e.stopPropagation();
- // Find the selected segment and update its start time
- const segment = clipSegments.find((seg) => seg.id === selectedSegmentId);
- if (segment) {
- // Create updated segments with new start time for selected segment
- const updatedSegments = clipSegments.map((seg) => {
- if (seg.id === selectedSegmentId) {
- return {
- ...seg,
- startTime:
- clickedTime < seg.endTime - 0.5 ? clickedTime : seg.endTime - 0.5
- };
- }
- return seg;
- });
+ // Find the selected segment and update its start time
+ const segment = clipSegments.find((seg) => seg.id === selectedSegmentId);
+ if (segment) {
+ // Create updated segments with new start time for selected segment
+ const updatedSegments = clipSegments.map((seg) => {
+ if (seg.id === selectedSegmentId) {
+ return {
+ ...seg,
+ startTime:
+ clickedTime < seg.endTime - 0.5
+ ? clickedTime
+ : seg.endTime - 0.5,
+ };
+ }
+ return seg;
+ });
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true, // Ensure this specific action is recorded in history
- action: "adjust_start_time"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug("Set in clicked");
- }
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true, // Ensure this specific action is recorded in history
+ action: 'adjust_start_time',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug('Set in clicked');
+ }
- // Keep tooltip open
- // setSelectedSegmentId(null);
- }}
- >
-
-
- {
- e.stopPropagation();
+ // Keep tooltip open
+ // setSelectedSegmentId(null);
+ }}
+ >
+
+
+ {
+ e.stopPropagation();
- // Find the selected segment and update its end time
- const segment = clipSegments.find((seg) => seg.id === selectedSegmentId);
- if (segment) {
- // Create updated segments with new end time for selected segment
- const updatedSegments = clipSegments.map((seg) => {
- if (seg.id === selectedSegmentId) {
- return {
- ...seg,
- endTime:
- clickedTime > seg.startTime + 0.5 ? clickedTime : seg.startTime + 0.5
- };
- }
- return seg;
- });
+ // Find the selected segment and update its end time
+ const segment = clipSegments.find((seg) => seg.id === selectedSegmentId);
+ if (segment) {
+ // Create updated segments with new end time for selected segment
+ const updatedSegments = clipSegments.map((seg) => {
+ if (seg.id === selectedSegmentId) {
+ return {
+ ...seg,
+ endTime:
+ clickedTime > seg.startTime + 0.5
+ ? clickedTime
+ : seg.startTime + 0.5,
+ };
+ }
+ return seg;
+ });
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true, // Ensure this specific action is recorded in history
- action: "adjust_end_time"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug("Set out clicked");
- }
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true, // Ensure this specific action is recorded in history
+ action: 'adjust_end_time',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug('Set out clicked');
+ }
- // Keep the tooltip open
- // setSelectedSegmentId(null);
- }}
- >
-
-
-
-
- )}
+ // Keep the tooltip open
+ // setSelectedSegmentId(null);
+ }}
+ >
+
+
+
+
+ )}
- {/* Empty space tooltip - positioned absolutely within timeline container */}
- {showEmptySpaceTooltip && selectedSegmentId === null && (
- {
- if (isPlayingSegments) {
- e.stopPropagation();
- e.preventDefault();
- }
- }}
- >
- {/* First row with time adjustment buttons - same as segment tooltip */}
-
-
- -50ms
-
-
{
- if (isPlayingSegments) {
- e.stopPropagation();
- e.preventDefault();
- }
- }}
- >
- {formatDetailedTime(clickedTime)}
-
-
- +50ms
-
-
-
- {/* Second row with action buttons similar to segment tooltip */}
-
- {/* New segment button - Moved to first position */}
-
{
- e.stopPropagation();
-
- // Only create if we have at least 0.5 seconds of space
- if (availableSegmentDuration < 0.5) {
- // Not enough space, do nothing
- return;
- }
-
- // Create a new segment with the calculated available duration
- const segmentStartTime = clickedTime;
- const segmentEndTime = segmentStartTime + availableSegmentDuration;
-
- // Create the new segment with a generic name
- const newSegment: Segment = {
- id: Date.now(),
- name: `segment`,
- startTime: segmentStartTime,
- endTime: segmentEndTime,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
-
- // Add the new segment to existing segments
- const updatedSegments = [...clipSegments, newSegment];
-
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true, // Explicitly record this action in history
- action: "create_segment"
- }
- });
- document.dispatchEvent(updateEvent);
-
- // Close empty space tooltip
- setShowEmptySpaceTooltip(false);
-
- // After creating the segment, wait a short time for the state to update
- setTimeout(() => {
- // The newly created segment is the last one in the array with the ID we just assigned
- const createdSegment = updatedSegments[updatedSegments.length - 1];
-
- if (createdSegment) {
- // Set this segment as selected to show its tooltip
- setSelectedSegmentId(createdSegment.id);
- logger.debug("Created and selected new segment:", createdSegment.id);
- }
- }, 100); // Small delay to ensure state is updated
- }}
- >
-
-
-
-
-
- New
-
-
- {/* Go to start button - play from beginning of cutaway (until next segment) */}
-
{
- e.stopPropagation();
-
- if (videoRef.current) {
- // Find cutaway boundaries (current position is somewhere in the cutaway)
- const currentTime = clickedTime;
-
- // Enable continuePastBoundary flag when user explicitly clicks play
- // This will allow playback to continue even if we're at segment boundary
- setContinuePastBoundary(true);
- logger.debug(
- "Setting continuePastBoundary=true to allow playback through boundaries"
- );
-
- // For start, find the previous segment's end or use video start (0)
- const sortedSegments = [...clipSegments].sort(
- (a, b) => a.startTime - b.startTime
- );
-
- // Find the previous segment (one that ends before the current time)
- const previousSegment = [...sortedSegments]
- .reverse()
- .find((seg) => seg.endTime < currentTime);
-
- // Start from either previous segment end or beginning of video
- // Add a small offset (0.025 second = 25ms) to ensure we're definitely past the segment boundary
- const startTime = previousSegment ? previousSegment.endTime + 0.025 : 0;
-
- // For end, find the next segment after the current position
- // Since we're looking for the boundary of this empty space, we need to find the
- // segment that starts after our current position
- const nextSegment = sortedSegments.find((seg) => seg.startTime > currentTime);
-
- // Define end boundary (either next segment start or video end)
- const endTime = nextSegment ? nextSegment.startTime : duration;
-
- // Create a virtual "segment" for the cutaway area
- const cutawaySegment: Segment = {
- id: -999, // Use a unique negative ID to indicate a virtual segment
- name: "Cutaway",
- startTime: startTime,
- endTime: endTime,
- thumbnail: ""
- };
-
- // Seek to the start of the cutaway (true beginning of this cutaway area)
- onSeek(startTime);
- setClickedTime(startTime);
-
- // IMPORTANT: First reset isPlayingSegment to false to ensure clean state
- setIsPlayingSegment(false);
-
- // Then set active segment for boundary checking
- // We use setTimeout to ensure this happens in the next tick
- // after the isPlayingSegment value is updated
- setTimeout(() => {
- setActiveSegment(cutawaySegment);
- }, 0);
-
- // Add a manual boundary check specifically for cutaway playback
- // This ensures we detect when we reach the next segment's start
- const checkCutawayBoundary = () => {
- if (!videoRef.current) return;
-
- // Check if we've entered a segment (i.e., reached a boundary)
- const currentPosition = videoRef.current.currentTime;
- const segments = [...clipSegments].sort(
- (a, b) => a.startTime - b.startTime
- );
-
- // Find the next segment we're approaching - use a wider detection range
- // to catch the boundary earlier
- const nextSegment = segments.find(
- (seg) => seg.startTime > currentPosition - 0.3
- );
-
- // We need to detect boundaries much earlier to allow for time to react
- // This is a key fix - we need to detect the boundary BEFORE we reach it
- // But don't stop if we're in continuePastBoundary mode
- const shouldStop =
- nextSegment &&
- currentPosition >= nextSegment.startTime - 0.25 &&
- currentPosition <= nextSegment.startTime + 0.1 &&
- !continuePastBoundary;
-
- // Add logging to show boundary check decisions
- if (
- nextSegment &&
- currentPosition >= nextSegment.startTime - 0.25 &&
- currentPosition <= nextSegment.startTime + 0.1
- ) {
- logger.debug(
- `Approaching boundary at ${formatDetailedTime(
- nextSegment.startTime
- )}, continuePastBoundary=${continuePastBoundary}, willStop=${shouldStop}`
- );
- }
-
- // Also check if we've entered a different segment - we need to detect this too
- const segmentAtCurrentTime = segments.find(
- (seg) =>
- currentPosition >= seg.startTime && currentPosition <= seg.endTime
- );
-
- // If we've moved directly into a segment during playback, we need to update the active segment
- if (segmentAtCurrentTime && activeSegment?.id !== segmentAtCurrentTime.id) {
- logger.debug(
- `Entered segment ${segmentAtCurrentTime.id} during cutaway playback`
- );
- setActiveSegment(segmentAtCurrentTime);
- setSelectedSegmentId(segmentAtCurrentTime.id);
- setShowEmptySpaceTooltip(false);
-
- // Remove our boundary checker since we're now in a standard segment
- videoRef.current.removeEventListener("timeupdate", checkCutawayBoundary);
-
- // Reset continuation flags
- setContinuePastBoundary(false);
- sessionStorage.removeItem("continuingPastSegment");
- return;
- }
-
- // If we've entered a segment, stop at its boundary
- if (shouldStop && nextSegment) {
- logger.debug(
- `CUTAWAY MANUAL BOUNDARY CHECK: Current position ${formatDetailedTime(
- currentPosition
- )} approaching segment at ${formatDetailedTime(
- nextSegment.startTime
- )} (distance: ${Math.abs(
- currentPosition - nextSegment.startTime
- ).toFixed(3)}s) - STOPPING`
- );
-
- videoRef.current.pause();
- // Force exact time position with high precision and multiple attempts
- setTimeout(() => {
- if (videoRef.current) {
- // First seek directly to exact start time, no offset
- videoRef.current.currentTime = nextSegment.startTime;
- // Update UI immediately to match video position
- onSeek(nextSegment.startTime);
- // Also update tooltip time displays
- setDisplayTime(nextSegment.startTime);
- setClickedTime(nextSegment.startTime);
-
- // Reset continuePastBoundary when stopping at a boundary
- setContinuePastBoundary(false);
-
- // Update tooltip to show the segment at the boundary
- setSelectedSegmentId(nextSegment.id);
- setShowEmptySpaceTooltip(false);
- setActiveSegment(nextSegment);
-
- // Force multiple adjustments to ensure exact precision
- const verifyPosition = () => {
- if (videoRef.current) {
- // Always force the exact time in every verification
- videoRef.current.currentTime = nextSegment.startTime;
-
- // Make sure we update the UI to reflect the corrected position
- onSeek(nextSegment.startTime);
-
- // Update the displayTime and clickedTime state to match exact position
- setDisplayTime(nextSegment.startTime);
- setClickedTime(nextSegment.startTime);
-
- logger.debug(
- `Position corrected to exact segment boundary: ${formatDetailedTime(
- videoRef.current.currentTime
- )} (target: ${formatDetailedTime(nextSegment.startTime)})`
- );
+ {/* Empty space tooltip - positioned absolutely within timeline container */}
+ {showEmptySpaceTooltip && selectedSegmentId === null && (
+ {
+ if (isPlayingSegments) {
+ e.stopPropagation();
+ e.preventDefault();
}
- };
+ }}
+ >
+ {/* First row with time adjustment buttons - same as segment tooltip */}
+
+
+ -50ms
+
+
{
+ if (isPlayingSegments) {
+ e.stopPropagation();
+ e.preventDefault();
+ }
+ }}
+ >
+ {formatDetailedTime(clickedTime)}
+
+
+ +50ms
+
+
- // Apply multiple correction attempts with increasing delays
- setTimeout(verifyPosition, 10); // Immediate correction
- setTimeout(verifyPosition, 20); // First correction
- setTimeout(verifyPosition, 50); // Second correction
- setTimeout(verifyPosition, 100); // Third correction
- setTimeout(verifyPosition, 200); // Final correction
+ {/* Second row with action buttons similar to segment tooltip */}
+
+ {/* New segment button - Moved to first position */}
+
{
+ e.stopPropagation();
- // Also add event listeners to ensure position is corrected whenever video state changes
- videoRef.current.addEventListener("seeked", verifyPosition);
- videoRef.current.addEventListener("canplay", verifyPosition);
- videoRef.current.addEventListener("waiting", verifyPosition);
+ // Only create if we have at least 0.5 seconds of space
+ if (availableSegmentDuration < 0.5) {
+ // Not enough space, do nothing
+ return;
+ }
- // Remove these event listeners after a short time
- setTimeout(() => {
- if (videoRef.current) {
- videoRef.current.removeEventListener("seeked", verifyPosition);
- videoRef.current.removeEventListener("canplay", verifyPosition);
- videoRef.current.removeEventListener("waiting", verifyPosition);
- }
- }, 300);
- }
- }, 10);
- setIsPlayingSegment(false);
- setActiveSegment(null);
+ // Create a new segment with the calculated available duration
+ const segmentStartTime = clickedTime;
+ const segmentEndTime = segmentStartTime + availableSegmentDuration;
- // Remove our boundary checker
- videoRef.current.removeEventListener("timeupdate", checkCutawayBoundary);
- return;
- }
- };
+ // Create the new segment with a generic name
+ const newSegment: Segment = {
+ id: Date.now(),
+ name: `segment`,
+ startTime: segmentStartTime,
+ endTime: segmentEndTime,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Start our manual boundary checker
- videoRef.current.addEventListener("timeupdate", checkCutawayBoundary);
+ // Add the new segment to existing segments
+ const updatedSegments = [...clipSegments, newSegment];
- // Start playing with proper promise handling - use setTimeout to ensure
- // that our activeSegment setting has had time to take effect
- setTimeout(() => {
- if (videoRef.current) {
- // Now start playback
- videoRef.current
- .play()
- .then(() => {
- setIsPlayingSegment(true);
- logger.debug(
- "CUTAWAY PLAYBACK STARTED:",
- formatDetailedTime(startTime),
- "to",
- formatDetailedTime(endTime),
- previousSegment
- ? `(after segment ${
- previousSegment.id
- }, offset +25ms from ${formatDetailedTime(
- previousSegment.endTime
- )})`
- : "(from video start)",
- nextSegment
- ? `(will stop at segment ${nextSegment.id})`
- : "(will play to end)"
- );
- })
- .catch((err) => {
- console.error("Error playing cutaway:", err);
- });
- }
- }, 50);
- }
- }}
- >
-
-
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true, // Explicitly record this action in history
+ action: 'create_segment',
+ },
+ });
+ document.dispatchEvent(updateEvent);
- {/* Play/Pause button for empty space */}
- {/*
{
+ // The newly created segment is the last one in the array with the ID we just assigned
+ const createdSegment = updatedSegments[updatedSegments.length - 1];
+
+ if (createdSegment) {
+ // Set this segment as selected to show its tooltip
+ setSelectedSegmentId(createdSegment.id);
+ logger.debug('Created and selected new segment:', createdSegment.id);
+ }
+ }, 100); // Small delay to ensure state is updated
+ }}
+ >
+
+
+
+
+
+ New
+
+
+ {/* Go to start button - play from beginning of cutaway (until next segment) */}
+
{
+ e.stopPropagation();
+
+ if (videoRef.current) {
+ // Find cutaway boundaries (current position is somewhere in the cutaway)
+ const currentTime = clickedTime;
+
+ // Enable continuePastBoundary flag when user explicitly clicks play
+ // This will allow playback to continue even if we're at segment boundary
+ setContinuePastBoundary(true);
+ logger.debug(
+ 'Setting continuePastBoundary=true to allow playback through boundaries'
+ );
+
+ // For start, find the previous segment's end or use video start (0)
+ const sortedSegments = [...clipSegments].sort(
+ (a, b) => a.startTime - b.startTime
+ );
+
+ // Find the previous segment (one that ends before the current time)
+ const previousSegment = [...sortedSegments]
+ .reverse()
+ .find((seg) => seg.endTime < currentTime);
+
+ // Start from either previous segment end or beginning of video
+ // Add a small offset (0.025 second = 25ms) to ensure we're definitely past the segment boundary
+ const startTime = previousSegment ? previousSegment.endTime + 0.025 : 0;
+
+ // For end, find the next segment after the current position
+ // Since we're looking for the boundary of this empty space, we need to find the
+ // segment that starts after our current position
+ const nextSegment = sortedSegments.find(
+ (seg) => seg.startTime > currentTime
+ );
+
+ // Define end boundary (either next segment start or video end)
+ const endTime = nextSegment ? nextSegment.startTime : duration;
+
+ // Create a virtual "segment" for the cutaway area
+ const cutawaySegment: Segment = {
+ id: -999, // Use a unique negative ID to indicate a virtual segment
+ name: 'Cutaway',
+ startTime: startTime,
+ endTime: endTime,
+ thumbnail: '',
+ };
+
+ // Seek to the start of the cutaway (true beginning of this cutaway area)
+ onSeek(startTime);
+ setClickedTime(startTime);
+
+ // IMPORTANT: First reset isPlayingSegment to false to ensure clean state
+ setIsPlayingSegment(false);
+
+ // Then set active segment for boundary checking
+ // We use setTimeout to ensure this happens in the next tick
+ // after the isPlayingSegment value is updated
+ setTimeout(() => {
+ setActiveSegment(cutawaySegment);
+ }, 0);
+
+ // Add a manual boundary check specifically for cutaway playback
+ // This ensures we detect when we reach the next segment's start
+ const checkCutawayBoundary = () => {
+ if (!videoRef.current) return;
+
+ // Check if we've entered a segment (i.e., reached a boundary)
+ const currentPosition = videoRef.current.currentTime;
+ const segments = [...clipSegments].sort(
+ (a, b) => a.startTime - b.startTime
+ );
+
+ // Find the next segment we're approaching - use a wider detection range
+ // to catch the boundary earlier
+ const nextSegment = segments.find(
+ (seg) => seg.startTime > currentPosition - 0.3
+ );
+
+ // We need to detect boundaries much earlier to allow for time to react
+ // This is a key fix - we need to detect the boundary BEFORE we reach it
+ // But don't stop if we're in continuePastBoundary mode
+ const shouldStop =
+ nextSegment &&
+ currentPosition >= nextSegment.startTime - 0.25 &&
+ currentPosition <= nextSegment.startTime + 0.1 &&
+ !continuePastBoundary;
+
+ // Add logging to show boundary check decisions
+ if (
+ nextSegment &&
+ currentPosition >= nextSegment.startTime - 0.25 &&
+ currentPosition <= nextSegment.startTime + 0.1
+ ) {
+ logger.debug(
+ `Approaching boundary at ${formatDetailedTime(
+ nextSegment.startTime
+ )}, continuePastBoundary=${continuePastBoundary}, willStop=${shouldStop}`
+ );
+ }
+
+ // Also check if we've entered a different segment - we need to detect this too
+ const segmentAtCurrentTime = segments.find(
+ (seg) =>
+ currentPosition >= seg.startTime &&
+ currentPosition <= seg.endTime
+ );
+
+ // If we've moved directly into a segment during playback, we need to update the active segment
+ if (
+ segmentAtCurrentTime &&
+ activeSegment?.id !== segmentAtCurrentTime.id
+ ) {
+ logger.debug(
+ `Entered segment ${segmentAtCurrentTime.id} during cutaway playback`
+ );
+ setActiveSegment(segmentAtCurrentTime);
+ setSelectedSegmentId(segmentAtCurrentTime.id);
+ setShowEmptySpaceTooltip(false);
+
+ // Remove our boundary checker since we're now in a standard segment
+ videoRef.current.removeEventListener(
+ 'timeupdate',
+ checkCutawayBoundary
+ );
+
+ // Reset continuation flags
+ setContinuePastBoundary(false);
+ sessionStorage.removeItem('continuingPastSegment');
+ return;
+ }
+
+ // If we've entered a segment, stop at its boundary
+ if (shouldStop && nextSegment) {
+ logger.debug(
+ `CUTAWAY MANUAL BOUNDARY CHECK: Current position ${formatDetailedTime(
+ currentPosition
+ )} approaching segment at ${formatDetailedTime(
+ nextSegment.startTime
+ )} (distance: ${Math.abs(
+ currentPosition - nextSegment.startTime
+ ).toFixed(3)}s) - STOPPING`
+ );
+
+ videoRef.current.pause();
+ // Force exact time position with high precision and multiple attempts
+ setTimeout(() => {
+ if (videoRef.current) {
+ // First seek directly to exact start time, no offset
+ videoRef.current.currentTime = nextSegment.startTime;
+ // Update UI immediately to match video position
+ onSeek(nextSegment.startTime);
+ // Also update tooltip time displays
+ setDisplayTime(nextSegment.startTime);
+ setClickedTime(nextSegment.startTime);
+
+ // Reset continuePastBoundary when stopping at a boundary
+ setContinuePastBoundary(false);
+
+ // Update tooltip to show the segment at the boundary
+ setSelectedSegmentId(nextSegment.id);
+ setShowEmptySpaceTooltip(false);
+ setActiveSegment(nextSegment);
+
+ // Force multiple adjustments to ensure exact precision
+ const verifyPosition = () => {
+ if (videoRef.current) {
+ // Always force the exact time in every verification
+ videoRef.current.currentTime =
+ nextSegment.startTime;
+
+ // Make sure we update the UI to reflect the corrected position
+ onSeek(nextSegment.startTime);
+
+ // Update the displayTime and clickedTime state to match exact position
+ setDisplayTime(nextSegment.startTime);
+ setClickedTime(nextSegment.startTime);
+
+ logger.debug(
+ `Position corrected to exact segment boundary: ${formatDetailedTime(
+ videoRef.current.currentTime
+ )} (target: ${formatDetailedTime(nextSegment.startTime)})`
+ );
+ }
+ };
+
+ // Apply multiple correction attempts with increasing delays
+ setTimeout(verifyPosition, 10); // Immediate correction
+ setTimeout(verifyPosition, 20); // First correction
+ setTimeout(verifyPosition, 50); // Second correction
+ setTimeout(verifyPosition, 100); // Third correction
+ setTimeout(verifyPosition, 200); // Final correction
+
+ // Also add event listeners to ensure position is corrected whenever video state changes
+ videoRef.current.addEventListener('seeked', verifyPosition);
+ videoRef.current.addEventListener(
+ 'canplay',
+ verifyPosition
+ );
+ videoRef.current.addEventListener(
+ 'waiting',
+ verifyPosition
+ );
+
+ // Remove these event listeners after a short time
+ setTimeout(() => {
+ if (videoRef.current) {
+ videoRef.current.removeEventListener(
+ 'seeked',
+ verifyPosition
+ );
+ videoRef.current.removeEventListener(
+ 'canplay',
+ verifyPosition
+ );
+ videoRef.current.removeEventListener(
+ 'waiting',
+ verifyPosition
+ );
+ }
+ }, 300);
+ }
+ }, 10);
+ setIsPlayingSegment(false);
+ setActiveSegment(null);
+
+ // Remove our boundary checker
+ videoRef.current.removeEventListener(
+ 'timeupdate',
+ checkCutawayBoundary
+ );
+ return;
+ }
+ };
+
+ // Start our manual boundary checker
+ videoRef.current.addEventListener('timeupdate', checkCutawayBoundary);
+
+ // Start playing with proper promise handling - use setTimeout to ensure
+ // that our activeSegment setting has had time to take effect
+ setTimeout(() => {
+ if (videoRef.current) {
+ // Now start playback
+ videoRef.current
+ .play()
+ .then(() => {
+ setIsPlayingSegment(true);
+ logger.debug(
+ 'CUTAWAY PLAYBACK STARTED:',
+ formatDetailedTime(startTime),
+ 'to',
+ formatDetailedTime(endTime),
+ previousSegment
+ ? `(after segment ${
+ previousSegment.id
+ }, offset +25ms from ${formatDetailedTime(
+ previousSegment.endTime
+ )})`
+ : '(from video start)',
+ nextSegment
+ ? `(will stop at segment ${nextSegment.id})`
+ : '(will play to end)'
+ );
+ })
+ .catch((err) => {
+ console.error('Error playing cutaway:', err);
+ });
+ }
+ }, 50);
+ }
+ }}
+ >
+
+
+
+ {/* Play/Pause button for empty space */}
+ {/*
{
@@ -3726,1051 +3699,1047 @@ const TimelineControls = ({
)}
*/}
- {/* Play/Pause button for empty space - Same as main play/pause button */}
-
{
- e.stopPropagation();
+ {/* Play/Pause button for empty space - Same as main play/pause button */}
+ {
+ e.stopPropagation();
- if (isPlaying) {
- // If playing, just pause
- if (videoRef.current) {
- videoRef.current.pause();
- setIsPlayingSegment(false);
- setContinuePastBoundary(false);
- }
- } else {
- onPlayPause();
- }
- }}
- >
- {isPlaying ? (
-
- ) : (
-
- )}
-
+ if (isPlaying) {
+ // If playing, just pause
+ if (videoRef.current) {
+ videoRef.current.pause();
+ setIsPlayingSegment(false);
+ setContinuePastBoundary(false);
+ }
+ } else {
+ onPlayPause();
+ }
+ }}
+ >
+ {isPlaying ? (
+
+ ) : (
+
+ )}
+
- {/* Segment end adjustment button (always shown) */}
-
{
- e.stopPropagation();
+ {/* Segment end adjustment button (always shown) */}
+ {
+ e.stopPropagation();
- // Find the previous segment (one that ends before the current time)
- const sortedSegments = [...clipSegments].sort(
- (a, b) => a.startTime - b.startTime
- );
- const prevSegment = sortedSegments
- .filter((seg) => seg.endTime <= clickedTime)
- .sort((a, b) => b.endTime - a.endTime)[0]; // Get the closest one before
+ // Find the previous segment (one that ends before the current time)
+ const sortedSegments = [...clipSegments].sort(
+ (a, b) => a.startTime - b.startTime
+ );
+ const prevSegment = sortedSegments
+ .filter((seg) => seg.endTime <= clickedTime)
+ .sort((a, b) => b.endTime - a.endTime)[0]; // Get the closest one before
- if (prevSegment) {
- // Regular case: adjust end of previous segment
- const updatedSegments = clipSegments.map((seg) => {
- if (seg.id === prevSegment.id) {
- return {
- ...seg,
- endTime: clickedTime
- };
- }
- return seg;
- });
+ if (prevSegment) {
+ // Regular case: adjust end of previous segment
+ const updatedSegments = clipSegments.map((seg) => {
+ if (seg.id === prevSegment.id) {
+ return {
+ ...seg,
+ endTime: clickedTime,
+ };
+ }
+ return seg;
+ });
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "adjust_previous_end_time"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Adjusted end of previous segment to:",
- formatDetailedTime(clickedTime)
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'adjust_previous_end_time',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Adjusted end of previous segment to:',
+ formatDetailedTime(clickedTime)
+ );
- // Show the previous segment's tooltip
- setSelectedSegmentId(prevSegment.id);
- setShowEmptySpaceTooltip(false);
- } else if (clipSegments.length > 0) {
- // No previous segment at cursor position, but segments exist elsewhere
+ // Show the previous segment's tooltip
+ setSelectedSegmentId(prevSegment.id);
+ setShowEmptySpaceTooltip(false);
+ } else if (clipSegments.length > 0) {
+ // No previous segment at cursor position, but segments exist elsewhere
- // First, check if we're in a gap between segments - if so, create a new segment for the gap
- const sortedByStart = [...clipSegments].sort(
- (a, b) => a.startTime - b.startTime
- );
- let inGap = false;
- let gapStart = 0;
+ // First, check if we're in a gap between segments - if so, create a new segment for the gap
+ const sortedByStart = [...clipSegments].sort(
+ (a, b) => a.startTime - b.startTime
+ );
+ let inGap = false;
+ let gapStart = 0;
- // Check if we're in a gap between segments
- for (let i = 0; i < sortedByStart.length - 1; i++) {
- const currentSegEnd = sortedByStart[i].endTime;
- const nextSegStart = sortedByStart[i + 1].startTime;
+ // Check if we're in a gap between segments
+ for (let i = 0; i < sortedByStart.length - 1; i++) {
+ const currentSegEnd = sortedByStart[i].endTime;
+ const nextSegStart = sortedByStart[i + 1].startTime;
- if (clickedTime > currentSegEnd && clickedTime < nextSegStart) {
- inGap = true;
- gapStart = currentSegEnd;
- break;
- }
- }
+ if (clickedTime > currentSegEnd && clickedTime < nextSegStart) {
+ inGap = true;
+ gapStart = currentSegEnd;
+ break;
+ }
+ }
- if (inGap) {
- // We're in a gap, create a new segment from gap start to clicked time
- const newSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: gapStart,
- endTime: clickedTime,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
+ if (inGap) {
+ // We're in a gap, create a new segment from gap start to clicked time
+ const newSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: gapStart,
+ endTime: clickedTime,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Add the new segment to existing segments
- const updatedSegments = [...clipSegments, newSegment];
+ // Add the new segment to existing segments
+ const updatedSegments = [...clipSegments, newSegment];
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "create_segment_in_gap"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Created new segment in gap from",
- formatDetailedTime(gapStart),
- "to",
- formatDetailedTime(clickedTime)
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'create_segment_in_gap',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Created new segment in gap from',
+ formatDetailedTime(gapStart),
+ 'to',
+ formatDetailedTime(clickedTime)
+ );
- // Show the new segment's tooltip
- setSelectedSegmentId(newSegment.id);
- setShowEmptySpaceTooltip(false);
- }
- // Check if we're before all segments and should create a segment from start
- else if (clickedTime < sortedByStart[0].startTime) {
- // Create a new segment from start of video to clicked time
- const newSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: 0,
- endTime: clickedTime,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
+ // Show the new segment's tooltip
+ setSelectedSegmentId(newSegment.id);
+ setShowEmptySpaceTooltip(false);
+ }
+ // Check if we're before all segments and should create a segment from start
+ else if (clickedTime < sortedByStart[0].startTime) {
+ // Create a new segment from start of video to clicked time
+ const newSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: 0,
+ endTime: clickedTime,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Add the new segment to existing segments
- const updatedSegments = [...clipSegments, newSegment];
+ // Add the new segment to existing segments
+ const updatedSegments = [...clipSegments, newSegment];
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "create_segment_from_start"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Created new segment from start to:",
- formatDetailedTime(clickedTime)
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'create_segment_from_start',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Created new segment from start to:',
+ formatDetailedTime(clickedTime)
+ );
- // Show the new segment's tooltip
- setSelectedSegmentId(newSegment.id);
- setShowEmptySpaceTooltip(false);
- } else {
- // Not in a gap, check if we can extend the last segment to end of video
- const lastSegment = [...clipSegments].sort(
- (a, b) => b.endTime - a.endTime
- )[0];
+ // Show the new segment's tooltip
+ setSelectedSegmentId(newSegment.id);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // Not in a gap, check if we can extend the last segment to end of video
+ const lastSegment = [...clipSegments].sort(
+ (a, b) => b.endTime - a.endTime
+ )[0];
- if (lastSegment && lastSegment.endTime < duration) {
- // Extend the last segment to end of video
- const updatedSegments = clipSegments.map((seg) => {
- if (seg.id === lastSegment.id) {
- return {
- ...seg,
- endTime: duration
- };
- }
- return seg;
- });
+ if (lastSegment && lastSegment.endTime < duration) {
+ // Extend the last segment to end of video
+ const updatedSegments = clipSegments.map((seg) => {
+ if (seg.id === lastSegment.id) {
+ return {
+ ...seg,
+ endTime: duration,
+ };
+ }
+ return seg;
+ });
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "extend_last_segment"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug("Extended last segment to end of video");
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'extend_last_segment',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug('Extended last segment to end of video');
- // Show the last segment's tooltip
- setSelectedSegmentId(lastSegment.id);
- setShowEmptySpaceTooltip(false);
- }
- }
- } else if (clickedTime > 0) {
- // No segments exist; create a new segment from start to clicked time
- const newSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: 0,
- endTime: clickedTime,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
+ // Show the last segment's tooltip
+ setSelectedSegmentId(lastSegment.id);
+ setShowEmptySpaceTooltip(false);
+ }
+ }
+ } else if (clickedTime > 0) {
+ // No segments exist; create a new segment from start to clicked time
+ const newSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: 0,
+ endTime: clickedTime,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: [newSegment],
- recordHistory: true,
- action: "create_segment_from_start"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Created new segment from start to:",
- formatDetailedTime(clickedTime)
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: [newSegment],
+ recordHistory: true,
+ action: 'create_segment_from_start',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Created new segment from start to:',
+ formatDetailedTime(clickedTime)
+ );
- // Show the new segment's tooltip
- setSelectedSegmentId(newSegment.id);
- setShowEmptySpaceTooltip(false);
- }
- }}
- >
-
-
+ // Show the new segment's tooltip
+ setSelectedSegmentId(newSegment.id);
+ setShowEmptySpaceTooltip(false);
+ }
+ }}
+ >
+
+
- {/* Segment start adjustment button (always shown) */}
-
{
- e.stopPropagation();
+ {/* Segment start adjustment button (always shown) */}
+ {
+ e.stopPropagation();
- // Find the next segment (one that starts after the current time)
- const sortedSegments = [...clipSegments].sort(
- (a, b) => a.startTime - b.startTime
- );
- const nextSegment = sortedSegments
- .filter((seg) => seg.startTime >= clickedTime)
- .sort((a, b) => a.startTime - b.startTime)[0]; // Get the closest one after
+ // Find the next segment (one that starts after the current time)
+ const sortedSegments = [...clipSegments].sort(
+ (a, b) => a.startTime - b.startTime
+ );
+ const nextSegment = sortedSegments
+ .filter((seg) => seg.startTime >= clickedTime)
+ .sort((a, b) => a.startTime - b.startTime)[0]; // Get the closest one after
- if (nextSegment) {
- // Regular case: adjust start of next segment
- const updatedSegments = clipSegments.map((seg) => {
- if (seg.id === nextSegment.id) {
- return {
- ...seg,
- startTime: clickedTime
- };
- }
- return seg;
- });
+ if (nextSegment) {
+ // Regular case: adjust start of next segment
+ const updatedSegments = clipSegments.map((seg) => {
+ if (seg.id === nextSegment.id) {
+ return {
+ ...seg,
+ startTime: clickedTime,
+ };
+ }
+ return seg;
+ });
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "adjust_next_start_time"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Adjusted start of next segment to:",
- formatDetailedTime(clickedTime)
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'adjust_next_start_time',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Adjusted start of next segment to:',
+ formatDetailedTime(clickedTime)
+ );
- // Show the next segment's tooltip
- setSelectedSegmentId(nextSegment.id);
- setShowEmptySpaceTooltip(false);
- } else if (clipSegments.length > 0) {
- // No next segment at cursor position, but segments exist elsewhere
+ // Show the next segment's tooltip
+ setSelectedSegmentId(nextSegment.id);
+ setShowEmptySpaceTooltip(false);
+ } else if (clipSegments.length > 0) {
+ // No next segment at cursor position, but segments exist elsewhere
- // First, check if we're in a gap between segments - if so, create a new segment for the gap
- const sortedByStart = [...clipSegments].sort(
- (a, b) => a.startTime - b.startTime
- );
- let inGap = false;
- let gapEnd = 0;
+ // First, check if we're in a gap between segments - if so, create a new segment for the gap
+ const sortedByStart = [...clipSegments].sort(
+ (a, b) => a.startTime - b.startTime
+ );
+ let inGap = false;
+ let gapEnd = 0;
- // Check if we're in a gap between segments
- for (let i = 0; i < sortedByStart.length - 1; i++) {
- const currentSegEnd = sortedByStart[i].endTime;
- const nextSegStart = sortedByStart[i + 1].startTime;
+ // Check if we're in a gap between segments
+ for (let i = 0; i < sortedByStart.length - 1; i++) {
+ const currentSegEnd = sortedByStart[i].endTime;
+ const nextSegStart = sortedByStart[i + 1].startTime;
- if (clickedTime > currentSegEnd && clickedTime < nextSegStart) {
- inGap = true;
- gapEnd = nextSegStart;
- break;
- }
- }
+ if (clickedTime > currentSegEnd && clickedTime < nextSegStart) {
+ inGap = true;
+ gapEnd = nextSegStart;
+ break;
+ }
+ }
- if (inGap) {
- // We're in a gap, create a new segment from clicked time to gap end
- const newSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: clickedTime,
- endTime: gapEnd,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
+ if (inGap) {
+ // We're in a gap, create a new segment from clicked time to gap end
+ const newSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: clickedTime,
+ endTime: gapEnd,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Add the new segment to existing segments
- const updatedSegments = [...clipSegments, newSegment];
+ // Add the new segment to existing segments
+ const updatedSegments = [...clipSegments, newSegment];
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "create_segment_in_gap"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Created new segment in gap from",
- formatDetailedTime(clickedTime),
- "to",
- formatDetailedTime(gapEnd)
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'create_segment_in_gap',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Created new segment in gap from',
+ formatDetailedTime(clickedTime),
+ 'to',
+ formatDetailedTime(gapEnd)
+ );
- // Show the new segment's tooltip
- setSelectedSegmentId(newSegment.id);
- setShowEmptySpaceTooltip(false);
- } else {
- // Check if we're at the start of the video with segments ahead
- if (clickedTime < sortedByStart[0].startTime) {
- // Create a new segment from clicked time to first segment start
- const newSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: clickedTime,
- endTime: sortedByStart[0].startTime,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
+ // Show the new segment's tooltip
+ setSelectedSegmentId(newSegment.id);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // Check if we're at the start of the video with segments ahead
+ if (clickedTime < sortedByStart[0].startTime) {
+ // Create a new segment from clicked time to first segment start
+ const newSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: clickedTime,
+ endTime: sortedByStart[0].startTime,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Add the new segment to existing segments
- const updatedSegments = [...clipSegments, newSegment];
+ // Add the new segment to existing segments
+ const updatedSegments = [...clipSegments, newSegment];
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "create_segment_before_first"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Created new segment from",
- formatDetailedTime(clickedTime),
- "to first segment"
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'create_segment_before_first',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Created new segment from',
+ formatDetailedTime(clickedTime),
+ 'to first segment'
+ );
- // Show the new segment's tooltip
- setSelectedSegmentId(newSegment.id);
- setShowEmptySpaceTooltip(false);
- }
- // Check if we're after all segments and should create a segment to the end
- else if (clickedTime > sortedByStart[sortedByStart.length - 1].endTime) {
- // Create a new segment from clicked time to end of video
- const newSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: clickedTime,
- endTime: duration,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
+ // Show the new segment's tooltip
+ setSelectedSegmentId(newSegment.id);
+ setShowEmptySpaceTooltip(false);
+ }
+ // Check if we're after all segments and should create a segment to the end
+ else if (
+ clickedTime > sortedByStart[sortedByStart.length - 1].endTime
+ ) {
+ // Create a new segment from clicked time to end of video
+ const newSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: clickedTime,
+ endTime: duration,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Add the new segment to existing segments
- const updatedSegments = [...clipSegments, newSegment];
+ // Add the new segment to existing segments
+ const updatedSegments = [...clipSegments, newSegment];
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "create_segment_to_end"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Created new segment from",
- formatDetailedTime(clickedTime),
- "to end"
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'create_segment_to_end',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Created new segment from',
+ formatDetailedTime(clickedTime),
+ 'to end'
+ );
- // Show the new segment's tooltip
- setSelectedSegmentId(newSegment.id);
- setShowEmptySpaceTooltip(false);
- } else {
- // Not in a gap, check if we can extend the first segment to start of video
- const firstSegment = sortedByStart[0];
+ // Show the new segment's tooltip
+ setSelectedSegmentId(newSegment.id);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // Not in a gap, check if we can extend the first segment to start of video
+ const firstSegment = sortedByStart[0];
- if (firstSegment && firstSegment.startTime > 0) {
- // Extend the first segment to start of video
- const updatedSegments = clipSegments.map((seg) => {
- if (seg.id === firstSegment.id) {
- return {
- ...seg,
- startTime: 0
- };
- }
- return seg;
- });
+ if (firstSegment && firstSegment.startTime > 0) {
+ // Extend the first segment to start of video
+ const updatedSegments = clipSegments.map((seg) => {
+ if (seg.id === firstSegment.id) {
+ return {
+ ...seg,
+ startTime: 0,
+ };
+ }
+ return seg;
+ });
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: updatedSegments,
- recordHistory: true,
- action: "extend_first_segment"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug("Extended first segment to start of video");
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: updatedSegments,
+ recordHistory: true,
+ action: 'extend_first_segment',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug('Extended first segment to start of video');
- // Show the first segment's tooltip
- setSelectedSegmentId(firstSegment.id);
- setShowEmptySpaceTooltip(false);
- }
- }
- }
- } else if (clickedTime < duration) {
- // No segments exist; create a new segment from clicked time to end
- const newSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: clickedTime,
- endTime: duration,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
+ // Show the first segment's tooltip
+ setSelectedSegmentId(firstSegment.id);
+ setShowEmptySpaceTooltip(false);
+ }
+ }
+ }
+ } else if (clickedTime < duration) {
+ // No segments exist; create a new segment from clicked time to end
+ const newSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: clickedTime,
+ endTime: duration,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Create and dispatch the update event
- const updateEvent = new CustomEvent("update-segments", {
- detail: {
- segments: [newSegment],
- recordHistory: true,
- action: "create_segment_to_end"
- }
- });
- document.dispatchEvent(updateEvent);
- logger.debug(
- "Created new segment from",
- formatDetailedTime(clickedTime),
- "to end"
- );
+ // Create and dispatch the update event
+ const updateEvent = new CustomEvent('update-segments', {
+ detail: {
+ segments: [newSegment],
+ recordHistory: true,
+ action: 'create_segment_to_end',
+ },
+ });
+ document.dispatchEvent(updateEvent);
+ logger.debug(
+ 'Created new segment from',
+ formatDetailedTime(clickedTime),
+ 'to end'
+ );
- // Show the new segment's tooltip
- setSelectedSegmentId(newSegment.id);
- setShowEmptySpaceTooltip(false);
- }
- }}
- >
-
-
-
-
- )}
-
-
-
- {/* Precise Time Navigation & Zoom Controls */}
-
- {/* Precise Time Input */}
-
-
Go to Time:
-
{
- if (e.key === "Enter") {
- const input = e.currentTarget.value;
- try {
- // Parse time format like "00:30:15.250" or "30:15.250" or "30:15"
- const parts = input.split(":");
- let hours = 0,
- minutes = 0,
- seconds = 0,
- milliseconds = 0;
-
- if (parts.length === 3) {
- // Format: HH:MM:SS.ms
- hours = parseInt(parts[0]);
- minutes = parseInt(parts[1]);
- const secParts = parts[2].split(".");
- seconds = parseInt(secParts[0]);
- if (secParts.length > 1)
- milliseconds = parseInt(secParts[1].padEnd(3, "0").substring(0, 3));
- } else if (parts.length === 2) {
- // Format: MM:SS.ms
- minutes = parseInt(parts[0]);
- const secParts = parts[1].split(".");
- seconds = parseInt(secParts[0]);
- if (secParts.length > 1)
- milliseconds = parseInt(secParts[1].padEnd(3, "0").substring(0, 3));
- }
-
- const totalSeconds = hours * 3600 + minutes * 60 + seconds + milliseconds / 1000;
- if (!isNaN(totalSeconds) && totalSeconds >= 0 && totalSeconds <= duration) {
- onSeek(totalSeconds);
-
- // Create a helper function to show tooltip that uses the same logic as the millisecond buttons
- const showTooltipAtTime = (timeInSeconds: number) => {
- // Find the segment at the given time using improved matching
- const segmentAtTime = clipSegments.find((seg) => {
- const isWithinSegment =
- timeInSeconds >= seg.startTime && timeInSeconds <= seg.endTime;
- const isAtExactStart = Math.abs(timeInSeconds - seg.startTime) < 0.001; // Within 1ms of start
- const isAtExactEnd = Math.abs(timeInSeconds - seg.endTime) < 0.001; // Within 1ms of end
- return isWithinSegment || isAtExactStart || isAtExactEnd;
- });
-
- // Calculate position for tooltip
- if (timelineRef.current && scrollContainerRef.current) {
- const rect = timelineRef.current.getBoundingClientRect();
-
- // Handle zoomed timeline by accounting for scroll position
- let xPos;
-
- if (zoomLevel > 1) {
- // For zoomed timeline, calculate position based on visible area
- const visibleTimelineLeft =
- rect.left - scrollContainerRef.current.scrollLeft;
- const markerVisibleX =
- visibleTimelineLeft + (timeInSeconds / duration) * rect.width;
- xPos = markerVisibleX;
- } else {
- // For non-zoomed timeline, use the simple calculation
- const positionPercent = timeInSeconds / duration;
- xPos = rect.left + rect.width * positionPercent;
- }
-
- setTooltipPosition({
- x: xPos,
- y: rect.top - 10
- });
- setClickedTime(timeInSeconds);
-
- if (segmentAtTime) {
- // Show segment tooltip
- setSelectedSegmentId(segmentAtTime.id);
- setShowEmptySpaceTooltip(false);
- } else {
- // Show empty space tooltip
- setSelectedSegmentId(null);
- setShowEmptySpaceTooltip(true);
- }
- }
- };
-
- // Show tooltip after a slight delay to ensure UI updates
- setTimeout(() => showTooltipAtTime(totalSeconds), 10);
- }
- } catch (error) {
- console.error("Invalid time format:", error);
- }
- }
- }}
- />
- {/* Helper function to show tooltip at current position */}
- {/* This is defined within the component to access state variables and functions */}
-
- {(() => {
- // Helper function to show the appropriate tooltip at the current time position
- const showTooltipAtCurrentTime = () => {
- // Find the segment at the current time (after seeking) - using improved matching for better precision
- const segmentAtCurrentTime = clipSegments.find((seg) => {
- const isWithinSegment =
- currentTime >= seg.startTime && currentTime <= seg.endTime;
- const isAtExactStart = Math.abs(currentTime - seg.startTime) < 0.001; // Within 1ms of start
- const isAtExactEnd = Math.abs(currentTime - seg.endTime) < 0.001; // Within 1ms of end
- return isWithinSegment || isAtExactStart || isAtExactEnd;
- });
-
- // Calculate position for tooltip (above the timeline where the marker is)
- if (timelineRef.current && scrollContainerRef.current) {
- const rect = timelineRef.current.getBoundingClientRect();
-
- // Handle zoomed timeline by accounting for scroll position
- let xPos;
-
- if (zoomLevel > 1) {
- // For zoomed timeline, calculate position based on visible area
- const visibleTimelineLeft = rect.left - scrollContainerRef.current.scrollLeft;
- const markerVisibleX =
- visibleTimelineLeft + (currentTime / duration) * rect.width;
- xPos = markerVisibleX;
- } else {
- // For non-zoomed timeline, use the simple calculation
- const positionPercent = currentTime / duration;
- xPos = rect.left + rect.width * positionPercent;
- }
-
- setTooltipPosition({
- x: xPos,
- y: rect.top - 10
- });
- setClickedTime(currentTime);
-
- if (segmentAtCurrentTime) {
- // Show segment tooltip
- setSelectedSegmentId(segmentAtCurrentTime.id);
- setShowEmptySpaceTooltip(false);
- } else {
- // Calculate available space for new segment before showing tooltip
- const availableSpace = calculateAvailableSpace(currentTime);
- setAvailableSegmentDuration(availableSpace);
-
- // Only show tooltip if there's enough space for a minimal segment
- if (availableSpace >= 0.5) {
- // Show empty space tooltip
- setSelectedSegmentId(null);
- setShowEmptySpaceTooltip(true);
- } else {
- // Not enough space, don't show any tooltip
- setSelectedSegmentId(null);
- setShowEmptySpaceTooltip(false);
- }
- }
- }
- };
-
- return (
- <>
- {
- // Move back 10ms
- onSeek(currentTime - 0.01);
- // Show appropriate tooltip
- setTimeout(showTooltipAtCurrentTime, 10); // Short delay to ensure time is updated
- }}
- data-tooltip="Move back 10ms"
- >
- -10ms
-
- {
- // Move back 1ms
- onSeek(currentTime - 0.001);
- // Show appropriate tooltip
- setTimeout(showTooltipAtCurrentTime, 10);
- }}
- data-tooltip="Move back 1ms"
- >
- -1ms
-
- {
- // Move forward 1ms
- onSeek(currentTime + 0.001);
- // Show appropriate tooltip
- setTimeout(showTooltipAtCurrentTime, 10);
- }}
- data-tooltip="Move forward 1ms"
- >
- +1ms
-
- {
- // Move forward 10ms
- onSeek(currentTime + 0.01);
- // Show appropriate tooltip
- setTimeout(showTooltipAtCurrentTime, 10);
- }}
- data-tooltip="Move forward 10ms"
- >
- +10ms
-
- >
- );
- })()}
-
-
-
- {/* Zoom Dropdown Control and Save Buttons */}
-
-
-
setIsZoomDropdownOpen(!isZoomDropdownOpen)}
- >
- Zoom {zoomLevel}x
-
-
-
-
-
- {isZoomDropdownOpen && (
-
- {[1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096].map((level) => (
-
{
- onZoomChange(level);
- setIsZoomDropdownOpen(false);
- }}
- >
- {zoomLevel === level && (
-
-
-
+ // Show the new segment's tooltip
+ setSelectedSegmentId(newSegment.id);
+ setShowEmptySpaceTooltip(false);
+ }
+ }}
+ >
+
+
+
+
)}
- Zoom {level}x
-
- ))}
-
- )}
-
-
- {/* Save Buttons Row */}
-
- {onSave && (
- setShowSaveModal(true)}
- className="save-button"
- data-tooltip="Save changes"
- >
- Save
-
- )}
-
- {onSaveACopy && (
- setShowSaveAsModal(true)}
- className="save-copy-button"
- data-tooltip="Save as a new copy"
- >
- Save as Copy
-
- )}
-
- {onSaveSegments && (
- setShowSaveSegmentsModal(true)}
- className="save-segments-button"
- data-tooltip="Save segments as separate files"
- >
- Save Segments
-
- )}
-
-
- {/* Save Confirmation Modal */}
- setShowSaveModal(false)}
- title="Save Changes"
- actions={
- <>
- setShowSaveModal(false)}
- >
- Cancel
-
- {
- // Reset unsaved changes flag before saving
- if (onSave) onSave();
- handleSaveConfirm();
- }}
- >
- Confirm Save
-
- >
- }
- >
-
- You're about to replace the original video with this trimmed version. This can't be
- undone.
-
-
-
- {/* Save As Copy Modal */}
- setShowSaveAsModal(false)}
- title="Save As New Copy"
- actions={
- <>
- setShowSaveAsModal(false)}
- >
- Cancel
-
- {
- // Reset unsaved changes flag before saving
- if (onSaveACopy) onSaveACopy();
- handleSaveAsCopyConfirm();
- }}
- >
- Confirm Save As Copy
-
- >
- }
- >
-
- You're about to save a new copy with your edits. The original video will stay the
- same. Find the new file in your My Media folder - named after the original file.
-
-
-
- {/* Processing Modal */}
- {}} title="Processing Video">
-
-
- Please wait while your video is being processed...
-
-
- {/* Save Segments Modal */}
-
setShowSaveSegmentsModal(false)}
- title="Save Segments"
- actions={
- <>
- setShowSaveSegmentsModal(false)}
- >
- Cancel
-
- {
- // Reset unsaved changes flag before saving
- if (onSaveSegments) onSaveSegments();
- handleSaveSegmentsConfirm();
- }}
- >
- Save Segments
-
- >
- }
- >
-
- You're about to save each segment as a separate video. Find the new files in your My
- Media folder - named after the original file.
-
-
+ {/* Precise Time Navigation & Zoom Controls */}
+
+ {/* Precise Time Input */}
+
+
Go to Time:
+
{
+ if (e.key === 'Enter') {
+ const input = e.currentTarget.value;
+ try {
+ // Parse time format like "00:30:15.250" or "30:15.250" or "30:15"
+ const parts = input.split(':');
+ let hours = 0,
+ minutes = 0,
+ seconds = 0,
+ milliseconds = 0;
- {/* Success Modal */}
-
setShowSuccessModal(false)}
- title="Video Edited Successfully"
- >
-
- {/*
+ if (parts.length === 3) {
+ // Format: HH:MM:SS.ms
+ hours = parseInt(parts[0]);
+ minutes = parseInt(parts[1]);
+ const secParts = parts[2].split('.');
+ seconds = parseInt(secParts[0]);
+ if (secParts.length > 1)
+ milliseconds = parseInt(secParts[1].padEnd(3, '0').substring(0, 3));
+ } else if (parts.length === 2) {
+ // Format: MM:SS.ms
+ minutes = parseInt(parts[0]);
+ const secParts = parts[1].split('.');
+ seconds = parseInt(secParts[0]);
+ if (secParts.length > 1)
+ milliseconds = parseInt(secParts[1].padEnd(3, '0').substring(0, 3));
+ }
+
+ const totalSeconds = hours * 3600 + minutes * 60 + seconds + milliseconds / 1000;
+ if (!isNaN(totalSeconds) && totalSeconds >= 0 && totalSeconds <= duration) {
+ onSeek(totalSeconds);
+
+ // Create a helper function to show tooltip that uses the same logic as the millisecond buttons
+ const showTooltipAtTime = (timeInSeconds: number) => {
+ // Find the segment at the given time using improved matching
+ const segmentAtTime = clipSegments.find((seg) => {
+ const isWithinSegment =
+ timeInSeconds >= seg.startTime && timeInSeconds <= seg.endTime;
+ const isAtExactStart = Math.abs(timeInSeconds - seg.startTime) < 0.001; // Within 1ms of start
+ const isAtExactEnd = Math.abs(timeInSeconds - seg.endTime) < 0.001; // Within 1ms of end
+ return isWithinSegment || isAtExactStart || isAtExactEnd;
+ });
+
+ // Calculate position for tooltip
+ if (timelineRef.current && scrollContainerRef.current) {
+ const rect = timelineRef.current.getBoundingClientRect();
+
+ // Handle zoomed timeline by accounting for scroll position
+ let xPos;
+
+ if (zoomLevel > 1) {
+ // For zoomed timeline, calculate position based on visible area
+ const visibleTimelineLeft =
+ rect.left - scrollContainerRef.current.scrollLeft;
+ const markerVisibleX =
+ visibleTimelineLeft + (timeInSeconds / duration) * rect.width;
+ xPos = markerVisibleX;
+ } else {
+ // For non-zoomed timeline, use the simple calculation
+ const positionPercent = timeInSeconds / duration;
+ xPos = rect.left + rect.width * positionPercent;
+ }
+
+ setTooltipPosition({
+ x: xPos,
+ y: rect.top - 10,
+ });
+ setClickedTime(timeInSeconds);
+
+ if (segmentAtTime) {
+ // Show segment tooltip
+ setSelectedSegmentId(segmentAtTime.id);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // Show empty space tooltip
+ setSelectedSegmentId(null);
+ setShowEmptySpaceTooltip(true);
+ }
+ }
+ };
+
+ // Show tooltip after a slight delay to ensure UI updates
+ setTimeout(() => showTooltipAtTime(totalSeconds), 10);
+ }
+ } catch (error) {
+ console.error('Invalid time format:', error);
+ }
+ }
+ }}
+ />
+ {/* Helper function to show tooltip at current position */}
+ {/* This is defined within the component to access state variables and functions */}
+
+ {(() => {
+ // Helper function to show the appropriate tooltip at the current time position
+ const showTooltipAtCurrentTime = () => {
+ // Find the segment at the current time (after seeking) - using improved matching for better precision
+ const segmentAtCurrentTime = clipSegments.find((seg) => {
+ const isWithinSegment = currentTime >= seg.startTime && currentTime <= seg.endTime;
+ const isAtExactStart = Math.abs(currentTime - seg.startTime) < 0.001; // Within 1ms of start
+ const isAtExactEnd = Math.abs(currentTime - seg.endTime) < 0.001; // Within 1ms of end
+ return isWithinSegment || isAtExactStart || isAtExactEnd;
+ });
+
+ // Calculate position for tooltip (above the timeline where the marker is)
+ if (timelineRef.current && scrollContainerRef.current) {
+ const rect = timelineRef.current.getBoundingClientRect();
+
+ // Handle zoomed timeline by accounting for scroll position
+ let xPos;
+
+ if (zoomLevel > 1) {
+ // For zoomed timeline, calculate position based on visible area
+ const visibleTimelineLeft = rect.left - scrollContainerRef.current.scrollLeft;
+ const markerVisibleX =
+ visibleTimelineLeft + (currentTime / duration) * rect.width;
+ xPos = markerVisibleX;
+ } else {
+ // For non-zoomed timeline, use the simple calculation
+ const positionPercent = currentTime / duration;
+ xPos = rect.left + rect.width * positionPercent;
+ }
+
+ setTooltipPosition({
+ x: xPos,
+ y: rect.top - 10,
+ });
+ setClickedTime(currentTime);
+
+ if (segmentAtCurrentTime) {
+ // Show segment tooltip
+ setSelectedSegmentId(segmentAtCurrentTime.id);
+ setShowEmptySpaceTooltip(false);
+ } else {
+ // Calculate available space for new segment before showing tooltip
+ const availableSpace = calculateAvailableSpace(currentTime);
+ setAvailableSegmentDuration(availableSpace);
+
+ // Only show tooltip if there's enough space for a minimal segment
+ if (availableSpace >= 0.5) {
+ // Show empty space tooltip
+ setSelectedSegmentId(null);
+ setShowEmptySpaceTooltip(true);
+ } else {
+ // Not enough space, don't show any tooltip
+ setSelectedSegmentId(null);
+ setShowEmptySpaceTooltip(false);
+ }
+ }
+ }
+ };
+
+ return (
+ <>
+ {
+ // Move back 10ms
+ onSeek(currentTime - 0.01);
+ // Show appropriate tooltip
+ setTimeout(showTooltipAtCurrentTime, 10); // Short delay to ensure time is updated
+ }}
+ data-tooltip="Move back 10ms"
+ >
+ -10ms
+
+ {
+ // Move back 1ms
+ onSeek(currentTime - 0.001);
+ // Show appropriate tooltip
+ setTimeout(showTooltipAtCurrentTime, 10);
+ }}
+ data-tooltip="Move back 1ms"
+ >
+ -1ms
+
+ {
+ // Move forward 1ms
+ onSeek(currentTime + 0.001);
+ // Show appropriate tooltip
+ setTimeout(showTooltipAtCurrentTime, 10);
+ }}
+ data-tooltip="Move forward 1ms"
+ >
+ +1ms
+
+ {
+ // Move forward 10ms
+ onSeek(currentTime + 0.01);
+ // Show appropriate tooltip
+ setTimeout(showTooltipAtCurrentTime, 10);
+ }}
+ data-tooltip="Move forward 10ms"
+ >
+ +10ms
+
+ >
+ );
+ })()}
+
+
+
+ {/* Zoom Dropdown Control and Save Buttons */}
+
+
+
setIsZoomDropdownOpen(!isZoomDropdownOpen)}
+ >
+ Zoom {zoomLevel}x
+
+
+
+
+
+ {isZoomDropdownOpen && (
+
+ {[1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096].map((level) => (
+
{
+ onZoomChange(level);
+ setIsZoomDropdownOpen(false);
+ }}
+ >
+ {zoomLevel === level && (
+
+
+
+ )}
+ Zoom {level}x
+
+ ))}
+
+ )}
+
+
+ {/* Save Buttons Row */}
+
+ {onSave && (
+ setShowSaveModal(true)}
+ className="save-button"
+ data-tooltip="Save changes"
+ >
+ Save
+
+ )}
+
+ {onSaveACopy && (
+ setShowSaveAsModal(true)}
+ className="save-copy-button"
+ data-tooltip="Save as a new copy"
+ >
+ Save as Copy
+
+ )}
+
+ {onSaveSegments && (
+ setShowSaveSegmentsModal(true)}
+ className="save-segments-button"
+ data-tooltip="Save segments as separate files"
+ >
+ Save Segments
+
+ )}
+
+
+ {/* Save Confirmation Modal */}
+
setShowSaveModal(false)}
+ title="Save Changes"
+ actions={
+ <>
+ setShowSaveModal(false)}
+ >
+ Cancel
+
+ {
+ // Reset unsaved changes flag before saving
+ if (onSave) onSave();
+ handleSaveConfirm();
+ }}
+ >
+ Confirm Save
+
+ >
+ }
+ >
+
+ You're about to replace the original video with this trimmed version. This can't be undone.
+
+
+
+ {/* Save As Copy Modal */}
+
setShowSaveAsModal(false)}
+ title="Save As New Copy"
+ actions={
+ <>
+ setShowSaveAsModal(false)}
+ >
+ Cancel
+
+ {
+ // Reset unsaved changes flag before saving
+ if (onSaveACopy) onSaveACopy();
+ handleSaveAsCopyConfirm();
+ }}
+ >
+ Confirm Save As Copy
+
+ >
+ }
+ >
+
+ You're about to save a new copy with your edits. The original video will stay the same. Find
+ the new file in your My Media folder - named after the original file.
+
+
+
+ {/* Processing Modal */}
+
{}} title="Processing Video">
+
+ Please wait while your video is being processed...
+
+
+ {/* Save Segments Modal */}
+
setShowSaveSegmentsModal(false)}
+ title="Save Segments"
+ actions={
+ <>
+ setShowSaveSegmentsModal(false)}
+ >
+ Cancel
+
+ {
+ // Reset unsaved changes flag before saving
+ if (onSaveSegments) onSaveSegments();
+ handleSaveSegmentsConfirm();
+ }}
+ >
+ Save Segments
+
+ >
+ }
+ >
+
+ You're about to save each segment as a separate video. Find the new files in your My Media
+ folder - named after the original file.
+
+
+
+ {/* Success Modal */}
+
setShowSuccessModal(false)}
+ title="Video Edited Successfully"
+ >
+
+ {/*
{successMessage || "Processing completed successfully!"}
*/}
-
- {saveType === "segments"
- ? "You will be redirected to your "
- : "You will be redirected to your "}
-
- media page
-
- {" in "}
- 10 seconds.{" "}
- {saveType === "segments"
- ? "The new video(s) will soon be there."
- : "Changes to the video might take a few minutes to be applied."}
-
-
-
+
+ {saveType === 'segments'
+ ? 'You will be redirected to your '
+ : 'You will be redirected to your '}
+
+ media page
+
+ {' in '}
+ 10 seconds.{' '}
+ {saveType === 'segments'
+ ? 'The new video(s) will soon be there.'
+ : 'Changes to the video might take a few minutes to be applied.'}
+
+
+
- {/* Error Modal */}
-
setShowErrorModal(false)}
- title="Video Processing Error"
- >
-
-
-
-
-
-
-
-
-
{errorMessage}
-
-
- setShowErrorModal(false)}
- className="modal-choice-button centered-choice"
- >
-
-
-
-
- Close
-
-
-
+ {/* Error Modal */}
+
setShowErrorModal(false)}
+ title="Video Processing Error"
+ >
+
+
+
+
+
+
+
+
+
{errorMessage}
+
+
+ setShowErrorModal(false)}
+ className="modal-choice-button centered-choice"
+ >
+
+
+
+
+ Close
+
+
+
- {/* Dropdown was moved inside the container element */}
+ {/* Dropdown was moved inside the container element */}
+
+
+
+ {/* Mobile Uninitialized Overlay - Show only when on mobile and video hasn't been played yet */}
+ {isIOSUninitialized && (
+
+
+
Please play the video first to enable timeline controls
+
+
+
+ )}
-
-
- {/* Mobile Uninitialized Overlay - Show only when on mobile and video hasn't been played yet */}
- {isIOSUninitialized && (
-
-
-
Please play the video first to enable timeline controls
-
-
-
- )}
-
- );
+ );
};
export default TimelineControls;
diff --git a/frontend-tools/video-editor/client/src/components/VideoPlayer.tsx b/frontend-tools/video-editor/client/src/components/VideoPlayer.tsx
index 842d5e5e..fbe2bd00 100644
--- a/frontend-tools/video-editor/client/src/components/VideoPlayer.tsx
+++ b/frontend-tools/video-editor/client/src/components/VideoPlayer.tsx
@@ -1,452 +1,469 @@
-import React, { useRef, useEffect, useState } from "react";
-import { formatTime, formatDetailedTime } from "@/lib/timeUtils";
-import logger from "../lib/logger";
-import "../styles/VideoPlayer.css";
+import React, { useRef, useEffect, useState } from 'react';
+import { formatTime, formatDetailedTime } from '@/lib/timeUtils';
+import logger from '../lib/logger';
+import '../styles/VideoPlayer.css';
interface VideoPlayerProps {
- videoRef: React.RefObject
;
- currentTime: number;
- duration: number;
- isPlaying: boolean;
- isMuted?: boolean;
- onPlayPause: () => void;
- onSeek: (time: number) => void;
- onToggleMute?: () => void;
+ videoRef: React.RefObject;
+ currentTime: number;
+ duration: number;
+ isPlaying: boolean;
+ isMuted?: boolean;
+ onPlayPause: () => void;
+ onSeek: (time: number) => void;
+ onToggleMute?: () => void;
}
const VideoPlayer: React.FC = ({
- videoRef,
- currentTime,
- duration,
- isPlaying,
- isMuted = false,
- onPlayPause,
- onSeek,
- onToggleMute
+ videoRef,
+ currentTime,
+ duration,
+ isPlaying,
+ isMuted = false,
+ onPlayPause,
+ onSeek,
+ onToggleMute,
}) => {
- const progressRef = useRef(null);
- const [isIOS, setIsIOS] = useState(false);
- const [hasInitialized, setHasInitialized] = useState(false);
- const [lastPosition, setLastPosition] = useState(null);
- const [isDraggingProgress, setIsDraggingProgress] = useState(false);
- const isDraggingProgressRef = useRef(false);
- const [tooltipPosition, setTooltipPosition] = useState({ x: 0 });
- const [tooltipTime, setTooltipTime] = useState(0);
+ const progressRef = useRef(null);
+ const [isIOS, setIsIOS] = useState(false);
+ const [hasInitialized, setHasInitialized] = useState(false);
+ const [lastPosition, setLastPosition] = useState(null);
+ const [isDraggingProgress, setIsDraggingProgress] = useState(false);
+ const isDraggingProgressRef = useRef(false);
+ const [tooltipPosition, setTooltipPosition] = useState({
+ x: 0,
+ });
+ const [tooltipTime, setTooltipTime] = useState(0);
- const sampleVideoUrl =
- (typeof window !== "undefined" && (window as any).MEDIA_DATA?.videoUrl) ||
- "/videos/sample-video-10m.mp4";
+ const sampleVideoUrl =
+ (typeof window !== 'undefined' && (window as any).MEDIA_DATA?.videoUrl) || '/videos/sample-video.mp4';
- // Detect iOS device
- useEffect(() => {
- const checkIOS = () => {
- const userAgent = navigator.userAgent || navigator.vendor || (window as any).opera;
- return /iPad|iPhone|iPod/.test(userAgent) && !(window as any).MSStream;
- };
+ // Detect iOS device
+ useEffect(() => {
+ const checkIOS = () => {
+ const userAgent = navigator.userAgent || navigator.vendor || (window as any).opera;
+ return /iPad|iPhone|iPod/.test(userAgent) && !(window as any).MSStream;
+ };
- setIsIOS(checkIOS());
+ setIsIOS(checkIOS());
- // Check if video was previously initialized
- if (typeof window !== "undefined") {
- const wasInitialized = localStorage.getItem("video_initialized") === "true";
- setHasInitialized(wasInitialized);
- }
- }, []);
-
- // Update initialized state when video plays
- useEffect(() => {
- if (isPlaying && !hasInitialized) {
- setHasInitialized(true);
- if (typeof window !== "undefined") {
- localStorage.setItem("video_initialized", "true");
- }
- }
- }, [isPlaying, hasInitialized]);
-
- // Add iOS-specific attributes to prevent fullscreen playback
- useEffect(() => {
- const video = videoRef.current;
- if (!video) return;
-
- // These attributes need to be set directly on the DOM element
- // for iOS Safari to respect inline playback
- video.setAttribute("playsinline", "true");
- video.setAttribute("webkit-playsinline", "true");
- video.setAttribute("x-webkit-airplay", "allow");
-
- // Store the last known good position for iOS
- const handleTimeUpdate = () => {
- if (!isDraggingProgressRef.current) {
- setLastPosition(video.currentTime);
- if (typeof window !== "undefined") {
- window.lastSeekedPosition = video.currentTime;
+ // Check if video was previously initialized
+ if (typeof window !== 'undefined') {
+ const wasInitialized = localStorage.getItem('video_initialized') === 'true';
+ setHasInitialized(wasInitialized);
}
- }
+ }, []);
+
+ // Update initialized state when video plays
+ useEffect(() => {
+ if (isPlaying && !hasInitialized) {
+ setHasInitialized(true);
+ if (typeof window !== 'undefined') {
+ localStorage.setItem('video_initialized', 'true');
+ }
+ }
+ }, [isPlaying, hasInitialized]);
+
+ // Add iOS-specific attributes to prevent fullscreen playback
+ useEffect(() => {
+ const video = videoRef.current;
+ if (!video) return;
+
+ // These attributes need to be set directly on the DOM element
+ // for iOS Safari to respect inline playback
+ video.setAttribute('playsinline', 'true');
+ video.setAttribute('webkit-playsinline', 'true');
+ video.setAttribute('x-webkit-airplay', 'allow');
+
+ // Store the last known good position for iOS
+ const handleTimeUpdate = () => {
+ if (!isDraggingProgressRef.current) {
+ setLastPosition(video.currentTime);
+ if (typeof window !== 'undefined') {
+ window.lastSeekedPosition = video.currentTime;
+ }
+ }
+ };
+
+ // Handle iOS-specific play/pause state
+ const handlePlay = () => {
+ logger.debug('Video play event fired');
+ if (isIOS) {
+ setHasInitialized(true);
+ localStorage.setItem('video_initialized', 'true');
+ }
+ };
+
+ const handlePause = () => {
+ logger.debug('Video pause event fired');
+ };
+
+ video.addEventListener('timeupdate', handleTimeUpdate);
+ video.addEventListener('play', handlePlay);
+ video.addEventListener('pause', handlePause);
+
+ return () => {
+ video.removeEventListener('timeupdate', handleTimeUpdate);
+ video.removeEventListener('play', handlePlay);
+ video.removeEventListener('pause', handlePause);
+ };
+ }, [videoRef, isIOS, isDraggingProgressRef]);
+
+ // Save current time to lastPosition when it changes (from external seeking)
+ useEffect(() => {
+ setLastPosition(currentTime);
+ }, [currentTime]);
+
+ // Jump 10 seconds forward
+ const handleForward = () => {
+ const newTime = Math.min(currentTime + 10, duration);
+ onSeek(newTime);
+ setLastPosition(newTime);
};
- // Handle iOS-specific play/pause state
- const handlePlay = () => {
- logger.debug("Video play event fired");
- if (isIOS) {
- setHasInitialized(true);
- localStorage.setItem("video_initialized", "true");
- }
+ // Jump 10 seconds backward
+ const handleBackward = () => {
+ const newTime = Math.max(currentTime - 10, 0);
+ onSeek(newTime);
+ setLastPosition(newTime);
};
- const handlePause = () => {
- logger.debug("Video pause event fired");
+ // Calculate progress percentage
+ const progressPercentage = duration > 0 ? (currentTime / duration) * 100 : 0;
+
+ // Handle start of progress bar dragging
+ const handleProgressDragStart = (e: React.MouseEvent) => {
+ e.preventDefault();
+
+ setIsDraggingProgress(true);
+ isDraggingProgressRef.current = true;
+
+ // Get initial position
+ handleProgressDrag(e);
+
+ // Set up document-level event listeners for mouse movement and release
+ const handleMouseMove = (moveEvent: MouseEvent) => {
+ if (isDraggingProgressRef.current) {
+ handleProgressDrag(moveEvent);
+ }
+ };
+
+ const handleMouseUp = () => {
+ setIsDraggingProgress(false);
+ isDraggingProgressRef.current = false;
+ document.removeEventListener('mousemove', handleMouseMove);
+ document.removeEventListener('mouseup', handleMouseUp);
+ };
+
+ document.addEventListener('mousemove', handleMouseMove);
+ document.addEventListener('mouseup', handleMouseUp);
};
- video.addEventListener("timeupdate", handleTimeUpdate);
- video.addEventListener("play", handlePlay);
- video.addEventListener("pause", handlePause);
+ // Handle progress dragging for both mouse and touch events
+ const handleProgressDrag = (e: MouseEvent | React.MouseEvent) => {
+ if (!progressRef.current) return;
- return () => {
- video.removeEventListener("timeupdate", handleTimeUpdate);
- video.removeEventListener("play", handlePlay);
- video.removeEventListener("pause", handlePause);
- };
- }, [videoRef, isIOS, isDraggingProgressRef]);
+ const rect = progressRef.current.getBoundingClientRect();
+ const clickPosition = Math.max(0, Math.min(1, (e.clientX - rect.left) / rect.width));
+ const seekTime = duration * clickPosition;
- // Save current time to lastPosition when it changes (from external seeking)
- useEffect(() => {
- setLastPosition(currentTime);
- }, [currentTime]);
+ // Update tooltip position and time
+ setTooltipPosition({
+ x: e.clientX,
+ });
+ setTooltipTime(seekTime);
- // Jump 10 seconds forward
- const handleForward = () => {
- const newTime = Math.min(currentTime + 10, duration);
- onSeek(newTime);
- setLastPosition(newTime);
- };
+ // Store position locally for iOS Safari - critical for timeline seeking
+ setLastPosition(seekTime);
- // Jump 10 seconds backward
- const handleBackward = () => {
- const newTime = Math.max(currentTime - 10, 0);
- onSeek(newTime);
- setLastPosition(newTime);
- };
+ // Also store globally for integration with other components
+ if (typeof window !== 'undefined') {
+ (window as any).lastSeekedPosition = seekTime;
+ }
- // Calculate progress percentage
- const progressPercentage = duration > 0 ? (currentTime / duration) * 100 : 0;
-
- // Handle start of progress bar dragging
- const handleProgressDragStart = (e: React.MouseEvent) => {
- e.preventDefault();
-
- setIsDraggingProgress(true);
- isDraggingProgressRef.current = true;
-
- // Get initial position
- handleProgressDrag(e);
-
- // Set up document-level event listeners for mouse movement and release
- const handleMouseMove = (moveEvent: MouseEvent) => {
- if (isDraggingProgressRef.current) {
- handleProgressDrag(moveEvent);
- }
+ onSeek(seekTime);
};
- const handleMouseUp = () => {
- setIsDraggingProgress(false);
- isDraggingProgressRef.current = false;
- document.removeEventListener("mousemove", handleMouseMove);
- document.removeEventListener("mouseup", handleMouseUp);
+ // Handle touch events for progress bar
+ const handleProgressTouchStart = (e: React.TouchEvent) => {
+ if (!progressRef.current || !e.touches[0]) return;
+ e.preventDefault();
+
+ setIsDraggingProgress(true);
+ isDraggingProgressRef.current = true;
+
+ // Get initial position using touch
+ handleProgressTouchMove(e);
+
+ // Set up document-level event listeners for touch movement and release
+ const handleTouchMove = (moveEvent: TouchEvent) => {
+ if (isDraggingProgressRef.current) {
+ handleProgressTouchMove(moveEvent);
+ }
+ };
+
+ const handleTouchEnd = () => {
+ setIsDraggingProgress(false);
+ isDraggingProgressRef.current = false;
+ document.removeEventListener('touchmove', handleTouchMove);
+ document.removeEventListener('touchend', handleTouchEnd);
+ document.removeEventListener('touchcancel', handleTouchEnd);
+ };
+
+ document.addEventListener('touchmove', handleTouchMove, {
+ passive: false,
+ });
+ document.addEventListener('touchend', handleTouchEnd);
+ document.addEventListener('touchcancel', handleTouchEnd);
};
- document.addEventListener("mousemove", handleMouseMove);
- document.addEventListener("mouseup", handleMouseUp);
- };
+ // Handle touch dragging on progress bar
+ const handleProgressTouchMove = (e: TouchEvent | React.TouchEvent) => {
+ if (!progressRef.current) return;
- // Handle progress dragging for both mouse and touch events
- const handleProgressDrag = (e: MouseEvent | React.MouseEvent) => {
- if (!progressRef.current) return;
+ // Get the touch coordinates
+ const touch = 'touches' in e ? e.touches[0] : null;
+ if (!touch) return;
- const rect = progressRef.current.getBoundingClientRect();
- const clickPosition = Math.max(0, Math.min(1, (e.clientX - rect.left) / rect.width));
- const seekTime = duration * clickPosition;
+ e.preventDefault(); // Prevent scrolling while dragging
- // Update tooltip position and time
- setTooltipPosition({ x: e.clientX });
- setTooltipTime(seekTime);
+ const rect = progressRef.current.getBoundingClientRect();
+ const touchPosition = Math.max(0, Math.min(1, (touch.clientX - rect.left) / rect.width));
+ const seekTime = duration * touchPosition;
- // Store position locally for iOS Safari - critical for timeline seeking
- setLastPosition(seekTime);
+ // Update tooltip position and time
+ setTooltipPosition({
+ x: touch.clientX,
+ });
+ setTooltipTime(seekTime);
- // Also store globally for integration with other components
- if (typeof window !== "undefined") {
- (window as any).lastSeekedPosition = seekTime;
- }
+ // Store position for iOS Safari
+ setLastPosition(seekTime);
- onSeek(seekTime);
- };
+ // Also store globally for integration with other components
+ if (typeof window !== 'undefined') {
+ (window as any).lastSeekedPosition = seekTime;
+ }
- // Handle touch events for progress bar
- const handleProgressTouchStart = (e: React.TouchEvent) => {
- if (!progressRef.current || !e.touches[0]) return;
- e.preventDefault();
-
- setIsDraggingProgress(true);
- isDraggingProgressRef.current = true;
-
- // Get initial position using touch
- handleProgressTouchMove(e);
-
- // Set up document-level event listeners for touch movement and release
- const handleTouchMove = (moveEvent: TouchEvent) => {
- if (isDraggingProgressRef.current) {
- handleProgressTouchMove(moveEvent);
- }
+ onSeek(seekTime);
};
- const handleTouchEnd = () => {
- setIsDraggingProgress(false);
- isDraggingProgressRef.current = false;
- document.removeEventListener("touchmove", handleTouchMove);
- document.removeEventListener("touchend", handleTouchEnd);
- document.removeEventListener("touchcancel", handleTouchEnd);
+ // Handle click on progress bar (for non-drag interactions)
+ const handleProgressClick = (e: React.MouseEvent) => {
+ // If we're already dragging, don't handle the click
+ if (isDraggingProgress) return;
+
+ if (progressRef.current) {
+ const rect = progressRef.current.getBoundingClientRect();
+ const clickPosition = (e.clientX - rect.left) / rect.width;
+ const seekTime = duration * clickPosition;
+
+ // Store position locally for iOS Safari - critical for timeline seeking
+ setLastPosition(seekTime);
+
+ // Also store globally for integration with other components
+ if (typeof window !== 'undefined') {
+ (window as any).lastSeekedPosition = seekTime;
+ }
+
+ onSeek(seekTime);
+ }
};
- document.addEventListener("touchmove", handleTouchMove, { passive: false });
- document.addEventListener("touchend", handleTouchEnd);
- document.addEventListener("touchcancel", handleTouchEnd);
- };
+ // Handle toggling fullscreen
+ const handleFullscreen = () => {
+ if (videoRef.current) {
+ if (document.fullscreenElement) {
+ document.exitFullscreen();
+ } else {
+ videoRef.current.requestFullscreen();
+ }
+ }
+ };
- // Handle touch dragging on progress bar
- const handleProgressTouchMove = (e: TouchEvent | React.TouchEvent) => {
- if (!progressRef.current) return;
+ // Handle click on video to play/pause
+ const handleVideoClick = () => {
+ const video = videoRef.current;
+ if (!video) return;
- // Get the touch coordinates
- const touch = "touches" in e ? e.touches[0] : null;
- if (!touch) return;
+ // If the video is paused, we want to play it
+ if (video.paused) {
+ // For iOS Safari: Before playing, explicitly seek to the remembered position
+ if (isIOS && lastPosition !== null && lastPosition > 0) {
+ logger.debug('iOS: Explicitly setting position before play:', lastPosition);
- e.preventDefault(); // Prevent scrolling while dragging
+ // First, seek to the position
+ video.currentTime = lastPosition;
- const rect = progressRef.current.getBoundingClientRect();
- const touchPosition = Math.max(0, Math.min(1, (touch.clientX - rect.left) / rect.width));
- const seekTime = duration * touchPosition;
+ // Use a small timeout to ensure seeking is complete before play
+ setTimeout(() => {
+ if (videoRef.current) {
+ // Try to play with proper promise handling
+ videoRef.current
+ .play()
+ .then(() => {
+ logger.debug(
+ 'iOS: Play started successfully at position:',
+ videoRef.current?.currentTime
+ );
+ onPlayPause(); // Update parent state after successful play
+ })
+ .catch((err) => {
+ console.error('iOS: Error playing video:', err);
+ });
+ }
+ }, 50);
+ } else {
+ // Normal play (non-iOS or no remembered position)
+ video
+ .play()
+ .then(() => {
+ logger.debug('Normal: Play started successfully');
+ onPlayPause(); // Update parent state after successful play
+ })
+ .catch((err) => {
+ console.error('Error playing video:', err);
+ });
+ }
+ } else {
+ // If playing, pause and update state
+ video.pause();
+ onPlayPause();
+ }
+ };
- // Update tooltip position and time
- setTooltipPosition({ x: touch.clientX });
- setTooltipTime(seekTime);
-
- // Store position for iOS Safari
- setLastPosition(seekTime);
-
- // Also store globally for integration with other components
- if (typeof window !== "undefined") {
- (window as any).lastSeekedPosition = seekTime;
- }
-
- onSeek(seekTime);
- };
-
- // Handle click on progress bar (for non-drag interactions)
- const handleProgressClick = (e: React.MouseEvent) => {
- // If we're already dragging, don't handle the click
- if (isDraggingProgress) return;
-
- if (progressRef.current) {
- const rect = progressRef.current.getBoundingClientRect();
- const clickPosition = (e.clientX - rect.left) / rect.width;
- const seekTime = duration * clickPosition;
-
- // Store position locally for iOS Safari - critical for timeline seeking
- setLastPosition(seekTime);
-
- // Also store globally for integration with other components
- if (typeof window !== "undefined") {
- (window as any).lastSeekedPosition = seekTime;
- }
-
- onSeek(seekTime);
- }
- };
-
- // Handle toggling fullscreen
- const handleFullscreen = () => {
- if (videoRef.current) {
- if (document.fullscreenElement) {
- document.exitFullscreen();
- } else {
- videoRef.current.requestFullscreen();
- }
- }
- };
-
- // Handle click on video to play/pause
- const handleVideoClick = () => {
- const video = videoRef.current;
- if (!video) return;
-
- // If the video is paused, we want to play it
- if (video.paused) {
- // For iOS Safari: Before playing, explicitly seek to the remembered position
- if (isIOS && lastPosition !== null && lastPosition > 0) {
- logger.debug("iOS: Explicitly setting position before play:", lastPosition);
-
- // First, seek to the position
- video.currentTime = lastPosition;
-
- // Use a small timeout to ensure seeking is complete before play
- setTimeout(() => {
- if (videoRef.current) {
- // Try to play with proper promise handling
- videoRef.current
- .play()
- .then(() => {
- logger.debug(
- "iOS: Play started successfully at position:",
- videoRef.current?.currentTime
- );
- onPlayPause(); // Update parent state after successful play
- })
- .catch((err) => {
- console.error("iOS: Error playing video:", err);
- });
- }
- }, 50);
- } else {
- // Normal play (non-iOS or no remembered position)
- video
- .play()
- .then(() => {
- logger.debug("Normal: Play started successfully");
- onPlayPause(); // Update parent state after successful play
- })
- .catch((err) => {
- console.error("Error playing video:", err);
- });
- }
- } else {
- // If playing, pause and update state
- video.pause();
- onPlayPause();
- }
- };
-
- return (
-
-
-
- Your browser doesn't support HTML5 video.
-
-
- {/* iOS First-play indicator - only shown on first visit for iOS devices when not initialized */}
- {isIOS && !hasInitialized && !isPlaying && (
-
-
Tap Play to initialize video controls
-
- )}
-
- {/* Play/Pause Indicator (shows based on current state) */}
-
-
- {/* Video Controls Overlay */}
-
- {/* Time and Duration */}
-
- {formatTime(currentTime)}
- / {formatTime(duration)}
-
-
- {/* Progress Bar with enhanced dragging */}
-
-
-
-
- {/* Floating time tooltip when dragging */}
- {isDraggingProgress && (
-
+
- {formatDetailedTime(tooltipTime)}
+
+ Your browser doesn't support HTML5 video.
+
+
+ {/* iOS First-play indicator - only shown on first visit for iOS devices when not initialized */}
+ {isIOS && !hasInitialized && !isPlaying && (
+
+
Tap Play to initialize video controls
+
+ )}
+
+ {/* Play/Pause Indicator (shows based on current state) */}
+
+
+ {/* Video Controls Overlay */}
+
+ {/* Time and Duration */}
+
+ {formatTime(currentTime)}
+ / {formatTime(duration)}
+
+
+ {/* Progress Bar with enhanced dragging */}
+
+
+
+
+ {/* Floating time tooltip when dragging */}
+ {isDraggingProgress && (
+
+ {formatDetailedTime(tooltipTime)}
+
+ )}
+
+
+ {/* Controls - Mute and Fullscreen buttons */}
+
+ {/* Mute/Unmute Button */}
+ {onToggleMute && (
+
+ {isMuted ? (
+
+
+
+
+
+
+
+ ) : (
+
+
+
+
+ )}
+
+ )}
+
+ {/* Fullscreen Button */}
+
+
+
+
+
+
- )}
-
- {/* Controls - Mute and Fullscreen buttons */}
-
- {/* Mute/Unmute Button */}
- {onToggleMute && (
-
- {isMuted ? (
-
-
-
-
-
-
-
- ) : (
-
-
-
-
- )}
-
- )}
-
- {/* Fullscreen Button */}
-
-
-
-
-
-
-
-
- );
+ );
};
export default VideoPlayer;
diff --git a/frontend-tools/video-editor/client/src/hooks/useVideoTrimmer.tsx b/frontend-tools/video-editor/client/src/hooks/useVideoTrimmer.tsx
index 718ff86c..612b5586 100644
--- a/frontend-tools/video-editor/client/src/hooks/useVideoTrimmer.tsx
+++ b/frontend-tools/video-editor/client/src/hooks/useVideoTrimmer.tsx
@@ -1,967 +1,953 @@
-import { useState, useRef, useEffect } from "react";
-import { generateThumbnail } from "@/lib/videoUtils";
-import { formatDetailedTime } from "@/lib/timeUtils";
-import logger from "@/lib/logger";
-import type { Segment } from "@/components/ClipSegments";
+import { useState, useRef, useEffect } from 'react';
+import { generateThumbnail } from '@/lib/videoUtils';
+import { formatDetailedTime } from '@/lib/timeUtils';
+import logger from '@/lib/logger';
+import type { Segment } from '@/components/ClipSegments';
// Represents a state of the editor for undo/redo
interface EditorState {
- trimStart: number;
- trimEnd: number;
- splitPoints: number[];
- clipSegments: Segment[];
- action?: string;
+ trimStart: number;
+ trimEnd: number;
+ splitPoints: number[];
+ clipSegments: Segment[];
+ action?: string;
}
const useVideoTrimmer = () => {
- // Video element reference and state
- const videoRef = useRef
(null);
- const [currentTime, setCurrentTime] = useState(0);
- const [duration, setDuration] = useState(0);
- const [isPlaying, setIsPlaying] = useState(false);
- const [isMuted, setIsMuted] = useState(false);
+ // Video element reference and state
+ const videoRef = useRef(null);
+ const [currentTime, setCurrentTime] = useState(0);
+ const [duration, setDuration] = useState(0);
+ const [isPlaying, setIsPlaying] = useState(false);
+ const [isMuted, setIsMuted] = useState(false);
- // Timeline state
- const [thumbnails, setThumbnails] = useState([]);
- const [trimStart, setTrimStart] = useState(0);
- const [trimEnd, setTrimEnd] = useState(0);
- const [splitPoints, setSplitPoints] = useState([]);
- const [zoomLevel, setZoomLevel] = useState(1); // Start with 1x zoom level
+ // Timeline state
+ const [thumbnails, setThumbnails] = useState([]);
+ const [trimStart, setTrimStart] = useState(0);
+ const [trimEnd, setTrimEnd] = useState(0);
+ const [splitPoints, setSplitPoints] = useState([]);
+ const [zoomLevel, setZoomLevel] = useState(1); // Start with 1x zoom level
- // Clip segments state
- const [clipSegments, setClipSegments] = useState([]);
+ // Clip segments state
+ const [clipSegments, setClipSegments] = useState([]);
- // History state for undo/redo
- const [history, setHistory] = useState([]);
- const [historyPosition, setHistoryPosition] = useState(-1);
+ // History state for undo/redo
+ const [history, setHistory] = useState([]);
+ const [historyPosition, setHistoryPosition] = useState(-1);
- // Track unsaved changes
- const [hasUnsavedChanges, setHasUnsavedChanges] = useState(false);
+ // Track unsaved changes
+ const [hasUnsavedChanges, setHasUnsavedChanges] = useState(false);
- // State for playing segments
- const [isPlayingSegments, setIsPlayingSegments] = useState(false);
- const [currentSegmentIndex, setCurrentSegmentIndex] = useState(0);
+ // State for playing segments
+ const [isPlayingSegments, setIsPlayingSegments] = useState(false);
+ const [currentSegmentIndex, setCurrentSegmentIndex] = useState(0);
- // Monitor for history changes
- useEffect(() => {
- if (history.length > 0) {
- // For debugging - moved to console.debug
- if (process.env.NODE_ENV === "development") {
- console.debug(
- `History state updated: ${history.length} entries, position: ${historyPosition}`
- );
- // Log actions in history to help debug undo/redo
- const actions = history.map(
- (state, idx) =>
- `${idx}: ${state.action || "unknown"} (segments: ${state.clipSegments.length})`
- );
- console.debug("History actions:", actions);
- }
+ // Monitor for history changes
+ useEffect(() => {
+ if (history.length > 0) {
+ // For debugging - moved to console.debug
+ if (process.env.NODE_ENV === 'development') {
+ console.debug(`History state updated: ${history.length} entries, position: ${historyPosition}`);
+ // Log actions in history to help debug undo/redo
+ const actions = history.map(
+ (state, idx) => `${idx}: ${state.action || 'unknown'} (segments: ${state.clipSegments.length})`
+ );
+ console.debug('History actions:', actions);
+ }
- // If there's at least one history entry and it wasn't a save operation, mark as having unsaved changes
- const lastAction = history[historyPosition]?.action || "";
- if (lastAction !== "save" && lastAction !== "save_copy" && lastAction !== "save_segments") {
- setHasUnsavedChanges(true);
- }
- }
- }, [history, historyPosition]);
+ // If there's at least one history entry and it wasn't a save operation, mark as having unsaved changes
+ const lastAction = history[historyPosition]?.action || '';
+ if (lastAction !== 'save' && lastAction !== 'save_copy' && lastAction !== 'save_segments') {
+ setHasUnsavedChanges(true);
+ }
+ }
+ }, [history, historyPosition]);
- // Set up page unload warning
- useEffect(() => {
- // Event handler for beforeunload
- const handleBeforeUnload = (e: BeforeUnloadEvent) => {
- if (hasUnsavedChanges) {
- // Standard way of showing a confirmation dialog before leaving
- const message = "Your edits will get lost if you leave the page. Do you want to continue?";
- e.preventDefault();
- e.returnValue = message; // Chrome requires returnValue to be set
- return message; // For other browsers
- }
- };
-
- // Add event listener
- window.addEventListener("beforeunload", handleBeforeUnload);
-
- // Clean up
- return () => {
- window.removeEventListener("beforeunload", handleBeforeUnload);
- };
- }, [hasUnsavedChanges]);
-
- // Initialize video event listeners
- useEffect(() => {
- const video = videoRef.current;
- if (!video) return;
-
- const handleLoadedMetadata = () => {
- setDuration(video.duration);
- setTrimEnd(video.duration);
-
- // Generate placeholders and create initial segment
- const initializeEditor = async () => {
- // Generate thumbnail for initial segment
- const segmentThumbnail = await generateThumbnail(video, video.duration / 2);
-
- // Create an initial segment that spans the entire video
- const initialSegment: Segment = {
- id: 1,
- name: "segment",
- startTime: 0,
- endTime: video.duration,
- thumbnail: segmentThumbnail
+ // Set up page unload warning
+ useEffect(() => {
+ // Event handler for beforeunload
+ const handleBeforeUnload = (e: BeforeUnloadEvent) => {
+ if (hasUnsavedChanges) {
+ // Standard way of showing a confirmation dialog before leaving
+ const message = 'Your edits will get lost if you leave the page. Do you want to continue?';
+ e.preventDefault();
+ e.returnValue = message; // Chrome requires returnValue to be set
+ return message; // For other browsers
+ }
};
- // Initialize history state with the full-length segment
- const initialState: EditorState = {
- trimStart: 0,
- trimEnd: video.duration,
- splitPoints: [],
- clipSegments: [initialSegment]
+ // Add event listener
+ window.addEventListener('beforeunload', handleBeforeUnload);
+
+ // Clean up
+ return () => {
+ window.removeEventListener('beforeunload', handleBeforeUnload);
};
+ }, [hasUnsavedChanges]);
- setHistory([initialState]);
- setHistoryPosition(0);
- setClipSegments([initialSegment]);
+ // Initialize video event listeners
+ useEffect(() => {
+ const video = videoRef.current;
+ if (!video) return;
- // Generate timeline thumbnails
- const count = 6;
- const interval = video.duration / count;
- const placeholders: string[] = [];
+ const handleLoadedMetadata = () => {
+ setDuration(video.duration);
+ setTrimEnd(video.duration);
- for (let i = 0; i < count; i++) {
- const time = interval * i + interval / 2;
- const thumbnail = await generateThumbnail(video, time);
- placeholders.push(thumbnail);
- }
+ // Generate placeholders and create initial segment
+ const initializeEditor = async () => {
+ // Generate thumbnail for initial segment
+ const segmentThumbnail = await generateThumbnail(video, video.duration / 2);
- setThumbnails(placeholders);
- };
+ // Create an initial segment that spans the entire video
+ const initialSegment: Segment = {
+ id: 1,
+ name: 'segment',
+ startTime: 0,
+ endTime: video.duration,
+ thumbnail: segmentThumbnail,
+ };
- initializeEditor();
- };
+ // Initialize history state with the full-length segment
+ const initialState: EditorState = {
+ trimStart: 0,
+ trimEnd: video.duration,
+ splitPoints: [],
+ clipSegments: [initialSegment],
+ };
- const handleTimeUpdate = () => {
- setCurrentTime(video.currentTime);
- };
+ setHistory([initialState]);
+ setHistoryPosition(0);
+ setClipSegments([initialSegment]);
- const handlePlay = () => {
- setIsPlaying(true);
- setVideoInitialized(true);
- };
+ // Generate timeline thumbnails
+ const count = 6;
+ const interval = video.duration / count;
+ const placeholders: string[] = [];
- const handlePause = () => {
- setIsPlaying(false);
- };
+ for (let i = 0; i < count; i++) {
+ const time = interval * i + interval / 2;
+ const thumbnail = await generateThumbnail(video, time);
+ placeholders.push(thumbnail);
+ }
- const handleEnded = () => {
- setIsPlaying(false);
- video.currentTime = trimStart;
- };
-
- // Add event listeners
- video.addEventListener("loadedmetadata", handleLoadedMetadata);
- video.addEventListener("timeupdate", handleTimeUpdate);
- video.addEventListener("play", handlePlay);
- video.addEventListener("pause", handlePause);
- video.addEventListener("ended", handleEnded);
-
- return () => {
- // Remove event listeners
- video.removeEventListener("loadedmetadata", handleLoadedMetadata);
- video.removeEventListener("timeupdate", handleTimeUpdate);
- video.removeEventListener("play", handlePlay);
- video.removeEventListener("pause", handlePause);
- video.removeEventListener("ended", handleEnded);
- };
- }, []);
-
- // Play/pause video
- const playPauseVideo = () => {
- const video = videoRef.current;
- if (!video) return;
-
- if (isPlaying) {
- video.pause();
- } else {
- // iOS Safari fix: Use the last seeked position if available
- if (!isPlaying && typeof window !== "undefined" && window.lastSeekedPosition > 0) {
- // Only apply this if the video is not at the same position already
- // This avoids unnecessary seeking which might cause playback issues
- if (Math.abs(video.currentTime - window.lastSeekedPosition) > 0.1) {
- video.currentTime = window.lastSeekedPosition;
- }
- }
- // If at the end of the trim range, reset to the beginning
- else if (video.currentTime >= trimEnd) {
- video.currentTime = trimStart;
- }
-
- video
- .play()
- .then(() => {
- // Play started successfully
- // Reset the last seeked position after successfully starting playback
- if (typeof window !== "undefined") {
- window.lastSeekedPosition = 0;
- }
- })
- .catch((err) => {
- console.error("Error starting playback:", err);
- setIsPlaying(false); // Reset state if play failed
- });
- }
- };
-
- // Seek to a specific time
- const seekVideo = (time: number) => {
- const video = videoRef.current;
- if (!video) return;
-
- // Track if the video was playing before seeking
- const wasPlaying = !video.paused;
-
- // Update the video position
- video.currentTime = time;
- setCurrentTime(time);
-
- // Store the position in a global state accessible to iOS Safari
- // This ensures when play is pressed later, it remembers the position
- if (typeof window !== "undefined") {
- window.lastSeekedPosition = time;
- }
-
- // Resume playback if it was playing before
- if (wasPlaying) {
- // Play immediately without delay
- video
- .play()
- .then(() => {
- setIsPlaying(true); // Update state to reflect we're playing
- })
- .catch((err) => {
- console.error("Error resuming playback:", err);
- setIsPlaying(false);
- });
- }
- };
-
- // Save the current state to history with a debounce buffer
- // This helps prevent multiple rapid saves for small adjustments
- const saveState = (action?: string) => {
- // Deep clone to ensure state is captured correctly
- const newState: EditorState = {
- trimStart,
- trimEnd,
- splitPoints: [...splitPoints],
- clipSegments: JSON.parse(JSON.stringify(clipSegments)), // Deep clone to avoid reference issues
- action: action || "manual_save" // Track the action that triggered this save
- };
-
- // Check if state is significantly different from last saved state
- const lastState = history[historyPosition];
-
- // Helper function to compare segments deeply
- const haveSegmentsChanged = () => {
- if (!lastState || lastState.clipSegments.length !== newState.clipSegments.length) {
- return true; // Different length means significant change
- }
-
- // Compare each segment's start and end times
- for (let i = 0; i < newState.clipSegments.length; i++) {
- const oldSeg = lastState.clipSegments[i];
- const newSeg = newState.clipSegments[i];
-
- if (!oldSeg || !newSeg) return true;
-
- // Check if any time values changed by more than 0.001 seconds (1ms)
- if (
- Math.abs(oldSeg.startTime - newSeg.startTime) > 0.001 ||
- Math.abs(oldSeg.endTime - newSeg.endTime) > 0.001
- ) {
- return true;
- }
- }
-
- return false; // No significant changes found
- };
-
- const isSignificantChange =
- !lastState ||
- lastState.trimStart !== newState.trimStart ||
- lastState.trimEnd !== newState.trimEnd ||
- lastState.splitPoints.length !== newState.splitPoints.length ||
- haveSegmentsChanged();
-
- // Additionally, check if there's an explicit action from a UI event
- const hasExplicitActionFlag = newState.action !== undefined;
-
- // Only proceed if this is a significant change or if explicitly requested
- if (isSignificantChange || hasExplicitActionFlag) {
- // Get the current position to avoid closure issues
- const currentPosition = historyPosition;
-
- // Use functional updates to ensure we're working with the latest state
- setHistory((prevHistory) => {
- // If we're not at the end of history, truncate
- if (currentPosition < prevHistory.length - 1) {
- const newHistory = prevHistory.slice(0, currentPosition + 1);
- return [...newHistory, newState];
- } else {
- // Just append to current history
- return [...prevHistory, newState];
- }
- });
-
- // Update position using functional update
- setHistoryPosition((prev) => {
- const newPosition = prev + 1;
- // "Saved state to history position", newPosition)
- return newPosition;
- });
- } else {
- // logger.debug("Skipped non-significant state save");
- }
- };
-
- // Listen for trim handle update events
- useEffect(() => {
- const handleTrimUpdate = (e: CustomEvent) => {
- if (e.detail) {
- const { time, isStart, recordHistory, action } = e.detail;
-
- if (isStart) {
- setTrimStart(time);
- } else {
- setTrimEnd(time);
- }
-
- // Only record in history if explicitly requested
- if (recordHistory) {
- // Use a small timeout to ensure the state is updated
- setTimeout(() => {
- saveState(action || (isStart ? "adjust_trim_start" : "adjust_trim_end"));
- }, 10);
- }
- }
- };
-
- document.addEventListener("update-trim", handleTrimUpdate as EventListener);
-
- return () => {
- document.removeEventListener("update-trim", handleTrimUpdate as EventListener);
- };
- }, []);
-
- // Listen for segment update events and split-at-time events
- useEffect(() => {
- const handleUpdateSegments = (e: CustomEvent) => {
- if (e.detail && e.detail.segments) {
- // Check if this is a significant change that should be recorded in history
- // Default to true to ensure all segment changes are recorded
- const isSignificantChange = e.detail.recordHistory !== false;
- // Get the action type if provided
- const actionType = e.detail.action || "update_segments";
-
- // Log the update details
- logger.debug(
- `Updating segments with action: ${actionType}, recordHistory: ${isSignificantChange ? "true" : "false"}`
- );
-
- // Update segment state immediately for UI feedback
- setClipSegments(e.detail.segments);
-
- // Always save state to history for non-intermediate actions
- if (isSignificantChange) {
- // A slight delay helps avoid race conditions but we need to
- // ensure we capture the state properly
- setTimeout(() => {
- // Deep clone to ensure state is captured correctly
- const segmentsClone = JSON.parse(JSON.stringify(e.detail.segments));
-
- // Create a complete state snapshot
- const stateWithAction: EditorState = {
- trimStart,
- trimEnd,
- splitPoints: [...splitPoints],
- clipSegments: segmentsClone,
- action: actionType // Store the action type in the state
+ setThumbnails(placeholders);
};
- // Get the current history position to ensure we're using the latest value
- const currentHistoryPosition = historyPosition;
+ initializeEditor();
+ };
- // Update history with the functional pattern to avoid stale closure issues
+ const handleTimeUpdate = () => {
+ setCurrentTime(video.currentTime);
+ };
+
+ const handlePlay = () => {
+ setIsPlaying(true);
+ setVideoInitialized(true);
+ };
+
+ const handlePause = () => {
+ setIsPlaying(false);
+ };
+
+ const handleEnded = () => {
+ setIsPlaying(false);
+ video.currentTime = trimStart;
+ };
+
+ // Add event listeners
+ video.addEventListener('loadedmetadata', handleLoadedMetadata);
+ video.addEventListener('timeupdate', handleTimeUpdate);
+ video.addEventListener('play', handlePlay);
+ video.addEventListener('pause', handlePause);
+ video.addEventListener('ended', handleEnded);
+
+ return () => {
+ // Remove event listeners
+ video.removeEventListener('loadedmetadata', handleLoadedMetadata);
+ video.removeEventListener('timeupdate', handleTimeUpdate);
+ video.removeEventListener('play', handlePlay);
+ video.removeEventListener('pause', handlePause);
+ video.removeEventListener('ended', handleEnded);
+ };
+ }, []);
+
+ // Play/pause video
+ const playPauseVideo = () => {
+ const video = videoRef.current;
+ if (!video) return;
+
+ if (isPlaying) {
+ video.pause();
+ } else {
+ // iOS Safari fix: Use the last seeked position if available
+ if (!isPlaying && typeof window !== 'undefined' && window.lastSeekedPosition > 0) {
+ // Only apply this if the video is not at the same position already
+ // This avoids unnecessary seeking which might cause playback issues
+ if (Math.abs(video.currentTime - window.lastSeekedPosition) > 0.1) {
+ video.currentTime = window.lastSeekedPosition;
+ }
+ }
+ // If at the end of the trim range, reset to the beginning
+ else if (video.currentTime >= trimEnd) {
+ video.currentTime = trimStart;
+ }
+
+ video
+ .play()
+ .then(() => {
+ // Play started successfully
+ // Reset the last seeked position after successfully starting playback
+ if (typeof window !== 'undefined') {
+ window.lastSeekedPosition = 0;
+ }
+ })
+ .catch((err) => {
+ console.error('Error starting playback:', err);
+ setIsPlaying(false); // Reset state if play failed
+ });
+ }
+ };
+
+ // Seek to a specific time
+ const seekVideo = (time: number) => {
+ const video = videoRef.current;
+ if (!video) return;
+
+ // Track if the video was playing before seeking
+ const wasPlaying = !video.paused;
+
+ // Update the video position
+ video.currentTime = time;
+ setCurrentTime(time);
+
+ // Store the position in a global state accessible to iOS Safari
+ // This ensures when play is pressed later, it remembers the position
+ if (typeof window !== 'undefined') {
+ window.lastSeekedPosition = time;
+ }
+
+ // Resume playback if it was playing before
+ if (wasPlaying) {
+ // Play immediately without delay
+ video
+ .play()
+ .then(() => {
+ setIsPlaying(true); // Update state to reflect we're playing
+ })
+ .catch((err) => {
+ console.error('Error resuming playback:', err);
+ setIsPlaying(false);
+ });
+ }
+ };
+
+ // Save the current state to history with a debounce buffer
+ // This helps prevent multiple rapid saves for small adjustments
+ const saveState = (action?: string) => {
+ // Deep clone to ensure state is captured correctly
+ const newState: EditorState = {
+ trimStart,
+ trimEnd,
+ splitPoints: [...splitPoints],
+ clipSegments: JSON.parse(JSON.stringify(clipSegments)), // Deep clone to avoid reference issues
+ action: action || 'manual_save', // Track the action that triggered this save
+ };
+
+ // Check if state is significantly different from last saved state
+ const lastState = history[historyPosition];
+
+ // Helper function to compare segments deeply
+ const haveSegmentsChanged = () => {
+ if (!lastState || lastState.clipSegments.length !== newState.clipSegments.length) {
+ return true; // Different length means significant change
+ }
+
+ // Compare each segment's start and end times
+ for (let i = 0; i < newState.clipSegments.length; i++) {
+ const oldSeg = lastState.clipSegments[i];
+ const newSeg = newState.clipSegments[i];
+
+ if (!oldSeg || !newSeg) return true;
+
+ // Check if any time values changed by more than 0.001 seconds (1ms)
+ if (
+ Math.abs(oldSeg.startTime - newSeg.startTime) > 0.001 ||
+ Math.abs(oldSeg.endTime - newSeg.endTime) > 0.001
+ ) {
+ return true;
+ }
+ }
+
+ return false; // No significant changes found
+ };
+
+ const isSignificantChange =
+ !lastState ||
+ lastState.trimStart !== newState.trimStart ||
+ lastState.trimEnd !== newState.trimEnd ||
+ lastState.splitPoints.length !== newState.splitPoints.length ||
+ haveSegmentsChanged();
+
+ // Additionally, check if there's an explicit action from a UI event
+ const hasExplicitActionFlag = newState.action !== undefined;
+
+ // Only proceed if this is a significant change or if explicitly requested
+ if (isSignificantChange || hasExplicitActionFlag) {
+ // Get the current position to avoid closure issues
+ const currentPosition = historyPosition;
+
+ // Use functional updates to ensure we're working with the latest state
setHistory((prevHistory) => {
- // If we're not at the end of the history, truncate
- if (currentHistoryPosition < prevHistory.length - 1) {
- const newHistory = prevHistory.slice(0, currentHistoryPosition + 1);
- return [...newHistory, stateWithAction];
- } else {
- // Just append to current history
- return [...prevHistory, stateWithAction];
- }
+ // If we're not at the end of history, truncate
+ if (currentPosition < prevHistory.length - 1) {
+ const newHistory = prevHistory.slice(0, currentPosition + 1);
+ return [...newHistory, newState];
+ } else {
+ // Just append to current history
+ return [...prevHistory, newState];
+ }
});
- // Ensure the historyPosition is updated to the correct position
+ // Update position using functional update
setHistoryPosition((prev) => {
- const newPosition = prev + 1;
- logger.debug(
- `Saved state with action: ${actionType} to history position ${newPosition}`
- );
- return newPosition;
+ const newPosition = prev + 1;
+ // "Saved state to history position", newPosition)
+ return newPosition;
});
- }, 20); // Slightly increased delay to ensure state updates are complete
} else {
- logger.debug(
- `Skipped saving state to history for action: ${actionType} (recordHistory=false)`
- );
+ // logger.debug("Skipped non-significant state save");
}
- }
};
- const handleSplitSegment = async (e: Event) => {
- const customEvent = e as CustomEvent;
- if (
- customEvent.detail &&
- typeof customEvent.detail.time === "number" &&
- typeof customEvent.detail.segmentId === "number"
- ) {
- // Get the time and segment ID from the event
- const timeToSplit = customEvent.detail.time;
- const segmentId = customEvent.detail.segmentId;
+ // Listen for trim handle update events
+ useEffect(() => {
+ const handleTrimUpdate = (e: CustomEvent) => {
+ if (e.detail) {
+ const { time, isStart, recordHistory, action } = e.detail;
- // Move the current time to the split position
- seekVideo(timeToSplit);
+ if (isStart) {
+ setTrimStart(time);
+ } else {
+ setTrimEnd(time);
+ }
- // Find the segment to split
- const segmentToSplit = clipSegments.find((seg) => seg.id === segmentId);
- if (!segmentToSplit) return;
-
- // Make sure the split point is within the segment
- if (timeToSplit <= segmentToSplit.startTime || timeToSplit >= segmentToSplit.endTime) {
- return; // Can't split outside segment boundaries
- }
-
- // Create two new segments from the split
- const newSegments = [...clipSegments];
-
- // Remove the original segment
- const segmentIndex = newSegments.findIndex((seg) => seg.id === segmentId);
- if (segmentIndex === -1) return;
-
- newSegments.splice(segmentIndex, 1);
-
- // Create first half of the split segment - no thumbnail needed
- const firstHalf: Segment = {
- id: Date.now(),
- name: `${segmentToSplit.name}-A`,
- startTime: segmentToSplit.startTime,
- endTime: timeToSplit,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
+ // Only record in history if explicitly requested
+ if (recordHistory) {
+ // Use a small timeout to ensure the state is updated
+ setTimeout(() => {
+ saveState(action || (isStart ? 'adjust_trim_start' : 'adjust_trim_end'));
+ }, 10);
+ }
+ }
};
- // Create second half of the split segment - no thumbnail needed
- const secondHalf: Segment = {
- id: Date.now() + 1,
- name: `${segmentToSplit.name}-B`,
- startTime: timeToSplit,
- endTime: segmentToSplit.endTime,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
+ document.addEventListener('update-trim', handleTrimUpdate as EventListener);
+
+ return () => {
+ document.removeEventListener('update-trim', handleTrimUpdate as EventListener);
+ };
+ }, []);
+
+ // Listen for segment update events and split-at-time events
+ useEffect(() => {
+ const handleUpdateSegments = (e: CustomEvent) => {
+ if (e.detail && e.detail.segments) {
+ // Check if this is a significant change that should be recorded in history
+ // Default to true to ensure all segment changes are recorded
+ const isSignificantChange = e.detail.recordHistory !== false;
+ // Get the action type if provided
+ const actionType = e.detail.action || 'update_segments';
+
+ // Log the update details
+ logger.debug(
+ `Updating segments with action: ${actionType}, recordHistory: ${isSignificantChange ? 'true' : 'false'}`
+ );
+
+ // Update segment state immediately for UI feedback
+ setClipSegments(e.detail.segments);
+
+ // Always save state to history for non-intermediate actions
+ if (isSignificantChange) {
+ // A slight delay helps avoid race conditions but we need to
+ // ensure we capture the state properly
+ setTimeout(() => {
+ // Deep clone to ensure state is captured correctly
+ const segmentsClone = JSON.parse(JSON.stringify(e.detail.segments));
+
+ // Create a complete state snapshot
+ const stateWithAction: EditorState = {
+ trimStart,
+ trimEnd,
+ splitPoints: [...splitPoints],
+ clipSegments: segmentsClone,
+ action: actionType, // Store the action type in the state
+ };
+
+ // Get the current history position to ensure we're using the latest value
+ const currentHistoryPosition = historyPosition;
+
+ // Update history with the functional pattern to avoid stale closure issues
+ setHistory((prevHistory) => {
+ // If we're not at the end of the history, truncate
+ if (currentHistoryPosition < prevHistory.length - 1) {
+ const newHistory = prevHistory.slice(0, currentHistoryPosition + 1);
+ return [...newHistory, stateWithAction];
+ } else {
+ // Just append to current history
+ return [...prevHistory, stateWithAction];
+ }
+ });
+
+ // Ensure the historyPosition is updated to the correct position
+ setHistoryPosition((prev) => {
+ const newPosition = prev + 1;
+ logger.debug(`Saved state with action: ${actionType} to history position ${newPosition}`);
+ return newPosition;
+ });
+ }, 20); // Slightly increased delay to ensure state updates are complete
+ } else {
+ logger.debug(`Skipped saving state to history for action: ${actionType} (recordHistory=false)`);
+ }
+ }
};
- // Add the new segments
- newSegments.push(firstHalf, secondHalf);
+ const handleSplitSegment = async (e: Event) => {
+ const customEvent = e as CustomEvent;
+ if (
+ customEvent.detail &&
+ typeof customEvent.detail.time === 'number' &&
+ typeof customEvent.detail.segmentId === 'number'
+ ) {
+ // Get the time and segment ID from the event
+ const timeToSplit = customEvent.detail.time;
+ const segmentId = customEvent.detail.segmentId;
- // Sort segments by start time
- newSegments.sort((a, b) => a.startTime - b.startTime);
+ // Move the current time to the split position
+ seekVideo(timeToSplit);
- // Update state
- setClipSegments(newSegments);
- saveState("split_segment");
- }
+ // Find the segment to split
+ const segmentToSplit = clipSegments.find((seg) => seg.id === segmentId);
+ if (!segmentToSplit) return;
+
+ // Make sure the split point is within the segment
+ if (timeToSplit <= segmentToSplit.startTime || timeToSplit >= segmentToSplit.endTime) {
+ return; // Can't split outside segment boundaries
+ }
+
+ // Create two new segments from the split
+ const newSegments = [...clipSegments];
+
+ // Remove the original segment
+ const segmentIndex = newSegments.findIndex((seg) => seg.id === segmentId);
+ if (segmentIndex === -1) return;
+
+ newSegments.splice(segmentIndex, 1);
+
+ // Create first half of the split segment - no thumbnail needed
+ const firstHalf: Segment = {
+ id: Date.now(),
+ name: `${segmentToSplit.name}-A`,
+ startTime: segmentToSplit.startTime,
+ endTime: timeToSplit,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
+
+ // Create second half of the split segment - no thumbnail needed
+ const secondHalf: Segment = {
+ id: Date.now() + 1,
+ name: `${segmentToSplit.name}-B`,
+ startTime: timeToSplit,
+ endTime: segmentToSplit.endTime,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
+
+ // Add the new segments
+ newSegments.push(firstHalf, secondHalf);
+
+ // Sort segments by start time
+ newSegments.sort((a, b) => a.startTime - b.startTime);
+
+ // Update state
+ setClipSegments(newSegments);
+ saveState('split_segment');
+ }
+ };
+
+ // Handle delete segment event
+ const handleDeleteSegment = async (e: Event) => {
+ const customEvent = e as CustomEvent;
+ if (customEvent.detail && typeof customEvent.detail.segmentId === 'number') {
+ const segmentId = customEvent.detail.segmentId;
+
+ // Find and remove the segment
+ const newSegments = clipSegments.filter((segment) => segment.id !== segmentId);
+
+ if (newSegments.length !== clipSegments.length) {
+ // If all segments are deleted, create a new full video segment
+ if (newSegments.length === 0 && videoRef.current) {
+ // Create a new default segment that spans the entire video
+ // No need to generate a thumbnail - we'll use dynamic colors
+ const defaultSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: 0,
+ endTime: videoRef.current.duration,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
+
+ // Reset the trim points as well
+ setTrimStart(0);
+ setTrimEnd(videoRef.current.duration);
+ setSplitPoints([]);
+ setClipSegments([defaultSegment]);
+ } else {
+ // Just update the segments normally
+ setClipSegments(newSegments);
+ }
+ saveState('delete_segment');
+ }
+ }
+ };
+
+ document.addEventListener('update-segments', handleUpdateSegments as EventListener);
+ document.addEventListener('split-segment', handleSplitSegment as EventListener);
+ document.addEventListener('delete-segment', handleDeleteSegment as EventListener);
+
+ return () => {
+ document.removeEventListener('update-segments', handleUpdateSegments as EventListener);
+ document.removeEventListener('split-segment', handleSplitSegment as EventListener);
+ document.removeEventListener('delete-segment', handleDeleteSegment as EventListener);
+ };
+ }, [clipSegments, duration]);
+
+ // Handle trim start change
+ const handleTrimStartChange = (time: number) => {
+ setTrimStart(time);
+ saveState('adjust_trim_start');
};
- // Handle delete segment event
- const handleDeleteSegment = async (e: Event) => {
- const customEvent = e as CustomEvent;
- if (customEvent.detail && typeof customEvent.detail.segmentId === "number") {
- const segmentId = customEvent.detail.segmentId;
+ // Handle trim end change
+ const handleTrimEndChange = (time: number) => {
+ setTrimEnd(time);
+ saveState('adjust_trim_end');
+ };
- // Find and remove the segment
- const newSegments = clipSegments.filter((segment) => segment.id !== segmentId);
+ // Handle split at current position
+ const handleSplit = async () => {
+ if (!videoRef.current) return;
- if (newSegments.length !== clipSegments.length) {
- // If all segments are deleted, create a new full video segment
- if (newSegments.length === 0 && videoRef.current) {
- // Create a new default segment that spans the entire video
- // No need to generate a thumbnail - we'll use dynamic colors
- const defaultSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: 0,
- endTime: videoRef.current.duration,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- };
+ // Add current time to split points if not already present
+ if (!splitPoints.includes(currentTime)) {
+ const newSplitPoints = [...splitPoints, currentTime].sort((a, b) => a - b);
+ setSplitPoints(newSplitPoints);
+
+ // Generate segments based on split points
+ const newSegments: Segment[] = [];
+ let startTime = 0;
+
+ for (let i = 0; i <= newSplitPoints.length; i++) {
+ const endTime = i < newSplitPoints.length ? newSplitPoints[i] : duration;
+
+ if (startTime < endTime) {
+ // No need to generate thumbnails - we'll use dynamic colors
+ newSegments.push({
+ id: Date.now() + i,
+ name: `Segment ${i + 1}`,
+ startTime,
+ endTime,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ });
+
+ startTime = endTime;
+ }
+ }
- // Reset the trim points as well
- setTrimStart(0);
- setTrimEnd(videoRef.current.duration);
- setSplitPoints([]);
- setClipSegments([defaultSegment]);
- } else {
- // Just update the segments normally
setClipSegments(newSegments);
- }
- saveState("delete_segment");
+ saveState('create_split_points');
}
- }
};
- document.addEventListener("update-segments", handleUpdateSegments as EventListener);
- document.addEventListener("split-segment", handleSplitSegment as EventListener);
- document.addEventListener("delete-segment", handleDeleteSegment as EventListener);
+ // Handle reset of all edits
+ const handleReset = async () => {
+ setTrimStart(0);
+ setTrimEnd(duration);
+ setSplitPoints([]);
- return () => {
- document.removeEventListener("update-segments", handleUpdateSegments as EventListener);
- document.removeEventListener("split-segment", handleSplitSegment as EventListener);
- document.removeEventListener("delete-segment", handleDeleteSegment as EventListener);
- };
- }, [clipSegments, duration]);
+ // Create a new default segment that spans the entire video
+ if (!videoRef.current) return;
- // Handle trim start change
- const handleTrimStartChange = (time: number) => {
- setTrimStart(time);
- saveState("adjust_trim_start");
- };
+ // No need to generate thumbnails - we'll use dynamic colors
+ const defaultSegment: Segment = {
+ id: Date.now(),
+ name: 'segment',
+ startTime: 0,
+ endTime: duration,
+ thumbnail: '', // Empty placeholder - we'll use dynamic colors instead
+ };
- // Handle trim end change
- const handleTrimEndChange = (time: number) => {
- setTrimEnd(time);
- saveState("adjust_trim_end");
- };
-
- // Handle split at current position
- const handleSplit = async () => {
- if (!videoRef.current) return;
-
- // Add current time to split points if not already present
- if (!splitPoints.includes(currentTime)) {
- const newSplitPoints = [...splitPoints, currentTime].sort((a, b) => a - b);
- setSplitPoints(newSplitPoints);
-
- // Generate segments based on split points
- const newSegments: Segment[] = [];
- let startTime = 0;
-
- for (let i = 0; i <= newSplitPoints.length; i++) {
- const endTime = i < newSplitPoints.length ? newSplitPoints[i] : duration;
-
- if (startTime < endTime) {
- // No need to generate thumbnails - we'll use dynamic colors
- newSegments.push({
- id: Date.now() + i,
- name: `Segment ${i + 1}`,
- startTime,
- endTime,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
- });
-
- startTime = endTime;
- }
- }
-
- setClipSegments(newSegments);
- saveState("create_split_points");
- }
- };
-
- // Handle reset of all edits
- const handleReset = async () => {
- setTrimStart(0);
- setTrimEnd(duration);
- setSplitPoints([]);
-
- // Create a new default segment that spans the entire video
- if (!videoRef.current) return;
-
- // No need to generate thumbnails - we'll use dynamic colors
- const defaultSegment: Segment = {
- id: Date.now(),
- name: "segment",
- startTime: 0,
- endTime: duration,
- thumbnail: "" // Empty placeholder - we'll use dynamic colors instead
+ setClipSegments([defaultSegment]);
+ saveState('reset_all');
};
- setClipSegments([defaultSegment]);
- saveState("reset_all");
- };
+ // Handle undo
+ const handleUndo = () => {
+ if (historyPosition > 0) {
+ const previousState = history[historyPosition - 1];
+ logger.debug(
+ `** UNDO ** to position ${historyPosition - 1}, action: ${previousState.action}, segments: ${previousState.clipSegments.length}`
+ );
- // Handle undo
- const handleUndo = () => {
- if (historyPosition > 0) {
- const previousState = history[historyPosition - 1];
- logger.debug(
- `** UNDO ** to position ${historyPosition - 1}, action: ${previousState.action}, segments: ${previousState.clipSegments.length}`
- );
+ // Log segment details to help debug
+ logger.debug(
+ 'Segment details after undo:',
+ previousState.clipSegments.map(
+ (seg) =>
+ `ID: ${seg.id}, Time: ${formatDetailedTime(seg.startTime)} - ${formatDetailedTime(seg.endTime)}`
+ )
+ );
- // Log segment details to help debug
- logger.debug(
- "Segment details after undo:",
- previousState.clipSegments.map(
- (seg) =>
- `ID: ${seg.id}, Time: ${formatDetailedTime(seg.startTime)} - ${formatDetailedTime(seg.endTime)}`
- )
- );
-
- // Apply the previous state with deep cloning to avoid reference issues
- setTrimStart(previousState.trimStart);
- setTrimEnd(previousState.trimEnd);
- setSplitPoints([...previousState.splitPoints]);
- setClipSegments(JSON.parse(JSON.stringify(previousState.clipSegments)));
- setHistoryPosition(historyPosition - 1);
- } else {
- logger.debug("Cannot undo: at earliest history position");
- }
- };
-
- // Handle redo
- const handleRedo = () => {
- if (historyPosition < history.length - 1) {
- const nextState = history[historyPosition + 1];
- logger.debug(
- `** REDO ** to position ${historyPosition + 1}, action: ${nextState.action}, segments: ${nextState.clipSegments.length}`
- );
-
- // Log segment details to help debug
- logger.debug(
- "Segment details after redo:",
- nextState.clipSegments.map(
- (seg) =>
- `ID: ${seg.id}, Time: ${formatDetailedTime(seg.startTime)} - ${formatDetailedTime(seg.endTime)}`
- )
- );
-
- // Apply the next state with deep cloning to avoid reference issues
- setTrimStart(nextState.trimStart);
- setTrimEnd(nextState.trimEnd);
- setSplitPoints([...nextState.splitPoints]);
- setClipSegments(JSON.parse(JSON.stringify(nextState.clipSegments)));
- setHistoryPosition(historyPosition + 1);
- } else {
- logger.debug("Cannot redo: at latest history position");
- }
- };
-
- // Handle zoom level change
- const handleZoomChange = (level: number) => {
- setZoomLevel(level);
- };
-
- // Handle play/pause of the full video
- const handlePlay = () => {
- const video = videoRef.current;
- if (!video) return;
-
- if (isPlaying) {
- // Pause the video
- video.pause();
- setIsPlaying(false);
- } else {
- // iOS Safari fix: Check for lastSeekedPosition
- if (typeof window !== "undefined" && window.lastSeekedPosition > 0) {
- // Only seek if the position is significantly different
- if (Math.abs(video.currentTime - window.lastSeekedPosition) > 0.1) {
- console.log("handlePlay: Using lastSeekedPosition", window.lastSeekedPosition);
- video.currentTime = window.lastSeekedPosition;
- }
- }
-
- // Play the video from current position with proper promise handling
- video
- .play()
- .then(() => {
- setIsPlaying(true);
- // Reset lastSeekedPosition after successful play
- if (typeof window !== "undefined") {
- window.lastSeekedPosition = 0;
- }
- })
- .catch((err) => {
- console.error("Error playing video:", err);
- setIsPlaying(false); // Reset state if play failed
- });
- }
- };
-
- // Toggle mute state
- const toggleMute = () => {
- const video = videoRef.current;
- if (!video) return;
-
- video.muted = !video.muted;
- setIsMuted(!isMuted);
- };
-
- // Handle save action
- const handleSave = () => {
- // Sort segments chronologically by start time before saving
- const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
-
- // Create the JSON data for saving
- const saveData = {
- type: "save",
- segments: sortedSegments.map((segment) => ({
- startTime: formatDetailedTime(segment.startTime),
- endTime: formatDetailedTime(segment.endTime)
- }))
- };
-
- // Display JSON in alert (for demonstration purposes)
- if (process.env.NODE_ENV === "development") {
- console.debug("Saving data:", saveData);
- }
-
- // Mark as saved - no unsaved changes
- setHasUnsavedChanges(false);
-
- // Debug message
- if (process.env.NODE_ENV === "development") {
- console.debug("Changes saved - reset unsaved changes flag");
- }
-
- // Save to history with special "save" action to mark saved state
- saveState("save");
-
- // In a real implementation, this would make a POST request to save the data
- // logger.debug("Save data:", saveData);
- };
-
- // Handle save a copy action
- const handleSaveACopy = () => {
- // Sort segments chronologically by start time before saving
- const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
-
- // Create the JSON data for saving as a copy
- const saveData = {
- type: "save_as_a_copy",
- segments: sortedSegments.map((segment) => ({
- startTime: formatDetailedTime(segment.startTime),
- endTime: formatDetailedTime(segment.endTime)
- }))
- };
-
- // Display JSON in alert (for demonstration purposes)
- if (process.env.NODE_ENV === "development") {
- console.debug("Saving data as copy:", saveData);
- }
-
- // Mark as saved - no unsaved changes
- setHasUnsavedChanges(false);
-
- // Debug message
- if (process.env.NODE_ENV === "development") {
- console.debug("Changes saved as copy - reset unsaved changes flag");
- }
-
- // Save to history with special "save_copy" action to mark saved state
- saveState("save_copy");
- };
-
- // Handle save segments individually action
- const handleSaveSegments = () => {
- // Sort segments chronologically by start time before saving
- const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
-
- // Create the JSON data for saving individual segments
- const saveData = {
- type: "save_segments",
- segments: sortedSegments.map((segment) => ({
- name: segment.name,
- startTime: formatDetailedTime(segment.startTime),
- endTime: formatDetailedTime(segment.endTime)
- }))
- };
-
- // Display JSON in alert (for demonstration purposes)
- if (process.env.NODE_ENV === "development") {
- console.debug("Saving data as segments:", saveData);
- }
-
- // Mark as saved - no unsaved changes
- setHasUnsavedChanges(false);
-
- // Debug message
- logger.debug("All segments saved individually - reset unsaved changes flag");
-
- // Save to history with special "save_segments" action to mark saved state
- saveState("save_segments");
- };
-
- // Handle seeking with mobile check
- const handleMobileSafeSeek = (time: number) => {
- // Only allow seeking if not on mobile or if video has been played
- if (!isMobile || videoInitialized) {
- seekVideo(time);
- }
- };
-
- // Check if device is mobile
- const isMobile =
- typeof window !== "undefined" &&
- /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile|mobile|CriOS/i.test(
- navigator.userAgent
- );
-
- // Add videoInitialized state
- const [videoInitialized, setVideoInitialized] = useState(false);
-
- // Effect to handle segments playback
- useEffect(() => {
- if (!isPlayingSegments || !videoRef.current) return;
-
- const video = videoRef.current;
- const orderedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
-
- const handleSegmentsPlayback = () => {
- const currentSegment = orderedSegments[currentSegmentIndex];
- if (!currentSegment) return;
-
- const currentTime = video.currentTime;
-
- // If we're before the current segment's start, jump to it
- if (currentTime < currentSegment.startTime) {
- video.currentTime = currentSegment.startTime;
- return;
- }
-
- // If we've reached the end of the current segment
- if (currentTime >= currentSegment.endTime - 0.01) {
- if (currentSegmentIndex < orderedSegments.length - 1) {
- // Move to next segment
- const nextSegment = orderedSegments[currentSegmentIndex + 1];
- video.currentTime = nextSegment.startTime;
- setCurrentSegmentIndex(currentSegmentIndex + 1);
-
- // If video is somehow paused, ensure it keeps playing
- if (video.paused) {
- logger.debug("Ensuring playback continues to next segment");
- video.play().catch((err) => {
- console.error("Error continuing segment playback:", err);
- });
- }
+ // Apply the previous state with deep cloning to avoid reference issues
+ setTrimStart(previousState.trimStart);
+ setTrimEnd(previousState.trimEnd);
+ setSplitPoints([...previousState.splitPoints]);
+ setClipSegments(JSON.parse(JSON.stringify(previousState.clipSegments)));
+ setHistoryPosition(historyPosition - 1);
} else {
- // End of all segments - only pause when we reach the very end
- video.pause();
- setIsPlayingSegments(false);
- setCurrentSegmentIndex(0);
- video.removeEventListener("timeupdate", handleSegmentsPlayback);
+ logger.debug('Cannot undo: at earliest history position');
}
- }
};
- video.addEventListener("timeupdate", handleSegmentsPlayback);
+ // Handle redo
+ const handleRedo = () => {
+ if (historyPosition < history.length - 1) {
+ const nextState = history[historyPosition + 1];
+ logger.debug(
+ `** REDO ** to position ${historyPosition + 1}, action: ${nextState.action}, segments: ${nextState.clipSegments.length}`
+ );
- // Start playing if not already playing
- if (video.paused && orderedSegments.length > 0) {
- video.currentTime = orderedSegments[0].startTime;
- video.play().catch(console.error);
- }
+ // Log segment details to help debug
+ logger.debug(
+ 'Segment details after redo:',
+ nextState.clipSegments.map(
+ (seg) =>
+ `ID: ${seg.id}, Time: ${formatDetailedTime(seg.startTime)} - ${formatDetailedTime(seg.endTime)}`
+ )
+ );
- return () => {
- video.removeEventListener("timeupdate", handleSegmentsPlayback);
- };
- }, [isPlayingSegments, currentSegmentIndex, clipSegments]);
-
- // Effect to handle manual segment index updates during segments playback
- useEffect(() => {
- const handleSegmentIndexUpdate = (event: CustomEvent) => {
- const { segmentIndex } = event.detail;
- if (isPlayingSegments && segmentIndex !== currentSegmentIndex) {
- logger.debug(
- `Updating current segment index from ${currentSegmentIndex} to ${segmentIndex}`
- );
- setCurrentSegmentIndex(segmentIndex);
- }
+ // Apply the next state with deep cloning to avoid reference issues
+ setTrimStart(nextState.trimStart);
+ setTrimEnd(nextState.trimEnd);
+ setSplitPoints([...nextState.splitPoints]);
+ setClipSegments(JSON.parse(JSON.stringify(nextState.clipSegments)));
+ setHistoryPosition(historyPosition + 1);
+ } else {
+ logger.debug('Cannot redo: at latest history position');
+ }
};
- document.addEventListener("update-segment-index", handleSegmentIndexUpdate as EventListener);
-
- return () => {
- document.removeEventListener(
- "update-segment-index",
- handleSegmentIndexUpdate as EventListener
- );
+ // Handle zoom level change
+ const handleZoomChange = (level: number) => {
+ setZoomLevel(level);
};
- }, [isPlayingSegments, currentSegmentIndex]);
- // Handle play segments
- const handlePlaySegments = () => {
- const video = videoRef.current;
- if (!video || clipSegments.length === 0) return;
+ // Handle play/pause of the full video
+ const handlePlay = () => {
+ const video = videoRef.current;
+ if (!video) return;
- if (isPlayingSegments) {
- // Stop segments playback
- video.pause();
- setIsPlayingSegments(false);
- setCurrentSegmentIndex(0);
- } else {
- // Start segments playback
- setIsPlayingSegments(true);
- setCurrentSegmentIndex(0);
+ if (isPlaying) {
+ // Pause the video
+ video.pause();
+ setIsPlaying(false);
+ } else {
+ // iOS Safari fix: Check for lastSeekedPosition
+ if (typeof window !== 'undefined' && window.lastSeekedPosition > 0) {
+ // Only seek if the position is significantly different
+ if (Math.abs(video.currentTime - window.lastSeekedPosition) > 0.1) {
+ console.log('handlePlay: Using lastSeekedPosition', window.lastSeekedPosition);
+ video.currentTime = window.lastSeekedPosition;
+ }
+ }
- // Start segments playback
+ // Play the video from current position with proper promise handling
+ video
+ .play()
+ .then(() => {
+ setIsPlaying(true);
+ // Reset lastSeekedPosition after successful play
+ if (typeof window !== 'undefined') {
+ window.lastSeekedPosition = 0;
+ }
+ })
+ .catch((err) => {
+ console.error('Error playing video:', err);
+ setIsPlaying(false); // Reset state if play failed
+ });
+ }
+ };
- // Sort segments by start time
- const orderedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+ // Toggle mute state
+ const toggleMute = () => {
+ const video = videoRef.current;
+ if (!video) return;
- // Start from the first segment
- video.currentTime = orderedSegments[0].startTime;
+ video.muted = !video.muted;
+ setIsMuted(!isMuted);
+ };
- // Start playback with proper error handling
- video.play().catch((err) => {
- console.error("Error starting segments playback:", err);
- setIsPlayingSegments(false);
- });
+ // Handle save action
+ const handleSave = () => {
+ // Sort segments chronologically by start time before saving
+ const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
- logger.debug("Starting playback of all segments continuously");
- }
- };
+ // Create the JSON data for saving
+ const saveData = {
+ type: 'save',
+ segments: sortedSegments.map((segment) => ({
+ startTime: formatDetailedTime(segment.startTime),
+ endTime: formatDetailedTime(segment.endTime),
+ })),
+ };
- return {
- videoRef,
- currentTime,
- duration,
- isPlaying,
- setIsPlaying,
- isMuted,
- isPlayingSegments,
- thumbnails,
- trimStart,
- trimEnd,
- splitPoints,
- zoomLevel,
- clipSegments,
- hasUnsavedChanges,
- historyPosition,
- history,
- handleTrimStartChange,
- handleTrimEndChange,
- handleZoomChange,
- handleMobileSafeSeek,
- handleSplit,
- handleReset,
- handleUndo,
- handleRedo,
- handlePlaySegments,
- toggleMute,
- handleSave,
- handleSaveACopy,
- handleSaveSegments,
- isMobile,
- videoInitialized,
- setVideoInitialized
- };
+ // Display JSON in alert (for demonstration purposes)
+ if (process.env.NODE_ENV === 'development') {
+ console.debug('Saving data:', saveData);
+ }
+
+ // Mark as saved - no unsaved changes
+ setHasUnsavedChanges(false);
+
+ // Debug message
+ if (process.env.NODE_ENV === 'development') {
+ console.debug('Changes saved - reset unsaved changes flag');
+ }
+
+ // Save to history with special "save" action to mark saved state
+ saveState('save');
+
+ // In a real implementation, this would make a POST request to save the data
+ // logger.debug("Save data:", saveData);
+ };
+
+ // Handle save a copy action
+ const handleSaveACopy = () => {
+ // Sort segments chronologically by start time before saving
+ const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+
+ // Create the JSON data for saving as a copy
+ const saveData = {
+ type: 'save_as_a_copy',
+ segments: sortedSegments.map((segment) => ({
+ startTime: formatDetailedTime(segment.startTime),
+ endTime: formatDetailedTime(segment.endTime),
+ })),
+ };
+
+ // Display JSON in alert (for demonstration purposes)
+ if (process.env.NODE_ENV === 'development') {
+ console.debug('Saving data as copy:', saveData);
+ }
+
+ // Mark as saved - no unsaved changes
+ setHasUnsavedChanges(false);
+
+ // Debug message
+ if (process.env.NODE_ENV === 'development') {
+ console.debug('Changes saved as copy - reset unsaved changes flag');
+ }
+
+ // Save to history with special "save_copy" action to mark saved state
+ saveState('save_copy');
+ };
+
+ // Handle save segments individually action
+ const handleSaveSegments = () => {
+ // Sort segments chronologically by start time before saving
+ const sortedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+
+ // Create the JSON data for saving individual segments
+ const saveData = {
+ type: 'save_segments',
+ segments: sortedSegments.map((segment) => ({
+ name: segment.name,
+ startTime: formatDetailedTime(segment.startTime),
+ endTime: formatDetailedTime(segment.endTime),
+ })),
+ };
+
+ // Display JSON in alert (for demonstration purposes)
+ if (process.env.NODE_ENV === 'development') {
+ console.debug('Saving data as segments:', saveData);
+ }
+
+ // Mark as saved - no unsaved changes
+ setHasUnsavedChanges(false);
+
+ // Debug message
+ logger.debug('All segments saved individually - reset unsaved changes flag');
+
+ // Save to history with special "save_segments" action to mark saved state
+ saveState('save_segments');
+ };
+
+ // Handle seeking with mobile check
+ const handleMobileSafeSeek = (time: number) => {
+ // Only allow seeking if not on mobile or if video has been played
+ if (!isMobile || videoInitialized) {
+ seekVideo(time);
+ }
+ };
+
+ // Check if device is mobile
+ const isMobile =
+ typeof window !== 'undefined' &&
+ /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile|mobile|CriOS/i.test(navigator.userAgent);
+
+ // Add videoInitialized state
+ const [videoInitialized, setVideoInitialized] = useState(false);
+
+ // Effect to handle segments playback
+ useEffect(() => {
+ if (!isPlayingSegments || !videoRef.current) return;
+
+ const video = videoRef.current;
+ const orderedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+
+ const handleSegmentsPlayback = () => {
+ const currentSegment = orderedSegments[currentSegmentIndex];
+ if (!currentSegment) return;
+
+ const currentTime = video.currentTime;
+
+ // If we're before the current segment's start, jump to it
+ if (currentTime < currentSegment.startTime) {
+ video.currentTime = currentSegment.startTime;
+ return;
+ }
+
+ // If we've reached the end of the current segment
+ if (currentTime >= currentSegment.endTime - 0.01) {
+ if (currentSegmentIndex < orderedSegments.length - 1) {
+ // Move to next segment
+ const nextSegment = orderedSegments[currentSegmentIndex + 1];
+ video.currentTime = nextSegment.startTime;
+ setCurrentSegmentIndex(currentSegmentIndex + 1);
+
+ // If video is somehow paused, ensure it keeps playing
+ if (video.paused) {
+ logger.debug('Ensuring playback continues to next segment');
+ video.play().catch((err) => {
+ console.error('Error continuing segment playback:', err);
+ });
+ }
+ } else {
+ // End of all segments - only pause when we reach the very end
+ video.pause();
+ setIsPlayingSegments(false);
+ setCurrentSegmentIndex(0);
+ video.removeEventListener('timeupdate', handleSegmentsPlayback);
+ }
+ }
+ };
+
+ video.addEventListener('timeupdate', handleSegmentsPlayback);
+
+ // Start playing if not already playing
+ if (video.paused && orderedSegments.length > 0) {
+ video.currentTime = orderedSegments[0].startTime;
+ video.play().catch(console.error);
+ }
+
+ return () => {
+ video.removeEventListener('timeupdate', handleSegmentsPlayback);
+ };
+ }, [isPlayingSegments, currentSegmentIndex, clipSegments]);
+
+ // Effect to handle manual segment index updates during segments playback
+ useEffect(() => {
+ const handleSegmentIndexUpdate = (event: CustomEvent) => {
+ const { segmentIndex } = event.detail;
+ if (isPlayingSegments && segmentIndex !== currentSegmentIndex) {
+ logger.debug(`Updating current segment index from ${currentSegmentIndex} to ${segmentIndex}`);
+ setCurrentSegmentIndex(segmentIndex);
+ }
+ };
+
+ document.addEventListener('update-segment-index', handleSegmentIndexUpdate as EventListener);
+
+ return () => {
+ document.removeEventListener('update-segment-index', handleSegmentIndexUpdate as EventListener);
+ };
+ }, [isPlayingSegments, currentSegmentIndex]);
+
+ // Handle play segments
+ const handlePlaySegments = () => {
+ const video = videoRef.current;
+ if (!video || clipSegments.length === 0) return;
+
+ if (isPlayingSegments) {
+ // Stop segments playback
+ video.pause();
+ setIsPlayingSegments(false);
+ setCurrentSegmentIndex(0);
+ } else {
+ // Start segments playback
+ setIsPlayingSegments(true);
+ setCurrentSegmentIndex(0);
+
+ // Start segments playback
+
+ // Sort segments by start time
+ const orderedSegments = [...clipSegments].sort((a, b) => a.startTime - b.startTime);
+
+ // Start from the first segment
+ video.currentTime = orderedSegments[0].startTime;
+
+ // Start playback with proper error handling
+ video.play().catch((err) => {
+ console.error('Error starting segments playback:', err);
+ setIsPlayingSegments(false);
+ });
+
+ logger.debug('Starting playback of all segments continuously');
+ }
+ };
+
+ return {
+ videoRef,
+ currentTime,
+ duration,
+ isPlaying,
+ setIsPlaying,
+ isMuted,
+ isPlayingSegments,
+ thumbnails,
+ trimStart,
+ trimEnd,
+ splitPoints,
+ zoomLevel,
+ clipSegments,
+ hasUnsavedChanges,
+ historyPosition,
+ history,
+ handleTrimStartChange,
+ handleTrimEndChange,
+ handleZoomChange,
+ handleMobileSafeSeek,
+ handleSplit,
+ handleReset,
+ handleUndo,
+ handleRedo,
+ handlePlaySegments,
+ toggleMute,
+ handleSave,
+ handleSaveACopy,
+ handleSaveSegments,
+ isMobile,
+ videoInitialized,
+ setVideoInitialized,
+ };
};
export default useVideoTrimmer;
diff --git a/frontend-tools/video-editor/client/src/lib/logger.ts b/frontend-tools/video-editor/client/src/lib/logger.ts
index f204c26d..e68e60b9 100644
--- a/frontend-tools/video-editor/client/src/lib/logger.ts
+++ b/frontend-tools/video-editor/client/src/lib/logger.ts
@@ -3,29 +3,29 @@
* but always shows errors, warnings, and info messages.
*/
const logger = {
- /**
- * Logs debug messages only in development environment
- */
- debug: (...args: any[]) => {
- if (process.env.NODE_ENV === "development") {
- console.debug(...args);
- }
- },
+ /**
+ * Logs debug messages only in development environment
+ */
+ debug: (...args: any[]) => {
+ if (process.env.NODE_ENV === 'development') {
+ console.debug(...args);
+ }
+ },
- /**
- * Always logs error messages
- */
- error: (...args: any[]) => console.error(...args),
+ /**
+ * Always logs error messages
+ */
+ error: (...args: any[]) => console.error(...args),
- /**
- * Always logs warning messages
- */
- warn: (...args: any[]) => console.warn(...args),
+ /**
+ * Always logs warning messages
+ */
+ warn: (...args: any[]) => console.warn(...args),
- /**
- * Always logs info messages
- */
- info: (...args: any[]) => console.info(...args)
+ /**
+ * Always logs info messages
+ */
+ info: (...args: any[]) => console.info(...args),
};
export default logger;
diff --git a/frontend-tools/video-editor/client/src/lib/queryClient.ts b/frontend-tools/video-editor/client/src/lib/queryClient.ts
index 892f099a..a96e8122 100644
--- a/frontend-tools/video-editor/client/src/lib/queryClient.ts
+++ b/frontend-tools/video-editor/client/src/lib/queryClient.ts
@@ -1,55 +1,51 @@
-import { QueryClient, QueryFunction } from "@tanstack/react-query";
+import { QueryClient, QueryFunction } from '@tanstack/react-query';
async function throwIfResNotOk(res: Response) {
- if (!res.ok) {
- const text = (await res.text()) || res.statusText;
- throw new Error(`${res.status}: ${text}`);
- }
+ if (!res.ok) {
+ const text = (await res.text()) || res.statusText;
+ throw new Error(`${res.status}: ${text}`);
+ }
}
-export async function apiRequest(
- method: string,
- url: string,
- data?: unknown | undefined
-): Promise {
- const res = await fetch(url, {
- method,
- headers: data ? { "Content-Type": "application/json" } : {},
- body: data ? JSON.stringify(data) : undefined,
- credentials: "include"
- });
-
- await throwIfResNotOk(res);
- return res;
-}
-
-type UnauthorizedBehavior = "returnNull" | "throw";
-export const getQueryFn: (options: { on401: UnauthorizedBehavior }) => QueryFunction =
- ({ on401: unauthorizedBehavior }) =>
- async ({ queryKey }) => {
- const res = await fetch(queryKey[0] as string, {
- credentials: "include"
+export async function apiRequest(method: string, url: string, data?: unknown | undefined): Promise {
+ const res = await fetch(url, {
+ method,
+ headers: data ? { 'Content-Type': 'application/json' } : {},
+ body: data ? JSON.stringify(data) : undefined,
+ credentials: 'include',
});
- if (unauthorizedBehavior === "returnNull" && res.status === 401) {
- return null;
- }
-
await throwIfResNotOk(res);
- return await res.json();
- };
+ return res;
+}
+
+type UnauthorizedBehavior = 'returnNull' | 'throw';
+export const getQueryFn: (options: { on401: UnauthorizedBehavior }) => QueryFunction =
+ ({ on401: unauthorizedBehavior }) =>
+ async ({ queryKey }) => {
+ const res = await fetch(queryKey[0] as string, {
+ credentials: 'include',
+ });
+
+ if (unauthorizedBehavior === 'returnNull' && res.status === 401) {
+ return null;
+ }
+
+ await throwIfResNotOk(res);
+ return await res.json();
+ };
export const queryClient = new QueryClient({
- defaultOptions: {
- queries: {
- queryFn: getQueryFn({ on401: "throw" }),
- refetchInterval: false,
- refetchOnWindowFocus: false,
- staleTime: Infinity,
- retry: false
+ defaultOptions: {
+ queries: {
+ queryFn: getQueryFn({ on401: 'throw' }),
+ refetchInterval: false,
+ refetchOnWindowFocus: false,
+ staleTime: Infinity,
+ retry: false,
+ },
+ mutations: {
+ retry: false,
+ },
},
- mutations: {
- retry: false
- }
- }
});
diff --git a/frontend-tools/video-editor/client/src/lib/timeUtils.ts b/frontend-tools/video-editor/client/src/lib/timeUtils.ts
index 14fef1ba..78396acd 100644
--- a/frontend-tools/video-editor/client/src/lib/timeUtils.ts
+++ b/frontend-tools/video-editor/client/src/lib/timeUtils.ts
@@ -2,33 +2,33 @@
* Format seconds to HH:MM:SS.mmm format with millisecond precision
*/
export const formatDetailedTime = (seconds: number): string => {
- if (isNaN(seconds)) return "00:00:00.000";
+ if (isNaN(seconds)) return '00:00:00.000';
- const hours = Math.floor(seconds / 3600);
- const minutes = Math.floor((seconds % 3600) / 60);
- const remainingSeconds = Math.floor(seconds % 60);
- const milliseconds = Math.round((seconds % 1) * 1000);
+ const hours = Math.floor(seconds / 3600);
+ const minutes = Math.floor((seconds % 3600) / 60);
+ const remainingSeconds = Math.floor(seconds % 60);
+ const milliseconds = Math.round((seconds % 1) * 1000);
- const formattedHours = String(hours).padStart(2, "0");
- const formattedMinutes = String(minutes).padStart(2, "0");
- const formattedSeconds = String(remainingSeconds).padStart(2, "0");
- const formattedMilliseconds = String(milliseconds).padStart(3, "0");
+ const formattedHours = String(hours).padStart(2, '0');
+ const formattedMinutes = String(minutes).padStart(2, '0');
+ const formattedSeconds = String(remainingSeconds).padStart(2, '0');
+ const formattedMilliseconds = String(milliseconds).padStart(3, '0');
- return `${formattedHours}:${formattedMinutes}:${formattedSeconds}.${formattedMilliseconds}`;
+ return `${formattedHours}:${formattedMinutes}:${formattedSeconds}.${formattedMilliseconds}`;
};
/**
* Format seconds to MM:SS format - now uses the detailed format with hours and milliseconds
*/
export const formatTime = (seconds: number): string => {
- // Use the detailed format instead of the old MM:SS format
- return formatDetailedTime(seconds);
+ // Use the detailed format instead of the old MM:SS format
+ return formatDetailedTime(seconds);
};
/**
* Format seconds to HH:MM:SS format - now uses the detailed format with milliseconds
*/
export const formatLongTime = (seconds: number): string => {
- // Use the detailed format
- return formatDetailedTime(seconds);
+ // Use the detailed format
+ return formatDetailedTime(seconds);
};
diff --git a/frontend-tools/video-editor/client/src/lib/utils.ts b/frontend-tools/video-editor/client/src/lib/utils.ts
index a5ef1935..3877c89f 100644
--- a/frontend-tools/video-editor/client/src/lib/utils.ts
+++ b/frontend-tools/video-editor/client/src/lib/utils.ts
@@ -1,6 +1,6 @@
-import { clsx, type ClassValue } from "clsx";
-import { twMerge } from "tailwind-merge";
+import { clsx, type ClassValue } from 'clsx';
+import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
- return twMerge(clsx(inputs));
+ return twMerge(clsx(inputs));
}
diff --git a/frontend-tools/video-editor/client/src/lib/videoUtils.ts b/frontend-tools/video-editor/client/src/lib/videoUtils.ts
index 0586e031..41f33e3d 100644
--- a/frontend-tools/video-editor/client/src/lib/videoUtils.ts
+++ b/frontend-tools/video-editor/client/src/lib/videoUtils.ts
@@ -3,45 +3,42 @@
* Returns a CSS color based on the segment position
*/
export const generateSolidColor = (time: number, duration: number): string => {
- // Use the time position to create different colors
- // This gives each segment a different color without needing an image
- const position = Math.min(Math.max(time / (duration || 1), 0), 1);
+ // Use the time position to create different colors
+ // This gives each segment a different color without needing an image
+ const position = Math.min(Math.max(time / (duration || 1), 0), 1);
- // Calculate color based on position
- // Use an extremely light blue-based color palette
- const hue = 210; // Blue base
- const saturation = 40 + Math.floor(position * 20); // 40-60% (less saturated)
- const lightness = 85 + Math.floor(position * 8); // 85-93% (extremely light)
+ // Calculate color based on position
+ // Use an extremely light blue-based color palette
+ const hue = 210; // Blue base
+ const saturation = 40 + Math.floor(position * 20); // 40-60% (less saturated)
+ const lightness = 85 + Math.floor(position * 8); // 85-93% (extremely light)
- return `hsl(${hue}, ${saturation}%, ${lightness}%)`;
+ return `hsl(${hue}, ${saturation}%, ${lightness}%)`;
};
/**
* Legacy function kept for compatibility
* Now returns a data URL for a solid color square instead of a video thumbnail
*/
-export const generateThumbnail = async (
- videoElement: HTMLVideoElement,
- time: number
-): Promise => {
- return new Promise((resolve) => {
- // Create a small canvas for the solid color
- const canvas = document.createElement("canvas");
- canvas.width = 10; // Much smaller - we only need a color
- canvas.height = 10;
+export const generateThumbnail = async (videoElement: HTMLVideoElement, time: number): Promise => {
+ return new Promise((resolve) => {
+ // Create a small canvas for the solid color
+ const canvas = document.createElement('canvas');
+ canvas.width = 10; // Much smaller - we only need a color
+ canvas.height = 10;
- const ctx = canvas.getContext("2d");
- if (ctx) {
- // Get the solid color based on time
- const color = generateSolidColor(time, videoElement.duration);
+ const ctx = canvas.getContext('2d');
+ if (ctx) {
+ // Get the solid color based on time
+ const color = generateSolidColor(time, videoElement.duration);
- // Fill with solid color
- ctx.fillStyle = color;
- ctx.fillRect(0, 0, canvas.width, canvas.height);
- }
+ // Fill with solid color
+ ctx.fillStyle = color;
+ ctx.fillRect(0, 0, canvas.width, canvas.height);
+ }
- // Convert to data URL (much smaller now)
- const dataUrl = canvas.toDataURL("image/png", 0.5);
- resolve(dataUrl);
- });
+ // Convert to data URL (much smaller now)
+ const dataUrl = canvas.toDataURL('image/png', 0.5);
+ resolve(dataUrl);
+ });
};
diff --git a/frontend-tools/video-editor/client/src/services/videoApi.ts b/frontend-tools/video-editor/client/src/services/videoApi.ts
index 88389907..e466b307 100644
--- a/frontend-tools/video-editor/client/src/services/videoApi.ts
+++ b/frontend-tools/video-editor/client/src/services/videoApi.ts
@@ -1,20 +1,20 @@
// API service for video trimming operations
interface TrimVideoRequest {
- segments: {
- startTime: string;
- endTime: string;
- name?: string;
- }[];
- saveAsCopy?: boolean;
- saveIndividualSegments?: boolean;
+ segments: {
+ startTime: string;
+ endTime: string;
+ name?: string;
+ }[];
+ saveAsCopy?: boolean;
+ saveIndividualSegments?: boolean;
}
interface TrimVideoResponse {
- msg: string;
- url_redirect: string;
- status?: number; // HTTP status code for success/error
- error?: string; // Error message if status is not 200
+ msg: string;
+ url_redirect: string;
+ status?: number; // HTTP status code for success/error
+ error?: string; // Error message if status is not 200
}
// Helper function to simulate delay
@@ -22,90 +22,87 @@ const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
// For now, we'll use a mock API that returns a promise
// This can be replaced with actual API calls later
-export const trimVideo = async (
- mediaId: string,
- data: TrimVideoRequest
-): Promise => {
- try {
- // Attempt the real API call
- const response = await fetch(`/api/v1/media/${mediaId}/trim_video`, {
- method: "POST",
- headers: { "Content-Type": "application/json" },
- body: JSON.stringify(data)
- });
+export const trimVideo = async (mediaId: string, data: TrimVideoRequest): Promise => {
+ try {
+ // Attempt the real API call
+ const response = await fetch(`/api/v1/media/${mediaId}/trim_video`, {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(data),
+ });
- if (!response.ok) {
- // For error responses, return with error status and message
- if (response.status === 400) {
- // Handle 400 Bad Request - return with error details
- try {
- // Try to get error details from response
- const errorData = await response.json();
- return {
- status: 400,
- error: errorData.error || "An error occurred during processing",
- msg: "Video Processing Error",
- url_redirect: ""
- };
- } catch (parseError) {
- // If can't parse response JSON, return generic error
- return {
- status: 400,
- error: "An error occurred during video processing",
- msg: "Video Processing Error",
- url_redirect: ""
- };
+ if (!response.ok) {
+ // For error responses, return with error status and message
+ if (response.status === 400) {
+ // Handle 400 Bad Request - return with error details
+ try {
+ // Try to get error details from response
+ const errorData = await response.json();
+ return {
+ status: 400,
+ error: errorData.error || 'An error occurred during processing',
+ msg: 'Video Processing Error',
+ url_redirect: '',
+ };
+ } catch (parseError) {
+ // If can't parse response JSON, return generic error
+ return {
+ status: 400,
+ error: 'An error occurred during video processing',
+ msg: 'Video Processing Error',
+ url_redirect: '',
+ };
+ }
+ } else if (response.status !== 404) {
+ // Handle other error responses
+ try {
+ // Try to get error details from response
+ const errorData = await response.json();
+ return {
+ status: response.status,
+ error: errorData.error || 'An error occurred during processing',
+ msg: 'Video Processing Error',
+ url_redirect: '',
+ };
+ } catch (parseError) {
+ // If can't parse response JSON, return generic error
+ return {
+ status: response.status,
+ error: 'An error occurred during video processing',
+ msg: 'Video Processing Error',
+ url_redirect: '',
+ };
+ }
+ } else {
+ // If endpoint not ready (404), return mock success response
+ await delay(1500); // Simulate 1.5 second server delay
+ return {
+ status: 200, // Mock success status
+ msg: 'Video Processed Successfully', // Updated per requirements
+ url_redirect: `./view?m=${mediaId}`,
+ };
+ }
}
- } else if (response.status !== 404) {
- // Handle other error responses
- try {
- // Try to get error details from response
- const errorData = await response.json();
- return {
- status: response.status,
- error: errorData.error || "An error occurred during processing",
- msg: "Video Processing Error",
- url_redirect: ""
- };
- } catch (parseError) {
- // If can't parse response JSON, return generic error
- return {
- status: response.status,
- error: "An error occurred during video processing",
- msg: "Video Processing Error",
- url_redirect: ""
- };
- }
- } else {
- // If endpoint not ready (404), return mock success response
+
+ // Successful response
+ const jsonResponse = await response.json();
+ return {
+ status: 200,
+ msg: 'Video Processed Successfully', // Ensure the success message is correct
+ url_redirect: jsonResponse.url_redirect || `./view?m=${mediaId}`,
+ ...jsonResponse,
+ };
+ } catch (error) {
+ // For any fetch errors, return mock success response with delay
await delay(1500); // Simulate 1.5 second server delay
return {
- status: 200, // Mock success status
- msg: "Video Processed Successfully", // Updated per requirements
- url_redirect: `./view?m=${mediaId}`
+ status: 200, // Mock success status
+ msg: 'Video Processed Successfully', // Consistent with requirements
+ url_redirect: `./view?m=${mediaId}`,
};
- }
}
- // Successful response
- const jsonResponse = await response.json();
- return {
- status: 200,
- msg: "Video Processed Successfully", // Ensure the success message is correct
- url_redirect: jsonResponse.url_redirect || `./view?m=${mediaId}`,
- ...jsonResponse
- };
- } catch (error) {
- // For any fetch errors, return mock success response with delay
- await delay(1500); // Simulate 1.5 second server delay
- return {
- status: 200, // Mock success status
- msg: "Video Processed Successfully", // Consistent with requirements
- url_redirect: `./view?m=${mediaId}`
- };
- }
-
- /* Mock implementation that simulates network latency
+ /* Mock implementation that simulates network latency
return new Promise((resolve) => {
setTimeout(() => {
resolve({
diff --git a/frontend-tools/video-editor/client/src/styles/ClipSegments.css b/frontend-tools/video-editor/client/src/styles/ClipSegments.css
index 3b71925e..9eefcb09 100644
--- a/frontend-tools/video-editor/client/src/styles/ClipSegments.css
+++ b/frontend-tools/video-editor/client/src/styles/ClipSegments.css
@@ -1,196 +1,196 @@
#video-editor-trim-root {
- /* Tooltip styles - only on desktop where hover is available */
- @media (hover: hover) and (pointer: fine) {
- [data-tooltip] {
- position: relative;
+ /* Tooltip styles - only on desktop where hover is available */
+ @media (hover: hover) and (pointer: fine) {
+ [data-tooltip] {
+ position: relative;
+ }
+
+ [data-tooltip]:before {
+ content: attr(data-tooltip);
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ margin-bottom: 5px;
+ background-color: rgba(0, 0, 0, 0.8);
+ color: white;
+ text-align: center;
+ padding: 5px 10px;
+ border-radius: 3px;
+ font-size: 12px;
+ white-space: nowrap;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ z-index: 1000;
+ pointer-events: none;
+ }
+
+ [data-tooltip]:after {
+ content: "";
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ border-width: 5px;
+ border-style: solid;
+ border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ pointer-events: none;
+ }
+
+ [data-tooltip]:hover:before,
+ [data-tooltip]:hover:after {
+ opacity: 1;
+ visibility: visible;
+ }
}
- [data-tooltip]:before {
- content: attr(data-tooltip);
- position: absolute;
- bottom: 100%;
- left: 50%;
- transform: translateX(-50%);
- margin-bottom: 5px;
- background-color: rgba(0, 0, 0, 0.8);
- color: white;
- text-align: center;
- padding: 5px 10px;
- border-radius: 3px;
- font-size: 12px;
- white-space: nowrap;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- z-index: 1000;
- pointer-events: none;
+ /* Hide button tooltips on touch devices */
+ @media (pointer: coarse) {
+ [data-tooltip]:before,
+ [data-tooltip]:after {
+ display: none !important;
+ content: none !important;
+ opacity: 0 !important;
+ visibility: hidden !important;
+ pointer-events: none !important;
+ }
+ }
+ .clip-segments-container {
+ margin-top: 1rem;
+ background-color: white;
+ border-radius: 0.5rem;
+ padding: 1rem;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
- [data-tooltip]:after {
- content: "";
- position: absolute;
- bottom: 100%;
- left: 50%;
- transform: translateX(-50%);
- border-width: 5px;
- border-style: solid;
- border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- pointer-events: none;
+ .clip-segments-title {
+ font-size: 0.875rem;
+ font-weight: 500;
+ color: var(--foreground, #333);
+ margin-bottom: 0.75rem;
}
- [data-tooltip]:hover:before,
- [data-tooltip]:hover:after {
- opacity: 1;
- visibility: visible;
- }
- }
+ .segment-item {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 0.5rem;
+ border: 1px solid #e5e7eb;
+ border-radius: 0.25rem;
+ margin-bottom: 0.5rem;
+ transition: box-shadow 0.2s ease;
- /* Hide button tooltips on touch devices */
- @media (pointer: coarse) {
- [data-tooltip]:before,
- [data-tooltip]:after {
- display: none !important;
- content: none !important;
- opacity: 0 !important;
- visibility: hidden !important;
- pointer-events: none !important;
- }
- }
- .clip-segments-container {
- margin-top: 1rem;
- background-color: white;
- border-radius: 0.5rem;
- padding: 1rem;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- }
-
- .clip-segments-title {
- font-size: 0.875rem;
- font-weight: 500;
- color: var(--foreground, #333);
- margin-bottom: 0.75rem;
- }
-
- .segment-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0.5rem;
- border: 1px solid #e5e7eb;
- border-radius: 0.25rem;
- margin-bottom: 0.5rem;
- transition: box-shadow 0.2s ease;
-
- &:hover {
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
- }
- }
-
- .segment-content {
- display: flex;
- align-items: center;
- }
-
- .segment-thumbnail {
- width: 4rem;
- height: 2.25rem;
- background-size: cover;
- background-position: center;
- border-radius: 0.25rem;
- margin-right: 0.75rem;
- box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
- }
-
- .segment-info {
- display: flex;
- flex-direction: column;
- }
-
- .segment-title {
- font-weight: 500;
- font-size: 0.875rem;
- color: black;
- }
-
- .segment-time {
- font-size: 0.75rem;
- color: black;
- }
-
- .segment-duration {
- font-size: 0.75rem;
- margin-top: 0.25rem;
- display: inline-block;
- background-color: #f3f4f6;
- padding: 0 0.5rem;
- border-radius: 0.25rem;
- color: black;
- }
-
- .segment-actions {
- display: flex;
- align-items: center;
- gap: 0.5rem;
- }
-
- .delete-button {
- padding: 0.375rem;
- color: #4b5563;
- background-color: #e5e7eb;
- border-radius: 9999px;
- border: none;
- cursor: pointer;
- transition:
- background-color 0.2s,
- color 0.2s;
- min-width: auto;
-
- &:hover {
- color: black;
- background-color: #d1d5db;
+ &:hover {
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
}
- svg {
- height: 1rem;
- width: 1rem;
+ .segment-content {
+ display: flex;
+ align-items: center;
}
- }
- .empty-message {
- padding: 1rem;
- text-align: center;
- color: rgba(51, 51, 51, 0.7);
- }
+ .segment-thumbnail {
+ width: 4rem;
+ height: 2.25rem;
+ background-size: cover;
+ background-position: center;
+ border-radius: 0.25rem;
+ margin-right: 0.75rem;
+ box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
+ }
- .segment-color-1 {
- background-color: rgba(59, 130, 246, 0.15);
- }
- .segment-color-2 {
- background-color: rgba(16, 185, 129, 0.15);
- }
- .segment-color-3 {
- background-color: rgba(245, 158, 11, 0.15);
- }
- .segment-color-4 {
- background-color: rgba(239, 68, 68, 0.15);
- }
- .segment-color-5 {
- background-color: rgba(139, 92, 246, 0.15);
- }
- .segment-color-6 {
- background-color: rgba(236, 72, 153, 0.15);
- }
- .segment-color-7 {
- background-color: rgba(6, 182, 212, 0.15);
- }
- .segment-color-8 {
- background-color: rgba(250, 204, 21, 0.15);
- }
+ .segment-info {
+ display: flex;
+ flex-direction: column;
+ }
+
+ .segment-title {
+ font-weight: 500;
+ font-size: 0.875rem;
+ color: black;
+ }
+
+ .segment-time {
+ font-size: 0.75rem;
+ color: black;
+ }
+
+ .segment-duration {
+ font-size: 0.75rem;
+ margin-top: 0.25rem;
+ display: inline-block;
+ background-color: #f3f4f6;
+ padding: 0 0.5rem;
+ border-radius: 0.25rem;
+ color: black;
+ }
+
+ .segment-actions {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ }
+
+ .delete-button {
+ padding: 0.375rem;
+ color: #4b5563;
+ background-color: #e5e7eb;
+ border-radius: 9999px;
+ border: none;
+ cursor: pointer;
+ transition:
+ background-color 0.2s,
+ color 0.2s;
+ min-width: auto;
+
+ &:hover {
+ color: black;
+ background-color: #d1d5db;
+ }
+
+ svg {
+ height: 1rem;
+ width: 1rem;
+ }
+ }
+
+ .empty-message {
+ padding: 1rem;
+ text-align: center;
+ color: rgba(51, 51, 51, 0.7);
+ }
+
+ .segment-color-1 {
+ background-color: rgba(59, 130, 246, 0.15);
+ }
+ .segment-color-2 {
+ background-color: rgba(16, 185, 129, 0.15);
+ }
+ .segment-color-3 {
+ background-color: rgba(245, 158, 11, 0.15);
+ }
+ .segment-color-4 {
+ background-color: rgba(239, 68, 68, 0.15);
+ }
+ .segment-color-5 {
+ background-color: rgba(139, 92, 246, 0.15);
+ }
+ .segment-color-6 {
+ background-color: rgba(236, 72, 153, 0.15);
+ }
+ .segment-color-7 {
+ background-color: rgba(6, 182, 212, 0.15);
+ }
+ .segment-color-8 {
+ background-color: rgba(250, 204, 21, 0.15);
+ }
}
diff --git a/frontend-tools/video-editor/client/src/styles/EditingTools.css b/frontend-tools/video-editor/client/src/styles/EditingTools.css
index 06f611bd..82eecb17 100644
--- a/frontend-tools/video-editor/client/src/styles/EditingTools.css
+++ b/frontend-tools/video-editor/client/src/styles/EditingTools.css
@@ -1,397 +1,397 @@
#video-editor-trim-root {
- /* Tooltip styles - only on desktop where hover is available */
- @media (hover: hover) and (pointer: fine) {
- [data-tooltip] {
- position: relative;
+ /* Tooltip styles - only on desktop where hover is available */
+ @media (hover: hover) and (pointer: fine) {
+ [data-tooltip] {
+ position: relative;
+ }
+
+ [data-tooltip]:before {
+ content: attr(data-tooltip);
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ margin-bottom: 5px;
+ background-color: rgba(0, 0, 0, 0.8);
+ color: white;
+ text-align: center;
+ padding: 5px 10px;
+ border-radius: 3px;
+ font-size: 12px;
+ white-space: nowrap;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ z-index: 1000;
+ pointer-events: none;
+ }
+
+ [data-tooltip]:after {
+ content: "";
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ border-width: 5px;
+ border-style: solid;
+ border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ pointer-events: none;
+ }
+
+ [data-tooltip]:hover:before,
+ [data-tooltip]:hover:after {
+ opacity: 1;
+ visibility: visible;
+ }
}
- [data-tooltip]:before {
- content: attr(data-tooltip);
- position: absolute;
- bottom: 100%;
- left: 50%;
- transform: translateX(-50%);
- margin-bottom: 5px;
- background-color: rgba(0, 0, 0, 0.8);
- color: white;
- text-align: center;
- padding: 5px 10px;
- border-radius: 3px;
- font-size: 12px;
- white-space: nowrap;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- z-index: 1000;
- pointer-events: none;
+ /* Hide button tooltips on touch devices */
+ @media (pointer: coarse) {
+ [data-tooltip]:before,
+ [data-tooltip]:after {
+ display: none !important;
+ content: none !important;
+ opacity: 0 !important;
+ visibility: hidden !important;
+ pointer-events: none !important;
+ }
}
- [data-tooltip]:after {
- content: "";
- position: absolute;
- bottom: 100%;
- left: 50%;
- transform: translateX(-50%);
- border-width: 5px;
- border-style: solid;
- border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- pointer-events: none;
- }
-
- [data-tooltip]:hover:before,
- [data-tooltip]:hover:after {
- opacity: 1;
- visibility: visible;
- }
- }
-
- /* Hide button tooltips on touch devices */
- @media (pointer: coarse) {
- [data-tooltip]:before,
- [data-tooltip]:after {
- display: none !important;
- content: none !important;
- opacity: 0 !important;
- visibility: hidden !important;
- pointer-events: none !important;
- }
- }
-
- .editing-tools-container {
- background-color: white;
- border-radius: 0.5rem;
- padding: 1rem;
- margin-bottom: 2.5rem;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- }
-
- .flex-container {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- gap: 15px;
- width: 100%;
- }
-
- .flex-container.single-row {
- flex-wrap: nowrap;
- }
-
- /* Show full text on larger screens, hide short text */
- .full-text {
- display: inline;
- }
-
- .short-text {
- display: none;
- }
-
- /* Reset text always visible by default */
- .reset-text {
- display: inline;
- }
-
- .button-group {
- display: flex;
- align-items: center;
-
- &.play-buttons-group {
- gap: 0.75rem;
- justify-content: flex-start;
- flex: 0 0 auto; /* Don't expand to fill space */
- }
-
- &.secondary {
- gap: 0.75rem;
- align-items: center;
- justify-content: flex-end;
- margin-left: auto; /* Push to right edge */
- }
-
- button {
- display: flex;
- align-items: center;
- color: #333;
- background: none;
- border: none;
- cursor: pointer;
- min-width: auto;
-
- &:hover:not(:disabled) {
- color: inherit;
- }
-
- &:disabled {
- opacity: 0.5;
- cursor: not-allowed;
- }
-
- svg {
- height: 1.25rem;
- width: 1.25rem;
- margin-right: 0.25rem;
- }
- }
- }
-
- .divider {
- border-right: 1px solid #d1d5db;
- height: 1.5rem;
- margin: 0 0.5rem;
- }
-
- /* Style for play buttons with highlight effect */
- .play-button,
- .preview-button {
- font-weight: 600;
- display: flex;
- align-items: center;
- position: relative;
- overflow: hidden;
- min-width: 80px;
- justify-content: center;
- font-size: 0.875rem !important;
- }
-
- /* Greyed out play button when segments are playing */
- .play-button.greyed-out {
- opacity: 0.5;
- cursor: not-allowed;
- }
-
- /* Highlighted stop button with blue pulse on small screens */
- .segments-button.highlighted-stop {
- background-color: rgba(59, 130, 246, 0.1);
- color: #3b82f6;
- border: 1px solid #3b82f6;
- animation: bluePulse 2s infinite;
- }
-
- @keyframes bluePulse {
- 0% {
- box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
- }
- 50% {
- box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
- }
- 100% {
- box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
- }
- }
-
- /* Completely disable ALL hover effects for play buttons */
- .play-button:hover:not(:disabled),
- .preview-button:hover:not(:disabled) {
- /* Reset everything to prevent any changes */
- color: inherit !important;
- transform: none !important;
- font-size: 0.875rem !important;
- width: auto !important;
- background: none !important;
- }
-
- .play-button svg,
- .preview-button svg {
- height: 1.5rem;
- width: 1.5rem;
- /* Make sure SVG scales with the button but doesn't change layout */
- flex-shrink: 0;
- }
-
- @keyframes pulse {
- 0% {
- opacity: 0.8;
- }
- 50% {
- opacity: 1;
- }
- 100% {
- opacity: 0.8;
- }
- }
-
- /* Add responsive button text class */
- .button-text {
- margin-left: 0.25rem;
- }
-
- /* Media queries for the editing tools */
- @media (max-width: 992px) {
- /* Hide text for undo/redo buttons on medium screens */
- .button-group.secondary .button-text {
- display: none;
- }
- }
-
- @media (max-width: 768px) {
- /* Keep all buttons in a single row, make them more compact */
- .flex-container.single-row {
- justify-content: space-between;
- }
-
- .button-group {
- gap: 0.5rem;
- }
-
- /* Keep font size consistent regardless of screen size */
- .preview-button,
- .play-button {
- font-size: 0.875rem !important;
- }
- }
-
- @media (max-width: 640px) {
- /* Prevent container overflow on mobile */
.editing-tools-container {
- padding: 0.75rem;
- overflow-x: hidden;
+ background-color: white;
+ border-radius: 0.5rem;
+ padding: 1rem;
+ margin-bottom: 2.5rem;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
- /* At this breakpoint, make preview button text shorter */
- .preview-button {
- min-width: auto;
+ .flex-container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ position: relative;
+ gap: 15px;
+ width: 100%;
}
- /* Switch to short text versions */
+ .flex-container.single-row {
+ flex-wrap: nowrap;
+ }
+
+ /* Show full text on larger screens, hide short text */
.full-text {
- display: none;
+ display: inline;
}
.short-text {
- display: inline;
- margin-left: 0.15rem;
+ display: none;
}
- /* Hide reset text */
+ /* Reset text always visible by default */
.reset-text {
- display: none;
+ display: inline;
}
- /* Ensure buttons stay in correct position */
- .button-group.play-buttons-group {
- flex: initial;
- justify-content: flex-start;
- flex-shrink: 0;
- }
-
- .button-group.secondary {
- flex: initial;
- justify-content: flex-end;
- flex-shrink: 0;
- }
-
- /* Reduce button sizes on mobile */
- .button-group button {
- padding: 0.375rem;
- min-width: auto;
- }
-
- .button-group button svg {
- height: 1.125rem;
- width: 1.125rem;
- margin-right: 0.125rem;
- }
- }
-
- @media (max-width: 576px) {
- /* Keep single row, left-align play buttons, right-align controls */
- .flex-container.single-row {
- justify-content: space-between;
- flex-wrap: nowrap;
- gap: 10px;
- }
-
- /* Fix left-align for play buttons */
- .button-group.play-buttons-group {
- justify-content: flex-start;
- flex: 0 0 auto;
- }
-
- /* Fix right-align for editing controls */
- .button-group.secondary {
- justify-content: flex-end;
- margin-left: auto;
- }
-
- /* Reduce button padding to fit more easily */
- .button-group button {
- padding: 0.25rem;
- }
-
- .divider {
- margin: 0 0.25rem;
- }
- }
-
- /* Very small screens - maintain layout but reduce further */
- @media (max-width: 480px) {
- .editing-tools-container {
- padding: 0.5rem;
- }
-
- .flex-container.single-row {
- gap: 8px;
- }
-
- .button-group.play-buttons-group,
- .button-group.secondary {
- gap: 0.25rem;
- }
-
- .divider {
- display: none; /* Hide divider on very small screens */
- }
-
- /* Even smaller buttons on very small screens */
- .button-group button {
- padding: 0.125rem;
- }
-
- .button-group button svg {
- height: 1rem;
- width: 1rem;
- margin-right: 0;
- }
-
- /* Hide all button text on very small screens */
- .button-text,
- .reset-text {
- display: none;
- }
- }
-
- /* Portrait orientation specific fixes */
- @media (max-width: 640px) and (orientation: portrait) {
- .editing-tools-container {
- width: 100%;
- box-sizing: border-box;
- }
-
- .flex-container.single-row {
- width: 100%;
- padding: 0;
- margin: 0;
- }
-
- /* Ensure button groups don't overflow */
.button-group {
- max-width: 50%;
+ display: flex;
+ align-items: center;
+
+ &.play-buttons-group {
+ gap: 0.75rem;
+ justify-content: flex-start;
+ flex: 0 0 auto; /* Don't expand to fill space */
+ }
+
+ &.secondary {
+ gap: 0.75rem;
+ align-items: center;
+ justify-content: flex-end;
+ margin-left: auto; /* Push to right edge */
+ }
+
+ button {
+ display: flex;
+ align-items: center;
+ color: #333;
+ background: none;
+ border: none;
+ cursor: pointer;
+ min-width: auto;
+
+ &:hover:not(:disabled) {
+ color: inherit;
+ }
+
+ &:disabled {
+ opacity: 0.5;
+ cursor: not-allowed;
+ }
+
+ svg {
+ height: 1.25rem;
+ width: 1.25rem;
+ margin-right: 0.25rem;
+ }
+ }
}
- .button-group.play-buttons-group {
- max-width: 60%;
+ .divider {
+ border-right: 1px solid #d1d5db;
+ height: 1.5rem;
+ margin: 0 0.5rem;
}
- .button-group.secondary {
- max-width: 40%;
+ /* Style for play buttons with highlight effect */
+ .play-button,
+ .preview-button {
+ font-weight: 600;
+ display: flex;
+ align-items: center;
+ position: relative;
+ overflow: hidden;
+ min-width: 80px;
+ justify-content: center;
+ font-size: 0.875rem !important;
+ }
+
+ /* Greyed out play button when segments are playing */
+ .play-button.greyed-out {
+ opacity: 0.5;
+ cursor: not-allowed;
+ }
+
+ /* Highlighted stop button with blue pulse on small screens */
+ .segments-button.highlighted-stop {
+ background-color: rgba(59, 130, 246, 0.1);
+ color: #3b82f6;
+ border: 1px solid #3b82f6;
+ animation: bluePulse 2s infinite;
+ }
+
+ @keyframes bluePulse {
+ 0% {
+ box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
+ }
+ 50% {
+ box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
+ }
+ 100% {
+ box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
+ }
+ }
+
+ /* Completely disable ALL hover effects for play buttons */
+ .play-button:hover:not(:disabled),
+ .preview-button:hover:not(:disabled) {
+ /* Reset everything to prevent any changes */
+ color: inherit !important;
+ transform: none !important;
+ font-size: 0.875rem !important;
+ width: auto !important;
+ background: none !important;
+ }
+
+ .play-button svg,
+ .preview-button svg {
+ height: 1.5rem;
+ width: 1.5rem;
+ /* Make sure SVG scales with the button but doesn't change layout */
+ flex-shrink: 0;
+ }
+
+ @keyframes pulse {
+ 0% {
+ opacity: 0.8;
+ }
+ 50% {
+ opacity: 1;
+ }
+ 100% {
+ opacity: 0.8;
+ }
+ }
+
+ /* Add responsive button text class */
+ .button-text {
+ margin-left: 0.25rem;
+ }
+
+ /* Media queries for the editing tools */
+ @media (max-width: 992px) {
+ /* Hide text for undo/redo buttons on medium screens */
+ .button-group.secondary .button-text {
+ display: none;
+ }
+ }
+
+ @media (max-width: 768px) {
+ /* Keep all buttons in a single row, make them more compact */
+ .flex-container.single-row {
+ justify-content: space-between;
+ }
+
+ .button-group {
+ gap: 0.5rem;
+ }
+
+ /* Keep font size consistent regardless of screen size */
+ .preview-button,
+ .play-button {
+ font-size: 0.875rem !important;
+ }
+ }
+
+ @media (max-width: 640px) {
+ /* Prevent container overflow on mobile */
+ .editing-tools-container {
+ padding: 0.75rem;
+ overflow-x: hidden;
+ }
+
+ /* At this breakpoint, make preview button text shorter */
+ .preview-button {
+ min-width: auto;
+ }
+
+ /* Switch to short text versions */
+ .full-text {
+ display: none;
+ }
+
+ .short-text {
+ display: inline;
+ margin-left: 0.15rem;
+ }
+
+ /* Hide reset text */
+ .reset-text {
+ display: none;
+ }
+
+ /* Ensure buttons stay in correct position */
+ .button-group.play-buttons-group {
+ flex: initial;
+ justify-content: flex-start;
+ flex-shrink: 0;
+ }
+
+ .button-group.secondary {
+ flex: initial;
+ justify-content: flex-end;
+ flex-shrink: 0;
+ }
+
+ /* Reduce button sizes on mobile */
+ .button-group button {
+ padding: 0.375rem;
+ min-width: auto;
+ }
+
+ .button-group button svg {
+ height: 1.125rem;
+ width: 1.125rem;
+ margin-right: 0.125rem;
+ }
+ }
+
+ @media (max-width: 576px) {
+ /* Keep single row, left-align play buttons, right-align controls */
+ .flex-container.single-row {
+ justify-content: space-between;
+ flex-wrap: nowrap;
+ gap: 10px;
+ }
+
+ /* Fix left-align for play buttons */
+ .button-group.play-buttons-group {
+ justify-content: flex-start;
+ flex: 0 0 auto;
+ }
+
+ /* Fix right-align for editing controls */
+ .button-group.secondary {
+ justify-content: flex-end;
+ margin-left: auto;
+ }
+
+ /* Reduce button padding to fit more easily */
+ .button-group button {
+ padding: 0.25rem;
+ }
+
+ .divider {
+ margin: 0 0.25rem;
+ }
+ }
+
+ /* Very small screens - maintain layout but reduce further */
+ @media (max-width: 480px) {
+ .editing-tools-container {
+ padding: 0.5rem;
+ }
+
+ .flex-container.single-row {
+ gap: 8px;
+ }
+
+ .button-group.play-buttons-group,
+ .button-group.secondary {
+ gap: 0.25rem;
+ }
+
+ .divider {
+ display: none; /* Hide divider on very small screens */
+ }
+
+ /* Even smaller buttons on very small screens */
+ .button-group button {
+ padding: 0.125rem;
+ }
+
+ .button-group button svg {
+ height: 1rem;
+ width: 1rem;
+ margin-right: 0;
+ }
+
+ /* Hide all button text on very small screens */
+ .button-text,
+ .reset-text {
+ display: none;
+ }
+ }
+
+ /* Portrait orientation specific fixes */
+ @media (max-width: 640px) and (orientation: portrait) {
+ .editing-tools-container {
+ width: 100%;
+ box-sizing: border-box;
+ }
+
+ .flex-container.single-row {
+ width: 100%;
+ padding: 0;
+ margin: 0;
+ }
+
+ /* Ensure button groups don't overflow */
+ .button-group {
+ max-width: 50%;
+ }
+
+ .button-group.play-buttons-group {
+ max-width: 60%;
+ }
+
+ .button-group.secondary {
+ max-width: 40%;
+ }
}
- }
}
diff --git a/frontend-tools/video-editor/client/src/styles/IOSNotification.css b/frontend-tools/video-editor/client/src/styles/IOSNotification.css
index 5e3af434..bc9cbe39 100644
--- a/frontend-tools/video-editor/client/src/styles/IOSNotification.css
+++ b/frontend-tools/video-editor/client/src/styles/IOSNotification.css
@@ -1,167 +1,167 @@
.ios-notification {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 1000;
- background-color: #fffdeb;
- border-bottom: 1px solid #e2e2e2;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- padding: 10px;
- animation: slide-down 0.5s ease-in-out;
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ z-index: 1000;
+ background-color: #fffdeb;
+ border-bottom: 1px solid #e2e2e2;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ padding: 10px;
+ animation: slide-down 0.5s ease-in-out;
}
@keyframes slide-down {
- from {
- transform: translateY(-100%);
- }
- to {
- transform: translateY(0);
- }
+ from {
+ transform: translateY(-100%);
+ }
+ to {
+ transform: translateY(0);
+ }
}
.ios-notification-content {
- max-width: 600px;
- margin: 0 auto;
- display: flex;
- align-items: flex-start;
- position: relative;
- padding: 0 10px;
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ align-items: flex-start;
+ position: relative;
+ padding: 0 10px;
}
.ios-notification-icon {
- flex-shrink: 0;
- color: #0066cc;
- margin-right: 15px;
- margin-top: 3px;
+ flex-shrink: 0;
+ color: #0066cc;
+ margin-right: 15px;
+ margin-top: 3px;
}
.ios-notification-message {
- flex-grow: 1;
+ flex-grow: 1;
}
.ios-notification-message h3 {
- margin: 0 0 5px 0;
- font-size: 16px;
- font-weight: 600;
- color: #000;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ margin: 0 0 5px 0;
+ font-size: 16px;
+ font-weight: 600;
+ color: #000;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ios-notification-message p {
- margin: 0 0 8px 0;
- font-size: 14px;
- color: #333;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ margin: 0 0 8px 0;
+ font-size: 14px;
+ color: #333;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ios-notification-message ol {
- margin: 0;
- padding-left: 20px;
- font-size: 14px;
- color: #333;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ margin: 0;
+ padding-left: 20px;
+ font-size: 14px;
+ color: #333;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ios-notification-message li {
- margin-bottom: 3px;
+ margin-bottom: 3px;
}
.ios-notification-close {
- position: absolute;
- top: 0;
- right: 0;
- background: none;
- border: none;
- color: #666;
- cursor: pointer;
- padding: 5px;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: color 0.2s;
- -webkit-tap-highlight-color: transparent;
+ position: absolute;
+ top: 0;
+ right: 0;
+ background: none;
+ border: none;
+ color: #666;
+ cursor: pointer;
+ padding: 5px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ transition: color 0.2s;
+ -webkit-tap-highlight-color: transparent;
}
.ios-notification-close:hover {
- color: #000;
+ color: #000;
}
/* Desktop mode button styling */
.ios-mode-options {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-bottom: 8px;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ margin-bottom: 8px;
}
.ios-desktop-mode-btn {
- background-color: #0066cc;
- color: white;
- border: none;
- border-radius: 8px;
- padding: 8px 16px;
- font-size: 14px;
- font-weight: 500;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
- margin-bottom: 6px;
- cursor: pointer;
- transition: background-color 0.2s;
- -webkit-tap-highlight-color: transparent;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ background-color: #0066cc;
+ color: white;
+ border: none;
+ border-radius: 8px;
+ padding: 8px 16px;
+ font-size: 14px;
+ font-weight: 500;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ margin-bottom: 6px;
+ cursor: pointer;
+ transition: background-color 0.2s;
+ -webkit-tap-highlight-color: transparent;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ios-desktop-mode-btn:hover {
- background-color: #0055aa;
+ background-color: #0055aa;
}
.ios-desktop-mode-btn:active {
- background-color: #004499;
- transform: scale(0.98);
+ background-color: #004499;
+ transform: scale(0.98);
}
.ios-or {
- font-size: 12px;
- color: #666;
- margin: 0 0 6px 0;
- font-style: italic;
+ font-size: 12px;
+ color: #666;
+ margin: 0 0 6px 0;
+ font-style: italic;
}
/* iOS-specific styles */
@supports (-webkit-touch-callout: none) {
- .ios-notification {
- padding-top: env(safe-area-inset-top);
- }
+ .ios-notification {
+ padding-top: env(safe-area-inset-top);
+ }
- .ios-notification-close {
- padding: 10px;
- }
+ .ios-notification-close {
+ padding: 10px;
+ }
}
/* Make sure this notification has better visibility on smaller screens */
@media (max-width: 480px) {
- .ios-notification-content {
- padding: 5px;
- }
+ .ios-notification-content {
+ padding: 5px;
+ }
- .ios-notification-message h3 {
- font-size: 15px;
- }
+ .ios-notification-message h3 {
+ font-size: 15px;
+ }
- .ios-notification-message p,
- .ios-notification-message ol {
- font-size: 13px;
- }
+ .ios-notification-message p,
+ .ios-notification-message ol {
+ font-size: 13px;
+ }
}
/* Add iOS-specific styles when in desktop mode */
html.ios-device {
- /* Force the content to be rendered at desktop width */
- min-width: 1024px;
- overflow-x: auto;
+ /* Force the content to be rendered at desktop width */
+ min-width: 1024px;
+ overflow-x: auto;
}
html.ios-device .ios-control-btn {
- /* Make buttons easier to tap in desktop mode */
- min-height: 44px;
+ /* Make buttons easier to tap in desktop mode */
+ min-height: 44px;
}
diff --git a/frontend-tools/video-editor/client/src/styles/IOSPlayPrompt.css b/frontend-tools/video-editor/client/src/styles/IOSPlayPrompt.css
index 9fa7d707..98b74058 100644
--- a/frontend-tools/video-editor/client/src/styles/IOSPlayPrompt.css
+++ b/frontend-tools/video-editor/client/src/styles/IOSPlayPrompt.css
@@ -1,96 +1,96 @@
.mobile-play-prompt-overlay {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.7);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 1000;
- backdrop-filter: blur(5px);
- -webkit-backdrop-filter: blur(5px);
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(0, 0, 0, 0.7);
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ z-index: 1000;
+ backdrop-filter: blur(5px);
+ -webkit-backdrop-filter: blur(5px);
}
.mobile-play-prompt {
- background-color: white;
- width: 90%;
- max-width: 400px;
- border-radius: 12px;
- padding: 25px;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
- text-align: center;
+ background-color: white;
+ width: 90%;
+ max-width: 400px;
+ border-radius: 12px;
+ padding: 25px;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
+ text-align: center;
}
.mobile-play-prompt h3 {
- margin: 0 0 15px 0;
- font-size: 20px;
- color: #333;
- font-weight: 600;
+ margin: 0 0 15px 0;
+ font-size: 20px;
+ color: #333;
+ font-weight: 600;
}
.mobile-play-prompt p {
- margin: 0 0 15px 0;
- font-size: 16px;
- color: #444;
- line-height: 1.5;
+ margin: 0 0 15px 0;
+ font-size: 16px;
+ color: #444;
+ line-height: 1.5;
}
.mobile-prompt-instructions {
- margin: 20px 0;
- text-align: left;
- background-color: #f8f9fa;
- padding: 15px;
- border-radius: 8px;
+ margin: 20px 0;
+ text-align: left;
+ background-color: #f8f9fa;
+ padding: 15px;
+ border-radius: 8px;
}
.mobile-prompt-instructions p {
- margin: 0 0 8px 0;
- font-size: 15px;
- font-weight: 500;
+ margin: 0 0 8px 0;
+ font-size: 15px;
+ font-weight: 500;
}
.mobile-prompt-instructions ol {
- margin: 0;
- padding-left: 22px;
+ margin: 0;
+ padding-left: 22px;
}
.mobile-prompt-instructions li {
- margin-bottom: 8px;
- font-size: 14px;
- color: #333;
+ margin-bottom: 8px;
+ font-size: 14px;
+ color: #333;
}
.mobile-play-button {
- background-color: #007bff;
- color: white;
- border: none;
- border-radius: 8px;
- padding: 12px 25px;
- font-size: 16px;
- font-weight: 500;
- cursor: pointer;
- transition: background-color 0.2s;
- margin-top: 5px;
- /* Make button easier to tap on mobile */
- min-height: 44px;
- min-width: 200px;
+ background-color: #007bff;
+ color: white;
+ border: none;
+ border-radius: 8px;
+ padding: 12px 25px;
+ font-size: 16px;
+ font-weight: 500;
+ cursor: pointer;
+ transition: background-color 0.2s;
+ margin-top: 5px;
+ /* Make button easier to tap on mobile */
+ min-height: 44px;
+ min-width: 200px;
}
.mobile-play-button:hover {
- background-color: #0069d9;
+ background-color: #0069d9;
}
.mobile-play-button:active {
- background-color: #0062cc;
- transform: scale(0.98);
+ background-color: #0062cc;
+ transform: scale(0.98);
}
/* Special styles for mobile devices */
@supports (-webkit-touch-callout: none) {
- .mobile-play-button {
- /* Extra spacing for mobile */
- padding: 14px 25px;
- }
+ .mobile-play-button {
+ /* Extra spacing for mobile */
+ padding: 14px 25px;
+ }
}
diff --git a/frontend-tools/video-editor/client/src/styles/IOSVideoPlayer.css b/frontend-tools/video-editor/client/src/styles/IOSVideoPlayer.css
index 8d8dbf92..fcd7a2ca 100644
--- a/frontend-tools/video-editor/client/src/styles/IOSVideoPlayer.css
+++ b/frontend-tools/video-editor/client/src/styles/IOSVideoPlayer.css
@@ -1,94 +1,94 @@
.ios-video-player-container {
- position: relative;
- background-color: #f8f8f8;
- border: 1px solid #e2e2e2;
- border-radius: 0.5rem;
- padding: 1rem;
- margin-bottom: 1rem;
- overflow: hidden;
+ position: relative;
+ background-color: #f8f8f8;
+ border: 1px solid #e2e2e2;
+ border-radius: 0.5rem;
+ padding: 1rem;
+ margin-bottom: 1rem;
+ overflow: hidden;
}
.ios-video-player-container video {
- width: 100%;
- height: auto;
- max-height: 360px;
- aspect-ratio: 16/9;
- background-color: black;
+ width: 100%;
+ height: auto;
+ max-height: 360px;
+ aspect-ratio: 16/9;
+ background-color: black;
}
.ios-time-display {
- display: flex;
- justify-content: center;
- align-items: center;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
- color: #333;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ color: #333;
}
.ios-note {
- text-align: center;
- color: #777;
- font-size: 0.8rem;
- padding: 0.5rem 0;
+ text-align: center;
+ color: #777;
+ font-size: 0.8rem;
+ padding: 0.5rem 0;
}
/* iOS-specific styling tweaks */
@supports (-webkit-touch-callout: none) {
- .ios-video-player-container video {
- max-height: 50vh; /* Use viewport height on iOS */
- }
+ .ios-video-player-container video {
+ max-height: 50vh; /* Use viewport height on iOS */
+ }
- /* Improve controls visibility on iOS */
- video::-webkit-media-controls {
- opacity: 1 !important;
- visibility: visible !important;
- }
+ /* Improve controls visibility on iOS */
+ video::-webkit-media-controls {
+ opacity: 1 !important;
+ visibility: visible !important;
+ }
- /* Ensure controls don't disappear too quickly */
- video::-webkit-media-controls-panel {
- transition-duration: 3s !important;
- }
+ /* Ensure controls don't disappear too quickly */
+ video::-webkit-media-controls-panel {
+ transition-duration: 3s !important;
+ }
}
/* External controls styling */
.ios-external-controls {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- gap: 0.5rem;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 0.5rem;
}
.ios-control-btn {
- font-weight: bold;
- min-width: 100px;
- height: 44px; /* Minimum touch target size for iOS */
- border: none;
- border-radius: 8px;
- transition: all 0.2s ease;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
- -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
+ font-weight: bold;
+ min-width: 100px;
+ height: 44px; /* Minimum touch target size for iOS */
+ border: none;
+ border-radius: 8px;
+ transition: all 0.2s ease;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
}
.ios-control-btn:active {
- transform: scale(0.98);
- opacity: 0.9;
+ transform: scale(0.98);
+ opacity: 0.9;
}
/* Prevent text selection on buttons */
.no-select {
- -webkit-touch-callout: none; /* iOS Safari */
- -webkit-user-select: none; /* Safari */
- -khtml-user-select: none; /* Konqueror HTML */
- -moz-user-select: none; /* Firefox */
- -ms-user-select: none; /* Internet Explorer/Edge */
- user-select: none; /* Non-prefixed version, supported by Chrome and Opera */
- cursor: default;
+ -webkit-touch-callout: none; /* iOS Safari */
+ -webkit-user-select: none; /* Safari */
+ -khtml-user-select: none; /* Konqueror HTML */
+ -moz-user-select: none; /* Firefox */
+ -ms-user-select: none; /* Internet Explorer/Edge */
+ user-select: none; /* Non-prefixed version, supported by Chrome and Opera */
+ cursor: default;
}
/* Specifically prevent default behavior on fine controls */
.ios-fine-controls button,
.ios-external-controls .no-select {
- touch-action: manipulation;
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- pointer-events: auto;
+ touch-action: manipulation;
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ pointer-events: auto;
}
diff --git a/frontend-tools/video-editor/client/src/styles/Modal.css b/frontend-tools/video-editor/client/src/styles/Modal.css
index 0d67c342..68acb461 100644
--- a/frontend-tools/video-editor/client/src/styles/Modal.css
+++ b/frontend-tools/video-editor/client/src/styles/Modal.css
@@ -1,306 +1,306 @@
#video-editor-trim-root {
- .modal-overlay {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1000;
- }
-
- .modal-container {
- background-color: white;
- border-radius: 8px;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
- width: 90%;
- max-width: 500px;
- max-height: 90vh;
- overflow-y: auto;
- animation: modal-fade-in 0.3s ease-out;
- }
-
- @keyframes modal-fade-in {
- from {
- opacity: 0;
- transform: translateY(-20px);
+ .modal-overlay {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background-color: rgba(0, 0, 0, 0.5);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ z-index: 1000;
}
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- .modal-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 16px 20px;
- border-bottom: 1px solid #eee;
- }
-
- .modal-title {
- margin: 0;
- font-size: 1.25rem;
- font-weight: 600;
- color: #333;
- }
-
- .modal-close-button {
- background: none;
- border: none;
- cursor: pointer;
- color: #666;
- padding: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: color 0.2s;
- }
-
- .modal-close-button:hover {
- color: #000;
- }
-
- .modal-content {
- padding: 20px;
- color: #333;
- font-size: 1rem;
- line-height: 1.5;
- max-height: 400px;
- overflow-y: auto;
- }
-
- .modal-actions {
- display: flex;
- justify-content: flex-end;
- padding: 16px 20px;
- border-top: 1px solid #eee;
- gap: 12px;
- }
-
- .modal-button {
- padding: 8px 16px;
- border-radius: 4px;
- font-weight: 500;
- cursor: pointer;
- transition: all 0.2s;
- border: none;
- }
-
- .modal-button-primary {
- background-color: #0066cc;
- color: white;
- }
-
- .modal-button-primary:hover {
- background-color: #0055aa;
- }
-
- .modal-button-secondary {
- background-color: #f0f0f0;
- color: #333;
- }
-
- .modal-button-secondary:hover {
- background-color: #e0e0e0;
- }
-
- .modal-button-danger {
- background-color: #dc3545;
- color: white;
- }
-
- .modal-button-danger:hover {
- background-color: #bd2130;
- }
-
- /* Modal content styles */
- .modal-message {
- margin-bottom: 16px;
- font-size: 1rem;
- }
-
- .text-center {
- text-align: center;
- }
-
- .modal-spinner {
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 20px 0;
- }
-
- .spinner {
- border: 4px solid rgba(0, 0, 0, 0.1);
- border-radius: 50%;
- border-top: 4px solid #0066cc;
- width: 30px;
- height: 30px;
- animation: spin 1s linear infinite;
- }
-
- @keyframes spin {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
-
- .modal-success-icon {
- display: flex;
- justify-content: center;
- margin-bottom: 16px;
- color: #28a745;
- font-size: 2rem;
- }
-
- .modal-success-icon svg {
- width: 60px;
- height: 60px;
- color: #4caf50;
- animation: success-pop 0.5s ease-out;
- }
-
- @keyframes success-pop {
- 0% {
- transform: scale(0);
- opacity: 0;
- }
- 70% {
- transform: scale(1.1);
- opacity: 1;
- }
- 100% {
- transform: scale(1);
- opacity: 1;
- }
- }
-
- .modal-error-icon {
- display: flex;
- justify-content: center;
- margin-bottom: 16px;
- color: #dc3545;
- font-size: 2rem;
- }
-
- .modal-error-icon svg {
- width: 60px;
- height: 60px;
- color: #f44336;
- animation: error-pop 0.5s ease-out;
- }
-
- @keyframes error-pop {
- 0% {
- transform: scale(0);
- opacity: 0;
- }
- 70% {
- transform: scale(1.1);
- opacity: 1;
- }
- 100% {
- transform: scale(1);
- opacity: 1;
- }
- }
-
- .modal-choices {
- display: flex;
- flex-direction: column;
- gap: 10px;
- margin-top: 20px;
- }
-
- .modal-choice-button {
- padding: 12px 16px;
- border: none;
- border-radius: 4px;
- background-color: #0066cc;
- text-align: center;
- cursor: pointer;
- transition: all 0.2s;
- display: flex;
- align-items: center;
- justify-content: center;
- font-weight: 500;
- text-decoration: none;
- color: white;
- }
-
- .modal-choice-button:hover {
- background-color: #0055aa;
- transform: translateY(-1px);
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- }
-
- .modal-choice-button svg {
- margin-right: 8px;
- }
-
- .success-link {
- background-color: #4caf50;
- }
-
- .success-link:hover {
- background-color: #3d8b40;
- }
-
- .centered-choice {
- margin: 0 auto;
- width: auto;
- min-width: 220px;
- background-color: #0066cc;
- color: white;
- }
-
- .centered-choice:hover {
- background-color: #0055aa;
- }
-
- @media (max-width: 480px) {
.modal-container {
- width: 95%;
+ background-color: white;
+ border-radius: 8px;
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
+ width: 90%;
+ max-width: 500px;
+ max-height: 90vh;
+ overflow-y: auto;
+ animation: modal-fade-in 0.3s ease-out;
+ }
+
+ @keyframes modal-fade-in {
+ from {
+ opacity: 0;
+ transform: translateY(-20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ .modal-header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 16px 20px;
+ border-bottom: 1px solid #eee;
+ }
+
+ .modal-title {
+ margin: 0;
+ font-size: 1.25rem;
+ font-weight: 600;
+ color: #333;
+ }
+
+ .modal-close-button {
+ background: none;
+ border: none;
+ cursor: pointer;
+ color: #666;
+ padding: 4px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ transition: color 0.2s;
+ }
+
+ .modal-close-button:hover {
+ color: #000;
+ }
+
+ .modal-content {
+ padding: 20px;
+ color: #333;
+ font-size: 1rem;
+ line-height: 1.5;
+ max-height: 400px;
+ overflow-y: auto;
}
.modal-actions {
- flex-direction: column;
+ display: flex;
+ justify-content: flex-end;
+ padding: 16px 20px;
+ border-top: 1px solid #eee;
+ gap: 12px;
}
.modal-button {
- width: 100%;
+ padding: 8px 16px;
+ border-radius: 4px;
+ font-weight: 500;
+ cursor: pointer;
+ transition: all 0.2s;
+ border: none;
}
- }
- .error-message {
- color: #f44336;
- font-weight: 500;
- background-color: rgba(244, 67, 54, 0.1);
- padding: 10px;
- border-radius: 4px;
- border-left: 4px solid #f44336;
- margin-top: 10px;
- }
+ .modal-button-primary {
+ background-color: #0066cc;
+ color: white;
+ }
- .redirect-message {
- margin-top: 20px;
- color: #555;
- font-size: 0.95rem;
- padding: 0;
- margin: 0;
- }
+ .modal-button-primary:hover {
+ background-color: #0055aa;
+ }
- .countdown {
- font-weight: bold;
- color: #0066cc;
- font-size: 1.1rem;
- }
+ .modal-button-secondary {
+ background-color: #f0f0f0;
+ color: #333;
+ }
+
+ .modal-button-secondary:hover {
+ background-color: #e0e0e0;
+ }
+
+ .modal-button-danger {
+ background-color: #dc3545;
+ color: white;
+ }
+
+ .modal-button-danger:hover {
+ background-color: #bd2130;
+ }
+
+ /* Modal content styles */
+ .modal-message {
+ margin-bottom: 16px;
+ font-size: 1rem;
+ }
+
+ .text-center {
+ text-align: center;
+ }
+
+ .modal-spinner {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 20px 0;
+ }
+
+ .spinner {
+ border: 4px solid rgba(0, 0, 0, 0.1);
+ border-radius: 50%;
+ border-top: 4px solid #0066cc;
+ width: 30px;
+ height: 30px;
+ animation: spin 1s linear infinite;
+ }
+
+ @keyframes spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+ }
+
+ .modal-success-icon {
+ display: flex;
+ justify-content: center;
+ margin-bottom: 16px;
+ color: #28a745;
+ font-size: 2rem;
+ }
+
+ .modal-success-icon svg {
+ width: 60px;
+ height: 60px;
+ color: #4caf50;
+ animation: success-pop 0.5s ease-out;
+ }
+
+ @keyframes success-pop {
+ 0% {
+ transform: scale(0);
+ opacity: 0;
+ }
+ 70% {
+ transform: scale(1.1);
+ opacity: 1;
+ }
+ 100% {
+ transform: scale(1);
+ opacity: 1;
+ }
+ }
+
+ .modal-error-icon {
+ display: flex;
+ justify-content: center;
+ margin-bottom: 16px;
+ color: #dc3545;
+ font-size: 2rem;
+ }
+
+ .modal-error-icon svg {
+ width: 60px;
+ height: 60px;
+ color: #f44336;
+ animation: error-pop 0.5s ease-out;
+ }
+
+ @keyframes error-pop {
+ 0% {
+ transform: scale(0);
+ opacity: 0;
+ }
+ 70% {
+ transform: scale(1.1);
+ opacity: 1;
+ }
+ 100% {
+ transform: scale(1);
+ opacity: 1;
+ }
+ }
+
+ .modal-choices {
+ display: flex;
+ flex-direction: column;
+ gap: 10px;
+ margin-top: 20px;
+ }
+
+ .modal-choice-button {
+ padding: 12px 16px;
+ border: none;
+ border-radius: 4px;
+ background-color: #0066cc;
+ text-align: center;
+ cursor: pointer;
+ transition: all 0.2s;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-weight: 500;
+ text-decoration: none;
+ color: white;
+ }
+
+ .modal-choice-button:hover {
+ background-color: #0055aa;
+ transform: translateY(-1px);
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+ }
+
+ .modal-choice-button svg {
+ margin-right: 8px;
+ }
+
+ .success-link {
+ background-color: #4caf50;
+ }
+
+ .success-link:hover {
+ background-color: #3d8b40;
+ }
+
+ .centered-choice {
+ margin: 0 auto;
+ width: auto;
+ min-width: 220px;
+ background-color: #0066cc;
+ color: white;
+ }
+
+ .centered-choice:hover {
+ background-color: #0055aa;
+ }
+
+ @media (max-width: 480px) {
+ .modal-container {
+ width: 95%;
+ }
+
+ .modal-actions {
+ flex-direction: column;
+ }
+
+ .modal-button {
+ width: 100%;
+ }
+ }
+
+ .error-message {
+ color: #f44336;
+ font-weight: 500;
+ background-color: rgba(244, 67, 54, 0.1);
+ padding: 10px;
+ border-radius: 4px;
+ border-left: 4px solid #f44336;
+ margin-top: 10px;
+ }
+
+ .redirect-message {
+ margin-top: 20px;
+ color: #555;
+ font-size: 0.95rem;
+ padding: 0;
+ margin: 0;
+ }
+
+ .countdown {
+ font-weight: bold;
+ color: #0066cc;
+ font-size: 1.1rem;
+ }
}
diff --git a/frontend-tools/video-editor/client/src/styles/TimelineControls.css b/frontend-tools/video-editor/client/src/styles/TimelineControls.css
index ac38e61d..807c27a9 100644
--- a/frontend-tools/video-editor/client/src/styles/TimelineControls.css
+++ b/frontend-tools/video-editor/client/src/styles/TimelineControls.css
@@ -1,874 +1,874 @@
#video-editor-trim-root {
- .timeline-container-card {
- background-color: white;
- border-radius: 0.5rem;
- padding: 1rem;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- }
-
- .timeline-header {
- margin-bottom: 0.75rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
-
- .timeline-title {
- font-size: 0.875rem;
- font-weight: 500;
- color: var(--foreground, #333);
- }
-
- .timeline-title-text {
- font-weight: 700;
- }
-
- .current-time {
- font-size: 0.875rem;
- color: var(--foreground, #333);
- }
-
- .time-code {
- font-family: monospace;
- background-color: #f3f4f6;
- padding: 0 0.5rem;
- border-radius: 0.25rem;
- }
-
- .duration-time {
- font-size: 0.875rem;
- color: var(--foreground, #333);
- }
-
- .timeline-scroll-container {
- position: relative;
- overflow: visible !important;
- }
-
- .timeline-container {
- position: relative;
- min-width: 100%;
- background-color: #fafbfc;
- height: 70px;
- border-radius: 0.25rem;
- overflow: visible !important;
- }
-
- .timeline-marker {
- position: absolute;
- height: 82px; /* Increased height to extend below timeline */
- width: 2px;
- background-color: #000;
- transform: translateX(-50%);
- z-index: 50;
- pointer-events: none;
- }
-
- .timeline-marker-head {
- position: absolute;
- top: -6px;
- left: 50%;
- transform: translateX(-50%);
- width: 16px;
- height: 16px;
- background-color: #ef4444;
- border-radius: 50%;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- pointer-events: auto;
- z-index: 51;
- }
-
- .timeline-marker-drag {
- position: absolute;
- bottom: -12px; /* Changed from -6px to -12px to move it further down */
- left: 50%;
- transform: translateX(-50%);
- width: 16px;
- height: 16px;
- background-color: #4b5563;
- border-radius: 50%;
- cursor: grab;
- display: flex;
- align-items: center;
- justify-content: center;
- pointer-events: auto;
- z-index: 51;
- }
-
- .timeline-marker-drag.dragging {
- cursor: grabbing;
- background-color: #374151;
- }
-
- .timeline-marker-head-icon {
- color: white;
- font-size: 14px;
- font-weight: bold;
- line-height: 1;
- user-select: none;
- }
-
- .timeline-marker-drag-icon {
- color: white;
- font-size: 12px;
- line-height: 1;
- user-select: none;
- transform: rotate(90deg);
- display: inline-block;
- }
-
- .trim-line-marker {
- position: absolute;
- top: 0;
- bottom: 0;
- width: 1px;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 20;
- }
-
- .trim-handle {
- position: absolute;
- width: 10px;
- height: 20px;
- background-color: black;
- cursor: ew-resize;
-
- &.left {
- right: 0;
- top: 10px;
- border-radius: 3px 0 0 3px;
+ .timeline-container-card {
+ background-color: white;
+ border-radius: 0.5rem;
+ padding: 1rem;
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
- &.right {
- left: 0;
- top: 10px;
- border-radius: 0 3px 3px 0;
- }
- }
-
- .timeline-thumbnail {
- display: inline-block;
- height: 70px;
- border-right: 1px solid rgba(0, 0, 0, 0.03);
- }
-
- .split-point {
- position: absolute;
- top: 0;
- bottom: 0;
- width: 1px;
- background-color: rgba(255, 0, 0, 0.5);
- z-index: 15;
- }
-
- .clip-segment {
- position: absolute;
- height: 70px;
- border-radius: 4px;
- z-index: 10;
- border: 2px solid rgba(0, 0, 0, 0.15);
- cursor: pointer;
-
- &:hover {
- box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
- border-color: rgba(0, 0, 0, 0.4);
- background-color: rgba(240, 240, 240, 0.8) !important;
+ .timeline-header {
+ margin-bottom: 0.75rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
}
- &.selected {
- box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.7);
- border-color: rgba(59, 130, 246, 0.9);
+ .timeline-title {
+ font-size: 0.875rem;
+ font-weight: 500;
+ color: var(--foreground, #333);
}
- &.selected:hover {
- background-color: rgba(240, 248, 255, 0.85) !important;
- }
- }
-
- .clip-segment-info {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 0.4rem;
- background-color: rgba(0, 0, 0, 0.4);
- color: white;
- opacity: 1;
- transition: background-color 0.2s;
- line-height: 1.3;
- }
-
- .clip-segment:hover .clip-segment-info {
- background-color: rgba(0, 0, 0, 0.5);
- }
-
- .clip-segment.selected .clip-segment-info {
- background-color: rgba(59, 130, 246, 0.5);
- }
-
- .clip-segment.selected:hover .clip-segment-info {
- background-color: rgba(59, 130, 246, 0.4);
- }
-
- .clip-segment-name {
- font-weight: 700;
- font-size: 12px;
- }
-
- .clip-segment-time {
- font-size: 10px;
- }
-
- .clip-segment-duration {
- font-size: 10px;
- }
-
- .clip-segment-handle {
- position: absolute;
- top: 0;
- bottom: 0;
- width: 6px;
- background-color: rgba(0, 0, 0, 0.2);
- cursor: ew-resize;
- }
-
- .clip-segment-handle:hover {
- background-color: rgba(0, 0, 0, 0.4);
- }
-
- .clip-segment-handle.left {
- left: 0;
- border-radius: 2px 0 0 2px;
- }
-
- .clip-segment-handle.right {
- right: 0;
- border-radius: 0 2px 2px 0;
- }
-
- /* Enhanced handles for touch devices */
- @media (pointer: coarse) {
- .clip-segment-handle {
- width: 14px; /* Wider target for touch devices */
- background-color: rgba(0, 0, 0, 0.4); /* Darker by default for better visibility */
+ .timeline-title-text {
+ font-weight: 700;
}
- .clip-segment-handle:after {
- content: "";
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 2px;
- height: 20px;
- background-color: rgba(255, 255, 255, 0.8);
- border-radius: 1px;
+ .current-time {
+ font-size: 0.875rem;
+ color: var(--foreground, #333);
}
- .clip-segment-handle.left:after {
- box-shadow: -2px 0 0 rgba(0, 0, 0, 0.5);
+ .time-code {
+ font-family: monospace;
+ background-color: #f3f4f6;
+ padding: 0 0.5rem;
+ border-radius: 0.25rem;
}
- .clip-segment-handle.right:after {
- box-shadow: 2px 0 0 rgba(0, 0, 0, 0.5);
+ .duration-time {
+ font-size: 0.875rem;
+ color: var(--foreground, #333);
}
- /* Active state for touch feedback */
- .clip-segment-handle:active {
- background-color: rgba(0, 0, 0, 0.6);
+ .timeline-scroll-container {
+ position: relative;
+ overflow: visible !important;
+ }
+
+ .timeline-container {
+ position: relative;
+ min-width: 100%;
+ background-color: #fafbfc;
+ height: 70px;
+ border-radius: 0.25rem;
+ overflow: visible !important;
}
.timeline-marker {
- height: 85px;
+ position: absolute;
+ height: 82px; /* Increased height to extend below timeline */
+ width: 2px;
+ background-color: #000;
+ transform: translateX(-50%);
+ z-index: 50;
+ pointer-events: none;
}
.timeline-marker-head {
- width: 24px;
- height: 24px;
- top: -13px;
+ position: absolute;
+ top: -6px;
+ left: 50%;
+ transform: translateX(-50%);
+ width: 16px;
+ height: 16px;
+ background-color: #ef4444;
+ border-radius: 50%;
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ pointer-events: auto;
+ z-index: 51;
}
.timeline-marker-drag {
- width: 24px;
- height: 24px;
- bottom: -18px;
+ position: absolute;
+ bottom: -12px; /* Changed from -6px to -12px to move it further down */
+ left: 50%;
+ transform: translateX(-50%);
+ width: 16px;
+ height: 16px;
+ background-color: #4b5563;
+ border-radius: 50%;
+ cursor: grab;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ pointer-events: auto;
+ z-index: 51;
}
- .timeline-marker-head.dragging {
- width: 28px;
- height: 28px;
- top: -15px;
- }
- }
-
- .segment-tooltip,
- .empty-space-tooltip {
- position: absolute;
- background-color: white;
- border-radius: 4px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
- padding: 0.5rem;
- z-index: 1000;
- min-width: 150px;
- text-align: center;
- pointer-events: auto;
- top: -100px !important;
- transform: translateY(-10px);
- }
-
- .segment-tooltip:after,
- .empty-space-tooltip:after {
- content: "";
- position: absolute;
- bottom: -5px;
- left: 50%;
- transform: translateX(-50%);
- width: 0;
- height: 0;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid white;
- }
-
- .segment-tooltip:before,
- .empty-space-tooltip:before {
- content: "";
- position: absolute;
- bottom: -6px;
- left: 50%;
- transform: translateX(-50%);
- width: 0;
- height: 0;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-top: 6px solid rgba(0, 0, 0, 0.1);
- z-index: -1;
- }
-
- .tooltip-time {
- font-weight: 600;
- font-size: 0.875rem;
- margin-bottom: 0.5rem;
- color: #333;
- }
-
- .tooltip-actions {
- display: flex;
- justify-content: center;
- gap: 0.5rem;
- }
-
- .tooltip-action-btn {
- background-color: #f3f4f6;
- border: none;
- border-radius: 0.25rem;
- padding: 0.375rem;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- color: #4b5563;
- min-width: 20px !important;
- }
-
- .tooltip-action-btn:hover {
- background-color: #e5e7eb;
- color: #111827;
- }
-
- .tooltip-action-btn.delete {
- color: #ef4444;
- }
-
- .tooltip-action-btn.delete:hover {
- background-color: #fee2e2;
- }
-
- .tooltip-action-btn.new-segment {
- padding: 0.375rem 0.5rem;
- }
-
- .tooltip-action-btn.new-segment .tooltip-btn-text {
- margin-left: 0.25rem;
- font-size: 0.75rem;
- }
-
- .tooltip-action-btn svg {
- width: 1rem;
- height: 1rem;
- }
-
- .timeline-controls {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 0.75rem;
- }
-
- .time-navigation {
- display: none;
- align-items: center;
- gap: 0.5rem;
- }
-
- .time-nav-label {
- font-size: 0.875rem;
- font-weight: 500;
- }
-
- .time-input {
- border: 1px solid #d1d5db;
- border-radius: 0.25rem;
- padding: 0.25rem 0.5rem;
- width: 8rem;
- font-size: 0.875rem;
- }
-
- .time-button-group {
- display: flex;
- }
-
- .time-button {
- background-color: #e5e7eb;
- color: black;
- padding: 0.25rem 0.5rem;
- font-size: 0.875rem;
- border: none;
- cursor: pointer;
- margin-right: 0.5rem;
- }
-
- .time-button:hover {
- background-color: #d1d5db;
- }
-
- .time-button:first-child {
- border-top-left-radius: 0.25rem;
- border-bottom-left-radius: 0.25rem;
- }
-
- .time-button:last-child {
- border-top-right-radius: 0.25rem;
- border-bottom-right-radius: 0.25rem;
- }
-
- .controls-right {
- display: flex;
- align-items: center;
- gap: 0.5rem;
- margin-left: auto;
- }
-
- .zoom-dropdown-container {
- position: relative;
- z-index: 100;
- display: none;
- }
-
- .zoom-button {
- background-color: #374151;
- color: white;
- border: none;
- border-radius: 0.25rem;
- padding: 0.25rem 0.75rem;
- font-size: 0.875rem;
- display: flex;
- align-items: center;
- cursor: pointer;
- }
-
- .zoom-button:hover {
- background-color: #1f2937;
- }
-
- .zoom-button svg {
- margin-left: 0.25rem;
- }
-
- .zoom-dropdown {
- position: absolute;
- top: 100%;
- left: 0;
- margin-top: 0.25rem;
- width: 9rem;
- background-color: #374151;
- color: white;
- border-radius: 0.25rem;
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
- z-index: 50;
- max-height: 300px;
- overflow-y: auto;
- }
-
- .zoom-option {
- padding: 0.25rem 0.75rem;
- cursor: pointer;
- }
-
- .zoom-option:hover {
- background-color: #4b5563;
- }
-
- .zoom-option.selected {
- background-color: #6b7280;
- display: flex;
- align-items: center;
- }
-
- .zoom-option svg {
- margin-right: 0.25rem;
- }
-
- /* Save buttons container */
- .save-buttons-row {
- display: flex;
- align-items: center;
- gap: 0.5rem;
- margin: 0;
- flex-wrap: nowrap;
- }
-
- /* General styles for all save buttons */
- .save-button,
- .save-copy-button,
- .save-segments-button {
- color: #ffffff;
- background: #0066cc;
- border-radius: 0.25rem;
- font-size: 0.75rem;
- padding: 0.25rem 0.5rem;
- cursor: pointer;
- border: none;
- white-space: nowrap;
- transition: background-color 0.2s;
- min-width: fit-content;
- }
-
- /* Shared hover effect */
- .save-button:hover,
- .save-copy-button:hover,
- .save-segments-button:hover {
- background-color: #0056b3;
- }
-
- /* Media query for smaller screens */
- @media (max-width: 576px) {
- .save-buttons-row {
- width: 100%;
- justify-content: space-between;
- gap: 0.5rem;
+ .timeline-marker-drag.dragging {
+ cursor: grabbing;
+ background-color: #374151;
}
- .save-button,
- .save-copy-button,
- .save-segments-button {
- flex: 1;
- font-size: 0.7rem;
- padding: 0.25rem 0.35rem;
- }
- }
-
- /* Very small screens - adjust save buttons */
- @media (max-width: 480px) {
- .save-button,
- .save-copy-button,
- .save-segments-button {
- font-size: 0.675rem;
- padding: 0.25rem;
+ .timeline-marker-head-icon {
+ color: white;
+ font-size: 14px;
+ font-weight: bold;
+ line-height: 1;
+ user-select: none;
+ }
+
+ .timeline-marker-drag-icon {
+ color: white;
+ font-size: 12px;
+ line-height: 1;
+ user-select: none;
+ transform: rotate(90deg);
+ display: inline-block;
+ }
+
+ .trim-line-marker {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ width: 1px;
+ background-color: rgba(0, 0, 0, 0.5);
+ z-index: 20;
+ }
+
+ .trim-handle {
+ position: absolute;
+ width: 10px;
+ height: 20px;
+ background-color: black;
+ cursor: ew-resize;
+
+ &.left {
+ right: 0;
+ top: 10px;
+ border-radius: 3px 0 0 3px;
+ }
+
+ &.right {
+ left: 0;
+ top: 10px;
+ border-radius: 0 3px 3px 0;
+ }
+ }
+
+ .timeline-thumbnail {
+ display: inline-block;
+ height: 70px;
+ border-right: 1px solid rgba(0, 0, 0, 0.03);
+ }
+
+ .split-point {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ width: 1px;
+ background-color: rgba(255, 0, 0, 0.5);
+ z-index: 15;
+ }
+
+ .clip-segment {
+ position: absolute;
+ height: 70px;
+ border-radius: 4px;
+ z-index: 10;
+ border: 2px solid rgba(0, 0, 0, 0.15);
+ cursor: pointer;
+
+ &:hover {
+ box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
+ border-color: rgba(0, 0, 0, 0.4);
+ background-color: rgba(240, 240, 240, 0.8) !important;
+ }
+
+ &.selected {
+ box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.7);
+ border-color: rgba(59, 130, 246, 0.9);
+ }
+
+ &.selected:hover {
+ background-color: rgba(240, 248, 255, 0.85) !important;
+ }
+ }
+
+ .clip-segment-info {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ padding: 0.4rem;
+ background-color: rgba(0, 0, 0, 0.4);
+ color: white;
+ opacity: 1;
+ transition: background-color 0.2s;
+ line-height: 1.3;
+ }
+
+ .clip-segment:hover .clip-segment-info {
+ background-color: rgba(0, 0, 0, 0.5);
+ }
+
+ .clip-segment.selected .clip-segment-info {
+ background-color: rgba(59, 130, 246, 0.5);
+ }
+
+ .clip-segment.selected:hover .clip-segment-info {
+ background-color: rgba(59, 130, 246, 0.4);
+ }
+
+ .clip-segment-name {
+ font-weight: 700;
+ font-size: 12px;
+ }
+
+ .clip-segment-time {
+ font-size: 10px;
+ }
+
+ .clip-segment-duration {
+ font-size: 10px;
+ }
+
+ .clip-segment-handle {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ width: 6px;
+ background-color: rgba(0, 0, 0, 0.2);
+ cursor: ew-resize;
+ }
+
+ .clip-segment-handle:hover {
+ background-color: rgba(0, 0, 0, 0.4);
+ }
+
+ .clip-segment-handle.left {
+ left: 0;
+ border-radius: 2px 0 0 2px;
+ }
+
+ .clip-segment-handle.right {
+ right: 0;
+ border-radius: 0 2px 2px 0;
+ }
+
+ /* Enhanced handles for touch devices */
+ @media (pointer: coarse) {
+ .clip-segment-handle {
+ width: 14px; /* Wider target for touch devices */
+ background-color: rgba(0, 0, 0, 0.4); /* Darker by default for better visibility */
+ }
+
+ .clip-segment-handle:after {
+ content: "";
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ width: 2px;
+ height: 20px;
+ background-color: rgba(255, 255, 255, 0.8);
+ border-radius: 1px;
+ }
+
+ .clip-segment-handle.left:after {
+ box-shadow: -2px 0 0 rgba(0, 0, 0, 0.5);
+ }
+
+ .clip-segment-handle.right:after {
+ box-shadow: 2px 0 0 rgba(0, 0, 0, 0.5);
+ }
+
+ /* Active state for touch feedback */
+ .clip-segment-handle:active {
+ background-color: rgba(0, 0, 0, 0.6);
+ }
+
+ .timeline-marker {
+ height: 85px;
+ }
+
+ .timeline-marker-head {
+ width: 24px;
+ height: 24px;
+ top: -13px;
+ }
+
+ .timeline-marker-drag {
+ width: 24px;
+ height: 24px;
+ bottom: -18px;
+ }
+
+ .timeline-marker-head.dragging {
+ width: 28px;
+ height: 28px;
+ top: -15px;
+ }
+ }
+
+ .segment-tooltip,
+ .empty-space-tooltip {
+ position: absolute;
+ background-color: white;
+ border-radius: 4px;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
+ padding: 0.5rem;
+ z-index: 1000;
+ min-width: 150px;
+ text-align: center;
+ pointer-events: auto;
+ top: -100px !important;
+ transform: translateY(-10px);
+ }
+
+ .segment-tooltip:after,
+ .empty-space-tooltip:after {
+ content: "";
+ position: absolute;
+ bottom: -5px;
+ left: 50%;
+ transform: translateX(-50%);
+ width: 0;
+ height: 0;
+ border-left: 5px solid transparent;
+ border-right: 5px solid transparent;
+ border-top: 5px solid white;
+ }
+
+ .segment-tooltip:before,
+ .empty-space-tooltip:before {
+ content: "";
+ position: absolute;
+ bottom: -6px;
+ left: 50%;
+ transform: translateX(-50%);
+ width: 0;
+ height: 0;
+ border-left: 6px solid transparent;
+ border-right: 6px solid transparent;
+ border-top: 6px solid rgba(0, 0, 0, 0.1);
+ z-index: -1;
+ }
+
+ .tooltip-time {
+ font-weight: 600;
+ font-size: 0.875rem;
+ margin-bottom: 0.5rem;
+ color: #333;
+ }
+
+ .tooltip-actions {
+ display: flex;
+ justify-content: center;
+ gap: 0.5rem;
+ }
+
+ .tooltip-action-btn {
+ background-color: #f3f4f6;
+ border: none;
+ border-radius: 0.25rem;
+ padding: 0.375rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+ color: #4b5563;
+ min-width: 20px !important;
+ }
+
+ .tooltip-action-btn:hover {
+ background-color: #e5e7eb;
+ color: #111827;
+ }
+
+ .tooltip-action-btn.delete {
+ color: #ef4444;
+ }
+
+ .tooltip-action-btn.delete:hover {
+ background-color: #fee2e2;
+ }
+
+ .tooltip-action-btn.new-segment {
+ padding: 0.375rem 0.5rem;
+ }
+
+ .tooltip-action-btn.new-segment .tooltip-btn-text {
+ margin-left: 0.25rem;
+ font-size: 0.75rem;
+ }
+
+ .tooltip-action-btn svg {
+ width: 1rem;
+ height: 1rem;
+ }
+
+ .timeline-controls {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ margin-top: 0.75rem;
+ }
+
+ .time-navigation {
+ display: none;
+ align-items: center;
+ gap: 0.5rem;
+ }
+
+ .time-nav-label {
+ font-size: 0.875rem;
+ font-weight: 500;
+ }
+
+ .time-input {
+ border: 1px solid #d1d5db;
+ border-radius: 0.25rem;
+ padding: 0.25rem 0.5rem;
+ width: 8rem;
+ font-size: 0.875rem;
+ }
+
+ .time-button-group {
+ display: flex;
+ }
+
+ .time-button {
+ background-color: #e5e7eb;
+ color: black;
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ border: none;
+ cursor: pointer;
+ margin-right: 0.5rem;
+ }
+
+ .time-button:hover {
+ background-color: #d1d5db;
+ }
+
+ .time-button:first-child {
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+
+ .time-button:last-child {
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
}
- /* Remove margins for controls-right buttons */
.controls-right {
- margin: 0;
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ margin-left: auto;
}
- .controls-right button {
- margin: 0;
- }
- }
-
- /* Tooltip styles - only on desktop where hover is available */
- @media (hover: hover) and (pointer: fine) {
- [data-tooltip] {
- position: relative;
+ .zoom-dropdown-container {
+ position: relative;
+ z-index: 100;
+ display: none;
}
- [data-tooltip]:before {
- content: attr(data-tooltip);
- position: absolute;
- bottom: 100%;
- left: 50%;
- transform: translateX(-50%);
- margin-bottom: 5px;
- background-color: rgba(0, 0, 0, 0.8);
- color: white;
- text-align: center;
- padding: 5px 10px;
- border-radius: 3px;
- font-size: 12px;
- white-space: nowrap;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- z-index: 1000;
- pointer-events: none;
+ .zoom-button {
+ background-color: #374151;
+ color: white;
+ border: none;
+ border-radius: 0.25rem;
+ padding: 0.25rem 0.75rem;
+ font-size: 0.875rem;
+ display: flex;
+ align-items: center;
+ cursor: pointer;
}
- [data-tooltip]:after {
- content: "";
- position: absolute;
- bottom: 100%;
- left: 50%;
- transform: translateX(-50%);
- border-width: 5px;
- border-style: solid;
- border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- pointer-events: none;
+ .zoom-button:hover {
+ background-color: #1f2937;
}
- [data-tooltip]:hover:before,
- [data-tooltip]:hover:after {
- opacity: 1;
- visibility: visible;
+ .zoom-button svg {
+ margin-left: 0.25rem;
}
- }
- /* Hide button tooltips on touch devices */
- @media (pointer: coarse) {
- [data-tooltip]:before,
- [data-tooltip]:after {
- display: none !important;
- content: none !important;
- opacity: 0 !important;
- visibility: hidden !important;
- pointer-events: none !important;
+ .zoom-dropdown {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ margin-top: 0.25rem;
+ width: 9rem;
+ background-color: #374151;
+ color: white;
+ border-radius: 0.25rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ z-index: 50;
+ max-height: 300px;
+ overflow-y: auto;
}
- }
- /* Modal success and error styling */
- .modal-success-content,
- .modal-error-content {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 1rem;
- text-align: center;
- padding: 0;
- margin: 0;
- }
-
- .modal-success-icon,
- .modal-error-icon {
- margin-bottom: 1rem;
- }
-
- .modal-success-icon svg {
- color: #4caf50;
- animation: fadeIn 0.5s ease-in-out;
- }
-
- .modal-error-icon svg {
- color: #f44336;
- animation: fadeIn 0.5s ease-in-out;
- }
-
- .success-link {
- background-color: #4caf50;
- color: white;
- transition: background-color 0.3s;
- }
-
- .success-link:hover {
- background-color: #388e3c;
- }
-
- .error-message {
- color: #f44336;
- font-weight: 500;
- }
-
- /* Modal spinner animation */
- .modal-spinner {
- display: flex;
- justify-content: center;
- margin: 2rem 0;
- }
-
- .spinner {
- width: 50px;
- height: 50px;
- border: 5px solid rgba(0, 0, 0, 0.1);
- border-radius: 50%;
- border-top-color: #0066cc;
- animation: spin 1s ease-in-out infinite;
- }
-
- @keyframes spin {
- to {
- transform: rotate(360deg);
+ .zoom-option {
+ padding: 0.25rem 0.75rem;
+ cursor: pointer;
}
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- transform: scale(0.9);
+ .zoom-option:hover {
+ background-color: #4b5563;
}
- to {
- opacity: 1;
- transform: scale(1);
+
+ .zoom-option.selected {
+ background-color: #6b7280;
+ display: flex;
+ align-items: center;
}
- }
- /* Centered modal content */
- .text-center {
- text-align: center;
- }
+ .zoom-option svg {
+ margin-right: 0.25rem;
+ }
- .modal-message {
- margin-bottom: 1rem;
- line-height: 1.5;
- }
+ /* Save buttons container */
+ .save-buttons-row {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ margin: 0;
+ flex-wrap: nowrap;
+ }
- .modal-choice-button {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0.75rem 1.25rem;
- background-color: #0066cc;
- color: white;
- border-radius: 4px;
- text-decoration: none;
- margin: 0 auto;
- cursor: pointer;
- font-weight: 500;
- gap: 0.5rem;
- border: none;
- transition: background-color 0.3s;
- }
+ /* General styles for all save buttons */
+ .save-button,
+ .save-copy-button,
+ .save-segments-button {
+ color: #ffffff;
+ background: #0066cc;
+ border-radius: 0.25rem;
+ font-size: 0.75rem;
+ padding: 0.25rem 0.5rem;
+ cursor: pointer;
+ border: none;
+ white-space: nowrap;
+ transition: background-color 0.2s;
+ min-width: fit-content;
+ }
- .modal-choice-button:hover {
- background-color: #0056b3;
- }
+ /* Shared hover effect */
+ .save-button:hover,
+ .save-copy-button:hover,
+ .save-segments-button:hover {
+ background-color: #0056b3;
+ }
- .modal-choice-button svg {
- flex-shrink: 0;
- }
+ /* Media query for smaller screens */
+ @media (max-width: 576px) {
+ .save-buttons-row {
+ width: 100%;
+ justify-content: space-between;
+ gap: 0.5rem;
+ }
- .centered-choice {
- margin: 0 auto;
- min-width: 180px;
- }
+ .save-button,
+ .save-copy-button,
+ .save-segments-button {
+ flex: 1;
+ font-size: 0.7rem;
+ padding: 0.25rem 0.35rem;
+ }
+ }
+
+ /* Very small screens - adjust save buttons */
+ @media (max-width: 480px) {
+ .save-button,
+ .save-copy-button,
+ .save-segments-button {
+ font-size: 0.675rem;
+ padding: 0.25rem;
+ }
+
+ /* Remove margins for controls-right buttons */
+ .controls-right {
+ margin: 0;
+ }
+
+ .controls-right button {
+ margin: 0;
+ }
+ }
+
+ /* Tooltip styles - only on desktop where hover is available */
+ @media (hover: hover) and (pointer: fine) {
+ [data-tooltip] {
+ position: relative;
+ }
+
+ [data-tooltip]:before {
+ content: attr(data-tooltip);
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ margin-bottom: 5px;
+ background-color: rgba(0, 0, 0, 0.8);
+ color: white;
+ text-align: center;
+ padding: 5px 10px;
+ border-radius: 3px;
+ font-size: 12px;
+ white-space: nowrap;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ z-index: 1000;
+ pointer-events: none;
+ }
+
+ [data-tooltip]:after {
+ content: "";
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ border-width: 5px;
+ border-style: solid;
+ border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ pointer-events: none;
+ }
+
+ [data-tooltip]:hover:before,
+ [data-tooltip]:hover:after {
+ opacity: 1;
+ visibility: visible;
+ }
+ }
+
+ /* Hide button tooltips on touch devices */
+ @media (pointer: coarse) {
+ [data-tooltip]:before,
+ [data-tooltip]:after {
+ display: none !important;
+ content: none !important;
+ opacity: 0 !important;
+ visibility: hidden !important;
+ pointer-events: none !important;
+ }
+ }
+
+ /* Modal success and error styling */
+ .modal-success-content,
+ .modal-error-content {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 1rem;
+ text-align: center;
+ padding: 0;
+ margin: 0;
+ }
+
+ .modal-success-icon,
+ .modal-error-icon {
+ margin-bottom: 1rem;
+ }
+
+ .modal-success-icon svg {
+ color: #4caf50;
+ animation: fadeIn 0.5s ease-in-out;
+ }
+
+ .modal-error-icon svg {
+ color: #f44336;
+ animation: fadeIn 0.5s ease-in-out;
+ }
+
+ .success-link {
+ background-color: #4caf50;
+ color: white;
+ transition: background-color 0.3s;
+ }
+
+ .success-link:hover {
+ background-color: #388e3c;
+ }
+
+ .error-message {
+ color: #f44336;
+ font-weight: 500;
+ }
+
+ /* Modal spinner animation */
+ .modal-spinner {
+ display: flex;
+ justify-content: center;
+ margin: 2rem 0;
+ }
+
+ .spinner {
+ width: 50px;
+ height: 50px;
+ border: 5px solid rgba(0, 0, 0, 0.1);
+ border-radius: 50%;
+ border-top-color: #0066cc;
+ animation: spin 1s ease-in-out infinite;
+ }
+
+ @keyframes spin {
+ to {
+ transform: rotate(360deg);
+ }
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: scale(0.9);
+ }
+ to {
+ opacity: 1;
+ transform: scale(1);
+ }
+ }
+
+ /* Centered modal content */
+ .text-center {
+ text-align: center;
+ }
+
+ .modal-message {
+ margin-bottom: 1rem;
+ line-height: 1.5;
+ }
+
+ .modal-choice-button {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 0.75rem 1.25rem;
+ background-color: #0066cc;
+ color: white;
+ border-radius: 4px;
+ text-decoration: none;
+ margin: 0 auto;
+ cursor: pointer;
+ font-weight: 500;
+ gap: 0.5rem;
+ border: none;
+ transition: background-color 0.3s;
+ }
+
+ .modal-choice-button:hover {
+ background-color: #0056b3;
+ }
+
+ .modal-choice-button svg {
+ flex-shrink: 0;
+ }
+
+ .centered-choice {
+ margin: 0 auto;
+ min-width: 180px;
+ }
}
/* Mobile Timeline Overlay */
.mobile-timeline-overlay {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 50;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 0.5rem;
- pointer-events: none; /* Allow clicks to pass through */
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(0, 0, 0, 0.5);
+ z-index: 50;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-radius: 0.5rem;
+ pointer-events: none; /* Allow clicks to pass through */
}
.mobile-timeline-message {
- background-color: rgba(0, 0, 0, 0.8);
- border-radius: 8px;
- padding: 15px 25px;
- text-align: center;
- max-width: 80%;
- animation: pulse 2s infinite;
+ background-color: rgba(0, 0, 0, 0.8);
+ border-radius: 8px;
+ padding: 15px 25px;
+ text-align: center;
+ max-width: 80%;
+ animation: pulse 2s infinite;
}
.mobile-timeline-message p {
- color: white;
- font-size: 16px;
- margin: 0 0 15px 0;
- font-weight: 500;
+ color: white;
+ font-size: 16px;
+ margin: 0 0 15px 0;
+ font-weight: 500;
}
.mobile-play-icon {
- width: 0;
- height: 0;
- border-top: 15px solid transparent;
- border-bottom: 15px solid transparent;
- border-left: 25px solid white;
- margin: 0 auto;
+ width: 0;
+ height: 0;
+ border-top: 15px solid transparent;
+ border-bottom: 15px solid transparent;
+ border-left: 25px solid white;
+ margin: 0 auto;
}
@keyframes pulse {
- 0% {
- opacity: 0.7;
- transform: scale(1);
- }
- 50% {
- opacity: 1;
- transform: scale(1.05);
- }
- 100% {
- opacity: 0.7;
- transform: scale(1);
- }
+ 0% {
+ opacity: 0.7;
+ transform: scale(1);
+ }
+ 50% {
+ opacity: 1;
+ transform: scale(1.05);
+ }
+ 100% {
+ opacity: 0.7;
+ transform: scale(1);
+ }
}
/* Segments playback mode styles - minimal functional styling */
.segments-playback-mode .tooltip-time-btn {
- opacity: 1;
- cursor: pointer;
+ opacity: 1;
+ cursor: pointer;
}
.segments-playback-mode .tooltip-action-btn.play,
.segments-playback-mode .tooltip-action-btn.pause {
- opacity: 1;
- cursor: pointer;
+ opacity: 1;
+ cursor: pointer;
}
/* During segments playback mode, disable button interactions but keep hover working */
.segments-playback-mode .tooltip-time-btn[disabled],
.segments-playback-mode .tooltip-action-btn[disabled] {
- opacity: 0.5 !important;
- cursor: not-allowed !important;
+ opacity: 0.5 !important;
+ cursor: not-allowed !important;
}
/* Ensure disabled buttons still show tooltips on hover */
.segments-playback-mode [data-tooltip][disabled]:hover:before,
.segments-playback-mode [data-tooltip][disabled]:hover:after {
- opacity: 1 !important;
- visibility: visible !important;
+ opacity: 1 !important;
+ visibility: visible !important;
}
/* Show segments playback message */
.segments-playback-message {
- display: flex;
- align-items: center;
- background-color: rgba(59, 130, 246, 0.1);
- color: #3b82f6;
- padding: 6px 12px;
- border-radius: 4px;
- font-weight: 600;
- font-size: 0.875rem;
- animation: pulse 2s infinite;
+ display: flex;
+ align-items: center;
+ background-color: rgba(59, 130, 246, 0.1);
+ color: #3b82f6;
+ padding: 6px 12px;
+ border-radius: 4px;
+ font-weight: 600;
+ font-size: 0.875rem;
+ animation: pulse 2s infinite;
}
.segments-playback-message svg {
- height: 1.25rem;
- width: 1.25rem;
- margin-right: 0.5rem;
- color: #3b82f6;
+ height: 1.25rem;
+ width: 1.25rem;
+ margin-right: 0.5rem;
+ color: #3b82f6;
}
diff --git a/frontend-tools/video-editor/client/src/styles/TwoRowTooltip.css b/frontend-tools/video-editor/client/src/styles/TwoRowTooltip.css
index 74bb2160..729f7162 100644
--- a/frontend-tools/video-editor/client/src/styles/TwoRowTooltip.css
+++ b/frontend-tools/video-editor/client/src/styles/TwoRowTooltip.css
@@ -1,70 +1,70 @@
.two-row-tooltip {
- display: flex;
- flex-direction: column;
- background-color: white;
- padding: 6px;
- border-radius: 4px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
- position: relative;
- z-index: 3000; /* Highest z-index to ensure it's above all other elements */
+ display: flex;
+ flex-direction: column;
+ background-color: white;
+ padding: 6px;
+ border-radius: 4px;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
+ position: relative;
+ z-index: 3000; /* Highest z-index to ensure it's above all other elements */
}
/* Hide ±100ms buttons for more compact tooltip */
.tooltip-time-btn[data-tooltip="Decrease by 100ms"],
.tooltip-time-btn[data-tooltip="Increase by 100ms"] {
- display: none !important;
+ display: none !important;
}
.tooltip-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 3px;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 3px;
}
.tooltip-row:first-child {
- margin-bottom: 6px;
+ margin-bottom: 6px;
}
.tooltip-time-btn {
- background-color: #f0f0f0 !important;
- border: none !important;
- border-radius: 4px !important;
- padding: 4px 8px !important;
- font-size: 0.75rem !important;
- font-weight: 500 !important;
- color: #333 !important;
- cursor: pointer !important;
- transition: background-color 0.2s !important;
- min-width: 20px !important;
+ background-color: #f0f0f0 !important;
+ border: none !important;
+ border-radius: 4px !important;
+ padding: 4px 8px !important;
+ font-size: 0.75rem !important;
+ font-weight: 500 !important;
+ color: #333 !important;
+ cursor: pointer !important;
+ transition: background-color 0.2s !important;
+ min-width: 20px !important;
}
.tooltip-time-btn:hover {
- background-color: #e0e0e0 !important;
+ background-color: #e0e0e0 !important;
}
.tooltip-time-display {
- font-family: monospace !important;
- font-size: 0.875rem !important;
- font-weight: 600 !important;
- color: #333 !important;
- padding: 4px 6px !important;
- background-color: #f7f7f7 !important;
- border-radius: 4px !important;
- min-width: 100px !important;
- text-align: center !important;
- overflow: hidden !important;
+ font-family: monospace !important;
+ font-size: 0.875rem !important;
+ font-weight: 600 !important;
+ color: #333 !important;
+ padding: 4px 6px !important;
+ background-color: #f7f7f7 !important;
+ border-radius: 4px !important;
+ min-width: 100px !important;
+ text-align: center !important;
+ overflow: hidden !important;
}
/* Disabled state for time display */
.tooltip-time-display.disabled {
- pointer-events: none !important;
- cursor: not-allowed !important;
- opacity: 0.6 !important;
- user-select: none !important;
- -webkit-user-select: none !important;
- -moz-user-select: none !important;
- -ms-user-select: none !important;
+ pointer-events: none !important;
+ cursor: not-allowed !important;
+ opacity: 0.6 !important;
+ user-select: none !important;
+ -webkit-user-select: none !important;
+ -moz-user-select: none !important;
+ -ms-user-select: none !important;
}
/* Force disabled tooltips to show on hover for better user feedback */
@@ -72,269 +72,269 @@
.tooltip-time-btn.disabled[data-tooltip]:hover:after,
.tooltip-action-btn.disabled[data-tooltip]:hover:before,
.tooltip-action-btn.disabled[data-tooltip]:hover:after {
- opacity: 1 !important;
- visibility: visible !important;
+ opacity: 1 !important;
+ visibility: visible !important;
}
.tooltip-actions {
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 3px;
- position: relative;
- z-index: 2500; /* Higher z-index to ensure buttons appear above other elements */
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 3px;
+ position: relative;
+ z-index: 2500; /* Higher z-index to ensure buttons appear above other elements */
}
.tooltip-action-btn {
- background-color: #f3f4f6;
- border: none;
- border-radius: 4px;
- padding: 5px;
- display: flex;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- color: #4b5563;
- width: 26px;
- height: 26px;
- min-width: 20px !important;
- position: relative; /* Add relative positioning for tooltips */
+ background-color: #f3f4f6;
+ border: none;
+ border-radius: 4px;
+ padding: 5px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+ color: #4b5563;
+ width: 26px;
+ height: 26px;
+ min-width: 20px !important;
+ position: relative; /* Add relative positioning for tooltips */
}
/* Custom tooltip styles for second row action buttons - positioned below */
.tooltip-action-btn[data-tooltip]:before {
- content: attr(data-tooltip);
- position: absolute;
- height: 30px;
- top: 35px; /* Position below the button with increased space */
- left: 50%; /* Center horizontally */
- transform: translateX(-50%); /* Center horizontally */
- margin-left: 0; /* Reset margin */
- background-color: rgba(0, 0, 0, 0.85);
- color: white;
- text-align: left;
- padding: 6px 12px;
- border-radius: 4px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
- font-size: 12px;
- white-space: nowrap;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- z-index: 2500; /* High z-index */
- pointer-events: none;
+ content: attr(data-tooltip);
+ position: absolute;
+ height: 30px;
+ top: 35px; /* Position below the button with increased space */
+ left: 50%; /* Center horizontally */
+ transform: translateX(-50%); /* Center horizontally */
+ margin-left: 0; /* Reset margin */
+ background-color: rgba(0, 0, 0, 0.85);
+ color: white;
+ text-align: left;
+ padding: 6px 12px;
+ border-radius: 4px;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
+ font-size: 12px;
+ white-space: nowrap;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ z-index: 2500; /* High z-index */
+ pointer-events: none;
}
/* Triangle arrow pointing up to the button */
.tooltip-action-btn[data-tooltip]:after {
- content: "";
- position: absolute;
- top: 35px; /* Match the before element */
- left: 50%; /* Center horizontally */
- transform: translateX(-50%); /* Center horizontally */
- border-width: 4px;
- border-style: solid;
- /* Arrow pointing down from button to tooltip */
- border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
- margin-left: 0; /* Reset margin */
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- z-index: 2500; /* High z-index */
- pointer-events: none;
+ content: "";
+ position: absolute;
+ top: 35px; /* Match the before element */
+ left: 50%; /* Center horizontally */
+ transform: translateX(-50%); /* Center horizontally */
+ border-width: 4px;
+ border-style: solid;
+ /* Arrow pointing down from button to tooltip */
+ border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
+ margin-left: 0; /* Reset margin */
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ z-index: 2500; /* High z-index */
+ pointer-events: none;
}
/* Show tooltips on hover - but only on devices with hover capability (desktops) */
@media (hover: hover) and (pointer: fine) {
- .tooltip-action-btn[data-tooltip]:hover:before,
- .tooltip-action-btn[data-tooltip]:hover:after {
- opacity: 1;
- visibility: visible;
- }
+ .tooltip-action-btn[data-tooltip]:hover:before,
+ .tooltip-action-btn[data-tooltip]:hover:after {
+ opacity: 1;
+ visibility: visible;
+ }
}
/* Keep the two-row-tooltip visible but hide button attribute tooltips on touch devices */
@media (pointer: coarse) {
- .tooltip-action-btn[data-tooltip]:before,
- .tooltip-action-btn[data-tooltip]:after {
- display: none !important;
- opacity: 0 !important;
- visibility: hidden !important;
- pointer-events: none !important;
- content: none !important;
- }
+ .tooltip-action-btn[data-tooltip]:before,
+ .tooltip-action-btn[data-tooltip]:after {
+ display: none !important;
+ opacity: 0 !important;
+ visibility: hidden !important;
+ pointer-events: none !important;
+ content: none !important;
+ }
}
.tooltip-action-btn:hover {
- background-color: #e5e7eb;
- color: #111827;
+ background-color: #e5e7eb;
+ color: #111827;
}
.tooltip-action-btn.delete {
- color: #ef4444;
+ color: #ef4444;
}
.tooltip-action-btn.delete:hover {
- background-color: #fee2e2;
+ background-color: #fee2e2;
}
.tooltip-action-btn.play {
- color: #10b981;
+ color: #10b981;
}
.tooltip-action-btn.play:hover {
- background-color: #d1fae5;
+ background-color: #d1fae5;
}
.tooltip-action-btn.pause {
- color: #3b82f6;
+ color: #3b82f6;
}
.tooltip-action-btn.pause:hover {
- background-color: #dbeafe;
+ background-color: #dbeafe;
}
.tooltip-action-btn.play-from-start {
- color: #4f46e5;
+ color: #4f46e5;
}
.tooltip-action-btn.play-from-start:hover {
- background-color: #e0e7ff;
+ background-color: #e0e7ff;
}
.tooltip-action-btn svg {
- width: 16px;
- height: 16px;
+ width: 16px;
+ height: 16px;
}
/* Adjust the new segment button style */
.tooltip-action-btn.new-segment {
- width: auto;
- height: auto;
- padding: 6px 10px;
- display: flex;
- flex-direction: row;
- color: #10b981;
+ width: auto;
+ height: auto;
+ padding: 6px 10px;
+ display: flex;
+ flex-direction: row;
+ color: #10b981;
}
.tooltip-action-btn.new-segment:hover {
- background-color: #d1fae5;
+ background-color: #d1fae5;
}
.tooltip-action-btn.new-segment .tooltip-btn-text {
- margin-left: 6px;
- font-size: 0.75rem;
- white-space: nowrap;
+ margin-left: 6px;
+ font-size: 0.75rem;
+ white-space: nowrap;
}
/* Disabled state for tooltip action buttons */
.tooltip-action-btn.disabled {
- opacity: 0.5;
- cursor: not-allowed;
- background-color: #f3f4f6;
+ opacity: 0.5;
+ cursor: not-allowed;
+ background-color: #f3f4f6;
}
.tooltip-action-btn.disabled:hover {
- background-color: #f3f4f6;
- color: #9ca3af;
+ background-color: #f3f4f6;
+ color: #9ca3af;
}
.tooltip-action-btn.disabled svg {
- color: #9ca3af;
+ color: #9ca3af;
}
.tooltip-action-btn.disabled .tooltip-btn-text {
- color: #9ca3af;
+ color: #9ca3af;
}
/* Ensure pause button is properly styled when disabled */
.tooltip-action-btn.pause.disabled {
- color: #9ca3af !important;
- opacity: 0.5;
- cursor: not-allowed;
+ color: #9ca3af !important;
+ opacity: 0.5;
+ cursor: not-allowed;
}
.tooltip-action-btn.pause.disabled:hover {
- background-color: #f3f4f6 !important;
- color: #9ca3af !important;
+ background-color: #f3f4f6 !important;
+ color: #9ca3af !important;
}
/* Ensure play button is properly styled when disabled */
.tooltip-action-btn.play.disabled {
- color: #9ca3af !important;
- opacity: 0.5;
- cursor: not-allowed;
+ color: #9ca3af !important;
+ opacity: 0.5;
+ cursor: not-allowed;
}
.tooltip-action-btn.play.disabled:hover {
- background-color: #f3f4f6 !important;
- color: #9ca3af !important;
+ background-color: #f3f4f6 !important;
+ color: #9ca3af !important;
}
/* Ensure time adjustment buttons are properly styled when disabled */
.tooltip-time-btn.disabled {
- opacity: 0.5 !important;
- cursor: not-allowed !important;
- background-color: #f3f4f6 !important;
- color: #9ca3af !important;
+ opacity: 0.5 !important;
+ cursor: not-allowed !important;
+ background-color: #f3f4f6 !important;
+ color: #9ca3af !important;
}
.tooltip-time-btn.disabled:hover {
- background-color: #f3f4f6 !important;
- color: #9ca3af !important;
+ background-color: #f3f4f6 !important;
+ color: #9ca3af !important;
}
/* Additional mobile optimizations */
@media (max-width: 768px) {
- .two-row-tooltip {
- padding: 4px;
- }
+ .two-row-tooltip {
+ padding: 4px;
+ }
- .tooltip-row:first-child {
- margin-bottom: 4px;
- }
+ .tooltip-row:first-child {
+ margin-bottom: 4px;
+ }
- .tooltip-time-btn {
- min-width: 20px !important;
- font-size: 0.7rem !important;
- padding: 3px 6px !important;
- }
+ .tooltip-time-btn {
+ min-width: 20px !important;
+ font-size: 0.7rem !important;
+ padding: 3px 6px !important;
+ }
- .tooltip-time-display {
- font-size: 0.8rem !important;
- padding: 3px 4px !important;
- min-width: 90px !important;
- }
+ .tooltip-time-display {
+ font-size: 0.8rem !important;
+ padding: 3px 4px !important;
+ min-width: 90px !important;
+ }
- .tooltip-action-btn {
- width: 24px;
- height: 24px;
- padding: 4px;
- }
+ .tooltip-action-btn {
+ width: 24px;
+ height: 24px;
+ padding: 4px;
+ }
- .tooltip-action-btn.new-segment {
- padding: 4px 8px;
- }
+ .tooltip-action-btn.new-segment {
+ padding: 4px 8px;
+ }
- .tooltip-action-btn svg {
- width: 14px;
- height: 14px;
- }
+ .tooltip-action-btn svg {
+ width: 14px;
+ height: 14px;
+ }
- /* Adjust tooltip position for small screens - maintain the same position but adjust size */
- .tooltip-action-btn[data-tooltip]:before {
- min-width: 100px;
- font-size: 11px;
- padding: 4px 8px;
- height: 24px;
- top: 33px; /* Maintain the same relative distance on mobile */
- }
+ /* Adjust tooltip position for small screens - maintain the same position but adjust size */
+ .tooltip-action-btn[data-tooltip]:before {
+ min-width: 100px;
+ font-size: 11px;
+ padding: 4px 8px;
+ height: 24px;
+ top: 33px; /* Maintain the same relative distance on mobile */
+ }
- .tooltip-action-btn[data-tooltip]:after {
- top: 33px; /* Match the tooltip position */
- }
+ .tooltip-action-btn[data-tooltip]:after {
+ top: 33px; /* Match the tooltip position */
+ }
}
diff --git a/frontend-tools/video-editor/client/src/styles/VideoPlayer.css b/frontend-tools/video-editor/client/src/styles/VideoPlayer.css
index 11c7ed82..5b80678c 100644
--- a/frontend-tools/video-editor/client/src/styles/VideoPlayer.css
+++ b/frontend-tools/video-editor/client/src/styles/VideoPlayer.css
@@ -1,342 +1,342 @@
#video-editor-trim-root {
- /* Tooltip styles - only on desktop where hover is available */
- @media (hover: hover) and (pointer: fine) {
- [data-tooltip] {
- position: relative;
+ /* Tooltip styles - only on desktop where hover is available */
+ @media (hover: hover) and (pointer: fine) {
+ [data-tooltip] {
+ position: relative;
+ }
+
+ [data-tooltip]:before {
+ content: attr(data-tooltip);
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ margin-bottom: 5px;
+ background-color: rgba(0, 0, 0, 0.8);
+ color: white;
+ text-align: center;
+ padding: 5px 10px;
+ border-radius: 3px;
+ font-size: 12px;
+ white-space: nowrap;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ z-index: 1000;
+ pointer-events: none;
+ }
+
+ [data-tooltip]:after {
+ content: "";
+ position: absolute;
+ bottom: 100%;
+ left: 50%;
+ transform: translateX(-50%);
+ border-width: 5px;
+ border-style: solid;
+ border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
+ opacity: 0;
+ visibility: hidden;
+ transition:
+ opacity 0.2s,
+ visibility 0.2s;
+ pointer-events: none;
+ }
+
+ [data-tooltip]:hover:before,
+ [data-tooltip]:hover:after {
+ opacity: 1;
+ visibility: visible;
+ }
}
- [data-tooltip]:before {
- content: attr(data-tooltip);
- position: absolute;
- bottom: 100%;
- left: 50%;
- transform: translateX(-50%);
- margin-bottom: 5px;
- background-color: rgba(0, 0, 0, 0.8);
- color: white;
- text-align: center;
- padding: 5px 10px;
- border-radius: 3px;
- font-size: 12px;
- white-space: nowrap;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- z-index: 1000;
- pointer-events: none;
+ /* Hide button tooltips on touch devices */
+ @media (pointer: coarse) {
+ [data-tooltip]:before,
+ [data-tooltip]:after {
+ display: none !important;
+ content: none !important;
+ opacity: 0 !important;
+ visibility: hidden !important;
+ pointer-events: none !important;
+ }
+ }
+ .video-player-container {
+ position: relative;
+ width: 100%;
+ background: #000;
+ border-radius: 0.5rem;
+ overflow: hidden;
+ margin-bottom: 1rem;
+ aspect-ratio: 16/9;
+ /* Prevent iOS Safari from showing default video controls */
+ -webkit-user-select: none;
+ user-select: none;
}
- [data-tooltip]:after {
- content: "";
- position: absolute;
- bottom: 100%;
- left: 50%;
- transform: translateX(-50%);
- border-width: 5px;
- border-style: solid;
- border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
- opacity: 0;
- visibility: hidden;
- transition:
- opacity 0.2s,
- visibility 0.2s;
- pointer-events: none;
- }
-
- [data-tooltip]:hover:before,
- [data-tooltip]:hover:after {
- opacity: 1;
- visibility: visible;
- }
- }
-
- /* Hide button tooltips on touch devices */
- @media (pointer: coarse) {
- [data-tooltip]:before,
- [data-tooltip]:after {
- display: none !important;
- content: none !important;
- opacity: 0 !important;
- visibility: hidden !important;
- pointer-events: none !important;
- }
- }
- .video-player-container {
- position: relative;
- width: 100%;
- background: #000;
- border-radius: 0.5rem;
- overflow: hidden;
- margin-bottom: 1rem;
- aspect-ratio: 16/9;
- /* Prevent iOS Safari from showing default video controls */
- -webkit-user-select: none;
- user-select: none;
- }
-
- .video-player-container video {
- width: 100%;
- height: 100%;
- cursor: pointer;
- /* Force hardware acceleration */
- transform: translateZ(0);
- -webkit-transform: translateZ(0);
- /* Prevent iOS Safari from showing default video controls */
- -webkit-user-select: none;
- user-select: none;
- }
-
- /* iOS-specific styles */
- @supports (-webkit-touch-callout: none) {
.video-player-container video {
- /* Additional iOS optimizations */
- -webkit-tap-highlight-color: transparent;
- -webkit-touch-callout: none;
+ width: 100%;
+ height: 100%;
+ cursor: pointer;
+ /* Force hardware acceleration */
+ transform: translateZ(0);
+ -webkit-transform: translateZ(0);
+ /* Prevent iOS Safari from showing default video controls */
+ -webkit-user-select: none;
+ user-select: none;
}
- }
- .play-pause-indicator {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 60px;
- height: 60px;
- background-color: rgba(0, 0, 0, 0.6);
- border-radius: 50%;
- opacity: 0;
- transition: opacity 0.3s;
- pointer-events: none;
- }
-
- .video-player-container:hover .play-pause-indicator {
- opacity: 1;
- }
-
- .play-pause-indicator::before {
- content: "";
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
-
- .play-pause-indicator.play-icon::before {
- width: 0;
- height: 0;
- border-top: 15px solid transparent;
- border-bottom: 15px solid transparent;
- border-left: 25px solid white;
- margin-left: 3px;
- }
-
- .play-pause-indicator.pause-icon::before {
- width: 20px;
- height: 25px;
- border-left: 6px solid white;
- border-right: 6px solid white;
- }
-
- /* iOS First-play indicator */
- .ios-first-play-indicator {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.7);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 10;
- }
-
- .ios-play-message {
- color: white;
- font-size: 1.2rem;
- text-align: center;
- padding: 1rem;
- background: rgba(0, 0, 0, 0.8);
- border-radius: 0.5rem;
- animation: pulse 2s infinite;
- }
-
- @keyframes pulse {
- 0% {
- opacity: 0.7;
- transform: scale(1);
+ /* iOS-specific styles */
+ @supports (-webkit-touch-callout: none) {
+ .video-player-container video {
+ /* Additional iOS optimizations */
+ -webkit-tap-highlight-color: transparent;
+ -webkit-touch-callout: none;
+ }
}
- 50% {
- opacity: 1;
- transform: scale(1.05);
+
+ .play-pause-indicator {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ width: 60px;
+ height: 60px;
+ background-color: rgba(0, 0, 0, 0.6);
+ border-radius: 50%;
+ opacity: 0;
+ transition: opacity 0.3s;
+ pointer-events: none;
}
- 100% {
- opacity: 0.7;
- transform: scale(1);
+
+ .video-player-container:hover .play-pause-indicator {
+ opacity: 1;
}
- }
- .video-controls {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 0.75rem;
- background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
- opacity: 0;
- transition: opacity 0.3s;
- }
+ .play-pause-indicator::before {
+ content: "";
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ }
- .video-player-container:hover .video-controls {
- opacity: 1;
- }
+ .play-pause-indicator.play-icon::before {
+ width: 0;
+ height: 0;
+ border-top: 15px solid transparent;
+ border-bottom: 15px solid transparent;
+ border-left: 25px solid white;
+ margin-left: 3px;
+ }
- .video-current-time {
- color: white;
- font-size: 0.875rem;
- }
+ .play-pause-indicator.pause-icon::before {
+ width: 20px;
+ height: 25px;
+ border-left: 6px solid white;
+ border-right: 6px solid white;
+ }
- .video-duration {
- color: white;
- font-size: 0.875rem;
- }
+ /* iOS First-play indicator */
+ .ios-first-play-indicator {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(0, 0, 0, 0.7);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ z-index: 10;
+ }
- .video-time-display {
- display: flex;
- justify-content: space-between;
- margin-bottom: 0.5rem;
- color: white;
- font-size: 0.875rem;
- }
+ .ios-play-message {
+ color: white;
+ font-size: 1.2rem;
+ text-align: center;
+ padding: 1rem;
+ background: rgba(0, 0, 0, 0.8);
+ border-radius: 0.5rem;
+ animation: pulse 2s infinite;
+ }
- .video-progress {
- position: relative;
- height: 6px;
- background-color: rgba(255, 255, 255, 0.3);
- border-radius: 3px;
- cursor: pointer;
- margin: 0 10px;
- touch-action: none; /* Prevent browser handling of drag gestures */
- flex-grow: 1;
- }
+ @keyframes pulse {
+ 0% {
+ opacity: 0.7;
+ transform: scale(1);
+ }
+ 50% {
+ opacity: 1;
+ transform: scale(1.05);
+ }
+ 100% {
+ opacity: 0.7;
+ transform: scale(1);
+ }
+ }
- .video-progress.dragging {
- height: 8px;
- }
+ .video-controls {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ padding: 0.75rem;
+ background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
+ opacity: 0;
+ transition: opacity 0.3s;
+ }
- .video-progress-fill {
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- background-color: #ff0000;
- border-radius: 3px;
- pointer-events: none;
- }
+ .video-player-container:hover .video-controls {
+ opacity: 1;
+ }
- .video-scrubber {
- position: absolute;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 16px;
- height: 16px;
- background-color: #ff0000;
- border-radius: 50%;
- cursor: grab;
- transition:
- transform 0.1s ease,
- width 0.1s ease,
- height 0.1s ease;
- }
+ .video-current-time {
+ color: white;
+ font-size: 0.875rem;
+ }
- /* Make the scrubber larger when dragging for better control */
- .video-progress.dragging .video-scrubber {
- transform: translate(-50%, -50%) scale(1.2);
- width: 18px;
- height: 18px;
- cursor: grabbing;
- box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
- }
+ .video-duration {
+ color: white;
+ font-size: 0.875rem;
+ }
+
+ .video-time-display {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 0.5rem;
+ color: white;
+ font-size: 0.875rem;
+ }
+
+ .video-progress {
+ position: relative;
+ height: 6px;
+ background-color: rgba(255, 255, 255, 0.3);
+ border-radius: 3px;
+ cursor: pointer;
+ margin: 0 10px;
+ touch-action: none; /* Prevent browser handling of drag gestures */
+ flex-grow: 1;
+ }
+
+ .video-progress.dragging {
+ height: 8px;
+ }
+
+ .video-progress-fill {
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 100%;
+ background-color: #ff0000;
+ border-radius: 3px;
+ pointer-events: none;
+ }
- /* Enhance for touch devices */
- @media (pointer: coarse) {
.video-scrubber {
- width: 20px;
- height: 20px;
+ position: absolute;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ width: 16px;
+ height: 16px;
+ background-color: #ff0000;
+ border-radius: 50%;
+ cursor: grab;
+ transition:
+ transform 0.1s ease,
+ width 0.1s ease,
+ height 0.1s ease;
}
+ /* Make the scrubber larger when dragging for better control */
.video-progress.dragging .video-scrubber {
- width: 24px;
- height: 24px;
+ transform: translate(-50%, -50%) scale(1.2);
+ width: 18px;
+ height: 18px;
+ cursor: grabbing;
+ box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}
- /* Create a larger invisible touch target */
- .video-scrubber:before {
- content: "";
- position: absolute;
- top: -10px;
- left: -10px;
- right: -10px;
- bottom: -10px;
- }
- }
+ /* Enhance for touch devices */
+ @media (pointer: coarse) {
+ .video-scrubber {
+ width: 20px;
+ height: 20px;
+ }
- .video-controls-buttons {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- gap: 0.75rem;
- }
+ .video-progress.dragging .video-scrubber {
+ width: 24px;
+ height: 24px;
+ }
- .mute-button,
- .fullscreen-button {
- min-width: auto;
- color: white;
- background: none;
- border: none;
- cursor: pointer;
- padding: 0.25rem;
- transition: transform 0.2s;
-
- &:hover {
- transform: scale(1.1);
+ /* Create a larger invisible touch target */
+ .video-scrubber:before {
+ content: "";
+ position: absolute;
+ top: -10px;
+ left: -10px;
+ right: -10px;
+ bottom: -10px;
+ }
}
- svg {
- width: 1.25rem;
- height: 1.25rem;
+ .video-controls-buttons {
+ display: flex;
+ align-items: center;
+ justify-content: flex-end;
+ gap: 0.75rem;
}
- }
- /* Time tooltip that appears when dragging */
- .video-time-tooltip {
- position: absolute;
- top: -30px;
- background-color: rgba(0, 0, 0, 0.7);
- color: white;
- padding: 4px 8px;
- border-radius: 4px;
- font-size: 12px;
- font-family: monospace;
- pointer-events: none;
- z-index: 1000;
- white-space: nowrap;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
- }
+ .mute-button,
+ .fullscreen-button {
+ min-width: auto;
+ color: white;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 0.25rem;
+ transition: transform 0.2s;
- /* Add a small arrow to the tooltip */
- .video-time-tooltip:after {
- content: "";
- position: absolute;
- bottom: -4px;
- left: 50%;
- transform: translateX(-50%);
- width: 0;
- height: 0;
- border-left: 4px solid transparent;
- border-right: 4px solid transparent;
- border-top: 4px solid rgba(0, 0, 0, 0.7);
- }
+ &:hover {
+ transform: scale(1.1);
+ }
+
+ svg {
+ width: 1.25rem;
+ height: 1.25rem;
+ }
+ }
+
+ /* Time tooltip that appears when dragging */
+ .video-time-tooltip {
+ position: absolute;
+ top: -30px;
+ background-color: rgba(0, 0, 0, 0.7);
+ color: white;
+ padding: 4px 8px;
+ border-radius: 4px;
+ font-size: 12px;
+ font-family: monospace;
+ pointer-events: none;
+ z-index: 1000;
+ white-space: nowrap;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
+ }
+
+ /* Add a small arrow to the tooltip */
+ .video-time-tooltip:after {
+ content: "";
+ position: absolute;
+ bottom: -4px;
+ left: 50%;
+ transform: translateX(-50%);
+ width: 0;
+ height: 0;
+ border-left: 4px solid transparent;
+ border-right: 4px solid transparent;
+ border-top: 4px solid rgba(0, 0, 0, 0.7);
+ }
}
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index 9a3fec36..cb56e8ea 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -3788,9 +3788,9 @@
}
},
"node_modules/aproba": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
- "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.1.0.tgz",
+ "integrity": "sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==",
"license": "ISC",
"optional": true
},
@@ -12590,9 +12590,9 @@
}
},
"node_modules/nan": {
- "version": "2.22.2",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz",
- "integrity": "sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==",
+ "version": "2.23.0",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.23.0.tgz",
+ "integrity": "sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==",
"devOptional": true,
"license": "MIT"
},
diff --git a/frontend/yarn.lock b/frontend/yarn.lock
index e485efb7..e56bcbd1 100644
--- a/frontend/yarn.lock
+++ b/frontend/yarn.lock
@@ -4,7 +4,7 @@
"@ampproject/remapping@^2.2.0":
version "2.3.0"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4"
+ resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz"
integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==
dependencies:
"@jridgewell/gen-mapping" "^0.3.5"
@@ -12,21 +12,21 @@
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
+ resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz"
integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
dependencies:
"@babel/helper-validator-identifier" "^7.27.1"
js-tokens "^4.0.0"
picocolors "^1.1.1"
-"@babel/compat-data@^7.27.2", "@babel/compat-data@^7.27.7", "@babel/compat-data@^7.28.0":
+"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.27.2", "@babel/compat-data@^7.27.7", "@babel/compat-data@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.0.tgz#9fc6fd58c2a6a15243cd13983224968392070790"
+ resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz"
integrity sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==
-"@babel/core@^7.12.3", "@babel/core@^7.26.9":
+"@babel/core@^7.12.3", "@babel/core@^7.14.5", "@babel/core@^7.26.9":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.0.tgz#55dad808d5bf3445a108eefc88ea3fdf034749a4"
+ resolved "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz"
integrity sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==
dependencies:
"@ampproject/remapping" "^2.2.0"
@@ -47,7 +47,7 @@
"@babel/generator@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.0.tgz#9cc2f7bd6eb054d77dc66c2664148a0c5118acd2"
+ resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz"
integrity sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==
dependencies:
"@babel/parser" "^7.28.0"
@@ -58,14 +58,14 @@
"@babel/helper-annotate-as-pure@^7.27.1", "@babel/helper-annotate-as-pure@^7.27.3":
version "7.27.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz#f31fd86b915fc4daf1f3ac6976c59be7084ed9c5"
+ resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz"
integrity sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==
dependencies:
"@babel/types" "^7.27.3"
-"@babel/helper-compilation-targets@^7.27.1", "@babel/helper-compilation-targets@^7.27.2":
+"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.27.1", "@babel/helper-compilation-targets@^7.27.2":
version "7.27.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz#46a0f6efab808d51d29ce96858dd10ce8732733d"
+ resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz"
integrity sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==
dependencies:
"@babel/compat-data" "^7.27.2"
@@ -74,9 +74,9 @@
lru-cache "^5.1.1"
semver "^6.3.1"
-"@babel/helper-create-class-features-plugin@^7.27.1":
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz#5bee4262a6ea5ddc852d0806199eb17ca3de9281"
+ resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz"
integrity sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.1"
@@ -89,7 +89,7 @@
"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz#05b0882d97ba1d4d03519e4bce615d70afa18c53"
+ resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.1.tgz"
integrity sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.1"
@@ -98,7 +98,7 @@
"@babel/helper-define-polyfill-provider@^0.6.5":
version "0.6.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz#742ccf1cb003c07b48859fc9fa2c1bbe40e5f753"
+ resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz"
integrity sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==
dependencies:
"@babel/helper-compilation-targets" "^7.27.2"
@@ -109,20 +109,20 @@
"@babel/helper-globals@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz#b9430df2aa4e17bc28665eadeae8aa1d985e6674"
+ resolved "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz"
integrity sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==
"@babel/helper-member-expression-to-functions@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz#ea1211276be93e798ce19037da6f06fbb994fa44"
+ resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz"
integrity sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==
dependencies:
"@babel/traverse" "^7.27.1"
"@babel/types" "^7.27.1"
-"@babel/helper-module-imports@^7.27.1":
+"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz#7ef769a323e2655e126673bb6d2d6913bbead204"
+ resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz"
integrity sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==
dependencies:
"@babel/traverse" "^7.27.1"
@@ -130,7 +130,7 @@
"@babel/helper-module-transforms@^7.27.1", "@babel/helper-module-transforms@^7.27.3":
version "7.27.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz#db0bbcfba5802f9ef7870705a7ef8788508ede02"
+ resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz"
integrity sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==
dependencies:
"@babel/helper-module-imports" "^7.27.1"
@@ -139,19 +139,19 @@
"@babel/helper-optimise-call-expression@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz#c65221b61a643f3e62705e5dd2b5f115e35f9200"
+ resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz"
integrity sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==
dependencies:
"@babel/types" "^7.27.1"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.27.1":
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.27.1", "@babel/helper-plugin-utils@^7.8.0":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz#ddb2f876534ff8013e6c2b299bf4d39b3c51d44c"
+ resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz"
integrity sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==
"@babel/helper-remap-async-to-generator@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz#4601d5c7ce2eb2aea58328d43725523fcd362ce6"
+ resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz"
integrity sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.1"
@@ -160,7 +160,7 @@
"@babel/helper-replace-supers@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz#b1ed2d634ce3bdb730e4b52de30f8cccfd692bc0"
+ resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz"
integrity sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==
dependencies:
"@babel/helper-member-expression-to-functions" "^7.27.1"
@@ -169,7 +169,7 @@
"@babel/helper-skip-transparent-expression-wrappers@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz#62bb91b3abba8c7f1fec0252d9dbea11b3ee7a56"
+ resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz"
integrity sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==
dependencies:
"@babel/traverse" "^7.27.1"
@@ -177,22 +177,22 @@
"@babel/helper-string-parser@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz#54da796097ab19ce67ed9f88b47bb2ec49367687"
+ resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz"
integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==
"@babel/helper-validator-identifier@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8"
+ resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz"
integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
"@babel/helper-validator-option@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f"
+ resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz"
integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==
"@babel/helper-wrap-function@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.27.1.tgz#b88285009c31427af318d4fe37651cd62a142409"
+ resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.27.1.tgz"
integrity sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==
dependencies:
"@babel/template" "^7.27.1"
@@ -201,7 +201,7 @@
"@babel/helpers@^7.27.6":
version "7.27.6"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.27.6.tgz#6456fed15b2cb669d2d1fabe84b66b34991d812c"
+ resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz"
integrity sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==
dependencies:
"@babel/template" "^7.27.2"
@@ -209,14 +209,14 @@
"@babel/parser@^7.27.2", "@babel/parser@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.0.tgz#979829fbab51a29e13901e5a80713dbcb840825e"
+ resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz"
integrity sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==
dependencies:
"@babel/types" "^7.28.0"
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.27.1.tgz#61dd8a8e61f7eb568268d1b5f129da3eee364bf9"
+ resolved "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.27.1.tgz"
integrity sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -224,21 +224,21 @@
"@babel/plugin-bugfix-safari-class-field-initializer-scope@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz#43f70a6d7efd52370eefbdf55ae03d91b293856d"
+ resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz"
integrity sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz#beb623bd573b8b6f3047bd04c32506adc3e58a72"
+ resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz"
integrity sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz#e134a5479eb2ba9c02714e8c1ebf1ec9076124fd"
+ resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz"
integrity sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -247,41 +247,74 @@
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.27.1.tgz#bb1c25af34d75115ce229a1de7fa44bf8f955670"
+ resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.27.1.tgz"
integrity sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/traverse" "^7.27.1"
+"@babel/plugin-proposal-class-properties@^7.14.5":
+ version "7.18.6"
+ resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz"
+ integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.18.6"
+
+"@babel/plugin-proposal-object-rest-spread@^7.14.5":
+ version "7.20.7"
+ resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz"
+ integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
+ dependencies:
+ "@babel/compat-data" "^7.20.5"
+ "@babel/helper-compilation-targets" "^7.20.7"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.20.7"
+
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
version "7.21.0-placeholder-for-preset-env.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
+ resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz"
integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
"@babel/plugin-syntax-import-assertions@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz#88894aefd2b03b5ee6ad1562a7c8e1587496aecd"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz"
integrity sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-syntax-import-attributes@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz#34c017d54496f9b11b61474e7ea3dfd5563ffe07"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz"
integrity sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-syntax-jsx@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz#2f9beb5eff30fa507c5532d107daac7b888fa34c"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz"
integrity sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
+"@babel/plugin-syntax-object-rest-spread@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
+ integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-typescript@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz"
+ integrity sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+
"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz"
integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
@@ -289,14 +322,14 @@
"@babel/plugin-transform-arrow-functions@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz#6e2061067ba3ab0266d834a9f94811196f2aba9a"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz"
integrity sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-async-generator-functions@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz#1276e6c7285ab2cd1eccb0bc7356b7a69ff842c2"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz"
integrity sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -305,7 +338,7 @@
"@babel/plugin-transform-async-to-generator@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz#9a93893b9379b39466c74474f55af03de78c66e7"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz"
integrity sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==
dependencies:
"@babel/helper-module-imports" "^7.27.1"
@@ -314,21 +347,21 @@
"@babel/plugin-transform-block-scoped-functions@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz#558a9d6e24cf72802dd3b62a4b51e0d62c0f57f9"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz"
integrity sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-block-scoping@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.0.tgz#e7c50cbacc18034f210b93defa89638666099451"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.0.tgz"
integrity sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-class-properties@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz#dd40a6a370dfd49d32362ae206ddaf2bb082a925"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz"
integrity sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==
dependencies:
"@babel/helper-create-class-features-plugin" "^7.27.1"
@@ -336,7 +369,7 @@
"@babel/plugin-transform-class-static-block@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.27.1.tgz#7e920d5625b25bbccd3061aefbcc05805ed56ce4"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.27.1.tgz"
integrity sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==
dependencies:
"@babel/helper-create-class-features-plugin" "^7.27.1"
@@ -344,7 +377,7 @@
"@babel/plugin-transform-classes@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.0.tgz#12fa46cffc32a6e084011b650539e880add8a0f8"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.0.tgz"
integrity sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.3"
@@ -356,7 +389,7 @@
"@babel/plugin-transform-computed-properties@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz#81662e78bf5e734a97982c2b7f0a793288ef3caa"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz"
integrity sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -364,7 +397,7 @@
"@babel/plugin-transform-destructuring@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.0.tgz#0f156588f69c596089b7d5b06f5af83d9aa7f97a"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.0.tgz"
integrity sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -372,7 +405,7 @@
"@babel/plugin-transform-dotall-regex@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz#aa6821de864c528b1fecf286f0a174e38e826f4d"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz"
integrity sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
@@ -380,14 +413,14 @@
"@babel/plugin-transform-duplicate-keys@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz#f1fbf628ece18e12e7b32b175940e68358f546d1"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz"
integrity sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz#5043854ca620a94149372e69030ff8cb6a9eb0ec"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz"
integrity sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
@@ -395,14 +428,14 @@
"@babel/plugin-transform-dynamic-import@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz#4c78f35552ac0e06aa1f6e3c573d67695e8af5a4"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz"
integrity sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-explicit-resource-management@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz#45be6211b778dbf4b9d54c4e8a2b42fa72e09a1a"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz"
integrity sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -410,21 +443,21 @@
"@babel/plugin-transform-exponentiation-operator@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.27.1.tgz#fc497b12d8277e559747f5a3ed868dd8064f83e1"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.27.1.tgz"
integrity sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-export-namespace-from@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz#71ca69d3471edd6daa711cf4dfc3400415df9c23"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz"
integrity sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-for-of@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz#bc24f7080e9ff721b63a70ac7b2564ca15b6c40a"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz"
integrity sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -432,7 +465,7 @@
"@babel/plugin-transform-function-name@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz#4d0bf307720e4dce6d7c30fcb1fd6ca77bdeb3a7"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz"
integrity sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==
dependencies:
"@babel/helper-compilation-targets" "^7.27.1"
@@ -441,35 +474,35 @@
"@babel/plugin-transform-json-strings@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz#a2e0ce6ef256376bd527f290da023983527a4f4c"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz"
integrity sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-literals@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz#baaefa4d10a1d4206f9dcdda50d7d5827bb70b24"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz"
integrity sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-logical-assignment-operators@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.27.1.tgz#890cb20e0270e0e5bebe3f025b434841c32d5baa"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.27.1.tgz"
integrity sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-member-expression-literals@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz#37b88ba594d852418e99536f5612f795f23aeaf9"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz"
integrity sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-modules-amd@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz#a4145f9d87c2291fe2d05f994b65dba4e3e7196f"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz"
integrity sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==
dependencies:
"@babel/helper-module-transforms" "^7.27.1"
@@ -477,7 +510,7 @@
"@babel/plugin-transform-modules-commonjs@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz#8e44ed37c2787ecc23bdc367f49977476614e832"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz"
integrity sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==
dependencies:
"@babel/helper-module-transforms" "^7.27.1"
@@ -485,7 +518,7 @@
"@babel/plugin-transform-modules-systemjs@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.27.1.tgz#00e05b61863070d0f3292a00126c16c0e024c4ed"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.27.1.tgz"
integrity sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==
dependencies:
"@babel/helper-module-transforms" "^7.27.1"
@@ -495,7 +528,7 @@
"@babel/plugin-transform-modules-umd@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz#63f2cf4f6dc15debc12f694e44714863d34cd334"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz"
integrity sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==
dependencies:
"@babel/helper-module-transforms" "^7.27.1"
@@ -503,7 +536,7 @@
"@babel/plugin-transform-named-capturing-groups-regex@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz#f32b8f7818d8fc0cc46ee20a8ef75f071af976e1"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz"
integrity sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
@@ -511,28 +544,28 @@
"@babel/plugin-transform-new-target@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz#259c43939728cad1706ac17351b7e6a7bea1abeb"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz"
integrity sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-nullish-coalescing-operator@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz#4f9d3153bf6782d73dd42785a9d22d03197bc91d"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz"
integrity sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-numeric-separator@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz#614e0b15cc800e5997dadd9bd6ea524ed6c819c6"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz"
integrity sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-object-rest-spread@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.0.tgz#d23021857ffd7cd809f54d624299b8086402ed8d"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.0.tgz"
integrity sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==
dependencies:
"@babel/helper-compilation-targets" "^7.27.2"
@@ -543,7 +576,7 @@
"@babel/plugin-transform-object-super@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz#1c932cd27bf3874c43a5cac4f43ebf970c9871b5"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz"
integrity sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -551,29 +584,29 @@
"@babel/plugin-transform-optional-catch-binding@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz#84c7341ebde35ccd36b137e9e45866825072a30c"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz"
integrity sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-optional-chaining@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz#874ce3c4f06b7780592e946026eb76a32830454f"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.27.1.tgz"
integrity sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
-"@babel/plugin-transform-parameters@^7.27.7":
+"@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.27.7":
version "7.27.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz#1fd2febb7c74e7d21cf3b05f7aebc907940af53a"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz"
integrity sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-private-methods@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz#fdacbab1c5ed81ec70dfdbb8b213d65da148b6af"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz"
integrity sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==
dependencies:
"@babel/helper-create-class-features-plugin" "^7.27.1"
@@ -581,7 +614,7 @@
"@babel/plugin-transform-private-property-in-object@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz#4dbbef283b5b2f01a21e81e299f76e35f900fb11"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz"
integrity sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.1"
@@ -590,35 +623,35 @@
"@babel/plugin-transform-property-literals@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz#07eafd618800591e88073a0af1b940d9a42c6424"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz"
integrity sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-react-constant-elements@^7.12.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz#6c6b50424e749a6e48afd14cf7b92f98cb9383f9"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.27.1.tgz"
integrity sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-react-display-name@^7.27.1":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz#6f20a7295fea7df42eb42fed8f896813f5b934de"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.28.0.tgz"
integrity sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-react-jsx-development@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz#47ff95940e20a3a70e68ad3d4fcb657b647f6c98"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.27.1.tgz"
integrity sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==
dependencies:
"@babel/plugin-transform-react-jsx" "^7.27.1"
"@babel/plugin-transform-react-jsx@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz#1023bc94b78b0a2d68c82b5e96aed573bcfb9db0"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz"
integrity sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.1"
@@ -629,7 +662,7 @@
"@babel/plugin-transform-react-pure-annotations@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz#339f1ce355eae242e0649f232b1c68907c02e879"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.27.1.tgz"
integrity sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.1"
@@ -637,14 +670,14 @@
"@babel/plugin-transform-regenerator@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.0.tgz#f19ca3558f7121924fc4ba6cd2afe3a5cdac89b1"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.0.tgz"
integrity sha512-LOAozRVbqxEVjSKfhGnuLoE4Kz4Oc5UJzuvFUhSsQzdCdaAQu06mG8zDv2GFSerM62nImUZ7K92vxnQcLSDlCQ==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-regexp-modifiers@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz#df9ba5577c974e3f1449888b70b76169998a6d09"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz"
integrity sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
@@ -652,21 +685,21 @@
"@babel/plugin-transform-reserved-words@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz#40fba4878ccbd1c56605a4479a3a891ac0274bb4"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz"
integrity sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-shorthand-properties@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz#532abdacdec87bfee1e0ef8e2fcdee543fe32b90"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz"
integrity sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-spread@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz#1a264d5fc12750918f50e3fe3e24e437178abb08"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz"
integrity sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -674,35 +707,46 @@
"@babel/plugin-transform-sticky-regex@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz#18984935d9d2296843a491d78a014939f7dcd280"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz"
integrity sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-template-literals@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz#1a0eb35d8bb3e6efc06c9fd40eb0bcef548328b8"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz"
integrity sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-typeof-symbol@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz#70e966bb492e03509cf37eafa6dcc3051f844369"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz"
integrity sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
+"@babel/plugin-transform-typescript@^7.27.1":
+ version "7.28.0"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.0.tgz"
+ integrity sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ "@babel/helper-create-class-features-plugin" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
+ "@babel/plugin-syntax-typescript" "^7.27.1"
+
"@babel/plugin-transform-unicode-escapes@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz#3e3143f8438aef842de28816ece58780190cf806"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz"
integrity sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-unicode-property-regex@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz#bdfe2d3170c78c5691a3c3be934c8c0087525956"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz"
integrity sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
@@ -710,7 +754,7 @@
"@babel/plugin-transform-unicode-regex@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz#25948f5c395db15f609028e370667ed8bae9af97"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz"
integrity sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
@@ -718,15 +762,15 @@
"@babel/plugin-transform-unicode-sets-regex@^7.27.1":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz#6ab706d10f801b5c72da8bb2548561fa04193cd1"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz"
integrity sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==
dependencies:
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.26.9":
+"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.14.5", "@babel/preset-env@^7.26.9":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.0.tgz#d23a6bc17b43227d11db77081a0779c706b5569c"
+ resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.28.0.tgz"
integrity sha512-VmaxeGOwuDqzLl5JUkIRM1X2Qu2uKGxHEQWh+cvvbl7JuJRgKGJSfsEF/bUaxFhJl/XAyxBe7q7qSuTbKFuCyg==
dependencies:
"@babel/compat-data" "^7.28.0"
@@ -802,7 +846,7 @@
"@babel/preset-modules@0.1.6-no-external-plugins":
version "0.1.6-no-external-plugins"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz#ccb88a2c49c817236861fee7826080573b8a923a"
+ resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz"
integrity sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
@@ -811,7 +855,7 @@
"@babel/preset-react@^7.12.5", "@babel/preset-react@^7.26.3":
version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.27.1.tgz#86ea0a5ca3984663f744be2fd26cb6747c3fd0ec"
+ resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.27.1.tgz"
integrity sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
@@ -821,21 +865,38 @@
"@babel/plugin-transform-react-jsx-development" "^7.27.1"
"@babel/plugin-transform-react-pure-annotations" "^7.27.1"
-"@babel/runtime@7.4.5":
+"@babel/preset-typescript@^7.14.5":
+ version "7.27.1"
+ resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.1.tgz"
+ integrity sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-validator-option" "^7.27.1"
+ "@babel/plugin-syntax-jsx" "^7.27.1"
+ "@babel/plugin-transform-modules-commonjs" "^7.27.1"
+ "@babel/plugin-transform-typescript" "^7.27.1"
+
+"@babel/register@^7.14.5":
+ version "7.27.1"
+ resolved "https://registry.npmjs.org/@babel/register/-/register-7.27.1.tgz"
+ integrity sha512-K13lQpoV54LATKkzBpBAEu1GGSIRzxR9f4IN4V8DCDgiUMo2UDGagEZr3lPeVNJPLkWUi5JE4hCHKneVTwQlYQ==
+ dependencies:
+ clone-deep "^4.0.1"
+ find-cache-dir "^2.0.0"
+ make-dir "^2.1.0"
+ pirates "^4.0.6"
+ source-map-support "^0.5.16"
+
+"@babel/runtime@^7.3.4", "@babel/runtime@7.4.5":
version "7.4.5"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.5.tgz#582bb531f5f9dc67d2fcb682979894f75e253f12"
+ resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.4.5.tgz"
integrity sha512-TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ==
dependencies:
regenerator-runtime "^0.13.2"
-"@babel/runtime@^7.3.4":
- version "7.27.6"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.27.6.tgz#ec4070a04d76bae8ddbb10770ba55714a417b7c6"
- integrity sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==
-
"@babel/template@^7.27.1", "@babel/template@^7.27.2":
version "7.27.2"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz#fa78ceed3c4e7b63ebf6cb39e5852fca45f6809d"
+ resolved "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz"
integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==
dependencies:
"@babel/code-frame" "^7.27.1"
@@ -844,7 +905,7 @@
"@babel/traverse@^7.27.1", "@babel/traverse@^7.27.3", "@babel/traverse@^7.28.0":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.0.tgz#518aa113359b062042379e333db18380b537e34b"
+ resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz"
integrity sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==
dependencies:
"@babel/code-frame" "^7.27.1"
@@ -857,7 +918,7 @@
"@babel/types@^7.12.6", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.27.6", "@babel/types@^7.28.0", "@babel/types@^7.4.4":
version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.0.tgz#2fd0159a6dc7353933920c43136335a9b264d950"
+ resolved "https://registry.npmjs.org/@babel/types/-/types-7.28.0.tgz"
integrity sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==
dependencies:
"@babel/helper-string-parser" "^7.27.1"
@@ -865,24 +926,12 @@
"@discoveryjs/json-ext@0.5.7":
version "0.5.7"
- resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
+ resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz"
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
-"@isaacs/balanced-match@^4.0.1":
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz#3081dadbc3460661b751e7591d7faea5df39dd29"
- integrity sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==
-
-"@isaacs/brace-expansion@^5.0.0":
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz#4b3dabab7d8e75a429414a96bd67bf4c1d13e0f3"
- integrity sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==
- dependencies:
- "@isaacs/balanced-match" "^4.0.1"
-
"@jridgewell/gen-mapping@^0.3.12", "@jridgewell/gen-mapping@^0.3.5":
version "0.3.12"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz#2234ce26c62889f03db3d7fea43c1932ab3e927b"
+ resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz"
integrity sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==
dependencies:
"@jridgewell/sourcemap-codec" "^1.5.0"
@@ -890,12 +939,12 @@
"@jridgewell/resolve-uri@^3.1.0":
version "3.1.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
+ resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz"
integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
"@jridgewell/source-map@^0.3.3":
version "0.3.10"
- resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.10.tgz#a35714446a2e84503ff9bfe66f1d1d4846f2075b"
+ resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz"
integrity sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==
dependencies:
"@jridgewell/gen-mapping" "^0.3.5"
@@ -903,100 +952,46 @@
"@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0":
version "1.5.4"
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz#7358043433b2e5da569aa02cbc4c121da3af27d7"
+ resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz"
integrity sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==
"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.28":
version "0.3.29"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz#a58d31eaadaf92c6695680b2e1d464a9b8fbf7fc"
+ resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz"
integrity sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
-"@mapbox/node-pre-gyp@^1.0.0":
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz#417db42b7f5323d79e93b34a6d7a2a12c0df43fa"
- integrity sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==
+"@nodelib/fs.scandir@2.1.5":
+ version "2.1.5"
+ resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
+ integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
dependencies:
- detect-libc "^2.0.0"
- https-proxy-agent "^5.0.0"
- make-dir "^3.1.0"
- node-fetch "^2.6.7"
- nopt "^5.0.0"
- npmlog "^5.0.1"
- rimraf "^3.0.2"
- semver "^7.3.5"
- tar "^6.1.11"
+ "@nodelib/fs.stat" "2.0.5"
+ run-parallel "^1.1.9"
-"@parcel/watcher-android-arm64@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz#507f836d7e2042f798c7d07ad19c3546f9848ac1"
- integrity sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==
+"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
+ version "2.0.5"
+ resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
+ integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
-"@parcel/watcher-darwin-arm64@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz#3d26dce38de6590ef79c47ec2c55793c06ad4f67"
- integrity sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==
-
-"@parcel/watcher-darwin-x64@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz#99f3af3869069ccf774e4ddfccf7e64fd2311ef8"
- integrity sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==
-
-"@parcel/watcher-freebsd-x64@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz#14d6857741a9f51dfe51d5b08b7c8afdbc73ad9b"
- integrity sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==
-
-"@parcel/watcher-linux-arm-glibc@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz#43c3246d6892381db473bb4f663229ad20b609a1"
- integrity sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==
-
-"@parcel/watcher-linux-arm-musl@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz#663750f7090bb6278d2210de643eb8a3f780d08e"
- integrity sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==
+"@nodelib/fs.walk@^1.2.3":
+ version "1.2.8"
+ resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
+ integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
+ dependencies:
+ "@nodelib/fs.scandir" "2.1.5"
+ fastq "^1.6.0"
"@parcel/watcher-linux-arm64-glibc@2.5.1":
version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz#ba60e1f56977f7e47cd7e31ad65d15fdcbd07e30"
+ resolved "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz"
integrity sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==
-"@parcel/watcher-linux-arm64-musl@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz#f7fbcdff2f04c526f96eac01f97419a6a99855d2"
- integrity sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==
-
-"@parcel/watcher-linux-x64-glibc@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz#4d2ea0f633eb1917d83d483392ce6181b6a92e4e"
- integrity sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==
-
-"@parcel/watcher-linux-x64-musl@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz#277b346b05db54f55657301dd77bdf99d63606ee"
- integrity sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==
-
-"@parcel/watcher-win32-arm64@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz#7e9e02a26784d47503de1d10e8eab6cceb524243"
- integrity sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==
-
-"@parcel/watcher-win32-ia32@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz#2d0f94fa59a873cdc584bf7f6b1dc628ddf976e6"
- integrity sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==
-
-"@parcel/watcher-win32-x64@2.5.1":
- version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz#ae52693259664ba6f2228fa61d7ee44b64ea0947"
- integrity sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==
-
"@parcel/watcher@^2.4.1":
version "2.5.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.5.1.tgz#342507a9cfaaf172479a882309def1e991fb1200"
+ resolved "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz"
integrity sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==
dependencies:
detect-libc "^1.0.3"
@@ -1020,31 +1015,31 @@
"@polka/url@^1.0.0-next.24":
version "1.0.0-next.29"
- resolved "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.29.tgz#5a40109a1ab5f84d6fd8fc928b19f367cbe7e7b1"
+ resolved "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz"
integrity sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==
"@react-pdf-viewer/attachment@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/attachment/-/attachment-3.12.0.tgz#82a43dc31ba01da8a366fbcdf8dd826a7ae161c0"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/attachment/-/attachment-3.12.0.tgz"
integrity sha512-mhwrYJSIpCvHdERpLUotqhMgSjhtF+BTY1Yb9Fnzpcq3gLZP+Twp5Rynq21tCrVdDizPaVY7SKu400GkgdMfZw==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/bookmark@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/bookmark/-/bookmark-3.12.0.tgz#94288a06a19402658a73f5463ea0b447dcb3ff2d"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/bookmark/-/bookmark-3.12.0.tgz"
integrity sha512-i7nEit8vIFMAES8RFGwprZ9cXOOZb9ZStPW6E6yuObJEXcvBj/ctsbBJGZxqUZOGklM0JoB7sjHyxAriHfe92A==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
-"@react-pdf-viewer/core@3.12.0", "@react-pdf-viewer/core@^3.9.0":
+"@react-pdf-viewer/core@^3.9.0", "@react-pdf-viewer/core@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/core/-/core-3.12.0.tgz#40dc9bee5bce5281cd9ea62d958e4169b500fa14"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/core/-/core-3.12.0.tgz"
integrity sha512-8MsdlQJ4jaw3GT+zpCHS33nwnvzpY0ED6DEahZg9WngG++A5RMhk8LSlxdHelwaFFHFiXBjmOaj2Kpxh50VQRg==
"@react-pdf-viewer/default-layout@^3.9.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/default-layout/-/default-layout-3.12.0.tgz#8e7ed62c1d2858b79d5ff305390c07c7c05a5538"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/default-layout/-/default-layout-3.12.0.tgz"
integrity sha512-K2fS4+TJynHxxCBFuIDiFuAw3nqOh4bkBgtVZ/2pGvnFn9lLg46YGLMnTXCQqtyZzzXYh696jmlFViun3is4pA==
dependencies:
"@react-pdf-viewer/attachment" "3.12.0"
@@ -1055,91 +1050,91 @@
"@react-pdf-viewer/full-screen@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/full-screen/-/full-screen-3.12.0.tgz#537bd7f4980e6d49ca491052d6e2390d4b1b5680"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/full-screen/-/full-screen-3.12.0.tgz"
integrity sha512-hQouJ26QUaRBCXNMU1aI1zpJn4l4PJRvlHhuE2dZYtLl37ycjl7vBCQYZW1FwnuxMWztZsY47R43DKaZORg0pg==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/get-file@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/get-file/-/get-file-3.12.0.tgz#940c7475f9dc89c56c3e351a4636cc1a3f9f7080"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/get-file/-/get-file-3.12.0.tgz"
integrity sha512-Uhq45n2RWlZ7Ec/BtBJ0WQESRciaYIltveDXHNdWvXgFdOS8XsvB+mnTh/wzm7Cfl9hpPyzfeezifdU9AkQgQg==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/open@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/open/-/open-3.12.0.tgz#de668c0c64767b73828ca1fb9f990732b9d5d3d2"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/open/-/open-3.12.0.tgz"
integrity sha512-vhiDEYsiQLxvZkIKT9VPYHZ1BOnv46x9eCEmRWxO1DJ8fa/GRDTA9ivXmq/ap0dGEJs6t+epleCkCEfllLR/Yw==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/page-navigation@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/page-navigation/-/page-navigation-3.12.0.tgz#399f1cc06e5dd8b40d5e44e4c57bcb6c84bced62"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/page-navigation/-/page-navigation-3.12.0.tgz"
integrity sha512-tVEJ48Dd5kajV1nKkrPWijglJRNBiKBTyYDKVexhiRdTHUP1f6QQXiSyDgCUb0IGSZeJzOJb1h7ApKHe8OTtuw==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/print@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/print/-/print-3.12.0.tgz#0d978c4e8654585d8a486c45388b6fe68f3d47e0"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/print/-/print-3.12.0.tgz"
integrity sha512-xJn76CgbU/M2iNaN7wLHTg+sdOekkRMfCakFLwPrE+SR7qD6NUF4vQQKJBSVCCK5bUijzb6cWfKGfo8VA72o4Q==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/properties@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/properties/-/properties-3.12.0.tgz#0fe85d9b07a65b612d456b50de6e5ab993c1970b"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/properties/-/properties-3.12.0.tgz"
integrity sha512-dYTCHtVwFNkpDo7QxL2qk/8zAKndLwdD1FFxBftl6jIlQbtvNdxkFfkv1HcQING9Ic+7DBryOiD7W0ze4IERYg==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/rotate@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/rotate/-/rotate-3.12.0.tgz#f2e87d3e1fc3d8d16fe490636f68354334e58c3a"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/rotate/-/rotate-3.12.0.tgz"
integrity sha512-yaxaMYPChvNOjR8+AxRmj0kvojyJKPq4XHEcIB2lJJgBY1Zra3mliDUP3Nlb4yV8BS9+yBqWn9U9mtnopQD+tw==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/scroll-mode@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/scroll-mode/-/scroll-mode-3.12.0.tgz#a875b9b58883b229d1757943c1420eb65aceaefd"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/scroll-mode/-/scroll-mode-3.12.0.tgz"
integrity sha512-okII7Xqhl6cMvl1izdEvlXNJ+vJVq/qdg53hJIDYVgBCWskLk/cpjUg/ZonBxseG9lIDP3w2VO1McT8Gn11OAg==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/search@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/search/-/search-3.12.0.tgz#e308d0d8b30f087ef9877a968c821af1a6aaf180"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/search/-/search-3.12.0.tgz"
integrity sha512-jAkLpis49fsDDY/HrbUZIOIhzF5vynONQNA4INQKI38r/MjveblrkNv7qbr9j5lQ/WFic5+gD1e+Mtpf1/7DiA==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/selection-mode@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/selection-mode/-/selection-mode-3.12.0.tgz#f86bd951205d6f485bbb5cce0c3128a00fea147b"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/selection-mode/-/selection-mode-3.12.0.tgz"
integrity sha512-yysWEu2aCtBvzSgbhgI9kT5cq2hf0FU6Z+3B7MMXz14Kxyc3y18wUqxtgbvpFEfWF0bNUUq16JtWRljtxvZ83w==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/theme@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/theme/-/theme-3.12.0.tgz#d7f667124ec4d5dacc6396e0a4ab1935b8f188af"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/theme/-/theme-3.12.0.tgz"
integrity sha512-cdBi+wR1VOZ6URCcO9plmAZQu4ZGFcd7HJdBe7VIFiGyrvl9I/Of74ONLycnDImSuONt8D3uNjPBLieeaShVeg==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/thumbnail@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/thumbnail/-/thumbnail-3.12.0.tgz#cfb13094ada7c7d2761d265326043ee9ddf9e22c"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/thumbnail/-/thumbnail-3.12.0.tgz"
integrity sha512-Vc8j3bO6wumWZV4o6pAbktPWKDSC9tQAzOCJ3cof541u4i44C11ccYC4W9aNcsMMUSO3bNwAGWtP8OFthV5akQ==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
"@react-pdf-viewer/toolbar@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/toolbar/-/toolbar-3.12.0.tgz#e168ca964a4933fb76831cee48cb3ed862011ad2"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/toolbar/-/toolbar-3.12.0.tgz"
integrity sha512-qACTU3qXHgtNK8J+T13EWio+0liilj86SJ87BdapqXynhl720OKPlSKOQqskUGqg3oTUJAhrse9XG6SFdHJx+g==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
@@ -1158,54 +1153,111 @@
"@react-pdf-viewer/zoom@3.12.0":
version "3.12.0"
- resolved "https://registry.yarnpkg.com/@react-pdf-viewer/zoom/-/zoom-3.12.0.tgz#4eaa0d28d5f92b10124c4374b684cbaefc51c1c2"
+ resolved "https://registry.npmjs.org/@react-pdf-viewer/zoom/-/zoom-3.12.0.tgz"
integrity sha512-V0GUTyPM77+LzhoKX+T3XI10/HfGdqRTbgeP7ID60FCzcwu6kXWqJn5tzabjDKLTlFv8mJmn0aa/ppkIU97nfA==
dependencies:
"@react-pdf-viewer/core" "3.12.0"
+"@rollup/plugin-commonjs@^19.0.0":
+ version "19.0.2"
+ resolved "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-19.0.2.tgz"
+ integrity sha512-gBjarfqlC7qs0AutpRW/hrFNm+cd2/QKxhwyFa+srbg1oX7rDsEU3l+W7LAUhsAp9mPJMAkXDhLbQaVwEaE8bA==
+ dependencies:
+ "@rollup/pluginutils" "^3.1.0"
+ commondir "^1.0.1"
+ estree-walker "^2.0.1"
+ glob "^7.1.6"
+ is-reference "^1.2.1"
+ magic-string "^0.25.7"
+ resolve "^1.17.0"
+
+"@rollup/plugin-json@^4.1.0":
+ version "4.1.0"
+ resolved "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz"
+ integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==
+ dependencies:
+ "@rollup/pluginutils" "^3.0.8"
+
+"@rollup/plugin-node-resolve@^13.0.0":
+ version "13.3.0"
+ resolved "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.3.0.tgz"
+ integrity sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==
+ dependencies:
+ "@rollup/pluginutils" "^3.1.0"
+ "@types/resolve" "1.17.1"
+ deepmerge "^4.2.2"
+ is-builtin-module "^3.1.0"
+ is-module "^1.0.0"
+ resolve "^1.19.0"
+
+"@rollup/plugin-typescript@^8.2.1":
+ version "8.5.0"
+ resolved "https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-8.5.0.tgz"
+ integrity sha512-wMv1/scv0m/rXx21wD2IsBbJFba8wGF3ErJIr6IKRfRj49S85Lszbxb4DCo8iILpluTjk2GAAu9CoZt4G3ppgQ==
+ dependencies:
+ "@rollup/pluginutils" "^3.1.0"
+ resolve "^1.17.0"
+
+"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0":
+ version "3.1.0"
+ resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz"
+ integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
+ dependencies:
+ "@types/estree" "0.0.39"
+ estree-walker "^1.0.1"
+ picomatch "^2.2.2"
+
+"@rollup/pluginutils@^4.1.2":
+ version "4.2.1"
+ resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"
+ integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==
+ dependencies:
+ estree-walker "^2.0.1"
+ picomatch "^2.2.2"
+
"@svgr/babel-plugin-add-jsx-attribute@^5.4.0":
version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz#81ef61947bb268eb9d50523446f9c638fb355906"
+ resolved "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz"
integrity sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==
"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0":
version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz#6b2c770c95c874654fd5e1d5ef475b78a0a962ef"
+ resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz"
integrity sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==
"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1":
version "5.0.1"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz#25621a8915ed7ad70da6cea3d0a6dbc2ea933efd"
+ resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz"
integrity sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==
"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1":
version "5.0.1"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz#0b221fc57f9fcd10e91fe219e2cd0dd03145a897"
+ resolved "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz"
integrity sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==
"@svgr/babel-plugin-svg-dynamic-title@^5.4.0":
version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz#139b546dd0c3186b6e5db4fefc26cb0baea729d7"
+ resolved "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz"
integrity sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==
"@svgr/babel-plugin-svg-em-dimensions@^5.4.0":
version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz#6543f69526632a133ce5cabab965deeaea2234a0"
+ resolved "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz"
integrity sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==
"@svgr/babel-plugin-transform-react-native-svg@^5.4.0":
version "5.4.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz#00bf9a7a73f1cad3948cdab1f8dfb774750f8c80"
+ resolved "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz"
integrity sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==
"@svgr/babel-plugin-transform-svg-component@^5.5.0":
version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz#583a5e2a193e214da2f3afeb0b9e8d3250126b4a"
+ resolved "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz"
integrity sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==
"@svgr/babel-preset@^5.5.0":
version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-5.5.0.tgz#8af54f3e0a8add7b1e2b0fcd5a882c55393df327"
+ resolved "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz"
integrity sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==
dependencies:
"@svgr/babel-plugin-add-jsx-attribute" "^5.4.0"
@@ -1219,7 +1271,7 @@
"@svgr/core@^5.5.0":
version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/core/-/core-5.5.0.tgz#82e826b8715d71083120fe8f2492ec7d7874a579"
+ resolved "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz"
integrity sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==
dependencies:
"@svgr/plugin-jsx" "^5.5.0"
@@ -1228,14 +1280,14 @@
"@svgr/hast-util-to-babel-ast@^5.5.0":
version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz#5ee52a9c2533f73e63f8f22b779f93cd432a5461"
+ resolved "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz"
integrity sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==
dependencies:
"@babel/types" "^7.12.6"
"@svgr/plugin-jsx@^5.5.0":
version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz#1aa8cd798a1db7173ac043466d7b52236b369000"
+ resolved "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz"
integrity sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==
dependencies:
"@babel/core" "^7.12.3"
@@ -1245,7 +1297,7 @@
"@svgr/plugin-svgo@^5.5.0":
version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz#02da55d85320549324e201c7b2e53bf431fcc246"
+ resolved "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz"
integrity sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==
dependencies:
cosmiconfig "^7.0.0"
@@ -1254,7 +1306,7 @@
"@svgr/webpack@^5.5.0":
version "5.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-5.5.0.tgz#aae858ee579f5fa8ce6c3166ef56c6a1b381b640"
+ resolved "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz"
integrity sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==
dependencies:
"@babel/core" "^7.12.3"
@@ -1268,12 +1320,12 @@
"@trysound/sax@0.2.0":
version "0.2.0"
- resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
+ resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz"
integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
"@types/body-parser@*":
version "1.19.6"
- resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.6.tgz#1859bebb8fd7dac9918a45d54c1971ab8b5af474"
+ resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz"
integrity sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==
dependencies:
"@types/connect" "*"
@@ -1281,7 +1333,7 @@
"@types/connect-history-api-fallback@*":
version "1.5.4"
- resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz#7de71645a103056b48ac3ce07b3520b819c1d5b3"
+ resolved "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz"
integrity sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==
dependencies:
"@types/express-serve-static-core" "*"
@@ -1289,14 +1341,14 @@
"@types/connect@*":
version "3.4.38"
- resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.38.tgz#5ba7f3bc4fbbdeaff8dded952e5ff2cc53f8d858"
+ resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz"
integrity sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==
dependencies:
"@types/node" "*"
"@types/eslint-scope@^3.7.7":
version "3.7.7"
- resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5"
+ resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz"
integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==
dependencies:
"@types/eslint" "*"
@@ -1304,20 +1356,25 @@
"@types/eslint@*":
version "9.6.1"
- resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-9.6.1.tgz#d5795ad732ce81715f27f75da913004a56751584"
+ resolved "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz"
integrity sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
-"@types/estree@*", "@types/estree@^1.0.6":
+"@types/estree@*", "@types/estree@0.0.39":
+ version "0.0.39"
+ resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz"
+ integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
+
+"@types/estree@^1.0.6":
version "1.0.8"
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e"
+ resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz"
integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==
"@types/express-serve-static-core@*", "@types/express-serve-static-core@^5.0.0":
version "5.0.6"
- resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz#41fec4ea20e9c7b22f024ab88a95c6bb288f51b8"
+ resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz"
integrity sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==
dependencies:
"@types/node" "*"
@@ -1327,7 +1384,7 @@
"@types/express@*":
version "5.0.3"
- resolved "https://registry.yarnpkg.com/@types/express/-/express-5.0.3.tgz#6c4bc6acddc2e2a587142e1d8be0bce20757e956"
+ resolved "https://registry.npmjs.org/@types/express/-/express-5.0.3.tgz"
integrity sha512-wGA0NX93b19/dZC1J18tKWVIYWyyF2ZjT9vin/NRu0qzzvfVzWjs04iq2rQ3H65vCTQYlRqs3YHfY7zjdV+9Kw==
dependencies:
"@types/body-parser" "*"
@@ -1336,7 +1393,7 @@
"@types/glob@^7.1.1":
version "7.2.0"
- resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb"
+ resolved "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz"
integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==
dependencies:
"@types/minimatch" "*"
@@ -1344,80 +1401,114 @@
"@types/html-minifier-terser@^6.0.0":
version "6.1.0"
- resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35"
+ resolved "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz"
integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==
"@types/http-errors@*":
version "2.0.5"
- resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.5.tgz#5b749ab2b16ba113423feb1a64a95dcd30398472"
+ resolved "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz"
integrity sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==
"@types/http-proxy@^1.17.5":
version "1.17.16"
- resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.16.tgz#dee360707b35b3cc85afcde89ffeebff7d7f9240"
+ resolved "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.16.tgz"
integrity sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==
dependencies:
"@types/node" "*"
"@types/json-schema@*", "@types/json-schema@^7.0.15", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
version "7.0.15"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
+ resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz"
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
"@types/mime@^1":
version "1.3.5"
- resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690"
+ resolved "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz"
integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==
-"@types/minimatch@*":
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-6.0.0.tgz#4d207b1cc941367bdcd195a3a781a7e4fc3b1e03"
- integrity sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==
- dependencies:
- minimatch "*"
+"@types/minimatch@*", "@types/minimatch@^5.1.2":
+ version "5.1.2"
+ resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz"
+ integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
+
+"@types/minimatch@^3.0.3":
+ version "3.0.5"
+ resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"
+ integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==
"@types/node@*":
version "24.0.10"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-24.0.10.tgz#f65a169779bf0d70203183a1890be7bee8ca2ddb"
+ resolved "https://registry.npmjs.org/@types/node/-/node-24.0.10.tgz"
integrity sha512-ENHwaH+JIRTDIEEbDK6QSQntAYGtbvdDXnMXnZaZ6k13Du1dPMmprkEHIL7ok2Wl2aZevetwTAb5S+7yIF+enA==
dependencies:
undici-types "~7.8.0"
"@types/parse-json@^4.0.0":
version "4.0.2"
- resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239"
+ resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz"
integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==
+"@types/prop-types@*":
+ version "15.7.15"
+ resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz"
+ integrity sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==
+
"@types/q@^1.5.1":
version "1.5.8"
- resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.8.tgz#95f6c6a08f2ad868ba230ead1d2d7f7be3db3837"
+ resolved "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz"
integrity sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==
"@types/qs@*":
version "6.14.0"
- resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.14.0.tgz#d8b60cecf62f2db0fb68e5e006077b9178b85de5"
+ resolved "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz"
integrity sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==
"@types/range-parser@*":
version "1.2.7"
- resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb"
+ resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz"
integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==
+"@types/react-dom@^17.0.7":
+ version "17.0.26"
+ resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.26.tgz"
+ integrity sha512-Z+2VcYXJwOqQ79HreLU/1fyQ88eXSSFh6I3JdrEHQIfYSI0kCQpTGvOrbE6jFGGYXKsHuwY9tBa/w5Uo6KzrEg==
+
"@types/react-dom@^19.0.4":
version "19.1.6"
- resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-19.1.6.tgz#4af629da0e9f9c0f506fc4d1caa610399c595d64"
+ resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.6.tgz"
integrity sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==
+"@types/react@^17.0.11":
+ version "17.0.87"
+ resolved "https://registry.npmjs.org/@types/react/-/react-17.0.87.tgz"
+ integrity sha512-wpg9AbtJ6agjA+BKYmhG6dRWEU/2DHYwMzCaBzsz137ft6IyuqZ5fI4ic1DWL4DrI03Zy78IyVE6ucrXl0mu4g==
+ dependencies:
+ "@types/prop-types" "*"
+ "@types/scheduler" "^0.16"
+ csstype "^3.0.2"
+
"@types/react@^19.0.10":
version "19.1.8"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-19.1.8.tgz#ff8395f2afb764597265ced15f8dddb0720ae1c3"
+ resolved "https://registry.npmjs.org/@types/react/-/react-19.1.8.tgz"
integrity sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==
dependencies:
csstype "^3.0.2"
+"@types/resolve@1.17.1":
+ version "1.17.1"
+ resolved "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz"
+ integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==
+ dependencies:
+ "@types/node" "*"
+
+"@types/scheduler@^0.16":
+ version "0.16.8"
+ resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz"
+ integrity sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==
+
"@types/send@*":
version "0.17.5"
- resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.5.tgz#d991d4f2b16f2b1ef497131f00a9114290791e74"
+ resolved "https://registry.npmjs.org/@types/send/-/send-0.17.5.tgz"
integrity sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==
dependencies:
"@types/mime" "^1"
@@ -1425,7 +1516,7 @@
"@types/serve-static@*":
version "1.15.8"
- resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.8.tgz#8180c3fbe4a70e8f00b9f70b9ba7f08f35987877"
+ resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.8.tgz"
integrity sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==
dependencies:
"@types/http-errors" "*"
@@ -1434,24 +1525,24 @@
"@types/source-list-map@*":
version "0.1.6"
- resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.6.tgz#164e169dd061795b50b83c19e4d3be09f8d3a454"
+ resolved "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz"
integrity sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==
"@types/tapable@^1":
version "1.0.12"
- resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.12.tgz#bc2cab12e87978eee89fb21576b670350d6d86ab"
+ resolved "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz"
integrity sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==
"@types/uglify-js@*":
version "3.17.5"
- resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.17.5.tgz#905ce03a3cbbf2e31cbefcbc68d15497ee2e17df"
+ resolved "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.5.tgz"
integrity sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==
dependencies:
source-map "^0.6.1"
"@types/webpack-bundle-analyzer@^4.4.0":
version "4.7.0"
- resolved "https://registry.yarnpkg.com/@types/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.7.0.tgz#fe199e724ce3d38705f6f1ba4d62429b7c360541"
+ resolved "https://registry.npmjs.org/@types/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.7.0.tgz"
integrity sha512-c5i2ThslSNSG8W891BRvOd/RoCjI2zwph8maD22b1adtSns20j+0azDDMCK06DiVrzTgnwiDl5Ntmu1YRJw8Sg==
dependencies:
"@types/node" "*"
@@ -1460,7 +1551,7 @@
"@types/webpack-dev-server@^3.11.4":
version "3.11.6"
- resolved "https://registry.yarnpkg.com/@types/webpack-dev-server/-/webpack-dev-server-3.11.6.tgz#d8888cfd2f0630203e13d3ed7833a4d11b8a34dc"
+ resolved "https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.6.tgz"
integrity sha512-XCph0RiiqFGetukCTC3KVnY1jwLcZ84illFRMbyFzCcWl90B/76ew0tSqF46oBhnLC4obNDG7dMO0JfTN0MgMQ==
dependencies:
"@types/connect-history-api-fallback" "*"
@@ -1471,7 +1562,7 @@
"@types/webpack-sources@*":
version "3.2.3"
- resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-3.2.3.tgz#b667bd13e9fa15a9c26603dce502c7985418c3d8"
+ resolved "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz"
integrity sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==
dependencies:
"@types/node" "*"
@@ -1480,7 +1571,7 @@
"@types/webpack@^4":
version "4.41.40"
- resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.40.tgz#41ea11cfafe08de24c3ef410c58976350667e2d1"
+ resolved "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.40.tgz"
integrity sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw==
dependencies:
"@types/node" "*"
@@ -1492,16 +1583,16 @@
"@types/webpack@^5.28.0":
version "5.28.5"
- resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-5.28.5.tgz#0e9d9a15efa09bbda2cef41356ca4ac2031ea9a2"
+ resolved "https://registry.npmjs.org/@types/webpack/-/webpack-5.28.5.tgz"
integrity sha512-wR87cgvxj3p6D0Crt1r5avwqffqPXUkNlnQ1mjU93G7gCuFjufZR4I6j8cz5g1F1tTYpfOOFvly+cmIQwL9wvw==
dependencies:
"@types/node" "*"
tapable "^2.2.0"
webpack "^5"
-"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1":
+"@webassemblyjs/ast@^1.14.1", "@webassemblyjs/ast@1.14.1":
version "1.14.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.14.1.tgz#a9f6a07f2b03c95c8d38c4536a1fdfb521ff55b6"
+ resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz"
integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==
dependencies:
"@webassemblyjs/helper-numbers" "1.13.2"
@@ -1509,22 +1600,22 @@
"@webassemblyjs/floating-point-hex-parser@1.13.2":
version "1.13.2"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz#fcca1eeddb1cc4e7b6eed4fc7956d6813b21b9fb"
+ resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz"
integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==
"@webassemblyjs/helper-api-error@1.13.2":
version "1.13.2"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz#e0a16152248bc38daee76dd7e21f15c5ef3ab1e7"
+ resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz"
integrity sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==
"@webassemblyjs/helper-buffer@1.14.1":
version "1.14.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz#822a9bc603166531f7d5df84e67b5bf99b72b96b"
+ resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz"
integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==
"@webassemblyjs/helper-numbers@1.13.2":
version "1.13.2"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz#dbd932548e7119f4b8a7877fd5a8d20e63490b2d"
+ resolved "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz"
integrity sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==
dependencies:
"@webassemblyjs/floating-point-hex-parser" "1.13.2"
@@ -1533,12 +1624,12 @@
"@webassemblyjs/helper-wasm-bytecode@1.13.2":
version "1.13.2"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz#e556108758f448aae84c850e593ce18a0eb31e0b"
+ resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz"
integrity sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==
"@webassemblyjs/helper-wasm-section@1.14.1":
version "1.14.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz#9629dda9c4430eab54b591053d6dc6f3ba050348"
+ resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz"
integrity sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==
dependencies:
"@webassemblyjs/ast" "1.14.1"
@@ -1548,26 +1639,26 @@
"@webassemblyjs/ieee754@1.13.2":
version "1.13.2"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz#1c5eaace1d606ada2c7fd7045ea9356c59ee0dba"
+ resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz"
integrity sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==
dependencies:
"@xtuc/ieee754" "^1.2.0"
"@webassemblyjs/leb128@1.13.2":
version "1.13.2"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.13.2.tgz#57c5c3deb0105d02ce25fa3fd74f4ebc9fd0bbb0"
+ resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz"
integrity sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==
dependencies:
"@xtuc/long" "4.2.2"
"@webassemblyjs/utf8@1.13.2":
version "1.13.2"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.13.2.tgz#917a20e93f71ad5602966c2d685ae0c6c21f60f1"
+ resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz"
integrity sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==
"@webassemblyjs/wasm-edit@^1.14.1":
version "1.14.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz#ac6689f502219b59198ddec42dcd496b1004d597"
+ resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz"
integrity sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==
dependencies:
"@webassemblyjs/ast" "1.14.1"
@@ -1581,7 +1672,7 @@
"@webassemblyjs/wasm-gen@1.14.1":
version "1.14.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz#991e7f0c090cb0bb62bbac882076e3d219da9570"
+ resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz"
integrity sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==
dependencies:
"@webassemblyjs/ast" "1.14.1"
@@ -1592,7 +1683,7 @@
"@webassemblyjs/wasm-opt@1.14.1":
version "1.14.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz#e6f71ed7ccae46781c206017d3c14c50efa8106b"
+ resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz"
integrity sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==
dependencies:
"@webassemblyjs/ast" "1.14.1"
@@ -1600,9 +1691,9 @@
"@webassemblyjs/wasm-gen" "1.14.1"
"@webassemblyjs/wasm-parser" "1.14.1"
-"@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.14.1":
+"@webassemblyjs/wasm-parser@^1.14.1", "@webassemblyjs/wasm-parser@1.14.1":
version "1.14.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz#b3e13f1893605ca78b52c68e54cf6a865f90b9fb"
+ resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz"
integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==
dependencies:
"@webassemblyjs/ast" "1.14.1"
@@ -1614,7 +1705,7 @@
"@webassemblyjs/wast-printer@1.14.1":
version "1.14.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz#3bb3e9638a8ae5fdaf9610e7a06b4d9f9aa6fe07"
+ resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz"
integrity sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==
dependencies:
"@webassemblyjs/ast" "1.14.1"
@@ -1622,22 +1713,27 @@
"@xtuc/ieee754@^1.2.0":
version "1.2.0"
- resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
+ resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz"
integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
"@xtuc/long@4.2.2":
version "4.2.2"
- resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
+ resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz"
integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
+abab@^2.0.5:
+ version "2.0.6"
+ resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz"
+ integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
+
abbrev@1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
+ resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
accepts@~1.3.4, accepts@~1.3.8:
version "1.3.8"
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
+ resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"
integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
dependencies:
mime-types "~2.1.34"
@@ -1645,50 +1741,48 @@ accepts@~1.3.4, accepts@~1.3.8:
acorn-walk@^8.0.0:
version "8.3.4"
- resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.4.tgz#794dd169c3977edf4ba4ea47583587c5866236b7"
+ resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz"
integrity sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==
dependencies:
acorn "^8.11.0"
acorn@^8.0.4, acorn@^8.11.0, acorn@^8.14.0:
version "8.15.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816"
+ resolved "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz"
integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==
-agent-base@6:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
- integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
- dependencies:
- debug "4"
-
ajv-errors@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
+ resolved "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz"
integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
ajv-formats@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
+ resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz"
integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==
dependencies:
ajv "^8.0.0"
-ajv-keywords@^3.1.0, ajv-keywords@^3.5.2:
+ajv-keywords@^3.1.0:
version "3.5.2"
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+ resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
+ integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
+
+ajv-keywords@^3.5.2:
+ version "3.5.2"
+ resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
ajv-keywords@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16"
+ resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz"
integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==
dependencies:
fast-deep-equal "^3.1.3"
-ajv@^6.1.0, ajv@^6.12.4, ajv@^6.12.5:
+ajv@^6.1.0:
version "6.12.6"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+ resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
dependencies:
fast-deep-equal "^3.1.1"
@@ -1696,9 +1790,29 @@ ajv@^6.1.0, ajv@^6.12.4, ajv@^6.12.5:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
-ajv@^8.0.0, ajv@^8.9.0:
+ajv@^6.12.3:
+ version "6.12.6"
+ resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
+ integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
+ajv@^6.12.4, ajv@^6.12.5:
+ version "6.12.6"
+ resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
+ integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
+ajv@^8.0.0, ajv@^8.6.0, ajv@^8.9.0:
version "8.17.1"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
+ resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz"
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
dependencies:
fast-deep-equal "^3.1.3"
@@ -1708,46 +1822,65 @@ ajv@^8.0.0, ajv@^8.9.0:
ansi-colors@^3.0.0:
version "3.2.4"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
+ resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz"
integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
ansi-html-community@0.0.8:
version "0.0.8"
- resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41"
+ resolved "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz"
integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==
ansi-regex@^2.0.0:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+ resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==
ansi-regex@^4.1.0:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed"
+ resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz"
integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==
ansi-regex@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
+ resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
-ansi-styles@^3.2.0, ansi-styles@^3.2.1:
+ansi-styles@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
+ integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==
+
+ansi-styles@^3.2.0:
version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
dependencies:
color-convert "^1.9.0"
+ansi-styles@^3.2.1:
+ version "3.2.1"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
+ integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+ dependencies:
+ color-convert "^1.9.0"
+
+ansi-styles@^4.0.0:
+ version "4.3.0"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
+ integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
+ dependencies:
+ color-convert "^2.0.1"
+
ansi-styles@^4.1.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
dependencies:
color-convert "^2.0.1"
anymatch@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
+ resolved "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
dependencies:
micromatch "^3.1.4"
@@ -1755,90 +1888,110 @@ anymatch@^2.0.0:
anymatch@^3.0.0:
version "3.1.3"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+ resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz"
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
dependencies:
normalize-path "^3.0.0"
picomatch "^2.0.4"
-"aproba@^1.0.3 || ^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
- integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
+aproba@^1.0.3:
+ version "1.2.0"
+ resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"
+ integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
-are-we-there-yet@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c"
- integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==
+are-we-there-yet@~1.1.2:
+ version "1.1.7"
+ resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz"
+ integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==
dependencies:
delegates "^1.0.0"
- readable-stream "^3.6.0"
+ readable-stream "^2.0.6"
-argparse@^1.0.7:
+argparse@^1.0.6, argparse@^1.0.7:
version "1.0.10"
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
+ resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
dependencies:
sprintf-js "~1.0.2"
argparse@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
+ resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
arr-diff@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
+ resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==
arr-flatten@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
+ resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
arr-union@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
+ resolved "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==
array-buffer-byte-length@^1.0.1, array-buffer-byte-length@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz#384d12a37295aec3769ab022ad323a18a51ccf8b"
+ resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz"
integrity sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==
dependencies:
call-bound "^1.0.3"
is-array-buffer "^3.0.5"
-array-flatten@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
- integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
+array-differ@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz"
+ integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==
+
+array-each@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz"
+ integrity sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==
array-flatten@^2.1.0:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
+ resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz"
integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
+array-flatten@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"
+ integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
+
+array-slice@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz"
+ integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==
+
array-union@^1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
+ resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"
integrity sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==
dependencies:
array-uniq "^1.0.1"
+array-union@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
+ integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+
array-uniq@^1.0.1:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
+ resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"
integrity sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==
array-unique@^0.3.2:
version "0.3.2"
- resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
+ resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"
integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==
array.prototype.reduce@^1.0.6:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz#42f97f5078daedca687d4463fd3c05cbfd83da57"
+ resolved "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.8.tgz"
integrity sha512-DwuEqgXFBwbmZSRqt3BpQigWNUoqw9Ml2dTWdF3B2zQlQX4OeUE0zyuzX0fX0IbTvjdkZbcBTU3idgpO78qkTw==
dependencies:
call-bind "^1.0.8"
@@ -1852,7 +2005,7 @@ array.prototype.reduce@^1.0.6:
arraybuffer.prototype.slice@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz#9d760d84dbdd06d0cbf92c8849615a1a7ab3183c"
+ resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz"
integrity sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==
dependencies:
array-buffer-byte-length "^1.0.1"
@@ -1863,23 +2016,40 @@ arraybuffer.prototype.slice@^1.0.4:
get-intrinsic "^1.2.6"
is-array-buffer "^3.0.4"
+arrify@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz"
+ integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
+
asap@~2.0.3:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
+ resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==
asn1.js@^4.10.1:
version "4.10.1"
- resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
+ resolved "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz"
integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==
dependencies:
bn.js "^4.0.0"
inherits "^2.0.1"
minimalistic-assert "^1.0.0"
+asn1@~0.2.3:
+ version "0.2.6"
+ resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz"
+ integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==
+ dependencies:
+ safer-buffer "~2.1.0"
+
+assert-plus@^1.0.0, assert-plus@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
+ integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==
+
assert@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/assert/-/assert-2.1.0.tgz#6d92a238d05dc02e7427c881fb8be81c8448b2dd"
+ resolved "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz"
integrity sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==
dependencies:
call-bind "^1.0.2"
@@ -1890,42 +2060,49 @@ assert@^2.0.0:
assign-symbols@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
+ resolved "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"
integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==
async-each@^1.0.1:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.6.tgz#52f1d9403818c179b7561e11a5d1b77eb2160e77"
+ resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz"
integrity sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==
async-function@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz#509c9fca60eaf85034c6829838188e4e4c8ffb2b"
+ resolved "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz"
integrity sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==
async-limiter@~1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
+ resolved "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz"
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
-async@^3.2.3, async@^3.2.6:
+async@^2.6.0:
+ version "2.6.4"
+ resolved "https://registry.npmjs.org/async/-/async-2.6.4.tgz"
+ integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==
+ dependencies:
+ lodash "^4.17.14"
+
+async@^3.2.3, async@^3.2.6, async@~3.2.0:
version "3.2.6"
- resolved "https://registry.yarnpkg.com/async/-/async-3.2.6.tgz#1b0728e14929d51b85b449b7f06e27c1145e38ce"
+ resolved "https://registry.npmjs.org/async/-/async-3.2.6.tgz"
integrity sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==
asynckit@^0.4.0:
version "0.4.0"
- resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+ resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
atob@^2.1.2:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
+ resolved "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
autoprefixer@^10.2.6, autoprefixer@^10.4.21:
version "10.4.21"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.21.tgz#77189468e7a8ad1d9a37fbc08efc9f480cf0a95d"
+ resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz"
integrity sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==
dependencies:
browserslist "^4.24.4"
@@ -1937,30 +2114,208 @@ autoprefixer@^10.2.6, autoprefixer@^10.4.21:
available-typed-arrays@^1.0.7:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846"
+ resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz"
integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==
dependencies:
possible-typed-array-names "^1.0.0"
+aws-sign2@~0.7.0:
+ version "0.7.0"
+ resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"
+ integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==
+
+aws4@^1.8.0:
+ version "1.13.2"
+ resolved "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz"
+ integrity sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==
+
+axios@^0.21.1:
+ version "0.21.4"
+ resolved "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"
+ integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==
+ dependencies:
+ follow-redirects "^1.14.0"
+
axios@^1.8.2:
version "1.10.0"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.10.0.tgz#af320aee8632eaf2a400b6a1979fa75856f38d54"
+ resolved "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz"
integrity sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==
dependencies:
follow-redirects "^1.15.6"
form-data "^4.0.0"
proxy-from-env "^1.1.0"
+babel-code-frame@^6.26.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"
+ integrity sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==
+ dependencies:
+ chalk "^1.1.3"
+ esutils "^2.0.2"
+ js-tokens "^3.0.2"
+
+babel-core@^6.26.0, babel-core@^6.26.3:
+ version "6.26.3"
+ resolved "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz"
+ integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==
+ dependencies:
+ babel-code-frame "^6.26.0"
+ babel-generator "^6.26.0"
+ babel-helpers "^6.24.1"
+ babel-messages "^6.23.0"
+ babel-register "^6.26.0"
+ babel-runtime "^6.26.0"
+ babel-template "^6.26.0"
+ babel-traverse "^6.26.0"
+ babel-types "^6.26.0"
+ babylon "^6.18.0"
+ convert-source-map "^1.5.1"
+ debug "^2.6.9"
+ json5 "^0.5.1"
+ lodash "^4.17.4"
+ minimatch "^3.0.4"
+ path-is-absolute "^1.0.1"
+ private "^0.1.8"
+ slash "^1.0.0"
+ source-map "^0.5.7"
+
+babel-generator@^6.26.0:
+ version "6.26.1"
+ resolved "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz"
+ integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==
+ dependencies:
+ babel-messages "^6.23.0"
+ babel-runtime "^6.26.0"
+ babel-types "^6.26.0"
+ detect-indent "^4.0.0"
+ jsesc "^1.3.0"
+ lodash "^4.17.4"
+ source-map "^0.5.7"
+ trim-right "^1.0.1"
+
+babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz"
+ integrity sha512-gCtfYORSG1fUMX4kKraymq607FWgMWg+j42IFPc18kFQEsmtaibP4UrqsXt8FlEJle25HUd4tsoDR7H2wDhe9Q==
+ dependencies:
+ babel-helper-explode-assignable-expression "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-helper-call-delegate@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz"
+ integrity sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ==
+ dependencies:
+ babel-helper-hoist-variables "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-traverse "^6.24.1"
+ babel-types "^6.24.1"
+
+babel-helper-define-map@^6.24.1:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz"
+ integrity sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA==
+ dependencies:
+ babel-helper-function-name "^6.24.1"
+ babel-runtime "^6.26.0"
+ babel-types "^6.26.0"
+ lodash "^4.17.4"
+
+babel-helper-explode-assignable-expression@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz"
+ integrity sha512-qe5csbhbvq6ccry9G7tkXbzNtcDiH4r51rrPUbwwoTzZ18AqxWYRZT6AOmxrpxKnQBW0pYlBI/8vh73Z//78nQ==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-traverse "^6.24.1"
+ babel-types "^6.24.1"
+
+babel-helper-function-name@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz"
+ integrity sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q==
+ dependencies:
+ babel-helper-get-function-arity "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+ babel-traverse "^6.24.1"
+ babel-types "^6.24.1"
+
+babel-helper-get-function-arity@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz"
+ integrity sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-helper-hoist-variables@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz"
+ integrity sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-helper-optimise-call-expression@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz"
+ integrity sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-helper-regex@^6.24.1:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz"
+ integrity sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg==
+ dependencies:
+ babel-runtime "^6.26.0"
+ babel-types "^6.26.0"
+ lodash "^4.17.4"
+
+babel-helper-remap-async-to-generator@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz"
+ integrity sha512-RYqaPD0mQyQIFRu7Ho5wE2yvA/5jxqCIj/Lv4BXNq23mHYu/vxikOy2JueLiBxQknwapwrJeNCesvY0ZcfnlHg==
+ dependencies:
+ babel-helper-function-name "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+ babel-traverse "^6.24.1"
+ babel-types "^6.24.1"
+
+babel-helper-replace-supers@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz"
+ integrity sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw==
+ dependencies:
+ babel-helper-optimise-call-expression "^6.24.1"
+ babel-messages "^6.23.0"
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+ babel-traverse "^6.24.1"
+ babel-types "^6.24.1"
+
+babel-helpers@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"
+ integrity sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+
babel-loader@^10.0.0:
version "10.0.0"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-10.0.0.tgz#b9743714c0e1e084b3e4adef3cd5faee33089977"
+ resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-10.0.0.tgz"
integrity sha512-z8jt+EdS61AMw22nSfoNJAZ0vrtmhPRVi6ghL3rCeRZI8cdNYFiV5xeV3HbE7rlZZNmGH8BVccwWt8/ED0QOHA==
dependencies:
find-up "^5.0.0"
babel-loader@^8.2.2:
version "8.4.1"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.4.1.tgz#6ccb75c66e62c3b144e1c5f2eaec5b8f6c08c675"
+ resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz"
integrity sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==
dependencies:
find-cache-dir "^3.3.1"
@@ -1968,9 +2323,23 @@ babel-loader@^8.2.2:
make-dir "^3.1.0"
schema-utils "^2.6.5"
+babel-messages@^6.23.0:
+ version "6.23.0"
+ resolved "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"
+ integrity sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-check-es2015-constants@^6.22.0:
+ version "6.22.0"
+ resolved "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz"
+ integrity sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA==
+ dependencies:
+ babel-runtime "^6.22.0"
+
babel-plugin-polyfill-corejs2@^0.4.14:
version "0.4.14"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz#8101b82b769c568835611542488d463395c2ef8f"
+ resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz"
integrity sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==
dependencies:
"@babel/compat-data" "^7.27.7"
@@ -1979,7 +2348,7 @@ babel-plugin-polyfill-corejs2@^0.4.14:
babel-plugin-polyfill-corejs3@^0.13.0:
version "0.13.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz#bb7f6aeef7addff17f7602a08a6d19a128c30164"
+ resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz"
integrity sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==
dependencies:
"@babel/helper-define-polyfill-provider" "^0.6.5"
@@ -1987,24 +2356,364 @@ babel-plugin-polyfill-corejs3@^0.13.0:
babel-plugin-polyfill-regenerator@^0.6.5:
version "0.6.5"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz#32752e38ab6f6767b92650347bf26a31b16ae8c5"
+ resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz"
integrity sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==
dependencies:
"@babel/helper-define-polyfill-provider" "^0.6.5"
+babel-plugin-syntax-async-functions@^6.8.0:
+ version "6.13.0"
+ resolved "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz"
+ integrity sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw==
+
+babel-plugin-syntax-exponentiation-operator@^6.8.0:
+ version "6.13.0"
+ resolved "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz"
+ integrity sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ==
+
+babel-plugin-syntax-trailing-function-commas@^6.22.0:
+ version "6.22.0"
+ resolved "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz"
+ integrity sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ==
+
+babel-plugin-transform-async-to-generator@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz"
+ integrity sha512-7BgYJujNCg0Ti3x0c/DL3tStvnKS6ktIYOmo9wginv/dfZOrbSZ+qG4IRRHMBOzZ5Awb1skTiAsQXg/+IWkZYw==
+ dependencies:
+ babel-helper-remap-async-to-generator "^6.24.1"
+ babel-plugin-syntax-async-functions "^6.8.0"
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-arrow-functions@^6.22.0:
+ version "6.22.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz"
+ integrity sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
+ version "6.22.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz"
+ integrity sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-block-scoping@^6.23.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz"
+ integrity sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw==
+ dependencies:
+ babel-runtime "^6.26.0"
+ babel-template "^6.26.0"
+ babel-traverse "^6.26.0"
+ babel-types "^6.26.0"
+ lodash "^4.17.4"
+
+babel-plugin-transform-es2015-classes@^6.23.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz"
+ integrity sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag==
+ dependencies:
+ babel-helper-define-map "^6.24.1"
+ babel-helper-function-name "^6.24.1"
+ babel-helper-optimise-call-expression "^6.24.1"
+ babel-helper-replace-supers "^6.24.1"
+ babel-messages "^6.23.0"
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+ babel-traverse "^6.24.1"
+ babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-computed-properties@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz"
+ integrity sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+
+babel-plugin-transform-es2015-destructuring@^6.23.0:
+ version "6.23.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz"
+ integrity sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz"
+ integrity sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-for-of@^6.23.0:
+ version "6.23.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz"
+ integrity sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-function-name@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz"
+ integrity sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg==
+ dependencies:
+ babel-helper-function-name "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-literals@^6.22.0:
+ version "6.22.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz"
+ integrity sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz"
+ integrity sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA==
+ dependencies:
+ babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+
+babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
+ version "6.26.2"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz"
+ integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==
+ dependencies:
+ babel-plugin-transform-strict-mode "^6.24.1"
+ babel-runtime "^6.26.0"
+ babel-template "^6.26.0"
+ babel-types "^6.26.0"
+
+babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz"
+ integrity sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg==
+ dependencies:
+ babel-helper-hoist-variables "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+
+babel-plugin-transform-es2015-modules-umd@^6.23.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz"
+ integrity sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw==
+ dependencies:
+ babel-plugin-transform-es2015-modules-amd "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+
+babel-plugin-transform-es2015-object-super@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz"
+ integrity sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA==
+ dependencies:
+ babel-helper-replace-supers "^6.24.1"
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-parameters@^6.23.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz"
+ integrity sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ==
+ dependencies:
+ babel-helper-call-delegate "^6.24.1"
+ babel-helper-get-function-arity "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-template "^6.24.1"
+ babel-traverse "^6.24.1"
+ babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz"
+ integrity sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-spread@^6.22.0:
+ version "6.22.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz"
+ integrity sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-sticky-regex@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz"
+ integrity sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ==
+ dependencies:
+ babel-helper-regex "^6.24.1"
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-plugin-transform-es2015-template-literals@^6.22.0:
+ version "6.22.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz"
+ integrity sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
+ version "6.23.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz"
+ integrity sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw==
+ dependencies:
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-es2015-unicode-regex@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz"
+ integrity sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ==
+ dependencies:
+ babel-helper-regex "^6.24.1"
+ babel-runtime "^6.22.0"
+ regexpu-core "^2.0.0"
+
+babel-plugin-transform-exponentiation-operator@^6.22.0:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz"
+ integrity sha512-LzXDmbMkklvNhprr20//RStKVcT8Cu+SQtX18eMHLhjHf2yFzwtQ0S2f0jQ+89rokoNdmwoSqYzAhq86FxlLSQ==
+ dependencies:
+ babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
+ babel-plugin-syntax-exponentiation-operator "^6.8.0"
+ babel-runtime "^6.22.0"
+
+babel-plugin-transform-regenerator@^6.22.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz"
+ integrity sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg==
+ dependencies:
+ regenerator-transform "^0.10.0"
+
+babel-plugin-transform-strict-mode@^6.24.1:
+ version "6.24.1"
+ resolved "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz"
+ integrity sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==
+ dependencies:
+ babel-runtime "^6.22.0"
+ babel-types "^6.24.1"
+
+babel-polyfill@^6.26.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz"
+ integrity sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==
+ dependencies:
+ babel-runtime "^6.26.0"
+ core-js "^2.5.0"
+ regenerator-runtime "^0.10.5"
+
+babel-preset-env@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz"
+ integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==
+ dependencies:
+ babel-plugin-check-es2015-constants "^6.22.0"
+ babel-plugin-syntax-trailing-function-commas "^6.22.0"
+ babel-plugin-transform-async-to-generator "^6.22.0"
+ babel-plugin-transform-es2015-arrow-functions "^6.22.0"
+ babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
+ babel-plugin-transform-es2015-block-scoping "^6.23.0"
+ babel-plugin-transform-es2015-classes "^6.23.0"
+ babel-plugin-transform-es2015-computed-properties "^6.22.0"
+ babel-plugin-transform-es2015-destructuring "^6.23.0"
+ babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
+ babel-plugin-transform-es2015-for-of "^6.23.0"
+ babel-plugin-transform-es2015-function-name "^6.22.0"
+ babel-plugin-transform-es2015-literals "^6.22.0"
+ babel-plugin-transform-es2015-modules-amd "^6.22.0"
+ babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
+ babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
+ babel-plugin-transform-es2015-modules-umd "^6.23.0"
+ babel-plugin-transform-es2015-object-super "^6.22.0"
+ babel-plugin-transform-es2015-parameters "^6.23.0"
+ babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
+ babel-plugin-transform-es2015-spread "^6.22.0"
+ babel-plugin-transform-es2015-sticky-regex "^6.22.0"
+ babel-plugin-transform-es2015-template-literals "^6.22.0"
+ babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
+ babel-plugin-transform-es2015-unicode-regex "^6.22.0"
+ babel-plugin-transform-exponentiation-operator "^6.22.0"
+ babel-plugin-transform-regenerator "^6.22.0"
+ browserslist "^3.2.6"
+ invariant "^2.2.2"
+ semver "^5.3.0"
+
+babel-register@^6.26.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz"
+ integrity sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==
+ dependencies:
+ babel-core "^6.26.0"
+ babel-runtime "^6.26.0"
+ core-js "^2.5.0"
+ home-or-tmp "^2.0.0"
+ lodash "^4.17.4"
+ mkdirp "^0.5.1"
+ source-map-support "^0.4.15"
+
+babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"
+ integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==
+ dependencies:
+ core-js "^2.4.0"
+ regenerator-runtime "^0.11.0"
+
+babel-template@^6.24.1, babel-template@^6.26.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz"
+ integrity sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==
+ dependencies:
+ babel-runtime "^6.26.0"
+ babel-traverse "^6.26.0"
+ babel-types "^6.26.0"
+ babylon "^6.18.0"
+ lodash "^4.17.4"
+
+babel-traverse@^6.24.1, babel-traverse@^6.26.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz"
+ integrity sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==
+ dependencies:
+ babel-code-frame "^6.26.0"
+ babel-messages "^6.23.0"
+ babel-runtime "^6.26.0"
+ babel-types "^6.26.0"
+ babylon "^6.18.0"
+ debug "^2.6.8"
+ globals "^9.18.0"
+ invariant "^2.2.2"
+ lodash "^4.17.4"
+
+babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
+ version "6.26.0"
+ resolved "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz"
+ integrity sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==
+ dependencies:
+ babel-runtime "^6.26.0"
+ esutils "^2.0.2"
+ lodash "^4.17.4"
+ to-fast-properties "^1.0.3"
+
+babylon@^6.18.0:
+ version "6.18.0"
+ resolved "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"
+ integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
+
balanced-match@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
+ resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
-base64-js@^1.3.1:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
- integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
-
base@^0.11.1:
version "0.11.2"
- resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
+ resolved "https://registry.npmjs.org/base/-/base-0.11.2.tgz"
integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
dependencies:
cache-base "^1.0.1"
@@ -2015,41 +2724,70 @@ base@^0.11.1:
mixin-deep "^1.2.0"
pascalcase "^0.1.1"
+base64-js@^1.3.1:
+ version "1.5.1"
+ resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
+ integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
+
batch@0.6.1:
version "0.6.1"
- resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
+ resolved "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz"
integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==
+bcrypt-pbkdf@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"
+ integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==
+ dependencies:
+ tweetnacl "^0.14.3"
+
big.js@^5.2.2:
version "5.2.2"
- resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
+ resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"
integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
binary-extensions@^1.0.0:
version "1.13.1"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
+ resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz"
integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
-bindings@^1.5.0:
+bindings@^1.2.1:
version "1.5.0"
- resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
+ resolved "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz"
integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
dependencies:
file-uri-to-path "1.0.0"
-bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
+block-stream@*:
+ version "0.0.9"
+ resolved "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz"
+ integrity sha512-OorbnJVPII4DuUKbjARAe8u8EfqOmkEEaSFIyoQ7OjTHn6kafxWl0wLgoZ2rXaYd7MyLcDaU4TmhfxtwgcccMQ==
+ dependencies:
+ inherits "~2.0.0"
+
+bn.js@^4.0.0:
version "4.12.2"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.2.tgz#3d8fed6796c24e177737f7cc5172ee04ef39ec99"
+ resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz"
+ integrity sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==
+
+bn.js@^4.1.0:
+ version "4.12.2"
+ resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz"
+ integrity sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==
+
+bn.js@^4.11.9:
+ version "4.12.2"
+ resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz"
integrity sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==
bn.js@^5.2.1:
version "5.2.2"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.2.tgz#82c09f9ebbb17107cd72cb7fd39bd1f9d0aaa566"
+ resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.2.tgz"
integrity sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==
body-parser@1.20.3:
version "1.20.3"
- resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.3.tgz#1953431221c6fb5cd63c4b36d53fab0928e548c6"
+ resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz"
integrity sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==
dependencies:
bytes "3.1.2"
@@ -2065,9 +2803,19 @@ body-parser@1.20.3:
type-is "~1.6.18"
unpipe "1.0.0"
+body@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.npmjs.org/body/-/body-5.1.0.tgz"
+ integrity sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==
+ dependencies:
+ continuable-cache "^0.3.1"
+ error "^7.0.0"
+ raw-body "~1.1.0"
+ safe-json-parse "~1.0.1"
+
bonjour@^3.5.0:
version "3.5.0"
- resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
+ resolved "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz"
integrity sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==
dependencies:
array-flatten "^2.1.0"
@@ -2079,12 +2827,12 @@ bonjour@^3.5.0:
boolbase@^1.0.0, boolbase@~1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
+ resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"
integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
brace-expansion@^1.1.7:
version "1.1.12"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz#ab9b454466e5a8cc3a187beaad580412a9c5b843"
+ resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz"
integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==
dependencies:
balanced-match "^1.0.0"
@@ -2092,14 +2840,14 @@ brace-expansion@^1.1.7:
brace-expansion@^2.0.1:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7"
+ resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz"
integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==
dependencies:
balanced-match "^1.0.0"
braces@^2.3.1, braces@^2.3.2:
version "2.3.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
+ resolved "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"
integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
dependencies:
arr-flatten "^1.1.0"
@@ -2115,19 +2863,19 @@ braces@^2.3.1, braces@^2.3.2:
braces@^3.0.3:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
+ resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz"
integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
dependencies:
fill-range "^7.1.1"
brorand@^1.0.1, brorand@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
+ resolved "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz"
integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==
browserify-aes@^1.0.4, browserify-aes@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
+ resolved "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz"
integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
dependencies:
buffer-xor "^1.0.3"
@@ -2139,7 +2887,7 @@ browserify-aes@^1.0.4, browserify-aes@^1.2.0:
browserify-cipher@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
+ resolved "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz"
integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
dependencies:
browserify-aes "^1.0.4"
@@ -2148,7 +2896,7 @@ browserify-cipher@^1.0.1:
browserify-des@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
+ resolved "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz"
integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
dependencies:
cipher-base "^1.0.1"
@@ -2158,7 +2906,7 @@ browserify-des@^1.0.0:
browserify-rsa@^4.0.0, browserify-rsa@^4.1.0:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.1.tgz#06e530907fe2949dc21fc3c2e2302e10b1437238"
+ resolved "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz"
integrity sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==
dependencies:
bn.js "^5.2.1"
@@ -2167,7 +2915,7 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.1.0:
browserify-sign@^4.2.3:
version "4.2.3"
- resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.3.tgz#7afe4c01ec7ee59a89a558a4b75bd85ae62d4208"
+ resolved "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.3.tgz"
integrity sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==
dependencies:
bn.js "^5.2.1"
@@ -2183,14 +2931,22 @@ browserify-sign@^4.2.3:
browserify-zlib@^0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
+ resolved "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz"
integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
dependencies:
pako "~1.0.5"
+browserslist@^3.2.6:
+ version "3.2.8"
+ resolved "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz"
+ integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==
+ dependencies:
+ caniuse-lite "^1.0.30000844"
+ electron-to-chromium "^1.3.47"
+
browserslist@^4.0.0, browserslist@^4.21.4, browserslist@^4.24.0, browserslist@^4.24.4, browserslist@^4.25.1:
version "4.25.1"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.1.tgz#ba9e8e6f298a1d86f829c9b975e07948967bb111"
+ resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz"
integrity sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==
dependencies:
caniuse-lite "^1.0.30001726"
@@ -2200,40 +2956,57 @@ browserslist@^4.0.0, browserslist@^4.21.4, browserslist@^4.24.0, browserslist@^4
buffer-from@^1.0.0:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
+ resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
buffer-indexof@^1.0.0:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c"
+ resolved "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz"
integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==
buffer-xor@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
+ resolved "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz"
integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==
buffer@^6.0.3:
version "6.0.3"
- resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6"
+ resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz"
integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==
dependencies:
base64-js "^1.3.1"
ieee754 "^1.2.1"
+bufferstreams@^1.1.0:
+ version "1.1.3"
+ resolved "https://registry.npmjs.org/bufferstreams/-/bufferstreams-1.1.3.tgz"
+ integrity sha512-HaJnVuslRF4g2kSDeyl++AaVizoitCpL9PglzCYwy0uHHyvWerfvEb8jWmYbF1z4kiVFolGomnxSGl+GUQp2jg==
+ dependencies:
+ readable-stream "^2.0.2"
+
+builtin-modules@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz"
+ integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
+
builtin-status-codes@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
+ resolved "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"
integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==
+bytes@1:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz"
+ integrity sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==
+
bytes@3.1.2:
version "3.1.2"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
+ resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz"
integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
cache-base@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
+ resolved "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"
integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
dependencies:
collection-visit "^1.0.0"
@@ -2248,7 +3021,7 @@ cache-base@^1.0.1:
call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6"
+ resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz"
integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==
dependencies:
es-errors "^1.3.0"
@@ -2256,7 +3029,7 @@ call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-
call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.7, call-bind@^1.0.8:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c"
+ resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz"
integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==
dependencies:
call-bind-apply-helpers "^1.0.0"
@@ -2266,7 +3039,7 @@ call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.7, call-bind@^1.0.8:
call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a"
+ resolved "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz"
integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==
dependencies:
call-bind-apply-helpers "^1.0.2"
@@ -2274,12 +3047,12 @@ call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4:
callsites@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+ resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
camel-case@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
+ resolved "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz"
integrity sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==
dependencies:
no-case "^2.2.0"
@@ -2287,7 +3060,7 @@ camel-case@^3.0.0:
camel-case@^4.1.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
+ resolved "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz"
integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
dependencies:
pascal-case "^3.1.2"
@@ -2295,17 +3068,17 @@ camel-case@^4.1.2:
camelcase@^5.0.0:
version "5.3.1"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
+ resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
camelcase@^6.2.0:
version "6.3.0"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
+ resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-api@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
+ resolved "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz"
integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
dependencies:
browserslist "^4.0.0"
@@ -2313,23 +3086,30 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001702, caniuse-lite@^1.0.30001726:
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30001702, caniuse-lite@^1.0.30001726:
version "1.0.30001727"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz#22e9706422ad37aa50556af8c10e40e2d93a8b85"
+ resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001727.tgz"
integrity sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==
-canvas@^2.11.0:
- version "2.11.2"
- resolved "https://registry.yarnpkg.com/canvas/-/canvas-2.11.2.tgz#553d87b1e0228c7ac0fc72887c3adbac4abbd860"
- integrity sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==
+caseless@~0.12.0:
+ version "0.12.0"
+ resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"
+ integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==
+
+chalk@^1.0.0, chalk@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"
+ integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==
dependencies:
- "@mapbox/node-pre-gyp" "^1.0.0"
- nan "^2.17.0"
- simple-get "^3.0.3"
+ ansi-styles "^2.2.1"
+ escape-string-regexp "^1.0.2"
+ has-ansi "^2.0.0"
+ strip-ansi "^3.0.0"
+ supports-color "^2.0.0"
chalk@^2.4.1:
version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
dependencies:
ansi-styles "^3.2.1"
@@ -2338,15 +3118,31 @@ chalk@^2.4.1:
chalk@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz"
integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
dependencies:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
-chalk@^4.0.2, chalk@^4.1.0:
+chalk@^4.0.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
+ integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+chalk@^4.1.0:
+ version "4.1.2"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
+ integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+chalk@~4.1.0:
+ version "4.1.2"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
dependencies:
ansi-styles "^4.1.0"
@@ -2354,7 +3150,7 @@ chalk@^4.0.2, chalk@^4.1.0:
chokidar@^2.1.8:
version "2.1.8"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
+ resolved "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
dependencies:
anymatch "^2.0.0"
@@ -2373,24 +3169,19 @@ chokidar@^2.1.8:
chokidar@^4.0.0:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30"
+ resolved "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz"
integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==
dependencies:
readdirp "^4.0.1"
-chownr@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
- integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
-
chrome-trace-event@^1.0.2:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz#05bffd7ff928465093314708c93bdfa9bd1f0f5b"
+ resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz"
integrity sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==
cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.6.tgz#8fe672437d01cd6c4561af5334e0cc50ff1955f7"
+ resolved "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.6.tgz"
integrity sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==
dependencies:
inherits "^2.0.4"
@@ -2398,7 +3189,7 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
class-utils@^0.3.5:
version "0.3.6"
- resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
+ resolved "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"
integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
dependencies:
arr-union "^3.1.0"
@@ -2408,39 +3199,62 @@ class-utils@^0.3.5:
clean-css@^4.2.1:
version "4.2.4"
- resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178"
+ resolved "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz"
integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==
dependencies:
source-map "~0.6.0"
clean-css@^5.2.2:
version "5.3.3"
- resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd"
+ resolved "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz"
integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==
dependencies:
source-map "~0.6.0"
cliui@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
+ resolved "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"
integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
dependencies:
string-width "^3.1.0"
strip-ansi "^5.2.0"
wrap-ansi "^5.1.0"
+cliui@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz"
+ integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.1"
+ wrap-ansi "^7.0.0"
+
+clone-deep@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz"
+ integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
+ dependencies:
+ is-plain-object "^2.0.4"
+ kind-of "^6.0.2"
+ shallow-clone "^3.0.0"
+
coa@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
+ resolved "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz"
integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
dependencies:
"@types/q" "^1.5.1"
chalk "^2.4.1"
q "^1.1.2"
+code-point-at@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"
+ integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==
+
collection-visit@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
+ resolved "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"
integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==
dependencies:
map-visit "^1.0.0"
@@ -2448,85 +3262,85 @@ collection-visit@^1.0.0:
color-convert@^1.9.0:
version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+ resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
dependencies:
color-name "1.1.3"
color-convert@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+ resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
dependencies:
color-name "~1.1.4"
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
-
color-name@~1.1.4:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+ resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-color-support@^1.1.2:
+color-name@1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
- integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
+ resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
+ integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
colord@^2.9.1:
version "2.9.3"
- resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
+ resolved "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz"
integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
-combined-stream@^1.0.8:
+colors@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"
+ integrity sha512-ENwblkFQpqqia6b++zLD/KUWafYlVY/UNnAp7oz7LY7E924wmpye416wBOmvv/HMWzl8gL1kJlfvId/1Dg176w==
+
+combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+ resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
dependencies:
delayed-stream "~1.0.0"
-commander@^2.19.0, commander@^2.20.0:
+commander@^2.19.0, commander@^2.20.0, commander@^2.9.0:
version "2.20.3"
- resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
+ resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
commander@^7.2.0:
version "7.2.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
+ resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
commander@^8.3.0:
version "8.3.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
+ resolved "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"
integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
commondir@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
+ resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
-compass-mixins@^0.12.12:
+compass-mixins@^0.12.10, compass-mixins@^0.12.12:
version "0.12.12"
- resolved "https://registry.yarnpkg.com/compass-mixins/-/compass-mixins-0.12.12.tgz#95e8219267e02c3f27b540bff764d2ad68258bd0"
+ resolved "https://registry.npmjs.org/compass-mixins/-/compass-mixins-0.12.12.tgz"
integrity sha512-wlTxz4lsIv/3o+rdyBOTZpQFFJeWPCRlYClaEXcaFe6QrAJ5qibTAgH53LyjfGQL6mmebTfjVHM0hLsxjGj+fw==
component-emitter@^1.2.1:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.1.tgz#ef1d5796f7d93f135ee6fb684340b26403c97d17"
+ resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz"
integrity sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==
compressible@~2.0.18:
version "2.0.18"
- resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
+ resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz"
integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
dependencies:
mime-db ">= 1.43.0 < 2"
compression@^1.7.4:
version "1.8.0"
- resolved "https://registry.yarnpkg.com/compression/-/compression-1.8.0.tgz#09420efc96e11a0f44f3a558de59e321364180f7"
+ resolved "https://registry.npmjs.org/compression/-/compression-1.8.0.tgz"
integrity sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==
dependencies:
bytes "3.1.2"
@@ -2539,64 +3353,81 @@ compression@^1.7.4:
concat-map@0.0.1:
version "0.0.1"
- resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+ resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
+concat-with-sourcemaps@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz"
+ integrity sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==
+ dependencies:
+ source-map "^0.6.1"
+
connect-history-api-fallback@^1.6.0:
version "1.6.0"
- resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
+ resolved "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz"
integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
console-browserify@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
+ resolved "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz"
integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
-console-control-strings@^1.0.0, console-control-strings@^1.1.0:
+console-control-strings@^1.0.0, console-control-strings@~1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
+ resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"
integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==
constants-browserify@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
+ resolved "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz"
integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==
content-disposition@0.5.4:
version "0.5.4"
- resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
+ resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz"
integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
dependencies:
safe-buffer "5.2.1"
content-type@~1.0.4, content-type@~1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
+ resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz"
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
+continuable-cache@^0.3.1:
+ version "0.3.1"
+ resolved "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz"
+ integrity sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==
+
+convert-source-map@^1.5.1:
+ version "1.9.0"
+ resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"
+ integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
+
convert-source-map@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+ resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
cookie-signature@1.0.6:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
+ resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"
integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
cookie@0.7.1:
version "0.7.1"
- resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.1.tgz#2f73c42142d5d5cf71310a74fc4ae61670e5dbc9"
+ resolved "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz"
integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==
copy-descriptor@^0.1.0:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
+ resolved "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"
integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
copy-webpack-plugin@^13.0.0:
version "13.0.0"
- resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-13.0.0.tgz#793342576eed76fdbc7936b873eae17aa7a7d9a3"
+ resolved "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-13.0.0.tgz"
integrity sha512-FgR/h5a6hzJqATDGd9YG41SeDViH+0bkHn6WNXCi5zKAZkeESeSxLySSsFLHqLEVCh0E+rITmCf0dusXWYukeQ==
dependencies:
glob-parent "^6.0.1"
@@ -2605,26 +3436,53 @@ copy-webpack-plugin@^13.0.0:
serialize-javascript "^6.0.2"
tinyglobby "^0.2.12"
+copy-webpack-plugin@^9.0.0:
+ version "9.1.0"
+ resolved "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.1.0.tgz"
+ integrity sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==
+ dependencies:
+ fast-glob "^3.2.7"
+ glob-parent "^6.0.1"
+ globby "^11.0.3"
+ normalize-path "^3.0.0"
+ schema-utils "^3.1.1"
+ serialize-javascript "^6.0.0"
+
core-js-compat@^3.43.0:
version "3.44.0"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.44.0.tgz#62b9165b97e4cbdb8bca16b14818e67428b4a0f8"
+ resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.44.0.tgz"
integrity sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==
dependencies:
browserslist "^4.25.1"
-core-js@^3.41.0:
+core-js@^2.4.0:
+ version "2.6.12"
+ resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz"
+ integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
+
+core-js@^2.5.0:
+ version "2.6.12"
+ resolved "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz"
+ integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
+
+core-js@^3.14.0, core-js@^3.41.0:
version "3.44.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.44.0.tgz#db4fd4fa07933c1d6898c8b112a1119a9336e959"
+ resolved "https://registry.npmjs.org/core-js/-/core-js-3.44.0.tgz"
integrity sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw==
core-util-is@~1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
+ resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
+core-util-is@1.0.2:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
+ integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==
+
cosmiconfig@^7.0.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
+ resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz"
integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
dependencies:
"@types/parse-json" "^4.0.0"
@@ -2635,7 +3493,7 @@ cosmiconfig@^7.0.0:
cosmiconfig@^9.0.0:
version "9.0.0"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d"
+ resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz"
integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==
dependencies:
env-paths "^2.2.1"
@@ -2645,7 +3503,7 @@ cosmiconfig@^9.0.0:
create-ecdh@^4.0.4:
version "4.0.4"
- resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
+ resolved "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz"
integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
dependencies:
bn.js "^4.1.0"
@@ -2653,7 +3511,7 @@ create-ecdh@^4.0.4:
create-hash@^1.1.0, create-hash@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
+ resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz"
integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
dependencies:
cipher-base "^1.0.1"
@@ -2664,7 +3522,7 @@ create-hash@^1.1.0, create-hash@^1.2.0:
create-hash@~1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd"
+ resolved "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz"
integrity sha512-snRpch/kwQhcdlnZKYanNF1m0RDlrCdSKQaH87w1FCFPVPNCQ/Il9QJKAX2jVBZddRdaHBMC+zXa9Gw9tmkNUA==
dependencies:
cipher-base "^1.0.1"
@@ -2674,7 +3532,7 @@ create-hash@~1.1.3:
create-hmac@^1.1.7:
version "1.1.7"
- resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
+ resolved "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz"
integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
dependencies:
cipher-base "^1.0.3"
@@ -2686,14 +3544,14 @@ create-hmac@^1.1.7:
cross-fetch@^3.1.5:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.2.0.tgz#34e9192f53bc757d6614304d9e5e6fb4edb782e3"
+ resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz"
integrity sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==
dependencies:
node-fetch "^2.7.0"
cross-spawn@^6.0.0:
version "6.0.6"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.6.tgz#30d0efa0712ddb7eb5a76e1e8721bffafa6b5d57"
+ resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz"
integrity sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==
dependencies:
nice-try "^1.0.4"
@@ -2702,9 +3560,18 @@ cross-spawn@^6.0.0:
shebang-command "^1.2.0"
which "^1.2.9"
+cross-spawn@^7.0.3:
+ version "7.0.6"
+ resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz"
+ integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
+ dependencies:
+ path-key "^3.1.0"
+ shebang-command "^2.0.0"
+ which "^2.0.1"
+
crypto-browserify@^3.12.0:
version "3.12.1"
- resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.1.tgz#bb8921bec9acc81633379aa8f52d69b0b69e0dac"
+ resolved "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz"
integrity sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==
dependencies:
browserify-cipher "^1.0.1"
@@ -2722,12 +3589,12 @@ crypto-browserify@^3.12.0:
css-declaration-sorter@^6.3.1:
version "6.4.1"
- resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71"
+ resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz"
integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==
css-loader@^5.2.6:
version "5.2.7"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.7.tgz#9b9f111edf6fb2be5dc62525644cbc9c232064ae"
+ resolved "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz"
integrity sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==
dependencies:
icss-utils "^5.1.0"
@@ -2743,7 +3610,7 @@ css-loader@^5.2.6:
css-loader@^7.1.2:
version "7.1.2"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-7.1.2.tgz#64671541c6efe06b0e22e750503106bdd86880f8"
+ resolved "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz"
integrity sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==
dependencies:
icss-utils "^5.1.0"
@@ -2757,7 +3624,7 @@ css-loader@^7.1.2:
css-minimizer-webpack-plugin@^3.0.1:
version "3.4.1"
- resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f"
+ resolved "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz"
integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==
dependencies:
cssnano "^5.0.6"
@@ -2769,12 +3636,12 @@ css-minimizer-webpack-plugin@^3.0.1:
css-select-base-adapter@^0.1.1:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
+ resolved "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz"
integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
css-select@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
+ resolved "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz"
integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
dependencies:
boolbase "^1.0.0"
@@ -2784,7 +3651,7 @@ css-select@^2.0.0:
css-select@^4.1.3:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b"
+ resolved "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz"
integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==
dependencies:
boolbase "^1.0.0"
@@ -2793,40 +3660,48 @@ css-select@^4.1.3:
domutils "^2.8.0"
nth-check "^2.0.1"
-css-tree@1.0.0-alpha.37:
- version "1.0.0-alpha.37"
- resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
- integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
- dependencies:
- mdn-data "2.0.4"
- source-map "^0.6.1"
-
-css-tree@^1.1.2, css-tree@^1.1.3:
+css-tree@^1.1.2:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"
+ resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz"
integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
dependencies:
mdn-data "2.0.14"
source-map "^0.6.1"
+css-tree@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz"
+ integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==
+ dependencies:
+ mdn-data "2.0.14"
+ source-map "^0.6.1"
+
+css-tree@1.0.0-alpha.37:
+ version "1.0.0-alpha.37"
+ resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz"
+ integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
+ dependencies:
+ mdn-data "2.0.4"
+ source-map "^0.6.1"
+
css-what@^3.2.1:
version "3.4.2"
- resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4"
+ resolved "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz"
integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
css-what@^6.0.1:
version "6.2.2"
- resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.2.2.tgz#cdcc8f9b6977719fdfbd1de7aec24abf756b9dea"
+ resolved "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz"
integrity sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==
cssesc@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
+ resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
cssnano-preset-default@^5.2.14:
version "5.2.14"
- resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8"
+ resolved "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz"
integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==
dependencies:
css-declaration-sorter "^6.3.1"
@@ -2861,12 +3736,12 @@ cssnano-preset-default@^5.2.14:
cssnano-utils@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861"
+ resolved "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz"
integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==
-cssnano@^5.0.6:
+cssnano@^5.0.1, cssnano@^5.0.6:
version "5.1.15"
- resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf"
+ resolved "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz"
integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==
dependencies:
cssnano-preset-default "^5.2.14"
@@ -2875,19 +3750,31 @@ cssnano@^5.0.6:
csso@^4.0.2, csso@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
+ resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz"
integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
dependencies:
css-tree "^1.1.2"
csstype@^3.0.2:
version "3.1.3"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
+ resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz"
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
+cubic2quad@^1.0.0:
+ version "1.2.1"
+ resolved "https://registry.npmjs.org/cubic2quad/-/cubic2quad-1.2.1.tgz"
+ integrity sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==
+
+dashdash@^1.12.0:
+ version "1.14.1"
+ resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"
+ integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==
+ dependencies:
+ assert-plus "^1.0.0"
+
data-view-buffer@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz#211a03ba95ecaf7798a8c7198d79536211f88570"
+ resolved "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz"
integrity sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==
dependencies:
call-bound "^1.0.3"
@@ -2896,7 +3783,7 @@ data-view-buffer@^1.0.2:
data-view-byte-length@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz#9e80f7ca52453ce3e93d25a35318767ea7704735"
+ resolved "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz"
integrity sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==
dependencies:
call-bound "^1.0.3"
@@ -2905,59 +3792,99 @@ data-view-byte-length@^1.0.2:
data-view-byte-offset@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz#068307f9b71ab76dbbe10291389e020856606191"
+ resolved "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz"
integrity sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==
dependencies:
call-bound "^1.0.2"
es-errors "^1.3.0"
is-data-view "^1.0.1"
+date-time@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/date-time/-/date-time-1.1.0.tgz"
+ integrity sha512-RrxZQ06cdKe7YQ5oqIxs3GMc7W3vXscy7Ds+aZIqmxA59QnVtTiCseA4jbzVUub9xCbo9GuYVZo0OrZLYXnnmw==
+ dependencies:
+ time-zone "^0.1.0"
+
+dateformat@~4.6.2:
+ version "4.6.3"
+ resolved "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz"
+ integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==
+
debounce@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
+ resolved "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz"
integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
-debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
+debug@^2.2.0:
version "2.6.9"
- resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+ resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
dependencies:
ms "2.0.0"
-debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.6, debug@^4.4.1:
- version "4.4.1"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.1.tgz#e5a8bc6cbc4c6cd3e64308b0693a3d4fa550189b"
- integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==
+debug@^2.3.3:
+ version "2.6.9"
+ resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
dependencies:
- ms "^2.1.3"
+ ms "2.0.0"
-debug@^3.2.7:
+debug@^2.6.8:
+ version "2.6.9"
+ resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ dependencies:
+ ms "2.0.0"
+
+debug@^2.6.9:
+ version "2.6.9"
+ resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ dependencies:
+ ms "2.0.0"
+
+debug@^3.1.0:
version "3.2.7"
- resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
+ resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
dependencies:
ms "^2.1.1"
+debug@^3.2.7:
+ version "3.2.7"
+ resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
+ integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
+ dependencies:
+ ms "^2.1.1"
+
+debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.6, debug@^4.4.1:
+ version "4.4.1"
+ resolved "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz"
+ integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==
+ dependencies:
+ ms "^2.1.3"
+
+debug@2.6.9:
+ version "2.6.9"
+ resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ dependencies:
+ ms "2.0.0"
+
decamelize@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
+ resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
decode-uri-component@^0.2.0:
version "0.2.2"
- resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
+ resolved "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz"
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
-decompress-response@^4.2.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986"
- integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==
- dependencies:
- mimic-response "^2.0.0"
-
deep-equal@^1.0.1:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.2.tgz#78a561b7830eef3134c7f6f3a3d6af272a678761"
+ resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz"
integrity sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==
dependencies:
is-arguments "^1.1.1"
@@ -2969,12 +3896,12 @@ deep-equal@^1.0.1:
deepmerge@^4.2.2:
version "4.3.1"
- resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
+ resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz"
integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
default-gateway@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b"
+ resolved "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz"
integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==
dependencies:
execa "^1.0.0"
@@ -2982,16 +3909,21 @@ default-gateway@^4.2.0:
define-data-property@^1.0.1, define-data-property@^1.1.4:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e"
+ resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz"
integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==
dependencies:
es-define-property "^1.0.0"
es-errors "^1.3.0"
gopd "^1.0.1"
+define-lazy-prop@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz"
+ integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
+
define-properties@^1.1.3, define-properties@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c"
+ resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz"
integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
dependencies:
define-data-property "^1.0.1"
@@ -3000,21 +3932,21 @@ define-properties@^1.1.3, define-properties@^1.2.1:
define-property@^0.2.5:
version "0.2.5"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
+ resolved "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"
integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==
dependencies:
is-descriptor "^0.1.0"
define-property@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
+ resolved "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"
integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==
dependencies:
is-descriptor "^1.0.0"
define-property@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
+ resolved "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"
integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
dependencies:
is-descriptor "^1.0.2"
@@ -3022,7 +3954,7 @@ define-property@^2.0.2:
del@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4"
+ resolved "https://registry.npmjs.org/del/-/del-4.1.1.tgz"
integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
dependencies:
"@types/glob" "^7.1.1"
@@ -3035,27 +3967,27 @@ del@^4.1.1:
delayed-stream@~1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+ resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
delegates@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
+ resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"
integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==
-depd@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
- integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
-
depd@~1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
+ resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"
integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
+depd@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"
+ integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
+
des.js@^1.0.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.1.0.tgz#1d37f5766f3bbff4ee9638e871a8768c173b81da"
+ resolved "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz"
integrity sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==
dependencies:
inherits "^2.0.1"
@@ -3063,41 +3995,55 @@ des.js@^1.0.0:
destroy@1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
+ resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz"
integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
+detect-file@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz"
+ integrity sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==
+
+detect-indent@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"
+ integrity sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==
+ dependencies:
+ repeating "^2.0.0"
+
detect-libc@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
+ resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"
integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==
-detect-libc@^2.0.0:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.4.tgz#f04715b8ba815e53b4d8109655b6508a6865a7e8"
- integrity sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==
-
detect-node@^2.0.4:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1"
+ resolved "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz"
integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==
diffie-hellman@^5.0.3:
version "5.0.3"
- resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
+ resolved "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"
integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
dependencies:
bn.js "^4.1.0"
miller-rabin "^4.0.0"
randombytes "^2.0.0"
+dir-glob@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
+ integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
+ dependencies:
+ path-type "^4.0.0"
+
dns-equal@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
+ resolved "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz"
integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
dns-packet@^1.3.1:
version "1.3.4"
- resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f"
+ resolved "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz"
integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==
dependencies:
ip "^1.1.0"
@@ -3105,60 +4051,65 @@ dns-packet@^1.3.1:
dns-txt@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6"
+ resolved "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz"
integrity sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==
dependencies:
buffer-indexof "^1.0.0"
dom-converter@^0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
+ resolved "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz"
integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==
dependencies:
utila "~0.4"
-dom-serializer@0:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
- integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
- dependencies:
- domelementtype "^2.0.1"
- entities "^2.0.0"
-
dom-serializer@^1.0.1:
version "1.4.1"
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30"
+ resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz"
integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==
dependencies:
domelementtype "^2.0.1"
domhandler "^4.2.0"
entities "^2.0.0"
+dom-serializer@0:
+ version "0.2.2"
+ resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz"
+ integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
+ dependencies:
+ domelementtype "^2.0.1"
+ entities "^2.0.0"
+
+dom-walk@^0.1.0:
+ version "0.1.2"
+ resolved "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz"
+ integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==
+
domain-browser@^4.19.0:
version "4.23.0"
- resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-4.23.0.tgz#427ebb91efcb070f05cffdfb8a4e9a6c25f8c94b"
+ resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz"
integrity sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA==
-domelementtype@1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
- integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
-
domelementtype@^2.0.1, domelementtype@^2.2.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
+ resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz"
integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
+domelementtype@1:
+ version "1.3.1"
+ resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz"
+ integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
+
domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1:
version "4.3.1"
- resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c"
+ resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz"
integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==
dependencies:
domelementtype "^2.2.0"
domutils@^1.7.0:
version "1.7.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
+ resolved "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz"
integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
dependencies:
dom-serializer "0"
@@ -3166,7 +4117,7 @@ domutils@^1.7.0:
domutils@^2.5.2, domutils@^2.8.0:
version "2.8.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
+ resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz"
integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==
dependencies:
dom-serializer "^1.0.1"
@@ -3175,20 +4126,25 @@ domutils@^2.5.2, domutils@^2.8.0:
dot-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
+ resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz"
integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
dependencies:
no-case "^3.0.4"
tslib "^2.0.3"
+dotenv@^10.0.0:
+ version "10.0.0"
+ resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz"
+ integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==
+
dotenv@^16.4.7:
version "16.6.1"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.6.1.tgz#773f0e69527a8315c7285d5ee73c4459d20a8020"
+ resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz"
integrity sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==
dunder-proto@^1.0.0, dunder-proto@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a"
+ resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz"
integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==
dependencies:
call-bind-apply-helpers "^1.0.1"
@@ -3197,17 +4153,25 @@ dunder-proto@^1.0.0, dunder-proto@^1.0.1:
duplexer@^0.1.2:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
+ resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz"
integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
+ecc-jsbn@~0.1.1:
+ version "0.1.2"
+ resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"
+ integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==
+ dependencies:
+ jsbn "~0.1.0"
+ safer-buffer "^2.1.0"
+
ee-first@1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
+ resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
ejs-compiled-loader@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/ejs-compiled-loader/-/ejs-compiled-loader-3.1.0.tgz#f7a876af3918d3aeb4c36ca81d79dc1ed695a69a"
+ resolved "https://registry.npmjs.org/ejs-compiled-loader/-/ejs-compiled-loader-3.1.0.tgz"
integrity sha512-w6ivym6IobuJJcDu75SDPdWQwrPAGQR6ihNTgWWLW4+cmMOwUT1fTPJrQpiAvHofOb4LPnpGWZFQ8gmIZsT2HQ==
dependencies:
ejs "^2"
@@ -3218,7 +4182,7 @@ ejs-compiled-loader@^3.1.0:
ejs-loader@^0.5.0:
version "0.5.0"
- resolved "https://registry.yarnpkg.com/ejs-loader/-/ejs-loader-0.5.0.tgz#ebed0afaedd0a58c07fcc810cf001df3c24d6399"
+ resolved "https://registry.npmjs.org/ejs-loader/-/ejs-loader-0.5.0.tgz"
integrity sha512-iirFqlP3tiFoedNZ7dQcjvechunl054VbW6Ki38T/pabgXMAncduSE0ZXLeVGn1NbmcUJF9Z5TC0EvQ4RIpP9Q==
dependencies:
loader-utils "^2.0.0"
@@ -3226,24 +4190,24 @@ ejs-loader@^0.5.0:
ejs@^2:
version "2.7.4"
- resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
+ resolved "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz"
integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
ejs@^3.1.10, ejs@^3.1.6:
version "3.1.10"
- resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b"
+ resolved "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz"
integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==
dependencies:
jake "^10.8.5"
-electron-to-chromium@^1.5.173:
+electron-to-chromium@^1.3.47, electron-to-chromium@^1.5.173:
version "1.5.180"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.180.tgz#3e4f6e7494d6371e014af176dfdfd43c8a4b56df"
+ resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.180.tgz"
integrity sha512-ED+GEyEh3kYMwt2faNmgMB0b8O5qtATGgR4RmRsIp4T6p7B8vdMbIedYndnvZfsaXvSzegtpfqRMDNCjjiSduA==
elliptic@^6.5.3, elliptic@^6.5.5:
version "6.6.1"
- resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.6.1.tgz#3b8ffb02670bf69e382c7f65bf524c97c5405c06"
+ resolved "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz"
integrity sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==
dependencies:
bn.js "^4.11.9"
@@ -3256,39 +4220,39 @@ elliptic@^6.5.3, elliptic@^6.5.5:
emoji-regex@^7.0.1:
version "7.0.3"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
+ resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"
integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
emoji-regex@^8.0.0:
version "8.0.0"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
emojis-list@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
+ resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz"
integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
encodeurl@~1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
+ resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"
integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
encodeurl@~2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58"
+ resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz"
integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==
end-of-stream@^1.1.0:
version "1.4.5"
- resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.5.tgz#7344d711dea40e0b74abc2ed49778743ccedb08c"
+ resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz"
integrity sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==
dependencies:
once "^1.4.0"
enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.1:
version "5.18.2"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.2.tgz#7903c5b32ffd4b2143eeb4b92472bd68effd5464"
+ resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.2.tgz"
integrity sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==
dependencies:
graceful-fs "^4.2.4"
@@ -3296,31 +4260,38 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.1:
entities@^2.0.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
+ resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"
integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
env-paths@^2.2.1:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
+ resolved "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz"
integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==
errno@^0.1.3:
version "0.1.8"
- resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
+ resolved "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz"
integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
dependencies:
prr "~1.0.1"
error-ex@^1.3.1:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
+ resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
dependencies:
is-arrayish "^0.2.1"
+error@^7.0.0:
+ version "7.2.1"
+ resolved "https://registry.npmjs.org/error/-/error-7.2.1.tgz"
+ integrity sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==
+ dependencies:
+ string-template "~0.2.1"
+
es-abstract@^1.17.2, es-abstract@^1.23.2, es-abstract@^1.23.5, es-abstract@^1.23.9:
version "1.24.0"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz#c44732d2beb0acc1ed60df840869e3106e7af328"
+ resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz"
integrity sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==
dependencies:
array-buffer-byte-length "^1.0.2"
@@ -3380,34 +4351,34 @@ es-abstract@^1.17.2, es-abstract@^1.23.2, es-abstract@^1.23.5, es-abstract@^1.23
es-array-method-boxes-properly@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
+ resolved "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz"
integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
es-define-property@^1.0.0, es-define-property@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa"
+ resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz"
integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==
es-errors@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f"
+ resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz"
integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
es-module-lexer@^1.2.1:
version "1.7.0"
- resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.7.0.tgz#9159601561880a85f2734560a9099b2c31e5372a"
+ resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz"
integrity sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==
es-object-atoms@^1.0.0, es-object-atoms@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1"
+ resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz"
integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==
dependencies:
es-errors "^1.3.0"
es-set-tostringtag@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d"
+ resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz"
integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==
dependencies:
es-errors "^1.3.0"
@@ -3417,36 +4388,36 @@ es-set-tostringtag@^2.1.0:
es-to-primitive@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18"
+ resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz"
integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==
dependencies:
is-callable "^1.2.7"
is-date-object "^1.0.5"
is-symbol "^1.0.4"
-escalade@^3.2.0:
+escalade@^3.1.1, escalade@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
+ resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz"
integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
escape-html@~1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
+ resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
-escape-string-regexp@^1.0.5:
+escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+ resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
escape-string-regexp@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
+ resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
eslint-scope@5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
+ resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
dependencies:
esrecurse "^4.3.0"
@@ -3454,54 +4425,74 @@ eslint-scope@5.1.1:
esprima@^4.0.0:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
+ resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
esrecurse@^4.3.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+ resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
dependencies:
estraverse "^5.2.0"
estraverse@^4.1.1:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
+ resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
estraverse@^5.2.0:
version "5.3.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
+ resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
+estree-walker@^0.6.1:
+ version "0.6.1"
+ resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz"
+ integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
+
+estree-walker@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz"
+ integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
+
+estree-walker@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz"
+ integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
+
esutils@^2.0.2:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+ resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
etag@~1.8.1:
version "1.8.1"
- resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
+ resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"
integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
-eventemitter3@^4.0.0:
+eventemitter2@~0.4.13:
+ version "0.4.14"
+ resolved "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"
+ integrity sha512-K7J4xq5xAD5jHsGM5ReWXRTFa3JRGofHiMcVgQ8PRwgWxzjHpMWCIzsmyf60+mh8KLsqYPcjUMa0AC4hd6lPyQ==
+
+eventemitter3@^4.0.0, eventemitter3@^4.0.4:
version "4.0.7"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
+ resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz"
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
events@^3.2.0, events@^3.3.0:
version "3.3.0"
- resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
+ resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz"
integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
eventsource@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-2.0.2.tgz#76dfcc02930fb2ff339520b6d290da573a9e8508"
+ resolved "https://registry.npmjs.org/eventsource/-/eventsource-2.0.2.tgz"
integrity sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==
evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
+ resolved "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"
integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
dependencies:
md5.js "^1.3.4"
@@ -3509,7 +4500,7 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
execa@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
+ resolved "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz"
integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
dependencies:
cross-spawn "^6.0.0"
@@ -3520,9 +4511,14 @@ execa@^1.0.0:
signal-exit "^3.0.0"
strip-eof "^1.0.0"
+exit@~0.1.2:
+ version "0.1.2"
+ resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"
+ integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==
+
expand-brackets@^2.1.4:
version "2.1.4"
- resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
+ resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"
integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==
dependencies:
debug "^2.3.3"
@@ -3533,9 +4529,16 @@ expand-brackets@^2.1.4:
snapdragon "^0.8.1"
to-regex "^3.0.1"
+expand-tilde@^2.0.0, expand-tilde@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz"
+ integrity sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==
+ dependencies:
+ homedir-polyfill "^1.0.1"
+
express@^4.17.1:
version "4.21.2"
- resolved "https://registry.yarnpkg.com/express/-/express-4.21.2.tgz#cf250e48362174ead6cea4a566abef0162c1ec32"
+ resolved "https://registry.npmjs.org/express/-/express-4.21.2.tgz"
integrity sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==
dependencies:
accepts "~1.3.8"
@@ -3572,22 +4575,35 @@ express@^4.17.1:
extend-shallow@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
+ resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==
dependencies:
is-extendable "^0.1.0"
-extend-shallow@^3.0.0, extend-shallow@^3.0.2:
+extend-shallow@^3.0.0:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
+ resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"
integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==
dependencies:
assign-symbols "^1.0.0"
is-extendable "^1.0.1"
+extend-shallow@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"
+ integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==
+ dependencies:
+ assign-symbols "^1.0.0"
+ is-extendable "^1.0.1"
+
+extend@^3.0.2, extend@~3.0.2:
+ version "3.0.2"
+ resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"
+ integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
+
extglob@^2.0.4:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
+ resolved "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"
integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
dependencies:
array-unique "^0.3.2"
@@ -3599,43 +4615,73 @@ extglob@^2.0.4:
snapdragon "^0.8.1"
to-regex "^3.0.1"
+extsprintf@^1.2.0, extsprintf@1.3.0:
+ version "1.3.0"
+ resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
+ integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==
+
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
version "3.1.3"
- resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+ resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
+fast-glob@^3.2.7, fast-glob@^3.2.9:
+ version "3.3.3"
+ resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz"
+ integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==
+ dependencies:
+ "@nodelib/fs.stat" "^2.0.2"
+ "@nodelib/fs.walk" "^1.2.3"
+ glob-parent "^5.1.2"
+ merge2 "^1.3.0"
+ micromatch "^4.0.8"
+
fast-json-stable-stringify@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+ resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
fast-uri@^3.0.1:
version "3.0.6"
- resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.6.tgz#88f130b77cfaea2378d56bf970dea21257a68748"
+ resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz"
integrity sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==
+fastq@^1.6.0:
+ version "1.19.1"
+ resolved "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz"
+ integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==
+ dependencies:
+ reusify "^1.0.4"
+
faye-websocket@^0.11.3, faye-websocket@^0.11.4:
version "0.11.4"
- resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da"
+ resolved "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz"
integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==
dependencies:
websocket-driver ">=0.5.1"
+faye-websocket@~0.10.0:
+ version "0.10.0"
+ resolved "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz"
+ integrity sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==
+ dependencies:
+ websocket-driver ">=0.5.1"
+
fbemitter@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/fbemitter/-/fbemitter-3.0.0.tgz#00b2a1af5411254aab416cd75f9e6289bee4bff3"
+ resolved "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz"
integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==
dependencies:
fbjs "^3.0.0"
fbjs-css-vars@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8"
+ resolved "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz"
integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==
fbjs@^3.0.0, fbjs@^3.0.1:
version "3.0.5"
- resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.5.tgz#aa0edb7d5caa6340011790bd9249dbef8a81128d"
+ resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz"
integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==
dependencies:
cross-fetch "^3.1.5"
@@ -3648,12 +4694,20 @@ fbjs@^3.0.0, fbjs@^3.0.1:
fdir@^6.4.4:
version "6.4.6"
- resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.4.6.tgz#2b268c0232697063111bbf3f64810a2a741ba281"
+ resolved "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz"
integrity sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==
+figures@^1.0.0:
+ version "1.7.0"
+ resolved "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz"
+ integrity sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==
+ dependencies:
+ escape-string-regexp "^1.0.5"
+ object-assign "^4.1.0"
+
file-loader@^6.2.0:
version "6.2.0"
- resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d"
+ resolved "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz"
integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==
dependencies:
loader-utils "^2.0.0"
@@ -3661,19 +4715,19 @@ file-loader@^6.2.0:
file-uri-to-path@1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
+ resolved "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
filelist@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5"
+ resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz"
integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==
dependencies:
minimatch "^5.0.1"
fill-range@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
+ resolved "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"
integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==
dependencies:
extend-shallow "^2.0.1"
@@ -3683,19 +4737,19 @@ fill-range@^4.0.0:
fill-range@^7.1.1:
version "7.1.1"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
+ resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz"
integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
dependencies:
to-regex-range "^5.0.1"
filter-obj@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-2.0.2.tgz#fff662368e505d69826abb113f0f6a98f56e9d5f"
+ resolved "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz"
integrity sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==
finalhandler@1.3.1:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.3.1.tgz#0c575f1d1d324ddd1da35ad7ece3df7d19088019"
+ resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz"
integrity sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==
dependencies:
debug "2.6.9"
@@ -3706,9 +4760,18 @@ finalhandler@1.3.1:
statuses "2.0.1"
unpipe "~1.0.0"
-find-cache-dir@^3.3.1:
+find-cache-dir@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz"
+ integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
+ dependencies:
+ commondir "^1.0.1"
+ make-dir "^2.0.0"
+ pkg-dir "^3.0.0"
+
+find-cache-dir@^3.3.1, find-cache-dir@^3.3.2:
version "3.3.2"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b"
+ resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"
integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==
dependencies:
commondir "^1.0.1"
@@ -3717,14 +4780,14 @@ find-cache-dir@^3.3.1:
find-up@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
+ resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"
integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
dependencies:
locate-path "^3.0.0"
find-up@^4.0.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+ resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
dependencies:
locate-path "^5.0.0"
@@ -3732,40 +4795,88 @@ find-up@^4.0.0:
find-up@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
+ resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"
integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
dependencies:
locate-path "^6.0.0"
path-exists "^4.0.0"
+findup-sync@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz"
+ integrity sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==
+ dependencies:
+ detect-file "^1.0.0"
+ is-glob "^4.0.0"
+ micromatch "^4.0.2"
+ resolve-dir "^1.0.1"
+
+findup-sync@~5.0.0:
+ version "5.0.0"
+ resolved "https://registry.npmjs.org/findup-sync/-/findup-sync-5.0.0.tgz"
+ integrity sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==
+ dependencies:
+ detect-file "^1.0.0"
+ is-glob "^4.0.3"
+ micromatch "^4.0.4"
+ resolve-dir "^1.0.1"
+
+fined@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz"
+ integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==
+ dependencies:
+ expand-tilde "^2.0.2"
+ is-plain-object "^2.0.3"
+ object.defaults "^1.1.0"
+ object.pick "^1.2.0"
+ parse-filepath "^1.0.1"
+
+flagged-respawn@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz"
+ integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==
+
flux@^4.0.4:
version "4.0.4"
- resolved "https://registry.yarnpkg.com/flux/-/flux-4.0.4.tgz#9661182ea81d161ee1a6a6af10d20485ef2ac572"
+ resolved "https://registry.npmjs.org/flux/-/flux-4.0.4.tgz"
integrity sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==
dependencies:
fbemitter "^3.0.0"
fbjs "^3.0.1"
-follow-redirects@^1.0.0, follow-redirects@^1.15.6:
+follow-redirects@^1.0.0, follow-redirects@^1.14.0, follow-redirects@^1.15.6:
version "1.15.9"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1"
+ resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz"
integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==
for-each@^0.3.3, for-each@^0.3.5:
version "0.3.5"
- resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz#d650688027826920feeb0af747ee7b9421a41d47"
+ resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz"
integrity sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==
dependencies:
is-callable "^1.2.7"
-for-in@^1.0.2:
+for-in@^1.0.1, for-in@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
+ resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==
+for-own@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz"
+ integrity sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==
+ dependencies:
+ for-in "^1.0.1"
+
+forever-agent@~0.6.1:
+ version "0.6.1"
+ resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"
+ integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==
+
form-data@^4.0.0:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.3.tgz#608b1b3f3e28be0fccf5901fc85fb3641e5cf0ae"
+ resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz"
integrity sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==
dependencies:
asynckit "^0.4.0"
@@ -3774,56 +4885,69 @@ form-data@^4.0.0:
hasown "^2.0.2"
mime-types "^2.1.12"
+form-data@~2.3.2:
+ version "2.3.3"
+ resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"
+ integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.6"
+ mime-types "^2.1.12"
+
forwarded@0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
+ resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz"
integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
fraction.js@^4.3.7:
version "4.3.7"
- resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7"
+ resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz"
integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
fragment-cache@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
+ resolved "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"
integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==
dependencies:
map-cache "^0.2.2"
fresh@0.5.2:
version "0.5.2"
- resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
+ resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"
integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
-fs-minipass@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
- integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
+fs-extra@^10.0.0:
+ version "10.1.0"
+ resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"
+ integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
dependencies:
- minipass "^3.0.0"
+ graceful-fs "^4.2.0"
+ jsonfile "^6.0.1"
+ universalify "^2.0.0"
fs.realpath@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+ resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
-fsevents@^1.2.7:
- version "1.2.13"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
- integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
+fstream@^1.0.0, fstream@^1.0.12:
+ version "1.0.12"
+ resolved "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz"
+ integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==
dependencies:
- bindings "^1.5.0"
- nan "^2.12.1"
+ graceful-fs "^4.1.2"
+ inherits "~2.0.0"
+ mkdirp ">=0.5 0"
+ rimraf "2"
function-bind@^1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
+ resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz"
integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
function.prototype.name@^1.1.6, function.prototype.name@^1.1.8:
version "1.1.8"
- resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz#e68e1df7b259a5c949eeef95cdbde53edffabb78"
+ resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz"
integrity sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==
dependencies:
call-bind "^1.0.8"
@@ -3835,44 +4959,50 @@ function.prototype.name@^1.1.6, function.prototype.name@^1.1.8:
functions-have-names@^1.2.3:
version "1.2.3"
- resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
+ resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
-gauge@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395"
- integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==
+gauge@~2.7.3:
+ version "2.7.4"
+ resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz"
+ integrity sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==
dependencies:
- aproba "^1.0.3 || ^2.0.0"
- color-support "^1.1.2"
+ aproba "^1.0.3"
console-control-strings "^1.0.0"
- has-unicode "^2.0.1"
- object-assign "^4.1.1"
+ has-unicode "^2.0.0"
+ object-assign "^4.1.0"
signal-exit "^3.0.0"
- string-width "^4.2.3"
- strip-ansi "^6.0.1"
- wide-align "^1.1.2"
+ string-width "^1.0.1"
+ strip-ansi "^3.0.1"
+ wide-align "^1.1.0"
+
+gaze@^1.1.0:
+ version "1.1.3"
+ resolved "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz"
+ integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==
+ dependencies:
+ globule "^1.0.0"
generic-names@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-4.0.0.tgz#0bd8a2fd23fe8ea16cbd0a279acd69c06933d9a3"
+ resolved "https://registry.npmjs.org/generic-names/-/generic-names-4.0.0.tgz"
integrity sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==
dependencies:
loader-utils "^3.2.0"
gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
- resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
+ resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
-get-caller-file@^2.0.1:
+get-caller-file@^2.0.1, get-caller-file@^2.0.5:
version "2.0.5"
- resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
+ resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7, get-intrinsic@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01"
+ resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz"
integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==
dependencies:
call-bind-apply-helpers "^1.0.2"
@@ -3888,7 +5018,7 @@ get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@
get-proto@^1.0.0, get-proto@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1"
+ resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz"
integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==
dependencies:
dunder-proto "^1.0.1"
@@ -3896,14 +5026,14 @@ get-proto@^1.0.0, get-proto@^1.0.1:
get-stream@^4.0.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
+ resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"
integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
dependencies:
pump "^3.0.0"
get-symbol-description@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz#7bdd54e0befe8ffc9f3b4e203220d9f1e881b6ee"
+ resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz"
integrity sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==
dependencies:
call-bound "^1.0.3"
@@ -3912,32 +5042,51 @@ get-symbol-description@^1.1.0:
get-value@^2.0.3, get-value@^2.0.6:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
+ resolved "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"
integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==
+getobject@~1.0.0:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/getobject/-/getobject-1.0.2.tgz"
+ integrity sha512-2zblDBaFcb3rB4rF77XVnuINOE2h2k/OnqXAiy0IrTxUfV1iFp3la33oAQVY9pCpWU268WFYVt2t71hlMuLsOg==
+
+getpass@^0.1.1:
+ version "0.1.7"
+ resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"
+ integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==
+ dependencies:
+ assert-plus "^1.0.0"
+
glob-parent@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
+ resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz"
integrity sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==
dependencies:
is-glob "^3.1.0"
path-dirname "^1.0.0"
+glob-parent@^5.1.2:
+ version "5.1.2"
+ resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
+ integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
+ dependencies:
+ is-glob "^4.0.1"
+
glob-parent@^6.0.1:
version "6.0.2"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
+ resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"
integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
dependencies:
is-glob "^4.0.3"
glob-to-regexp@^0.4.1:
version "0.4.1"
- resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
+ resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
-glob@^7.0.3, glob@^7.1.3:
+glob@^7.0.3, glob@^7.1.3, glob@^7.1.6:
version "7.2.3"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
+ resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
dependencies:
fs.realpath "^1.0.0"
@@ -3947,17 +5096,86 @@ glob@^7.0.3, glob@^7.1.3:
once "^1.3.0"
path-is-absolute "^1.0.0"
+glob@~7.1.1:
+ version "7.1.7"
+ resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
+ integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
+glob@~7.1.6:
+ version "7.1.7"
+ resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
+ integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
+global-modules@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz"
+ integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==
+ dependencies:
+ global-prefix "^1.0.1"
+ is-windows "^1.0.1"
+ resolve-dir "^1.0.0"
+
+global-prefix@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz"
+ integrity sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==
+ dependencies:
+ expand-tilde "^2.0.2"
+ homedir-polyfill "^1.0.1"
+ ini "^1.3.4"
+ is-windows "^1.0.1"
+ which "^1.2.14"
+
+global@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.npmjs.org/global/-/global-4.4.0.tgz"
+ integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==
+ dependencies:
+ min-document "^2.19.0"
+ process "^0.11.10"
+
+globals@^9.18.0:
+ version "9.18.0"
+ resolved "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"
+ integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==
+
globalthis@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236"
+ resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz"
integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==
dependencies:
define-properties "^1.2.1"
gopd "^1.0.1"
+globby@^11.0.3:
+ version "11.1.0"
+ resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
+ integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
+ dependencies:
+ array-union "^2.1.0"
+ dir-glob "^3.0.1"
+ fast-glob "^3.2.9"
+ ignore "^5.2.0"
+ merge2 "^1.4.1"
+ slash "^3.0.0"
+
globby@^6.1.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
+ resolved "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz"
integrity sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==
dependencies:
array-union "^1.0.1"
@@ -3966,77 +5184,199 @@ globby@^6.1.0:
pify "^2.0.0"
pinkie-promise "^2.0.0"
+globule@^1.0.0:
+ version "1.3.4"
+ resolved "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz"
+ integrity sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==
+ dependencies:
+ glob "~7.1.1"
+ lodash "^4.17.21"
+ minimatch "~3.0.2"
+
gopd@^1.0.1, gopd@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1"
+ resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz"
integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==
-graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.2.11, graceful-fs@^4.2.4:
+graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4:
version "4.2.11"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
+grunt-cli@~1.4.3:
+ version "1.4.3"
+ resolved "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz"
+ integrity sha512-9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==
+ dependencies:
+ grunt-known-options "~2.0.0"
+ interpret "~1.1.0"
+ liftup "~3.0.1"
+ nopt "~4.0.1"
+ v8flags "~3.2.0"
+
+grunt-contrib-watch@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.1.0.tgz"
+ integrity sha512-yGweN+0DW5yM+oo58fRu/XIRrPcn3r4tQx+nL7eMRwjpvk+rQY6R8o94BPK0i2UhTg9FN21hS+m8vR8v9vXfeg==
+ dependencies:
+ async "^2.6.0"
+ gaze "^1.1.0"
+ lodash "^4.17.10"
+ tiny-lr "^1.1.1"
+
+grunt-known-options@~2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz"
+ integrity sha512-GD7cTz0I4SAede1/+pAbmJRG44zFLPipVtdL9o3vqx9IEyb7b4/Y3s7r6ofI3CchR5GvYJ+8buCSioDv5dQLiA==
+
+grunt-legacy-log-utils@~2.1.0:
+ version "2.1.0"
+ resolved "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz"
+ integrity sha512-lwquaPXJtKQk0rUM1IQAop5noEpwFqOXasVoedLeNzaibf/OPWjKYvvdqnEHNmU+0T0CaReAXIbGo747ZD+Aaw==
+ dependencies:
+ chalk "~4.1.0"
+ lodash "~4.17.19"
+
+grunt-legacy-log@~3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz"
+ integrity sha512-GHZQzZmhyq0u3hr7aHW4qUH0xDzwp2YXldLPZTCjlOeGscAOWWPftZG3XioW8MasGp+OBRIu39LFx14SLjXRcA==
+ dependencies:
+ colors "~1.1.2"
+ grunt-legacy-log-utils "~2.1.0"
+ hooker "~0.2.3"
+ lodash "~4.17.19"
+
+grunt-legacy-util@~2.0.1:
+ version "2.0.1"
+ resolved "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz"
+ integrity sha512-2bQiD4fzXqX8rhNdXkAywCadeqiPiay0oQny77wA2F3WF4grPJXCvAcyoWUJV+po/b15glGkxuSiQCK299UC2w==
+ dependencies:
+ async "~3.2.0"
+ exit "~0.1.2"
+ getobject "~1.0.0"
+ hooker "~0.2.3"
+ lodash "~4.17.21"
+ underscore.string "~3.3.5"
+ which "~2.0.2"
+
+grunt-sass@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.npmjs.org/grunt-sass/-/grunt-sass-3.1.0.tgz"
+ integrity sha512-90s27H7FoCDcA8C8+R0GwC+ntYD3lG6S/jqcavWm3bn9RiJTmSfOvfbFa1PXx4NbBWuiGQMLfQTj/JvvqT5w6A==
+
+grunt@^1.4.1:
+ version "1.6.1"
+ resolved "https://registry.npmjs.org/grunt/-/grunt-1.6.1.tgz"
+ integrity sha512-/ABUy3gYWu5iBmrUSRBP97JLpQUm0GgVveDCp6t3yRNIoltIYw7rEj3g5y1o2PGPR2vfTRGa7WC/LZHLTXnEzA==
+ dependencies:
+ dateformat "~4.6.2"
+ eventemitter2 "~0.4.13"
+ exit "~0.1.2"
+ findup-sync "~5.0.0"
+ glob "~7.1.6"
+ grunt-cli "~1.4.3"
+ grunt-known-options "~2.0.0"
+ grunt-legacy-log "~3.0.0"
+ grunt-legacy-util "~2.0.1"
+ iconv-lite "~0.6.3"
+ js-yaml "~3.14.0"
+ minimatch "~3.0.4"
+ nopt "~3.0.6"
+
gzip-size@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz#065367fd50c239c0671cbcbad5be3e2eeb10e462"
+ resolved "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz"
integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==
dependencies:
duplexer "^0.1.2"
handle-thing@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"
+ resolved "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz"
integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==
+handlebars@^4.0.5:
+ version "4.7.8"
+ resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz"
+ integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==
+ dependencies:
+ minimist "^1.2.5"
+ neo-async "^2.6.2"
+ source-map "^0.6.1"
+ wordwrap "^1.0.0"
+ optionalDependencies:
+ uglify-js "^3.1.4"
+
+har-schema@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"
+ integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==
+
+har-validator@~5.1.3:
+ version "5.1.5"
+ resolved "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz"
+ integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==
+ dependencies:
+ ajv "^6.12.3"
+ har-schema "^2.0.0"
+
+has-ansi@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"
+ integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==
+ dependencies:
+ ansi-regex "^2.0.0"
+
has-bigints@^1.0.2:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz#28607e965ac967e03cd2a2c70a2636a1edad49fe"
+ resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz"
integrity sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==
has-flag@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+ resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
has-flag@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+ resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854"
+ resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz"
integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==
dependencies:
es-define-property "^1.0.0"
has-proto@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5"
+ resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz"
integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==
dependencies:
dunder-proto "^1.0.0"
has-symbols@^1.0.1, has-symbols@^1.0.3, has-symbols@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338"
+ resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz"
integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==
has-tostringtag@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc"
+ resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz"
integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==
dependencies:
has-symbols "^1.0.3"
-has-unicode@^2.0.1:
+has-unicode@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
+ resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"
integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==
has-value@^0.3.1:
version "0.3.1"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
+ resolved "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"
integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==
dependencies:
get-value "^2.0.3"
@@ -4045,7 +5385,7 @@ has-value@^0.3.1:
has-value@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
+ resolved "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"
integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==
dependencies:
get-value "^2.0.6"
@@ -4054,12 +5394,12 @@ has-value@^1.0.0:
has-values@^0.1.4:
version "0.1.4"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
+ resolved "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"
integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==
has-values@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
+ resolved "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"
integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==
dependencies:
is-number "^3.0.0"
@@ -4067,23 +5407,14 @@ has-values@^1.0.0:
hash-base@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1"
+ resolved "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz"
integrity sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw==
dependencies:
inherits "^2.0.1"
-hash-base@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
- integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
- dependencies:
- inherits "^2.0.4"
- readable-stream "^3.6.0"
- safe-buffer "^5.2.0"
-
-hash-base@~3.0, hash-base@~3.0.4:
+hash-base@^3.0.0, hash-base@~3.0, hash-base@~3.0.4:
version "3.0.5"
- resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.5.tgz#52480e285395cf7fba17dc4c9e47acdc7f248a8a"
+ resolved "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz"
integrity sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==
dependencies:
inherits "^2.0.4"
@@ -4091,7 +5422,7 @@ hash-base@~3.0, hash-base@~3.0.4:
hash.js@^1.0.0, hash.js@^1.0.3:
version "1.1.7"
- resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
+ resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz"
integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
dependencies:
inherits "^2.0.3"
@@ -4099,28 +5430,48 @@ hash.js@^1.0.0, hash.js@^1.0.3:
hasown@^2.0.0, hasown@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
+ resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz"
integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
dependencies:
function-bind "^1.1.2"
he@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
+ resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz"
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
hmac-drbg@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
+ resolved "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz"
integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==
dependencies:
hash.js "^1.0.3"
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.1"
+home-or-tmp@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"
+ integrity sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==
+ dependencies:
+ os-homedir "^1.0.0"
+ os-tmpdir "^1.0.1"
+
+homedir-polyfill@^1.0.1:
+ version "1.0.3"
+ resolved "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"
+ integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==
+ dependencies:
+ parse-passwd "^1.0.0"
+
+hooker@^0.2.3, hooker@~0.2.3:
+ version "0.2.3"
+ resolved "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz"
+ integrity sha512-t+UerCsQviSymAInD01Pw+Dn/usmz1sRO+3Zk1+lx8eg+WKpD2ulcwWqHHL0+aseRBr+3+vIhiG1K1JTwaIcTA==
+
hpack.js@^2.1.6:
version "2.1.6"
- resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
+ resolved "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz"
integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==
dependencies:
inherits "^2.0.1"
@@ -4130,17 +5481,17 @@ hpack.js@^2.1.6:
html-entities@^1.3.1:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc"
+ resolved "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz"
integrity sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==
html-escaper@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
+ resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
html-minifier-terser@^6.0.2:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab"
+ resolved "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz"
integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==
dependencies:
camel-case "^4.1.2"
@@ -4153,7 +5504,7 @@ html-minifier-terser@^6.0.2:
html-minifier@^4:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-4.0.0.tgz#cca9aad8bce1175e02e17a8c33e46d8988889f56"
+ resolved "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz"
integrity sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==
dependencies:
camel-case "^3.0.0"
@@ -4166,12 +5517,12 @@ html-minifier@^4:
html-prettify@^1.0.3:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/html-prettify/-/html-prettify-1.0.7.tgz#c5e7cf756fe58f8edf150154d65a0f11ac7e7da6"
+ resolved "https://registry.npmjs.org/html-prettify/-/html-prettify-1.0.7.tgz"
integrity sha512-99pRsP2PV2DyWnrVibNyad7gNmzCP7AANO8jw7Z9yanWyXH9dPdqdMXGefySplroqCNdk95u7j5TLxfyJ1Cbbg==
html-webpack-plugin@^5.3.1:
version "5.6.3"
- resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz#a31145f0fee4184d53a794f9513147df1e653685"
+ resolved "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz"
integrity sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==
dependencies:
"@types/html-minifier-terser" "^6.0.0"
@@ -4182,7 +5533,7 @@ html-webpack-plugin@^5.3.1:
htmlparser2@^6.1.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7"
+ resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz"
integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==
dependencies:
domelementtype "^2.0.1"
@@ -4192,12 +5543,22 @@ htmlparser2@^6.1.0:
http-deceiver@^1.2.7:
version "1.2.7"
- resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
+ resolved "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz"
integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==
+http-errors@~1.6.2:
+ version "1.6.3"
+ resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz"
+ integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.3"
+ setprototypeof "1.1.0"
+ statuses ">= 1.4.0 < 2"
+
http-errors@2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3"
+ resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz"
integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==
dependencies:
depd "2.0.0"
@@ -4206,34 +5567,14 @@ http-errors@2.0.0:
statuses "2.0.1"
toidentifier "1.0.1"
-http-errors@~1.6.2:
- version "1.6.3"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
- integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==
- dependencies:
- depd "~1.1.2"
- inherits "2.0.3"
- setprototypeof "1.1.0"
- statuses ">= 1.4.0 < 2"
-
http-parser-js@>=0.5.1:
version "0.5.10"
- resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.10.tgz#b3277bd6d7ed5588e20ea73bf724fcbe44609075"
+ resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz"
integrity sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==
-http-proxy-middleware@0.19.1:
- version "0.19.1"
- resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a"
- integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
- dependencies:
- http-proxy "^1.17.0"
- is-glob "^4.0.0"
- lodash "^4.17.11"
- micromatch "^3.1.10"
-
http-proxy-middleware@^1.0.0:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz#43700d6d9eecb7419bf086a128d0f7205d9eb665"
+ resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz"
integrity sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==
dependencies:
"@types/http-proxy" "^1.17.5"
@@ -4242,66 +5583,103 @@ http-proxy-middleware@^1.0.0:
is-plain-obj "^3.0.0"
micromatch "^4.0.2"
+http-proxy-middleware@0.19.1:
+ version "0.19.1"
+ resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz"
+ integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==
+ dependencies:
+ http-proxy "^1.17.0"
+ is-glob "^4.0.0"
+ lodash "^4.17.11"
+ micromatch "^3.1.10"
+
http-proxy@^1.17.0, http-proxy@^1.18.1:
version "1.18.1"
- resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
+ resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz"
integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
dependencies:
eventemitter3 "^4.0.0"
follow-redirects "^1.0.0"
requires-port "^1.0.0"
+http-signature@~1.2.0:
+ version "1.2.0"
+ resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"
+ integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==
+ dependencies:
+ assert-plus "^1.0.0"
+ jsprim "^1.2.2"
+ sshpk "^1.7.0"
+
https-browserify@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
+ resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz"
integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==
-https-proxy-agent@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6"
- integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
+iconv-lite@^0.6.3, iconv-lite@~0.6.3:
+ version "0.6.3"
+ resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"
+ integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
dependencies:
- agent-base "6"
- debug "4"
+ safer-buffer ">= 2.1.2 < 3.0.0"
iconv-lite@0.4.24:
version "0.4.24"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+ resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
dependencies:
safer-buffer ">= 2.1.2 < 3"
icss-replace-symbols@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
+ resolved "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz"
integrity sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==
icss-utils@^5.0.0, icss-utils@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
+ resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz"
integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
ieee754@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
+ resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
+ignore@^5.2.0:
+ version "5.3.2"
+ resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz"
+ integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
+
immutable@^5.0.2:
version "5.1.3"
- resolved "https://registry.yarnpkg.com/immutable/-/immutable-5.1.3.tgz#e6486694c8b76c37c063cca92399fa64098634d4"
+ resolved "https://registry.npmjs.org/immutable/-/immutable-5.1.3.tgz"
integrity sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==
+import-cwd@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz"
+ integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==
+ dependencies:
+ import-from "^3.0.0"
+
import-fresh@^3.2.1, import-fresh@^3.3.0:
version "3.3.1"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf"
+ resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz"
integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==
dependencies:
parent-module "^1.0.0"
resolve-from "^4.0.0"
+import-from@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz"
+ integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==
+ dependencies:
+ resolve-from "^5.0.0"
+
import-local@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
+ resolved "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz"
integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==
dependencies:
pkg-dir "^3.0.0"
@@ -4309,25 +5687,30 @@ import-local@^2.0.0:
inflight@^1.0.4:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+ resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
dependencies:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4:
+inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4, inherits@2, inherits@2.0.4:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+ resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
inherits@2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+ resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
+ini@^1.3.4:
+ version "1.3.8"
+ resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
+ integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
+
internal-ip@^4.3.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907"
+ resolved "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz"
integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==
dependencies:
default-gateway "^4.2.0"
@@ -4335,50 +5718,63 @@ internal-ip@^4.3.0:
internal-slot@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz#1eac91762947d2f7056bc838d93e13b2e9604961"
+ resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz"
integrity sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==
dependencies:
es-errors "^1.3.0"
hasown "^2.0.2"
side-channel "^1.1.0"
-invariant@^2.2.4:
+interpret@~1.1.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz"
+ integrity sha512-CLM8SNMDu7C5psFCn6Wg/tgpj/bKAg7hc2gWqcuR9OD5Ft9PhBpIu8PLicPeis+xDd6YX2ncI8MCA64I9tftIA==
+
+invariant@^2.2.2, invariant@^2.2.4:
version "2.2.4"
- resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
+ resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
dependencies:
loose-envify "^1.0.0"
ip-regex@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
+ resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz"
integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==
ip@^1.1.0, ip@^1.1.5:
version "1.1.9"
- resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.9.tgz#8dfbcc99a754d07f425310b86a99546b1151e396"
+ resolved "https://registry.npmjs.org/ip/-/ip-1.1.9.tgz"
integrity sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==
-ipaddr.js@1.9.1, ipaddr.js@^1.9.0:
+ipaddr.js@^1.9.0, ipaddr.js@1.9.1:
version "1.9.1"
- resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
+ resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"
integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
is-absolute-url@^3.0.3:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
+ resolved "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz"
integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
+is-absolute@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz"
+ integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==
+ dependencies:
+ is-relative "^1.0.0"
+ is-windows "^1.0.1"
+
is-accessor-descriptor@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz#3223b10628354644b86260db29b3e693f5ceedd4"
+ resolved "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz"
integrity sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==
dependencies:
hasown "^2.0.0"
is-arguments@^1.0.4, is-arguments@^1.1.1:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.2.0.tgz#ad58c6aecf563b78ef2bf04df540da8f5d7d8e1b"
+ resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz"
integrity sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==
dependencies:
call-bound "^1.0.2"
@@ -4386,7 +5782,7 @@ is-arguments@^1.0.4, is-arguments@^1.1.1:
is-array-buffer@^3.0.4, is-array-buffer@^3.0.5:
version "3.0.5"
- resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz#65742e1e687bd2cc666253068fd8707fe4d44280"
+ resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz"
integrity sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==
dependencies:
call-bind "^1.0.8"
@@ -4395,12 +5791,12 @@ is-array-buffer@^3.0.4, is-array-buffer@^3.0.5:
is-arrayish@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
+ resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
is-async-function@^2.0.0:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz#3e69018c8e04e73b738793d020bfe884b9fd3523"
+ resolved "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz"
integrity sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==
dependencies:
async-function "^1.0.0"
@@ -4411,21 +5807,21 @@ is-async-function@^2.0.0:
is-bigint@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz#dda7a3445df57a42583db4228682eba7c4170672"
+ resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz"
integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==
dependencies:
has-bigints "^1.0.2"
is-binary-path@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
+ resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz"
integrity sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==
dependencies:
binary-extensions "^1.0.0"
is-boolean-object@^1.2.1:
version "1.2.2"
- resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz#7067f47709809a393c71ff5bb3e135d8a9215d9e"
+ resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz"
integrity sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==
dependencies:
call-bound "^1.0.3"
@@ -4433,31 +5829,38 @@ is-boolean-object@^1.2.1:
is-buffer@^1.1.5:
version "1.1.6"
- resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
+ resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
+is-builtin-module@^3.1.0:
+ version "3.2.1"
+ resolved "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz"
+ integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==
+ dependencies:
+ builtin-modules "^3.3.0"
+
is-callable@^1.2.7:
version "1.2.7"
- resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
+ resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"
integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
is-core-module@^2.16.0:
version "2.16.1"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4"
+ resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz"
integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==
dependencies:
hasown "^2.0.2"
is-data-descriptor@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz#2109164426166d32ea38c405c1e0945d9e6a4eeb"
+ resolved "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz"
integrity sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==
dependencies:
hasown "^2.0.0"
is-data-view@^1.0.1, is-data-view@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz#bae0a41b9688986c2188dda6657e56b8f9e63b8e"
+ resolved "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz"
integrity sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==
dependencies:
call-bound "^1.0.2"
@@ -4466,7 +5869,7 @@ is-data-view@^1.0.1, is-data-view@^1.0.2:
is-date-object@^1.0.5, is-date-object@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz#ad85541996fc7aa8b2729701d27b7319f95d82f7"
+ resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz"
integrity sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==
dependencies:
call-bound "^1.0.2"
@@ -4474,57 +5877,82 @@ is-date-object@^1.0.5, is-date-object@^1.1.0:
is-descriptor@^0.1.0:
version "0.1.7"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.7.tgz#2727eb61fd789dcd5bdf0ed4569f551d2fe3be33"
+ resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz"
integrity sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==
dependencies:
is-accessor-descriptor "^1.0.1"
is-data-descriptor "^1.0.1"
-is-descriptor@^1.0.0, is-descriptor@^1.0.2:
+is-descriptor@^1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.3.tgz#92d27cb3cd311c4977a4db47df457234a13cb306"
+ resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz"
integrity sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==
dependencies:
is-accessor-descriptor "^1.0.1"
is-data-descriptor "^1.0.1"
+is-descriptor@^1.0.2:
+ version "1.0.3"
+ resolved "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz"
+ integrity sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==
+ dependencies:
+ is-accessor-descriptor "^1.0.1"
+ is-data-descriptor "^1.0.1"
+
+is-docker@^2.0.0, is-docker@^2.1.1:
+ version "2.2.1"
+ resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz"
+ integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
+
is-extendable@^0.1.0, is-extendable@^0.1.1:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
+ resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==
is-extendable@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
+ resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"
integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
dependencies:
is-plain-object "^2.0.4"
is-extglob@^2.1.0, is-extglob@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+ resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
is-finalizationregistry@^1.1.0:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz#eefdcdc6c94ddd0674d9c85887bf93f944a97c90"
+ resolved "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz"
integrity sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==
dependencies:
call-bound "^1.0.3"
+is-finite@^1.0.0, is-finite@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz"
+ integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==
+
+is-fullwidth-code-point@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"
+ integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==
+ dependencies:
+ number-is-nan "^1.0.0"
+
is-fullwidth-code-point@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
+ resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"
integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==
is-fullwidth-code-point@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
is-generator-function@^1.0.10, is-generator-function@^1.0.7:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.0.tgz#bf3eeda931201394f57b5dba2800f91a238309ca"
+ resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz"
integrity sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==
dependencies:
call-bound "^1.0.3"
@@ -4534,26 +5962,31 @@ is-generator-function@^1.0.10, is-generator-function@^1.0.7:
is-glob@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
+ resolved "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz"
integrity sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==
dependencies:
is-extglob "^2.1.0"
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
+ resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
dependencies:
is-extglob "^2.1.1"
is-map@^2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e"
+ resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz"
integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==
+is-module@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz"
+ integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==
+
is-nan@^1.3.2:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d"
+ resolved "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz"
integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==
dependencies:
call-bind "^1.0.0"
@@ -4561,12 +5994,12 @@ is-nan@^1.3.2:
is-negative-zero@^2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747"
+ resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz"
integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
is-number-object@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz#144b21e95a1bc148205dcc2814a9134ec41b2541"
+ resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz"
integrity sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==
dependencies:
call-bound "^1.0.3"
@@ -4574,50 +6007,57 @@ is-number-object@^1.1.1:
is-number@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
+ resolved "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"
integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==
dependencies:
kind-of "^3.0.2"
is-number@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+ resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
is-path-cwd@^2.0.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
+ resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz"
integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
is-path-in-cwd@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb"
+ resolved "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz"
integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
dependencies:
is-path-inside "^2.1.0"
is-path-inside@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2"
+ resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz"
integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
dependencies:
path-is-inside "^1.0.2"
is-plain-obj@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7"
+ resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz"
integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==
is-plain-object@^2.0.3, is-plain-object@^2.0.4:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
+ resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
dependencies:
isobject "^3.0.1"
+is-reference@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz"
+ integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==
+ dependencies:
+ "@types/estree" "*"
+
is-regex@^1.1.4, is-regex@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz#76d70a3ed10ef9be48eb577887d74205bf0cad22"
+ resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz"
integrity sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==
dependencies:
call-bound "^1.0.2"
@@ -4625,26 +6065,33 @@ is-regex@^1.1.4, is-regex@^1.2.1:
has-tostringtag "^1.0.2"
hasown "^2.0.2"
+is-relative@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz"
+ integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==
+ dependencies:
+ is-unc-path "^1.0.0"
+
is-set@^2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d"
+ resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz"
integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==
is-shared-array-buffer@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz#9b67844bd9b7f246ba0708c3a93e34269c774f6f"
+ resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz"
integrity sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==
dependencies:
call-bound "^1.0.3"
is-stream@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
+ resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==
is-string@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz#92ea3f3d5c5b6e039ca8677e5ac8d07ea773cbb9"
+ resolved "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz"
integrity sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==
dependencies:
call-bound "^1.0.3"
@@ -4652,7 +6099,7 @@ is-string@^1.1.1:
is-symbol@^1.0.4, is-symbol@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz#f47761279f532e2b05a7024a7506dbbedacd0634"
+ resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz"
integrity sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==
dependencies:
call-bound "^1.0.2"
@@ -4661,71 +6108,105 @@ is-symbol@^1.0.4, is-symbol@^1.1.1:
is-typed-array@^1.1.13, is-typed-array@^1.1.14, is-typed-array@^1.1.15, is-typed-array@^1.1.3:
version "1.1.15"
- resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz#4bfb4a45b61cee83a5a46fba778e4e8d59c0ce0b"
+ resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz"
integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==
dependencies:
which-typed-array "^1.1.16"
+is-typedarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
+ integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
+
+is-unc-path@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz"
+ integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==
+ dependencies:
+ unc-path-regex "^0.1.2"
+
is-weakmap@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd"
+ resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz"
integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==
is-weakref@^1.0.2, is-weakref@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz#eea430182be8d64174bd96bffbc46f21bf3f9293"
+ resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz"
integrity sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==
dependencies:
call-bound "^1.0.3"
is-weakset@^2.0.3:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz#c9f5deb0bc1906c6d6f1027f284ddf459249daca"
+ resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz"
integrity sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==
dependencies:
call-bound "^1.0.3"
get-intrinsic "^1.2.6"
-is-windows@^1.0.2:
+is-windows@^1.0.1, is-windows@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
+ resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
is-wsl@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
+ resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz"
integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==
-isarray@1.0.0, isarray@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
- integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
+is-wsl@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz"
+ integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
+ dependencies:
+ is-docker "^2.0.0"
isarray@^2.0.5:
version "2.0.5"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz"
integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+isarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
+ integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
+
+isarray@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
+ integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==
+
+isarray@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
+ integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
+
isexe@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+ resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
isobject@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
+ resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"
integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==
dependencies:
isarray "1.0.0"
isobject@^3.0.0, isobject@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+ resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
+isstream@~0.1.2:
+ version "0.1.2"
+ resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"
+ integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==
+
jake@^10.8.5:
version "10.9.2"
- resolved "https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz#6ae487e6a69afec3a5e167628996b59f35ae2b7f"
+ resolved "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz"
integrity sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==
dependencies:
async "^3.2.3"
@@ -4735,7 +6216,7 @@ jake@^10.8.5:
jest-worker@^27.0.2, jest-worker@^27.4.5:
version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
+ resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz"
integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
dependencies:
"@types/node" "*"
@@ -4744,17 +6225,31 @@ jest-worker@^27.0.2, jest-worker@^27.4.5:
jiti@^1.20.0:
version "1.21.7"
- resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.7.tgz#9dd81043424a3d28458b193d965f0d18a2300ba9"
+ resolved "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz"
integrity sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==
+js-cleanup@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.npmjs.org/js-cleanup/-/js-cleanup-1.2.0.tgz"
+ integrity sha512-JeDD0yiiSt80fXzAVa/crrS0JDPQljyBG/RpOtaSbyDq03VHa9szJWMaWOYU/bcTn412uMN2MxApXq8v79cUiQ==
+ dependencies:
+ magic-string "^0.25.7"
+ perf-regexes "^1.0.1"
+ skip-regex "^1.0.2"
+
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+ resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-js-yaml@^3.13.1:
+js-tokens@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"
+ integrity sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==
+
+js-yaml@^3.13.1, js-yaml@~3.14.0:
version "3.14.1"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
+ resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"
integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
dependencies:
argparse "^1.0.7"
@@ -4762,98 +6257,190 @@ js-yaml@^3.13.1:
js-yaml@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
+ resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
dependencies:
argparse "^2.0.1"
+jsbn@~0.1.0:
+ version "0.1.1"
+ resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"
+ integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==
+
+jsesc@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"
+ integrity sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==
+
jsesc@^3.0.2:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d"
+ resolved "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz"
integrity sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==
+jsesc@~0.5.0:
+ version "0.5.0"
+ resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"
+ integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
+
jsesc@~3.0.2:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e"
+ resolved "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz"
integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==
json-loader@^0.5.7:
version "0.5.7"
- resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
+ resolved "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz"
integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==
json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
version "2.3.1"
- resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
+ resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
json-schema-traverse@^0.4.1:
version "0.4.1"
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+ resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
json-schema-traverse@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
+ resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"
integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
+json-schema@0.4.0:
+ version "0.4.0"
+ resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz"
+ integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==
+
+json-stringify-safe@~5.0.1:
+ version "5.0.1"
+ resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
+ integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
+
+json5@^0.5.1:
+ version "0.5.1"
+ resolved "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"
+ integrity sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==
+
json5@^2.1.2, json5@^2.2.3:
version "2.2.3"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
+jsonfile@^6.0.1:
+ version "6.1.0"
+ resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"
+ integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
+ dependencies:
+ universalify "^2.0.0"
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+jsprim@^1.2.2:
+ version "1.4.2"
+ resolved "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz"
+ integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==
+ dependencies:
+ assert-plus "1.0.0"
+ extsprintf "1.3.0"
+ json-schema "0.4.0"
+ verror "1.10.0"
+
killable@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892"
+ resolved "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz"
integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==
-kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
+kind-of@^3.0.2:
version "3.2.2"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
+ resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
+ integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==
+ dependencies:
+ is-buffer "^1.1.5"
+
+kind-of@^3.0.3:
+ version "3.2.2"
+ resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
+ integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==
+ dependencies:
+ is-buffer "^1.1.5"
+
+kind-of@^3.2.0:
+ version "3.2.2"
+ resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"
integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==
dependencies:
is-buffer "^1.1.5"
kind-of@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
+ resolved "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"
integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==
dependencies:
is-buffer "^1.1.5"
kind-of@^6.0.2:
version "6.0.3"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+ resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
kleur@^3.0.0:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
+ resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz"
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
klona@^2.0.4, klona@^2.0.5:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
+ resolved "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz"
integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
-lilconfig@^2.0.3:
+liftup@~3.0.1:
+ version "3.0.1"
+ resolved "https://registry.npmjs.org/liftup/-/liftup-3.0.1.tgz"
+ integrity sha512-yRHaiQDizWSzoXk3APcA71eOI/UuhEkNN9DiW2Tt44mhYzX4joFoCZlxsSOF7RyeLlfqzFLQI1ngFq3ggMPhOw==
+ dependencies:
+ extend "^3.0.2"
+ findup-sync "^4.0.0"
+ fined "^1.2.0"
+ flagged-respawn "^1.0.1"
+ is-plain-object "^2.0.4"
+ object.map "^1.0.1"
+ rechoir "^0.7.0"
+ resolve "^1.19.0"
+
+lilconfig@^2.0.3, lilconfig@^2.0.5:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
+ resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz"
integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
lines-and-columns@^1.1.6:
version "1.2.4"
- resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
+ resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
+livereload-js@^2.3.0:
+ version "2.4.0"
+ resolved "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz"
+ integrity sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==
+
+load-grunt-tasks@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.npmjs.org/load-grunt-tasks/-/load-grunt-tasks-5.1.0.tgz"
+ integrity sha512-oNj0Jlka1TsfDe+9He0kcA1cRln+TMoTsEByW7ij6kyktNLxBKJtslCFEvFrLC2Dj0S19IWJh3fOCIjLby2Xrg==
+ dependencies:
+ arrify "^2.0.1"
+ multimatch "^4.0.0"
+ pkg-up "^3.1.0"
+ resolve-pkg "^2.0.0"
+
loader-runner@^4.2.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1"
+ resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz"
integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==
loader-utils@^2, loader-utils@^2.0.0, loader-utils@^2.0.4:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c"
+ resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz"
integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==
dependencies:
big.js "^5.2.2"
@@ -4862,12 +6449,12 @@ loader-utils@^2, loader-utils@^2.0.0, loader-utils@^2.0.4:
loader-utils@^3.2.0:
version "3.3.1"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.3.1.tgz#735b9a19fd63648ca7adbd31c2327dfe281304e5"
+ resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz"
integrity sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==
locate-path@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
+ resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"
integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
dependencies:
p-locate "^3.0.0"
@@ -4875,106 +6462,133 @@ locate-path@^3.0.0:
locate-path@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
+ resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
dependencies:
p-locate "^4.1.0"
locate-path@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
+ resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
dependencies:
p-locate "^5.0.0"
lodash.camelcase@^4.3.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
+ resolved "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"
integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==
lodash.debounce@^4.0.8:
version "4.0.8"
- resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
+ resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"
integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==
lodash.memoize@^4.1.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
+ resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz"
integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
lodash.merge@^4.6.2:
version "4.6.2"
- resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
+ resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
lodash.uniq@^4.5.0:
version "4.5.0"
- resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
+ resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"
integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==
-lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21:
+lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@~4.17.19, lodash@~4.17.21:
version "4.17.21"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
+ resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
loglevel@^1.6.8:
version "1.9.2"
- resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.9.2.tgz#c2e028d6c757720107df4e64508530db6621ba08"
+ resolved "https://registry.npmjs.org/loglevel/-/loglevel-1.9.2.tgz"
integrity sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
+ resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
dependencies:
js-tokens "^3.0.0 || ^4.0.0"
lower-case@^1.1.1:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
+ resolved "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz"
integrity sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==
lower-case@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28"
+ resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz"
integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
dependencies:
tslib "^2.0.3"
lru-cache@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"
integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
dependencies:
yallist "^3.0.2"
+magic-string@^0.25.7:
+ version "0.25.9"
+ resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz"
+ integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==
+ dependencies:
+ sourcemap-codec "^1.4.8"
+
+make-dir@^2.0.0, make-dir@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"
+ integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ dependencies:
+ pify "^4.0.1"
+ semver "^5.6.0"
+
make-dir@^3.0.2, make-dir@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
+ resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
dependencies:
semver "^6.0.0"
-map-cache@^0.2.2:
+make-iterator@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz"
+ integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==
+ dependencies:
+ kind-of "^6.0.2"
+
+map-cache@^0.2.0, map-cache@^0.2.2:
version "0.2.2"
- resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
+ resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"
integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==
map-visit@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
+ resolved "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"
integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==
dependencies:
object-visit "^1.0.0"
+material-design-icons@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.npmjs.org/material-design-icons/-/material-design-icons-3.0.1.tgz"
+ integrity sha512-t19Z+QZBwSZulxptEu05kIm+UyfIdJY1JDwI+nx02j269m6W414whiQz9qfvQIiLrdx71RQv+T48nHhuQXOCIQ==
+
math-intrinsics@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9"
+ resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz"
integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==
md5.js@^1.3.4:
version "1.3.5"
- resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
+ resolved "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz"
integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
dependencies:
hash-base "^3.0.0"
@@ -4983,26 +6597,28 @@ md5.js@^1.3.4:
mdn-data@2.0.14:
version "2.0.14"
- resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
+ resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz"
integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
mdn-data@2.0.4:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
+ resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz"
integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
media-typer@0.3.0:
version "0.3.0"
- resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
+ resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"
integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
"mediacms-player@file:packages/player":
version "0.9.0"
+ resolved "file:packages/player"
dependencies:
- mediacms-vjs-plugin "file:../../../Library/Caches/Yarn/v6/npm-mediacms-player-0.9.0-e2bcf874-d575-4e6e-941b-9b51d3e983b0-1751932932295/node_modules/vjs-plugin"
+ mediacms-vjs-plugin "file:../vjs-plugin"
"mediacms-scripts@file:packages/scripts":
version "0.9.0"
+ resolved "file:packages/scripts"
dependencies:
"@svgr/webpack" "^5.5.0"
"@types/webpack" "^5.28.0"
@@ -5039,17 +6655,19 @@ media-typer@0.3.0:
webpack-format-messages "^2.0.6"
webpack-virtual-modules "^0.4.3"
-"mediacms-vjs-plugin-font-icons@file:packages/vjs-plugin-font-icons":
+"mediacms-vjs-plugin-font-icons@file:../vjs-plugin-font-icons":
version "0.9.0"
+ resolved "file:packages/vjs-plugin-font-icons"
-"mediacms-vjs-plugin@file:packages/vjs-plugin":
+"mediacms-vjs-plugin@file:../vjs-plugin":
version "0.9.0"
+ resolved "file:packages/vjs-plugin"
dependencies:
- mediacms-vjs-plugin-font-icons "file:../../../Library/Caches/Yarn/v6/npm-mediacms-vjs-plugin-0.9.0-ba8dda37-9443-4974-9afe-7ffa0771f1b1-1751932932303/node_modules/vjs-plugin-font-icons"
+ mediacms-vjs-plugin-font-icons "file:../vjs-plugin-font-icons"
memory-fs@^0.4.1:
version "0.4.1"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
+ resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz"
integrity sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==
dependencies:
errno "^0.1.3"
@@ -5057,27 +6675,37 @@ memory-fs@^0.4.1:
merge-descriptors@1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5"
+ resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz"
integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==
merge-stream@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
+ resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
merge@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/merge/-/merge-2.1.1.tgz#59ef4bf7e0b3e879186436e8481c06a6c162ca98"
+ resolved "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz"
integrity sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==
+merge2@^1.3.0, merge2@^1.4.1:
+ version "1.4.1"
+ resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
+ integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
+
methods@~1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
+ resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"
integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
+microbuffer@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/microbuffer/-/microbuffer-1.0.0.tgz"
+ integrity sha512-O/SUXauVN4x6RaEJFqSPcXNtLFL+QzJHKZlyDVYFwcDDRVca3Fa/37QXXC+4zAGGa4YhHrHxKXuuHvLDIQECtA==
+
micromatch@^3.1.10, micromatch@^3.1.4:
version "3.1.10"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
+ resolved "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"
integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
dependencies:
arr-diff "^4.0.0"
@@ -5094,9 +6722,9 @@ micromatch@^3.1.10, micromatch@^3.1.4:
snapdragon "^0.8.1"
to-regex "^3.0.2"
-micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.5:
+micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8:
version "4.0.8"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
+ resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz"
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
dependencies:
braces "^3.0.3"
@@ -5104,47 +6732,49 @@ micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.5:
miller-rabin@^4.0.0:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
+ resolved "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz"
integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
dependencies:
bn.js "^4.0.0"
brorand "^1.0.1"
-mime-db@1.52.0:
+"mime-db@>= 1.43.0 < 2", mime-db@1.52.0:
version "1.52.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
+ resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"
integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
-"mime-db@>= 1.43.0 < 2":
- version "1.54.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.54.0.tgz#cddb3ee4f9c64530dff640236661d42cb6a314f5"
- integrity sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==
-
-mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34:
+mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34:
version "2.1.35"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
+ resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"
integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
dependencies:
mime-db "1.52.0"
-mime@1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
- integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
-
mime@^2.4.4:
version "2.6.0"
- resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367"
+ resolved "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz"
integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==
-mimic-response@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43"
- integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==
+mime@1.6.0:
+ version "1.6.0"
+ resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
+ integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+
+min-document@^2.19.0:
+ version "2.19.0"
+ resolved "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz"
+ integrity sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==
+ dependencies:
+ dom-walk "^0.1.0"
+
+minami@^1.2.3:
+ version "1.2.3"
+ resolved "https://registry.npmjs.org/minami/-/minami-1.2.3.tgz"
+ integrity sha512-3f2QqqbUC1usVux0FkQMFYB73yd9JIxmHSn1dWQacizL6hOUaNu6mA3KxZ9SfiCc4qgcgq+5XP59+hP7URa1Dw==
mini-css-extract-plugin@^1.6.0:
version "1.6.2"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz#83172b4fd812f8fc4a09d6f6d16f924f53990ca8"
+ resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz"
integrity sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==
dependencies:
loader-utils "^2.0.0"
@@ -5153,121 +6783,114 @@ mini-css-extract-plugin@^1.6.0:
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
+ resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"
integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
minimalistic-crypto-utils@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
+ resolved "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"
integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==
-minimatch@*:
- version "10.0.3"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.3.tgz#cf7a0314a16c4d9ab73a7730a0e8e3c3502d47aa"
- integrity sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==
- dependencies:
- "@isaacs/brace-expansion" "^5.0.0"
-
-minimatch@^3.1.1, minimatch@^3.1.2:
+minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
version "3.1.2"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
dependencies:
brace-expansion "^1.1.7"
minimatch@^5.0.1:
version "5.1.6"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz"
integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
dependencies:
brace-expansion "^2.0.1"
-minimist@^1.2.6:
+minimatch@~3.0.2:
+ version "3.0.8"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz"
+ integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimatch@~3.0.4:
+ version "3.0.8"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz"
+ integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimist@^1.2.5, minimist@^1.2.6:
version "1.2.8"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+ resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
-minipass@^3.0.0:
- version "3.3.6"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
- integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
- dependencies:
- yallist "^4.0.0"
-
-minipass@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d"
- integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==
-
-minizlib@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
- integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
- dependencies:
- minipass "^3.0.0"
- yallist "^4.0.0"
-
mixin-deep@^1.2.0:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
+ resolved "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz"
integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
dependencies:
for-in "^1.0.2"
is-extendable "^1.0.1"
-mkdirp@^0.5.1, mkdirp@~0.5.1:
+mkdirp@^0.5.0, mkdirp@^0.5.1, "mkdirp@>=0.5 0", mkdirp@~0.5.1:
version "0.5.6"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
+ resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"
integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
dependencies:
minimist "^1.2.6"
-mkdirp@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
- integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
-
mrmime@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/mrmime/-/mrmime-2.0.1.tgz#bc3e87f7987853a54c9850eeb1f1078cd44adddc"
+ resolved "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz"
integrity sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==
+ms@^2.1.1, ms@^2.1.3, ms@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
+ integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+
ms@2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+ resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
-ms@2.1.3, ms@^2.1.1, ms@^2.1.3:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
- integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
-
multicast-dns-service-types@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901"
+ resolved "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz"
integrity sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==
multicast-dns@^6.0.1:
version "6.2.3"
- resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229"
+ resolved "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz"
integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==
dependencies:
dns-packet "^1.3.1"
thunky "^1.0.2"
-nan@^2.12.1, nan@^2.17.0:
- version "2.22.2"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.22.2.tgz#6b504fd029fb8f38c0990e52ad5c26772fdacfbb"
- integrity sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==
+multimatch@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz"
+ integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==
+ dependencies:
+ "@types/minimatch" "^3.0.3"
+ array-differ "^3.0.0"
+ array-union "^2.1.0"
+ arrify "^2.0.1"
+ minimatch "^3.0.4"
+
+nan@^2.1.0:
+ version "2.23.0"
+ resolved "https://registry.npmjs.org/nan/-/nan-2.23.0.tgz"
+ integrity sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==
nanoid@^3.3.11:
version "3.3.11"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b"
+ resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz"
integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==
nanomatch@^1.2.9:
version "1.2.13"
- resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
+ resolved "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"
integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
dependencies:
arr-diff "^4.0.0"
@@ -5282,36 +6905,43 @@ nanomatch@^1.2.9:
snapdragon "^0.8.1"
to-regex "^3.0.1"
-negotiator@0.6.3:
- version "0.6.3"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
- integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
+neatequal@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/neatequal/-/neatequal-1.0.0.tgz"
+ integrity sha512-sVt5awO4a4w24QmAthdrCPiVRW3naB8FGLdyadin01BH+6BzNPEBwGrpwCczQvPlULS6uXTItTe1PJ5P0kYm7A==
+ dependencies:
+ varstream "^0.3.2"
negotiator@~0.6.4:
version "0.6.4"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.4.tgz#777948e2452651c570b712dd01c23e262713fff7"
+ resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz"
integrity sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==
+negotiator@0.6.3:
+ version "0.6.3"
+ resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"
+ integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
+
neo-async@^2.6.2:
version "2.6.2"
- resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
+ resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
nice-try@^1.0.4:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
+ resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
no-case@^2.2.0:
version "2.3.2"
- resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac"
+ resolved "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz"
integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==
dependencies:
lower-case "^1.1.1"
no-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
+ resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz"
integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
dependencies:
lower-case "^2.0.2"
@@ -5319,24 +6949,42 @@ no-case@^3.0.4:
node-addon-api@^7.0.0:
version "7.1.1"
- resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558"
+ resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz"
integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==
-node-fetch@^2.6.7, node-fetch@^2.7.0:
+node-fetch@^2.7.0:
version "2.7.0"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
+ resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz"
integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
dependencies:
whatwg-url "^5.0.0"
node-forge@^0.10.0:
version "0.10.0"
- resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3"
+ resolved "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz"
integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
+node-gyp@^3.0.3:
+ version "3.8.0"
+ resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz"
+ integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==
+ dependencies:
+ fstream "^1.0.0"
+ glob "^7.0.3"
+ graceful-fs "^4.1.2"
+ mkdirp "^0.5.0"
+ nopt "2 || 3"
+ npmlog "0 || 1 || 2 || 3 || 4"
+ osenv "0"
+ request "^2.87.0"
+ rimraf "2"
+ semver "~5.3.0"
+ tar "^2.0.0"
+ which "1"
+
node-polyfill-webpack-plugin@^1.1.2:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-1.1.4.tgz#56bfa4d16e17addb9d6b1ef3d04e790c401f5f1d"
+ resolved "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-1.1.4.tgz"
integrity sha512-Z0XTKj1wRWO8o/Vjobsw5iOJCN+Sua3EZEUc2Ziy9CyVvmHKu6o+t4gUH9GOE0czyPR94LI6ZCV/PpcM8b5yow==
dependencies:
assert "^2.0.0"
@@ -5366,82 +7014,107 @@ node-polyfill-webpack-plugin@^1.1.2:
node-releases@^2.0.19:
version "2.0.19"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314"
+ resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz"
integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==
-nopt@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
- integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
+nopt@~3.0.6:
+ version "3.0.6"
+ resolved "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"
+ integrity sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==
+ dependencies:
+ abbrev "1"
+
+nopt@~4.0.1:
+ version "4.0.3"
+ resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz"
+ integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==
+ dependencies:
+ abbrev "1"
+ osenv "^0.1.4"
+
+"nopt@2 || 3":
+ version "3.0.6"
+ resolved "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"
+ integrity sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==
dependencies:
abbrev "1"
normalize-path@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
+ resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"
integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==
dependencies:
remove-trailing-separator "^1.0.1"
normalize-path@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+ resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
normalize-range@^0.1.2:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
+ resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz"
integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
normalize-url@^6.0.1:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a"
+ resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz"
integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==
normalize.css@^8.0.1:
version "8.0.1"
- resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3"
+ resolved "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz"
integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==
npm-run-path@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
+ resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"
integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==
dependencies:
path-key "^2.0.0"
-npmlog@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0"
- integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==
+"npmlog@0 || 1 || 2 || 3 || 4":
+ version "4.1.2"
+ resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"
+ integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
dependencies:
- are-we-there-yet "^2.0.0"
- console-control-strings "^1.1.0"
- gauge "^3.0.0"
- set-blocking "^2.0.0"
+ are-we-there-yet "~1.1.2"
+ console-control-strings "~1.1.0"
+ gauge "~2.7.3"
+ set-blocking "~2.0.0"
nth-check@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
+ resolved "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz"
integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
dependencies:
boolbase "~1.0.0"
nth-check@^2.0.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d"
+ resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz"
integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==
dependencies:
boolbase "^1.0.0"
+number-is-nan@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"
+ integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==
+
+oauth-sign@~0.9.0:
+ version "0.9.0"
+ resolved "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"
+ integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
+
object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+ resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
object-copy@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
+ resolved "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"
integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==
dependencies:
copy-descriptor "^0.1.0"
@@ -5450,12 +7123,12 @@ object-copy@^0.1.0:
object-inspect@^1.13.3, object-inspect@^1.13.4:
version "1.13.4"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213"
+ resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz"
integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==
object-is@^1.1.5:
version "1.1.6"
- resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.6.tgz#1a6a53aed2dd8f7e6775ff870bea58545956ab07"
+ resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz"
integrity sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==
dependencies:
call-bind "^1.0.7"
@@ -5463,19 +7136,19 @@ object-is@^1.1.5:
object-keys@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
+ resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
object-visit@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
+ resolved "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"
integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==
dependencies:
isobject "^3.0.0"
object.assign@^4.1.4, object.assign@^4.1.7:
version "4.1.7"
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz#8c14ca1a424c6a561b0bb2a22f66f5049a945d3d"
+ resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz"
integrity sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==
dependencies:
call-bind "^1.0.8"
@@ -5485,9 +7158,19 @@ object.assign@^4.1.4, object.assign@^4.1.7:
has-symbols "^1.1.0"
object-keys "^1.1.1"
+object.defaults@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz"
+ integrity sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==
+ dependencies:
+ array-each "^1.0.1"
+ array-slice "^1.0.0"
+ for-own "^1.0.0"
+ isobject "^3.0.0"
+
object.getownpropertydescriptors@^2.1.0:
version "2.1.8"
- resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz#2f1fe0606ec1a7658154ccd4f728504f69667923"
+ resolved "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz"
integrity sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==
dependencies:
array.prototype.reduce "^1.0.6"
@@ -5498,16 +7181,24 @@ object.getownpropertydescriptors@^2.1.0:
gopd "^1.0.1"
safe-array-concat "^1.1.2"
-object.pick@^1.3.0:
+object.map@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz"
+ integrity sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==
+ dependencies:
+ for-own "^1.0.0"
+ make-iterator "^1.0.0"
+
+object.pick@^1.2.0, object.pick@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
+ resolved "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"
integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==
dependencies:
isobject "^3.0.1"
object.values@^1.1.0:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz#deed520a50809ff7f75a7cfd4bc64c7a038c6216"
+ resolved "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz"
integrity sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==
dependencies:
call-bind "^1.0.8"
@@ -5517,48 +7208,75 @@ object.values@^1.1.0:
obuf@^1.0.0, obuf@^1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
+ resolved "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz"
integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
on-finished@2.4.1:
version "2.4.1"
- resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f"
+ resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz"
integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==
dependencies:
ee-first "1.1.1"
on-headers@~1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
+ resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"
integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
once@^1.3.0, once@^1.3.1, once@^1.4.0:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
dependencies:
wrappy "1"
+open@^8.4.0:
+ version "8.4.2"
+ resolved "https://registry.npmjs.org/open/-/open-8.4.2.tgz"
+ integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
+ dependencies:
+ define-lazy-prop "^2.0.0"
+ is-docker "^2.1.1"
+ is-wsl "^2.2.0"
+
opener@^1.5.2:
version "1.5.2"
- resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
+ resolved "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz"
integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
opn@^5.5.0:
version "5.5.0"
- resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
+ resolved "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz"
integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==
dependencies:
is-wsl "^1.1.0"
os-browserify@^0.3.0:
version "0.3.0"
- resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
+ resolved "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz"
integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==
+os-homedir@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"
+ integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==
+
+os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"
+ integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==
+
+osenv@^0.1.4, osenv@0:
+ version "0.1.5"
+ resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz"
+ integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
+ dependencies:
+ os-homedir "^1.0.0"
+ os-tmpdir "^1.0.0"
+
own-keys@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz#e4006910a2bf913585289676eebd6f390cf51358"
+ resolved "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz"
integrity sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==
dependencies:
get-intrinsic "^1.2.6"
@@ -5567,76 +7285,98 @@ own-keys@^1.0.1:
p-finally@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
+ resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"
integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
-p-limit@^2.0.0, p-limit@^2.2.0:
+p-limit@^2.0.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
+ resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
+ integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
+ dependencies:
+ p-try "^2.0.0"
+
+p-limit@^2.2.0:
+ version "2.3.0"
+ resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
dependencies:
p-try "^2.0.0"
p-limit@^3.0.2:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+ resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
dependencies:
yocto-queue "^0.1.0"
p-locate@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
+ resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"
integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
dependencies:
p-limit "^2.0.0"
p-locate@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
+ resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
dependencies:
p-limit "^2.2.0"
p-locate@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
+ resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"
integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
dependencies:
p-limit "^3.0.2"
p-map@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
+ resolved "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz"
integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
+p-queue@^6.6.2:
+ version "6.6.2"
+ resolved "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz"
+ integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==
+ dependencies:
+ eventemitter3 "^4.0.4"
+ p-timeout "^3.2.0"
+
p-retry@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328"
+ resolved "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz"
integrity sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==
dependencies:
retry "^0.12.0"
+p-timeout@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz"
+ integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
+ dependencies:
+ p-finally "^1.0.0"
+
p-try@^2.0.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
+ resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-pako@~1.0.5:
+pako@^1.0.0, pako@~1.0.5:
version "1.0.11"
- resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
+ resolved "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz"
integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
param-case@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247"
+ resolved "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz"
integrity sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==
dependencies:
no-case "^2.2.0"
param-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
+ resolved "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz"
integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
dependencies:
dot-case "^3.0.4"
@@ -5644,14 +7384,14 @@ param-case@^3.0.4:
parent-module@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+ resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
dependencies:
callsites "^3.0.0"
parse-asn1@^5.0.0, parse-asn1@^5.1.7:
version "5.1.7"
- resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.7.tgz#73cdaaa822125f9647165625eb45f8a051d2df06"
+ resolved "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.7.tgz"
integrity sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==
dependencies:
asn1.js "^4.10.1"
@@ -5661,9 +7401,18 @@ parse-asn1@^5.0.0, parse-asn1@^5.1.7:
pbkdf2 "^3.1.2"
safe-buffer "^5.2.1"
+parse-filepath@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz"
+ integrity sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==
+ dependencies:
+ is-absolute "^1.0.0"
+ map-cache "^0.2.0"
+ path-root "^0.1.1"
+
parse-json@^5.0.0, parse-json@^5.2.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
+ resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"
integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
dependencies:
"@babel/code-frame" "^7.0.0"
@@ -5671,14 +7420,24 @@ parse-json@^5.0.0, parse-json@^5.2.0:
json-parse-even-better-errors "^2.3.0"
lines-and-columns "^1.1.6"
+parse-ms@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz"
+ integrity sha512-LpH1Cf5EYuVjkBvCDBYvkUPh+iv2bk3FHflxHkpCYT0/FZ1d3N3uJaLiHr4yGuMcFUhv6eAivitTvWZI4B/chg==
+
+parse-passwd@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz"
+ integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==
+
parseurl@~1.3.2, parseurl@~1.3.3:
version "1.3.3"
- resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+ resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"
integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
pascal-case@^3.1.2:
version "3.1.2"
- resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb"
+ resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz"
integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==
dependencies:
no-case "^3.0.4"
@@ -5686,74 +7445,96 @@ pascal-case@^3.1.2:
pascalcase@^0.1.1:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
+ resolved "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"
integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==
path-browserify@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd"
+ resolved "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz"
integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==
path-dirname@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
+ resolved "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz"
integrity sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==
path-exists@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
+ resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"
integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==
path-exists@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+ resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
-path-is-absolute@^1.0.0:
+path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+ resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
path-is-inside@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
+ resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"
integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==
-path-key@^2.0.0, path-key@^2.0.1:
+path-key@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
+ resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"
integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
+path-key@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"
+ integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
+
+path-key@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
+ integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+
path-parse@^1.0.7:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
+ resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
+path-root-regex@^0.1.0:
+ version "0.1.2"
+ resolved "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz"
+ integrity sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==
+
+path-root@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz"
+ integrity sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==
+ dependencies:
+ path-root-regex "^0.1.0"
+
path-to-regexp@0.1.12:
version "0.1.12"
- resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz#d5e1a12e478a976d432ef3c58d534b9923164bb7"
+ resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz"
integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==
path-type@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+ resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
path2d-polyfill@^2.0.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/path2d-polyfill/-/path2d-polyfill-2.1.1.tgz#6098b7bf2fc24c306c6377bcd558b17ba437ea27"
+ resolved "https://registry.npmjs.org/path2d-polyfill/-/path2d-polyfill-2.1.1.tgz"
integrity sha512-4Rka5lN+rY/p0CdD8+E+BFv51lFaFvJOrlOhyQ+zjzyQrzyh3ozmxd1vVGGDdIbUFSBtIZLSnspxTgPT0iJhvA==
dependencies:
path2d "0.1.1"
path2d@0.1.1:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/path2d/-/path2d-0.1.1.tgz#d3c3886cd2252fb2a7830c27ea7bb9a862d937ea"
+ resolved "https://registry.npmjs.org/path2d/-/path2d-0.1.1.tgz"
integrity sha512-/+S03c8AGsDYKKBtRDqieTJv2GlkMb0bWjnqOgtF6MkjdUQ9a8ARAtxWf9NgKLGm2+WQr6+/tqJdU8HNGsIDoA==
pbkdf2@^3.1.2:
version "3.1.3"
- resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.3.tgz#8be674d591d65658113424592a95d1517318dd4b"
+ resolved "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.3.tgz"
integrity sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==
dependencies:
create-hash "~1.1.3"
@@ -5765,7 +7546,7 @@ pbkdf2@^3.1.2:
pdfjs-dist@3.4.120:
version "3.4.120"
- resolved "https://registry.yarnpkg.com/pdfjs-dist/-/pdfjs-dist-3.4.120.tgz#6f4222117157498f179c95dc4569fad6336a8fdd"
+ resolved "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-3.4.120.tgz"
integrity sha512-B1hw9ilLG4m/jNeFA0C2A0PZydjxslP8ylU+I4XM7Bzh/xWETo9EiBV848lh0O0hLut7T6lK1V7cpAXv5BhxWw==
dependencies:
path2d-polyfill "^2.0.1"
@@ -5773,60 +7554,92 @@ pdfjs-dist@3.4.120:
optionalDependencies:
canvas "^2.11.0"
+perf-regexes@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/perf-regexes/-/perf-regexes-1.0.1.tgz"
+ integrity sha512-L7MXxUDtqr4PUaLFCDCXBfGV/6KLIuSEccizDI7JxT+c9x1G1v04BQ4+4oag84SHaCdrBgQAIs/Cqn+flwFPng==
+
+performance-now@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"
+ integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==
+
picocolors@^1.0.0, picocolors@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
+ resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz"
integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
-picomatch@^2.0.4, picomatch@^2.3.1:
+picomatch@^2.0.4, picomatch@^2.2.2, picomatch@^2.3.1:
version "2.3.1"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
+ resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
picomatch@^4.0.2:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.2.tgz#77c742931e8f3b8820946c76cd0c1f13730d1dab"
+ resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz"
integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==
pify@^2.0.0, pify@^2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
+ resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"
integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
pify@^4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+ resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+pify@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz"
+ integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==
+
pinkie-promise@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
+ resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"
integrity sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==
dependencies:
pinkie "^2.0.0"
pinkie@^2.0.0:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
+ resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"
integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==
+pirates@^4.0.6:
+ version "4.0.7"
+ resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz"
+ integrity sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==
+
pkg-dir@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
+ resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz"
integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
dependencies:
find-up "^3.0.0"
pkg-dir@^4.1.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
+ resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
dependencies:
find-up "^4.0.0"
+pkg-up@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz"
+ integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
+ dependencies:
+ find-up "^3.0.0"
+
+plur@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/plur/-/plur-1.0.0.tgz"
+ integrity sha512-qSnKBSZeDY8ApxwhfVIwKwF36KVJqb1/9nzYYq3j3vdwocULCXT8f8fQGkiw1Nk9BGfxiDagEe/pwakA+bOBqw==
+
portfinder@^1.0.26:
version "1.0.37"
- resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.37.tgz#92b754ef89a11801c8efe4b0e5cd845b0064c212"
+ resolved "https://registry.npmjs.org/portfinder/-/portfinder-1.0.37.tgz"
integrity sha512-yuGIEjDAYnnOex9ddMnKZEMFE0CcGo6zbfzDklkmT1m5z734ss6JMzN9rNB3+RR7iS+F10D4/BVIaXOyh8PQKw==
dependencies:
async "^3.2.6"
@@ -5834,17 +7647,17 @@ portfinder@^1.0.26:
posix-character-classes@^0.1.0:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
+ resolved "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"
integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==
possible-typed-array-names@^1.0.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz#93e3582bc0e5426586d9d07b79ee40fc841de4ae"
+ resolved "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz"
integrity sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==
postcss-calc@^8.2.3:
version "8.2.4"
- resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5"
+ resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz"
integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==
dependencies:
postcss-selector-parser "^6.0.9"
@@ -5852,7 +7665,7 @@ postcss-calc@^8.2.3:
postcss-colormin@^5.3.1:
version "5.3.1"
- resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f"
+ resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz"
integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==
dependencies:
browserslist "^4.21.4"
@@ -5862,7 +7675,7 @@ postcss-colormin@^5.3.1:
postcss-convert-values@^5.1.3:
version "5.1.3"
- resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393"
+ resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz"
integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==
dependencies:
browserslist "^4.21.4"
@@ -5870,36 +7683,44 @@ postcss-convert-values@^5.1.3:
postcss-discard-comments@^5.1.2:
version "5.1.2"
- resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696"
+ resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz"
integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==
postcss-discard-duplicates@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848"
+ resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz"
integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==
postcss-discard-empty@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c"
+ resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz"
integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==
postcss-discard-overridden@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e"
+ resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz"
integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==
postcss-import@^14.0.2:
version "14.1.0"
- resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0"
+ resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz"
integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==
dependencies:
postcss-value-parser "^4.0.0"
read-cache "^1.0.0"
resolve "^1.1.7"
+postcss-load-config@^3.0.0:
+ version "3.1.4"
+ resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz"
+ integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==
+ dependencies:
+ lilconfig "^2.0.5"
+ yaml "^1.10.2"
+
postcss-loader@^6.1.0:
version "6.2.1"
- resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-6.2.1.tgz#0895f7346b1702103d30fdc66e4d494a93c008ef"
+ resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz"
integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==
dependencies:
cosmiconfig "^7.0.0"
@@ -5908,7 +7729,7 @@ postcss-loader@^6.1.0:
postcss-loader@^8.1.1:
version "8.1.1"
- resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-8.1.1.tgz#2822589e7522927344954acb55bbf26e8b195dfe"
+ resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-8.1.1.tgz"
integrity sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==
dependencies:
cosmiconfig "^9.0.0"
@@ -5917,7 +7738,7 @@ postcss-loader@^8.1.1:
postcss-merge-longhand@^5.1.7:
version "5.1.7"
- resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16"
+ resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz"
integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==
dependencies:
postcss-value-parser "^4.2.0"
@@ -5925,7 +7746,7 @@ postcss-merge-longhand@^5.1.7:
postcss-merge-rules@^5.1.4:
version "5.1.4"
- resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c"
+ resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz"
integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==
dependencies:
browserslist "^4.21.4"
@@ -5935,14 +7756,14 @@ postcss-merge-rules@^5.1.4:
postcss-minify-font-values@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b"
+ resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz"
integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==
dependencies:
postcss-value-parser "^4.2.0"
postcss-minify-gradients@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c"
+ resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz"
integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==
dependencies:
colord "^2.9.1"
@@ -5951,7 +7772,7 @@ postcss-minify-gradients@^5.1.1:
postcss-minify-params@^5.1.4:
version "5.1.4"
- resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352"
+ resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz"
integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==
dependencies:
browserslist "^4.21.4"
@@ -5960,19 +7781,19 @@ postcss-minify-params@^5.1.4:
postcss-minify-selectors@^5.2.1:
version "5.2.1"
- resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6"
+ resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz"
integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==
dependencies:
postcss-selector-parser "^6.0.5"
postcss-modules-extract-imports@^3.0.0, postcss-modules-extract-imports@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz#b4497cb85a9c0c4b5aabeb759bb25e8d89f15002"
+ resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz"
integrity sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==
postcss-modules-local-by-default@^4.0.0, postcss-modules-local-by-default@^4.0.5:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz#d150f43837831dae25e4085596e84f6f5d6ec368"
+ resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz"
integrity sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==
dependencies:
icss-utils "^5.0.0"
@@ -5981,21 +7802,21 @@ postcss-modules-local-by-default@^4.0.0, postcss-modules-local-by-default@^4.0.5
postcss-modules-scope@^3.0.0, postcss-modules-scope@^3.2.0:
version "3.2.1"
- resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz#1bbccddcb398f1d7a511e0a2d1d047718af4078c"
+ resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz"
integrity sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==
dependencies:
postcss-selector-parser "^7.0.0"
postcss-modules-values@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
+ resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz"
integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==
dependencies:
icss-utils "^5.0.0"
-postcss-modules@^4.1.3:
+postcss-modules@^4.0.0, postcss-modules@^4.1.3:
version "4.3.1"
- resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-4.3.1.tgz#517c06c09eab07d133ae0effca2c510abba18048"
+ resolved "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.3.1.tgz"
integrity sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==
dependencies:
generic-names "^4.0.0"
@@ -6009,54 +7830,54 @@ postcss-modules@^4.1.3:
postcss-nested@^5.0.5:
version "5.0.6"
- resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc"
+ resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz"
integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==
dependencies:
postcss-selector-parser "^6.0.6"
postcss-normalize-charset@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed"
+ resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz"
integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==
postcss-normalize-display-values@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8"
+ resolved "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz"
integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==
dependencies:
postcss-value-parser "^4.2.0"
postcss-normalize-positions@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92"
+ resolved "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz"
integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==
dependencies:
postcss-value-parser "^4.2.0"
postcss-normalize-repeat-style@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2"
+ resolved "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz"
integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==
dependencies:
postcss-value-parser "^4.2.0"
postcss-normalize-string@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228"
+ resolved "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz"
integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==
dependencies:
postcss-value-parser "^4.2.0"
postcss-normalize-timing-functions@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb"
+ resolved "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz"
integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==
dependencies:
postcss-value-parser "^4.2.0"
postcss-normalize-unicode@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030"
+ resolved "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz"
integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==
dependencies:
browserslist "^4.21.4"
@@ -6064,7 +7885,7 @@ postcss-normalize-unicode@^5.1.1:
postcss-normalize-url@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc"
+ resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz"
integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==
dependencies:
normalize-url "^6.0.1"
@@ -6072,14 +7893,14 @@ postcss-normalize-url@^5.1.0:
postcss-normalize-whitespace@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa"
+ resolved "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz"
integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==
dependencies:
postcss-value-parser "^4.2.0"
postcss-ordered-values@^5.1.3:
version "5.1.3"
- resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38"
+ resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz"
integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==
dependencies:
cssnano-utils "^3.1.0"
@@ -6087,7 +7908,7 @@ postcss-ordered-values@^5.1.3:
postcss-reduce-initial@^5.1.2:
version "5.1.2"
- resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6"
+ resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz"
integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==
dependencies:
browserslist "^4.21.4"
@@ -6095,21 +7916,21 @@ postcss-reduce-initial@^5.1.2:
postcss-reduce-transforms@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9"
+ resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz"
integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==
dependencies:
postcss-value-parser "^4.2.0"
postcss-scss@^3.0.5:
version "3.0.5"
- resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-3.0.5.tgz#bd484faf05890e48a6f5e097acb3d104cc7b9ac7"
+ resolved "https://registry.npmjs.org/postcss-scss/-/postcss-scss-3.0.5.tgz"
integrity sha512-3e0qYk87eczfzg5P73ZVuuxEGCBfatRhPze6KrSaIbEKVtmnFI1RYp1Fv+AyZi+w8kcNRSPeNX6ap4b65zEkiA==
dependencies:
postcss "^8.2.7"
postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.6, postcss-selector-parser@^6.0.9:
version "6.1.2"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de"
+ resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz"
integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
dependencies:
cssesc "^3.0.0"
@@ -6117,7 +7938,7 @@ postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector
postcss-selector-parser@^7.0.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz#4d6af97eba65d73bc4d84bcb343e865d7dd16262"
+ resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz"
integrity sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==
dependencies:
cssesc "^3.0.0"
@@ -6125,7 +7946,7 @@ postcss-selector-parser@^7.0.0:
postcss-svgo@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d"
+ resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz"
integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==
dependencies:
postcss-value-parser "^4.2.0"
@@ -6133,19 +7954,19 @@ postcss-svgo@^5.1.0:
postcss-unique-selectors@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6"
+ resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz"
integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==
dependencies:
postcss-selector-parser "^6.0.5"
postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
+ resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
postcss@^8.2.15, postcss@^8.2.7, postcss@^8.3.2, postcss@^8.3.5, postcss@^8.4.33:
version "8.5.6"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.6.tgz#2825006615a619b4f62a9e7426cc120b349a8f3c"
+ resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz"
integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==
dependencies:
nanoid "^3.3.11"
@@ -6154,30 +7975,49 @@ postcss@^8.2.15, postcss@^8.2.7, postcss@^8.3.2, postcss@^8.3.5, postcss@^8.4.33
prettier@^3.5.3:
version "3.6.2"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz#ccda02a1003ebbb2bfda6f83a074978f608b9393"
+ resolved "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz"
integrity sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==
pretty-error@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6"
+ resolved "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz"
integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==
dependencies:
lodash "^4.17.20"
renderkid "^3.0.0"
+pretty-ms@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz"
+ integrity sha512-H2enpsxzDhuzRl3zeSQpQMirn8dB0Z/gxW96j06tMfTviUWvX14gjKb7qd1gtkUyYhDPuoNe00K5PqNvy2oQNg==
+ dependencies:
+ is-finite "^1.0.1"
+ parse-ms "^1.0.0"
+ plur "^1.0.0"
+
+private@^0.1.6, private@^0.1.8:
+ version "0.1.8"
+ resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz"
+ integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
+
+process-nextick-args@~1.0.6:
+ version "1.0.7"
+ resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz"
+ integrity sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw==
+
process-nextick-args@~2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+ resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
process@^0.11.10:
version "0.11.10"
- resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
+ resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz"
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
progress-bar-webpack-plugin@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/progress-bar-webpack-plugin/-/progress-bar-webpack-plugin-2.1.0.tgz#f7f8c8c461f40b87a8ff168443f494289b07ee65"
+ resolved "https://registry.npmjs.org/progress-bar-webpack-plugin/-/progress-bar-webpack-plugin-2.1.0.tgz"
integrity sha512-UtlZbnxpYk1wufEWfhIjRn2U52zlY38uvnzFhs8rRxJxC1hSqw88JNR2Mbpqq9Kix8L1nGb3uQ+/1BiUWbigAg==
dependencies:
chalk "^3.0.0"
@@ -6185,19 +8025,24 @@ progress-bar-webpack-plugin@^2.1.0:
progress@^2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
+ resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
+promise.series@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.npmjs.org/promise.series/-/promise.series-0.2.0.tgz"
+ integrity sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==
+
promise@^7.1.1:
version "7.3.1"
- resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
+ resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"
integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==
dependencies:
asap "~2.0.3"
prop-types@^15.5.8, prop-types@^15.8.1:
version "15.8.1"
- resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
+ resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
dependencies:
loose-envify "^1.4.0"
@@ -6206,7 +8051,7 @@ prop-types@^15.5.8, prop-types@^15.8.1:
proxy-addr@~2.0.7:
version "2.0.7"
- resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
+ resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz"
integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==
dependencies:
forwarded "0.2.0"
@@ -6214,17 +8059,24 @@ proxy-addr@~2.0.7:
proxy-from-env@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
+ resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz"
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
prr@~1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
+ resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"
integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==
+psl@^1.1.28:
+ version "1.15.0"
+ resolved "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz"
+ integrity sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==
+ dependencies:
+ punycode "^2.3.1"
+
public-encrypt@^4.0.3:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
+ resolved "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz"
integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
dependencies:
bn.js "^4.1.0"
@@ -6236,7 +8088,7 @@ public-encrypt@^4.0.3:
pump@^3.0.0:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d"
+ resolved "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz"
integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==
dependencies:
end-of-stream "^1.1.0"
@@ -6244,53 +8096,63 @@ pump@^3.0.0:
punycode@^1.4.1:
version "1.4.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
+ resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"
integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==
-punycode@^2.1.0, punycode@^2.1.1:
+punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1:
version "2.3.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
+ resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz"
integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
q@^1.1.2:
version "1.5.1"
- resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
+ resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz"
integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
-qs@6.13.0:
- version "6.13.0"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906"
- integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==
- dependencies:
- side-channel "^1.0.6"
-
-qs@^6.12.3:
+qs@^6.12.3, qs@^6.4.0:
version "6.14.0"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.14.0.tgz#c63fa40680d2c5c941412a0e899c89af60c0a930"
+ resolved "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz"
integrity sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==
dependencies:
side-channel "^1.1.0"
+qs@~6.5.2:
+ version "6.5.3"
+ resolved "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz"
+ integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==
+
+qs@6.13.0:
+ version "6.13.0"
+ resolved "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz"
+ integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==
+ dependencies:
+ side-channel "^1.0.6"
+
querystring-es3@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
+ resolved "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz"
integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==
querystringify@^2.1.1:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
+ resolved "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz"
integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
+queue-microtask@^1.2.2:
+ version "1.2.3"
+ resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
+ integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
+
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
+ resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"
integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
dependencies:
safe-buffer "^5.1.0"
randomfill@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
+ resolved "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz"
integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
dependencies:
randombytes "^2.0.5"
@@ -6298,12 +8160,20 @@ randomfill@^1.0.4:
range-parser@^1.2.1, range-parser@~1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+ resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+raw-body@~1.1.0:
+ version "1.1.7"
+ resolved "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz"
+ integrity sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==
+ dependencies:
+ bytes "1"
+ string_decoder "0.10"
+
raw-body@2.5.2:
version "2.5.2"
- resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a"
+ resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz"
integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==
dependencies:
bytes "3.1.2"
@@ -6313,7 +8183,7 @@ raw-body@2.5.2:
react-dom@^17.0.2:
version "17.0.2"
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
+ resolved "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz"
integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
dependencies:
loose-envify "^1.1.0"
@@ -6322,12 +8192,12 @@ react-dom@^17.0.2:
react-is@^16.13.1:
version "16.13.1"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
+ resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
react-mentions@^4.3.1:
version "4.4.10"
- resolved "https://registry.yarnpkg.com/react-mentions/-/react-mentions-4.4.10.tgz#ae6c1e310a405597e83ce786f12c5bfb93b097ce"
+ resolved "https://registry.npmjs.org/react-mentions/-/react-mentions-4.4.10.tgz"
integrity sha512-JHiQlgF1oSZR7VYPjq32wy97z1w1oE4x10EuhKjPr4WUKhVzG1uFQhQjKqjQkbVqJrmahf+ldgBTv36NrkpKpA==
dependencies:
"@babel/runtime" "7.4.5"
@@ -6337,7 +8207,7 @@ react-mentions@^4.3.1:
react@^17.0.2:
version "17.0.2"
- resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
+ resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz"
integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
dependencies:
loose-envify "^1.1.0"
@@ -6345,14 +8215,76 @@ react@^17.0.2:
read-cache@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
+ resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz"
integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==
dependencies:
pify "^2.3.0"
-readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.3.8:
+readable-stream@^1.0.33:
+ version "1.1.14"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"
+ integrity sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.1"
+ isarray "0.0.1"
+ string_decoder "~0.10.x"
+
+readable-stream@^2.0.1:
version "2.3.8"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~2.0.0"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.1.1"
+ util-deprecate "~1.0.1"
+
+readable-stream@^2.0.2:
+ version "2.3.8"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~2.0.0"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.1.1"
+ util-deprecate "~1.0.1"
+
+readable-stream@^2.0.4:
+ version "2.3.8"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~2.0.0"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.1.1"
+ util-deprecate "~1.0.1"
+
+readable-stream@^2.0.6:
+ version "2.3.8"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~2.0.0"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.1.1"
+ util-deprecate "~1.0.1"
+
+readable-stream@^2.3.8:
+ version "2.3.8"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
dependencies:
core-util-is "~1.0.0"
@@ -6365,16 +8297,28 @@ readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.3.8:
readable-stream@^3.0.6, readable-stream@^3.5.0, readable-stream@^3.6.0:
version "3.6.2"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz"
integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
dependencies:
inherits "^2.0.3"
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
+readable-stream@~2.0.4:
+ version "2.0.6"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"
+ integrity sha512-TXcFfb63BQe1+ySzsHZI/5v1aJPCShfqvWJ64ayNImXMsN1Cd0YGk/wm8KB7/OeessgPc9QvS9Zou8QTkFzsLw==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.1"
+ isarray "~1.0.0"
+ process-nextick-args "~1.0.6"
+ string_decoder "~0.10.x"
+ util-deprecate "~1.0.1"
+
readdirp@^2.2.1:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
+ resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz"
integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
dependencies:
graceful-fs "^4.1.11"
@@ -6383,12 +8327,19 @@ readdirp@^2.2.1:
readdirp@^4.0.1:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.2.tgz#eb85801435fbf2a7ee58f19e0921b068fc69948d"
+ resolved "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz"
integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==
+rechoir@^0.7.0:
+ version "0.7.1"
+ resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz"
+ integrity sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==
+ dependencies:
+ resolve "^1.9.0"
+
reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.9:
version "1.0.10"
- resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz#c629219e78a3316d8b604c765ef68996964e7bf9"
+ resolved "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz"
integrity sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==
dependencies:
call-bind "^1.0.8"
@@ -6402,24 +8353,43 @@ reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.9:
regenerate-unicode-properties@^10.2.0:
version "10.2.0"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz#626e39df8c372338ea9b8028d1f99dc3fd9c3db0"
+ resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz"
integrity sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==
dependencies:
regenerate "^1.4.2"
-regenerate@^1.4.2:
+regenerate@^1.2.1, regenerate@^1.4.2:
version "1.4.2"
- resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
+ resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
+regenerator-runtime@^0.10.5:
+ version "0.10.5"
+ resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz"
+ integrity sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==
+
+regenerator-runtime@^0.11.0:
+ version "0.11.1"
+ resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"
+ integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
+
regenerator-runtime@^0.13.2:
version "0.13.11"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+ resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
+regenerator-transform@^0.10.0:
+ version "0.10.1"
+ resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz"
+ integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==
+ dependencies:
+ babel-runtime "^6.18.0"
+ babel-types "^6.19.0"
+ private "^0.1.6"
+
regex-not@^1.0.0, regex-not@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
+ resolved "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"
integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
dependencies:
extend-shallow "^3.0.2"
@@ -6427,7 +8397,7 @@ regex-not@^1.0.0, regex-not@^1.0.2:
regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.4:
version "1.5.4"
- resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz#1ad6c62d44a259007e55b3970e00f746efbcaa19"
+ resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz"
integrity sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==
dependencies:
call-bind "^1.0.8"
@@ -6437,9 +8407,18 @@ regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.4:
gopd "^1.2.0"
set-function-name "^2.0.2"
+regexpu-core@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz"
+ integrity sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ==
+ dependencies:
+ regenerate "^1.2.1"
+ regjsgen "^0.2.0"
+ regjsparser "^0.1.4"
+
regexpu-core@^6.2.0:
version "6.2.0"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-6.2.0.tgz#0e5190d79e542bf294955dccabae04d3c7d53826"
+ resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz"
integrity sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==
dependencies:
regenerate "^1.4.2"
@@ -6449,31 +8428,43 @@ regexpu-core@^6.2.0:
unicode-match-property-ecmascript "^2.0.0"
unicode-match-property-value-ecmascript "^2.1.0"
+regjsgen@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz"
+ integrity sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g==
+
regjsgen@^0.8.0:
version "0.8.0"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.8.0.tgz#df23ff26e0c5b300a6470cad160a9d090c3a37ab"
+ resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz"
integrity sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==
+regjsparser@^0.1.4:
+ version "0.1.5"
+ resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz"
+ integrity sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw==
+ dependencies:
+ jsesc "~0.5.0"
+
regjsparser@^0.12.0:
version "0.12.0"
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.12.0.tgz#0e846df6c6530586429377de56e0475583b088dc"
+ resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz"
integrity sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==
dependencies:
jsesc "~3.0.2"
relateurl@^0.2.7:
version "0.2.7"
- resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
+ resolved "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz"
integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==
remove-trailing-separator@^1.0.1:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
+ resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"
integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==
renderkid@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a"
+ resolved "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz"
integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==
dependencies:
css-select "^4.1.3"
@@ -6484,59 +8475,112 @@ renderkid@^3.0.0:
repeat-element@^1.1.2:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9"
+ resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz"
integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==
repeat-string@^1.6.1:
version "1.6.1"
- resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
+ resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"
integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==
+repeating@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"
+ integrity sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==
+ dependencies:
+ is-finite "^1.0.0"
+
+request@^2.87.0:
+ version "2.88.2"
+ resolved "https://registry.npmjs.org/request/-/request-2.88.2.tgz"
+ integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
+ dependencies:
+ aws-sign2 "~0.7.0"
+ aws4 "^1.8.0"
+ caseless "~0.12.0"
+ combined-stream "~1.0.6"
+ extend "~3.0.2"
+ forever-agent "~0.6.1"
+ form-data "~2.3.2"
+ har-validator "~5.1.3"
+ http-signature "~1.2.0"
+ is-typedarray "~1.0.0"
+ isstream "~0.1.2"
+ json-stringify-safe "~5.0.1"
+ mime-types "~2.1.19"
+ oauth-sign "~0.9.0"
+ performance-now "^2.1.0"
+ qs "~6.5.2"
+ safe-buffer "^5.1.2"
+ tough-cookie "~2.5.0"
+ tunnel-agent "^0.6.0"
+ uuid "^3.3.2"
+
require-directory@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
+ resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
require-from-string@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
+ resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
require-main-filename@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
+ resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
requires-port@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
+ resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"
integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
resolve-cwd@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
+ resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz"
integrity sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==
dependencies:
resolve-from "^3.0.0"
+resolve-dir@^1.0.0, resolve-dir@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz"
+ integrity sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==
+ dependencies:
+ expand-tilde "^2.0.0"
+ global-modules "^1.0.0"
+
resolve-from@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
+ resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz"
integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==
resolve-from@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+ resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+resolve-from@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
+ integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
+
+resolve-pkg@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/resolve-pkg/-/resolve-pkg-2.0.0.tgz"
+ integrity sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ==
+ dependencies:
+ resolve-from "^5.0.0"
+
resolve-url@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
+ resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"
integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
-resolve@^1.1.7, resolve@^1.22.10:
+resolve@^1.1.7, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.22.10, resolve@^1.9.0:
version "1.22.10"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39"
+ resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz"
integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==
dependencies:
is-core-module "^2.16.0"
@@ -6545,47 +8589,141 @@ resolve@^1.1.7, resolve@^1.22.10:
ret@~0.1.10:
version "0.1.15"
- resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
+ resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
retry@^0.12.0:
version "0.12.0"
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
+ resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz"
integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
+reusify@^1.0.4:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz"
+ integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==
+
rimraf@^2.6.3:
version "2.7.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
+ resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
dependencies:
glob "^7.1.3"
rimraf@^3.0.2:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
dependencies:
glob "^7.1.3"
-ripemd160@=2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7"
- integrity sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w==
+rimraf@2:
+ version "2.7.1"
+ resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"
+ integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
dependencies:
- hash-base "^2.0.0"
- inherits "^2.0.1"
+ glob "^7.1.3"
ripemd160@^2.0.0, ripemd160@^2.0.1:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
+ resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz"
integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
dependencies:
hash-base "^3.0.0"
inherits "^2.0.1"
+ripemd160@=2.0.1:
+ version "2.0.1"
+ resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz"
+ integrity sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w==
+ dependencies:
+ hash-base "^2.0.0"
+ inherits "^2.0.1"
+
+rollup-plugin-babel@^4.3.3:
+ version "4.4.0"
+ resolved "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz"
+ integrity sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==
+ dependencies:
+ "@babel/helper-module-imports" "^7.0.0"
+ rollup-pluginutils "^2.8.1"
+
+rollup-plugin-cleanup@^3.2.1:
+ version "3.2.1"
+ resolved "https://registry.npmjs.org/rollup-plugin-cleanup/-/rollup-plugin-cleanup-3.2.1.tgz"
+ integrity sha512-zuv8EhoO3TpnrU8MX8W7YxSbO4gmOR0ny06Lm3nkFfq0IVKdBUtHwhVzY1OAJyNCIAdLiyPnOrU0KnO0Fri1GQ==
+ dependencies:
+ js-cleanup "^1.2.0"
+ rollup-pluginutils "^2.8.2"
+
+rollup-plugin-gzip@^2.5.0:
+ version "2.5.1"
+ resolved "https://registry.npmjs.org/rollup-plugin-gzip/-/rollup-plugin-gzip-2.5.1.tgz"
+ integrity sha512-l9h3g0imsGvhjcSsxNRLHNW/gqRSSgaJLCKKWYeRclPHvDMDewmI43ZyiGJ3nc3+sZNy1pJnWzB3Bvm+tJI2jQ==
+
+rollup-plugin-postcss@^4.0.0:
+ version "4.0.2"
+ resolved "https://registry.npmjs.org/rollup-plugin-postcss/-/rollup-plugin-postcss-4.0.2.tgz"
+ integrity sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==
+ dependencies:
+ chalk "^4.1.0"
+ concat-with-sourcemaps "^1.1.0"
+ cssnano "^5.0.1"
+ import-cwd "^3.0.0"
+ p-queue "^6.6.2"
+ pify "^5.0.0"
+ postcss-load-config "^3.0.0"
+ postcss-modules "^4.0.0"
+ promise.series "^0.2.0"
+ resolve "^1.19.0"
+ rollup-pluginutils "^2.8.2"
+ safe-identifier "^0.4.2"
+ style-inject "^0.3.0"
+
+rollup-plugin-typescript2@^0.34.1:
+ version "0.34.1"
+ resolved "https://registry.npmjs.org/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.34.1.tgz"
+ integrity sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==
+ dependencies:
+ "@rollup/pluginutils" "^4.1.2"
+ find-cache-dir "^3.3.2"
+ fs-extra "^10.0.0"
+ semver "^7.3.7"
+ tslib "^2.4.0"
+
+rollup-plugin-visualizer@^5.5.0:
+ version "5.14.0"
+ resolved "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.14.0.tgz"
+ integrity sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==
+ dependencies:
+ open "^8.4.0"
+ picomatch "^4.0.2"
+ source-map "^0.7.4"
+ yargs "^17.5.1"
+
+rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2:
+ version "2.8.2"
+ resolved "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz"
+ integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
+ dependencies:
+ estree-walker "^0.6.1"
+
+rollup@^2.51.2, rollup@^2.79.1:
+ version "2.79.2"
+ resolved "https://registry.npmjs.org/rollup/-/rollup-2.79.2.tgz"
+ integrity sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==
+ optionalDependencies:
+ fsevents "~2.3.2"
+
+run-parallel@^1.1.9:
+ version "1.2.0"
+ resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
+ integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
+ dependencies:
+ queue-microtask "^1.2.2"
+
safe-array-concat@^1.1.2, safe-array-concat@^1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz#c9e54ec4f603b0bbb8e7e5007a5ee7aecd1538c3"
+ resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz"
integrity sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==
dependencies:
call-bind "^1.0.8"
@@ -6594,19 +8732,29 @@ safe-array-concat@^1.1.2, safe-array-concat@^1.1.3:
has-symbols "^1.1.0"
isarray "^2.0.5"
-safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0:
+safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.1, safe-buffer@>=5.1.0, safe-buffer@~5.2.0, safe-buffer@5.2.1:
version "5.2.1"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
+ resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+ resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+safe-identifier@^0.4.2:
+ version "0.4.2"
+ resolved "https://registry.npmjs.org/safe-identifier/-/safe-identifier-0.4.2.tgz"
+ integrity sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==
+
+safe-json-parse@~1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz"
+ integrity sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==
+
safe-push-apply@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz#01850e981c1602d398c85081f360e4e6d03d27f5"
+ resolved "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz"
integrity sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==
dependencies:
es-errors "^1.3.0"
@@ -6614,7 +8762,7 @@ safe-push-apply@^1.0.0:
safe-regex-test@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz#7f87dfb67a3150782eaaf18583ff5d1711ac10c1"
+ resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz"
integrity sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==
dependencies:
call-bound "^1.0.2"
@@ -6623,19 +8771,19 @@ safe-regex-test@^1.1.0:
safe-regex@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
+ resolved "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"
integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==
dependencies:
ret "~0.1.10"
-"safer-buffer@>= 2.1.2 < 3":
+safer-buffer@^2.0.2, safer-buffer@^2.1.0, "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@~2.1.0:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+ resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
sass-loader@^12.1.0:
version "12.6.0"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-12.6.0.tgz#5148362c8e2cdd4b950f3c63ac5d16dbfed37bcb"
+ resolved "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz"
integrity sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==
dependencies:
klona "^2.0.4"
@@ -6643,14 +8791,14 @@ sass-loader@^12.1.0:
sass-loader@^16.0.5:
version "16.0.5"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-16.0.5.tgz#257bc90119ade066851cafe7f2c3f3504c7cda98"
+ resolved "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.5.tgz"
integrity sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==
dependencies:
neo-async "^2.6.2"
sass@^1.85.1:
version "1.89.2"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.89.2.tgz#a771716aeae774e2b529f72c0ff2dfd46c9de10e"
+ resolved "https://registry.npmjs.org/sass/-/sass-1.89.2.tgz"
integrity sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==
dependencies:
chokidar "^4.0.0"
@@ -6659,14 +8807,14 @@ sass@^1.85.1:
optionalDependencies:
"@parcel/watcher" "^2.4.1"
-sax@~1.2.4:
+sax@^1.1.5, sax@~1.2.4:
version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
+ resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
scheduler@^0.20.2:
version "0.20.2"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
+ resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz"
integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
dependencies:
loose-envify "^1.1.0"
@@ -6674,7 +8822,7 @@ scheduler@^0.20.2:
schema-utils@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
+ resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz"
integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
dependencies:
ajv "^6.1.0"
@@ -6683,7 +8831,7 @@ schema-utils@^1.0.0:
schema-utils@^2.6.5:
version "2.7.1"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
+ resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz"
integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
dependencies:
"@types/json-schema" "^7.0.5"
@@ -6692,7 +8840,16 @@ schema-utils@^2.6.5:
schema-utils@^3.0.0:
version "3.3.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"
+ resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz"
+ integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
+ dependencies:
+ "@types/json-schema" "^7.0.8"
+ ajv "^6.12.5"
+ ajv-keywords "^3.5.2"
+
+schema-utils@^3.1.1:
+ version "3.3.0"
+ resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz"
integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
dependencies:
"@types/json-schema" "^7.0.8"
@@ -6701,7 +8858,7 @@ schema-utils@^3.0.0:
schema-utils@^4.0.0, schema-utils@^4.2.0, schema-utils@^4.3.0, schema-utils@^4.3.2:
version "4.3.2"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.2.tgz#0c10878bf4a73fd2b1dfd14b9462b26788c806ae"
+ resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz"
integrity sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==
dependencies:
"@types/json-schema" "^7.0.9"
@@ -6711,34 +8868,64 @@ schema-utils@^4.0.0, schema-utils@^4.2.0, schema-utils@^4.3.0, schema-utils@^4.3
select-hose@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
+ resolved "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz"
integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==
selfsigned@^1.10.8:
version "1.10.14"
- resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.14.tgz#ee51d84d9dcecc61e07e4aba34f229ab525c1574"
+ resolved "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz"
integrity sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==
dependencies:
node-forge "^0.10.0"
+semver@^5.3.0:
+ version "5.7.2"
+ resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz"
+ integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
+
semver@^5.5.0:
version "5.7.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
+ resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz"
+ integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
+
+semver@^5.6.0:
+ version "5.7.2"
+ resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
semver@^6.0.0, semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
+ resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
-semver@^7.3.4, semver@^7.3.5, semver@^7.5.4:
+semver@^7.3.4:
version "7.7.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58"
+ resolved "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz"
integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
+semver@^7.3.5:
+ version "7.7.2"
+ resolved "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz"
+ integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
+
+semver@^7.3.7:
+ version "7.7.2"
+ resolved "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz"
+ integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
+
+semver@^7.5.4:
+ version "7.7.2"
+ resolved "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz"
+ integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
+
+semver@~5.3.0:
+ version "5.3.0"
+ resolved "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"
+ integrity sha512-mfmm3/H9+67MCVix1h+IXTpDwL6710LyHuk7+cWC9T1mE0qz4iHhh6r4hU2wrIT9iTsAAC2XQRvfblL028cpLw==
+
send@0.19.0:
version "0.19.0"
- resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8"
+ resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz"
integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==
dependencies:
debug "2.6.9"
@@ -6755,16 +8942,30 @@ send@0.19.0:
range-parser "~1.2.1"
statuses "2.0.1"
-serialize-javascript@^6.0.0, serialize-javascript@^6.0.2:
+serialize-javascript@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"
+ integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
+ dependencies:
+ randombytes "^2.1.0"
+
+serialize-javascript@^6.0.0:
version "6.0.2"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2"
+ resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz"
+ integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==
+ dependencies:
+ randombytes "^2.1.0"
+
+serialize-javascript@^6.0.2:
+ version "6.0.2"
+ resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz"
integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==
dependencies:
randombytes "^2.1.0"
serve-index@^1.9.1:
version "1.9.1"
- resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
+ resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz"
integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==
dependencies:
accepts "~1.3.4"
@@ -6777,7 +8978,7 @@ serve-index@^1.9.1:
serve-static@1.16.2:
version "1.16.2"
- resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.2.tgz#b6a5343da47f6bdd2673848bf45754941e803296"
+ resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz"
integrity sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==
dependencies:
encodeurl "~2.0.0"
@@ -6785,14 +8986,14 @@ serve-static@1.16.2:
parseurl "~1.3.3"
send "0.19.0"
-set-blocking@^2.0.0:
+set-blocking@^2.0.0, set-blocking@~2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
+ resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
set-function-length@^1.2.2:
version "1.2.2"
- resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
+ resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz"
integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==
dependencies:
define-data-property "^1.1.4"
@@ -6804,7 +9005,7 @@ set-function-length@^1.2.2:
set-function-name@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985"
+ resolved "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz"
integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==
dependencies:
define-data-property "^1.1.4"
@@ -6814,7 +9015,7 @@ set-function-name@^2.0.2:
set-proto@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz#0760dbcff30b2d7e801fd6e19983e56da337565e"
+ resolved "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz"
integrity sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==
dependencies:
dunder-proto "^1.0.1"
@@ -6823,7 +9024,7 @@ set-proto@^1.0.0:
set-value@^2.0.0, set-value@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
+ resolved "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz"
integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
dependencies:
extend-shallow "^2.0.1"
@@ -6833,43 +9034,62 @@ set-value@^2.0.0, set-value@^2.0.1:
setimmediate@^1.0.4, setimmediate@^1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
+ resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz"
integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==
setprototypeof@1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
+ resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz"
integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
setprototypeof@1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
+ resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz"
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
sha.js@^2.4.0, sha.js@^2.4.11, sha.js@^2.4.8:
version "2.4.12"
- resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.12.tgz#eb8b568bf383dfd1867a32c3f2b74eb52bdbf23f"
+ resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.4.12.tgz"
integrity sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==
dependencies:
inherits "^2.0.4"
safe-buffer "^5.2.1"
to-buffer "^1.2.0"
+shallow-clone@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz"
+ integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
+ dependencies:
+ kind-of "^6.0.2"
+
shebang-command@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
+ resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"
integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
dependencies:
shebang-regex "^1.0.0"
+shebang-command@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
+ integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+ dependencies:
+ shebang-regex "^3.0.0"
+
shebang-regex@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
+ resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"
integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
+shebang-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
+ integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+
side-channel-list@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad"
+ resolved "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz"
integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==
dependencies:
es-errors "^1.3.0"
@@ -6877,7 +9097,7 @@ side-channel-list@^1.0.0:
side-channel-map@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42"
+ resolved "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz"
integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==
dependencies:
call-bound "^1.0.2"
@@ -6887,7 +9107,7 @@ side-channel-map@^1.0.1:
side-channel-weakmap@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea"
+ resolved "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz"
integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==
dependencies:
call-bound "^1.0.2"
@@ -6898,7 +9118,7 @@ side-channel-weakmap@^1.0.2:
side-channel@^1.0.6, side-channel@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9"
+ resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz"
integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==
dependencies:
es-errors "^1.3.0"
@@ -6909,35 +9129,36 @@ side-channel@^1.0.6, side-channel@^1.1.0:
signal-exit@^3.0.0:
version "3.0.7"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
+ resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
-simple-concat@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f"
- integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==
-
-simple-get@^3.0.3:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.1.tgz#cc7ba77cfbe761036fbfce3d021af25fc5584d55"
- integrity sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==
- dependencies:
- decompress-response "^4.2.0"
- once "^1.3.1"
- simple-concat "^1.0.0"
-
sirv@^2.0.3:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/sirv/-/sirv-2.0.4.tgz#5dd9a725c578e34e449f332703eb2a74e46a29b0"
+ resolved "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz"
integrity sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==
dependencies:
"@polka/url" "^1.0.0-next.24"
mrmime "^2.0.0"
totalist "^3.0.0"
+skip-regex@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/skip-regex/-/skip-regex-1.0.2.tgz"
+ integrity sha512-pEjMUbwJ5Pl/6Vn6FsamXHXItJXSRftcibixDmNCWbWhic0hzHrwkMZo0IZ7fMRH9KxcWDFSkzhccB4285PutA==
+
+slash@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"
+ integrity sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==
+
+slash@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
+ integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+
snapdragon-node@^2.0.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
+ resolved "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"
integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
dependencies:
define-property "^1.0.0"
@@ -6946,14 +9167,14 @@ snapdragon-node@^2.0.1:
snapdragon-util@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
+ resolved "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"
integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
dependencies:
kind-of "^3.2.0"
snapdragon@^0.8.1:
version "0.8.2"
- resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
+ resolved "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"
integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
dependencies:
base "^0.11.1"
@@ -6967,7 +9188,7 @@ snapdragon@^0.8.1:
sockjs-client@^1.5.0:
version "1.6.1"
- resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.6.1.tgz#350b8eda42d6d52ddc030c39943364c11dcad806"
+ resolved "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.6.1.tgz"
integrity sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==
dependencies:
debug "^3.2.7"
@@ -6978,7 +9199,7 @@ sockjs-client@^1.5.0:
sockjs@^0.3.21:
version "0.3.24"
- resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce"
+ resolved "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz"
integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==
dependencies:
faye-websocket "^0.11.3"
@@ -6987,22 +9208,31 @@ sockjs@^0.3.21:
sortablejs@^1.13.0:
version "1.15.6"
- resolved "https://registry.yarnpkg.com/sortablejs/-/sortablejs-1.15.6.tgz#ff93699493f5b8ab8d828f933227b4988df1d393"
+ resolved "https://registry.npmjs.org/sortablejs/-/sortablejs-1.15.6.tgz"
integrity sha512-aNfiuwMEpfBM/CN6LY0ibyhxPfPbyFeBTYJKCvzkJ2GkUpazIt3H+QIPAMHwqQ7tMKaHz1Qj+rJJCqljnf4p3A==
source-list-map@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
+ resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz"
integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
-"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.2.1:
+source-map-js@^1.0.1, source-map-js@^1.2.1, "source-map-js@>=0.6.2 <2.0.0":
version "1.2.1"
- resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
+ resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz"
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
+source-map-loader@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz"
+ integrity sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==
+ dependencies:
+ abab "^2.0.5"
+ iconv-lite "^0.6.3"
+ source-map-js "^1.0.1"
+
source-map-resolve@^0.5.0:
version "0.5.3"
- resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
+ resolved "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz"
integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
dependencies:
atob "^2.1.2"
@@ -7011,9 +9241,32 @@ source-map-resolve@^0.5.0:
source-map-url "^0.4.0"
urix "^0.1.0"
-source-map-support@~0.5.12, source-map-support@~0.5.20:
+source-map-support@^0.4.15:
+ version "0.4.18"
+ resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"
+ integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==
+ dependencies:
+ source-map "^0.5.6"
+
+source-map-support@^0.5.16:
version "0.5.21"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
+ resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz"
+ integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
+
+source-map-support@~0.5.12:
+ version "0.5.21"
+ resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz"
+ integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
+
+source-map-support@~0.5.20:
+ version "0.5.21"
+ resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz"
integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
dependencies:
buffer-from "^1.0.0"
@@ -7021,27 +9274,47 @@ source-map-support@~0.5.12, source-map-support@~0.5.20:
source-map-url@^0.4.0:
version "0.4.1"
- resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56"
+ resolved "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz"
integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==
-source-map@^0.5.6:
+source-map@^0.5.6, source-map@^0.5.7:
version "0.5.7"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
+ resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
-source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
+source-map@^0.6.0, source-map@~0.6.0, source-map@~0.6.1:
version "0.6.1"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
-source-map@^0.7.3, source-map@^0.7.4:
+source-map@^0.6.1:
+ version "0.6.1"
+ resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
+source-map@^0.7.3:
version "0.7.4"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656"
+ resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz"
integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
+source-map@^0.7.4:
+ version "0.7.4"
+ resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz"
+ integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
+
+source-map@~0.6.1:
+ version "0.6.1"
+ resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
+sourcemap-codec@^1.4.8:
+ version "1.4.8"
+ resolved "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz"
+ integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
+
spdy-transport@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31"
+ resolved "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz"
integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==
dependencies:
debug "^4.1.0"
@@ -7053,7 +9326,7 @@ spdy-transport@^3.0.0:
spdy@^4.0.2:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b"
+ resolved "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz"
integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==
dependencies:
debug "^4.1.0"
@@ -7064,42 +9337,62 @@ spdy@^4.0.2:
split-string@^3.0.1, split-string@^3.0.2:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
+ resolved "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"
integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
dependencies:
extend-shallow "^3.0.0"
+sprintf-js@^1.1.1:
+ version "1.1.3"
+ resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz"
+ integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==
+
sprintf-js@~1.0.2:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
+ resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
+sshpk@^1.7.0:
+ version "1.18.0"
+ resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz"
+ integrity sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==
+ dependencies:
+ asn1 "~0.2.3"
+ assert-plus "^1.0.0"
+ bcrypt-pbkdf "^1.0.0"
+ dashdash "^1.12.0"
+ ecc-jsbn "~0.1.1"
+ getpass "^0.1.1"
+ jsbn "~0.1.0"
+ safer-buffer "^2.0.2"
+ tweetnacl "~0.14.0"
+
stable@^0.1.8:
version "0.1.8"
- resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
+ resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz"
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
static-extend@^0.1.1:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
+ resolved "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"
integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==
dependencies:
define-property "^0.2.5"
object-copy "^0.1.0"
-statuses@2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
- integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
-
"statuses@>= 1.4.0 < 2":
version "1.5.0"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
+ resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
+statuses@2.0.1:
+ version "2.0.1"
+ resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz"
+ integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
+
stop-iteration-iterator@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz#f481ff70a548f6124d0312c3aa14cbfa7aa542ad"
+ resolved "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz"
integrity sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==
dependencies:
es-errors "^1.3.0"
@@ -7107,7 +9400,7 @@ stop-iteration-iterator@^1.1.0:
stream-browserify@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f"
+ resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz"
integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==
dependencies:
inherits "~2.0.4"
@@ -7115,7 +9408,7 @@ stream-browserify@^3.0.0:
stream-http@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.2.0.tgz#1872dfcf24cb15752677e40e5c3f9cc1926028b5"
+ resolved "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz"
integrity sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==
dependencies:
builtin-status-codes "^3.0.0"
@@ -7123,14 +9416,52 @@ stream-http@^3.2.0:
readable-stream "^3.6.0"
xtend "^4.0.2"
+string_decoder@^1.1.1, string_decoder@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
+ integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+ dependencies:
+ safe-buffer "~5.2.0"
+
+string_decoder@~0.10.x:
+ version "0.10.31"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"
+ integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==
+
+string_decoder@~1.1.1:
+ version "1.1.1"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
+ integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+ dependencies:
+ safe-buffer "~5.1.0"
+
+string_decoder@0.10:
+ version "0.10.31"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"
+ integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==
+
string-hash@^1.1.1:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
+ resolved "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz"
integrity sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==
-"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.3:
+string-template@~0.2.1:
+ version "0.2.1"
+ resolved "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz"
+ integrity sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==
+
+string-width@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"
+ integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==
+ dependencies:
+ code-point-at "^1.0.0"
+ is-fullwidth-code-point "^1.0.0"
+ strip-ansi "^3.0.0"
+
+"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
dependencies:
emoji-regex "^8.0.0"
@@ -7139,16 +9470,26 @@ string-hash@^1.1.1:
string-width@^3.0.0, string-width@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"
integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
dependencies:
emoji-regex "^7.0.1"
is-fullwidth-code-point "^2.0.0"
strip-ansi "^5.1.0"
+string.fromcodepoint@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.npmjs.org/string.fromcodepoint/-/string.fromcodepoint-0.2.1.tgz"
+ integrity sha512-n69H31OnxSGSZyZbgBlvYIXlrMhJQ0dQAX1js1QDhpaUH6zmU3QYlj07bCwCNlPOu3oRXIubGPl2gDGnHsiCqg==
+
+string.prototype.codepointat@^0.2.0:
+ version "0.2.1"
+ resolved "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz"
+ integrity sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==
+
string.prototype.trim@^1.2.10:
version "1.2.10"
- resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz#40b2dd5ee94c959b4dcfb1d65ce72e90da480c81"
+ resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz"
integrity sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==
dependencies:
call-bind "^1.0.8"
@@ -7161,7 +9502,7 @@ string.prototype.trim@^1.2.10:
string.prototype.trimend@^1.0.9:
version "1.0.9"
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz#62e2731272cd285041b36596054e9f66569b6942"
+ resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz"
integrity sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==
dependencies:
call-bind "^1.0.8"
@@ -7171,56 +9512,68 @@ string.prototype.trimend@^1.0.9:
string.prototype.trimstart@^1.0.8:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde"
+ resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz"
integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==
dependencies:
call-bind "^1.0.7"
define-properties "^1.2.1"
es-object-atoms "^1.0.0"
-string_decoder@^1.1.1, string_decoder@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
- integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
- dependencies:
- safe-buffer "~5.2.0"
-
-string_decoder@~1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
- integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
- dependencies:
- safe-buffer "~5.1.0"
-
-strip-ansi@^3.0.1:
+strip-ansi@^3.0.0, strip-ansi@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
dependencies:
ansi-regex "^2.0.0"
-strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
+strip-ansi@^5.0.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
dependencies:
ansi-regex "^4.1.0"
+strip-ansi@^5.1.0:
+ version "5.2.0"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
+ integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
+ dependencies:
+ ansi-regex "^4.1.0"
+
+strip-ansi@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
+ integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
+ dependencies:
+ ansi-regex "^4.1.0"
+
+strip-ansi@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
+ integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ dependencies:
+ ansi-regex "^5.0.1"
+
strip-ansi@^6.0.1:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
dependencies:
ansi-regex "^5.0.1"
strip-eof@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
+ resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"
integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==
+style-inject@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.npmjs.org/style-inject/-/style-inject-0.3.0.tgz"
+ integrity sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==
+
style-loader@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-2.0.0.tgz#9669602fd4690740eaaec137799a03addbbc393c"
+ resolved "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz"
integrity sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==
dependencies:
loader-utils "^2.0.0"
@@ -7228,7 +9581,7 @@ style-loader@^2.0.0:
stylehacks@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9"
+ resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz"
integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==
dependencies:
browserslist "^4.21.4"
@@ -7236,53 +9589,90 @@ stylehacks@^5.1.1:
substyle@^9.1.0:
version "9.4.1"
- resolved "https://registry.yarnpkg.com/substyle/-/substyle-9.4.1.tgz#6a4647f363bc14fecc51aac371d4dbeda082aa50"
+ resolved "https://registry.npmjs.org/substyle/-/substyle-9.4.1.tgz"
integrity sha512-VOngeq/W1/UkxiGzeqVvDbGDPM8XgUyJVWjrqeh+GgKqspEPiLYndK+XRcsKUHM5Muz/++1ctJ1QCF/OqRiKWA==
dependencies:
"@babel/runtime" "^7.3.4"
invariant "^2.2.4"
+supports-color@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"
+ integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==
+
supports-color@^5.3.0:
version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
dependencies:
has-flag "^3.0.0"
supports-color@^6.1.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz"
integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
dependencies:
has-flag "^3.0.0"
supports-color@^7.1.0:
version "7.2.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
dependencies:
has-flag "^4.0.0"
supports-color@^8.0.0:
version "8.1.1"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"
integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
dependencies:
has-flag "^4.0.0"
supports-preserve-symlinks-flag@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
+ resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
svg-parser@^2.0.2:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5"
+ resolved "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz"
integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==
+svg-pathdata@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.npmjs.org/svg-pathdata/-/svg-pathdata-1.0.4.tgz"
+ integrity sha512-afGVCE1xFbmI/uV6XiToTwnHZZtSiW9u8EBxZqRE25pPGk2Z9eEvT5nhAPRUnvUWs9FqwjdJeElkqoWKeW3JGA==
+ dependencies:
+ readable-stream "~2.0.4"
+
+svg2ttf@^4.0.0:
+ version "4.3.0"
+ resolved "https://registry.npmjs.org/svg2ttf/-/svg2ttf-4.3.0.tgz"
+ integrity sha512-LZ0B7zzHWLWbzLzwaKGHQvPOuxCXLReIb3LSxFSGUy1gMw2Utk6KGNbTmbmRL6Rk1qDSmTixnDrQgnXaL9n0CA==
+ dependencies:
+ argparse "^1.0.6"
+ cubic2quad "^1.0.0"
+ lodash "^4.17.10"
+ microbuffer "^1.0.0"
+ svgpath "^2.1.5"
+ xmldom "~0.1.22"
+
+svgicons2svgfont@^5.0.0:
+ version "5.0.2"
+ resolved "https://registry.npmjs.org/svgicons2svgfont/-/svgicons2svgfont-5.0.2.tgz"
+ integrity sha512-N9GG8atI7eKksJpLLDYXHzKcNy698FL+Bdu0sXgwURgVzNmeD35iSCnZhNuPMs4Ve2tg8vqHXI1ZNEWU6vhwjw==
+ dependencies:
+ commander "^2.9.0"
+ neatequal "^1.0.0"
+ readable-stream "^2.0.4"
+ sax "^1.1.5"
+ string.fromcodepoint "^0.2.1"
+ string.prototype.codepointat "^0.2.0"
+ svg-pathdata "^1.0.4"
+
svgo@^1.2.2:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
+ resolved "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz"
integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
dependencies:
chalk "^2.4.1"
@@ -7301,7 +9691,7 @@ svgo@^1.2.2:
svgo@^2.7.0:
version "2.8.0"
- resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24"
+ resolved "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz"
integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==
dependencies:
"@trysound/sax" "0.2.0"
@@ -7312,26 +9702,28 @@ svgo@^2.7.0:
picocolors "^1.0.0"
stable "^0.1.8"
+svgpath@^2.1.5:
+ version "2.6.0"
+ resolved "https://registry.npmjs.org/svgpath/-/svgpath-2.6.0.tgz"
+ integrity sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg==
+
tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0:
version "2.2.2"
- resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.2.tgz#ab4984340d30cb9989a490032f086dbb8b56d872"
+ resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz"
integrity sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==
-tar@^6.1.11:
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a"
- integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==
+tar@^2.0.0:
+ version "2.2.2"
+ resolved "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz"
+ integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==
dependencies:
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- minipass "^5.0.0"
- minizlib "^2.1.1"
- mkdirp "^1.0.3"
- yallist "^4.0.0"
+ block-stream "*"
+ fstream "^1.0.12"
+ inherits "2"
terser-webpack-plugin@^5.3.11:
version "5.3.14"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz#9031d48e57ab27567f02ace85c7d690db66c3e06"
+ resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz"
integrity sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==
dependencies:
"@jridgewell/trace-mapping" "^0.3.25"
@@ -7342,16 +9734,16 @@ terser-webpack-plugin@^5.3.11:
terser@^4.6:
version "4.8.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.1.tgz#a00e5634562de2239fd404c649051bf6fc21144f"
+ resolved "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz"
integrity sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==
dependencies:
commander "^2.20.0"
source-map "~0.6.1"
source-map-support "~0.5.12"
-terser@^5.10.0, terser@^5.31.1:
+terser@^5.10.0:
version "5.43.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.43.1.tgz#88387f4f9794ff1a29e7ad61fb2932e25b4fdb6d"
+ resolved "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz"
integrity sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==
dependencies:
"@jridgewell/source-map" "^0.3.3"
@@ -7359,26 +9751,71 @@ terser@^5.10.0, terser@^5.31.1:
commander "^2.20.0"
source-map-support "~0.5.20"
+terser@^5.31.1:
+ version "5.43.1"
+ resolved "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz"
+ integrity sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==
+ dependencies:
+ "@jridgewell/source-map" "^0.3.3"
+ acorn "^8.14.0"
+ commander "^2.20.0"
+ source-map-support "~0.5.20"
+
+text-table@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
+ integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
+
thunky@^1.0.2:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
+ resolved "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz"
integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
+time-grunt@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/time-grunt/-/time-grunt-2.0.0.tgz"
+ integrity sha512-iQD2AeDYCAJrsPC/eUsfYZD9UT7TuBOmUIgFV5zeTQgRk6yLJKoc3aYR0gusJ0m+bG13B6qrDZ0SwPLe0/htHw==
+ dependencies:
+ chalk "^1.0.0"
+ date-time "^1.1.0"
+ figures "^1.0.0"
+ hooker "^0.2.3"
+ number-is-nan "^1.0.0"
+ pretty-ms "^2.1.0"
+ text-table "^0.2.0"
+
+time-zone@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.npmjs.org/time-zone/-/time-zone-0.1.0.tgz"
+ integrity sha512-S5CjtVIkeBTnlsaZP3gjsTb78ClBe74sEcgEoBwAVUKnTRDAGqUtLLIZHMsIyqOWjt9DGQpLMMoD8ZKIfP2ddQ==
+
timeago.js@^4.0.2:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/timeago.js/-/timeago.js-4.0.2.tgz#724e8c8833e3490676c7bb0a75f5daf20e558028"
+ resolved "https://registry.npmjs.org/timeago.js/-/timeago.js-4.0.2.tgz"
integrity sha512-a7wPxPdVlQL7lqvitHGGRsofhdwtkoSXPGATFuSOA2i1ZNQEPLrGnj68vOp2sOJTCFAQVXPeNMX/GctBaO9L2w==
timers-browserify@^2.0.12:
version "2.0.12"
- resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
+ resolved "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz"
integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
dependencies:
setimmediate "^1.0.4"
+tiny-lr@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz"
+ integrity sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA==
+ dependencies:
+ body "^5.1.0"
+ debug "^3.1.0"
+ faye-websocket "~0.10.0"
+ livereload-js "^2.3.0"
+ object-assign "^4.1.0"
+ qs "^6.4.0"
+
tinyglobby@^0.2.12:
version "0.2.14"
- resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.14.tgz#5280b0cf3f972b050e74ae88406c0a6a58f4079d"
+ resolved "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz"
integrity sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==
dependencies:
fdir "^6.4.4"
@@ -7386,23 +9823,28 @@ tinyglobby@^0.2.12:
to-buffer@^1.2.0:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.2.1.tgz#2ce650cdb262e9112a18e65dc29dcb513c8155e0"
+ resolved "https://registry.npmjs.org/to-buffer/-/to-buffer-1.2.1.tgz"
integrity sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==
dependencies:
isarray "^2.0.5"
safe-buffer "^5.2.1"
typed-array-buffer "^1.0.3"
+to-fast-properties@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"
+ integrity sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==
+
to-object-path@^0.3.0:
version "0.3.0"
- resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
+ resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"
integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==
dependencies:
kind-of "^3.0.2"
to-regex-range@^2.1.0:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
+ resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"
integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==
dependencies:
is-number "^3.0.0"
@@ -7410,14 +9852,14 @@ to-regex-range@^2.1.0:
to-regex-range@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+ resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
dependencies:
is-number "^7.0.0"
to-regex@^3.0.1, to-regex@^3.0.2:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
+ resolved "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"
integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
dependencies:
define-property "^2.0.2"
@@ -7427,22 +9869,40 @@ to-regex@^3.0.1, to-regex@^3.0.2:
toidentifier@1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
+ resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz"
integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
totalist@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/totalist/-/totalist-3.0.1.tgz#ba3a3d600c915b1a97872348f79c127475f6acf8"
+ resolved "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz"
integrity sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==
+tough-cookie@~2.5.0:
+ version "2.5.0"
+ resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"
+ integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
+ dependencies:
+ psl "^1.1.28"
+ punycode "^2.1.1"
+
tr46@~0.0.3:
version "0.0.3"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
+ resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
-ts-loader@^9.5.2:
+trim-newlines@^4.0.2:
+ version "4.1.1"
+ resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-4.1.1.tgz"
+ integrity sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==
+
+trim-right@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz"
+ integrity sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==
+
+ts-loader@^9.2.3, ts-loader@^9.5.2:
version "9.5.2"
- resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-9.5.2.tgz#1f3d7f4bb709b487aaa260e8f19b301635d08020"
+ resolved "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.2.tgz"
integrity sha512-Qo4piXvOTWcMGIgRiuFa6nHNm+54HbYaZCKqc9eeZCLRy3XqafQgwX2F7mofrbJG3g7EEb+lkiR+z2Lic2s3Zw==
dependencies:
chalk "^4.1.0"
@@ -7451,19 +9911,58 @@ ts-loader@^9.5.2:
semver "^7.3.4"
source-map "^0.7.4"
-tslib@^2.0.3:
+tslib@^2.0.3, tslib@^2.4.0, tslib@^2.6.2:
version "2.8.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
+ resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz"
integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
+ttf2eot@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/ttf2eot/-/ttf2eot-2.0.0.tgz"
+ integrity sha512-U56aG2Ylw7psLOmakjemAzmpqVgeadwENg9oaDjaZG5NYX4WB6+7h74bNPcc+0BXsoU5A/XWiHabDXyzFOmsxQ==
+ dependencies:
+ argparse "^1.0.6"
+ microbuffer "^1.0.0"
+
+ttf2woff@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.npmjs.org/ttf2woff/-/ttf2woff-2.0.2.tgz"
+ integrity sha512-X68badwBjAy/+itU49scLjXUL094up+rHuYk+YAOTTBYSUMOmLZ7VyhZJuqQESj1gnyLAC2/5V8Euv+mExmyPA==
+ dependencies:
+ argparse "^1.0.6"
+ microbuffer "^1.0.0"
+ pako "^1.0.0"
+
+ttf2woff2@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.npmjs.org/ttf2woff2/-/ttf2woff2-2.0.3.tgz"
+ integrity sha512-HVI+ZVmIbHAxfmbxV/Ahjh20che2WUCs4xWIcCUaD/BLEof/ylYUjnc0DAhpYsAzEJy1kQwkOQD45RLgtWQHfw==
+ dependencies:
+ bindings "^1.2.1"
+ bufferstreams "^1.1.0"
+ nan "^2.1.0"
+ node-gyp "^3.0.3"
+
tty-browserify@^0.0.1:
version "0.0.1"
- resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811"
+ resolved "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz"
integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==
+tunnel-agent@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"
+ integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==
+ dependencies:
+ safe-buffer "^5.0.1"
+
+tweetnacl@^0.14.3, tweetnacl@~0.14.0:
+ version "0.14.5"
+ resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"
+ integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==
+
type-is@~1.6.18:
version "1.6.18"
- resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+ resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"
integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
dependencies:
media-typer "0.3.0"
@@ -7471,7 +9970,7 @@ type-is@~1.6.18:
typed-array-buffer@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz#a72395450a4869ec033fd549371b47af3a2ee536"
+ resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz"
integrity sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==
dependencies:
call-bound "^1.0.3"
@@ -7480,7 +9979,7 @@ typed-array-buffer@^1.0.3:
typed-array-byte-length@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz#8407a04f7d78684f3d252aa1a143d2b77b4160ce"
+ resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz"
integrity sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==
dependencies:
call-bind "^1.0.8"
@@ -7491,7 +9990,7 @@ typed-array-byte-length@^1.0.3:
typed-array-byte-offset@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz#ae3698b8ec91a8ab945016108aef00d5bff12355"
+ resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz"
integrity sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==
dependencies:
available-typed-arrays "^1.0.7"
@@ -7504,7 +10003,7 @@ typed-array-byte-offset@^1.0.4:
typed-array-length@^1.0.7:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d"
+ resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz"
integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==
dependencies:
call-bind "^1.0.7"
@@ -7514,24 +10013,29 @@ typed-array-length@^1.0.7:
possible-typed-array-names "^1.0.0"
reflect.getprototypeof "^1.0.6"
+typescript@^4.9.5:
+ version "4.9.5"
+ resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz"
+ integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
+
typescript@^5.8.2:
version "5.8.3"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.3.tgz#92f8a3e5e3cf497356f4178c34cd65a7f5e8440e"
+ resolved "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz"
integrity sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==
ua-parser-js@^1.0.35:
version "1.0.40"
- resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.40.tgz#ac6aff4fd8ea3e794a6aa743ec9c2fc29e75b675"
+ resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.40.tgz"
integrity sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==
-uglify-js@^3.5.1:
+uglify-js@^3.1.4, uglify-js@^3.5.1:
version "3.19.3"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.19.3.tgz#82315e9bbc6f2b25888858acd1fff8441035b77f"
+ resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz"
integrity sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==
unbox-primitive@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz#8d9d2c9edeea8460c7f35033a88867944934d1e2"
+ resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz"
integrity sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==
dependencies:
call-bound "^1.0.3"
@@ -7539,19 +10043,37 @@ unbox-primitive@^1.1.0:
has-symbols "^1.1.0"
which-boxed-primitive "^1.1.1"
+unc-path-regex@^0.1.2:
+ version "0.1.2"
+ resolved "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"
+ integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==
+
+underscore.string@~3.3.5:
+ version "3.3.6"
+ resolved "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.6.tgz"
+ integrity sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==
+ dependencies:
+ sprintf-js "^1.1.1"
+ util-deprecate "^1.0.2"
+
+underscore@^1.7.0:
+ version "1.13.7"
+ resolved "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz"
+ integrity sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==
+
undici-types@~7.8.0:
version "7.8.0"
- resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.8.0.tgz#de00b85b710c54122e44fbfd911f8d70174cd294"
+ resolved "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz"
integrity sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz#cb3173fe47ca743e228216e4a3ddc4c84d628cc2"
+ resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz"
integrity sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==
unicode-match-property-ecmascript@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
+ resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"
integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
dependencies:
unicode-canonical-property-names-ecmascript "^2.0.0"
@@ -7559,17 +10081,17 @@ unicode-match-property-ecmascript@^2.0.0:
unicode-match-property-value-ecmascript@^2.1.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz#a0401aee72714598f739b68b104e4fe3a0cb3c71"
+ resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz"
integrity sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==
unicode-property-aliases-ecmascript@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
+ resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz"
integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
union-value@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
+ resolved "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz"
integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
dependencies:
arr-union "^3.1.0"
@@ -7577,19 +10099,24 @@ union-value@^1.0.0:
is-extendable "^0.1.1"
set-value "^2.0.1"
-unpipe@1.0.0, unpipe@~1.0.0:
+universalify@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz"
+ integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==
+
+unpipe@~1.0.0, unpipe@1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
+ resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
unquote@~1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
+ resolved "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz"
integrity sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==
unset-value@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
+ resolved "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"
integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==
dependencies:
has-value "^0.3.1"
@@ -7597,12 +10124,12 @@ unset-value@^1.0.0:
upath@^1.1.1:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
+ resolved "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz"
integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
update-browserslist-db@^1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz#348377dd245216f9e7060ff50b15a1b740b75420"
+ resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz"
integrity sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==
dependencies:
escalade "^3.2.0"
@@ -7610,24 +10137,29 @@ update-browserslist-db@^1.1.3:
upper-case@^1.1.1:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598"
+ resolved "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz"
integrity sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==
uri-js@^4.2.2:
version "4.4.1"
- resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
+ resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
dependencies:
punycode "^2.1.0"
urix@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
+ resolved "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"
integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==
+url-join@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/url-join/-/url-join-1.1.0.tgz"
+ integrity sha512-zz1wZk4Lb5PTVwZ3HWDmm8XnlPvmOof6/fjdDPA5yBrUcbtV64U6bV832Zf1BtU2WkBBWaUT46wCs+l0HP5nhg==
+
url-loader@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2"
+ resolved "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz"
integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==
dependencies:
loader-utils "^2.0.0"
@@ -7636,7 +10168,7 @@ url-loader@^4.1.1:
url-parse@^1.5.10:
version "1.5.10"
- resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
+ resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz"
integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
dependencies:
querystringify "^2.1.1"
@@ -7644,7 +10176,7 @@ url-parse@^1.5.10:
url@^0.11.0:
version "0.11.4"
- resolved "https://registry.yarnpkg.com/url/-/url-0.11.4.tgz#adca77b3562d56b72746e76b330b7f27b6721f3c"
+ resolved "https://registry.npmjs.org/url/-/url-0.11.4.tgz"
integrity sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==
dependencies:
punycode "^1.4.1"
@@ -7652,17 +10184,17 @@ url@^0.11.0:
use@^3.1.0:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
+ resolved "https://registry.npmjs.org/use/-/use-3.1.1.tgz"
integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+ resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
util.promisify@~1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
+ resolved "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz"
integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
dependencies:
define-properties "^1.1.3"
@@ -7672,7 +10204,7 @@ util.promisify@~1.0.0:
util@^0.12.4, util@^0.12.5:
version "0.12.5"
- resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc"
+ resolved "https://registry.npmjs.org/util/-/util-0.12.5.tgz"
integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==
dependencies:
inherits "^2.0.3"
@@ -7683,37 +10215,60 @@ util@^0.12.4, util@^0.12.5:
utila@~0.4:
version "0.4.0"
- resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
+ resolved "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz"
integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==
utils-merge@1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+ resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
uuid@^3.3.2:
version "3.4.0"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
+ resolved "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
uuid@^8.3.2:
version "8.3.2"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
+ resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
+v8flags@~3.2.0:
+ version "3.2.0"
+ resolved "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz"
+ integrity sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==
+ dependencies:
+ homedir-polyfill "^1.0.1"
+
+varstream@^0.3.2:
+ version "0.3.2"
+ resolved "https://registry.npmjs.org/varstream/-/varstream-0.3.2.tgz"
+ integrity sha512-OpR3Usr9dGZZbDttlTxdviGdxiURI0prX68+DuaN/JfIDbK9ZOmREKM6PgmelsejMnhgjXmEEEgf+E4NbsSqMg==
+ dependencies:
+ readable-stream "^1.0.33"
+
vary@~1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
+ resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
+verror@1.10.0:
+ version "1.10.0"
+ resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"
+ integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==
+ dependencies:
+ assert-plus "^1.0.0"
+ core-util-is "1.0.2"
+ extsprintf "^1.2.0"
+
vm-browserify@^1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
+ resolved "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz"
integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
watchpack@^2.4.1:
version "2.4.4"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.4.tgz#473bda72f0850453da6425081ea46fc0d7602947"
+ resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz"
integrity sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==
dependencies:
glob-to-regexp "^0.4.1"
@@ -7721,24 +10276,40 @@ watchpack@^2.4.1:
wbuf@^1.1.0, wbuf@^1.7.3:
version "1.7.3"
- resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df"
+ resolved "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz"
integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==
dependencies:
minimalistic-assert "^1.0.0"
web-streams-polyfill@^3.2.1:
version "3.3.3"
- resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b"
+ resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz"
integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==
+webfonts-generator@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.npmjs.org/webfonts-generator/-/webfonts-generator-0.4.0.tgz"
+ integrity sha512-2tz14d9lDYkNopbogp3cCEo0oQj6tHYo17v6nYlJQT57CwzQy/7Y6a1UzleNK9jSshez2qau6MHcHy/gbDwssQ==
+ dependencies:
+ handlebars "^4.0.5"
+ mkdirp "^0.5.0"
+ q "^1.1.2"
+ svg2ttf "^4.0.0"
+ svgicons2svgfont "^5.0.0"
+ ttf2eot "^2.0.0"
+ ttf2woff "^2.0.1"
+ ttf2woff2 "^2.0.3"
+ underscore "^1.7.0"
+ url-join "^1.1.0"
+
webidl-conversions@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
+ resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
webpack-bundle-analyzer@^4.4.2:
version "4.10.2"
- resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz#633af2862c213730be3dbdf40456db171b60d5bd"
+ resolved "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz"
integrity sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==
dependencies:
"@discoveryjs/json-ext" "0.5.7"
@@ -7756,7 +10327,7 @@ webpack-bundle-analyzer@^4.4.2:
webpack-dev-middleware@^3.7.2:
version "3.7.3"
- resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz#0639372b143262e2b84ab95d3b91a7597061c2c5"
+ resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz"
integrity sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==
dependencies:
memory-fs "^0.4.1"
@@ -7767,7 +10338,7 @@ webpack-dev-middleware@^3.7.2:
webpack-dev-server@^3.11.2:
version "3.11.3"
- resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz#8c86b9d2812bf135d3c9bce6f07b718e30f7c3d3"
+ resolved "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.3.tgz"
integrity sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==
dependencies:
ansi-html-community "0.0.8"
@@ -7806,14 +10377,14 @@ webpack-dev-server@^3.11.2:
webpack-format-messages@^2.0.6:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/webpack-format-messages/-/webpack-format-messages-2.0.6.tgz#d8bb0d4fb2e9171efc8a252d6294f29c50d7ecd2"
+ resolved "https://registry.npmjs.org/webpack-format-messages/-/webpack-format-messages-2.0.6.tgz"
integrity sha512-JOUviZSCupGTf6uJjrxKMEyOawWws566e3phwSyuWBsQxuBU6Gm4QV5wdU8UfkPIhWyhAqSGKeq8fNE9Q4rs9Q==
dependencies:
kleur "^3.0.0"
webpack-log@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
+ resolved "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz"
integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
dependencies:
ansi-colors "^3.0.0"
@@ -7821,7 +10392,7 @@ webpack-log@^2.0.0:
webpack-sources@^1.1.0:
version "1.4.3"
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
+ resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz"
integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
dependencies:
source-list-map "^2.0.0"
@@ -7829,17 +10400,17 @@ webpack-sources@^1.1.0:
webpack-sources@^3.2.3:
version "3.3.3"
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.3.3.tgz#d4bf7f9909675d7a070ff14d0ef2a4f3c982c723"
+ resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz"
integrity sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==
webpack-virtual-modules@^0.4.3:
version "0.4.6"
- resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45"
+ resolved "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz"
integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==
webpack@^5, webpack@^5.38.1, webpack@^5.98.0:
version "5.99.9"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.99.9.tgz#d7de799ec17d0cce3c83b70744b4aedb537d8247"
+ resolved "https://registry.npmjs.org/webpack/-/webpack-5.99.9.tgz"
integrity sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==
dependencies:
"@types/eslint-scope" "^3.7.7"
@@ -7867,9 +10438,9 @@ webpack@^5, webpack@^5.38.1, webpack@^5.98.0:
watchpack "^2.4.1"
webpack-sources "^3.2.3"
-websocket-driver@>=0.5.1, websocket-driver@^0.7.4:
+websocket-driver@^0.7.4, websocket-driver@>=0.5.1:
version "0.7.4"
- resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760"
+ resolved "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz"
integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==
dependencies:
http-parser-js ">=0.5.1"
@@ -7878,12 +10449,12 @@ websocket-driver@>=0.5.1, websocket-driver@^0.7.4:
websocket-extensions@>=0.1.1:
version "0.1.4"
- resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
+ resolved "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz"
integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
whatwg-url@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
+ resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
dependencies:
tr46 "~0.0.3"
@@ -7891,7 +10462,7 @@ whatwg-url@^5.0.0:
which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz#d76ec27df7fa165f18d5808374a5fe23c29b176e"
+ resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz"
integrity sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==
dependencies:
is-bigint "^1.1.0"
@@ -7902,7 +10473,7 @@ which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1:
which-builtin-type@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz#89183da1b4907ab089a6b02029cc5d8d6574270e"
+ resolved "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz"
integrity sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==
dependencies:
call-bound "^1.0.2"
@@ -7921,7 +10492,7 @@ which-builtin-type@^1.2.1:
which-collection@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0"
+ resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz"
integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==
dependencies:
is-map "^2.0.3"
@@ -7931,12 +10502,12 @@ which-collection@^1.0.2:
which-module@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409"
+ resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz"
integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==
which-typed-array@^1.1.16, which-typed-array@^1.1.19, which-typed-array@^1.1.2:
version "1.1.19"
- resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz#df03842e870b6b88e117524a4b364b6fc689f956"
+ resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz"
integrity sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==
dependencies:
available-typed-arrays "^1.0.7"
@@ -7947,82 +10518,127 @@ which-typed-array@^1.1.16, which-typed-array@^1.1.19, which-typed-array@^1.1.2:
gopd "^1.2.0"
has-tostringtag "^1.0.2"
-which@^1.2.9:
+which@^1.2.14:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
+ resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
dependencies:
isexe "^2.0.0"
-wide-align@^1.1.2:
+which@^1.2.9:
+ version "1.3.1"
+ resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
+ integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+ dependencies:
+ isexe "^2.0.0"
+
+which@^2.0.1, which@~2.0.2:
+ version "2.0.2"
+ resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
+ integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+ dependencies:
+ isexe "^2.0.0"
+
+which@1:
+ version "1.3.1"
+ resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
+ integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+ dependencies:
+ isexe "^2.0.0"
+
+wide-align@^1.1.0:
version "1.1.5"
- resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3"
+ resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz"
integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
dependencies:
string-width "^1.0.2 || 2 || 3 || 4"
+wordwrap@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"
+ integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
+
wrap-ansi@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz"
integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
dependencies:
ansi-styles "^3.2.0"
string-width "^3.0.0"
strip-ansi "^5.0.0"
+wrap-ansi@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
wrappy@1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+ resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
ws@^6.2.1:
version "6.2.3"
- resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.3.tgz#ccc96e4add5fd6fedbc491903075c85c5a11d9ee"
+ resolved "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz"
integrity sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==
dependencies:
async-limiter "~1.0.0"
ws@^7.3.1:
version "7.5.10"
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9"
+ resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz"
integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==
+xmldom@~0.1.22:
+ version "0.1.31"
+ resolved "https://registry.npmjs.org/xmldom/-/xmldom-0.1.31.tgz"
+ integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==
+
xtend@^4.0.2:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+ resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
y18n@^4.0.0:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
+ resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"
integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
+y18n@^5.0.5:
+ version "5.0.8"
+ resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"
+ integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
+
yallist@^3.0.2:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+ resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
-yallist@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
- integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
-
yaml@^1.10.0, yaml@^1.10.2:
version "1.10.2"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
+ resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
yargs-parser@^13.1.2:
version "13.1.2"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
+ resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz"
integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
dependencies:
camelcase "^5.0.0"
decamelize "^1.2.0"
+yargs-parser@^21.1.1:
+ version "21.1.1"
+ resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz"
+ integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
+
yargs@^13.3.2:
version "13.3.2"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
+ resolved "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz"
integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
dependencies:
cliui "^5.0.0"
@@ -8036,7 +10652,20 @@ yargs@^13.3.2:
y18n "^4.0.0"
yargs-parser "^13.1.2"
+yargs@^17.5.1:
+ version "17.7.2"
+ resolved "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz"
+ integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
+ dependencies:
+ cliui "^8.0.1"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.3"
+ y18n "^5.0.5"
+ yargs-parser "^21.1.1"
+
yocto-queue@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+ resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==