From f69db2a75c3602aeaaa3ebe0e7d0c57ad98ab54e Mon Sep 17 00:00:00 2001 From: Ayaz-Microsoft Date: Fri, 14 Aug 2026 12:19:15 +0530 Subject: [PATCH 01/12] Implement citation handling improvements in response handlers and orchestration manager - Add functions to manage streaming citation buffers and clean citations. - Update orchestration manager to clear citation buffers and clean final text. - Enhance unit tests for citation cleaning and streaming callbacks. --- src/backend/callbacks/response_handlers.py | 51 ++++++++++++++++++- .../orchestration/orchestration_manager.py | 8 +++ .../callbacks/test_response_handlers.py | 35 ++++++++++++- .../test_orchestration_manager.py | 32 +++++++++++- 4 files changed, 121 insertions(+), 5 deletions(-) diff --git a/src/backend/callbacks/response_handlers.py b/src/backend/callbacks/response_handlers.py index c2bf654ff..78e4d921d 100644 --- a/src/backend/callbacks/response_handlers.py +++ b/src/backend/callbacks/response_handlers.py @@ -17,6 +17,38 @@ logger = logging.getLogger(__name__) +_stream_citation_buffers: dict[tuple[str, str], str] = {} + + +def clear_streaming_citation_buffers( + user_id: str, + agent_id: str | None = None, +) -> None: + """Discard partial citation markers retained between streaming chunks.""" + for key in [ + key + for key in _stream_citation_buffers + if key[0] == user_id and (agent_id is None or key[1] == agent_id) + ]: + _stream_citation_buffers.pop(key, None) + + +def _split_trailing_partial_citation(text: str) -> tuple[str, str]: + """Hold a trailing citation prefix until a later chunk completes it.""" + for opener, closer in (("[", "]"), ("【", "】")): + open_index = text.rfind(opener) + if open_index == -1 or text.find(closer, open_index) != -1: + continue + + candidate = text[open_index + 1:] + if not candidate.strip() or re.fullmatch( + r"\s*\d+(?:\s*:\s*\d*)?(?:\s*[|†]?\s*[a-zA-Z]*)?", + candidate, + ): + return text[:open_index], text[open_index:] + + return text, "" + def format_agent_display_name(raw_name: str) -> str: """Convert raw agent IDs (e.g. 'HRHelperAgent', 'hr_helper_agent') to @@ -61,7 +93,12 @@ def clean_citations(text: str) -> str: """Remove citation markers from agent responses while preserving formatting.""" if not text: return text - text = re.sub(r'\[\d+:\d+\|source\]', '', text) + text = re.sub( + r'\[\s*\d+\s*:\s*\d+\s*[|†]\s*source\s*\]', + '', + text, + flags=re.IGNORECASE, + ) text = re.sub(r'\[\s*source\s*\]', '', text, flags=re.IGNORECASE) text = re.sub(r'\[\d+\]', '', text) text = re.sub(r'【[^】]*】', '', text) @@ -164,7 +201,17 @@ async def streaming_agent_response_callback( collected.append(str(txt)) chunk_text = "".join(collected) if collected else "" - cleaned = clean_citations(chunk_text or "") + buffer_key = (user_id, agent_id) + combined = _stream_citation_buffers.pop(buffer_key, "") + (chunk_text or "") + + if is_final: + emittable, _ = _split_trailing_partial_citation(combined) + else: + emittable, held_back = _split_trailing_partial_citation(combined) + if held_back: + _stream_citation_buffers[buffer_key] = held_back + + cleaned = clean_citations(emittable) contents = getattr(update, "contents", []) or [] tool_calls = _extract_tool_calls_from_contents(contents) diff --git a/src/backend/orchestration/orchestration_manager.py b/src/backend/orchestration/orchestration_manager.py index 77846e39f..66154c7b8 100644 --- a/src/backend/orchestration/orchestration_manager.py +++ b/src/backend/orchestration/orchestration_manager.py @@ -17,6 +17,8 @@ MagenticPlanReviewRequest) from agents.agent_factory import AgentFactory from callbacks.response_handlers import (agent_response_callback, + clean_citations, + clear_streaming_citation_buffers, format_agent_display_name, streaming_agent_response_callback) from common.config.app_config import config @@ -395,6 +397,7 @@ async def run_orchestration(self, user_id: str, input_task) -> None: final_output_ref: list = [None] orchestrator_chunks: list[str] = [] current_streaming_agent_ref: list = [None] + clear_streaming_citation_buffers(user_id) # Collect participant names for plan conversion participant_names = [ @@ -479,6 +482,9 @@ async def run_orchestration(self, user_id: str, input_task) -> None: # accumulated orchestrator streaming chunks. final_text = final_output_ref[0] or "".join(orchestrator_chunks) + # The manager's final answer bypasses the participant callbacks. + final_text = clean_citations(final_text) + # Repair collapsed markdown tables before rendering (Bug 47810). final_text = _normalize_markdown_tables(final_text) @@ -548,6 +554,7 @@ async def run_orchestration(self, user_id: str, input_task) -> None: raise finally: + clear_streaming_citation_buffers(user_id) # Clean up MCP connections to avoid noisy cross-task # RuntimeError from anyio when async generators are GC'd. await self._cleanup_workflow_mcp(user_id) @@ -1131,6 +1138,7 @@ async def _process_event_stream( if isinstance(msg, Message) and msg.text: final_output_ref[0] = msg.text else: + clear_streaming_citation_buffers(user_id, agent_id) for msg in event.data: if isinstance(msg, Message) and msg.text: try: diff --git a/src/tests/backend/callbacks/test_response_handlers.py b/src/tests/backend/callbacks/test_response_handlers.py index 23a0c0ac5..4849e79db 100644 --- a/src/tests/backend/callbacks/test_response_handlers.py +++ b/src/tests/backend/callbacks/test_response_handlers.py @@ -132,6 +132,7 @@ def __init__(self, text="", role="assistant", author_name=""): from backend.callbacks.response_handlers import ( _extract_tool_calls_from_contents, _is_function_call_item, agent_response_callback, clean_citations, + clear_streaming_citation_buffers, format_agent_display_name, streaming_agent_response_callback) @@ -166,6 +167,18 @@ def test_clean_citations_numeric_source(self): expected = "This is text with citations." assert clean_citations(text) == expected + def test_clean_citations_foundry_numeric_source(self): + """Test cleaning the Azure Foundry [1:2†source] citation format.""" + text = "This is text [5:0†source] with citations." + expected = "This is text with citations." + assert clean_citations(text) == expected + + def test_clean_citations_foundry_numeric_source_with_spacing(self): + """Test cleaning Foundry citations with optional spacing and casing.""" + text = "This is text [ 5 : 0 † SOURCE ] with citations." + expected = "This is text with citations." + assert clean_citations(text) == expected + def test_clean_citations_source_only(self): """Test cleaning [source] format citations.""" text = "Text with [source] citation." @@ -440,7 +453,7 @@ def test_agent_response_callback_with_chat_message(self, mock_time, mock_create_ # Create an instance of our MockChatMessage mock_message = MockChatMessage() - mock_message.text = "Test message with citations [1:2|source]" + mock_message.text = "Test message with citations [5:0†source]" mock_message.author_name = "TestAgent" mock_message.role = "assistant" @@ -573,7 +586,7 @@ async def test_streaming_callback_no_user_id(self): async def test_streaming_callback_with_text(self): """Test streaming callback with update that has text.""" mock_update = Mock() - mock_update.text = "Test streaming text [source]" + mock_update.text = "Test streaming text [5:0†source]" mock_update.contents = [] with patch('backend.callbacks.response_handlers.AgentMessageStreaming') as mock_streaming: @@ -596,6 +609,24 @@ async def test_streaming_callback_with_text(self): message_type=WebsocketMessageType.AGENT_MESSAGE_STREAMING ) + @pytest.mark.asyncio + async def test_streaming_callback_cleans_citation_split_across_chunks(self): + """A split citation marker must never reach the thinking-process UI.""" + clear_streaming_citation_buffers("user_456") + first_update = Mock(text="Test streaming text [5:0†sou", contents=[]) + second_update = Mock(text="rce] continues.", contents=[]) + + with patch('backend.callbacks.response_handlers.AgentMessageStreaming') as mock_streaming: + await streaming_agent_response_callback( + "agent_123", first_update, False, user_id="user_456" + ) + await streaming_agent_response_callback( + "agent_123", second_update, False, user_id="user_456" + ) + + assert mock_streaming.call_args_list[0].kwargs["content"] == "Test streaming text " + assert mock_streaming.call_args_list[1].kwargs["content"] == " continues." + @pytest.mark.asyncio async def test_streaming_callback_no_text_with_contents(self): """Test streaming callback when update has no text but has contents with text. diff --git a/src/tests/backend/orchestration/test_orchestration_manager.py b/src/tests/backend/orchestration/test_orchestration_manager.py index f0a0b6166..93f1d3c23 100644 --- a/src/tests/backend/orchestration/test_orchestration_manager.py +++ b/src/tests/backend/orchestration/test_orchestration_manager.py @@ -217,6 +217,10 @@ def __init__(self): sys.modules['callbacks.response_handlers'] = Mock( agent_response_callback=Mock(), + clean_citations=Mock( + side_effect=lambda text: text.replace("[5:0†source]", "") + ), + clear_streaming_citation_buffers=Mock(), streaming_agent_response_callback=AsyncMock(), ) @@ -316,6 +320,7 @@ async def get_agents(self, user_id, team_config_input, memory_store): orchestration_config = sys.modules['orchestration.connection_config'].orchestration_config agent_response_callback = sys.modules['callbacks.response_handlers'].agent_response_callback streaming_agent_response_callback = sys.modules['callbacks.response_handlers'].streaming_agent_response_callback +clear_streaming_citation_buffers = sys.modules['callbacks.response_handlers'].clear_streaming_citation_buffers # ========================================================================= @@ -606,6 +611,7 @@ def setup_method(self): agent_response_callback.reset_mock() streaming_agent_response_callback.reset_mock() streaming_agent_response_callback.side_effect = None + clear_streaming_citation_buffers.reset_mock() mock_wait_approval.reset_mock() mock_wait_approval.return_value = MockPlanApprovalResponse(approved=True, m_plan_id="test-plan-id") mock_convert.reset_mock() @@ -661,6 +667,31 @@ async def test_given_executor_completed_when_run_then_captures_final_text(self): sent_message = call_args[0][0] assert sent_message["data"]["content"] == "Final answer text" + @pytest.mark.asyncio + async def test_given_manager_citation_when_run_then_final_text_is_cleaned(self): + final_msg = MockMessage(text="Final answer [5:0†source]") + events = [ + _make_event( + "executor_completed", + data=[final_msg], + executor_id="magentic_orchestrator", + ), + ] + mock_workflow = Mock() + mock_workflow.run = Mock(return_value=_async_iter(events)) + mock_workflow._executors = {} + mock_workflow.executors = {} + mock_workflow.get_executors_list.return_value = [] + orchestration_config.get_current_orchestration.return_value = mock_workflow + + await OrchestrationManager().run_orchestration( + user_id="user-1", + input_task="do stuff", + ) + + sent_message = connection_config.send_status_update_async.call_args_list[-1][0][0] + assert sent_message["data"]["content"] == "Final answer " + @pytest.mark.asyncio async def test_given_agent_completed_event_when_run_then_calls_agent_callback(self): # Arrange @@ -1071,4 +1102,3 @@ def test_given_empty_or_none_when_normalized_then_returns_input(self): def test_given_non_table_pipe_line_when_reflowed_then_returns_none(self): assert _reflow_collapsed_table_line("a | b | c") is None - From 11cc79eb037a65f9e06c13c6dd17c7c4367cbf5b Mon Sep 17 00:00:00 2001 From: Ayaz-Microsoft Date: Fri, 14 Aug 2026 12:47:49 +0530 Subject: [PATCH 02/12] Enhance citation parsing in _split_trailing_partial_citation function and add unit tests for citation handling --- src/backend/callbacks/response_handlers.py | 16 ++++++++++++---- .../backend/callbacks/test_response_handlers.py | 16 ++++++++++++++++ 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/src/backend/callbacks/response_handlers.py b/src/backend/callbacks/response_handlers.py index 78e4d921d..d989fe12c 100644 --- a/src/backend/callbacks/response_handlers.py +++ b/src/backend/callbacks/response_handlers.py @@ -40,11 +40,19 @@ def _split_trailing_partial_citation(text: str) -> tuple[str, str]: if open_index == -1 or text.find(closer, open_index) != -1: continue - candidate = text[open_index + 1:] - if not candidate.strip() or re.fullmatch( - r"\s*\d+(?:\s*:\s*\d*)?(?:\s*[|†]?\s*[a-zA-Z]*)?", + candidate = text[open_index + 1:].strip() + source_prefix = r"(?:s|so|sou|sour|sourc|source)" + is_numeric_citation = re.fullmatch( + rf"\d+\s*:\s*\d*(?:\s*[|†]\s*{source_prefix}?)?", candidate, - ): + flags=re.IGNORECASE, + ) + is_source_citation = re.fullmatch( + rf"{source_prefix}(?::[^\]]*)?", + candidate, + flags=re.IGNORECASE, + ) + if is_numeric_citation or is_source_citation: return text[:open_index], text[open_index:] return text, "" diff --git a/src/tests/backend/callbacks/test_response_handlers.py b/src/tests/backend/callbacks/test_response_handlers.py index 4849e79db..4d4813aeb 100644 --- a/src/tests/backend/callbacks/test_response_handlers.py +++ b/src/tests/backend/callbacks/test_response_handlers.py @@ -131,6 +131,7 @@ def __init__(self, text="", role="assistant", author_name=""): # Now import our module under test from backend.callbacks.response_handlers import ( _extract_tool_calls_from_contents, _is_function_call_item, + _split_trailing_partial_citation, agent_response_callback, clean_citations, clear_streaming_citation_buffers, format_agent_display_name, @@ -228,6 +229,21 @@ def test_clean_citations_preserves_formatting(self): assert clean_citations(text) == expected +class TestSplitTrailingPartialCitation: + """Tests for distinguishing partial citations from normal bracketed text.""" + + def test_holds_partial_foundry_citation(self): + text = "Answer [5:0†sou" + assert _split_trailing_partial_citation(text) == ("Answer ", "[5:0†sou") + + @pytest.mark.parametrize("text", [ + "Consider [5 reasons", + "See the [2024 report", + ]) + def test_preserves_normal_unclosed_bracketed_text(self, text): + assert _split_trailing_partial_citation(text) == (text, "") + + class TestFormatAgentDisplayName: """Tests for the format_agent_display_name function.""" From dd67f30cc05aaf5fb8b5387f49ebb7747b28eee5 Mon Sep 17 00:00:00 2001 From: Ayaz-Microsoft Date: Fri, 14 Aug 2026 15:53:53 +0530 Subject: [PATCH 03/12] revert: remove citation handling changes Reverts commits 11cc79eb and f69db2a7. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 156d17a7-8650-4c22-b4e3-b83fa00ef7be --- src/backend/callbacks/response_handlers.py | 59 +------------------ .../orchestration/orchestration_manager.py | 8 --- .../callbacks/test_response_handlers.py | 51 +--------------- .../test_orchestration_manager.py | 32 +--------- 4 files changed, 5 insertions(+), 145 deletions(-) diff --git a/src/backend/callbacks/response_handlers.py b/src/backend/callbacks/response_handlers.py index d989fe12c..c2bf654ff 100644 --- a/src/backend/callbacks/response_handlers.py +++ b/src/backend/callbacks/response_handlers.py @@ -17,46 +17,6 @@ logger = logging.getLogger(__name__) -_stream_citation_buffers: dict[tuple[str, str], str] = {} - - -def clear_streaming_citation_buffers( - user_id: str, - agent_id: str | None = None, -) -> None: - """Discard partial citation markers retained between streaming chunks.""" - for key in [ - key - for key in _stream_citation_buffers - if key[0] == user_id and (agent_id is None or key[1] == agent_id) - ]: - _stream_citation_buffers.pop(key, None) - - -def _split_trailing_partial_citation(text: str) -> tuple[str, str]: - """Hold a trailing citation prefix until a later chunk completes it.""" - for opener, closer in (("[", "]"), ("【", "】")): - open_index = text.rfind(opener) - if open_index == -1 or text.find(closer, open_index) != -1: - continue - - candidate = text[open_index + 1:].strip() - source_prefix = r"(?:s|so|sou|sour|sourc|source)" - is_numeric_citation = re.fullmatch( - rf"\d+\s*:\s*\d*(?:\s*[|†]\s*{source_prefix}?)?", - candidate, - flags=re.IGNORECASE, - ) - is_source_citation = re.fullmatch( - rf"{source_prefix}(?::[^\]]*)?", - candidate, - flags=re.IGNORECASE, - ) - if is_numeric_citation or is_source_citation: - return text[:open_index], text[open_index:] - - return text, "" - def format_agent_display_name(raw_name: str) -> str: """Convert raw agent IDs (e.g. 'HRHelperAgent', 'hr_helper_agent') to @@ -101,12 +61,7 @@ def clean_citations(text: str) -> str: """Remove citation markers from agent responses while preserving formatting.""" if not text: return text - text = re.sub( - r'\[\s*\d+\s*:\s*\d+\s*[|†]\s*source\s*\]', - '', - text, - flags=re.IGNORECASE, - ) + text = re.sub(r'\[\d+:\d+\|source\]', '', text) text = re.sub(r'\[\s*source\s*\]', '', text, flags=re.IGNORECASE) text = re.sub(r'\[\d+\]', '', text) text = re.sub(r'【[^】]*】', '', text) @@ -209,17 +164,7 @@ async def streaming_agent_response_callback( collected.append(str(txt)) chunk_text = "".join(collected) if collected else "" - buffer_key = (user_id, agent_id) - combined = _stream_citation_buffers.pop(buffer_key, "") + (chunk_text or "") - - if is_final: - emittable, _ = _split_trailing_partial_citation(combined) - else: - emittable, held_back = _split_trailing_partial_citation(combined) - if held_back: - _stream_citation_buffers[buffer_key] = held_back - - cleaned = clean_citations(emittable) + cleaned = clean_citations(chunk_text or "") contents = getattr(update, "contents", []) or [] tool_calls = _extract_tool_calls_from_contents(contents) diff --git a/src/backend/orchestration/orchestration_manager.py b/src/backend/orchestration/orchestration_manager.py index 66154c7b8..77846e39f 100644 --- a/src/backend/orchestration/orchestration_manager.py +++ b/src/backend/orchestration/orchestration_manager.py @@ -17,8 +17,6 @@ MagenticPlanReviewRequest) from agents.agent_factory import AgentFactory from callbacks.response_handlers import (agent_response_callback, - clean_citations, - clear_streaming_citation_buffers, format_agent_display_name, streaming_agent_response_callback) from common.config.app_config import config @@ -397,7 +395,6 @@ async def run_orchestration(self, user_id: str, input_task) -> None: final_output_ref: list = [None] orchestrator_chunks: list[str] = [] current_streaming_agent_ref: list = [None] - clear_streaming_citation_buffers(user_id) # Collect participant names for plan conversion participant_names = [ @@ -482,9 +479,6 @@ async def run_orchestration(self, user_id: str, input_task) -> None: # accumulated orchestrator streaming chunks. final_text = final_output_ref[0] or "".join(orchestrator_chunks) - # The manager's final answer bypasses the participant callbacks. - final_text = clean_citations(final_text) - # Repair collapsed markdown tables before rendering (Bug 47810). final_text = _normalize_markdown_tables(final_text) @@ -554,7 +548,6 @@ async def run_orchestration(self, user_id: str, input_task) -> None: raise finally: - clear_streaming_citation_buffers(user_id) # Clean up MCP connections to avoid noisy cross-task # RuntimeError from anyio when async generators are GC'd. await self._cleanup_workflow_mcp(user_id) @@ -1138,7 +1131,6 @@ async def _process_event_stream( if isinstance(msg, Message) and msg.text: final_output_ref[0] = msg.text else: - clear_streaming_citation_buffers(user_id, agent_id) for msg in event.data: if isinstance(msg, Message) and msg.text: try: diff --git a/src/tests/backend/callbacks/test_response_handlers.py b/src/tests/backend/callbacks/test_response_handlers.py index 4d4813aeb..23a0c0ac5 100644 --- a/src/tests/backend/callbacks/test_response_handlers.py +++ b/src/tests/backend/callbacks/test_response_handlers.py @@ -131,9 +131,7 @@ def __init__(self, text="", role="assistant", author_name=""): # Now import our module under test from backend.callbacks.response_handlers import ( _extract_tool_calls_from_contents, _is_function_call_item, - _split_trailing_partial_citation, agent_response_callback, clean_citations, - clear_streaming_citation_buffers, format_agent_display_name, streaming_agent_response_callback) @@ -168,18 +166,6 @@ def test_clean_citations_numeric_source(self): expected = "This is text with citations." assert clean_citations(text) == expected - def test_clean_citations_foundry_numeric_source(self): - """Test cleaning the Azure Foundry [1:2†source] citation format.""" - text = "This is text [5:0†source] with citations." - expected = "This is text with citations." - assert clean_citations(text) == expected - - def test_clean_citations_foundry_numeric_source_with_spacing(self): - """Test cleaning Foundry citations with optional spacing and casing.""" - text = "This is text [ 5 : 0 † SOURCE ] with citations." - expected = "This is text with citations." - assert clean_citations(text) == expected - def test_clean_citations_source_only(self): """Test cleaning [source] format citations.""" text = "Text with [source] citation." @@ -229,21 +215,6 @@ def test_clean_citations_preserves_formatting(self): assert clean_citations(text) == expected -class TestSplitTrailingPartialCitation: - """Tests for distinguishing partial citations from normal bracketed text.""" - - def test_holds_partial_foundry_citation(self): - text = "Answer [5:0†sou" - assert _split_trailing_partial_citation(text) == ("Answer ", "[5:0†sou") - - @pytest.mark.parametrize("text", [ - "Consider [5 reasons", - "See the [2024 report", - ]) - def test_preserves_normal_unclosed_bracketed_text(self, text): - assert _split_trailing_partial_citation(text) == (text, "") - - class TestFormatAgentDisplayName: """Tests for the format_agent_display_name function.""" @@ -469,7 +440,7 @@ def test_agent_response_callback_with_chat_message(self, mock_time, mock_create_ # Create an instance of our MockChatMessage mock_message = MockChatMessage() - mock_message.text = "Test message with citations [5:0†source]" + mock_message.text = "Test message with citations [1:2|source]" mock_message.author_name = "TestAgent" mock_message.role = "assistant" @@ -602,7 +573,7 @@ async def test_streaming_callback_no_user_id(self): async def test_streaming_callback_with_text(self): """Test streaming callback with update that has text.""" mock_update = Mock() - mock_update.text = "Test streaming text [5:0†source]" + mock_update.text = "Test streaming text [source]" mock_update.contents = [] with patch('backend.callbacks.response_handlers.AgentMessageStreaming') as mock_streaming: @@ -625,24 +596,6 @@ async def test_streaming_callback_with_text(self): message_type=WebsocketMessageType.AGENT_MESSAGE_STREAMING ) - @pytest.mark.asyncio - async def test_streaming_callback_cleans_citation_split_across_chunks(self): - """A split citation marker must never reach the thinking-process UI.""" - clear_streaming_citation_buffers("user_456") - first_update = Mock(text="Test streaming text [5:0†sou", contents=[]) - second_update = Mock(text="rce] continues.", contents=[]) - - with patch('backend.callbacks.response_handlers.AgentMessageStreaming') as mock_streaming: - await streaming_agent_response_callback( - "agent_123", first_update, False, user_id="user_456" - ) - await streaming_agent_response_callback( - "agent_123", second_update, False, user_id="user_456" - ) - - assert mock_streaming.call_args_list[0].kwargs["content"] == "Test streaming text " - assert mock_streaming.call_args_list[1].kwargs["content"] == " continues." - @pytest.mark.asyncio async def test_streaming_callback_no_text_with_contents(self): """Test streaming callback when update has no text but has contents with text. diff --git a/src/tests/backend/orchestration/test_orchestration_manager.py b/src/tests/backend/orchestration/test_orchestration_manager.py index 93f1d3c23..f0a0b6166 100644 --- a/src/tests/backend/orchestration/test_orchestration_manager.py +++ b/src/tests/backend/orchestration/test_orchestration_manager.py @@ -217,10 +217,6 @@ def __init__(self): sys.modules['callbacks.response_handlers'] = Mock( agent_response_callback=Mock(), - clean_citations=Mock( - side_effect=lambda text: text.replace("[5:0†source]", "") - ), - clear_streaming_citation_buffers=Mock(), streaming_agent_response_callback=AsyncMock(), ) @@ -320,7 +316,6 @@ async def get_agents(self, user_id, team_config_input, memory_store): orchestration_config = sys.modules['orchestration.connection_config'].orchestration_config agent_response_callback = sys.modules['callbacks.response_handlers'].agent_response_callback streaming_agent_response_callback = sys.modules['callbacks.response_handlers'].streaming_agent_response_callback -clear_streaming_citation_buffers = sys.modules['callbacks.response_handlers'].clear_streaming_citation_buffers # ========================================================================= @@ -611,7 +606,6 @@ def setup_method(self): agent_response_callback.reset_mock() streaming_agent_response_callback.reset_mock() streaming_agent_response_callback.side_effect = None - clear_streaming_citation_buffers.reset_mock() mock_wait_approval.reset_mock() mock_wait_approval.return_value = MockPlanApprovalResponse(approved=True, m_plan_id="test-plan-id") mock_convert.reset_mock() @@ -667,31 +661,6 @@ async def test_given_executor_completed_when_run_then_captures_final_text(self): sent_message = call_args[0][0] assert sent_message["data"]["content"] == "Final answer text" - @pytest.mark.asyncio - async def test_given_manager_citation_when_run_then_final_text_is_cleaned(self): - final_msg = MockMessage(text="Final answer [5:0†source]") - events = [ - _make_event( - "executor_completed", - data=[final_msg], - executor_id="magentic_orchestrator", - ), - ] - mock_workflow = Mock() - mock_workflow.run = Mock(return_value=_async_iter(events)) - mock_workflow._executors = {} - mock_workflow.executors = {} - mock_workflow.get_executors_list.return_value = [] - orchestration_config.get_current_orchestration.return_value = mock_workflow - - await OrchestrationManager().run_orchestration( - user_id="user-1", - input_task="do stuff", - ) - - sent_message = connection_config.send_status_update_async.call_args_list[-1][0][0] - assert sent_message["data"]["content"] == "Final answer " - @pytest.mark.asyncio async def test_given_agent_completed_event_when_run_then_calls_agent_callback(self): # Arrange @@ -1102,3 +1071,4 @@ def test_given_empty_or_none_when_normalized_then_returns_input(self): def test_given_non_table_pipe_line_when_reflowed_then_returns_none(self): assert _reflow_collapsed_table_line("a | b | c") is None + From eb10518243a1219317e8319bb01825fb36b5ba76 Mon Sep 17 00:00:00 2001 From: Ayaz-Microsoft Date: Fri, 14 Aug 2026 20:09:54 +0530 Subject: [PATCH 04/12] Implement citation suppression in agent instructions and tests --- src/backend/agents/agent_factory.py | 10 +++++++ .../orchestration/plan_review_helpers.py | 2 ++ .../backend/agents/test_agent_factory.py | 30 +++++++++++++++++++ .../orchestration/test_plan_review_helpers.py | 6 ++++ 4 files changed, 48 insertions(+) diff --git a/src/backend/agents/agent_factory.py b/src/backend/agents/agent_factory.py index c27bc2106..cd7de8a90 100644 --- a/src/backend/agents/agent_factory.py +++ b/src/backend/agents/agent_factory.py @@ -55,6 +55,13 @@ class UnsupportedModelError(Exception): 6. Do NOT re-ask anything already answered in the conversation history. """ +_KNOWLEDGE_BASE_NO_CITATIONS_PROMPT = """ + +RESPONSE CITATION POLICY (CRITICAL): +- Do not include any citation markers, source-reference tokens, attribution + markers, or footnotes in your response. +""" + class AgentFactory: """Create and manage teams of agents from JSON configuration. @@ -158,6 +165,9 @@ async def create_agent_from_config( # Build agent instructions from system_message + optional interaction rules instructions = getattr(agent_obj, "system_message", "") + if kb_config: + instructions += _KNOWLEDGE_BASE_NO_CITATIONS_PROMPT + # Universal user-interaction rules for agents that have # user_responses=true — tells them to call request_user_clarification. if user_responses: diff --git a/src/backend/orchestration/plan_review_helpers.py b/src/backend/orchestration/plan_review_helpers.py index efb2d536e..2effb598d 100644 --- a/src/backend/orchestration/plan_review_helpers.py +++ b/src/backend/orchestration/plan_review_helpers.py @@ -180,6 +180,8 @@ def get_magentic_prompt_kwargs( recommend, or guess any specific team, do NOT claim any action was performed, and do NOT attempt to answer the out-of-scope request itself. - Compile ONLY from messages agents actually produced. Quote verbatim where appropriate. +- Do not include any citation markers, source-reference tokens, attribution + markers, or footnotes in your response. - Do NOT fabricate URLs, results, or content that no agent produced. - If a required agent step did not run, state it plainly — do not pretend it did. - If an agent produced an image (a markdown image ![alt](url) or an image URL such as one diff --git a/src/tests/backend/agents/test_agent_factory.py b/src/tests/backend/agents/test_agent_factory.py index 77f03d62b..e483e5054 100644 --- a/src/tests/backend/agents/test_agent_factory.py +++ b/src/tests/backend/agents/test_agent_factory.py @@ -46,6 +46,7 @@ # --- agents sub-modules (short absolute imports in factory code) mock_agent_template_cls = Mock() mock_mcp_config_cls = Mock() +mock_knowledge_base_config_cls = Mock() sys.modules.setdefault("agents", Mock()) # parent package stub _mock_agent_template_mod = Mock() @@ -57,6 +58,7 @@ _mock_mcp_config_mod = Mock() _mock_mcp_config_mod.MCPConfig = mock_mcp_config_cls _mock_mcp_config_mod.VectorStoreConfig = mock_vector_store_config_cls +_mock_mcp_config_mod.KnowledgeBaseConfig = mock_knowledge_base_config_cls sys.modules["config.mcp_config"] = _mock_mcp_config_mod # Now import the module under test (full backend.* path as per project convention) @@ -76,6 +78,8 @@ def _agent_obj(**overrides) -> SimpleNamespace: coding_tools=False, use_toolbox=False, use_file_search=False, + use_knowledge_base=False, + knowledge_base_name=None, user_responses=False, vector_store_name=None, ) @@ -113,6 +117,7 @@ def setup_method(self): self.memory_store = Mock() mock_agent_template_cls.reset_mock() mock_mcp_config_cls.reset_mock() + mock_knowledge_base_config_cls.reset_mock() mock_vector_store_config_cls.reset_mock() @pytest.mark.asyncio @@ -164,6 +169,31 @@ async def test_user_responses_false_no_mcp_config(self): mock_mcp_config_cls.from_env.assert_not_called() + @pytest.mark.asyncio + async def test_knowledge_base_agent_appends_no_citations_prompt(self): + """KB-backed agents receive citation cleanup instructions.""" + kb_instance = Mock() + mock_knowledge_base_config_cls.from_env.return_value = kb_instance + agent_instance = Mock() + agent_instance.open = AsyncMock() + mock_agent_template_cls.return_value = agent_instance + + await self.factory.create_agent_from_config( + "user123", + _agent_obj( + use_knowledge_base=True, + knowledge_base_name="test-kb", + system_message="Use retrieved facts.", + ), + self.team_config, + self.memory_store, + ) + + mock_knowledge_base_config_cls.from_env.assert_called_once_with("test-kb") + instructions = mock_agent_template_cls.call_args[1]["agent_instructions"] + assert "RESPONSE CITATION POLICY" in instructions + assert "Do not include any citation markers" in instructions + @pytest.mark.asyncio async def test_use_toolbox_takes_priority_over_user_responses(self): """use_toolbox=True takes priority; MCPConfig uses the toolbox_filter, not 'user_responses'.""" diff --git a/src/tests/backend/orchestration/test_plan_review_helpers.py b/src/tests/backend/orchestration/test_plan_review_helpers.py index 9bc9a595d..2ebf03047 100644 --- a/src/tests/backend/orchestration/test_plan_review_helpers.py +++ b/src/tests/backend/orchestration/test_plan_review_helpers.py @@ -237,6 +237,12 @@ def test_given_no_user_responses_when_called_then_final_has_answer_rules(self): # Assert assert "FINAL ANSWER RULES" in result["final_answer_prompt"] + def test_given_any_team_when_called_then_final_suppresses_citations(self): + result = get_magentic_prompt_kwargs(has_user_responses=False) + + final_prompt = result["final_answer_prompt"] + assert "Do not include any citation markers" in final_prompt + def test_given_default_when_called_then_user_responses_is_false(self): # Act result = get_magentic_prompt_kwargs() From 7377c46bea6fb46c09cdf24ed0c8564afb146e07 Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Limited)" Date: Fri, 21 Aug 2026 14:58:54 +0530 Subject: [PATCH 05/12] Configured Microsoft Package Feed Proxy --- .devcontainer/Dockerfile | 2 +- .devcontainer/devcontainer-lock.json | 29 + .devcontainer/devcontainer.json | 7 +- .devcontainer/setupEnv.sh | 5 +- .github/requirements.txt | 1 + .github/workflows/pylint.yml | 4 +- .github/workflows/test-automation-v2.yml | 2 +- .github/workflows/test-automation.yml | 2 +- .github/workflows/test.yml | 2 +- docs/LocalDevelopmentSetup.md | 10 + infra/scripts/build/package_frontend.ps1 | 3 + infra/scripts/build/package_frontend.sh | 3 + infra/scripts/post-provision/requirements.txt | 1 + infra/vscode_web/endpoint-requirements.txt | 1 + infra/vscode_web/requirements.txt | 1 + src/App/.npmrc | 1 + src/App/Dockerfile | 14 +- src/App/package-lock.json | 2541 +++++++++-------- src/App/package_frontend.ps1 | 3 + src/App/package_frontend.sh | 3 + src/App/pyproject.toml | 3 + src/App/requirements.txt | 1 + src/backend/Dockerfile | 4 + src/backend/Dockerfile.NoCache | 4 + src/backend/pyproject.toml | 3 + src/mcp_server/Dockerfile | 4 + src/mcp_server/pyproject.toml | 3 + tests/e2e-test/requirements.txt | 1 + 28 files changed, 1379 insertions(+), 1279 deletions(-) create mode 100644 .devcontainer/devcontainer-lock.json create mode 100644 src/App/.npmrc diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6aa4847d9..03fa4d136 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye +FROM mcr.microsoft.com/devcontainers/python:3.11-bookworm # Remove Yarn repository to avoid GPG key expiration issue RUN rm -f /etc/apt/sources.list.d/yarn.list \ No newline at end of file diff --git a/.devcontainer/devcontainer-lock.json b/.devcontainer/devcontainer-lock.json new file mode 100644 index 000000000..eb5226d08 --- /dev/null +++ b/.devcontainer/devcontainer-lock.json @@ -0,0 +1,29 @@ +{ + "features": { + "ghcr.io/azure/azure-dev/azd:latest": { + "version": "0.2.0", + "resolved": "ghcr.io/azure/azure-dev/azd@sha256:01bbec064fcb34f7c8730b3e3c2cc210699e213419664524982268b2910c4f73", + "integrity": "sha256:01bbec064fcb34f7c8730b3e3c2cc210699e213419664524982268b2910c4f73" + }, + "ghcr.io/devcontainers/features/azure-cli:1": { + "version": "1.3.0", + "resolved": "ghcr.io/devcontainers/features/azure-cli@sha256:d98f1066c077be0fa9d115b718f458bd803e415181b4a96f82a6f5d9f77241ac", + "integrity": "sha256:d98f1066c077be0fa9d115b718f458bd803e415181b4a96f82a6f5d9f77241ac" + }, + "ghcr.io/devcontainers/features/docker-in-docker:2": { + "version": "2.17.0", + "resolved": "ghcr.io/devcontainers/features/docker-in-docker@sha256:25b9f05705ffba7dbe503230ac76081419306f8c8bc88e0ce78c4ecd99a0c78c", + "integrity": "sha256:25b9f05705ffba7dbe503230ac76081419306f8c8bc88e0ce78c4ecd99a0c78c" + }, + "ghcr.io/devcontainers/features/node:1": { + "version": "1.7.1", + "resolved": "ghcr.io/devcontainers/features/node@sha256:8c0de46939b61958041700ee89e3493f3b2e4131a06dc46b4d9423427d06e5f6", + "integrity": "sha256:8c0de46939b61958041700ee89e3493f3b2e4131a06dc46b4d9423427d06e5f6" + }, + "ghcr.io/jsburckhardt/devcontainer-features/uv:1": { + "version": "1.0.0", + "resolved": "ghcr.io/jsburckhardt/devcontainer-features/uv@sha256:542a0bc2203205b3c696de650ba862f280b20af3543493cc232edd9ac35791f7", + "integrity": "sha256:542a0bc2203205b3c696de650ba862f280b20af3543493cc232edd9ac35791f7" + } + } +} diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index eeed6c990..22f2d8bc2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,7 +6,7 @@ "features": { "ghcr.io/devcontainers/features/docker-in-docker:2": {"version": "latest"}, "ghcr.io/azure/azure-dev/azd:latest": {}, - "ghcr.io/devcontainers/features/node:1": {}, + "ghcr.io/devcontainers/features/node:1": {"pnpmVersion": "none"}, "ghcr.io/devcontainers/features/azure-cli:1": { "installBicep": true, "version": "latest", @@ -46,7 +46,10 @@ "DISPLAY": "dummy", "PYTHONUNBUFFERED": "True", "UV_LINK_MODE": "copy", - "UV_PROJECT_ENVIRONMENT": "/home/vscode/.venv" + "UV_PROJECT_ENVIRONMENT": "/home/vscode/.venv", + "PIP_INDEX_URL": "https://packagefeedproxy.microsoft.io/pypi/simple/", + "UV_INDEX_URL": "https://packagefeedproxy.microsoft.io/pypi/simple/", + "NPM_CONFIG_REGISTRY": "https://packagefeedproxy.microsoft.io/npm/" }, "remoteUser": "vscode", "hostRequirements": { diff --git a/.devcontainer/setupEnv.sh b/.devcontainer/setupEnv.sh index 9c341972a..9694a0822 100755 --- a/.devcontainer/setupEnv.sh +++ b/.devcontainer/setupEnv.sh @@ -8,12 +8,15 @@ set -e echo "Setting up Backend..." cd ./src/backend -uv sync --frozen --extra dev +uv sync --frozen cd ../../ echo "Setting up Frontend..." cd ./src/App +npm_install_start=$(date +%s) npm install +npm_install_end=$(date +%s) +echo "npm install duration: $((npm_install_end-npm_install_start))s" pip install -r requirements.txt cd ../../ diff --git a/.github/requirements.txt b/.github/requirements.txt index 140a7c8f3..82448529c 100644 --- a/.github/requirements.txt +++ b/.github/requirements.txt @@ -1,3 +1,4 @@ +--index-url https://packagefeedproxy.microsoft.io/pypi/simple/ fastapi==0.136.1 uvicorn==0.35.0 azure-cosmos==4.15.0 diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 963675255..fa82577ea 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -26,9 +26,9 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip --index-url https://packagefeedproxy.microsoft.io/pypi/simple/ pip install -r .github/requirements.txt - pip install flake8 # Ensure flake8 is installed explicitly + pip install --index-url https://packagefeedproxy.microsoft.io/pypi/simple/ flake8 # Ensure flake8 is installed explicitly - name: Run flake8 and pylint run: | diff --git a/.github/workflows/test-automation-v2.yml b/.github/workflows/test-automation-v2.yml index 354888b5d..19a9ab641 100644 --- a/.github/workflows/test-automation-v2.yml +++ b/.github/workflows/test-automation-v2.yml @@ -59,7 +59,7 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip --index-url https://packagefeedproxy.microsoft.io/pypi/simple/ pip install -r tests/e2e-test/requirements.txt - name: Ensure browsers are installed diff --git a/.github/workflows/test-automation.yml b/.github/workflows/test-automation.yml index 8e8db6130..8ff4e101e 100644 --- a/.github/workflows/test-automation.yml +++ b/.github/workflows/test-automation.yml @@ -63,7 +63,7 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip --index-url https://packagefeedproxy.microsoft.io/pypi/simple/ pip install -r tests/e2e-test/requirements.txt - name: Ensure browsers are installed diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8eb9d0d31..baa63f614 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,7 @@ jobs: - name: Install dependencies run: | - python -m pip install --upgrade pip + python -m pip install --upgrade pip --index-url https://packagefeedproxy.microsoft.io/pypi/simple/ pip install -r .github/requirements.txt - name: Check if test files exist diff --git a/docs/LocalDevelopmentSetup.md b/docs/LocalDevelopmentSetup.md index 8d74398a5..027fdd264 100644 --- a/docs/LocalDevelopmentSetup.md +++ b/docs/LocalDevelopmentSetup.md @@ -63,6 +63,16 @@ This project uses Backend `.env` file in Backend directory with different config +### Package Feed Proxy (Microsoft-managed devices) + +On Microsoft-managed devices, direct access to public package registries (`npmjs.org`, `pypi.org`, `files.pythonhosted.org`) may be blocked. All `npm`, `pip`, and `uv` installs in this repository are pre-configured to route through the Central Feed Services (CFS)–protected Microsoft Package Feed Proxy: + +- npm: `https://packagefeedproxy.microsoft.io/npm/` (configured in `src/App/.npmrc`) +- pip: `https://packagefeedproxy.microsoft.io/pypi/simple/` (configured as the first line of each `requirements.txt`) +- uv: `https://packagefeedproxy.microsoft.io/pypi/simple/` (configured in each project's `pyproject.toml` under `[tool.uv]`) + +No additional setup should be required on a Microsoft-managed device. If you need to point at a different index temporarily, override it with the `PIP_INDEX_URL` / `UV_INDEX_URL` environment variables or the npm `--registry` flag. + ## Step 1: Prerequisites - Install Required Tools diff --git a/infra/scripts/build/package_frontend.ps1 b/infra/scripts/build/package_frontend.ps1 index 71364c296..8f71d5ccd 100644 --- a/infra/scripts/build/package_frontend.ps1 +++ b/infra/scripts/build/package_frontend.ps1 @@ -6,6 +6,9 @@ cp requirements.txt dist -Force cp *.py dist -Force # Node +$npmInstallStart = Get-Date npm install +$npmInstallEnd = Get-Date +Write-Host "npm install duration: $(($npmInstallEnd - $npmInstallStart).TotalSeconds)s" npm run build cp -r build dist -Force \ No newline at end of file diff --git a/infra/scripts/build/package_frontend.sh b/infra/scripts/build/package_frontend.sh index e334d6b2a..b68f3d9c6 100644 --- a/infra/scripts/build/package_frontend.sh +++ b/infra/scripts/build/package_frontend.sh @@ -9,6 +9,9 @@ cp -f requirements.txt dist cp -f *.py dist #node +npm_install_start=$(date +%s) npm install +npm_install_end=$(date +%s) +echo "npm install duration: $((npm_install_end-npm_install_start))s" npm run build cp -rf build dist \ No newline at end of file diff --git a/infra/scripts/post-provision/requirements.txt b/infra/scripts/post-provision/requirements.txt index 3882ab1eb..1f4c10ae0 100644 --- a/infra/scripts/post-provision/requirements.txt +++ b/infra/scripts/post-provision/requirements.txt @@ -1,3 +1,4 @@ +--index-url https://packagefeedproxy.microsoft.io/pypi/simple/ azure-search-documents==11.5.3 azure-identity==1.24.0 azure-storage-blob==12.26.0 diff --git a/infra/vscode_web/endpoint-requirements.txt b/infra/vscode_web/endpoint-requirements.txt index 18d6803e8..6fc1acaad 100644 --- a/infra/vscode_web/endpoint-requirements.txt +++ b/infra/vscode_web/endpoint-requirements.txt @@ -1,3 +1,4 @@ +--index-url https://packagefeedproxy.microsoft.io/pypi/simple/ azure-ai-projects==1.0.0b12 azure-identity==1.20.0 ansible-core~=2.17.0 \ No newline at end of file diff --git a/infra/vscode_web/requirements.txt b/infra/vscode_web/requirements.txt index 18d6803e8..6fc1acaad 100644 --- a/infra/vscode_web/requirements.txt +++ b/infra/vscode_web/requirements.txt @@ -1,3 +1,4 @@ +--index-url https://packagefeedproxy.microsoft.io/pypi/simple/ azure-ai-projects==1.0.0b12 azure-identity==1.20.0 ansible-core~=2.17.0 \ No newline at end of file diff --git a/src/App/.npmrc b/src/App/.npmrc new file mode 100644 index 000000000..0af11863d --- /dev/null +++ b/src/App/.npmrc @@ -0,0 +1 @@ +registry=https://packagefeedproxy.microsoft.io/npm/ diff --git a/src/App/Dockerfile b/src/App/Dockerfile index 7b8342238..0136b03e2 100644 --- a/src/App/Dockerfile +++ b/src/App/Dockerfile @@ -5,16 +5,16 @@ FROM node:20-alpine AS frontend-builder WORKDIR /app/frontend -# Copy package files first for better caching -COPY package*.json ./ +# Copy package files and npm registry config (packagefeedproxy) first for better caching +COPY package*.json .npmrc* ./ -# Install dependencies -RUN npm ci --silent +# Install dependencies (registry is routed through the Microsoft Package Feed Proxy via .npmrc) +RUN start=$(date +%s); npm ci --silent; end=$(date +%s); echo "npm ci duration: $((end-start))s" # Copy source files COPY . ./ -RUN rm -rf node_modules && npm ci && npm rebuild esbuild --force +RUN start=$(date +%s); rm -rf node_modules && npm ci && npm rebuild esbuild --force; end=$(date +%s); echo "npm ci (rebuild) duration: $((end-start))s" # Build the React app RUN npm run build @@ -28,6 +28,10 @@ COPY --from=ghcr.io/astral-sh/uv:0.6.3 /uv /uvx /bin/ # Setup UV environment variables ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy +# Route pip/uv package resolution through the Microsoft Package Feed Proxy +ENV UV_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple/ \ + PIP_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple/ + WORKDIR /app # Copy Python project definition files diff --git a/src/App/package-lock.json b/src/App/package-lock.json index 344b08ec1..8b5d68d37 100644 --- a/src/App/package-lock.json +++ b/src/App/package-lock.json @@ -47,7 +47,7 @@ }, "node_modules/@adobe/css-tools": { "version": "4.5.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@adobe/css-tools/-/css-tools-4.5.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@adobe/css-tools/-/css-tools-4.5.0.tgz", "integrity": "sha1-tbcaJaTRavokglkt36YvzMYLx9E=", "license": "MIT" }, @@ -67,14 +67,14 @@ }, "node_modules/@asamuzakjp/css-color/node_modules/lru-cache": { "version": "10.4.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lru-cache/-/lru-cache-10.4.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lru-cache/-/lru-cache-10.4.3.tgz", "integrity": "sha1-QQ/IoXtw5ZgBPfJXwkRrfzOD8Rk=", "dev": true, "license": "ISC" }, "node_modules/@babel/code-frame": { "version": "7.29.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/code-frame/-/code-frame-7.29.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/code-frame/-/code-frame-7.29.7.tgz", "integrity": "sha1-8vu/6ofESiFZDsUVt3iywm2IZuc=", "license": "MIT", "dependencies": { @@ -88,7 +88,7 @@ }, "node_modules/@babel/compat-data": { "version": "7.29.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/compat-data/-/compat-data-7.29.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/compat-data/-/compat-data-7.29.7.tgz", "integrity": "sha1-bwI38PNtLlHAVwpjb67Z0tDv5ik=", "dev": true, "license": "MIT", @@ -98,7 +98,7 @@ }, "node_modules/@babel/core": { "version": "7.29.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/core/-/core-7.29.7.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/core/-/core-7.29.7.tgz", "integrity": "sha1-gMELFySAgpaLV6hXuRZAlx8gcPc=", "dev": true, "license": "MIT", @@ -129,7 +129,7 @@ }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz", "integrity": "sha1-VW0u+GiRRuRtzqS/3QlfNDTf/LQ=", "dev": true, "license": "ISC", @@ -138,14 +138,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.29.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/generator/-/generator-7.29.7.tgz", - "integrity": "sha1-zKC4gn5rzzuhdniOfzsYCtbbL6M=", + "version": "7.29.8", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/generator/-/generator-7.29.8.tgz", + "integrity": "sha1-SwuIeIVCJkMzngkCIUikxOuqSXk=", "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.29.7", - "@babel/types": "^7.29.7", + "@babel/parser": "^7.29.8", + "@babel/types": "^7.29.8", "@jridgewell/gen-mapping": "^0.3.12", "@jridgewell/trace-mapping": "^0.3.28", "jsesc": "^3.0.2" @@ -156,7 +156,7 @@ }, "node_modules/@babel/helper-compilation-targets": { "version": "7.29.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz", "integrity": "sha1-eh3vcEMCQBxH9k+oVYnpdK4hcEI=", "dev": true, "license": "MIT", @@ -173,7 +173,7 @@ }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz", "integrity": "sha1-VW0u+GiRRuRtzqS/3QlfNDTf/LQ=", "dev": true, "license": "ISC", @@ -183,7 +183,7 @@ }, "node_modules/@babel/helper-globals": { "version": "7.29.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-globals/-/helper-globals-7.29.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-globals/-/helper-globals-7.29.7.tgz", "integrity": "sha1-8EqW+9hHMkGxB5JD9bPwOjAQq3s=", "dev": true, "license": "MIT", @@ -193,7 +193,7 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.29.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz", "integrity": "sha1-7yUEilGOgo1zk/rFiC3dc5Idc5Y=", "dev": true, "license": "MIT", @@ -225,7 +225,7 @@ }, "node_modules/@babel/helper-plugin-utils": { "version": "7.29.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz", "integrity": "sha1-wKB2bxoTYX2KF0B9erj51IYiXqQ=", "dev": true, "license": "MIT", @@ -245,7 +245,7 @@ }, "node_modules/@babel/helper-validator-identifier": { "version": "7.29.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz", "integrity": "sha1-vYcITO0MeW7Ea9pJLeboPSnon8I=", "license": "MIT", "engines": { @@ -277,13 +277,13 @@ } }, "node_modules/@babel/parser": { - "version": "7.29.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/parser/-/parser-7.29.7.tgz", - "integrity": "sha1-g3uHOHy/XsVTDLY0s8Yi9o7bkzQ=", + "version": "7.29.8", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/parser/-/parser-7.29.8.tgz", + "integrity": "sha1-llNxai8Qxne5j7xj1L+wAMMCzxc=", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.29.7" + "@babel/types": "^7.29.8" }, "bin": { "parser": "bin/babel-parser.js" @@ -294,7 +294,7 @@ }, "node_modules/@babel/plugin-transform-react-jsx-self": { "version": "7.29.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.29.7.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.29.7.tgz", "integrity": "sha1-wkQkUnhYIgYk/Vmlseq0+kE8gDo=", "dev": true, "license": "MIT", @@ -335,7 +335,7 @@ }, "node_modules/@babel/template": { "version": "7.29.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/template/-/template-7.29.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/template/-/template-7.29.7.tgz", "integrity": "sha1-TZ1ABPZFzdME3pWMclFieE7KxwA=", "dev": true, "license": "MIT", @@ -349,18 +349,18 @@ } }, "node_modules/@babel/traverse": { - "version": "7.29.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/traverse/-/traverse-7.29.7.tgz", - "integrity": "sha1-xHsHpBuV2gkH0Ca13YlNmN59Ly0=", + "version": "7.29.8", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/traverse/-/traverse-7.29.8.tgz", + "integrity": "sha1-QREBTNxxoPldlHGQdZC6oLimsoo=", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.29.7", - "@babel/generator": "^7.29.7", + "@babel/generator": "^7.29.8", "@babel/helper-globals": "^7.29.7", - "@babel/parser": "^7.29.7", + "@babel/parser": "^7.29.8", "@babel/template": "^7.29.7", - "@babel/types": "^7.29.7", + "@babel/types": "^7.29.8", "debug": "^4.3.1" }, "engines": { @@ -368,9 +368,9 @@ } }, "node_modules/@babel/types": { - "version": "7.29.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/types/-/types-7.29.7.tgz", - "integrity": "sha1-gAXjHYJxLuetrvbiPGO3GmJ3CpI=", + "version": "7.29.8", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@babel/types/-/types-7.29.8.tgz", + "integrity": "sha1-Einu8x2FFW1w+j9M2Fk3bQ6vaGM=", "dev": true, "license": "MIT", "dependencies": { @@ -427,7 +427,7 @@ }, "node_modules/@csstools/css-color-parser": { "version": "3.1.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz", "integrity": "sha1-Tjhq86md02xG/vATz+TBw0Hu1vA=", "dev": true, "funding": [ @@ -455,7 +455,7 @@ }, "node_modules/@csstools/css-parser-algorithms": { "version": "3.0.5", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", "integrity": "sha1-V1U3Cpopq67FUVtDyLPyz5wuMHY=", "dev": true, "funding": [ @@ -478,7 +478,7 @@ }, "node_modules/@csstools/css-tokenizer": { "version": "3.0.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", "integrity": "sha1-Mz/tq8P9Go5dAQABNzHPGeaoxdM=", "dev": true, "funding": [ @@ -496,24 +496,15 @@ "node": ">=18" } }, - "node_modules/@ctrl/tinycolor": { - "version": "3.6.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz", - "integrity": "sha1-tsdaVqGUfMkW6gWHctZmosiTLzE=", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, "node_modules/@emotion/hash": { "version": "0.9.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@emotion/hash/-/hash-0.9.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@emotion/hash/-/hash-0.9.2.tgz", "integrity": "sha1-/5IhufWLTf5h5hmneIc0vWP2iYs=", "license": "MIT" }, "node_modules/@esbuild/aix-ppc64": { "version": "0.27.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", "integrity": "sha1-grdPkqp41yC3FBYpOfskjJCt31M=", "cpu": [ "ppc64" @@ -530,7 +521,7 @@ }, "node_modules/@esbuild/android-arm": { "version": "0.27.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/android-arm/-/android-arm-0.27.7.tgz", "integrity": "sha1-WT4QoUULv8rGyzIfYfRoRTusIJ0=", "cpu": [ "arm" @@ -547,7 +538,7 @@ }, "node_modules/@esbuild/android-arm64": { "version": "0.27.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", "integrity": "sha1-94y4oxIfwgWlMoWtskly2zhdGF0=", "cpu": [ "arm64" @@ -598,7 +589,7 @@ }, "node_modules/@esbuild/darwin-x64": { "version": "0.27.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", "integrity": "sha1-Jzk90YuxJjxmOXnF8VduAMLQJL4=", "cpu": [ "x64" @@ -615,7 +606,7 @@ }, "node_modules/@esbuild/freebsd-arm64": { "version": "0.27.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", "integrity": "sha1-IuRjj6UC0cACcHcyTJdkDjrfOmI=", "cpu": [ "arm64" @@ -632,7 +623,7 @@ }, "node_modules/@esbuild/freebsd-x64": { "version": "0.27.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", "integrity": "sha1-kiS45P6pJM4hlOPvw+muv4IhktY=", "cpu": [ "x64" @@ -649,7 +640,7 @@ }, "node_modules/@esbuild/linux-arm": { "version": "0.27.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", "integrity": "sha1-uenQcMjBwESc8Ssg6sN9cKRZWSE=", "cpu": [ "arm" @@ -666,7 +657,7 @@ }, "node_modules/@esbuild/linux-arm64": { "version": "0.27.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", "integrity": "sha1-T10cJ1J9gXs1aEriFBnlfCvaCWY=", "cpu": [ "arm64" @@ -683,7 +674,7 @@ }, "node_modules/@esbuild/linux-ia32": { "version": "0.27.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", "integrity": "sha1-P4D7aWqpYFGpQEfzXIWwiyHDb54=", "cpu": [ "ia32" @@ -700,7 +691,7 @@ }, "node_modules/@esbuild/linux-loong64": { "version": "0.27.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", "integrity": "sha1-m+HywoIQsT67QVYiG7o1b+FnUgU=", "cpu": [ "loong64" @@ -717,7 +708,7 @@ }, "node_modules/@esbuild/linux-mips64el": { "version": "0.27.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", "integrity": "sha1-SrXuZ6Pfy8tej9eIPa5uc1sRY7g=", "cpu": [ "mips64el" @@ -768,7 +759,7 @@ }, "node_modules/@esbuild/linux-s390x": { "version": "0.27.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", "integrity": "sha1-1h9xXOYdQ/5YRK0Nj0Y/iMvk/vY=", "cpu": [ "s390x" @@ -802,7 +793,7 @@ }, "node_modules/@esbuild/netbsd-arm64": { "version": "0.27.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", "integrity": "sha1-FlDywblI3us++Ujy/DBhRyPAlpA=", "cpu": [ "arm64" @@ -819,7 +810,7 @@ }, "node_modules/@esbuild/netbsd-x64": { "version": "0.27.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", "integrity": "sha1-ZXcqs0LEszGb8HBaIRBQqsG24yA=", "cpu": [ "x64" @@ -870,7 +861,7 @@ }, "node_modules/@esbuild/openharmony-arm64": { "version": "0.27.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", "integrity": "sha1-bB+Us0CGWZqr2k6sj2OClLmHdBA=", "cpu": [ "arm64" @@ -887,7 +878,7 @@ }, "node_modules/@esbuild/sunos-x64": { "version": "0.27.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", "integrity": "sha1-Sw3ReuCmlB0tD9NakGOSUXBxqQ0=", "cpu": [ "x64" @@ -904,7 +895,7 @@ }, "node_modules/@esbuild/win32-arm64": { "version": "0.27.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", "integrity": "sha1-NBk6tVZdb/aMqSisBL51ECzLLnc=", "cpu": [ "arm64" @@ -921,7 +912,7 @@ }, "node_modules/@esbuild/win32-ia32": { "version": "0.27.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", "integrity": "sha1-62fw5EglFdjBiU7eYxwyek2p/E0=", "cpu": [ "ia32" @@ -955,7 +946,7 @@ }, "node_modules/@eslint-community/eslint-utils": { "version": "4.10.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@eslint-community/eslint-utils/-/eslint-utils-4.10.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@eslint-community/eslint-utils/-/eslint-utils-4.10.1.tgz", "integrity": "sha1-iRG9crLDZApUNgngQAuMTS5+fLY=", "dev": true, "license": "MIT", @@ -974,7 +965,7 @@ }, "node_modules/@eslint-community/regexpp": { "version": "4.12.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", "integrity": "sha1-vM32Fbz3tujbgw7AuNIcmiXeWXs=", "dev": true, "license": "MIT", @@ -1008,7 +999,7 @@ }, "node_modules/@eslint/js": { "version": "8.57.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@eslint/js/-/js-8.57.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@eslint/js/-/js-8.57.1.tgz", "integrity": "sha1-3mM9s+wu9qPIni8ZA4Bj6KEi4sI=", "dev": true, "license": "MIT", @@ -1018,7 +1009,7 @@ }, "node_modules/@floating-ui/core": { "version": "1.8.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@floating-ui/core/-/core-1.8.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@floating-ui/core/-/core-1.8.0.tgz", "integrity": "sha1-0BwLvqAuSlf2/X1d5vwsXH3KQOE=", "license": "MIT", "dependencies": { @@ -1027,7 +1018,7 @@ }, "node_modules/@floating-ui/devtools": { "version": "0.2.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@floating-ui/devtools/-/devtools-0.2.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@floating-ui/devtools/-/devtools-0.2.3.tgz", "integrity": "sha1-Bx8Gnlol5vKmPtaFhKEf98kpiUc=", "license": "MIT", "peerDependencies": { @@ -1046,14 +1037,14 @@ }, "node_modules/@floating-ui/utils": { "version": "0.2.12", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@floating-ui/utils/-/utils-0.2.12.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@floating-ui/utils/-/utils-0.2.12.tgz", "integrity": "sha1-r+/nhZSfFqxM3R5pWTWjIVct1Wo=", "license": "MIT" }, "node_modules/@fluentui/keyboard-keys": { - "version": "9.0.8", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/keyboard-keys/-/keyboard-keys-9.0.8.tgz", - "integrity": "sha1-gSuSPyDUKPPFzf+ZIqRHi1npB8U=", + "version": "9.0.9", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/keyboard-keys/-/keyboard-keys-9.0.9.tgz", + "integrity": "sha1-7sHNAloH0tUAsMo/maeO/NY8ABQ=", "license": "MIT", "dependencies": { "@swc/helpers": "^0.5.1" @@ -1061,7 +1052,7 @@ }, "node_modules/@fluentui/merge-styles": { "version": "8.6.14", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/merge-styles/-/merge-styles-8.6.14.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/merge-styles/-/merge-styles-8.6.14.tgz", "integrity": "sha1-kkghIsvfTDWjYH95OariAn2QjVA=", "license": "MIT", "dependencies": { @@ -1070,30 +1061,30 @@ } }, "node_modules/@fluentui/priority-overflow": { - "version": "9.4.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/priority-overflow/-/priority-overflow-9.4.1.tgz", - "integrity": "sha1-hvGMZ/MtyThmEraSOuDVdfph5ng=", + "version": "9.4.2", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/priority-overflow/-/priority-overflow-9.4.2.tgz", + "integrity": "sha1-Ji840iLnXJlv4JdXwBOskMY7a0g=", "license": "MIT", "dependencies": { "@swc/helpers": "^0.5.1" } }, "node_modules/@fluentui/react-accordion": { - "version": "9.12.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-accordion/-/react-accordion-9.12.1.tgz", - "integrity": "sha1-9S3K+uXm5FogpfHAewSHigsgbpc=", + "version": "9.12.2", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-accordion/-/react-accordion-9.12.2.tgz", + "integrity": "sha1-5tnkUQVgiOm9VazNT4vbKeOk/Ng=", "license": "MIT", "dependencies": { - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1105,18 +1096,18 @@ } }, "node_modules/@fluentui/react-alert": { - "version": "9.0.0-beta.142", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-alert/-/react-alert-9.0.0-beta.142.tgz", - "integrity": "sha1-G/OWD3aG1DTNcC6Q5x5h6ueRINU=", + "version": "9.0.1-0", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-alert/-/react-alert-9.0.1-0.tgz", + "integrity": "sha1-jxNI4Lat6bxHFODSBHc0ITLNnuA=", "license": "MIT", "dependencies": { - "@fluentui/react-avatar": "^9.11.3", - "@fluentui/react-button": "^9.10.1", + "@fluentui/react-avatar": "^9.11.5", + "@fluentui/react-button": "^9.11.0", "@fluentui/react-icons": "^2.0.239", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1128,16 +1119,16 @@ } }, "node_modules/@fluentui/react-aria": { - "version": "9.17.13", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-aria/-/react-aria-9.17.13.tgz", - "integrity": "sha1-P2RrZNTfTzMuDBBZBF6jtBQqtAc=", + "version": "9.17.14", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-aria/-/react-aria-9.17.14.tgz", + "integrity": "sha1-6ajfh3H7w7k8hr8jU1iF5Xjxwrc=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-utilities": "^9.26.6", "@swc/helpers": "^0.5.1" }, "peerDependencies": { @@ -1148,21 +1139,21 @@ } }, "node_modules/@fluentui/react-avatar": { - "version": "9.11.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-avatar/-/react-avatar-9.11.3.tgz", - "integrity": "sha1-fJUhvs6PR4LJCLVSCgex1bC6ssU=", + "version": "9.11.5", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-avatar/-/react-avatar-9.11.5.tgz", + "integrity": "sha1-KBIAVT20cckbBZxryn4h80hFAwI=", "license": "MIT", "dependencies": { - "@fluentui/react-badge": "^9.5.4", - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/react-badge": "^9.5.5", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-popover": "^9.14.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-tooltip": "^9.10.3", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-popover": "^9.14.6", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-tooltip": "^9.10.5", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1174,16 +1165,16 @@ } }, "node_modules/@fluentui/react-badge": { - "version": "9.5.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-badge/-/react-badge-9.5.4.tgz", - "integrity": "sha1-z8bkvn4EjBDketbqHRJml2CqlAM=", + "version": "9.5.5", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-badge/-/react-badge-9.5.5.tgz", + "integrity": "sha1-3zAcLTWKlB5LWeNcJeuKAN4RUg8=", "license": "MIT", "dependencies": { "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1195,20 +1186,20 @@ } }, "node_modules/@fluentui/react-breadcrumb": { - "version": "9.4.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-breadcrumb/-/react-breadcrumb-9.4.4.tgz", - "integrity": "sha1-DQlPr/xE5PSXB+6NlFkZ+xXhaLw=", + "version": "9.4.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-breadcrumb/-/react-breadcrumb-9.4.5.tgz", + "integrity": "sha1-umUesGdRWutY9g9aeX3EGvRfAQM=", "license": "MIT", "dependencies": { - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-button": "^9.10.1", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-button": "^9.11.0", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-link": "^9.8.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-link": "^9.8.4", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1220,19 +1211,19 @@ } }, "node_modules/@fluentui/react-button": { - "version": "9.10.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-button/-/react-button-9.10.1.tgz", - "integrity": "sha1-/ZE4HDfmJ5qZKdzgJZYOvbec2W4=", + "version": "9.11.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-button/-/react-button-9.11.0.tgz", + "integrity": "sha1-9G/zidvSMQs/meDP8/thji+StyQ=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1244,18 +1235,18 @@ } }, "node_modules/@fluentui/react-card": { - "version": "9.7.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-card/-/react-card-9.7.1.tgz", - "integrity": "sha1-zq0vx7rRtC5fJf5rWi4wxCJicGo=", - "license": "MIT", - "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-text": "^9.6.18", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "version": "9.7.2", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-card/-/react-card-9.7.2.tgz", + "integrity": "sha1-1KXZZgZTHRac1aObB02rZOYwvgw=", + "license": "MIT", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-text": "^9.6.19", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1267,21 +1258,21 @@ } }, "node_modules/@fluentui/react-carousel": { - "version": "9.9.10", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-carousel/-/react-carousel-9.9.10.tgz", - "integrity": "sha1-pEap7I9WEOR0DuWjEnWFrEiU0jE=", + "version": "9.9.12", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-carousel/-/react-carousel-9.9.12.tgz", + "integrity": "sha1-McIwOEPRQhfzZP2m+vUP36LHgs0=", "license": "MIT", "dependencies": { - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-button": "^9.10.1", - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-button": "^9.11.0", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-tooltip": "^9.10.3", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-tooltip": "^9.10.5", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1", "embla-carousel": "^8.5.1", @@ -1296,19 +1287,19 @@ } }, "node_modules/@fluentui/react-checkbox": { - "version": "9.6.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-checkbox/-/react-checkbox-9.6.3.tgz", - "integrity": "sha1-t/BHLtFVMcigYTtaAvQ0pDUMbVk=", + "version": "9.6.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-checkbox/-/react-checkbox-9.6.4.tgz", + "integrity": "sha1-GU0I9EWi0erC2um7ddRiSq9SFeg=", "license": "MIT", "dependencies": { - "@fluentui/react-field": "^9.5.3", + "@fluentui/react-field": "^9.5.4", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-label": "^9.4.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-label": "^9.4.4", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1320,18 +1311,17 @@ } }, "node_modules/@fluentui/react-color-picker": { - "version": "9.2.18", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-color-picker/-/react-color-picker-9.2.18.tgz", - "integrity": "sha1-4xxnqBHZa2QMl0bqjXvhdXtA9xQ=", - "license": "MIT", - "dependencies": { - "@ctrl/tinycolor": "^3.3.4", - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "version": "9.3.0", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-color-picker/-/react-color-picker-9.3.0.tgz", + "integrity": "sha1-lkOdsi1ikj45HyvCU8rzOninWH4=", + "license": "MIT", + "dependencies": { + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1343,23 +1333,23 @@ } }, "node_modules/@fluentui/react-combobox": { - "version": "9.17.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-combobox/-/react-combobox-9.17.3.tgz", - "integrity": "sha1-h6YvFIsBx3B3VZwKWDDjc3U6KIw=", + "version": "9.17.5", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-combobox/-/react-combobox-9.17.5.tgz", + "integrity": "sha1-XAFpJfp/AObuvh9dnZy6nRFBTxQ=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-field": "^9.5.3", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-field": "^9.5.4", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-positioning": "^9.22.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-positioning": "^9.23.1", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1371,71 +1361,71 @@ } }, "node_modules/@fluentui/react-components": { - "version": "9.74.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-components/-/react-components-9.74.4.tgz", - "integrity": "sha1-I55uW+/Pm09aVPYjwgbK2FS9Vf8=", - "license": "MIT", - "dependencies": { - "@fluentui/react-accordion": "^9.12.1", - "@fluentui/react-alert": "9.0.0-beta.142", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-avatar": "^9.11.3", - "@fluentui/react-badge": "^9.5.4", - "@fluentui/react-breadcrumb": "^9.4.4", - "@fluentui/react-button": "^9.10.1", - "@fluentui/react-card": "^9.7.1", - "@fluentui/react-carousel": "^9.9.10", - "@fluentui/react-checkbox": "^9.6.3", - "@fluentui/react-color-picker": "^9.2.18", - "@fluentui/react-combobox": "^9.17.3", - "@fluentui/react-dialog": "^9.18.2", - "@fluentui/react-divider": "^9.7.3", - "@fluentui/react-drawer": "^9.13.1", - "@fluentui/react-field": "^9.5.3", - "@fluentui/react-image": "^9.4.3", - "@fluentui/react-infobutton": "9.0.0-beta.117", - "@fluentui/react-infolabel": "^9.4.22", - "@fluentui/react-input": "^9.8.4", - "@fluentui/react-label": "^9.4.3", - "@fluentui/react-link": "^9.8.3", - "@fluentui/react-list": "^9.6.16", - "@fluentui/react-menu": "^9.25.1", - "@fluentui/react-message-bar": "^9.7.3", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-nav": "^9.4.2", - "@fluentui/react-overflow": "^9.9.1", - "@fluentui/react-persona": "^9.7.5", - "@fluentui/react-popover": "^9.14.4", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-positioning": "^9.22.3", - "@fluentui/react-progress": "^9.5.3", - "@fluentui/react-provider": "^9.22.18", - "@fluentui/react-radio": "^9.6.4", - "@fluentui/react-rating": "^9.4.3", - "@fluentui/react-search": "^9.4.4", - "@fluentui/react-select": "^9.5.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-skeleton": "^9.7.4", - "@fluentui/react-slider": "^9.6.4", - "@fluentui/react-spinbutton": "^9.6.4", - "@fluentui/react-spinner": "^9.8.4", - "@fluentui/react-swatch-picker": "^9.5.4", - "@fluentui/react-switch": "^9.7.4", - "@fluentui/react-table": "^9.19.17", - "@fluentui/react-tabs": "^9.12.3", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-tag-picker": "^9.10.0", - "@fluentui/react-tags": "^9.9.2", - "@fluentui/react-teaching-popover": "^9.7.2", - "@fluentui/react-text": "^9.6.18", - "@fluentui/react-textarea": "^9.7.4", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-toast": "^9.8.1", - "@fluentui/react-toolbar": "^9.8.3", - "@fluentui/react-tooltip": "^9.10.3", - "@fluentui/react-tree": "^9.16.3", - "@fluentui/react-utilities": "^9.26.5", - "@fluentui/react-virtualizer": "9.0.0-alpha.114", + "version": "9.74.6", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-components/-/react-components-9.74.6.tgz", + "integrity": "sha1-aCBpGhCNrZgSGEHoI1L6yahSrk8=", + "license": "MIT", + "dependencies": { + "@fluentui/react-accordion": "^9.12.2", + "@fluentui/react-alert": "9.0.1-0", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-avatar": "^9.11.5", + "@fluentui/react-badge": "^9.5.5", + "@fluentui/react-breadcrumb": "^9.4.5", + "@fluentui/react-button": "^9.11.0", + "@fluentui/react-card": "^9.7.2", + "@fluentui/react-carousel": "^9.9.12", + "@fluentui/react-checkbox": "^9.6.4", + "@fluentui/react-color-picker": "^9.3.0", + "@fluentui/react-combobox": "^9.17.5", + "@fluentui/react-dialog": "^9.18.3", + "@fluentui/react-divider": "^9.7.4", + "@fluentui/react-drawer": "^9.13.2", + "@fluentui/react-field": "^9.5.4", + "@fluentui/react-image": "^9.4.4", + "@fluentui/react-infobutton": "9.0.0-beta.119", + "@fluentui/react-infolabel": "^9.4.24", + "@fluentui/react-input": "^9.8.6", + "@fluentui/react-label": "^9.4.4", + "@fluentui/react-link": "^9.8.4", + "@fluentui/react-list": "^9.6.17", + "@fluentui/react-menu": "^9.25.3", + "@fluentui/react-message-bar": "^9.7.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-nav": "^9.4.4", + "@fluentui/react-overflow": "^9.9.2", + "@fluentui/react-persona": "^9.7.7", + "@fluentui/react-popover": "^9.14.6", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-positioning": "^9.23.1", + "@fluentui/react-progress": "^9.5.4", + "@fluentui/react-provider": "^9.22.20", + "@fluentui/react-radio": "^9.6.5", + "@fluentui/react-rating": "^9.4.4", + "@fluentui/react-search": "^9.4.6", + "@fluentui/react-select": "^9.5.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-skeleton": "^9.7.5", + "@fluentui/react-slider": "^9.6.5", + "@fluentui/react-spinbutton": "^9.6.5", + "@fluentui/react-spinner": "^9.8.5", + "@fluentui/react-swatch-picker": "^9.6.0", + "@fluentui/react-switch": "^9.7.5", + "@fluentui/react-table": "^9.19.19", + "@fluentui/react-tabs": "^9.12.4", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-tag-picker": "^9.10.2", + "@fluentui/react-tags": "^9.9.4", + "@fluentui/react-teaching-popover": "^9.7.4", + "@fluentui/react-text": "^9.6.19", + "@fluentui/react-textarea": "^9.7.6", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-toast": "^9.8.2", + "@fluentui/react-toolbar": "^9.8.4", + "@fluentui/react-tooltip": "^9.10.5", + "@fluentui/react-tree": "^9.16.5", + "@fluentui/react-utilities": "^9.26.6", + "@fluentui/react-virtualizer": "9.0.0-alpha.115", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1447,12 +1437,12 @@ } }, "node_modules/@fluentui/react-context-selector": { - "version": "9.2.18", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-context-selector/-/react-context-selector-9.2.18.tgz", - "integrity": "sha1-4w2WBfCBaTJQ7/0MiRWg4V4+MzQ=", + "version": "9.2.19", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-context-selector/-/react-context-selector-9.2.19.tgz", + "integrity": "sha1-bWHNmAuKFehB3WbPVw+/9O6LNVQ=", "license": "MIT", "dependencies": { - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-utilities": "^9.26.6", "@swc/helpers": "^0.5.1" }, "peerDependencies": { @@ -1464,23 +1454,23 @@ } }, "node_modules/@fluentui/react-dialog": { - "version": "9.18.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-dialog/-/react-dialog-9.18.2.tgz", - "integrity": "sha1-rjnUnyrBoKcIG8wAvVIQZWg+f0k=", + "version": "9.18.3", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-dialog/-/react-dialog-9.18.3.tgz", + "integrity": "sha1-PD6awtl+uiDfk6zjRb80ZJEbZfQ=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1492,15 +1482,15 @@ } }, "node_modules/@fluentui/react-divider": { - "version": "9.7.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-divider/-/react-divider-9.7.3.tgz", - "integrity": "sha1-bTjfe4VHehtlkvANyiW/0QzWfLg=", + "version": "9.7.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-divider/-/react-divider-9.7.4.tgz", + "integrity": "sha1-14OPvM1MQXcH/R/jBfCBx2K5occ=", "license": "MIT", "dependencies": { - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1512,20 +1502,20 @@ } }, "node_modules/@fluentui/react-drawer": { - "version": "9.13.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-drawer/-/react-drawer-9.13.1.tgz", - "integrity": "sha1-rS0kGsQFDFtK7YsjnRIy1M0t2Ek=", - "license": "MIT", - "dependencies": { - "@fluentui/react-dialog": "^9.18.2", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "version": "9.13.2", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-drawer/-/react-drawer-9.13.2.tgz", + "integrity": "sha1-GxSa0iPZTvq27ESM+Kx/M8D/I2Y=", + "license": "MIT", + "dependencies": { + "@fluentui/react-dialog": "^9.18.3", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1537,18 +1527,18 @@ } }, "node_modules/@fluentui/react-field": { - "version": "9.5.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-field/-/react-field-9.5.3.tgz", - "integrity": "sha1-8o9u5Ofr6rlHgByMXhFYPM0ERZw=", + "version": "9.5.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-field/-/react-field-9.5.4.tgz", + "integrity": "sha1-6jn04iOwHYhaJqlo434imkWf8F4=", "license": "MIT", "dependencies": { - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-label": "^9.4.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-label": "^9.4.4", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1560,9 +1550,9 @@ } }, "node_modules/@fluentui/react-icons": { - "version": "2.0.334", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-icons/-/react-icons-2.0.334.tgz", - "integrity": "sha1-HtqpKBqZe1qpblVlGwr2IMg0xaI=", + "version": "2.0.337", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-icons/-/react-icons-2.0.337.tgz", + "integrity": "sha1-noDRKHKy6dUTsfe3W6kbqmgp9Bs=", "license": "MIT", "dependencies": { "@griffel/react": "^1.6.1", @@ -1573,15 +1563,15 @@ } }, "node_modules/@fluentui/react-image": { - "version": "9.4.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-image/-/react-image-9.4.3.tgz", - "integrity": "sha1-Z2EAfqYaY11GCj0OcQnM7PjpAbY=", + "version": "9.4.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-image/-/react-image-9.4.4.tgz", + "integrity": "sha1-DZVhHFrY2kKfYFS9m9h4+hpDej4=", "license": "MIT", "dependencies": { - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1593,18 +1583,18 @@ } }, "node_modules/@fluentui/react-infobutton": { - "version": "9.0.0-beta.117", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-infobutton/-/react-infobutton-9.0.0-beta.117.tgz", - "integrity": "sha1-bEDN/JFeMt3hXTlw+3x7aKJRtb8=", + "version": "9.0.0-beta.119", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-infobutton/-/react-infobutton-9.0.0-beta.119.tgz", + "integrity": "sha1-qht3KUOsImLKSSHLS8kVw50OT0I=", "license": "MIT", "dependencies": { "@fluentui/react-icons": "^2.0.237", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-label": "^9.4.3", - "@fluentui/react-popover": "^9.14.4", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-label": "^9.4.4", + "@fluentui/react-popover": "^9.14.6", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1616,19 +1606,19 @@ } }, "node_modules/@fluentui/react-infolabel": { - "version": "9.4.22", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-infolabel/-/react-infolabel-9.4.22.tgz", - "integrity": "sha1-VRaxvswnMt1K6yVDxuH2Pbgz/+A=", + "version": "9.4.24", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-infolabel/-/react-infolabel-9.4.24.tgz", + "integrity": "sha1-il559cfazk575Tu8lGwU6SFY9JA=", "license": "MIT", "dependencies": { "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-label": "^9.4.3", - "@fluentui/react-popover": "^9.14.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-label": "^9.4.4", + "@fluentui/react-popover": "^9.14.6", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1640,16 +1630,16 @@ } }, "node_modules/@fluentui/react-input": { - "version": "9.8.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-input/-/react-input-9.8.4.tgz", - "integrity": "sha1-eNHkSyWgMYNYL/IK/IV6ehey8TI=", + "version": "9.8.6", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-input/-/react-input-9.8.6.tgz", + "integrity": "sha1-6yjTgOs4wIZ+FcdYkqHR3xmTVqI=", "license": "MIT", "dependencies": { - "@fluentui/react-field": "^9.5.3", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-field": "^9.5.4", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1661,12 +1651,12 @@ } }, "node_modules/@fluentui/react-jsx-runtime": { - "version": "9.4.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-jsx-runtime/-/react-jsx-runtime-9.4.4.tgz", - "integrity": "sha1-1C9Z8VeWSqDmFaFnGRTArQiWPOA=", + "version": "9.4.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-jsx-runtime/-/react-jsx-runtime-9.4.5.tgz", + "integrity": "sha1-VutbDTMaVT9kzZ/KtbV1LZgVmss=", "license": "MIT", "dependencies": { - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-utilities": "^9.26.6", "@swc/helpers": "^0.5.1" }, "peerDependencies": { @@ -1675,15 +1665,15 @@ } }, "node_modules/@fluentui/react-label": { - "version": "9.4.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-label/-/react-label-9.4.3.tgz", - "integrity": "sha1-8mHWrSbQ9G5+osIL91c1+ZGdsvM=", + "version": "9.4.4", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-label/-/react-label-9.4.4.tgz", + "integrity": "sha1-HAa1t68/i96EoP2vU8mrF2Pi5JQ=", "license": "MIT", "dependencies": { - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1695,17 +1685,17 @@ } }, "node_modules/@fluentui/react-link": { - "version": "9.8.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-link/-/react-link-9.8.3.tgz", - "integrity": "sha1-FWQOdibB0nDx5TyfZRC5BR3RGUQ=", + "version": "9.8.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-link/-/react-link-9.8.4.tgz", + "integrity": "sha1-XZkOR4CuDc7RuK53T56+BllDne4=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1717,19 +1707,19 @@ } }, "node_modules/@fluentui/react-list": { - "version": "9.6.16", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-list/-/react-list-9.6.16.tgz", - "integrity": "sha1-qo+KNropS6psCv1+AqsQ4mhpspw=", - "license": "MIT", - "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-checkbox": "^9.6.3", - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "version": "9.6.17", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-list/-/react-list-9.6.17.tgz", + "integrity": "sha1-3inVufBf93K1jJG7t0NP7QV9+Os=", + "license": "MIT", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-checkbox": "^9.6.4", + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1741,24 +1731,24 @@ } }, "node_modules/@fluentui/react-menu": { - "version": "9.25.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-menu/-/react-menu-9.25.1.tgz", - "integrity": "sha1-tKukfjH1HdY5oM6syAzqo2cyMU8=", + "version": "9.25.3", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-menu/-/react-menu-9.25.3.tgz", + "integrity": "sha1-fTbgjRw4xIXTGz7CJaRov4bLldU=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-positioning": "^9.22.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-positioning": "^9.23.1", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1770,20 +1760,20 @@ } }, "node_modules/@fluentui/react-message-bar": { - "version": "9.7.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-message-bar/-/react-message-bar-9.7.3.tgz", - "integrity": "sha1-a2N4JzTJmEKgFOmKkjSCaaQl3mE=", + "version": "9.7.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-message-bar/-/react-message-bar-9.7.5.tgz", + "integrity": "sha1-Jl2SB3Oy7RrhagSlCENbyiXTfN0=", "license": "MIT", "dependencies": { - "@fluentui/react-button": "^9.10.1", + "@fluentui/react-button": "^9.11.0", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-link": "^9.8.3", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-link": "^9.8.4", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1795,13 +1785,13 @@ } }, "node_modules/@fluentui/react-motion": { - "version": "9.16.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-motion/-/react-motion-9.16.1.tgz", - "integrity": "sha1-uiYSrPlRY/HaHiQ2cz/qS3kMFS8=", + "version": "9.16.2", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-motion/-/react-motion-9.16.2.tgz", + "integrity": "sha1-/WO9K2Y7KUDI5/KNhfXtRSMrAWI=", "license": "MIT", "dependencies": { - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-utilities": "^9.26.6", "@swc/helpers": "^0.5.1" }, "peerDependencies": { @@ -1812,9 +1802,9 @@ } }, "node_modules/@fluentui/react-motion-components-preview": { - "version": "0.15.6", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-motion-components-preview/-/react-motion-components-preview-0.15.6.tgz", - "integrity": "sha1-0lg1U5l83ef9xF4qNbJ2mqfQ6fc=", + "version": "0.15.7", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-motion-components-preview/-/react-motion-components-preview-0.15.7.tgz", + "integrity": "sha1-iCLPaMOnEI395rz9nf1/+iqHfZI=", "license": "MIT", "dependencies": { "@fluentui/react-motion": "*", @@ -1829,25 +1819,25 @@ } }, "node_modules/@fluentui/react-nav": { - "version": "9.4.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-nav/-/react-nav-9.4.2.tgz", - "integrity": "sha1-9hGPG9I8m530GIFoOd0gt0UMKH8=", + "version": "9.4.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-nav/-/react-nav-9.4.4.tgz", + "integrity": "sha1-hYNb+V3RAr/TKpW/ezW4UICg7YY=", "license": "MIT", "dependencies": { - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-button": "^9.10.1", - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-divider": "^9.7.3", - "@fluentui/react-drawer": "^9.13.1", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-button": "^9.11.0", + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-divider": "^9.7.4", + "@fluentui/react-drawer": "^9.13.2", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-tooltip": "^9.10.3", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-tooltip": "^9.10.5", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1859,15 +1849,15 @@ } }, "node_modules/@fluentui/react-overflow": { - "version": "9.9.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-overflow/-/react-overflow-9.9.1.tgz", - "integrity": "sha1-/JxqZzXI+U95QiSvesb309Cdo6U=", + "version": "9.9.2", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-overflow/-/react-overflow-9.9.2.tgz", + "integrity": "sha1-Bw1i69Y0sqMgtS7MnFH4YCWHbmU=", "license": "MIT", "dependencies": { - "@fluentui/priority-overflow": "^9.4.1", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/priority-overflow": "^9.4.2", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1879,17 +1869,17 @@ } }, "node_modules/@fluentui/react-persona": { - "version": "9.7.5", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-persona/-/react-persona-9.7.5.tgz", - "integrity": "sha1-n3r/5T/RDhoWs+76/bdRwULcpoE=", + "version": "9.7.7", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-persona/-/react-persona-9.7.7.tgz", + "integrity": "sha1-/IKMBjEnvbfHkvcJgYqftyxrTls=", "license": "MIT", "dependencies": { - "@fluentui/react-avatar": "^9.11.3", - "@fluentui/react-badge": "^9.5.4", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-avatar": "^9.11.5", + "@fluentui/react-badge": "^9.5.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1901,23 +1891,23 @@ } }, "node_modules/@fluentui/react-popover": { - "version": "9.14.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-popover/-/react-popover-9.14.4.tgz", - "integrity": "sha1-HzqwRAlrH7VXHBteHsHmIEzuovw=", - "license": "MIT", - "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-positioning": "^9.22.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "version": "9.14.6", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-popover/-/react-popover-9.14.6.tgz", + "integrity": "sha1-gHPfvuZxkMhTN/yl5ImP4TvPuZ0=", + "license": "MIT", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-positioning": "^9.23.1", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1929,14 +1919,14 @@ } }, "node_modules/@fluentui/react-portal": { - "version": "9.8.14", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-portal/-/react-portal-9.8.14.tgz", - "integrity": "sha1-CxNSqzA7QwIyRXB98+7mikFC92M=", + "version": "9.8.15", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-portal/-/react-portal-9.8.15.tgz", + "integrity": "sha1-FsLXz4CxYvGuZbdY0FD2GsQFbVw=", "license": "MIT", "dependencies": { - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1948,16 +1938,16 @@ } }, "node_modules/@fluentui/react-positioning": { - "version": "9.22.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-positioning/-/react-positioning-9.22.3.tgz", - "integrity": "sha1-EIiWJ/vCvmM3ZQfVaQzk9h0UKS4=", + "version": "9.23.1", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-positioning/-/react-positioning-9.23.1.tgz", + "integrity": "sha1-gaMHfEHlzxCXyvcNoOZMZnKhzlY=", "license": "MIT", "dependencies": { "@floating-ui/devtools": "^0.2.3", "@floating-ui/dom": "^1.6.12", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1", "use-sync-external-store": "^1.2.0" @@ -1970,17 +1960,17 @@ } }, "node_modules/@fluentui/react-progress": { - "version": "9.5.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-progress/-/react-progress-9.5.3.tgz", - "integrity": "sha1-SGmwk+y+4hNrQy52RN/VrV+lnUY=", + "version": "9.5.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-progress/-/react-progress-9.5.4.tgz", + "integrity": "sha1-lbyI7EDi9NvXrI6NOzVHEn6aIAg=", "license": "MIT", "dependencies": { - "@fluentui/react-field": "^9.5.3", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-field": "^9.5.4", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -1992,17 +1982,17 @@ } }, "node_modules/@fluentui/react-provider": { - "version": "9.22.18", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-provider/-/react-provider-9.22.18.tgz", - "integrity": "sha1-DlXV5GXKrqt4D6qWbs4KwM11huE=", + "version": "9.22.20", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-provider/-/react-provider-9.22.20.tgz", + "integrity": "sha1-l3E6WXba6Tux1lwHK3FqzyGGwe8=", "license": "MIT", "dependencies": { "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/core": "^1.16.0", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" @@ -2015,18 +2005,18 @@ } }, "node_modules/@fluentui/react-radio": { - "version": "9.6.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-radio/-/react-radio-9.6.4.tgz", - "integrity": "sha1-WMCanew1z9u7CqCyKXcHgMqon/g=", - "license": "MIT", - "dependencies": { - "@fluentui/react-field": "^9.5.3", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-label": "^9.4.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "version": "9.6.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-radio/-/react-radio-9.6.5.tgz", + "integrity": "sha1-pFle+lP0jajijh64pW5rdGpPl4s=", + "license": "MIT", + "dependencies": { + "@fluentui/react-field": "^9.5.4", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-label": "^9.4.4", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2038,17 +2028,17 @@ } }, "node_modules/@fluentui/react-rating": { - "version": "9.4.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-rating/-/react-rating-9.4.3.tgz", - "integrity": "sha1-bZN1GIiB7f+enrrcaa7Qh1L5r78=", + "version": "9.4.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-rating/-/react-rating-9.4.4.tgz", + "integrity": "sha1-/BB/fB+8fAgQqj3VpqPTtE8OS5c=", "license": "MIT", "dependencies": { "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2060,17 +2050,17 @@ } }, "node_modules/@fluentui/react-search": { - "version": "9.4.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-search/-/react-search-9.4.4.tgz", - "integrity": "sha1-0OzOLzumowToSkLOPZFMq4qdlYU=", + "version": "9.4.6", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-search/-/react-search-9.4.6.tgz", + "integrity": "sha1-BYiIty+NYvlX5Yd07iowO8okBJ8=", "license": "MIT", "dependencies": { "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-input": "^9.8.4", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-input": "^9.8.6", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2082,17 +2072,17 @@ } }, "node_modules/@fluentui/react-select": { - "version": "9.5.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-select/-/react-select-9.5.3.tgz", - "integrity": "sha1-is39YHuEHn6HZTUy+qttwIyWb/U=", + "version": "9.5.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-select/-/react-select-9.5.5.tgz", + "integrity": "sha1-dqc2ytJiqWsapDJZz5OUXjDw9jM=", "license": "MIT", "dependencies": { - "@fluentui/react-field": "^9.5.3", + "@fluentui/react-field": "^9.5.4", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2104,12 +2094,12 @@ } }, "node_modules/@fluentui/react-shared-contexts": { - "version": "9.26.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-shared-contexts/-/react-shared-contexts-9.26.2.tgz", - "integrity": "sha1-A4ZM7kVinVc/X4Yxy569R4vLq/c=", + "version": "9.26.3", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-shared-contexts/-/react-shared-contexts-9.26.3.tgz", + "integrity": "sha1-ItU/q0BGhK2Ot8GF21EDCgzEJrU=", "license": "MIT", "dependencies": { - "@fluentui/react-theme": "^9.2.1", + "@fluentui/react-theme": "^9.2.2", "@swc/helpers": "^0.5.1" }, "peerDependencies": { @@ -2118,16 +2108,16 @@ } }, "node_modules/@fluentui/react-skeleton": { - "version": "9.7.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-skeleton/-/react-skeleton-9.7.4.tgz", - "integrity": "sha1-kc1ER+I8AGRNlbjCny4W7PLUcO0=", + "version": "9.7.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-skeleton/-/react-skeleton-9.7.5.tgz", + "integrity": "sha1-T6hxis60oMxlewYVpv0uJkVmn5g=", "license": "MIT", "dependencies": { - "@fluentui/react-field": "^9.5.3", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-field": "^9.5.4", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2139,17 +2129,17 @@ } }, "node_modules/@fluentui/react-slider": { - "version": "9.6.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-slider/-/react-slider-9.6.4.tgz", - "integrity": "sha1-I10Exll7lmAcpCU7onY/W9NPTPE=", + "version": "9.6.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-slider/-/react-slider-9.6.5.tgz", + "integrity": "sha1-ovEq66qvjjInyjhe1/SoDBiX/B4=", "license": "MIT", "dependencies": { - "@fluentui/react-field": "^9.5.3", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-field": "^9.5.4", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2161,18 +2151,18 @@ } }, "node_modules/@fluentui/react-spinbutton": { - "version": "9.6.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-spinbutton/-/react-spinbutton-9.6.4.tgz", - "integrity": "sha1-Anr6BG6trenZVojuaM7Wgvpa2Z0=", + "version": "9.6.5", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-spinbutton/-/react-spinbutton-9.6.5.tgz", + "integrity": "sha1-NKq9UOg7ZTNsz7gaRn95+qioVE8=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-field": "^9.5.3", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-field": "^9.5.4", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2184,16 +2174,16 @@ } }, "node_modules/@fluentui/react-spinner": { - "version": "9.8.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-spinner/-/react-spinner-9.8.4.tgz", - "integrity": "sha1-R0reupmYnVBv1+bo1a2q6w4KlBA=", + "version": "9.8.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-spinner/-/react-spinner-9.8.5.tgz", + "integrity": "sha1-4rC06eDi56Xi73SQt/WT3WrhitA=", "license": "MIT", "dependencies": { - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-label": "^9.4.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-label": "^9.4.4", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2205,19 +2195,19 @@ } }, "node_modules/@fluentui/react-swatch-picker": { - "version": "9.5.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-swatch-picker/-/react-swatch-picker-9.5.4.tgz", - "integrity": "sha1-vZ6171RIjyve9UCMBmmQABClq6o=", + "version": "9.6.0", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-swatch-picker/-/react-swatch-picker-9.6.0.tgz", + "integrity": "sha1-WGm8y/jnxp/wxXQbnkriDHp+0gQ=", "license": "MIT", "dependencies": { - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-field": "^9.5.3", + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-field": "^9.5.4", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2229,19 +2219,19 @@ } }, "node_modules/@fluentui/react-switch": { - "version": "9.7.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-switch/-/react-switch-9.7.4.tgz", - "integrity": "sha1-R2L+3jLAMhx8qWMfXqnSe3K/FIc=", + "version": "9.7.5", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-switch/-/react-switch-9.7.5.tgz", + "integrity": "sha1-HXAztEi9WVsKytinxOsiBtDqsDQ=", "license": "MIT", "dependencies": { - "@fluentui/react-field": "^9.5.3", + "@fluentui/react-field": "^9.5.4", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-label": "^9.4.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-label": "^9.4.4", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2253,23 +2243,23 @@ } }, "node_modules/@fluentui/react-table": { - "version": "9.19.17", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-table/-/react-table-9.19.17.tgz", - "integrity": "sha1-KOSoiZ7+ocezgAoDf9SRWZFrE6I=", + "version": "9.19.19", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-table/-/react-table-9.19.19.tgz", + "integrity": "sha1-c1d1S2a0syLlxUQ1B3cOcpz96l4=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-avatar": "^9.11.3", - "@fluentui/react-checkbox": "^9.6.3", - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-avatar": "^9.11.5", + "@fluentui/react-checkbox": "^9.6.4", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-radio": "^9.6.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-radio": "^9.6.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2281,17 +2271,17 @@ } }, "node_modules/@fluentui/react-tabs": { - "version": "9.12.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tabs/-/react-tabs-9.12.3.tgz", - "integrity": "sha1-2bsigoHcZeyRz8CDv1bYSIIPjww=", + "version": "9.12.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tabs/-/react-tabs-9.12.4.tgz", + "integrity": "sha1-MV7mQK+HZrX9+LVzvDedj1+sF3U=", "license": "MIT", "dependencies": { - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2303,14 +2293,14 @@ } }, "node_modules/@fluentui/react-tabster": { - "version": "9.26.16", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tabster/-/react-tabster-9.26.16.tgz", - "integrity": "sha1-W+25Rsa54NTNfNYD3z5+xTKTgdw=", + "version": "9.26.17", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tabster/-/react-tabster-9.26.17.tgz", + "integrity": "sha1-GNsjhnPeAck7OBtI8dvLQHK/vfs=", "license": "MIT", "dependencies": { - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1", "keyborg": "^2.14.1", @@ -2324,25 +2314,25 @@ } }, "node_modules/@fluentui/react-tag-picker": { - "version": "9.10.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tag-picker/-/react-tag-picker-9.10.0.tgz", - "integrity": "sha1-J9Pki9FF2fKkwWfDczJ9JxByx34=", + "version": "9.10.2", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tag-picker/-/react-tag-picker-9.10.2.tgz", + "integrity": "sha1-UKzPGU/3/CLSxEPDpkYgf7FjvW8=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-combobox": "^9.17.3", - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-field": "^9.5.3", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-combobox": "^9.17.5", + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-field": "^9.5.4", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-positioning": "^9.22.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-tags": "^9.9.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-positioning": "^9.23.1", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-tags": "^9.9.4", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2354,20 +2344,20 @@ } }, "node_modules/@fluentui/react-tags": { - "version": "9.9.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tags/-/react-tags-9.9.2.tgz", - "integrity": "sha1-2VbMuS8/ttXA5oph1/8Vharbfcg=", + "version": "9.9.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tags/-/react-tags-9.9.4.tgz", + "integrity": "sha1-RMgMOd+vLzEF7z8OHhMdTjVd8lE=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-avatar": "^9.11.3", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-avatar": "^9.11.5", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2379,21 +2369,21 @@ } }, "node_modules/@fluentui/react-teaching-popover": { - "version": "9.7.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-teaching-popover/-/react-teaching-popover-9.7.2.tgz", - "integrity": "sha1-9IGH5OdTIQwrzydslEOXpFk0Zyk=", + "version": "9.7.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-teaching-popover/-/react-teaching-popover-9.7.4.tgz", + "integrity": "sha1-H0MZPYmpA8omXaIMVY8dGt1hbao=", "license": "MIT", "dependencies": { - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-button": "^9.10.1", - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-button": "^9.11.0", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-popover": "^9.14.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-popover": "^9.14.6", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1", "use-sync-external-store": "^1.2.0" @@ -2406,15 +2396,15 @@ } }, "node_modules/@fluentui/react-text": { - "version": "9.6.18", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-text/-/react-text-9.6.18.tgz", - "integrity": "sha1-cAPzAcfQDcyLD6nBPsPnzFhe0S8=", + "version": "9.6.19", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-text/-/react-text-9.6.19.tgz", + "integrity": "sha1-p72dYo+UuhOTc/OVjqB/BywrR+A=", "license": "MIT", "dependencies": { - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2426,16 +2416,16 @@ } }, "node_modules/@fluentui/react-textarea": { - "version": "9.7.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-textarea/-/react-textarea-9.7.4.tgz", - "integrity": "sha1-mRCthDese8m05SVL5WxPUKQIEyM=", + "version": "9.7.6", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-textarea/-/react-textarea-9.7.6.tgz", + "integrity": "sha1-6DhUWxhKO+FMYIx7ij9FWW7ykOk=", "license": "MIT", "dependencies": { - "@fluentui/react-field": "^9.5.3", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-field": "^9.5.4", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2447,32 +2437,32 @@ } }, "node_modules/@fluentui/react-theme": { - "version": "9.2.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-theme/-/react-theme-9.2.1.tgz", - "integrity": "sha1-136U7MjtoyJDe2HY36L9FnkcN9o=", + "version": "9.2.2", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-theme/-/react-theme-9.2.2.tgz", + "integrity": "sha1-XJwhq80rSQc6sl9zb0HDhs/84KQ=", "license": "MIT", "dependencies": { - "@fluentui/tokens": "1.0.0-alpha.23", + "@fluentui/tokens": "1.0.0-alpha.24", "@swc/helpers": "^0.5.1" } }, "node_modules/@fluentui/react-toast": { - "version": "9.8.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-toast/-/react-toast-9.8.1.tgz", - "integrity": "sha1-VV7L0VRNiKyVlMfttNUvQfyfcNg=", + "version": "9.8.2", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-toast/-/react-toast-9.8.2.tgz", + "integrity": "sha1-JpGTmMY8tIv2etleQB80DzoqLRY=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2484,20 +2474,20 @@ } }, "node_modules/@fluentui/react-toolbar": { - "version": "9.8.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-toolbar/-/react-toolbar-9.8.3.tgz", - "integrity": "sha1-dIbqsEt/g17lK8+bVlW4zWJdBA0=", - "license": "MIT", - "dependencies": { - "@fluentui/react-button": "^9.10.1", - "@fluentui/react-context-selector": "^9.2.18", - "@fluentui/react-divider": "^9.7.3", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-radio": "^9.6.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "version": "9.8.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-toolbar/-/react-toolbar-9.8.4.tgz", + "integrity": "sha1-UMgKyrsVYWKnvtqdO63g3GjdPBw=", + "license": "MIT", + "dependencies": { + "@fluentui/react-button": "^9.11.0", + "@fluentui/react-context-selector": "^9.2.19", + "@fluentui/react-divider": "^9.7.4", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-radio": "^9.6.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2509,19 +2499,19 @@ } }, "node_modules/@fluentui/react-tooltip": { - "version": "9.10.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tooltip/-/react-tooltip-9.10.3.tgz", - "integrity": "sha1-trQJkBovgNzkmi7Gru0HdExsFps=", - "license": "MIT", - "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-portal": "^9.8.14", - "@fluentui/react-positioning": "^9.22.3", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "version": "9.10.5", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tooltip/-/react-tooltip-9.10.5.tgz", + "integrity": "sha1-fqrVn3TYgcwfrLwdQ0/ApXodhG0=", + "license": "MIT", + "dependencies": { + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-portal": "^9.8.15", + "@fluentui/react-positioning": "^9.23.1", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2533,26 +2523,26 @@ } }, "node_modules/@fluentui/react-tree": { - "version": "9.16.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tree/-/react-tree-9.16.3.tgz", - "integrity": "sha1-62X0EEvAE8sIMf3ZWSwTaBsa4Ow=", + "version": "9.16.5", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-tree/-/react-tree-9.16.5.tgz", + "integrity": "sha1-icPocENERiBe0sly58RiHQ+MkIQ=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-aria": "^9.17.13", - "@fluentui/react-avatar": "^9.11.3", - "@fluentui/react-button": "^9.10.1", - "@fluentui/react-checkbox": "^9.6.3", - "@fluentui/react-context-selector": "^9.2.18", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-aria": "^9.17.14", + "@fluentui/react-avatar": "^9.11.5", + "@fluentui/react-button": "^9.11.0", + "@fluentui/react-checkbox": "^9.6.4", + "@fluentui/react-context-selector": "^9.2.19", "@fluentui/react-icons": "^2.0.245", - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-motion": "^9.16.1", - "@fluentui/react-motion-components-preview": "^0.15.6", - "@fluentui/react-radio": "^9.6.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-tabster": "^9.26.16", - "@fluentui/react-theme": "^9.2.1", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-motion": "^9.16.2", + "@fluentui/react-motion-components-preview": "^0.15.7", + "@fluentui/react-radio": "^9.6.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-tabster": "^9.26.17", + "@fluentui/react-theme": "^9.2.2", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2564,13 +2554,13 @@ } }, "node_modules/@fluentui/react-utilities": { - "version": "9.26.5", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-utilities/-/react-utilities-9.26.5.tgz", - "integrity": "sha1-I/Czh8/18uiormwR0UuhB8mIMgs=", + "version": "9.26.6", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-utilities/-/react-utilities-9.26.6.tgz", + "integrity": "sha1-jAu6VUfiyESQ7pLVjusKFJhnJEo=", "license": "MIT", "dependencies": { - "@fluentui/keyboard-keys": "^9.0.8", - "@fluentui/react-shared-contexts": "^9.26.2", + "@fluentui/keyboard-keys": "^9.0.9", + "@fluentui/react-shared-contexts": "^9.26.3", "@swc/helpers": "^0.5.1" }, "peerDependencies": { @@ -2579,14 +2569,14 @@ } }, "node_modules/@fluentui/react-virtualizer": { - "version": "9.0.0-alpha.114", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-virtualizer/-/react-virtualizer-9.0.0-alpha.114.tgz", - "integrity": "sha1-J1d7PpDLCGs46tR5xxP/4PmAyDU=", + "version": "9.0.0-alpha.115", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/react-virtualizer/-/react-virtualizer-9.0.0-alpha.115.tgz", + "integrity": "sha1-ya8FGfYCm/5jLkEdwCKOFSI04z8=", "license": "MIT", "dependencies": { - "@fluentui/react-jsx-runtime": "^9.4.4", - "@fluentui/react-shared-contexts": "^9.26.2", - "@fluentui/react-utilities": "^9.26.5", + "@fluentui/react-jsx-runtime": "^9.4.5", + "@fluentui/react-shared-contexts": "^9.26.3", + "@fluentui/react-utilities": "^9.26.6", "@griffel/react": "^1.5.32", "@swc/helpers": "^0.5.1" }, @@ -2599,7 +2589,7 @@ }, "node_modules/@fluentui/set-version": { "version": "8.2.24", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/set-version/-/set-version-8.2.24.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/set-version/-/set-version-8.2.24.tgz", "integrity": "sha1-Uw0J60OFuymN2FqHfMSSNU/pM3c=", "license": "MIT", "dependencies": { @@ -2607,9 +2597,9 @@ } }, "node_modules/@fluentui/tokens": { - "version": "1.0.0-alpha.23", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/tokens/-/tokens-1.0.0-alpha.23.tgz", - "integrity": "sha1-T4RsHk/Ns8qA6zGALEo2bVWZsw4=", + "version": "1.0.0-alpha.24", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@fluentui/tokens/-/tokens-1.0.0-alpha.24.tgz", + "integrity": "sha1-hljrx2qm8lBm0Z5Yw98+jreUWPE=", "license": "MIT", "dependencies": { "@swc/helpers": "^0.5.1" @@ -2617,7 +2607,7 @@ }, "node_modules/@griffel/core": { "version": "1.21.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@griffel/core/-/core-1.21.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@griffel/core/-/core-1.21.3.tgz", "integrity": "sha1-fhN+aJYuYq2OwVVj/TBRzH4elX0=", "license": "MIT", "dependencies": { @@ -2630,9 +2620,9 @@ } }, "node_modules/@griffel/react": { - "version": "1.7.6", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@griffel/react/-/react-1.7.6.tgz", - "integrity": "sha1-VlujJ+0n4XR+0CKRDj35e6zjE1M=", + "version": "1.7.7", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@griffel/react/-/react-1.7.7.tgz", + "integrity": "sha1-iQiFJzS/aqAnZ2NDAxoHkTFm/QM=", "license": "MIT", "dependencies": { "@griffel/core": "^1.21.3", @@ -2644,7 +2634,7 @@ }, "node_modules/@griffel/style-types": { "version": "1.4.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@griffel/style-types/-/style-types-1.4.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@griffel/style-types/-/style-types-1.4.2.tgz", "integrity": "sha1-T2aXpznqvCzteNK/9POMN+SOkRU=", "license": "MIT", "dependencies": { @@ -2653,7 +2643,7 @@ }, "node_modules/@humanwhocodes/config-array": { "version": "0.13.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", "integrity": "sha1-+5B2JN8yVtBLmqLfUNeql+xkh0g=", "deprecated": "Use @eslint/config-array instead", "dev": true, @@ -2669,7 +2659,7 @@ }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha1-r1smkaIrRL6EewyoFkHF+2rQFyw=", "dev": true, "license": "Apache-2.0", @@ -2683,7 +2673,7 @@ }, "node_modules/@humanwhocodes/object-schema": { "version": "2.0.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", "integrity": "sha1-Siho111taWPkI7z5C3/RvjQ0CdM=", "deprecated": "Use @eslint/object-schema instead", "dev": true, @@ -2691,7 +2681,7 @@ }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.13", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", "integrity": "sha1-Y0Khn0Q0dRjJPkOxrGnes8Rlah8=", "dev": true, "license": "MIT", @@ -2702,7 +2692,7 @@ }, "node_modules/@jridgewell/remapping": { "version": "2.3.5", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@jridgewell/remapping/-/remapping-2.3.5.tgz", "integrity": "sha1-N1xHbRlylHhRuh4Vro8SMEdEWqE=", "dev": true, "license": "MIT", @@ -2713,7 +2703,7 @@ }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha1-eg7mAfYPmaIMfHxf8MgDiMEYm9Y=", "dev": true, "license": "MIT", @@ -2739,6 +2729,26 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, + "node_modules/@napi-rs/lzma-linux-x64-gnu": { + "version": "1.5.1", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@napi-rs/lzma-linux-x64-gnu/-/lzma-linux-x64-gnu-1.5.1.tgz", + "integrity": "sha1-5X1DBpZgeGYgOAlPs465FG3Drqk=", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^22.20 || ^24.12 || >=25" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -2755,7 +2765,7 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=", "dev": true, "license": "MIT", @@ -2765,7 +2775,7 @@ }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=", "dev": true, "license": "MIT", @@ -2779,14 +2789,14 @@ }, "node_modules/@polka/url": { "version": "1.0.0-next.29", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@polka/url/-/url-1.0.0-next.29.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@polka/url/-/url-1.0.0-next.29.tgz", "integrity": "sha1-WkAQmhq1+E1v2PySixnzZ8vn57E=", "dev": true, "license": "MIT" }, "node_modules/@reduxjs/toolkit": { "version": "2.12.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@reduxjs/toolkit/-/toolkit-2.12.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@reduxjs/toolkit/-/toolkit-2.12.0.tgz", "integrity": "sha1-5ieHUDo4Vh4Eu4854pyo22iVkPk=", "license": "MIT", "dependencies": { @@ -2812,15 +2822,15 @@ }, "node_modules/@rolldown/pluginutils": { "version": "1.0.0-beta.27", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", "integrity": "sha1-R9K/TO9tRwsi9YMbQg+JZOC/dV8=", "dev": true, "license": "MIT" }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.62.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.62.3.tgz", - "integrity": "sha1-sKtCL7YPNYPIx4noVtZKMlB/KZ4=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.62.4.tgz", + "integrity": "sha1-K4bI//E6BlhF3bZfZNgUSZrOAg8=", "cpu": [ "arm" ], @@ -2832,9 +2842,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.62.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.62.3.tgz", - "integrity": "sha1-BH6WfutECimfGrx3NXm1wlFvpI0=", + "version": "4.62.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.62.4.tgz", + "integrity": "sha1-ryFzV+zAauXk9U7zTucrHjf428M=", "cpu": [ "arm64" ], @@ -2846,9 +2856,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.62.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.62.3.tgz", - "integrity": "sha1-GDaeZ9DT/8sBqVVhIXRHt5Fydpc=", + "version": "4.62.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.62.4.tgz", + "integrity": "sha1-6dCtugbjm2MvyOiAEA/wZUftqAs=", "cpu": [ "arm64" ], @@ -2860,9 +2870,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.62.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.62.3.tgz", - "integrity": "sha1-vyOuTFwPhBsSO8eeOyRhdsbQj9c=", + "version": "4.62.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.62.4.tgz", + "integrity": "sha1-7/mDop232Op/cz8c5DD8ZOFZpeY=", "cpu": [ "x64" ], @@ -2874,9 +2884,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.62.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.62.3.tgz", - "integrity": "sha1-ySobB9AkMYHybZ3rJ4w+8J4B8GU=", + "version": "4.62.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.62.4.tgz", + "integrity": "sha1-q+E5mnDoGQNPSS0F28yXlkMQu1c=", "cpu": [ "arm64" ], @@ -2888,9 +2898,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.62.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.62.3.tgz", - "integrity": "sha1-tp2gQH6gZJfTlb4OeZzGAQBLNy4=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.62.4.tgz", + "integrity": "sha1-suD4wko2KscRK+PVVJxpQFl+AWg=", "cpu": [ "x64" ], @@ -2902,9 +2912,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.62.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.62.3.tgz", - "integrity": "sha1-G0tjxX/CDm6kdIqOqGTYZRMyjsQ=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.62.4.tgz", + "integrity": "sha1-pfKn5+txklSmgA2xjp82nTxiNDk=", "cpu": [ "arm" ], @@ -2919,9 +2929,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.62.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.62.3.tgz", - "integrity": "sha1-ZDNPWlF4yrsV59KpH7WS2x+GIdM=", + "version": "4.62.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.62.4.tgz", + "integrity": "sha1-OQyGx5dpWvh8ONbwBSItkgtb+iI=", "cpu": [ "arm" ], @@ -2936,9 +2946,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.62.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.3.tgz", - "integrity": "sha1-H/KZ94JfD1Ko4Qfax/Fc5zAJhIs=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.4.tgz", + "integrity": "sha1-H+p4YJoVgTzamNk/6NmHyHAX9XI=", "cpu": [ "arm64" ], @@ -2953,9 +2963,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.62.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.62.3.tgz", - "integrity": "sha1-mQUjgOepT6RAuRZsZ6kJqjVy8Ik=", + "version": "4.62.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.62.4.tgz", + "integrity": "sha1-O1ADHJkWUXV2CY9uEbOKExR9xGM=", "cpu": [ "arm64" ], @@ -2970,9 +2980,9 @@ ] }, "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.62.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.62.3.tgz", - "integrity": "sha1-X1i1drNmjt9irPDFJlgmJnt9hY8=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.62.4.tgz", + "integrity": "sha1-tAMlVUYJmkMAsX2XbuF3YiTAkOU=", "cpu": [ "loong64" ], @@ -2987,9 +2997,9 @@ ] }, "node_modules/@rollup/rollup-linux-loong64-musl": { - "version": "4.62.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.62.3.tgz", - "integrity": "sha1-qM0DN+P/OgyV6tZ3FcUa93xa/zY=", + "version": "4.62.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.62.4.tgz", + "integrity": "sha1-WQBhDlnGbuWUU5xlkFZtv9pwgrE=", "cpu": [ "loong64" ], @@ -3004,9 +3014,9 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.62.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.62.3.tgz", - "integrity": "sha1-YzXOwVtVprBj40y36WhRX6UA/9Q=", + "version": "4.62.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.62.4.tgz", + "integrity": "sha1-qJLMi4QUvIrgsmeBa144Tl0yH/I=", "cpu": [ "ppc64" ], @@ -3021,9 +3031,9 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-musl": { - "version": "4.62.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.62.3.tgz", - "integrity": "sha1-zytv0jjwkoxWV7uKXKd1HfwubOQ=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.62.4.tgz", + "integrity": "sha1-2eYNVot9tN8hlvskEbDGkYsjYMw=", "cpu": [ "ppc64" ], @@ -3038,9 +3048,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.62.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.62.3.tgz", - "integrity": "sha1-35UIyHIUN/flGZDKqmHS8423PL8=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.62.4.tgz", + "integrity": "sha1-WzFBq0OvvZ5Q9jnlYulO0lbSAc8=", "cpu": [ "riscv64" ], @@ -3055,9 +3065,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.62.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.62.3.tgz", - "integrity": "sha1-DP6TBy9MOYu51mbllTNxoiq6f0o=", + "version": "4.62.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.62.4.tgz", + "integrity": "sha1-sP51EBW8OCL5AEiE6rpeXN/eeqY=", "cpu": [ "riscv64" ], @@ -3072,9 +3082,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.62.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.62.3.tgz", - "integrity": "sha1-+Oe989QZhmtoiwnZNIJTklIy0cs=", + "version": "4.62.4", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.62.4.tgz", + "integrity": "sha1-DLMj6FBQnhub9tJBMoqYsOEuKRY=", "cpu": [ "s390x" ], @@ -3089,9 +3099,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.62.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.62.3.tgz", - "integrity": "sha1-V+9/A5xPfeDpE/HyaAOFRnuGuxU=", + "version": "4.62.4", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.62.4.tgz", + "integrity": "sha1-HnRwEj56i6jBYKegQ0R0ctVUlUI=", "cpu": [ "x64" ], @@ -3106,9 +3116,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.62.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.62.3.tgz", - "integrity": "sha1-b1tWk9S+sVK/UYxIfSWTYtvs5Ek=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.62.4.tgz", + "integrity": "sha1-Gd+aF9IP88F72OnMJVNWOuCqBYA=", "cpu": [ "x64" ], @@ -3123,9 +3133,9 @@ ] }, "node_modules/@rollup/rollup-openbsd-x64": { - "version": "4.62.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.62.3.tgz", - "integrity": "sha1-mQkBAJPtf7JIDHO8GTqPTUT/ueM=", + "version": "4.62.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.62.4.tgz", + "integrity": "sha1-McPKG9AOgPMJodDLjaS99Zyy36M=", "cpu": [ "x64" ], @@ -3137,9 +3147,9 @@ ] }, "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.62.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.62.3.tgz", - "integrity": "sha1-q6kLV3Jfz0xAcslabb+891AKdw0=", + "version": "4.62.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.62.4.tgz", + "integrity": "sha1-hFYaFDgcrst2UuFY0QVRpe3Apvw=", "cpu": [ "arm64" ], @@ -3151,9 +3161,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.62.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.62.3.tgz", - "integrity": "sha1-Es7isubTfbuDYCaGgS5LuikMmqM=", + "version": "4.62.4", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.62.4.tgz", + "integrity": "sha1-vFMu2yDNOcC1Pu4t+uQ7UsLjvh4=", "cpu": [ "arm64" ], @@ -3165,9 +3175,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.62.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.62.3.tgz", - "integrity": "sha1-ORoNb4RYpnWtcgzMrpvLmkgQkBY=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.62.4.tgz", + "integrity": "sha1-pvUUkpdsn8GYAb4pjfL3ajy+v3o=", "cpu": [ "ia32" ], @@ -3179,9 +3189,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.62.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.62.3.tgz", - "integrity": "sha1-Pzi7GA/PHPqRl1xLNElB6YWm7RM=", + "version": "4.62.4", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.62.4.tgz", + "integrity": "sha1-rmBxCwhosv5zHZ98NB+knL+Ohik=", "cpu": [ "x64" ], @@ -3193,9 +3203,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.62.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.62.3.tgz", - "integrity": "sha1-DMr9RKjLyzP3/qqePoUDPnpSKVw=", + "version": "4.62.4", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.62.4.tgz", + "integrity": "sha1-w6Jl/g+a9PtjuthtOCk4a8XaACY=", "cpu": [ "x64" ], @@ -3208,7 +3218,7 @@ }, "node_modules/@standard-schema/spec": { "version": "1.1.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@standard-schema/spec/-/spec-1.1.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@standard-schema/spec/-/spec-1.1.0.tgz", "integrity": "sha1-p5tV26+GBIEvUtFAssmrQbwVC7g=", "license": "MIT" }, @@ -3229,7 +3239,7 @@ }, "node_modules/@testing-library/dom": { "version": "10.4.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@testing-library/dom/-/dom-10.4.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@testing-library/dom/-/dom-10.4.1.tgz", "integrity": "sha1-1ET4qInppG6aO087iOD8s++2z5U=", "license": "MIT", "dependencies": { @@ -3267,13 +3277,13 @@ }, "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { "version": "0.6.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", "integrity": "sha1-mT6SXMHXPyxmLn113VpURSWaj9g=", "license": "MIT" }, "node_modules/@testing-library/react": { "version": "16.3.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@testing-library/react/-/react-16.3.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@testing-library/react/-/react-16.3.2.tgz", "integrity": "sha1-ZyiDt6y453X8BJLZ6dJeBuiXhtA=", "license": "MIT", "dependencies": { @@ -3300,7 +3310,7 @@ }, "node_modules/@testing-library/user-event": { "version": "13.5.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@testing-library/user-event/-/user-event-13.5.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@testing-library/user-event/-/user-event-13.5.0.tgz", "integrity": "sha1-addwB/HhJNVTFKK3P9IEszOxMpU=", "license": "MIT", "dependencies": { @@ -3316,7 +3326,7 @@ }, "node_modules/@types/aria-query": { "version": "5.0.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/aria-query/-/aria-query-5.0.4.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/aria-query/-/aria-query-5.0.4.tgz", "integrity": "sha1-GjHD03iFDSd42rtjdNA23LpLpwg=", "license": "MIT" }, @@ -3336,7 +3346,7 @@ }, "node_modules/@types/babel__generator": { "version": "7.27.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/babel__generator/-/babel__generator-7.27.0.tgz", "integrity": "sha1-tYGSlMUReZV6+uw0FEL5NB5BCKk=", "dev": true, "license": "MIT", @@ -3346,7 +3356,7 @@ }, "node_modules/@types/babel__template": { "version": "7.4.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/babel__template/-/babel__template-7.4.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/babel__template/-/babel__template-7.4.4.tgz", "integrity": "sha1-VnJRNwHBshmbxtrWNqnXSRWGdm8=", "dev": true, "license": "MIT", @@ -3367,7 +3377,7 @@ }, "node_modules/@types/chai": { "version": "5.2.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/chai/-/chai-5.2.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/chai/-/chai-5.2.3.tgz", "integrity": "sha1-jpzZ4cNYH6azQaWu1ViOsoW+C0o=", "dev": true, "license": "MIT", @@ -3378,7 +3388,7 @@ }, "node_modules/@types/debug": { "version": "4.1.13", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/debug/-/debug-4.1.13.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/debug/-/debug-4.1.13.tgz", "integrity": "sha1-ItHMnVQtNZPK6nZPl0MGqzYobuc=", "license": "MIT", "dependencies": { @@ -3400,7 +3410,7 @@ }, "node_modules/@types/estree-jsx": { "version": "1.0.5", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", "integrity": "sha1-hYqI6iDzT+ZREfAFpon6Hr9w3Bg=", "license": "MIT", "dependencies": { @@ -3418,7 +3428,7 @@ }, "node_modules/@types/jest": { "version": "27.5.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/jest/-/jest-27.5.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/jest/-/jest-27.5.2.tgz", "integrity": "sha1-7EnSnZJlAP+5/SK4QmLoYgScAmw=", "license": "MIT", "dependencies": { @@ -3428,14 +3438,14 @@ }, "node_modules/@types/json-schema": { "version": "7.0.15", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/json-schema/-/json-schema-7.0.15.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha1-WWoXRyM2lNUPatinhp/Lb1bPWEE=", "dev": true, "license": "MIT" }, "node_modules/@types/mdast": { "version": "4.0.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/mdast/-/mdast-4.0.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha1-fM9y7dLxqn3TQ34YDGQ3NYWATdY=", "license": "MIT", "dependencies": { @@ -3444,7 +3454,7 @@ }, "node_modules/@types/ms": { "version": "2.1.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/ms/-/ms-2.1.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/ms/-/ms-2.1.0.tgz", "integrity": "sha1-BSqmekjszEMJ1/AZG35BQ0uQu3g=", "license": "MIT" }, @@ -3460,13 +3470,13 @@ }, "node_modules/@types/prop-types": { "version": "15.7.15", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/prop-types/-/prop-types-15.7.15.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/prop-types/-/prop-types-15.7.15.tgz", "integrity": "sha1-5uWobWAr6spxzlFj+t9fldcJMcc=", "license": "MIT" }, "node_modules/@types/react": { "version": "18.3.31", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/react/-/react-18.3.31.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/react/-/react-18.3.31.tgz", "integrity": "sha1-teleKP/M6rjZgvM/LrB24XZTwqQ=", "license": "MIT", "dependencies": { @@ -3484,15 +3494,15 @@ } }, "node_modules/@types/semver": { - "version": "7.7.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/semver/-/semver-7.7.1.tgz", - "integrity": "sha1-POOvGlUk7zJ9Lank/YttlcjXBSg=", + "version": "7.8.0", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/semver/-/semver-7.8.0.tgz", + "integrity": "sha1-C/4+xR9elhW8MXF0zVuI6gi3/C8=", "dev": true, "license": "MIT" }, "node_modules/@types/unist": { "version": "3.0.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/unist/-/unist-3.0.3.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/unist/-/unist-3.0.3.tgz", "integrity": "sha1-rKqw+RnOaczmKcLU7S60rcG2wgw=", "license": "MIT" }, @@ -3567,7 +3577,7 @@ }, "node_modules/@typescript-eslint/scope-manager": { "version": "5.62.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", "integrity": "sha1-2UV8zGoLjWs30OslKiMCJHjFRgw=", "dev": true, "license": "MIT", @@ -3613,7 +3623,7 @@ }, "node_modules/@typescript-eslint/types": { "version": "5.62.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/types/-/types-5.62.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/types/-/types-5.62.0.tgz", "integrity": "sha1-JYYH5g7/ownwZ2CJMcPfb+1B/S8=", "dev": true, "license": "MIT", @@ -3627,7 +3637,7 @@ }, "node_modules/@typescript-eslint/typescript-estree": { "version": "5.62.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", "integrity": "sha1-fRd5S3f6vKxhXWpI+xQzMNli65s=", "dev": true, "license": "BSD-2-Clause", @@ -3655,7 +3665,7 @@ }, "node_modules/@typescript-eslint/utils": { "version": "5.62.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/utils/-/utils-5.62.0.tgz", "integrity": "sha1-FB6AnHFjbkp12qOfrtL7X0sQ34Y=", "dev": true, "license": "MIT", @@ -3682,7 +3692,7 @@ }, "node_modules/@typescript-eslint/visitor-keys": { "version": "5.62.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", "integrity": "sha1-IXQBGRfOWCh1lU/+L2kS1ZMeNT4=", "dev": true, "license": "MIT", @@ -3706,7 +3716,7 @@ }, "node_modules/@vitejs/plugin-react": { "version": "4.7.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", "integrity": "sha1-ZHr057t1rTrdV452KtmEuQ9KJLk=", "dev": true, "license": "MIT", @@ -3744,7 +3754,7 @@ }, "node_modules/@vitest/mocker": { "version": "3.2.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/mocker/-/mocker-3.2.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/mocker/-/mocker-3.2.7.tgz", "integrity": "sha1-MxvpRMt4PGQt1CvXQ0EayiTqBGY=", "dev": true, "license": "MIT", @@ -3771,7 +3781,7 @@ }, "node_modules/@vitest/pretty-format": { "version": "3.2.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/pretty-format/-/pretty-format-3.2.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/pretty-format/-/pretty-format-3.2.7.tgz", "integrity": "sha1-KntZP44Afp2O9+c0OqMOxz/eryk=", "dev": true, "license": "MIT", @@ -3784,7 +3794,7 @@ }, "node_modules/@vitest/runner": { "version": "3.2.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/runner/-/runner-3.2.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/runner/-/runner-3.2.7.tgz", "integrity": "sha1-wMCAIoGJ8fps2kD1m+CddGsKylE=", "dev": true, "license": "MIT", @@ -3814,7 +3824,7 @@ }, "node_modules/@vitest/spy": { "version": "3.2.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/spy/-/spy-3.2.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/spy/-/spy-3.2.7.tgz", "integrity": "sha1-yn++5EAZUjykUDldmiKEzp7OHzE=", "dev": true, "license": "MIT", @@ -3849,7 +3859,7 @@ }, "node_modules/@vitest/utils": { "version": "3.2.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/utils/-/utils-3.2.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@vitest/utils/-/utils-3.2.7.tgz", "integrity": "sha1-MCyBJiEaxN/qh7O1CFwJjW0i6J4=", "dev": true, "license": "MIT", @@ -3877,7 +3887,7 @@ }, "node_modules/acorn-jsx": { "version": "5.3.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha1-ftW7VZCLOy8bxVxq8WU7rafweTc=", "dev": true, "license": "MIT", @@ -3914,7 +3924,7 @@ }, "node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ansi-regex/-/ansi-regex-5.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", "license": "MIT", "engines": { @@ -3938,7 +3948,7 @@ }, "node_modules/argparse": { "version": "2.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/argparse/-/argparse-2.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/argparse/-/argparse-2.0.1.tgz", "integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=", "dev": true, "license": "Python-2.0" @@ -3954,7 +3964,7 @@ }, "node_modules/array-buffer-byte-length": { "version": "1.0.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", "integrity": "sha1-OE0So3KVrsN2mrAirTI6GKUcz4s=", "dev": true, "license": "MIT", @@ -4004,7 +4014,7 @@ }, "node_modules/array.prototype.findlast": { "version": "1.2.5", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", "integrity": "sha1-Pk+8swoVp/W/ZM8vquItE5wuSQQ=", "dev": true, "license": "MIT", @@ -4063,7 +4073,7 @@ }, "node_modules/array.prototype.tosorted": { "version": "1.1.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", "integrity": "sha1-/pVGeP9TA05xfqM1KgPwsLhvf/w=", "dev": true, "license": "MIT", @@ -4080,7 +4090,7 @@ }, "node_modules/arraybuffer.prototype.slice": { "version": "1.0.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", "integrity": "sha1-nXYNhNvdBtDL+SyISWFaGnqzGDw=", "dev": true, "license": "MIT", @@ -4102,7 +4112,7 @@ }, "node_modules/assertion-error": { "version": "2.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/assertion-error/-/assertion-error-2.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/assertion-error/-/assertion-error-2.0.1.tgz", "integrity": "sha1-9kGhlrM1aQsQcL8AtudZP+wZC/c=", "dev": true, "license": "MIT", @@ -4112,7 +4122,7 @@ }, "node_modules/async-function": { "version": "1.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/async-function/-/async-function-1.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/async-function/-/async-function-1.0.0.tgz", "integrity": "sha1-UJyfymDq+FA0xoKYOBiOTkyP+ys=", "dev": true, "license": "MIT", @@ -4122,7 +4132,7 @@ }, "node_modules/available-typed-arrays": { "version": "1.0.7", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", "integrity": "sha1-pcw3XWoDwu/IelU/PgsVIt7xSEY=", "dev": true, "license": "MIT", @@ -4138,7 +4148,7 @@ }, "node_modules/bail": { "version": "2.0.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/bail/-/bail-2.0.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/bail/-/bail-2.0.2.tgz", "integrity": "sha1-0m9c2P5db4MqMVF7n3w1YEC6bV0=", "license": "MIT", "funding": { @@ -4148,15 +4158,15 @@ }, "node_modules/balanced-match": { "version": "1.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/balanced-match/-/balanced-match-1.0.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=", "dev": true, "license": "MIT" }, "node_modules/baseline-browser-mapping": { - "version": "2.11.8", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/baseline-browser-mapping/-/baseline-browser-mapping-2.11.8.tgz", - "integrity": "sha1-Qutf/Jn9icqL8w4xVXtIcGPuyG8=", + "version": "2.11.14", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/baseline-browser-mapping/-/baseline-browser-mapping-2.11.14.tgz", + "integrity": "sha1-1Ru5IoVgiw5jVoQaLup2hCp3HVI=", "dev": true, "license": "Apache-2.0", "bin": { @@ -4168,13 +4178,13 @@ }, "node_modules/boolbase": { "version": "1.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/boolbase/-/boolbase-1.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "license": "ISC" }, "node_modules/brace-expansion": { "version": "1.1.16", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/brace-expansion/-/brace-expansion-1.1.16.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/brace-expansion/-/brace-expansion-1.1.16.tgz", "integrity": "sha1-cj06MMBVjCJavJ/Eeac+FOJsPC8=", "dev": true, "license": "MIT", @@ -4185,7 +4195,7 @@ }, "node_modules/braces": { "version": "3.0.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/braces/-/braces-3.0.3.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/braces/-/braces-3.0.3.tgz", "integrity": "sha1-SQMy9AkZRSJy1VqEgK3AxEE1h4k=", "dev": true, "license": "MIT", @@ -4197,9 +4207,9 @@ } }, "node_modules/browserslist": { - "version": "4.28.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/browserslist/-/browserslist-4.28.7.tgz", - "integrity": "sha1-QJBGUX/M0uUc3CDwd0VLcUEYQCg=", + "version": "4.28.8", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/browserslist/-/browserslist-4.28.8.tgz", + "integrity": "sha1-o8ec63AChSfl2n2vyIfzIAtRaMA=", "dev": true, "funding": [ { @@ -4217,11 +4227,11 @@ ], "license": "MIT", "dependencies": { - "baseline-browser-mapping": "^2.10.44", - "caniuse-lite": "^1.0.30001806", - "electron-to-chromium": "^1.5.393", - "node-releases": "^2.0.51", - "update-browserslist-db": "^1.2.3" + "baseline-browser-mapping": "^2.11.12", + "caniuse-lite": "^1.0.30001809", + "electron-to-chromium": "^1.5.402", + "node-releases": "^2.0.53", + "update-browserslist-db": "^1.3.0" }, "bin": { "browserslist": "cli.js" @@ -4242,7 +4252,7 @@ }, "node_modules/call-bind": { "version": "1.0.9", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/call-bind/-/call-bind-1.0.9.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/call-bind/-/call-bind-1.0.9.tgz", "integrity": "sha1-OaZEcAyAvH0MqRAvxtHUOy/X7uc=", "dev": true, "license": "MIT", @@ -4261,7 +4271,7 @@ }, "node_modules/call-bind-apply-helpers": { "version": "1.0.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", "integrity": "sha1-S1QowiK+mF15w9gmV0edvgtZstY=", "dev": true, "license": "MIT", @@ -4275,7 +4285,7 @@ }, "node_modules/call-bound": { "version": "1.0.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/call-bound/-/call-bound-1.0.4.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/call-bound/-/call-bound-1.0.4.tgz", "integrity": "sha1-I43pNdKippKSjFOMfM+pEGf9Bio=", "dev": true, "license": "MIT", @@ -4301,9 +4311,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001806", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz", - "integrity": "sha1-G8jlArcj+jk0Vd++3VzOwMKbt04=", + "version": "1.0.30001809", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/caniuse-lite/-/caniuse-lite-1.0.30001809.tgz", + "integrity": "sha1-5s9x8U3f4AjxFN0qhGkjvjwDoHs=", "dev": true, "funding": [ { @@ -4323,7 +4333,7 @@ }, "node_modules/ccount": { "version": "2.0.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ccount/-/ccount-2.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ccount/-/ccount-2.0.1.tgz", "integrity": "sha1-F6O/gjAuCHDW2kOgExGovAKj7PU=", "license": "MIT", "funding": { @@ -4333,7 +4343,7 @@ }, "node_modules/chai": { "version": "5.3.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/chai/-/chai-5.3.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/chai/-/chai-5.3.3.tgz", "integrity": "sha1-3T2pVeJwkWpL0/Yl9LkZmWrafgY=", "dev": true, "license": "MIT", @@ -4350,7 +4360,7 @@ }, "node_modules/chalk": { "version": "4.1.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/chalk/-/chalk-4.1.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/chalk/-/chalk-4.1.2.tgz", "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=", "license": "MIT", "dependencies": { @@ -4366,7 +4376,7 @@ }, "node_modules/character-entities": { "version": "2.0.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/character-entities/-/character-entities-2.0.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/character-entities/-/character-entities-2.0.2.tgz", "integrity": "sha1-LQnC5yzZUjB2zLIRV9/2atQ/zCI=", "license": "MIT", "funding": { @@ -4386,7 +4396,7 @@ }, "node_modules/character-entities-legacy": { "version": "3.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", "integrity": "sha1-dryDqQc4kB17wiOp6TdZ/dVgEls=", "license": "MIT", "funding": { @@ -4416,7 +4426,7 @@ }, "node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/color-convert/-/color-convert-2.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", "license": "MIT", "dependencies": { @@ -4428,7 +4438,7 @@ }, "node_modules/color-name": { "version": "1.1.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/color-name/-/color-name-1.1.4.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/color-name/-/color-name-1.1.4.tgz", "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", "license": "MIT" }, @@ -4444,7 +4454,7 @@ }, "node_modules/concat-map": { "version": "0.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/concat-map/-/concat-map-0.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", "dev": true, "license": "MIT" @@ -4458,7 +4468,7 @@ }, "node_modules/cookie": { "version": "1.1.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/cookie/-/cookie-1.1.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/cookie/-/cookie-1.1.1.tgz", "integrity": "sha1-O7m9/II2nbnC9pyTycPOsxDIizw=", "license": "MIT", "engines": { @@ -4471,7 +4481,7 @@ }, "node_modules/cross-spawn": { "version": "7.0.6", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/cross-spawn/-/cross-spawn-7.0.6.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha1-ilj+ePANzXDDcEUXWd+/rwPo7p8=", "dev": true, "license": "MIT", @@ -4486,7 +4496,7 @@ }, "node_modules/css-selector-parser": { "version": "3.3.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/css-selector-parser/-/css-selector-parser-3.3.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/css-selector-parser/-/css-selector-parser-3.3.0.tgz", "integrity": "sha1-GjQiDXZ2LJKa6ZmT31pgch9QUII=", "funding": [ { @@ -4522,7 +4532,7 @@ }, "node_modules/csstype": { "version": "3.2.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/csstype/-/csstype-3.2.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/csstype/-/csstype-3.2.3.tgz", "integrity": "sha1-7EjA8+mT5QZIyG2lWeJhCZXPmJo=", "license": "MIT" }, @@ -4613,14 +4623,14 @@ }, "node_modules/decimal.js": { "version": "10.6.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/decimal.js/-/decimal.js-10.6.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/decimal.js/-/decimal.js-10.6.0.tgz", "integrity": "sha1-5kmkPjq5U6chkv9Zg4ZeUJ837Zo=", "dev": true, "license": "MIT" }, "node_modules/decode-named-character-reference": { "version": "1.3.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz", "integrity": "sha1-PkBgN2CHTC5YZ2kbWZ1zp9oltT8=", "license": "MIT", "dependencies": { @@ -4633,7 +4643,7 @@ }, "node_modules/deep-eql": { "version": "5.0.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/deep-eql/-/deep-eql-5.0.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/deep-eql/-/deep-eql-5.0.2.tgz", "integrity": "sha1-S3VtjXcKklcwCCXVKiws/5nDo0E=", "dev": true, "license": "MIT", @@ -4643,14 +4653,14 @@ }, "node_modules/deep-is": { "version": "0.1.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/deep-is/-/deep-is-0.1.4.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=", "dev": true, "license": "MIT" }, "node_modules/define-data-property": { "version": "1.1.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/define-data-property/-/define-data-property-1.1.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha1-iU3BQbt9MGCuQ2b2oBB+aPvkjF4=", "dev": true, "license": "MIT", @@ -4686,7 +4696,7 @@ }, "node_modules/dequal": { "version": "2.0.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dequal/-/dequal-2.0.3.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dequal/-/dequal-2.0.3.tgz", "integrity": "sha1-JkQhTxmX057Q7g7OcjNUkKesZ74=", "license": "MIT", "engines": { @@ -4695,7 +4705,7 @@ }, "node_modules/devlop": { "version": "1.1.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/devlop/-/devlop-1.1.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/devlop/-/devlop-1.1.0.tgz", "integrity": "sha1-TbfCyk3G4Og0wwvnDJS7yXbccBg=", "license": "MIT", "dependencies": { @@ -4717,7 +4727,7 @@ }, "node_modules/dir-glob": { "version": "3.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dir-glob/-/dir-glob-3.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8=", "dev": true, "license": "MIT", @@ -4730,7 +4740,7 @@ }, "node_modules/doctrine": { "version": "3.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/doctrine/-/doctrine-3.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=", "dev": true, "license": "Apache-2.0", @@ -4743,13 +4753,13 @@ }, "node_modules/dom-accessibility-api": { "version": "0.5.16", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", "integrity": "sha1-WnQp5gZus2ZNkR4z+w5F3o6whFM=", "license": "MIT" }, "node_modules/dunder-proto": { "version": "1.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dunder-proto/-/dunder-proto-1.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/dunder-proto/-/dunder-proto-1.0.1.tgz", "integrity": "sha1-165mfh3INIL4tw/Q9u78UNow9Yo=", "dev": true, "license": "MIT", @@ -4763,9 +4773,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.5.399", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/electron-to-chromium/-/electron-to-chromium-1.5.399.tgz", - "integrity": "sha1-1FIumDONZcpP6kmjySIEdMfAKKc=", + "version": "1.5.406", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/electron-to-chromium/-/electron-to-chromium-1.5.406.tgz", + "integrity": "sha1-wdLdrCHQHpLw3dKVHTdkJQHUp/E=", "dev": true, "license": "ISC" }, @@ -4786,7 +4796,7 @@ }, "node_modules/embla-carousel-fade": { "version": "8.6.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/embla-carousel-fade/-/embla-carousel-fade-8.6.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/embla-carousel-fade/-/embla-carousel-fade-8.6.0.tgz", "integrity": "sha1-ktGezVREHrbzeRC/nhb9P1R+M3Q=", "license": "MIT", "peerDependencies": { @@ -4795,7 +4805,7 @@ }, "node_modules/entities": { "version": "6.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/entities/-/entities-6.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/entities/-/entities-6.0.1.tgz", "integrity": "sha1-wow0pDN5yn9h0HQTCy9fcCCjBpQ=", "license": "BSD-2-Clause", "engines": { @@ -4807,7 +4817,7 @@ }, "node_modules/es-abstract": { "version": "1.24.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-abstract/-/es-abstract-1.24.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-abstract/-/es-abstract-1.24.2.tgz", "integrity": "sha1-Lb04wYBzXumD93WFFAonBqlj7Zo=", "dev": true, "license": "MIT", @@ -4876,7 +4886,7 @@ }, "node_modules/es-abstract-get": { "version": "1.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-abstract-get/-/es-abstract-get-1.0.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-abstract-get/-/es-abstract-get-1.0.0.tgz", "integrity": "sha1-Hq6HEB9Cvt62p0DoxQUSca74kIg=", "dev": true, "license": "MIT", @@ -4895,7 +4905,7 @@ }, "node_modules/es-define-property": { "version": "1.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-define-property/-/es-define-property-1.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-define-property/-/es-define-property-1.0.1.tgz", "integrity": "sha1-mD6y+aZyTpMD9hrd8BHHLgngsPo=", "dev": true, "license": "MIT", @@ -4905,7 +4915,7 @@ }, "node_modules/es-errors": { "version": "1.3.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-errors/-/es-errors-1.3.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha1-BfdaJdq5jk+x3NXhRywFRtUFfI8=", "dev": true, "license": "MIT", @@ -4915,7 +4925,7 @@ }, "node_modules/es-iterator-helpers": { "version": "1.4.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-iterator-helpers/-/es-iterator-helpers-1.4.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-iterator-helpers/-/es-iterator-helpers-1.4.0.tgz", "integrity": "sha1-K0Y17j6NsihTeKR6Hqj43TSttlM=", "dev": true, "license": "MIT", @@ -4979,7 +4989,7 @@ }, "node_modules/es-shim-unscopables": { "version": "1.1.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", "integrity": "sha1-Q43zVSDaxdEF85Q9knVJ6jsA9LU=", "dev": true, "license": "MIT", @@ -4992,7 +5002,7 @@ }, "node_modules/es-to-primitive": { "version": "1.3.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-to-primitive/-/es-to-primitive-1.3.4.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/es-to-primitive/-/es-to-primitive-1.3.4.tgz", "integrity": "sha1-DIVCkc8Ne0Oda55XceqDf/rx+ZE=", "dev": true, "license": "MIT", @@ -5065,7 +5075,7 @@ }, "node_modules/escape-string-regexp": { "version": "4.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ=", "dev": true, "license": "MIT", @@ -5078,7 +5088,7 @@ }, "node_modules/eslint": { "version": "8.57.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint/-/eslint-8.57.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint/-/eslint-8.57.1.tgz", "integrity": "sha1-ffEJZUq6fju+XI6uUzxeRh08bKk=", "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, @@ -5135,7 +5145,7 @@ }, "node_modules/eslint-plugin-react": { "version": "7.37.5", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", "integrity": "sha1-KXVRFHK92hsnKzTXeTNcmw6HcGU=", "dev": true, "license": "MIT", @@ -5181,7 +5191,7 @@ }, "node_modules/eslint-plugin-react/node_modules/semver": { "version": "6.3.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz", "integrity": "sha1-VW0u+GiRRuRtzqS/3QlfNDTf/LQ=", "dev": true, "license": "ISC", @@ -5191,7 +5201,7 @@ }, "node_modules/eslint-scope": { "version": "5.1.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint-scope/-/eslint-scope-5.1.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", "dev": true, "license": "BSD-2-Clause", @@ -5205,7 +5215,7 @@ }, "node_modules/eslint-scope/node_modules/estraverse": { "version": "4.3.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/estraverse/-/estraverse-4.3.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=", "dev": true, "license": "BSD-2-Clause", @@ -5215,7 +5225,7 @@ }, "node_modules/eslint-visitor-keys": { "version": "3.4.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha1-DNcv6FUOPC6uFWqWpN3c0cisWAA=", "dev": true, "license": "Apache-2.0", @@ -5228,7 +5238,7 @@ }, "node_modules/eslint/node_modules/eslint-scope": { "version": "7.2.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint-scope/-/eslint-scope-7.2.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/eslint-scope/-/eslint-scope-7.2.2.tgz", "integrity": "sha1-3rT5JWM5DzIAaJSvYqItuhxGQj8=", "dev": true, "license": "BSD-2-Clause", @@ -5245,7 +5255,7 @@ }, "node_modules/espree": { "version": "9.6.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/espree/-/espree-9.6.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/espree/-/espree-9.6.1.tgz", "integrity": "sha1-oqF7jkNGkKVDLy+AGM5x0zGkjG8=", "dev": true, "license": "BSD-2-Clause", @@ -5263,7 +5273,7 @@ }, "node_modules/esquery": { "version": "1.7.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/esquery/-/esquery-1.7.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/esquery/-/esquery-1.7.0.tgz", "integrity": "sha1-CNBI8mHw3e21uulfRoCUY9nJSW0=", "dev": true, "license": "BSD-3-Clause", @@ -5276,7 +5286,7 @@ }, "node_modules/esrecurse": { "version": "4.3.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/esrecurse/-/esrecurse-4.3.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha1-eteWTWeauyi+5yzsY3WLHF0smSE=", "dev": true, "license": "BSD-2-Clause", @@ -5299,7 +5309,7 @@ }, "node_modules/estree-util-is-identifier-name": { "version": "3.0.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz", "integrity": "sha1-C170xP8TUIs03NAez6lF9h/OXb0=", "license": "MIT", "funding": { @@ -5309,7 +5319,7 @@ }, "node_modules/estree-walker": { "version": "3.0.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/estree-walker/-/estree-walker-3.0.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/estree-walker/-/estree-walker-3.0.3.tgz", "integrity": "sha1-Z8PlSexAKkh7T8GT0ZU6UkdSNA0=", "dev": true, "license": "MIT", @@ -5319,7 +5329,7 @@ }, "node_modules/esutils": { "version": "2.0.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/esutils/-/esutils-2.0.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/esutils/-/esutils-2.0.3.tgz", "integrity": "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=", "dev": true, "license": "BSD-2-Clause", @@ -5329,7 +5339,7 @@ }, "node_modules/expect-type": { "version": "1.4.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/expect-type/-/expect-type-1.4.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/expect-type/-/expect-type-1.4.0.tgz", "integrity": "sha1-JO338MxppE0AhWe6RZSrlvPDo9Y=", "dev": true, "license": "Apache-2.0", @@ -5339,13 +5349,13 @@ }, "node_modules/extend": { "version": "3.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/extend/-/extend-3.0.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/extend/-/extend-3.0.2.tgz", "integrity": "sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=", "license": "MIT" }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=", "dev": true, "license": "MIT" @@ -5369,7 +5379,7 @@ }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/glob-parent/-/glob-parent-5.1.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=", "dev": true, "license": "ISC", @@ -5389,14 +5399,14 @@ }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "dev": true, "license": "MIT" }, "node_modules/fastq": { "version": "1.20.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fastq/-/fastq-1.20.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fastq/-/fastq-1.20.1.tgz", "integrity": "sha1-ynUKENySW8ixiDn9ID4+9LPO1nU=", "dev": true, "license": "ISC", @@ -5406,7 +5416,7 @@ }, "node_modules/fdir": { "version": "6.5.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fdir/-/fdir-6.5.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fdir/-/fdir-6.5.0.tgz", "integrity": "sha1-7Sq5Z6MxreYvGNB32uGSaE1Q01A=", "dev": true, "license": "MIT", @@ -5424,14 +5434,14 @@ }, "node_modules/fflate": { "version": "0.8.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fflate/-/fflate-0.8.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fflate/-/fflate-0.8.3.tgz", "integrity": "sha1-vCfY6zA0PU1RKrsDSAICzmXYJfw=", "dev": true, "license": "MIT" }, "node_modules/file-entry-cache": { "version": "6.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=", "dev": true, "license": "MIT", @@ -5444,7 +5454,7 @@ }, "node_modules/fill-range": { "version": "7.1.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fill-range/-/fill-range-7.1.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha1-RCZdPKwH4+p9wkdRY4BkN1SgUpI=", "dev": true, "license": "MIT", @@ -5457,7 +5467,7 @@ }, "node_modules/find-up": { "version": "5.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/find-up/-/find-up-5.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/find-up/-/find-up-5.0.0.tgz", "integrity": "sha1-TJKBnstwg1YeT0okCoa+UZj1Nvw=", "dev": true, "license": "MIT", @@ -5489,14 +5499,14 @@ }, "node_modules/flatted": { "version": "3.4.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/flatted/-/flatted-3.4.4.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/flatted/-/flatted-3.4.4.tgz", "integrity": "sha1-ruyipQYwPwzuYcWebJ8qiNLyn8Y=", "dev": true, "license": "ISC" }, "node_modules/for-each": { "version": "0.3.5", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/for-each/-/for-each-0.3.5.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/for-each/-/for-each-0.3.5.tgz", "integrity": "sha1-1lBogCeCaSD+6wr3R+57lCGkHUc=", "dev": true, "license": "MIT", @@ -5512,14 +5522,14 @@ }, "node_modules/fs.realpath": { "version": "1.0.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fs.realpath/-/fs.realpath-1.0.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true, "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fsevents/-/fsevents-2.3.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha1-ysZAd4XQNnWipeGlMFxpezR9kNY=", "dev": true, "license": "MIT", @@ -5533,7 +5543,7 @@ }, "node_modules/function-bind": { "version": "1.1.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/function-bind/-/function-bind-1.1.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha1-LALYZNl/PqbIgwxGTL0Rq26rehw=", "dev": true, "license": "MIT", @@ -5567,7 +5577,7 @@ }, "node_modules/functions-have-names": { "version": "1.2.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/functions-have-names/-/functions-have-names-1.2.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/functions-have-names/-/functions-have-names-1.2.3.tgz", "integrity": "sha1-BAT+TuK6L2B/Dg7DyAuumUEzuDQ=", "dev": true, "license": "MIT", @@ -5577,7 +5587,7 @@ }, "node_modules/generator-function": { "version": "2.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/generator-function/-/generator-function-2.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/generator-function/-/generator-function-2.0.1.tgz", "integrity": "sha1-DnXdQQ0SQ2h6C6LpUblO7bj3N6I=", "dev": true, "license": "MIT", @@ -5622,7 +5632,7 @@ }, "node_modules/get-proto": { "version": "1.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/get-proto/-/get-proto-1.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/get-proto/-/get-proto-1.0.1.tgz", "integrity": "sha1-FQs/J0OGnvPoUewMSdFbHRTQDuE=", "dev": true, "license": "MIT", @@ -5636,7 +5646,7 @@ }, "node_modules/get-symbol-description": { "version": "1.1.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/get-symbol-description/-/get-symbol-description-1.1.0.tgz", "integrity": "sha1-e91U4L7+j/yfO04gMiDZ8eiBtu4=", "dev": true, "license": "MIT", @@ -5654,7 +5664,7 @@ }, "node_modules/glob": { "version": "7.2.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/glob/-/glob-7.2.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/glob/-/glob-7.2.3.tgz", "integrity": "sha1-uN8PuAK7+o6JvR2Ti04WV47UTys=", "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dev": true, @@ -5676,7 +5686,7 @@ }, "node_modules/glob-parent": { "version": "6.0.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/glob-parent/-/glob-parent-6.0.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha1-bSN9mQg5UMeSkPJMdkKj3poo+eM=", "dev": true, "license": "ISC", @@ -5689,7 +5699,7 @@ }, "node_modules/globals": { "version": "13.24.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/globals/-/globals-13.24.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/globals/-/globals-13.24.0.tgz", "integrity": "sha1-hDKhnXjODB6DOUnDats0VAC7EXE=", "dev": true, "license": "MIT", @@ -5705,7 +5715,7 @@ }, "node_modules/globalthis": { "version": "1.0.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/globalthis/-/globalthis-1.0.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/globalthis/-/globalthis-1.0.4.tgz", "integrity": "sha1-dDDtOpddl7+1m8zkH1yruvplEjY=", "dev": true, "license": "MIT", @@ -5722,7 +5732,7 @@ }, "node_modules/globby": { "version": "11.1.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/globby/-/globby-11.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/globby/-/globby-11.1.0.tgz", "integrity": "sha1-vUvpi7BC+D15b344EZkfvoKg00s=", "dev": true, "license": "MIT", @@ -5743,7 +5753,7 @@ }, "node_modules/gopd": { "version": "1.2.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/gopd/-/gopd-1.2.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/gopd/-/gopd-1.2.0.tgz", "integrity": "sha1-ifVrghe9vIgCvSmd9tfxCB1+UaE=", "dev": true, "license": "MIT", @@ -5756,7 +5766,7 @@ }, "node_modules/graphemer": { "version": "1.4.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/graphemer/-/graphemer-1.4.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/graphemer/-/graphemer-1.4.0.tgz", "integrity": "sha1-+y8dVeDjoYSa7/yQxPoN1ToOZsY=", "dev": true, "license": "MIT" @@ -5776,7 +5786,7 @@ }, "node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/has-flag/-/has-flag-4.0.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", "license": "MIT", "engines": { @@ -5785,7 +5795,7 @@ }, "node_modules/has-property-descriptors": { "version": "1.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha1-lj7X0HHce/XwhMW/vg0bYiJYaFQ=", "dev": true, "license": "MIT", @@ -5827,7 +5837,7 @@ }, "node_modules/has-tostringtag": { "version": "1.0.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha1-LNxC1AvvLltO6rfAGnPFTOerWrw=", "dev": true, "license": "MIT", @@ -5843,7 +5853,7 @@ }, "node_modules/hasown": { "version": "2.0.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hasown/-/hasown-2.0.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hasown/-/hasown-2.0.4.tgz", "integrity": "sha1-jGLYy5C+sqrV0KW2dYGtmFTD8AM=", "dev": true, "license": "MIT", @@ -5856,7 +5866,7 @@ }, "node_modules/hast-util-from-html": { "version": "2.0.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", "integrity": "sha1-SFx0eFNYvrgMS6Y0YpkxGsTEnII=", "license": "MIT", "dependencies": { @@ -5874,7 +5884,7 @@ }, "node_modules/hast-util-from-parse5": { "version": "8.0.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", "integrity": "sha1-gwo1Ai//KMP+o2l6mML0zGuDWi4=", "license": "MIT", "dependencies": { @@ -5894,7 +5904,7 @@ }, "node_modules/hast-util-from-parse5/node_modules/hastscript": { "version": "9.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hastscript/-/hastscript-9.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hastscript/-/hastscript-9.0.1.tgz", "integrity": "sha1-28hL72BR1ACENCwinEUc2dxWff8=", "license": "MIT", "dependencies": { @@ -5924,7 +5934,7 @@ }, "node_modules/hast-util-to-jsx-runtime": { "version": "2.3.6", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz", "integrity": "sha1-/zGJeq5Z9iIy4hWU6sfva2MzPpg=", "license": "MIT", "dependencies": { @@ -5951,7 +5961,7 @@ }, "node_modules/hast-util-whitespace": { "version": "3.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", "integrity": "sha1-d3jtnTyS3Z6MXI9kiknCH8UctiE=", "license": "MIT", "dependencies": { @@ -5964,7 +5974,7 @@ }, "node_modules/hastscript": { "version": "8.0.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hastscript/-/hastscript-8.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/hastscript/-/hastscript-8.0.0.tgz", "integrity": "sha1-TveV7I3uhnEBufI8yDDUuvT9eBo=", "license": "MIT", "dependencies": { @@ -5981,7 +5991,7 @@ }, "node_modules/hastscript/node_modules/property-information": { "version": "6.5.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/property-information/-/property-information-6.5.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/property-information/-/property-information-6.5.0.tgz", "integrity": "sha1-YhL7tSunV+ku9PudZXVjuTO3/+w=", "license": "MIT", "funding": { @@ -5991,7 +6001,7 @@ }, "node_modules/html-encoding-sniffer": { "version": "4.0.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", "integrity": "sha1-aW31KafP2CRGNp3FGT5ZCjc1tEg=", "dev": true, "license": "MIT", @@ -6004,7 +6014,7 @@ }, "node_modules/html-url-attributes": { "version": "3.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/html-url-attributes/-/html-url-attributes-3.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/html-url-attributes/-/html-url-attributes-3.0.1.tgz", "integrity": "sha1-g7BSzV5DcHG3Vs10rnD3CIcMLYc=", "license": "MIT", "funding": { @@ -6014,7 +6024,7 @@ }, "node_modules/http-proxy-agent": { "version": "7.0.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", "integrity": "sha1-mosfJGhmwChQlIZYX2K48sGMJw4=", "dev": true, "license": "MIT", @@ -6028,7 +6038,7 @@ }, "node_modules/https-proxy-agent": { "version": "7.0.6", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", "integrity": "sha1-2o3+rH2hMLBcK6S1nJts1mYRprk=", "dev": true, "license": "MIT", @@ -6042,7 +6052,7 @@ }, "node_modules/iconv-lite": { "version": "0.6.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/iconv-lite/-/iconv-lite-0.6.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha1-pS+AvzjaGVLrXGgXkHGYcaGnJQE=", "dev": true, "license": "MIT", @@ -6055,7 +6065,7 @@ }, "node_modules/ignore": { "version": "5.3.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ignore/-/ignore-5.3.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ignore/-/ignore-5.3.2.tgz", "integrity": "sha1-PNQOcp82Q/2HywTlC/DrcivFlvU=", "dev": true, "license": "MIT", @@ -6064,9 +6074,9 @@ } }, "node_modules/immer": { - "version": "11.1.15", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/immer/-/immer-11.1.15.tgz", - "integrity": "sha1-GxeKkzhIat5ZOfp2z/Q/SkkAHrA=", + "version": "11.1.16", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/immer/-/immer-11.1.16.tgz", + "integrity": "sha1-ZnArYN5X/aagtX7vUshCWMxKrJs=", "license": "MIT", "funding": { "type": "opencollective", @@ -6075,7 +6085,7 @@ }, "node_modules/import-fresh": { "version": "3.3.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/import-fresh/-/import-fresh-3.3.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/import-fresh/-/import-fresh-3.3.1.tgz", "integrity": "sha1-nOy1ZQPAraHydB271lRuSxO1fM8=", "dev": true, "license": "MIT", @@ -6092,7 +6102,7 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/imurmurhash/-/imurmurhash-0.1.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", "dev": true, "license": "MIT", @@ -6102,7 +6112,7 @@ }, "node_modules/indent-string": { "version": "4.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/indent-string/-/indent-string-4.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha1-Yk+PRJfWGbLZdoUx1Y9BIoVNclE=", "license": "MIT", "engines": { @@ -6111,7 +6121,7 @@ }, "node_modules/inflight": { "version": "1.0.6", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/inflight/-/inflight-1.0.6.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, @@ -6123,20 +6133,20 @@ }, "node_modules/inherits": { "version": "2.0.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/inherits/-/inherits-2.0.4.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/inherits/-/inherits-2.0.4.tgz", "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=", "dev": true, "license": "ISC" }, "node_modules/inline-style-parser": { "version": "0.2.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/inline-style-parser/-/inline-style-parser-0.2.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/inline-style-parser/-/inline-style-parser-0.2.7.tgz", "integrity": "sha1-sfxov8AxO4aFdF5EZON/k3a5yQk=", "license": "MIT" }, "node_modules/internal-slot": { "version": "1.1.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/internal-slot/-/internal-slot-1.1.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/internal-slot/-/internal-slot-1.1.0.tgz", "integrity": "sha1-HqyRdilH0vcFa8g42T4TsulgSWE=", "dev": true, "license": "MIT", @@ -6161,7 +6171,7 @@ }, "node_modules/is-alphanumerical": { "version": "2.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", "integrity": "sha1-fAP76W4+kxET5X+WSwo2jMLf2HU=", "license": "MIT", "dependencies": { @@ -6175,7 +6185,7 @@ }, "node_modules/is-array-buffer": { "version": "3.0.5", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-array-buffer/-/is-array-buffer-3.0.5.tgz", "integrity": "sha1-ZXQuHmh70sxmYlMGj9hwf+TUQoA=", "dev": true, "license": "MIT", @@ -6193,7 +6203,7 @@ }, "node_modules/is-async-function": { "version": "2.1.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-async-function/-/is-async-function-2.1.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-async-function/-/is-async-function-2.1.1.tgz", "integrity": "sha1-PmkBjI4E5ztzh5PQIL/ohLn9NSM=", "dev": true, "license": "MIT", @@ -6213,7 +6223,7 @@ }, "node_modules/is-bigint": { "version": "1.1.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-bigint/-/is-bigint-1.1.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-bigint/-/is-bigint-1.1.0.tgz", "integrity": "sha1-3aejRF31ekJYPbQihoLrp8QXBnI=", "dev": true, "license": "MIT", @@ -6246,7 +6256,7 @@ }, "node_modules/is-callable": { "version": "1.2.7", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-callable/-/is-callable-1.2.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha1-O8KoXqdC2eNiBdys3XLKH9xRsFU=", "dev": true, "license": "MIT", @@ -6259,7 +6269,7 @@ }, "node_modules/is-core-module": { "version": "2.16.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-core-module/-/is-core-module-2.16.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-core-module/-/is-core-module-2.16.2.tgz", "integrity": "sha1-PgdFCoCA684/vwysSU9NKrMk4II=", "dev": true, "license": "MIT", @@ -6275,7 +6285,7 @@ }, "node_modules/is-data-view": { "version": "1.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-data-view/-/is-data-view-1.0.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-data-view/-/is-data-view-1.0.2.tgz", "integrity": "sha1-uuCkG5aImGwhiN2mZX5WuPnmO44=", "dev": true, "license": "MIT", @@ -6293,7 +6303,7 @@ }, "node_modules/is-date-object": { "version": "1.1.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-date-object/-/is-date-object-1.1.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-date-object/-/is-date-object-1.1.0.tgz", "integrity": "sha1-rYVUGZb8eqiycpcB0ntzGfldgvc=", "dev": true, "license": "MIT", @@ -6336,7 +6346,7 @@ }, "node_modules/is-extglob": { "version": "2.1.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-extglob/-/is-extglob-2.1.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "dev": true, "license": "MIT", @@ -6346,7 +6356,7 @@ }, "node_modules/is-finalizationregistry": { "version": "1.1.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", "integrity": "sha1-7v3NxslN3QZ02chYh7+T+USpfJA=", "dev": true, "license": "MIT", @@ -6362,7 +6372,7 @@ }, "node_modules/is-generator-function": { "version": "1.1.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-generator-function/-/is-generator-function-1.1.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-generator-function/-/is-generator-function-1.1.2.tgz", "integrity": "sha1-rjth49XqTkg5uQutIrAjNQUaF9U=", "dev": true, "license": "MIT", @@ -6382,7 +6392,7 @@ }, "node_modules/is-glob": { "version": "4.0.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-glob/-/is-glob-4.0.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha1-ZPYeQsu7LuwgcanawLKLoeZdUIQ=", "dev": true, "license": "MIT", @@ -6395,7 +6405,7 @@ }, "node_modules/is-hexadecimal": { "version": "2.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", "integrity": "sha1-hrW/Zo/KMHSY0xnfwDKJ14GpACc=", "license": "MIT", "funding": { @@ -6418,7 +6428,7 @@ }, "node_modules/is-negative-zero": { "version": "2.0.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-negative-zero/-/is-negative-zero-2.0.3.tgz", "integrity": "sha1-ztkDoCespjgbd3pXQwadc3akl0c=", "dev": true, "license": "MIT", @@ -6431,7 +6441,7 @@ }, "node_modules/is-number": { "version": "7.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-number/-/is-number-7.0.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-number/-/is-number-7.0.0.tgz", "integrity": "sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=", "dev": true, "license": "MIT", @@ -6458,7 +6468,7 @@ }, "node_modules/is-path-inside": { "version": "3.0.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-path-inside/-/is-path-inside-3.0.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha1-0jE2LlOgf/Kw4Op/7QSRYf/RYoM=", "dev": true, "license": "MIT", @@ -6468,7 +6478,7 @@ }, "node_modules/is-plain-obj": { "version": "4.1.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-plain-obj/-/is-plain-obj-4.1.0.tgz", "integrity": "sha1-1lAl7ew2V84DL9fbY8l4g+rtcfA=", "license": "MIT", "engines": { @@ -6480,7 +6490,7 @@ }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha1-Fx7W8Z46xVQ5Tt94yqBXhKRb67U=", "dev": true, "license": "MIT" @@ -6506,7 +6516,7 @@ }, "node_modules/is-set": { "version": "2.0.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-set/-/is-set-2.0.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-set/-/is-set-2.0.3.tgz", "integrity": "sha1-irIJ6kJGCBQTct7W4MsgDvHZ0B0=", "dev": true, "license": "MIT", @@ -6535,7 +6545,7 @@ }, "node_modules/is-string": { "version": "1.1.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-string/-/is-string-1.1.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-string/-/is-string-1.1.1.tgz", "integrity": "sha1-kuo/PVxbbgOcqGd+WsjQfqdzy7k=", "dev": true, "license": "MIT", @@ -6552,7 +6562,7 @@ }, "node_modules/is-symbol": { "version": "1.1.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-symbol/-/is-symbol-1.1.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-symbol/-/is-symbol-1.1.1.tgz", "integrity": "sha1-9HdhJ59TLisFpwJKdQbbvtrNBjQ=", "dev": true, "license": "MIT", @@ -6570,7 +6580,7 @@ }, "node_modules/is-typed-array": { "version": "1.1.15", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-typed-array/-/is-typed-array-1.1.15.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-typed-array/-/is-typed-array-1.1.15.tgz", "integrity": "sha1-S/tKRbYc7oOlpG+6d45OjVnAzgs=", "dev": true, "license": "MIT", @@ -6599,7 +6609,7 @@ }, "node_modules/is-weakref": { "version": "1.1.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-weakref/-/is-weakref-1.1.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-weakref/-/is-weakref-1.1.1.tgz", "integrity": "sha1-7qQwGCvo1kF0vZa/+8RvIb8/kpM=", "dev": true, "license": "MIT", @@ -6615,7 +6625,7 @@ }, "node_modules/is-weakset": { "version": "2.0.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-weakset/-/is-weakset-2.0.4.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/is-weakset/-/is-weakset-2.0.4.tgz", "integrity": "sha1-yfXesLwZBsbW8QJ/KE3fRZJJ2so=", "dev": true, "license": "MIT", @@ -6632,21 +6642,21 @@ }, "node_modules/isarray": { "version": "2.0.5", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/isarray/-/isarray-2.0.5.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/isarray/-/isarray-2.0.5.tgz", "integrity": "sha1-ivHkwSISRMxiRZ+vOJQNTmRKVyM=", "dev": true, "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/isexe/-/isexe-2.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true, "license": "ISC" }, "node_modules/iterator.prototype": { "version": "1.1.5", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/iterator.prototype/-/iterator.prototype-1.1.5.tgz", "integrity": "sha1-EslZop3jLeCqO7u4AfTXdwZtrjk=", "dev": true, "license": "MIT", @@ -6664,7 +6674,7 @@ }, "node_modules/jest-diff": { "version": "27.5.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/jest-diff/-/jest-diff-27.5.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/jest-diff/-/jest-diff-27.5.1.tgz", "integrity": "sha1-oH9QEayeZkPPipWkYrex7PZoDe8=", "license": "MIT", "dependencies": { @@ -6688,7 +6698,7 @@ }, "node_modules/jest-matcher-utils": { "version": "27.5.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", "integrity": "sha1-nAzb2oJFvCLSMxcp0QkTCLQM+Ks=", "license": "MIT", "dependencies": { @@ -6703,13 +6713,13 @@ }, "node_modules/js-tokens": { "version": "4.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/js-tokens/-/js-tokens-4.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=", "license": "MIT" }, "node_modules/js-yaml": { "version": "5.2.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/js-yaml/-/js-yaml-5.2.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/js-yaml/-/js-yaml-5.2.2.tgz", "integrity": "sha1-SXv+Y/Cw2xHHu8XOi8Vo6DbIsIw=", "dev": true, "funding": [ @@ -6732,7 +6742,7 @@ }, "node_modules/jsdom": { "version": "26.1.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/jsdom/-/jsdom-26.1.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/jsdom/-/jsdom-26.1.0.tgz", "integrity": "sha1-q18cHK/AS9h4clSQl06l6L8McrM=", "dev": true, "license": "MIT", @@ -6772,7 +6782,7 @@ }, "node_modules/jsesc": { "version": "3.1.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/jsesc/-/jsesc-3.1.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/jsesc/-/jsesc-3.1.0.tgz", "integrity": "sha1-dNM1ojT2ftGZB/2t+sfM+dQJgl0=", "dev": true, "license": "MIT", @@ -6792,21 +6802,21 @@ }, "node_modules/json-schema-traverse": { "version": "0.4.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=", "dev": true, "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true, "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/json5/-/json5-2.2.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/json5/-/json5-2.2.3.tgz", "integrity": "sha1-eM1vGhm9wStz21rQxh79ZsHikoM=", "dev": true, "license": "MIT", @@ -6835,7 +6845,7 @@ }, "node_modules/keyborg": { "version": "2.14.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/keyborg/-/keyborg-2.14.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/keyborg/-/keyborg-2.14.1.tgz", "integrity": "sha1-BElZ/w5PldBi0eB+LToPvCrRHTA=", "license": "MIT" }, @@ -6851,7 +6861,7 @@ }, "node_modules/levn": { "version": "0.4.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/levn/-/levn-0.4.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/levn/-/levn-0.4.1.tgz", "integrity": "sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=", "dev": true, "license": "MIT", @@ -6865,7 +6875,7 @@ }, "node_modules/locate-path": { "version": "6.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/locate-path/-/locate-path-6.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha1-VTIeswn+u8WcSAHZMackUqaB0oY=", "dev": true, "license": "MIT", @@ -6910,14 +6920,14 @@ }, "node_modules/loupe": { "version": "3.2.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/loupe/-/loupe-3.2.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/loupe/-/loupe-3.2.1.tgz", "integrity": "sha1-AJXPVtxbepp8CP9bGoeW7IrRfnY=", "dev": true, "license": "MIT" }, "node_modules/lru-cache": { "version": "5.1.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lru-cache/-/lru-cache-5.1.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=", "dev": true, "license": "ISC", @@ -6927,7 +6937,7 @@ }, "node_modules/lz-string": { "version": "1.5.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lz-string/-/lz-string-1.5.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/lz-string/-/lz-string-1.5.0.tgz", "integrity": "sha1-watQ93iHtxJiEgG6n9Tjpu0JmUE=", "license": "MIT", "bin": { @@ -6936,7 +6946,7 @@ }, "node_modules/magic-string": { "version": "0.30.21", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/magic-string/-/magic-string-0.30.21.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/magic-string/-/magic-string-0.30.21.tgz", "integrity": "sha1-VnY+wJoPqAkd8nh5/ZTRkHjADZE=", "dev": true, "license": "MIT", @@ -6946,7 +6956,7 @@ }, "node_modules/markdown-table": { "version": "3.0.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/markdown-table/-/markdown-table-3.0.4.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/markdown-table/-/markdown-table-3.0.4.tgz", "integrity": "sha1-/kTW1BD/nW8uoXl6P2CqTStjHCo=", "license": "MIT", "funding": { @@ -6956,7 +6966,7 @@ }, "node_modules/math-intrinsics": { "version": "1.1.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/math-intrinsics/-/math-intrinsics-1.1.0.tgz", "integrity": "sha1-oN10voHiqlwvJ+Zc4oNgXuTit/k=", "dev": true, "license": "MIT", @@ -6966,7 +6976,7 @@ }, "node_modules/mdast-util-find-and-replace": { "version": "3.0.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz", "integrity": "sha1-cKMXTIlOFN9yKr9DvCUMuuRLEd8=", "license": "MIT", "dependencies": { @@ -6982,7 +6992,7 @@ }, "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": { "version": "5.0.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", "integrity": "sha1-RoMSa1ALYXYvLb66zhgG6L4xscg=", "license": "MIT", "engines": { @@ -7018,7 +7028,7 @@ }, "node_modules/mdast-util-gfm": { "version": "3.1.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz", "integrity": "sha1-LN9juSwqMxQGsPsNtMB3wbAzF1E=", "license": "MIT", "dependencies": { @@ -7054,7 +7064,7 @@ }, "node_modules/mdast-util-gfm-footnote": { "version": "2.1.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz", "integrity": "sha1-d3jp2co99yOMwr0/orG/amWxlAM=", "license": "MIT", "dependencies": { @@ -7071,7 +7081,7 @@ }, "node_modules/mdast-util-gfm-strikethrough": { "version": "2.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz", "integrity": "sha1-1E756O0oOsjBFlqw0N/QWMJ2TBY=", "license": "MIT", "dependencies": { @@ -7086,7 +7096,7 @@ }, "node_modules/mdast-util-gfm-table": { "version": "2.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz", "integrity": "sha1-ekNftiI6crCGKzOvvXErba6HjTg=", "license": "MIT", "dependencies": { @@ -7103,7 +7113,7 @@ }, "node_modules/mdast-util-gfm-task-list-item": { "version": "2.0.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz", "integrity": "sha1-5oCV0vikMD7yQJSrZC4QR7mRqTY=", "license": "MIT", "dependencies": { @@ -7137,7 +7147,7 @@ }, "node_modules/mdast-util-mdx-jsx": { "version": "3.2.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz", "integrity": "sha1-/QTGeip0me+5BailxXjd3J/a2g0=", "license": "MIT", "dependencies": { @@ -7161,7 +7171,7 @@ }, "node_modules/mdast-util-mdxjs-esm": { "version": "2.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", "integrity": "sha1-AZz751etYt1VfbNaaV5zFLzJ+pc=", "license": "MIT", "dependencies": { @@ -7193,7 +7203,7 @@ }, "node_modules/mdast-util-to-hast": { "version": "13.2.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", "integrity": "sha1-1/+EykmaV+LAYK5nVIrZUOaJoFM=", "license": "MIT", "dependencies": { @@ -7214,7 +7224,7 @@ }, "node_modules/mdast-util-to-markdown": { "version": "2.1.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz", "integrity": "sha1-+RD/5giX8Eu0t+fuQ0SG92KINhs=", "license": "MIT", "dependencies": { @@ -7235,7 +7245,7 @@ }, "node_modules/mdast-util-to-string": { "version": "4.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", "integrity": "sha1-elEhR1VWoE5+3etnsmSq550xKBQ=", "license": "MIT", "dependencies": { @@ -7248,7 +7258,7 @@ }, "node_modules/merge2": { "version": "1.4.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/merge2/-/merge2-1.4.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/merge2/-/merge2-1.4.1.tgz", "integrity": "sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=", "dev": true, "license": "MIT", @@ -7258,7 +7268,7 @@ }, "node_modules/micromark": { "version": "4.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark/-/micromark-4.0.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark/-/micromark-4.0.2.tgz", "integrity": "sha1-kTlaPhiEoZjmIRbjPJxWjjmTb9s=", "funding": [ { @@ -7293,7 +7303,7 @@ }, "node_modules/micromark-core-commonmark": { "version": "2.0.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", "integrity": "sha1-xpFjDkhQIaaM8o28Kyyifr9njNQ=", "funding": [ { @@ -7327,7 +7337,7 @@ }, "node_modules/micromark-extension-gfm": { "version": "3.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz", "integrity": "sha1-PhM3arld16XP0OKVYN/pmWV7PFs=", "license": "MIT", "dependencies": { @@ -7347,7 +7357,7 @@ }, "node_modules/micromark-extension-gfm-autolink-literal": { "version": "2.1.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz", "integrity": "sha1-Yoau6WhsRGLB41UqnVBf7dzuuTU=", "license": "MIT", "dependencies": { @@ -7363,7 +7373,7 @@ }, "node_modules/micromark-extension-gfm-footnote": { "version": "2.1.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz", "integrity": "sha1-TatW1OOYuYU/b+TvrE/JNh8+B1A=", "license": "MIT", "dependencies": { @@ -7383,7 +7393,7 @@ }, "node_modules/micromark-extension-gfm-strikethrough": { "version": "2.1.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz", "integrity": "sha1-hhBt+LOmkrX2qSKA04eb5r5G2SM=", "license": "MIT", "dependencies": { @@ -7431,7 +7441,7 @@ }, "node_modules/micromark-extension-gfm-task-list-item": { "version": "2.1.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz", "integrity": "sha1-vMNNgFY5gpmQ7BdcPuoSu1t4Hyw=", "license": "MIT", "dependencies": { @@ -7448,7 +7458,7 @@ }, "node_modules/micromark-factory-destination": { "version": "2.0.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz", "integrity": "sha1-j++OD3CB8EdPvdkt61DJkKAmRjk=", "funding": [ { @@ -7469,7 +7479,7 @@ }, "node_modules/micromark-factory-label": { "version": "2.0.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz", "integrity": "sha1-UmfvqX8eUlTvx/ILRZo4yyEFi6E=", "funding": [ { @@ -7491,7 +7501,7 @@ }, "node_modules/micromark-factory-space": { "version": "2.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz", "integrity": "sha1-NtAhLpYrKzEh+FJfx6PHwCnzNPw=", "funding": [ { @@ -7533,7 +7543,7 @@ }, "node_modules/micromark-factory-whitespace": { "version": "2.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz", "integrity": "sha1-BrJrKYPE0nv8xlezPiUTTUhosLE=", "funding": [ { @@ -7555,7 +7565,7 @@ }, "node_modules/micromark-util-character": { "version": "2.1.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-character/-/micromark-util-character-2.1.1.tgz", "integrity": "sha1-L5h4MaQNTFEKwmHomFLE6XA8zaY=", "funding": [ { @@ -7575,7 +7585,7 @@ }, "node_modules/micromark-util-chunked": { "version": "2.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz", "integrity": "sha1-R/vNk0caP8yrhs/wOEf8NVLbEFE=", "funding": [ { @@ -7615,7 +7625,7 @@ }, "node_modules/micromark-util-combine-extensions": { "version": "2.0.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz", "integrity": "sha1-Kg9JCrCL/1zC/V7sbdDKBPibMKk=", "funding": [ { @@ -7635,7 +7645,7 @@ }, "node_modules/micromark-util-decode-numeric-character-reference": { "version": "2.0.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz", "integrity": "sha1-/PFbZgl5OI5vEYzba/fXnXPSb+U=", "funding": [ { @@ -7654,7 +7664,7 @@ }, "node_modules/micromark-util-decode-string": { "version": "2.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz", "integrity": "sha1-bLmVguXScehO/KjmGoB5lNcWHrI=", "funding": [ { @@ -7676,7 +7686,7 @@ }, "node_modules/micromark-util-encode": { "version": "2.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", "integrity": "sha1-DVHRwJVVHPqsNoMmljz1XxX1QLg=", "funding": [ { @@ -7692,7 +7702,7 @@ }, "node_modules/micromark-util-html-tag-name": { "version": "2.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz", "integrity": "sha1-5AQDCWSBmGtBwQZif5j3LU0QuCU=", "funding": [ { @@ -7708,7 +7718,7 @@ }, "node_modules/micromark-util-normalize-identifier": { "version": "2.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz", "integrity": "sha1-ww13sugyrPZSb4vxqke8nJQ4wW0=", "funding": [ { @@ -7727,7 +7737,7 @@ }, "node_modules/micromark-util-resolve-all": { "version": "2.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz", "integrity": "sha1-4aLWLN0jcjCirhGDkCexk4HjHos=", "funding": [ { @@ -7746,7 +7756,7 @@ }, "node_modules/micromark-util-sanitize-uri": { "version": "2.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", "integrity": "sha1-q4l4m4GKWHUrc9a1UjhiG3+qj9c=", "funding": [ { @@ -7767,7 +7777,7 @@ }, "node_modules/micromark-util-subtokenize": { "version": "2.1.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", "integrity": "sha1-2K3lug8xl6HPaimZ+7/mNXoaGe4=", "funding": [ { @@ -7789,7 +7799,7 @@ }, "node_modules/micromark-util-symbol": { "version": "2.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", "integrity": "sha1-5dpJTo6ysHGg0I+zT2zv7GwKGbg=", "funding": [ { @@ -7835,7 +7845,7 @@ }, "node_modules/min-indent": { "version": "1.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/min-indent/-/min-indent-1.0.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha1-pj9oFnOzBXH76LwlaGrnRu76mGk=", "license": "MIT", "engines": { @@ -7844,7 +7854,7 @@ }, "node_modules/minimatch": { "version": "3.1.5", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/minimatch/-/minimatch-3.1.5.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/minimatch/-/minimatch-3.1.5.tgz", "integrity": "sha1-WAyI+NVEXyvWqo88re+g3nn71p4=", "dev": true, "license": "ISC", @@ -7857,7 +7867,7 @@ }, "node_modules/mrmime": { "version": "2.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mrmime/-/mrmime-2.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/mrmime/-/mrmime-2.0.1.tgz", "integrity": "sha1-vD6H95h4U6VMmFDusfEHjNRK3dw=", "dev": true, "license": "MIT", @@ -7867,14 +7877,14 @@ }, "node_modules/ms": { "version": "2.1.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ms/-/ms-2.1.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ms/-/ms-2.1.3.tgz", "integrity": "sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=", "license": "MIT" }, "node_modules/nanoid": { - "version": "3.3.16", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/nanoid/-/nanoid-3.3.16.tgz", - "integrity": "sha1-oE2OxLHxAAnS1TOUeu/kKTc3gWw=", + "version": "3.3.18", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/nanoid/-/nanoid-3.3.18.tgz", + "integrity": "sha1-9mot4Rmf/eD88hyKXxMQaxwIGRM=", "dev": true, "funding": [ { @@ -7892,21 +7902,21 @@ }, "node_modules/natural-compare": { "version": "1.4.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/natural-compare/-/natural-compare-1.4.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true, "license": "MIT" }, "node_modules/natural-compare-lite": { "version": "1.4.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", "integrity": "sha1-F7CVgZiJef3a/gIB6TG6kzyWy7Q=", "dev": true, "license": "MIT" }, "node_modules/node-exports-info": { "version": "1.6.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/node-exports-info/-/node-exports-info-1.6.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/node-exports-info/-/node-exports-info-1.6.2.tgz", "integrity": "sha1-JDoxBWd9Z4HNJuanI1D9kopctG8=", "dev": true, "license": "MIT", @@ -7925,7 +7935,7 @@ }, "node_modules/node-exports-info/node_modules/semver": { "version": "6.3.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-6.3.1.tgz", "integrity": "sha1-VW0u+GiRRuRtzqS/3QlfNDTf/LQ=", "dev": true, "license": "ISC", @@ -7934,9 +7944,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.51", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/node-releases/-/node-releases-2.0.51.tgz", - "integrity": "sha1-zcCEM1d/WzKtAWlEgXJuIu61Su8=", + "version": "2.0.53", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/node-releases/-/node-releases-2.0.53.tgz", + "integrity": "sha1-D+Wtink14HUXL1dOVvDCDwf6Qa8=", "dev": true, "license": "MIT", "engines": { @@ -7964,7 +7974,7 @@ }, "node_modules/object-assign": { "version": "4.1.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object-assign/-/object-assign-4.1.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "dev": true, "license": "MIT", @@ -7974,7 +7984,7 @@ }, "node_modules/object-inspect": { "version": "1.13.4", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object-inspect/-/object-inspect-1.13.4.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object-inspect/-/object-inspect-1.13.4.tgz", "integrity": "sha1-g3UmXiG8IND6WCwi4bE0hdbgAhM=", "dev": true, "license": "MIT", @@ -7987,7 +7997,7 @@ }, "node_modules/object-keys": { "version": "1.1.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object-keys/-/object-keys-1.1.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha1-HEfyct8nfzsdrwYWd9nILiMixg4=", "dev": true, "license": "MIT", @@ -7997,7 +8007,7 @@ }, "node_modules/object.assign": { "version": "4.1.7", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object.assign/-/object.assign-4.1.7.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object.assign/-/object.assign-4.1.7.tgz", "integrity": "sha1-jBTKGkJMalYbC7KiL2b1BJqUXT0=", "dev": true, "license": "MIT", @@ -8018,7 +8028,7 @@ }, "node_modules/object.entries": { "version": "1.1.9", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object.entries/-/object.entries-1.1.9.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object.entries/-/object.entries-1.1.9.tgz", "integrity": "sha1-5HcKahREr7Yb05+YQBi1vt4l+LM=", "dev": true, "license": "MIT", @@ -8034,7 +8044,7 @@ }, "node_modules/object.fromentries": { "version": "2.0.8", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object.fromentries/-/object.fromentries-2.0.8.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/object.fromentries/-/object.fromentries-2.0.8.tgz", "integrity": "sha1-9xldipuXvZXLwZmeqTns0aKwDGU=", "dev": true, "license": "MIT", @@ -8072,7 +8082,7 @@ }, "node_modules/once": { "version": "1.4.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/once/-/once-1.4.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "dev": true, "license": "ISC", @@ -8082,7 +8092,7 @@ }, "node_modules/optionator": { "version": "0.9.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/optionator/-/optionator-0.9.4.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/optionator/-/optionator-0.9.4.tgz", "integrity": "sha1-fqHBpdkddk+yghOciP4R4YKjpzQ=", "dev": true, "license": "MIT", @@ -8100,7 +8110,7 @@ }, "node_modules/own-keys": { "version": "1.0.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/own-keys/-/own-keys-1.0.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/own-keys/-/own-keys-1.0.2.tgz", "integrity": "sha1-MUSOwfeB7LFEf29qoNZTQiKvWd4=", "dev": true, "license": "MIT", @@ -8119,7 +8129,7 @@ }, "node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/p-limit/-/p-limit-3.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha1-4drMvnjQ0TiMoYxk/qOOPlfjcGs=", "dev": true, "license": "MIT", @@ -8135,7 +8145,7 @@ }, "node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/p-locate/-/p-locate-5.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha1-g8gxXGeFAF470CGDlBHJ4RDm2DQ=", "dev": true, "license": "MIT", @@ -8151,7 +8161,7 @@ }, "node_modules/parent-module": { "version": "1.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/parent-module/-/parent-module-1.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=", "dev": true, "license": "MIT", @@ -8183,13 +8193,13 @@ }, "node_modules/parse-entities/node_modules/@types/unist": { "version": "2.0.11", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/unist/-/unist-2.0.11.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/@types/unist/-/unist-2.0.11.tgz", "integrity": "sha1-Ea9XsSfjJId3SEH3pOVOqxZtA8Q=", "license": "MIT" }, "node_modules/parse5": { "version": "7.3.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/parse5/-/parse5-7.3.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/parse5/-/parse5-7.3.0.tgz", "integrity": "sha1-1+Ik+nI5nHoXUJn0X8KtAksF7AU=", "license": "MIT", "dependencies": { @@ -8201,7 +8211,7 @@ }, "node_modules/path-exists": { "version": "4.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-exists/-/path-exists-4.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=", "dev": true, "license": "MIT", @@ -8211,7 +8221,7 @@ }, "node_modules/path-is-absolute": { "version": "1.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true, "license": "MIT", @@ -8221,7 +8231,7 @@ }, "node_modules/path-key": { "version": "3.1.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-key/-/path-key-3.1.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-key/-/path-key-3.1.1.tgz", "integrity": "sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=", "dev": true, "license": "MIT", @@ -8231,14 +8241,14 @@ }, "node_modules/path-parse": { "version": "1.0.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-parse/-/path-parse-1.0.7.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=", "dev": true, "license": "MIT" }, "node_modules/path-type": { "version": "4.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-type/-/path-type-4.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/path-type/-/path-type-4.0.0.tgz", "integrity": "sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=", "dev": true, "license": "MIT", @@ -8248,14 +8258,14 @@ }, "node_modules/pathe": { "version": "2.0.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/pathe/-/pathe-2.0.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/pathe/-/pathe-2.0.3.tgz", "integrity": "sha1-PsvsVUIWhbcKnahyss/z4cvtFxY=", "dev": true, "license": "MIT" }, "node_modules/pathval": { "version": "2.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/pathval/-/pathval-2.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/pathval/-/pathval-2.0.1.tgz", "integrity": "sha1-iFXFooma8HLWrAXRHkYEWtDcYF0=", "dev": true, "license": "MIT", @@ -8265,13 +8275,13 @@ }, "node_modules/picocolors": { "version": "1.1.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/picocolors/-/picocolors-1.1.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/picocolors/-/picocolors-1.1.1.tgz", "integrity": "sha1-PTIa8+q5ObCDyPkpodEs2oHCa2s=", "license": "ISC" }, "node_modules/picomatch": { "version": "4.0.4", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/picomatch/-/picomatch-4.0.4.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/picomatch/-/picomatch-4.0.4.tgz", "integrity": "sha1-/W9eAKFDCG4HTf/kySS4+yk7BYk=", "dev": true, "license": "MIT", @@ -8294,7 +8304,7 @@ }, "node_modules/postcss": { "version": "8.5.18", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/postcss/-/postcss-8.5.18.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/postcss/-/postcss-8.5.18.tgz", "integrity": "sha1-hxflozo7Ff6KU40kMaHhu7+wdhQ=", "dev": true, "funding": [ @@ -8333,7 +8343,7 @@ }, "node_modules/pretty-format": { "version": "27.5.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/pretty-format/-/pretty-format-27.5.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/pretty-format/-/pretty-format-27.5.1.tgz", "integrity": "sha1-IYGHn96lGnpYUfs52SD6pj8B2I4=", "license": "MIT", "dependencies": { @@ -8347,7 +8357,7 @@ }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ansi-styles/-/ansi-styles-5.2.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha1-B0SWkK1Fd30ZJKwquy/IiV26g2s=", "license": "MIT", "engines": { @@ -8359,7 +8369,7 @@ }, "node_modules/prismjs": { "version": "1.30.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/prismjs/-/prismjs-1.30.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/prismjs/-/prismjs-1.30.0.tgz", "integrity": "sha1-2XCZadnU4WQD9vNIxjVTsZ8Jdak=", "license": "MIT", "engines": { @@ -8368,7 +8378,7 @@ }, "node_modules/prop-types": { "version": "15.8.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/prop-types/-/prop-types-15.8.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha1-Z9h78aaU9IQ1zzMsJK8QIUoxQLU=", "dev": true, "license": "MIT", @@ -8380,14 +8390,14 @@ }, "node_modules/prop-types/node_modules/react-is": { "version": "16.13.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-is/-/react-is-16.13.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-is/-/react-is-16.13.1.tgz", "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=", "dev": true, "license": "MIT" }, "node_modules/property-information": { "version": "7.2.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/property-information/-/property-information-7.2.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/property-information/-/property-information-7.2.0.tgz", "integrity": "sha1-CAmzQmTplcC/zTInAooeNSEK+Ao=", "license": "MIT", "funding": { @@ -8397,7 +8407,7 @@ }, "node_modules/punycode": { "version": "2.3.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/punycode/-/punycode-2.3.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/punycode/-/punycode-2.3.1.tgz", "integrity": "sha1-AnQi4vrsCyXhVJw+G9gwm5EztuU=", "dev": true, "license": "MIT", @@ -8407,7 +8417,7 @@ }, "node_modules/queue-microtask": { "version": "1.2.3", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/queue-microtask/-/queue-microtask-1.2.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha1-SSkii7xyTfrEPg77BYyve2z7YkM=", "dev": true, "funding": [ @@ -8428,7 +8438,7 @@ }, "node_modules/react": { "version": "18.3.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react/-/react-18.3.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react/-/react-18.3.1.tgz", "integrity": "sha1-SauJIAnFOTNiW9FrJTP8dUyrKJE=", "license": "MIT", "dependencies": { @@ -8440,7 +8450,7 @@ }, "node_modules/react-dom": { "version": "18.3.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-dom/-/react-dom-18.3.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-dom/-/react-dom-18.3.1.tgz", "integrity": "sha1-wiZdeVEbV9R5s90/36UVNklMXLQ=", "license": "MIT", "dependencies": { @@ -8453,7 +8463,7 @@ }, "node_modules/react-dom/node_modules/scheduler": { "version": "0.23.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/scheduler/-/scheduler-0.23.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/scheduler/-/scheduler-0.23.2.tgz", "integrity": "sha1-QUumSjsoKJLpRM8hCOzAeNEVzcM=", "license": "MIT", "dependencies": { @@ -8462,13 +8472,13 @@ }, "node_modules/react-is": { "version": "17.0.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-is/-/react-is-17.0.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-is/-/react-is-17.0.2.tgz", "integrity": "sha1-5pHUqOnHiTZWVVOas3J2Kw77VPA=", "license": "MIT" }, "node_modules/react-markdown": { "version": "10.1.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-markdown/-/react-markdown-10.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-markdown/-/react-markdown-10.1.0.tgz", "integrity": "sha1-4ivCD63bwHYFwVKEJVZTwPO61co=", "license": "MIT", "dependencies": { @@ -8495,7 +8505,7 @@ }, "node_modules/react-redux": { "version": "9.3.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-redux/-/react-redux-9.3.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-redux/-/react-redux-9.3.0.tgz", "integrity": "sha1-owETu22VwKcV1U3aQwjUUPymzgk=", "license": "MIT", "dependencies": { @@ -8518,7 +8528,7 @@ }, "node_modules/react-refresh": { "version": "0.17.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-refresh/-/react-refresh-0.17.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-refresh/-/react-refresh-0.17.0.tgz", "integrity": "sha1-t+V5w2V/I9BOzL5K0uWKjtUeflM=", "dev": true, "license": "MIT", @@ -8528,7 +8538,7 @@ }, "node_modules/react-router": { "version": "7.18.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-router/-/react-router-7.18.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-router/-/react-router-7.18.2.tgz", "integrity": "sha1-p2xGzp5e2s1PUSidWnH3EwXbkVI=", "license": "MIT", "dependencies": { @@ -8550,7 +8560,7 @@ }, "node_modules/react-router-dom": { "version": "7.18.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-router-dom/-/react-router-dom-7.18.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/react-router-dom/-/react-router-dom-7.18.2.tgz", "integrity": "sha1-AL8dDOi/F6bYMZSarNpyphIOSSY=", "license": "MIT", "dependencies": { @@ -8566,7 +8576,7 @@ }, "node_modules/redent": { "version": "3.0.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/redent/-/redent-3.0.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/redent/-/redent-3.0.0.tgz", "integrity": "sha1-5Ve3mYMWu1PJ8fVvpiY1LGljBZ8=", "license": "MIT", "dependencies": { @@ -8579,7 +8589,7 @@ }, "node_modules/redux": { "version": "5.0.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/redux/-/redux-5.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/redux/-/redux-5.0.1.tgz", "integrity": "sha1-l/omiBzldGUAElWF1WQsd7bpRHs=", "license": "MIT" }, @@ -8638,7 +8648,7 @@ }, "node_modules/rehype-parse": { "version": "9.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rehype-parse/-/rehype-parse-9.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rehype-parse/-/rehype-parse-9.0.1.tgz", "integrity": "sha1-mZO9oSmsxkxBep02VKe+OLKpTCA=", "license": "MIT", "dependencies": { @@ -8653,7 +8663,7 @@ }, "node_modules/rehype-prism": { "version": "2.3.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rehype-prism/-/rehype-prism-2.3.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rehype-prism/-/rehype-prism-2.3.3.tgz", "integrity": "sha1-RWGWg6uEaXBZCyz1Prz0cpF3+Zo=", "license": "MIT", "dependencies": { @@ -8670,7 +8680,7 @@ }, "node_modules/remark-gfm": { "version": "4.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/remark-gfm/-/remark-gfm-4.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/remark-gfm/-/remark-gfm-4.0.1.tgz", "integrity": "sha1-MyJ7KnQ5dnDTV78FwJjq+FE/DWs=", "license": "MIT", "dependencies": { @@ -8721,7 +8731,7 @@ }, "node_modules/remark-stringify": { "version": "11.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/remark-stringify/-/remark-stringify-11.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/remark-stringify/-/remark-stringify-11.0.0.tgz", "integrity": "sha1-TFsB3XEcJp3xqq4RdD634udjb9M=", "license": "MIT", "dependencies": { @@ -8736,13 +8746,13 @@ }, "node_modules/reselect": { "version": "5.2.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/reselect/-/reselect-5.2.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/reselect/-/reselect-5.2.0.tgz", "integrity": "sha1-84DvdmQzLSbqBsHLoEvbvcqpVfE=", "license": "MIT" }, "node_modules/resolve": { "version": "2.0.0-next.7", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/resolve/-/resolve-2.0.0-next.7.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/resolve/-/resolve-2.0.0-next.7.tgz", "integrity": "sha1-ujsDXUse58UiQm7uc8q8sP1VFd0=", "dev": true, "license": "MIT", @@ -8766,7 +8776,7 @@ }, "node_modules/resolve-from": { "version": "4.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/resolve-from/-/resolve-from-4.0.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=", "dev": true, "license": "MIT", @@ -8776,7 +8786,7 @@ }, "node_modules/reusify": { "version": "1.1.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/reusify/-/reusify-1.1.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/reusify/-/reusify-1.1.0.tgz", "integrity": "sha1-D+E7lSLhRz9RtVjueW4I8R+bSJ8=", "dev": true, "license": "MIT", @@ -8803,9 +8813,9 @@ } }, "node_modules/rollup": { - "version": "4.62.3", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rollup/-/rollup-4.62.3.tgz", - "integrity": "sha1-A+6Z4rWwdE3Zm+bUI4svzUCHtPY=", + "version": "4.62.4", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rollup/-/rollup-4.62.4.tgz", + "integrity": "sha1-ltLmIHDwsKxjQk7dDJOn+4ZO8Gk=", "dev": true, "license": "MIT", "dependencies": { @@ -8819,37 +8829,38 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.62.3", - "@rollup/rollup-android-arm64": "4.62.3", - "@rollup/rollup-darwin-arm64": "4.62.3", - "@rollup/rollup-darwin-x64": "4.62.3", - "@rollup/rollup-freebsd-arm64": "4.62.3", - "@rollup/rollup-freebsd-x64": "4.62.3", - "@rollup/rollup-linux-arm-gnueabihf": "4.62.3", - "@rollup/rollup-linux-arm-musleabihf": "4.62.3", - "@rollup/rollup-linux-arm64-gnu": "4.62.3", - "@rollup/rollup-linux-arm64-musl": "4.62.3", - "@rollup/rollup-linux-loong64-gnu": "4.62.3", - "@rollup/rollup-linux-loong64-musl": "4.62.3", - "@rollup/rollup-linux-ppc64-gnu": "4.62.3", - "@rollup/rollup-linux-ppc64-musl": "4.62.3", - "@rollup/rollup-linux-riscv64-gnu": "4.62.3", - "@rollup/rollup-linux-riscv64-musl": "4.62.3", - "@rollup/rollup-linux-s390x-gnu": "4.62.3", - "@rollup/rollup-linux-x64-gnu": "4.62.3", - "@rollup/rollup-linux-x64-musl": "4.62.3", - "@rollup/rollup-openbsd-x64": "4.62.3", - "@rollup/rollup-openharmony-arm64": "4.62.3", - "@rollup/rollup-win32-arm64-msvc": "4.62.3", - "@rollup/rollup-win32-ia32-msvc": "4.62.3", - "@rollup/rollup-win32-x64-gnu": "4.62.3", - "@rollup/rollup-win32-x64-msvc": "4.62.3", + "@napi-rs/lzma-linux-x64-gnu": "1.5.1", + "@rollup/rollup-android-arm-eabi": "4.62.4", + "@rollup/rollup-android-arm64": "4.62.4", + "@rollup/rollup-darwin-arm64": "4.62.4", + "@rollup/rollup-darwin-x64": "4.62.4", + "@rollup/rollup-freebsd-arm64": "4.62.4", + "@rollup/rollup-freebsd-x64": "4.62.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.62.4", + "@rollup/rollup-linux-arm-musleabihf": "4.62.4", + "@rollup/rollup-linux-arm64-gnu": "4.62.4", + "@rollup/rollup-linux-arm64-musl": "4.62.4", + "@rollup/rollup-linux-loong64-gnu": "4.62.4", + "@rollup/rollup-linux-loong64-musl": "4.62.4", + "@rollup/rollup-linux-ppc64-gnu": "4.62.4", + "@rollup/rollup-linux-ppc64-musl": "4.62.4", + "@rollup/rollup-linux-riscv64-gnu": "4.62.4", + "@rollup/rollup-linux-riscv64-musl": "4.62.4", + "@rollup/rollup-linux-s390x-gnu": "4.62.4", + "@rollup/rollup-linux-x64-gnu": "4.62.4", + "@rollup/rollup-linux-x64-musl": "4.62.4", + "@rollup/rollup-openbsd-x64": "4.62.4", + "@rollup/rollup-openharmony-arm64": "4.62.4", + "@rollup/rollup-win32-arm64-msvc": "4.62.4", + "@rollup/rollup-win32-ia32-msvc": "4.62.4", + "@rollup/rollup-win32-x64-gnu": "4.62.4", + "@rollup/rollup-win32-x64-msvc": "4.62.4", "fsevents": "~2.3.2" } }, "node_modules/rrweb-cssom": { "version": "0.8.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz", "integrity": "sha1-MCHRtDUvvzthSq7tC8DVc5q+C8I=", "dev": true, "license": "MIT" @@ -8865,7 +8876,7 @@ }, "node_modules/run-parallel": { "version": "1.2.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/run-parallel/-/run-parallel-1.2.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=", "dev": true, "funding": [ @@ -8909,7 +8920,7 @@ }, "node_modules/safe-push-apply": { "version": "1.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/safe-push-apply/-/safe-push-apply-1.0.0.tgz", "integrity": "sha1-AYUOmBwWAtOYyFCB82Dk5tA9J/U=", "dev": true, "license": "MIT", @@ -8951,7 +8962,7 @@ }, "node_modules/saxes": { "version": "6.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/saxes/-/saxes-6.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/saxes/-/saxes-6.0.0.tgz", "integrity": "sha1-/ltKR2jfTxSiAbG6amXB89mYjMU=", "dev": true, "license": "ISC", @@ -8964,14 +8975,14 @@ }, "node_modules/scheduler": { "version": "0.27.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/scheduler/-/scheduler-0.27.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/scheduler/-/scheduler-0.27.0.tgz", "integrity": "sha1-DE74LWfR5cHjWej8dtOofwRf5b0=", "license": "MIT", "peer": true }, "node_modules/semver": { "version": "7.8.5", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-7.8.5.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/semver/-/semver-7.8.5.tgz", "integrity": "sha1-ObZGA33VDBT7RR5+TKxY7YuGP2k=", "dev": true, "license": "ISC", @@ -8990,7 +9001,7 @@ }, "node_modules/set-function-length": { "version": "1.2.2", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/set-function-length/-/set-function-length-1.2.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha1-qscjFBmOrtl1z3eyw7a4gGleVEk=", "dev": true, "license": "MIT", @@ -9008,7 +9019,7 @@ }, "node_modules/set-function-name": { "version": "2.0.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/set-function-name/-/set-function-name-2.0.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/set-function-name/-/set-function-name-2.0.2.tgz", "integrity": "sha1-FqcFxaDcL15jjKltiozU4cK5CYU=", "dev": true, "license": "MIT", @@ -9024,7 +9035,7 @@ }, "node_modules/set-proto": { "version": "1.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/set-proto/-/set-proto-1.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/set-proto/-/set-proto-1.0.0.tgz", "integrity": "sha1-B2Dbz/MLLX6AH9bhmYPlbaM3Vl4=", "dev": true, "license": "MIT", @@ -9039,7 +9050,7 @@ }, "node_modules/shebang-command": { "version": "2.0.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/shebang-command/-/shebang-command-2.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=", "dev": true, "license": "MIT", @@ -9052,7 +9063,7 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/shebang-regex/-/shebang-regex-3.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=", "dev": true, "license": "MIT", @@ -9099,7 +9110,7 @@ }, "node_modules/side-channel-map": { "version": "1.0.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/side-channel-map/-/side-channel-map-1.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/side-channel-map/-/side-channel-map-1.0.1.tgz", "integrity": "sha1-1rtrN5Asb+9RdOX1M/q0xzKib0I=", "dev": true, "license": "MIT", @@ -9118,7 +9129,7 @@ }, "node_modules/side-channel-weakmap": { "version": "1.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", "integrity": "sha1-Ed2hnVNo5Azp7CvcH7DsvAeQ7Oo=", "dev": true, "license": "MIT", @@ -9145,7 +9156,7 @@ }, "node_modules/sirv": { "version": "3.0.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/sirv/-/sirv-3.0.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/sirv/-/sirv-3.0.2.tgz", "integrity": "sha1-93X8zxDiKkCDJoSEjWNjRvQc2XA=", "dev": true, "license": "MIT", @@ -9160,7 +9171,7 @@ }, "node_modules/slash": { "version": "3.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/slash/-/slash-3.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/slash/-/slash-3.0.0.tgz", "integrity": "sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=", "dev": true, "license": "MIT", @@ -9170,7 +9181,7 @@ }, "node_modules/source-map-js": { "version": "1.2.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/source-map-js/-/source-map-js-1.2.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha1-HOVlD93YerwJnto33P8CTCZnrkY=", "dev": true, "license": "BSD-3-Clause", @@ -9180,7 +9191,7 @@ }, "node_modules/space-separated-tokens": { "version": "2.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", "integrity": "sha1-Hs2dI1CjhEVyw/SjErzrAYNIhZ8=", "license": "MIT", "funding": { @@ -9197,14 +9208,14 @@ }, "node_modules/std-env": { "version": "3.10.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/std-env/-/std-env-3.10.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/std-env/-/std-env-3.10.0.tgz", "integrity": "sha1-2BCyfjoHMEeyteQANIgfXqb5yDs=", "dev": true, "license": "MIT" }, "node_modules/stop-iteration-iterator": { "version": "1.1.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", "integrity": "sha1-9IH/cKVI9hJNAxLDqhTL+nqlQq0=", "dev": true, "license": "MIT", @@ -9246,7 +9257,7 @@ }, "node_modules/string.prototype.repeat": { "version": "1.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", "integrity": "sha1-6Qhy7gMIspQ1qiYnX24bdi2u4Bo=", "dev": true, "license": "MIT", @@ -9257,7 +9268,7 @@ }, "node_modules/string.prototype.trim": { "version": "1.2.11", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/string.prototype.trim/-/string.prototype.trim-1.2.11.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/string.prototype.trim/-/string.prototype.trim-1.2.11.tgz", "integrity": "sha1-5r0ZzaOYXQWkLdox89300100MOM=", "dev": true, "license": "MIT", @@ -9299,7 +9310,7 @@ }, "node_modules/string.prototype.trimstart": { "version": "1.0.8", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", "integrity": "sha1-fug03ajHwX7/MRhHK7Nb/tqjTd4=", "dev": true, "license": "MIT", @@ -9317,7 +9328,7 @@ }, "node_modules/stringify-entities": { "version": "4.0.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/stringify-entities/-/stringify-entities-4.0.4.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/stringify-entities/-/stringify-entities-4.0.4.tgz", "integrity": "sha1-s7ee9fJ3zErHPK6wI2xbqTmzpPM=", "license": "MIT", "dependencies": { @@ -9331,7 +9342,7 @@ }, "node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/strip-ansi/-/strip-ansi-6.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", "dev": true, "license": "MIT", @@ -9344,7 +9355,7 @@ }, "node_modules/strip-indent": { "version": "3.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/strip-indent/-/strip-indent-3.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha1-wy4c7pQLazQyx3G8LFS8znPNMAE=", "license": "MIT", "dependencies": { @@ -9356,7 +9367,7 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY=", "dev": true, "license": "MIT", @@ -9369,7 +9380,7 @@ }, "node_modules/strip-literal": { "version": "3.1.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/strip-literal/-/strip-literal-3.1.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/strip-literal/-/strip-literal-3.1.0.tgz", "integrity": "sha1-IiskPdLUnAvNDeiQatvYQXcZYDI=", "dev": true, "license": "MIT", @@ -9389,7 +9400,7 @@ }, "node_modules/style-to-js": { "version": "1.1.21", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/style-to-js/-/style-to-js-1.1.21.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/style-to-js/-/style-to-js-1.1.21.tgz", "integrity": "sha1-KQiUEYf4V+eeKOnNeACLmgs+Do0=", "license": "MIT", "dependencies": { @@ -9398,7 +9409,7 @@ }, "node_modules/style-to-object": { "version": "1.0.14", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/style-to-object/-/style-to-object-1.0.14.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/style-to-object/-/style-to-object-1.0.14.tgz", "integrity": "sha1-HSLw5yZruMbYyuXK9OxPAF4I9hE=", "license": "MIT", "dependencies": { @@ -9413,7 +9424,7 @@ }, "node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/supports-color/-/supports-color-7.2.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", "license": "MIT", "dependencies": { @@ -9438,14 +9449,14 @@ }, "node_modules/symbol-tree": { "version": "3.2.4", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/symbol-tree/-/symbol-tree-3.2.4.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha1-QwY30ki6d+B4iDlR+5qg7tfGP6I=", "dev": true, "license": "MIT" }, "node_modules/tabster": { "version": "8.8.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tabster/-/tabster-8.8.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tabster/-/tabster-8.8.0.tgz", "integrity": "sha1-cE7yrsD91vQss1DXgfJIh32hmWw=", "license": "MIT", "dependencies": { @@ -9455,7 +9466,7 @@ }, "node_modules/text-table": { "version": "0.2.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/text-table/-/text-table-0.2.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/text-table/-/text-table-0.2.0.tgz", "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true, "license": "MIT" @@ -9493,7 +9504,7 @@ }, "node_modules/tinypool": { "version": "1.1.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tinypool/-/tinypool-1.1.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tinypool/-/tinypool-1.1.1.tgz", "integrity": "sha1-BZ8tBCvTdWf7wBfT1Ca90qJhJZE=", "dev": true, "license": "MIT", @@ -9503,7 +9514,7 @@ }, "node_modules/tinyrainbow": { "version": "2.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tinyrainbow/-/tinyrainbow-2.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tinyrainbow/-/tinyrainbow-2.0.0.tgz", "integrity": "sha1-lQmyFiQ2MV6A4+7g/M5EdNJEQpQ=", "dev": true, "license": "MIT", @@ -9523,7 +9534,7 @@ }, "node_modules/tldts": { "version": "6.1.86", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tldts/-/tldts-6.1.86.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tldts/-/tldts-6.1.86.tgz", "integrity": "sha1-CH4FVbMblyXuSMp+d+3FYRXNgvc=", "dev": true, "license": "MIT", @@ -9536,14 +9547,14 @@ }, "node_modules/tldts-core": { "version": "6.1.86", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tldts-core/-/tldts-core-6.1.86.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tldts-core/-/tldts-core-6.1.86.tgz", "integrity": "sha1-qT5u2dUFy1TFQs5D/rFMc5EyZdg=", "dev": true, "license": "MIT" }, "node_modules/to-regex-range": { "version": "5.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/to-regex-range/-/to-regex-range-5.0.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=", "dev": true, "license": "MIT", @@ -9566,7 +9577,7 @@ }, "node_modules/tough-cookie": { "version": "5.1.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tough-cookie/-/tough-cookie-5.1.2.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tough-cookie/-/tough-cookie-5.1.2.tgz", "integrity": "sha1-Ztd0tKHZ4S3HUIlyWvOsdewxvtc=", "dev": true, "license": "BSD-3-Clause", @@ -9579,7 +9590,7 @@ }, "node_modules/tr46": { "version": "5.1.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tr46/-/tr46-5.1.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tr46/-/tr46-5.1.1.tgz", "integrity": "sha1-lq6GfN24/bZKScwwWajUKLzyOMo=", "dev": true, "license": "MIT", @@ -9592,7 +9603,7 @@ }, "node_modules/trim-lines": { "version": "3.0.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/trim-lines/-/trim-lines-3.0.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/trim-lines/-/trim-lines-3.0.1.tgz", "integrity": "sha1-2ALjMqB9+GHEiALAQyEBexvYczg=", "license": "MIT", "funding": { @@ -9612,13 +9623,13 @@ }, "node_modules/tslib": { "version": "2.8.1", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tslib/-/tslib-2.8.1.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tslib/-/tslib-2.8.1.tgz", "integrity": "sha1-YS7+TtI11Wfoq6Xypfq3AoCt6D8=", "license": "0BSD" }, "node_modules/tsutils": { "version": "3.21.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tsutils/-/tsutils-3.21.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha1-tIcX05TOpsHglpg+7Vjp1hcVtiM=", "dev": true, "license": "MIT", @@ -9654,7 +9665,7 @@ }, "node_modules/type-fest": { "version": "0.20.2", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/type-fest/-/type-fest-0.20.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ=", "dev": true, "license": "(MIT OR CC0-1.0)", @@ -9667,7 +9678,7 @@ }, "node_modules/typed-array-buffer": { "version": "1.0.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", "integrity": "sha1-pyOVRQpIaewDP9VJNxtHrzou5TY=", "dev": true, "license": "MIT", @@ -9682,7 +9693,7 @@ }, "node_modules/typed-array-byte-length": { "version": "1.0.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", "integrity": "sha1-hAegT314aE89JSqhoUPSt3tBYM4=", "dev": true, "license": "MIT", @@ -9724,7 +9735,7 @@ }, "node_modules/typed-array-length": { "version": "1.0.8", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/typed-array-length/-/typed-array-length-1.0.8.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/typed-array-length/-/typed-array-length-1.0.8.tgz", "integrity": "sha1-C3Dpgsnp2v4t721kWP9LPy0rbXA=", "dev": true, "license": "MIT", @@ -9745,7 +9756,7 @@ }, "node_modules/typescript": { "version": "5.9.3", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/typescript/-/typescript-5.9.3.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/typescript/-/typescript-5.9.3.tgz", "integrity": "sha1-W09Z4VMQqxeiFvXWz1PuR27eZw8=", "dev": true, "license": "Apache-2.0", @@ -9778,14 +9789,14 @@ }, "node_modules/undici-types": { "version": "6.21.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/undici-types/-/undici-types-6.21.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/undici-types/-/undici-types-6.21.0.tgz", "integrity": "sha1-aR0ArzkJvpOn+qE75hs6W1DvEss=", "dev": true, "license": "MIT" }, "node_modules/unified": { "version": "11.0.5", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unified/-/unified-11.0.5.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unified/-/unified-11.0.5.tgz", "integrity": "sha1-9mZ3YQpcCp7pDKsrjU1mA3Am2eE=", "license": "MIT", "dependencies": { @@ -9804,7 +9815,7 @@ }, "node_modules/unist-util-is": { "version": "6.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-is/-/unist-util-is-6.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-is/-/unist-util-is-6.0.1.tgz", "integrity": "sha1-0KP4by3Q23rNfYwkeAgLXGf5xqk=", "license": "MIT", "dependencies": { @@ -9817,7 +9828,7 @@ }, "node_modules/unist-util-position": { "version": "5.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-position/-/unist-util-position-5.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-position/-/unist-util-position-5.0.0.tgz", "integrity": "sha1-Z48gq1yhIHqX1+qKOINzyc+Ja+Q=", "license": "MIT", "dependencies": { @@ -9830,7 +9841,7 @@ }, "node_modules/unist-util-select": { "version": "5.1.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-select/-/unist-util-select-5.1.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-select/-/unist-util-select-5.1.0.tgz", "integrity": "sha1-ktsQ3w0D0uWY+deCv8bUuZsgV+s=", "license": "MIT", "dependencies": { @@ -9847,7 +9858,7 @@ }, "node_modules/unist-util-stringify-position": { "version": "4.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha1-RJxuIaiA4IVb9aq63rOnQDFKusI=", "license": "MIT", "dependencies": { @@ -9860,7 +9871,7 @@ }, "node_modules/unist-util-visit": { "version": "5.1.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/unist-util-visit/-/unist-util-visit-5.1.0.tgz", "integrity": "sha1-mioosKp2oV4NpwoIpYY6LwYOJGg=", "license": "MIT", "dependencies": { @@ -9888,9 +9899,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.2.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", - "integrity": "sha1-ZNdttYcTE2rL60xJEUNmzGzC6A0=", + "version": "1.3.1", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/update-browserslist-db/-/update-browserslist-db-1.3.1.tgz", + "integrity": "sha1-pxwo3SL1BUgdvEaJCHsY2TPpCv0=", "dev": true, "funding": [ { @@ -9920,7 +9931,7 @@ }, "node_modules/uri-js": { "version": "4.4.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/uri-js/-/uri-js-4.4.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=", "dev": true, "license": "BSD-2-Clause", @@ -9953,7 +9964,7 @@ }, "node_modules/vfile-location": { "version": "5.0.3", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/vfile-location/-/vfile-location-5.0.3.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/vfile-location/-/vfile-location-5.0.3.tgz", "integrity": "sha1-y56s0g8rZCbRlFHg6vo9CoRiJcM=", "license": "MIT", "dependencies": { @@ -9981,7 +9992,7 @@ }, "node_modules/vite": { "version": "7.3.5", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/vite/-/vite-7.3.5.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/vite/-/vite-7.3.5.tgz", "integrity": "sha1-kMLQt7lKIk5+fc8i0pEv8LUpEWU=", "dev": true, "license": "MIT", @@ -10152,7 +10163,7 @@ }, "node_modules/w3c-xmlserializer": { "version": "5.0.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", + "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", "integrity": "sha1-+SW6JoVRWFlNkHMTzt0UdsWWf2w=", "dev": true, "license": "MIT", @@ -10165,7 +10176,7 @@ }, "node_modules/web-namespaces": { "version": "2.0.1", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/web-namespaces/-/web-namespaces-2.0.1.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/web-namespaces/-/web-namespaces-2.0.1.tgz", "integrity": "sha1-EBD/fGUOzLJZLOvur5obJT/UBpI=", "license": "MIT", "funding": { @@ -10175,13 +10186,13 @@ }, "node_modules/web-vitals": { "version": "2.1.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/web-vitals/-/web-vitals-2.1.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/web-vitals/-/web-vitals-2.1.4.tgz", "integrity": "sha1-dlYxdaR1peg1Jk03NwT53ecYKQw=", "license": "Apache-2.0" }, "node_modules/webidl-conversions": { "version": "7.0.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/webidl-conversions/-/webidl-conversions-7.0.0.tgz", "integrity": "sha1-JWtOGIK+feu/AdBfCqIDl3jqCAo=", "dev": true, "license": "BSD-2-Clause", @@ -10191,7 +10202,7 @@ }, "node_modules/whatwg-encoding": { "version": "3.1.1", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", "integrity": "sha1-0PTvdpkF1CbhaI8+NDgambYLduU=", "deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation", "dev": true, @@ -10205,7 +10216,7 @@ }, "node_modules/whatwg-mimetype": { "version": "4.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", "integrity": "sha1-vBv5SphdxQOI1UqSWKxAXDyi/Ao=", "dev": true, "license": "MIT", @@ -10215,7 +10226,7 @@ }, "node_modules/whatwg-url": { "version": "14.2.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/whatwg-url/-/whatwg-url-14.2.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/whatwg-url/-/whatwg-url-14.2.0.tgz", "integrity": "sha1-TuAtXXJRVdrgBPaulcc+fvXZVmM=", "dev": true, "license": "MIT", @@ -10229,7 +10240,7 @@ }, "node_modules/which": { "version": "2.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/which/-/which-2.0.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/which/-/which-2.0.2.tgz", "integrity": "sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=", "dev": true, "license": "ISC", @@ -10293,7 +10304,7 @@ }, "node_modules/which-collection": { "version": "1.0.2", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/which-collection/-/which-collection-1.0.2.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/which-collection/-/which-collection-1.0.2.tgz", "integrity": "sha1-Yn73YkOSChB+fOjpYZHevksWwqA=", "dev": true, "license": "MIT", @@ -10312,7 +10323,7 @@ }, "node_modules/which-typed-array": { "version": "1.1.22", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/which-typed-array/-/which-typed-array-1.1.22.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/which-typed-array/-/which-typed-array-1.1.22.tgz", "integrity": "sha1-jzzHiu+0C0NzRt1Aodv6XR2kP+k=", "dev": true, "license": "MIT", @@ -10334,7 +10345,7 @@ }, "node_modules/why-is-node-running": { "version": "2.3.0", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/why-is-node-running/-/why-is-node-running-2.3.0.tgz", "integrity": "sha1-o/aalxB/SUs83Dvd3Yg6fWXOvwQ=", "dev": true, "license": "MIT", @@ -10351,7 +10362,7 @@ }, "node_modules/word-wrap": { "version": "1.2.5", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/word-wrap/-/word-wrap-1.2.5.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha1-0sRcbdT7zmIaZvE2y+Mor9BBCzQ=", "dev": true, "license": "MIT", @@ -10361,14 +10372,14 @@ }, "node_modules/wrappy": { "version": "1.0.2", - "resolved": "https://ms-feed-12.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/wrappy/-/wrappy-1.0.2.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "dev": true, "license": "ISC" }, "node_modules/ws": { "version": "8.21.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ws/-/ws-8.21.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/ws/-/ws-8.21.0.tgz", "integrity": "sha1-AS5BP8B0KZRRIbDBUxWMQ0MIaVE=", "dev": true, "license": "MIT", @@ -10390,7 +10401,7 @@ }, "node_modules/xml-name-validator": { "version": "5.0.0", - "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/xml-name-validator/-/xml-name-validator-5.0.0.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/xml-name-validator/-/xml-name-validator-5.0.0.tgz", "integrity": "sha1-gr6blX96/az5YeWYDxvyJ8C/dnM=", "dev": true, "license": "Apache-2.0", @@ -10400,21 +10411,21 @@ }, "node_modules/xmlchars": { "version": "2.2.0", - "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/xmlchars/-/xmlchars-2.2.0.tgz", + "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha1-Bg/hvLf5x2/ioX24apvDq4lCEMs=", "dev": true, "license": "MIT" }, "node_modules/yallist": { "version": "3.1.1", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/yallist/-/yallist-3.1.1.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/yallist/-/yallist-3.1.1.tgz", "integrity": "sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=", "dev": true, "license": "ISC" }, "node_modules/yocto-queue": { "version": "0.1.0", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/yocto-queue/-/yocto-queue-0.1.0.tgz", + "resolved": "https://ms-feed-17.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha1-ApTrPe4FAo0x7hpfosVWpqrxChs=", "dev": true, "license": "MIT", @@ -10427,7 +10438,7 @@ }, "node_modules/zwitch": { "version": "2.0.4", - "resolved": "https://ms-feed-25.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/zwitch/-/zwitch-2.0.4.tgz", + "resolved": "https://ms-feed-2.pkgs.visualstudio.com/1es-public/_packaging/npm-public/npm/registry/zwitch/-/zwitch-2.0.4.tgz", "integrity": "sha1-yCfUsKy3b8PmhaTG7CkC1RBw6dc=", "license": "MIT", "funding": { diff --git a/src/App/package_frontend.ps1 b/src/App/package_frontend.ps1 index 71364c296..8f71d5ccd 100644 --- a/src/App/package_frontend.ps1 +++ b/src/App/package_frontend.ps1 @@ -6,6 +6,9 @@ cp requirements.txt dist -Force cp *.py dist -Force # Node +$npmInstallStart = Get-Date npm install +$npmInstallEnd = Get-Date +Write-Host "npm install duration: $(($npmInstallEnd - $npmInstallStart).TotalSeconds)s" npm run build cp -r build dist -Force \ No newline at end of file diff --git a/src/App/package_frontend.sh b/src/App/package_frontend.sh index e334d6b2a..b68f3d9c6 100644 --- a/src/App/package_frontend.sh +++ b/src/App/package_frontend.sh @@ -9,6 +9,9 @@ cp -f requirements.txt dist cp -f *.py dist #node +npm_install_start=$(date +%s) npm install +npm_install_end=$(date +%s) +echo "npm install duration: $((npm_install_end-npm_install_start))s" npm run build cp -rf build dist \ No newline at end of file diff --git a/src/App/pyproject.toml b/src/App/pyproject.toml index 98b2da76d..7aebd834a 100644 --- a/src/App/pyproject.toml +++ b/src/App/pyproject.toml @@ -15,3 +15,6 @@ dependencies = [ "urllib3==2.7.0", "cryptography==50.0.0", ] + +[tool.uv] +index-url = "https://packagefeedproxy.microsoft.io/pypi/simple/" diff --git a/src/App/requirements.txt b/src/App/requirements.txt index 1d273c6b9..7f4514eda 100644 --- a/src/App/requirements.txt +++ b/src/App/requirements.txt @@ -1,3 +1,4 @@ +--index-url https://packagefeedproxy.microsoft.io/pypi/simple/ fastapi uvicorn[standard] # uvicorn removed and added above to allow websocket support diff --git a/src/backend/Dockerfile b/src/backend/Dockerfile index aa80db09e..01bba3437 100644 --- a/src/backend/Dockerfile +++ b/src/backend/Dockerfile @@ -6,6 +6,10 @@ FROM base AS builder COPY --from=ghcr.io/astral-sh/uv:0.6.3 /uv /uvx /bin/ ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy +# Route uv/pip package resolution through the Microsoft Package Feed Proxy +ENV UV_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple/ \ + PIP_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple/ + WORKDIR /app # Copy lock and project files first for better layer caching diff --git a/src/backend/Dockerfile.NoCache b/src/backend/Dockerfile.NoCache index aadfa6bd7..88addace0 100644 --- a/src/backend/Dockerfile.NoCache +++ b/src/backend/Dockerfile.NoCache @@ -6,6 +6,10 @@ FROM base AS builder COPY --from=ghcr.io/astral-sh/uv:0.6.3 /uv /uvx /bin/ ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy +# Route uv/pip package resolution through the Microsoft Package Feed Proxy +ENV UV_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple/ \ + PIP_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple/ + WORKDIR /app COPY uv.lock pyproject.toml /app/ diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index c90208562..869cb4798 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -70,6 +70,9 @@ dependencies = [ "nltk==3.10.0", ] +[tool.uv] +index-url = "https://packagefeedproxy.microsoft.io/pypi/simple/" + [tool.pylint."messages control"] disable = [ "broad-exception-caught", diff --git a/src/mcp_server/Dockerfile b/src/mcp_server/Dockerfile index 78a36fef1..00fb819e8 100644 --- a/src/mcp_server/Dockerfile +++ b/src/mcp_server/Dockerfile @@ -7,6 +7,10 @@ FROM base AS builder COPY --from=ghcr.io/astral-sh/uv:0.6.3 /uv /uvx /bin/ ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy +# Route uv/pip package resolution through the Microsoft Package Feed Proxy +ENV UV_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple/ \ + PIP_INDEX_URL=https://packagefeedproxy.microsoft.io/pypi/simple/ + # Copy lock and project files first for caching COPY uv.lock pyproject.toml /app/ diff --git a/src/mcp_server/pyproject.toml b/src/mcp_server/pyproject.toml index 33f8d2e71..d6073dd5c 100644 --- a/src/mcp_server/pyproject.toml +++ b/src/mcp_server/pyproject.toml @@ -39,6 +39,9 @@ dev = [ "pytest-asyncio==1.3.0", ] +[tool.uv] +index-url = "https://packagefeedproxy.microsoft.io/pypi/simple/" + [project.urls] Homepage = "https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator" Repository = "https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator" diff --git a/tests/e2e-test/requirements.txt b/tests/e2e-test/requirements.txt index 4e488e559..5deb3284a 100644 --- a/tests/e2e-test/requirements.txt +++ b/tests/e2e-test/requirements.txt @@ -1,3 +1,4 @@ +--index-url https://packagefeedproxy.microsoft.io/pypi/simple/ pytest-playwright pytest-reporter-html1 python-dotenv From ff41bcc677c5d8b20b3c12f14bc55bb4eb4c48cd Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Limited)" Date: Fri, 21 Aug 2026 16:59:58 +0530 Subject: [PATCH 06/12] readme docker file --- .devcontainer/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 03fa4d136..4f222df16 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,10 @@ FROM mcr.microsoft.com/devcontainers/python:3.11-bookworm +# Route npm/corepack traffic (used during devcontainer feature installation, +# e.g. ghcr.io/devcontainers/features/node) through the internal package feed +# proxy, since the public npmjs.org registry is blocked/unreachable on this +# network and causes feature install failures (ERR_SSL_SSL/TLS_ALERT_HANDSHAKE_FAILURE). +ENV NPM_CONFIG_REGISTRY=https://packagefeedproxy.microsoft.io/npm/ + # Remove Yarn repository to avoid GPG key expiration issue RUN rm -f /etc/apt/sources.list.d/yarn.list \ No newline at end of file From 6424cc86285711e50844256ba20678d2bb2101b2 Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Limited)" Date: Fri, 21 Aug 2026 19:29:42 +0530 Subject: [PATCH 07/12] remove devcontainer lock file --- .devcontainer/devcontainer-lock.json | 29 ---------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .devcontainer/devcontainer-lock.json diff --git a/.devcontainer/devcontainer-lock.json b/.devcontainer/devcontainer-lock.json deleted file mode 100644 index eb5226d08..000000000 --- a/.devcontainer/devcontainer-lock.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "features": { - "ghcr.io/azure/azure-dev/azd:latest": { - "version": "0.2.0", - "resolved": "ghcr.io/azure/azure-dev/azd@sha256:01bbec064fcb34f7c8730b3e3c2cc210699e213419664524982268b2910c4f73", - "integrity": "sha256:01bbec064fcb34f7c8730b3e3c2cc210699e213419664524982268b2910c4f73" - }, - "ghcr.io/devcontainers/features/azure-cli:1": { - "version": "1.3.0", - "resolved": "ghcr.io/devcontainers/features/azure-cli@sha256:d98f1066c077be0fa9d115b718f458bd803e415181b4a96f82a6f5d9f77241ac", - "integrity": "sha256:d98f1066c077be0fa9d115b718f458bd803e415181b4a96f82a6f5d9f77241ac" - }, - "ghcr.io/devcontainers/features/docker-in-docker:2": { - "version": "2.17.0", - "resolved": "ghcr.io/devcontainers/features/docker-in-docker@sha256:25b9f05705ffba7dbe503230ac76081419306f8c8bc88e0ce78c4ecd99a0c78c", - "integrity": "sha256:25b9f05705ffba7dbe503230ac76081419306f8c8bc88e0ce78c4ecd99a0c78c" - }, - "ghcr.io/devcontainers/features/node:1": { - "version": "1.7.1", - "resolved": "ghcr.io/devcontainers/features/node@sha256:8c0de46939b61958041700ee89e3493f3b2e4131a06dc46b4d9423427d06e5f6", - "integrity": "sha256:8c0de46939b61958041700ee89e3493f3b2e4131a06dc46b4d9423427d06e5f6" - }, - "ghcr.io/jsburckhardt/devcontainer-features/uv:1": { - "version": "1.0.0", - "resolved": "ghcr.io/jsburckhardt/devcontainer-features/uv@sha256:542a0bc2203205b3c696de650ba862f280b20af3543493cc232edd9ac35791f7", - "integrity": "sha256:542a0bc2203205b3c696de650ba862f280b20af3543493cc232edd9ac35791f7" - } - } -} From abebf0c09e1a5e35b47a6808176b2e6f2ed2167b Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Limited)" Date: Fri, 21 Aug 2026 21:54:45 +0530 Subject: [PATCH 08/12] removed unwanted changes --- .devcontainer/Dockerfile | 2 +- .devcontainer/setupEnv.sh | 3 --- infra/scripts/build/package_frontend.ps1 | 3 --- infra/scripts/build/package_frontend.sh | 3 --- src/App/package_frontend.ps1 | 3 --- src/App/package_frontend.sh | 3 --- 6 files changed, 1 insertion(+), 16 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4f222df16..0b7deef4e 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/devcontainers/python:3.11-bookworm +FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye # Route npm/corepack traffic (used during devcontainer feature installation, # e.g. ghcr.io/devcontainers/features/node) through the internal package feed diff --git a/.devcontainer/setupEnv.sh b/.devcontainer/setupEnv.sh index 9694a0822..7aba7f8ee 100755 --- a/.devcontainer/setupEnv.sh +++ b/.devcontainer/setupEnv.sh @@ -13,10 +13,7 @@ cd ../../ echo "Setting up Frontend..." cd ./src/App -npm_install_start=$(date +%s) npm install -npm_install_end=$(date +%s) -echo "npm install duration: $((npm_install_end-npm_install_start))s" pip install -r requirements.txt cd ../../ diff --git a/infra/scripts/build/package_frontend.ps1 b/infra/scripts/build/package_frontend.ps1 index 8f71d5ccd..71364c296 100644 --- a/infra/scripts/build/package_frontend.ps1 +++ b/infra/scripts/build/package_frontend.ps1 @@ -6,9 +6,6 @@ cp requirements.txt dist -Force cp *.py dist -Force # Node -$npmInstallStart = Get-Date npm install -$npmInstallEnd = Get-Date -Write-Host "npm install duration: $(($npmInstallEnd - $npmInstallStart).TotalSeconds)s" npm run build cp -r build dist -Force \ No newline at end of file diff --git a/infra/scripts/build/package_frontend.sh b/infra/scripts/build/package_frontend.sh index b68f3d9c6..e334d6b2a 100644 --- a/infra/scripts/build/package_frontend.sh +++ b/infra/scripts/build/package_frontend.sh @@ -9,9 +9,6 @@ cp -f requirements.txt dist cp -f *.py dist #node -npm_install_start=$(date +%s) npm install -npm_install_end=$(date +%s) -echo "npm install duration: $((npm_install_end-npm_install_start))s" npm run build cp -rf build dist \ No newline at end of file diff --git a/src/App/package_frontend.ps1 b/src/App/package_frontend.ps1 index 8f71d5ccd..71364c296 100644 --- a/src/App/package_frontend.ps1 +++ b/src/App/package_frontend.ps1 @@ -6,9 +6,6 @@ cp requirements.txt dist -Force cp *.py dist -Force # Node -$npmInstallStart = Get-Date npm install -$npmInstallEnd = Get-Date -Write-Host "npm install duration: $(($npmInstallEnd - $npmInstallStart).TotalSeconds)s" npm run build cp -r build dist -Force \ No newline at end of file diff --git a/src/App/package_frontend.sh b/src/App/package_frontend.sh index b68f3d9c6..e334d6b2a 100644 --- a/src/App/package_frontend.sh +++ b/src/App/package_frontend.sh @@ -9,9 +9,6 @@ cp -f requirements.txt dist cp -f *.py dist #node -npm_install_start=$(date +%s) npm install -npm_install_end=$(date +%s) -echo "npm install duration: $((npm_install_end-npm_install_start))s" npm run build cp -rf build dist \ No newline at end of file From bac52b393ff9d8f423cb7c6d0a1ac40b7264b0be Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Limited)" Date: Fri, 21 Aug 2026 22:02:20 +0530 Subject: [PATCH 09/12] remove devcontainer lock file --- src/App/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/Dockerfile b/src/App/Dockerfile index 0136b03e2..fe2384c95 100644 --- a/src/App/Dockerfile +++ b/src/App/Dockerfile @@ -9,12 +9,12 @@ WORKDIR /app/frontend COPY package*.json .npmrc* ./ # Install dependencies (registry is routed through the Microsoft Package Feed Proxy via .npmrc) -RUN start=$(date +%s); npm ci --silent; end=$(date +%s); echo "npm ci duration: $((end-start))s" +RUN npm ci --silent # Copy source files COPY . ./ -RUN start=$(date +%s); rm -rf node_modules && npm ci && npm rebuild esbuild --force; end=$(date +%s); echo "npm ci (rebuild) duration: $((end-start))s" +RUN rm -rf node_modules && npm ci && npm rebuild esbuild --force # Build the React app RUN npm run build From bfdff4ea5ab4b895abe9a95625c03a2e66f90efa Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Limited)" Date: Fri, 21 Aug 2026 22:28:03 +0530 Subject: [PATCH 10/12] updated pyproject toml --- src/App/pyproject.toml | 6 ++++-- src/backend/pyproject.toml | 6 ++++-- src/mcp_server/pyproject.toml | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/App/pyproject.toml b/src/App/pyproject.toml index 7aebd834a..a52c3a8cd 100644 --- a/src/App/pyproject.toml +++ b/src/App/pyproject.toml @@ -16,5 +16,7 @@ dependencies = [ "cryptography==50.0.0", ] -[tool.uv] -index-url = "https://packagefeedproxy.microsoft.io/pypi/simple/" +[[tool.uv.index]] +name = "microsoft-package-feed-proxy" +url = "https://packagefeedproxy.microsoft.io/pypi/simple/" +default = true diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 869cb4798..ea1466106 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -70,8 +70,10 @@ dependencies = [ "nltk==3.10.0", ] -[tool.uv] -index-url = "https://packagefeedproxy.microsoft.io/pypi/simple/" +[[tool.uv.index]] +name = "microsoft-package-feed-proxy" +url = "https://packagefeedproxy.microsoft.io/pypi/simple/" +default = true [tool.pylint."messages control"] disable = [ diff --git a/src/mcp_server/pyproject.toml b/src/mcp_server/pyproject.toml index d6073dd5c..4ffda2e04 100644 --- a/src/mcp_server/pyproject.toml +++ b/src/mcp_server/pyproject.toml @@ -39,8 +39,10 @@ dev = [ "pytest-asyncio==1.3.0", ] -[tool.uv] -index-url = "https://packagefeedproxy.microsoft.io/pypi/simple/" +[[tool.uv.index]] +name = "microsoft-package-feed-proxy" +url = "https://packagefeedproxy.microsoft.io/pypi/simple/" +default = true [project.urls] Homepage = "https://github.com/microsoft/Multi-Agent-Custom-Automation-Engine-Solution-Accelerator" From 41147d90cdcf1c3a793939622f83e9ab068796ce Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Limited)" Date: Fri, 21 Aug 2026 22:39:39 +0530 Subject: [PATCH 11/12] removing localdevelopment setup removed --- docs/LocalDevelopmentSetup.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/LocalDevelopmentSetup.md b/docs/LocalDevelopmentSetup.md index 027fdd264..fd8b6412d 100644 --- a/docs/LocalDevelopmentSetup.md +++ b/docs/LocalDevelopmentSetup.md @@ -63,17 +63,6 @@ This project uses Backend `.env` file in Backend directory with different config -### Package Feed Proxy (Microsoft-managed devices) - -On Microsoft-managed devices, direct access to public package registries (`npmjs.org`, `pypi.org`, `files.pythonhosted.org`) may be blocked. All `npm`, `pip`, and `uv` installs in this repository are pre-configured to route through the Central Feed Services (CFS)–protected Microsoft Package Feed Proxy: - -- npm: `https://packagefeedproxy.microsoft.io/npm/` (configured in `src/App/.npmrc`) -- pip: `https://packagefeedproxy.microsoft.io/pypi/simple/` (configured as the first line of each `requirements.txt`) -- uv: `https://packagefeedproxy.microsoft.io/pypi/simple/` (configured in each project's `pyproject.toml` under `[tool.uv]`) - -No additional setup should be required on a Microsoft-managed device. If you need to point at a different index temporarily, override it with the `PIP_INDEX_URL` / `UV_INDEX_URL` environment variables or the npm `--registry` flag. - - ## Step 1: Prerequisites - Install Required Tools ### Windows Development From 9bae1fe4b53176f241e1be20740f4377df5951b6 Mon Sep 17 00:00:00 2001 From: "Priyanka Singhal (Persistent Systems Limited)" Date: Fri, 21 Aug 2026 22:41:44 +0530 Subject: [PATCH 12/12] removing localdevelopment setup removed --- docs/LocalDevelopmentSetup.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/LocalDevelopmentSetup.md b/docs/LocalDevelopmentSetup.md index fd8b6412d..8d74398a5 100644 --- a/docs/LocalDevelopmentSetup.md +++ b/docs/LocalDevelopmentSetup.md @@ -63,6 +63,7 @@ This project uses Backend `.env` file in Backend directory with different config + ## Step 1: Prerequisites - Install Required Tools ### Windows Development