From ce2c8a4bf8ee39a9b6f0bea5b15e905e1b945c92 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Sun, 11 Jun 2023 22:58:31 +0200 Subject: [PATCH 1/9] [feat] Add thunk extra arg --- src/components/settings/button.tsx | 2 +- src/components/settings/modal.tsx | 2 +- .../components/__tests__/add-tile.test.tsx | 6 +-- .../speeddial/components/add-tile.tsx | 2 +- .../speeddial/edit-group-dialog.tsx | 2 +- src/components/speeddial/edit-link-dialog.tsx | 2 +- src/components/speeddial/index.tsx | 2 +- src/components/speeddial/tile-group.tsx | 2 +- src/components/speeddial/tile-link.tsx | 2 +- src/data/index.ts | 51 ++++++++++++------- src/data/redux-toolkit.ts | 14 +++++ src/index.tsx | 3 +- 12 files changed, 61 insertions(+), 29 deletions(-) create mode 100644 src/data/redux-toolkit.ts diff --git a/src/components/settings/button.tsx b/src/components/settings/button.tsx index 54c1165..bcbd6c6 100644 --- a/src/components/settings/button.tsx +++ b/src/components/settings/button.tsx @@ -6,7 +6,7 @@ import { useCallback } from 'react'; import { useTranslation } from 'react-i18next'; import { actions as configActions } from '@@data/config'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; export const SettingsButton: FC<{ sx?: SxProps }> = ({ sx }) => { diff --git a/src/components/settings/modal.tsx b/src/components/settings/modal.tsx index fc2d310..bfa8168 100644 --- a/src/components/settings/modal.tsx +++ b/src/components/settings/modal.tsx @@ -8,7 +8,7 @@ import { useSelector } from 'react-redux'; import type { ThemeMode } from '@@data/config'; import { actions as configActions } from '@@data/config'; import { getIsDialogOpen, getThemeMode } from '@@data/config/selectors'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; export const SettingsModal: FC = () => { diff --git a/src/components/speeddial/components/__tests__/add-tile.test.tsx b/src/components/speeddial/components/__tests__/add-tile.test.tsx index aff6b4c..401a991 100644 --- a/src/components/speeddial/components/__tests__/add-tile.test.tsx +++ b/src/components/speeddial/components/__tests__/add-tile.test.tsx @@ -1,14 +1,14 @@ import userEvent from '@testing-library/user-event'; import { render } from '@@config/test-utils'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; import { actions as speeddialActions, ROOT_SPEEDDIAL_ID } from '@@data/speeddial/slice'; import { AddNewTile } from '../add-tile'; // MUST be full or relative path, vite-tsconfig-paths doesn't resolve vitest.mock paths using `compilerOptions.paths` setting -vitest.mock('src/data/index', async importOriginal => { - const module = await importOriginal(); +vitest.mock('src/data/redux-toolkit', async importOriginal => { + const module = await importOriginal(); return { ...module, useAppDispatch: vitest.fn(module.useAppDispatch) diff --git a/src/components/speeddial/components/add-tile.tsx b/src/components/speeddial/components/add-tile.tsx index b742347..3c8ee14 100644 --- a/src/components/speeddial/components/add-tile.tsx +++ b/src/components/speeddial/components/add-tile.tsx @@ -5,7 +5,7 @@ import type { FC } from 'react'; import { useState, useCallback } from 'react'; import { useTranslation } from 'react-i18next'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; import { actions as speeddialActions, ROOT_SPEEDDIAL_ID } from '@@data/speeddial/slice'; import { TILE_WIDTH } from './_constants'; diff --git a/src/components/speeddial/edit-group-dialog.tsx b/src/components/speeddial/edit-group-dialog.tsx index 7d5d2da..57f66dd 100644 --- a/src/components/speeddial/edit-group-dialog.tsx +++ b/src/components/speeddial/edit-group-dialog.tsx @@ -5,7 +5,7 @@ import { useTranslation } from 'react-i18next'; import { useSelector } from 'react-redux'; import type { RootState } from '@@data/index'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; import { getGroupEditTile, groupAdapterSelectors } from '@@data/speeddial/selectors'; import { actions as speeddialActions } from '@@data/speeddial/slice'; diff --git a/src/components/speeddial/edit-link-dialog.tsx b/src/components/speeddial/edit-link-dialog.tsx index 3a8e19d..616f820 100644 --- a/src/components/speeddial/edit-link-dialog.tsx +++ b/src/components/speeddial/edit-link-dialog.tsx @@ -23,7 +23,7 @@ import type { ColorChangeHandler } from 'react-color'; import { ChromePicker } from 'react-color'; import { useTranslation } from 'react-i18next'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; import type { SpeeddialLink } from '@@data/speeddial/slice'; import { actions as speeddialActions } from '@@data/speeddial/slice'; diff --git a/src/components/speeddial/index.tsx b/src/components/speeddial/index.tsx index 7e54fec..efb3b2d 100644 --- a/src/components/speeddial/index.tsx +++ b/src/components/speeddial/index.tsx @@ -4,7 +4,7 @@ import { Paper } from '@mui/material'; import type { FC } from 'react'; import { useCallback } from 'react'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; import { actions as speeddialActions, ROOT_SPEEDDIAL_ID } from '@@data/speeddial/slice'; import { GroupEditDialog } from './edit-group-dialog'; diff --git a/src/components/speeddial/tile-group.tsx b/src/components/speeddial/tile-group.tsx index 715a81d..02387d4 100644 --- a/src/components/speeddial/tile-group.tsx +++ b/src/components/speeddial/tile-group.tsx @@ -6,7 +6,7 @@ import { useState, useCallback } from 'react'; import { useTranslation } from 'react-i18next'; import { useSelector } from 'react-redux'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; import { linksAdapterSelectors } from '@@data/speeddial/selectors'; import type { SpeeddialGroup } from '@@data/speeddial/slice'; import { actions as speeddialActions } from '@@data/speeddial/slice'; diff --git a/src/components/speeddial/tile-link.tsx b/src/components/speeddial/tile-link.tsx index b1ccd28..43f71a7 100644 --- a/src/components/speeddial/tile-link.tsx +++ b/src/components/speeddial/tile-link.tsx @@ -5,7 +5,7 @@ import { useCallback, useMemo } from 'react'; import { useTranslation } from 'react-i18next'; import { useSelector } from 'react-redux'; -import { useAppDispatch } from '@@data/index'; +import { useAppDispatch } from '@@data/redux-toolkit'; import { groupAdapterSelectors } from '@@data/speeddial/selectors'; import type { SpeeddialLink } from '@@data/speeddial/slice'; import { actions as speeddialActions } from '@@data/speeddial/slice'; diff --git a/src/data/index.ts b/src/data/index.ts index 57ddfc9..ba22dd6 100644 --- a/src/data/index.ts +++ b/src/data/index.ts @@ -1,8 +1,9 @@ +/* eslint no-warning-comments: 1 */ import type { StoreEnhancer } from '@reduxjs/toolkit'; import { configureStore } from '@reduxjs/toolkit'; import { createReduxEnhancer as createSentryReduxEnhancer } from '@sentry/react'; -import { useDispatch } from 'react-redux'; import { createLogger } from 'redux-logger'; +import type { Persistor } from 'redux-persist'; import { persistStore } from 'redux-persist'; import { FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER } from 'redux-persist/es/constants'; import type { PersistPartial } from 'redux-persist/es/persistReducer'; @@ -15,30 +16,47 @@ const ignoredActions = [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER]; const sentryReduxEnhancer = createSentryReduxEnhancer() as StoreEnhancer; +export interface ThunkExtraArgument { + pausePersistor: () => void; +} + export function createStore(addEnhancers = true) { + // eslint-disable-next-line prefer-const -- FIXME: broken eslint rule + let persistor: Persistor; + const store = configureStore({ enhancers: addEnhancers ? [sentryReduxEnhancer] : [], middleware: getDefaultMiddleware => { - let middleware = [...getDefaultMiddleware({ serializableCheck: { ignoredActions } })]; - - // eslint-disable-next-line no-warning-comments - // TODO: turn into feature flags manager - if ((import.meta.env.DEV && import.meta.env.VITE_VERCEL_ENV !== 'test') || new URL(window.location.href).searchParams.has('debug')) { - middleware = [ - createLogger({ - collapsed: true, - diff: true - }), - ...middleware - ]; - } + const middleware = getDefaultMiddleware({ + thunk: { + extraArgument: { + pausePersistor() { + persistor.pause(); + } + } satisfies ThunkExtraArgument + }, + immutableCheck: true, + serializableCheck: { ignoredActions } + }); + + // TODO: manage by feature flags + middleware.unshift( + createLogger({ + collapsed: true, + diff: false, + predicate() { + return (import.meta.env.DEV && import.meta.env.VITE_VERCEL_ENV !== 'test') + || new URL(window.location.href).searchParams.has('debug'); + } + }) + ); return middleware; }, reducer: { config, speeddial } }); - const persistor = persistStore(store); + persistor = persistStore(store); return { store, persistor }; } @@ -48,6 +66,5 @@ type RemovePersistPartial = { }; // eslint-disable-next-line @typescript-eslint/no-type-alias -type Store = ReturnType['store']; +export type Store = ReturnType['store']; export type RootState = RemovePersistPartial>; -export const useAppDispatch: () => Store['dispatch'] = useDispatch; diff --git a/src/data/redux-toolkit.ts b/src/data/redux-toolkit.ts new file mode 100644 index 0000000..cc2180d --- /dev/null +++ b/src/data/redux-toolkit.ts @@ -0,0 +1,14 @@ +import { createAsyncThunk } from '@reduxjs/toolkit'; +import { useDispatch } from 'react-redux'; + +import type { RootState, Store, ThunkExtraArgument } from '.'; + + +export const useAppDispatch: () => Store['dispatch'] = useDispatch; + +export const createAppAsyncThunk = createAsyncThunk.withTypes<{ + state: RootState; + dispatch: Store['dispatch']; + rejectValue: string; + extra: ThunkExtraArgument; +}>(); diff --git a/src/index.tsx b/src/index.tsx index 5e4cc5c..6a47772 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,3 +1,4 @@ +/* eslint-disable import/order */ import { ErrorBoundary as SentryErrorBoundary } from '@sentry/react'; import type { FC, PropsWithChildren } from 'react'; import { StrictMode } from 'react'; @@ -8,8 +9,8 @@ import { PersistGate } from 'redux-persist/integration/react'; import './sentry'; import './i18n'; -import { AppLayout } from './app'; import { createStore } from './data'; +import { AppLayout } from './app'; import { ThemedApp } from './theme/themed-app'; From 22bcd56051e8625b65932722861076a9468e5077 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Sun, 11 Jun 2023 22:58:37 +0200 Subject: [PATCH 2/9] [feat] Allow import/export via .json --- package.json | 1 + .../__snapshots__/index.test.tsx.snap | 424 ++++++++++++++++++ src/components/settings/modal.tsx | 15 +- src/data/config/slice.ts | 74 ++- yarn.lock | 5 + 5 files changed, 517 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5b1e85b..0aaa7ec 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "@reduxjs/toolkit": "^1.9.5", "@sentry/react": "^7.54.0", "cheerio": "1.0.0-rc.12", + "dayjs": "^1.11.8", "i18next": "^22.5.1", "i18next-browser-languagedetector": "^7.0.2", "i18next-http-backend": "^2.2.1", diff --git a/src/components/settings/__snapshots__/index.test.tsx.snap b/src/components/settings/__snapshots__/index.test.tsx.snap index 38a1288..ee09c44 100644 --- a/src/components/settings/__snapshots__/index.test.tsx.snap +++ b/src/components/settings/__snapshots__/index.test.tsx.snap @@ -825,6 +825,85 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- visibility: visible; } +.emotion-21 { + display: -webkit-inline-box; + display: -webkit-inline-flex; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-align-items: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + -webkit-justify-content: center; + justify-content: center; + position: relative; + box-sizing: border-box; + -webkit-tap-highlight-color: transparent; + background-color: transparent; + outline: 0; + border: 0; + margin: 0; + border-radius: 0; + padding: 0; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + -moz-appearance: none; + -webkit-appearance: none; + -webkit-text-decoration: none; + text-decoration: none; + color: inherit; + font-family: "Roboto","Helvetica","Arial",sans-serif; + font-weight: 500; + font-size: 0.875rem; + line-height: 1.75; + letter-spacing: 0.02857em; + text-transform: uppercase; + min-width: 64px; + padding: 6px 8px; + border-radius: 4px; + -webkit-transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; + transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; + color: #1976d2; +} + +.emotion-21::-moz-focus-inner { + border-style: none; +} + +.emotion-21.Mui-disabled { + pointer-events: none; + cursor: default; +} + +@media print { + .emotion-21 { + -webkit-print-color-adjust: exact; + color-adjust: exact; + } +} + +.emotion-21:hover { + -webkit-text-decoration: none; + text-decoration: none; + background-color: rgba(25, 118, 210, 0.04); +} + +@media (hover: none) { + .emotion-21:hover { + background-color: transparent; + } +} + +.emotion-21.Mui-disabled { + color: rgba(0, 0, 0, 0.26); +} + @@ -956,6 +1035,33 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- +
+
+ + +
@@ -1785,6 +1970,33 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input-
+
+
+ + +
@@ -2614,6 +2905,33 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input-
+
+
+ + +
@@ -3443,6 +3840,33 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input-
+
+
+ + +
{ dispatch(configActions.closeModal()); }, [dispatch]); + const onExport = useCallback(() => { + void dispatch(configActions.exportSettings()); + }, [dispatch]); + + const onImport = useCallback(() => { + void dispatch(configActions.importSettings()); + }, [dispatch]); + return ( { + + + + + ); }; diff --git a/src/data/config/slice.ts b/src/data/config/slice.ts index ffef44e..b5e3ec5 100644 --- a/src/data/config/slice.ts +++ b/src/data/config/slice.ts @@ -1,5 +1,9 @@ +/* eslint no-warning-comments: 1 */ import type { PayloadAction } from '@reduxjs/toolkit'; import { createSlice } from '@reduxjs/toolkit'; +import dayjs from 'dayjs'; + +import { createAppAsyncThunk } from '@@data/redux-toolkit'; export type ThemeMode = 'dark' | 'light'; @@ -9,7 +13,67 @@ export const initialState = () => ({ themeMode: null as ThemeMode | null }); -export const { actions, name: sliceName, reducer } = createSlice({ +// TODO: move logic to service.ts ? +const exportSettings = createAppAsyncThunk( + 'config/exportSettings', + () => new Promise(resolve => { + const data = Object.keys(localStorage).reduce>((acc, key) => ({ + ...acc, + [key]: localStorage.getItem(key) as string + }), {}); + + const blob = new Blob([JSON.stringify(data)], { type: 'application/json' }); + + const dlink = document.createElement('a'); + dlink.download = `speeddial-config-${dayjs().format('YYYYMMDD-HHmmss')}.json`; + dlink.href = window.URL.createObjectURL(blob); + + dlink.click(); + setTimeout(() => { + window.URL.revokeObjectURL(dlink.href); + dlink.remove(); + resolve(); + }, 1500); + }) +); + +// TODO: move logic to service.ts ? +const importSettings = createAppAsyncThunk( + 'config/importSettings', + (_, thunkApi) => new Promise(resolve => { + const ulink = document.createElement('input'); + ulink.type = 'file'; + ulink.accept = 'application/json'; + + ulink.click(); + + ulink.addEventListener('change', async () => { + const file = ulink.files?.[0]; + + if (file) { + thunkApi.extra.pausePersistor(); + + const contents = await file.text(); + const json = JSON.parse(contents) as Record; + + Object.keys(json).forEach(key => { + localStorage.setItem(key, json[key]); + }); + + window.location.reload(); + } + + ulink.remove(); + resolve(); + }); + ulink.addEventListener('cancel', () => { + ulink.remove(); + resolve(); + }); + }) +); + +const { actions: sliceActions, name: sliceName, reducer } = createSlice({ name: 'config', initialState, reducers: { @@ -25,3 +89,11 @@ export const { actions, name: sliceName, reducer } = createSlice({ } } }); + +export const actions = { + ...sliceActions, + exportSettings, + importSettings +}; + +export { sliceName, reducer }; diff --git a/yarn.lock b/yarn.lock index 3a4a0eb..e7bdbdb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3026,6 +3026,11 @@ date-time@^3.1.0: dependencies: time-zone "^1.0.0" +dayjs@^1.11.8: + version "1.11.8" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.8.tgz#4282f139c8c19dd6d0c7bd571e30c2d0ba7698ea" + integrity sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ== + debug@2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" From 0dc3edf168f1cb7dd46727eba30438314a9deda1 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Sun, 11 Jun 2023 23:18:03 +0200 Subject: [PATCH 3/9] [refactor] Small changes to slice.ts --- src/data/config/slice.ts | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/src/data/config/slice.ts b/src/data/config/slice.ts index b5e3ec5..6e57f89 100644 --- a/src/data/config/slice.ts +++ b/src/data/config/slice.ts @@ -1,4 +1,3 @@ -/* eslint no-warning-comments: 1 */ import type { PayloadAction } from '@reduxjs/toolkit'; import { createSlice } from '@reduxjs/toolkit'; import dayjs from 'dayjs'; @@ -13,16 +12,12 @@ export const initialState = () => ({ themeMode: null as ThemeMode | null }); -// TODO: move logic to service.ts ? +// window.URL.revokeObjectURL must not be called immediately +const DL_JSON_OBJECT_URL_TIMEOUT = 1500; const exportSettings = createAppAsyncThunk( 'config/exportSettings', () => new Promise(resolve => { - const data = Object.keys(localStorage).reduce>((acc, key) => ({ - ...acc, - [key]: localStorage.getItem(key) as string - }), {}); - - const blob = new Blob([JSON.stringify(data)], { type: 'application/json' }); + const blob = new Blob([JSON.stringify({ ...localStorage })], { type: 'application/json' }); const dlink = document.createElement('a'); dlink.download = `speeddial-config-${dayjs().format('YYYYMMDD-HHmmss')}.json`; @@ -33,11 +28,10 @@ const exportSettings = createAppAsyncThunk( window.URL.revokeObjectURL(dlink.href); dlink.remove(); resolve(); - }, 1500); + }, DL_JSON_OBJECT_URL_TIMEOUT); }) ); -// TODO: move logic to service.ts ? const importSettings = createAppAsyncThunk( 'config/importSettings', (_, thunkApi) => new Promise(resolve => { @@ -45,8 +39,6 @@ const importSettings = createAppAsyncThunk( ulink.type = 'file'; ulink.accept = 'application/json'; - ulink.click(); - ulink.addEventListener('change', async () => { const file = ulink.files?.[0]; @@ -56,9 +48,11 @@ const importSettings = createAppAsyncThunk( const contents = await file.text(); const json = JSON.parse(contents) as Record; - Object.keys(json).forEach(key => { - localStorage.setItem(key, json[key]); - }); + for (const key in json) { + if (Object.hasOwn(json, key)) { + localStorage.setItem(key, json[key]); + } + } window.location.reload(); } @@ -70,6 +64,8 @@ const importSettings = createAppAsyncThunk( ulink.remove(); resolve(); }); + + ulink.click(); }) ); From 69b04570c22c66b968e62bd52014d6060e0f192c Mon Sep 17 00:00:00 2001 From: Bartosz Date: Mon, 12 Jun 2023 23:41:08 +0200 Subject: [PATCH 4/9] [fix] bug with editing dialog --- .../speeddial/components/add-tile.tsx | 34 ++++++++++--------- src/components/speeddial/group-contents.tsx | 3 +- .../speeddial/hooks/use-form-handlers.ts | 4 +++ 3 files changed, 24 insertions(+), 17 deletions(-) diff --git a/src/components/speeddial/components/add-tile.tsx b/src/components/speeddial/components/add-tile.tsx index 3c8ee14..3f74e43 100644 --- a/src/components/speeddial/components/add-tile.tsx +++ b/src/components/speeddial/components/add-tile.tsx @@ -6,7 +6,7 @@ import { useState, useCallback } from 'react'; import { useTranslation } from 'react-i18next'; import { useAppDispatch } from '@@data/redux-toolkit'; -import { actions as speeddialActions, ROOT_SPEEDDIAL_ID } from '@@data/speeddial/slice'; +import { actions as speeddialActions } from '@@data/speeddial/slice'; import { TILE_WIDTH } from './_constants'; @@ -29,7 +29,7 @@ const AddTileContent = styled(CardContent)({ 'flex': 1 }); -export const AddNewTile: FC = ({ parentId }) => { +export const AddNewTile: FC = ({ parentId, hideAddGroup }) => { const { t } = useTranslation(); const dispatch = useAppDispatch(); @@ -51,7 +51,7 @@ export const AddNewTile: FC = ({ parentId }) => { const defaultContent = ( @@ -65,19 +65,20 @@ export const AddNewTile: FC = ({ parentId }) => { > - {/* eslint-disable-next-line no-warning-comments */} - {parentId === ROOT_SPEEDDIAL_ID && ( // TODO: make universal - <> - - - - - - )} + {hideAddGroup + ? null + : ( + <> + + + + + + )} ); @@ -96,4 +97,5 @@ export const AddNewTile: FC = ({ parentId }) => { interface Props { parentId: string; + hideAddGroup?: boolean; } diff --git a/src/components/speeddial/group-contents.tsx b/src/components/speeddial/group-contents.tsx index 6938619..23f4f3b 100644 --- a/src/components/speeddial/group-contents.tsx +++ b/src/components/speeddial/group-contents.tsx @@ -6,6 +6,7 @@ import { useSelector } from 'react-redux'; import type { RootState } from '@@data/index'; import type { SpeeddialGroup, SpeeddialLink } from '@@data/speeddial'; +import { ROOT_SPEEDDIAL_ID } from '@@data/speeddial'; import { getGroupTiles } from '@@data/speeddial/selectors'; import { AddNewTile } from './components/add-tile'; @@ -54,7 +55,7 @@ export const GroupContents: FC = ({ groupId }) => { {tiles.map(renderTile)} - + ); diff --git a/src/components/speeddial/hooks/use-form-handlers.ts b/src/components/speeddial/hooks/use-form-handlers.ts index 851a63d..a921bcd 100644 --- a/src/components/speeddial/hooks/use-form-handlers.ts +++ b/src/components/speeddial/hooks/use-form-handlers.ts @@ -10,9 +10,13 @@ export const useFormHandlers = ({ cancel, submit }: Record<'cancel' | 'submit', } switch (event.key) { case 'Enter': + event.preventDefault(); + event.stopPropagation(); submit(); break; case 'Escape': + event.preventDefault(); + event.stopPropagation(); cancel(); break; default: From 18aee5ac77dd38050305afb33110b9eeb1ea4e2e Mon Sep 17 00:00:00 2001 From: Bartosz Date: Thu, 15 Jun 2023 12:52:49 +0200 Subject: [PATCH 5/9] [fix] autofocus group name in edit dialog --- .../speeddial/edit-group-dialog.tsx | 4 ++++ .../speeddial/hooks/use-autofocus.ts | 22 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 src/components/speeddial/hooks/use-autofocus.ts diff --git a/src/components/speeddial/edit-group-dialog.tsx b/src/components/speeddial/edit-group-dialog.tsx index 57f66dd..9fe35e3 100644 --- a/src/components/speeddial/edit-group-dialog.tsx +++ b/src/components/speeddial/edit-group-dialog.tsx @@ -9,6 +9,7 @@ import { useAppDispatch } from '@@data/redux-toolkit'; import { getGroupEditTile, groupAdapterSelectors } from '@@data/speeddial/selectors'; import { actions as speeddialActions } from '@@data/speeddial/slice'; +import { useAutofocus } from './hooks/use-autofocus'; import { useDraft } from './hooks/use-draft'; import { useFormHandlers } from './hooks/use-form-handlers'; @@ -32,6 +33,8 @@ export const GroupEditDialog: FC = () => { const formHandlers = useFormHandlers({ cancel: onCloseWithoutSave, submit: onSave }); + const inputRef = useAutofocus(Boolean(tile)); + return ( @@ -43,6 +46,7 @@ export const GroupEditDialog: FC = () => { variant="standard" autoFocus required + inputRef={inputRef} /> diff --git a/src/components/speeddial/hooks/use-autofocus.ts b/src/components/speeddial/hooks/use-autofocus.ts new file mode 100644 index 0000000..b3e7a25 --- /dev/null +++ b/src/components/speeddial/hooks/use-autofocus.ts @@ -0,0 +1,22 @@ +import { useEffect, useRef } from 'react'; + + +export const useAutofocus = (visible: boolean) => { + const ref = useRef(); + useEffect(() => { + if (visible) { + const to = setTimeout(() => { + if (ref.current) { + ref.current.focus(); + ref.current.select(); + } + }, 50); + return () => { + clearTimeout(to); + }; + } + return undefined; + }, [visible]); + + return ref; +}; From deea990dec09df39ece08828b5669bcfa599ab23 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Thu, 15 Jun 2023 12:53:38 +0200 Subject: [PATCH 6/9] [fix] Show image placeholders in group preview --- src/components/app-footer/index.tsx | 4 +-- .../components/tile-image-placeholder.tsx | 15 +++++++++++ src/components/speeddial/group-contents.tsx | 3 ++- src/components/speeddial/tile-group.tsx | 27 ++++++++++++------- src/components/speeddial/tile-link.tsx | 12 +++------ 5 files changed, 41 insertions(+), 20 deletions(-) create mode 100644 src/components/speeddial/components/tile-image-placeholder.tsx diff --git a/src/components/app-footer/index.tsx b/src/components/app-footer/index.tsx index 11695ab..a9c2b9b 100644 --- a/src/components/app-footer/index.tsx +++ b/src/components/app-footer/index.tsx @@ -31,7 +31,7 @@ export const AppFooter: FC<{ gridArea?: string }> = ({ gridArea }) => { href={AUTHOR_URL} target="_blank" referrerPolicy="no-referrer" - rel="noopener noreferrer nofollow" + rel="noopener noreferrer" > {AUTHOR} @@ -40,7 +40,7 @@ export const AppFooter: FC<{ gridArea?: string }> = ({ gridArea }) => { href={REPO_URL} target="_blank" referrerPolicy="no-referrer" - rel="noopener noreferrer nofollow" + rel="noopener noreferrer" > {t('footer.openSource')} diff --git a/src/components/speeddial/components/tile-image-placeholder.tsx b/src/components/speeddial/components/tile-image-placeholder.tsx new file mode 100644 index 0000000..93b55fc --- /dev/null +++ b/src/components/speeddial/components/tile-image-placeholder.tsx @@ -0,0 +1,15 @@ +import { Typography } from '@mui/material'; +import { memo } from 'react'; + + +export const TileImagePlaceholder = memo<{ name: string; fontSize?: number }>(({ name, fontSize }) => ( + + {name + .split(' ') + .filter(Boolean) + .splice(0, 2) + .map(word => word[0]) + .join('')} + +)); +TileImagePlaceholder.displayName = 'TileImagePlaceholder'; diff --git a/src/components/speeddial/group-contents.tsx b/src/components/speeddial/group-contents.tsx index 23f4f3b..c140193 100644 --- a/src/components/speeddial/group-contents.tsx +++ b/src/components/speeddial/group-contents.tsx @@ -20,7 +20,8 @@ const TilesWrapper = styled(Box)(({ theme }) => ({ 'gap': theme.spacing(2), 'alignItems': 'stretch', '& > *': { flexShrink: 0 }, - 'flexWrap': 'wrap' + 'flexWrap': 'wrap', + 'userSelect': 'none' })); export const GroupContents: FC = ({ groupId }) => { diff --git a/src/components/speeddial/tile-group.tsx b/src/components/speeddial/tile-group.tsx index 02387d4..2d85f08 100644 --- a/src/components/speeddial/tile-group.tsx +++ b/src/components/speeddial/tile-group.tsx @@ -13,6 +13,7 @@ import { actions as speeddialActions } from '@@data/speeddial/slice'; import { TILE_CONTENT_HEIGHT } from './components/_constants'; import { Tile } from './components/tile'; +import { TileImagePlaceholder } from './components/tile-image-placeholder'; import { GroupContents } from './group-contents'; import { useContextMenu } from './hooks/use-context-menu'; import { useTypedSortable } from './hooks/use-typed-sortable'; @@ -25,8 +26,11 @@ const TileContent = styled(CardContent)({ 'display': 'grid', 'justifyContent': 'center', 'alignItems': 'center', + 'justifyItems': 'center', 'gridTemplateColumns': 'repeat(3, 1fr)', - 'gridTemplateRows': '40px 40px', + 'gridTemplateRows': 'repeat(2, 40px)', + 'gap': 1, + '& > *': { objectFit: 'scale-down' }, '& > img': { height: 40 } }); const ModalContent = styled(Paper)({ @@ -105,14 +109,19 @@ export const GroupTile: FC = ({ index, parentId, tile }) => { .slice(0, SHOW_SUBTILES) /* eslint no-warning-comments: 1 */ // FIXME: no logo sites - .map(link => ( - - ))} + .map(link => { + if (link.logoUrl) { + return ( + + ); + } + return ; + })} {tile.name} diff --git a/src/components/speeddial/tile-link.tsx b/src/components/speeddial/tile-link.tsx index 43f71a7..83d7c82 100644 --- a/src/components/speeddial/tile-link.tsx +++ b/src/components/speeddial/tile-link.tsx @@ -12,6 +12,7 @@ import { actions as speeddialActions } from '@@data/speeddial/slice'; import { TILE_CONTENT_HEIGHT } from './components/_constants'; import { Tile } from './components/tile'; +import { TileImagePlaceholder } from './components/tile-image-placeholder'; import { useContextMenu } from './hooks/use-context-menu'; import { useTypedSortable } from './hooks/use-typed-sortable'; @@ -84,6 +85,8 @@ export const LinkTile: FC = ({ index, parentId, tile }) => { isDragging={isDragging} transform={DndCss.Transform.toString(transform)} transition={transition} + referrerPolicy="no-referrer" + rel="norefferer noopener nofollow" > {tile.logoUrl ? ( @@ -99,14 +102,7 @@ export const LinkTile: FC = ({ index, parentId, tile }) => { ) : ( - - {tile.name - .split(' ') - .filter(Boolean) - .splice(0, 2) - .map(word => word[0]) - .join('')} - + )} From c8bf710c973206e48f0ddcc24272b57c5fdc756a Mon Sep 17 00:00:00 2001 From: Bartosz Date: Thu, 15 Jun 2023 12:54:22 +0200 Subject: [PATCH 7/9] [chore] Setup e2e tests with cypress --- .gitignore | 3 + cypress.config.ts | 18 + .../e2e/settings/export-settings.cy.ts.todo | 0 .../e2e/settings/import-settings.cy.ts.todo | 0 .../e2e/speeddial/create-directory.cy.ts.todo | 0 cypress/e2e/speeddial/create-link.cy.ts | 52 + .../e2e/speeddial/edit-directory.cy.ts.todo | 0 cypress/e2e/speeddial/edit-link.cy.ts.todo | 0 cypress/e2e/speeddial/move-tile.cy.ts.todo | 0 cypress/e2e/speeddial/persist-data.cy.ts.todo | 0 cypress/fixtures/example.json | 5 + cypress/support/commands.ts | 30 + cypress/support/e2e.ts | 17 + eslint.config.js | 4 + package.json | 8 +- src/components/speeddial/group-contents.tsx | 2 +- tsconfig.json | 3 +- yarn.lock | 948 +++++++++++++++++- 18 files changed, 1062 insertions(+), 28 deletions(-) create mode 100644 cypress.config.ts create mode 100644 cypress/e2e/settings/export-settings.cy.ts.todo create mode 100644 cypress/e2e/settings/import-settings.cy.ts.todo create mode 100644 cypress/e2e/speeddial/create-directory.cy.ts.todo create mode 100644 cypress/e2e/speeddial/create-link.cy.ts create mode 100644 cypress/e2e/speeddial/edit-directory.cy.ts.todo create mode 100644 cypress/e2e/speeddial/edit-link.cy.ts.todo create mode 100644 cypress/e2e/speeddial/move-tile.cy.ts.todo create mode 100644 cypress/e2e/speeddial/persist-data.cy.ts.todo create mode 100644 cypress/fixtures/example.json create mode 100644 cypress/support/commands.ts create mode 100644 cypress/support/e2e.ts diff --git a/.gitignore b/.gitignore index 947a94e..3c51515 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,6 @@ yarn-error.log* .vercel .env.local .env.*.local + +cypress/videos +cypress/screenshots diff --git a/cypress.config.ts b/cypress.config.ts new file mode 100644 index 0000000..e8d9219 --- /dev/null +++ b/cypress.config.ts @@ -0,0 +1,18 @@ +import { defineConfig } from 'cypress'; +import vitePreprocessor from 'cypress-vite'; + + +export default defineConfig({ + e2e: { + baseUrl: 'http://localhost:5137/', + video: false, + screenshotOnRunFailure: false, + + setupNodeEvents(on) { + on('file:preprocessor', vitePreprocessor({ + configFile: './vite.config.ts', + mode: 'development' + })); + } + } +}); diff --git a/cypress/e2e/settings/export-settings.cy.ts.todo b/cypress/e2e/settings/export-settings.cy.ts.todo new file mode 100644 index 0000000..e69de29 diff --git a/cypress/e2e/settings/import-settings.cy.ts.todo b/cypress/e2e/settings/import-settings.cy.ts.todo new file mode 100644 index 0000000..e69de29 diff --git a/cypress/e2e/speeddial/create-directory.cy.ts.todo b/cypress/e2e/speeddial/create-directory.cy.ts.todo new file mode 100644 index 0000000..e69de29 diff --git a/cypress/e2e/speeddial/create-link.cy.ts b/cypress/e2e/speeddial/create-link.cy.ts new file mode 100644 index 0000000..f8fd2b4 --- /dev/null +++ b/cypress/e2e/speeddial/create-link.cy.ts @@ -0,0 +1,52 @@ +/* eslint no-warning-comments: 1 */ +describe('create link', () => { + beforeEach(() => { + cy.clearAllLocalStorage(); + cy.visit('/', { timeout: 10_000 }); + }); + + it('hover', () => { + cy.findByLabelText('Add new link').should('not.exist'); + cy.findByLabelText('Add new group').should('not.exist'); + + cy.findByLabelText('Add new link or group').trigger('mouseover'); + + cy.findByLabelText('Add new link').should('exist'); + cy.findByLabelText('Add new group').should('exist'); + }); + + it('open dialog', () => { + cy.getAllVisibleTiles().should('have.length', 0); + + cy.findByLabelText('Add new link or group').trigger('mouseover'); + + cy.findByLabelText('Add new link').click(); + + // TODO: use own test server + cy.findByLabelText(/^URL/).type('https://www.youtube.com/'); + + cy.findByText('Next').click(); + + let title: string | undefined; + + cy.findByLabelText(/^Name/, { timeout: 10000 }).should('be.visible') + .invoke('val') + .should('have.length.above', 0) + .then(v => { + title = v?.toString(); + }); + cy.findByLabelText(/^Image URL/, { timeout: 10000 }).should('be.visible') + .invoke('val') + .should('have.length.above', 0); + + cy.findByLabelText('Background color').invoke('text') + .should('match', /^#[0-9a-z]{6}$/i); + cy.findByLabelText('Theme color').invoke('text') + .should('match', /^#[0-9a-z]{6}$/i); + + cy.findByText('Save').click(); + + cy.getTileByTitle(title as string).should('be.visible'); + cy.getAllVisibleTiles().should('have.length', 1); + }); +}); diff --git a/cypress/e2e/speeddial/edit-directory.cy.ts.todo b/cypress/e2e/speeddial/edit-directory.cy.ts.todo new file mode 100644 index 0000000..e69de29 diff --git a/cypress/e2e/speeddial/edit-link.cy.ts.todo b/cypress/e2e/speeddial/edit-link.cy.ts.todo new file mode 100644 index 0000000..e69de29 diff --git a/cypress/e2e/speeddial/move-tile.cy.ts.todo b/cypress/e2e/speeddial/move-tile.cy.ts.todo new file mode 100644 index 0000000..e69de29 diff --git a/cypress/e2e/speeddial/persist-data.cy.ts.todo b/cypress/e2e/speeddial/persist-data.cy.ts.todo new file mode 100644 index 0000000..e69de29 diff --git a/cypress/fixtures/example.json b/cypress/fixtures/example.json new file mode 100644 index 0000000..02e4254 --- /dev/null +++ b/cypress/fixtures/example.json @@ -0,0 +1,5 @@ +{ + "name": "Using fixtures to represent data", + "email": "hello@cypress.io", + "body": "Fixtures are a great way to mock data for responses to routes" +} diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts new file mode 100644 index 0000000..f78babc --- /dev/null +++ b/cypress/support/commands.ts @@ -0,0 +1,30 @@ +/* eslint-disable @typescript-eslint/no-namespace */ +// eslint-disable-next-line spaced-comment +/// +import '@testing-library/cypress/add-commands'; + + +Cypress.Commands.add('loadApp', () => { + cy.clearAllLocalStorage(); + cy.visit('/', { timeout: 10_000 }); +}); + +Cypress.Commands.add('getTileByTitle', (title: string) => cy.findByText(title, { timeout: 500 }).parents('a')); + +Cypress.Commands.add('getAllVisibleTiles', () => { + try { + return cy.findByRole('presentation').get('[data-group-content]'); + } catch { + return cy.get('#root [data-group-content]'); + } +}); + +declare global { + namespace Cypress { + interface Chainable { + getAllVisibleTiles: () => Cypress.Chainable>; + getTileByTitle: (title: string) => Cypress.Chainable>; + loadApp: () => Chainable; + } + } +} diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts new file mode 100644 index 0000000..e66558e --- /dev/null +++ b/cypress/support/e2e.ts @@ -0,0 +1,17 @@ +// *********************************************************** +// This example support/e2e.ts is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands'; diff --git a/eslint.config.js b/eslint.config.js index 46279c1..1f43f79 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -21,5 +21,9 @@ export default defineFlatConfig([ }, 'node': { version: '18' } } + }, + { + files: ['**/*.cy.{ts,tsx}'], + rules: { 'promise/prefer-await-to-then': 'off' } } ]); diff --git a/package.json b/package.json index 0aaa7ec..ebde72c 100644 --- a/package.json +++ b/package.json @@ -33,6 +33,7 @@ "@edge-runtime/vm": "^3.0.2", "@emotion/jest": "^11.11.0", "@sentry/vite-plugin": "^2.2.1", + "@testing-library/cypress": "^9.0.0", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^14.0.0", "@testing-library/user-event": "^14.4.3", @@ -48,11 +49,14 @@ "@vercel/node": "^2.14.5", "@vitejs/plugin-react": "^4.0.0", "@vitest/coverage-istanbul": "^0.32.0", + "cypress": "^12.14.0", + "cypress-vite": "^1.4.0", "eslint": "^8.40.0", "eslint-define-config": "^1.20.0", "express": "^4.18.2", "jest-extended": "^3.2.4", "jsdom": "^22.1.0", + "start-server-and-test": "^2.0.0", "supertest": "^6.3.3", "typescript": "^5.1.3", "vite": "^4.3.9", @@ -63,12 +67,14 @@ "scripts": { "build": "tsc && vite build", "coverage": "vitest run --coverage", + "cy": "start-server-and-test 'yarn d --listen 5137' 5137 'cypress open'", "d": "vercel dev", "lint:fix": "eslint --fix src", "lint": "eslint src", "preview": "vite preview", "start": "vite", - "test": "vitest" + "test": "vitest", + "test:e2e": "start-server-and-test 'yarn d --listen 5137' 5137 'cypress run'" }, "type": "module" } diff --git a/src/components/speeddial/group-contents.tsx b/src/components/speeddial/group-contents.tsx index c140193..9bf80c0 100644 --- a/src/components/speeddial/group-contents.tsx +++ b/src/components/speeddial/group-contents.tsx @@ -54,7 +54,7 @@ export const GroupContents: FC = ({ groupId }) => { return ( - + {tiles.map(renderTile)} diff --git a/tsconfig.json b/tsconfig.json index 209e7a8..8745e07 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "dom.iterable", "esnext" ], - "types": ["vite/client", "vitest/globals"], + "types": ["vite/client", "vitest/globals", "cypress", "@testing-library/cypress"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, @@ -33,6 +33,7 @@ "include": [ "api", "config", + "cypress", "src", "*.config.ts", "shared-utils" diff --git a/yarn.lock b/yarn.lock index e7bdbdb..fd420b8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -906,6 +906,13 @@ dependencies: regenerator-runtime "^0.13.11" +"@babel/runtime@^7.14.6": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec" + integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA== + dependencies: + regenerator-runtime "^0.13.11" + "@babel/template@^7.18.10", "@babel/template@^7.20.7": version "7.20.7" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" @@ -940,6 +947,11 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@colors/colors@1.5.0": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" + integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + "@cspotcode/source-map-support@^0.8.0": version "0.8.1" resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" @@ -947,6 +959,38 @@ dependencies: "@jridgewell/trace-mapping" "0.3.9" +"@cypress/request@^2.88.10": + version "2.88.11" + resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.11.tgz#5a4c7399bc2d7e7ed56e92ce5acb620c8b187047" + integrity sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + http-signature "~1.3.6" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + performance-now "^2.1.0" + qs "~6.10.3" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^8.3.2" + +"@cypress/xvfb@^1.2.4": + version "1.2.4" + resolved "https://registry.yarnpkg.com/@cypress/xvfb/-/xvfb-1.2.4.tgz#2daf42e8275b39f4aa53c14214e557bd14e7748a" + integrity sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q== + dependencies: + debug "^3.1.0" + lodash.once "^4.1.1" + "@dnd-kit/accessibility@^3.0.0": version "3.0.1" resolved "https://registry.yarnpkg.com/@dnd-kit/accessibility/-/accessibility-3.0.1.tgz#3ccbefdfca595b0a23a5dc57d3de96bc6935641c" @@ -1317,6 +1361,18 @@ resolved "https://registry.yarnpkg.com/@fontsource/roboto/-/roboto-5.0.2.tgz#06f10be117be622e6c720a1c6579b00475420bcd" integrity sha512-SLw0o3kWwJ53/Ogyk8GGwSaULNX6Hogs+GsVempDdqpX8wm5hKBLYgUkdUPk+NogiViPp1x++OnkuLA+fAd9Kg== +"@hapi/hoek@^9.0.0": + version "9.3.0" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb" + integrity sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ== + +"@hapi/topo@^5.0.0": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.1.0.tgz#dc448e332c6c6e37a4dc02fd84ba8d44b9afb012" + integrity sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg== + dependencies: + "@hapi/hoek" "^9.0.0" + "@humanwhocodes/config-array@^0.11.8": version "0.11.8" resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" @@ -1747,6 +1803,23 @@ "@sentry/bundler-plugin-core" "2.2.1" unplugin "1.0.1" +"@sideway/address@^4.1.3": + version "4.1.4" + resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.4.tgz#03dccebc6ea47fdc226f7d3d1ad512955d4783f0" + integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + dependencies: + "@hapi/hoek" "^9.0.0" + +"@sideway/formula@^3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f" + integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg== + +"@sideway/pinpoint@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df" + integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + "@sinclair/typebox@^0.25.16": version "0.25.24" resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" @@ -1762,6 +1835,28 @@ magic-string "^0.25.0" string.prototype.matchall "^4.0.6" +"@testing-library/cypress@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@testing-library/cypress/-/cypress-9.0.0.tgz#3facad49c4654a99bbd138f83f33b415d2d6f097" + integrity sha512-c1XiCGeHGGTWn0LAU12sFUfoX3qfId5gcSE2yHode+vsyHDWraxDPALjVnHd4/Fa3j4KBcc5k++Ccy6A9qnkMA== + dependencies: + "@babel/runtime" "^7.14.6" + "@testing-library/dom" "^8.1.0" + +"@testing-library/dom@^8.1.0": + version "8.20.0" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.0.tgz#914aa862cef0f5e89b98cc48e3445c4c921010f6" + integrity sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/runtime" "^7.12.5" + "@types/aria-query" "^5.0.1" + aria-query "^5.0.0" + chalk "^4.1.0" + dom-accessibility-api "^0.5.9" + lz-string "^1.4.4" + pretty-format "^27.0.2" + "@testing-library/dom@^9.0.0": version "9.3.0" resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-9.3.0.tgz#ed8ce10aa5e05eb6eaf0635b5b8975d889f66075" @@ -1975,6 +2070,11 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.33.tgz#8c29a0036771569662e4635790ffa9e057db379b" integrity sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg== +"@types/node@^14.14.31": + version "14.18.50" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.50.tgz#c23e357fc76bb61f0fcdaacd18ce1771b8fe6eb4" + integrity sha512-DdJP83r2Zp5x32la3jEzjIlB85+2gMPUHP1xFL2xFORzbJ94sNwh4b6ZBaF6EN/7BTII6mba3yakqfLEnt5eZg== + "@types/parse-json@^4.0.0": version "4.0.0" resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" @@ -2080,6 +2180,16 @@ "@types/mime" "*" "@types/node" "*" +"@types/sinonjs__fake-timers@8.1.1": + version "8.1.1" + resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz#b49c2c70150141a15e0fa7e79cf1f92a72934ce3" + integrity sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g== + +"@types/sizzle@^2.3.2": + version "2.3.3" + resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.3.tgz#ff5e2f1902969d305225a047c8a0fd5c915cebef" + integrity sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ== + "@types/stack-utils@^2.0.0": version "2.0.1" resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" @@ -2134,6 +2244,13 @@ dependencies: "@types/yargs-parser" "*" +"@types/yauzl@^2.9.1": + version "2.10.0" + resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599" + integrity sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw== + dependencies: + "@types/node" "*" + "@typescript-eslint/eslint-plugin@^5.59.6": version "5.59.6" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz#a350faef1baa1e961698240f922d8de1761a9e2b" @@ -2365,6 +2482,14 @@ agent-base@6: dependencies: debug "4" +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + ajv@8.6.3, ajv@^8.6.0: version "8.6.3" resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.3.tgz#11a66527761dc3e9a3845ea775d2d3c0414e8764" @@ -2385,6 +2510,18 @@ ajv@^6.10.0, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-escapes@^4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" @@ -2397,7 +2534,7 @@ ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -2417,11 +2554,21 @@ anymatch@~3.1.2: normalize-path "^3.0.0" picomatch "^2.0.4" +arch@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" + integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== + arg@^4.1.0: version "4.1.3" resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== +arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== + argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" @@ -2499,6 +2646,18 @@ asap@^2.0.0: resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== +asn1@~0.2.3: + version "0.2.6" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== + assertion-error@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" @@ -2509,6 +2668,11 @@ ast-types-flow@^0.0.7: resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + async-listen@2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/async-listen/-/async-listen-2.0.3.tgz#be1be5a1b15e6007123e67275450fc4e84955e61" @@ -2519,7 +2683,7 @@ async-listen@3.0.0: resolved "https://registry.yarnpkg.com/async-listen/-/async-listen-3.0.0.tgz#2e5941390b7d8c753d4dbe94bc6aecbdde52ec5e" integrity sha512-V+SsTpDqkrWTimiotsyl33ePSjA5/KrithwupuvJ6ztsqPvGv6ge4OredFhPffVXiLN/QUWvE0XcqJaYgt6fOg== -async@^3.2.3: +async@^3.2.0, async@^3.2.3: version "3.2.4" resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== @@ -2539,11 +2703,29 @@ available-typed-arrays@^1.0.5: resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== + +aws4@^1.8.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" + integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== + axe-core@^4.6.2: version "4.7.0" resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.0.tgz#34ba5a48a8b564f67e103f0aa5768d76e15bbbbf" integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ== +axios@^0.27.2: + version "0.27.2" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972" + integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ== + dependencies: + follow-redirects "^1.14.9" + form-data "^4.0.0" + axobject-query@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1" @@ -2589,6 +2771,18 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== + dependencies: + tweetnacl "^0.14.3" + big-integer@^1.6.44: version "1.6.51" resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" @@ -2599,6 +2793,16 @@ binary-extensions@^2.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== +blob-util@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-2.0.2.tgz#3b4e3c281111bb7f11128518006cdc60b403a1eb" + integrity sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ== + +bluebird@3.7.2, bluebird@^3.7.2: + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + blueimp-md5@^2.10.0: version "2.19.0" resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz#b53feea5498dcb53dc6ec4b823adb84b729c4af0" @@ -2666,11 +2870,24 @@ browserslist@^4.21.3, browserslist@^4.21.5: node-releases "^2.0.8" update-browserslist-db "^1.0.10" +buffer-crc32@~0.2.3: + version "0.2.13" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== + buffer-from@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== +buffer@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + builtin-modules@^3.1.0: version "3.3.0" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" @@ -2700,6 +2917,11 @@ cac@^6.7.14: resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== +cachedir@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" + integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -2718,6 +2940,11 @@ caniuse-lite@^1.0.30001449: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz#d882d1a34d89c11aea53b8cdc791931bdab5fe1b" integrity sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA== +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== + chai@^4.3.7: version "4.3.7" resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51" @@ -2761,6 +2988,11 @@ check-error@^1.0.2: resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA== +check-more-types@2.24.0, check-more-types@^2.24.0: + version "2.24.0" + resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" + integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA== + cheerio-select@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" @@ -2811,6 +3043,35 @@ classnames@^2.2.6: resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.2.tgz#351d813bf0137fcc6a76a16b88208d2560a0d924" integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw== +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-table3@~0.6.1: + version "0.6.3" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" + integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== + dependencies: + string-width "^4.2.0" + optionalDependencies: + "@colors/colors" "1.5.0" + +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + clsx@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" @@ -2845,7 +3106,12 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -combined-stream@^1.0.8: +colorette@^2.0.16: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + +combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== @@ -2857,6 +3123,11 @@ commander@^2.20.0: resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== +commander@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" + integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== + common-tags@^1.8.0: version "1.8.2" resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" @@ -2935,6 +3206,11 @@ core-js-compat@^3.25.1: dependencies: browserslist "^4.21.5" +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== + cosmiconfig@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" @@ -2958,7 +3234,7 @@ cross-fetch@3.1.6: dependencies: node-fetch "^2.6.11" -cross-spawn@^7.0.2, cross-spawn@^7.0.3: +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -3005,11 +3281,74 @@ csstype@^3.0.2, csstype@^3.1.2: resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== +cypress-vite@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/cypress-vite/-/cypress-vite-1.4.0.tgz#4d2889d62c11aed7188b1082af16210240aac2e6" + integrity sha512-BHmOku8q6nRtDGPiBcE7zcAZs56/OsiX5SFoldHEMSQ+I6nnPUU2tcrRNeRsCArONQAvwTu2Da7R/rFGA/DSEg== + dependencies: + chokidar "^3.5.3" + debug "^4.3.4" + +cypress@^12.14.0: + version "12.14.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.14.0.tgz#37a19b85f5e9d881995e9fee1ddf41b3d3a623dd" + integrity sha512-HiLIXKXZaIT1RT7sw1sVPt+qKtis3uYNm6KwC4qoYjabwLKaqZlyS/P+uVvvlBNcHIwL/BC6nQZajpbUd7hOgQ== + dependencies: + "@cypress/request" "^2.88.10" + "@cypress/xvfb" "^1.2.4" + "@types/node" "^14.14.31" + "@types/sinonjs__fake-timers" "8.1.1" + "@types/sizzle" "^2.3.2" + arch "^2.2.0" + blob-util "^2.0.2" + bluebird "^3.7.2" + buffer "^5.6.0" + cachedir "^2.3.0" + chalk "^4.1.0" + check-more-types "^2.24.0" + cli-cursor "^3.1.0" + cli-table3 "~0.6.1" + commander "^6.2.1" + common-tags "^1.8.0" + dayjs "^1.10.4" + debug "^4.3.4" + enquirer "^2.3.6" + eventemitter2 "6.4.7" + execa "4.1.0" + executable "^4.1.1" + extract-zip "2.0.1" + figures "^3.2.0" + fs-extra "^9.1.0" + getos "^3.2.1" + is-ci "^3.0.0" + is-installed-globally "~0.4.0" + lazy-ass "^1.6.0" + listr2 "^3.8.3" + lodash "^4.17.21" + log-symbols "^4.0.0" + minimist "^1.2.8" + ospath "^1.2.2" + pretty-bytes "^5.6.0" + proxy-from-env "1.0.0" + request-progress "^3.0.0" + semver "^7.3.2" + supports-color "^8.1.1" + tmp "~0.2.1" + untildify "^4.0.0" + yauzl "^2.10.0" + damerau-levenshtein@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== + dependencies: + assert-plus "^1.0.0" + data-urls@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-4.0.0.tgz#333a454eca6f9a5b7b0f1013ff89074c3f522dd4" @@ -3026,7 +3365,7 @@ date-time@^3.1.0: dependencies: time-zone "^1.0.0" -dayjs@^1.11.8: +dayjs@^1.10.4, dayjs@^1.11.8: version "1.11.8" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.8.tgz#4282f139c8c19dd6d0c7bd571e30c2d0ba7698ea" integrity sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ== @@ -3038,14 +3377,14 @@ debug@2.6.9: dependencies: ms "2.0.0" -debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: +debug@4, debug@4.3.4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" -debug@^3.2.7: +debug@^3.1.0, debug@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== @@ -3238,6 +3577,19 @@ domutils@^3.0.1: domelementtype "^2.3.0" domhandler "^5.0.3" +duplexer@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + edge-runtime@2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/edge-runtime/-/edge-runtime-2.1.4.tgz#aea4e103897f451f98a9094df26b07c4d1eb75b3" @@ -3270,6 +3622,11 @@ electron-to-chromium@^1.4.284: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.394.tgz#989abe104a40366755648876cde2cdeda9f31133" integrity sha512-0IbC2cfr8w5LxTz+nmn2cJTGafsK9iauV2r5A5scfzyovqLrxuLoxOHE5OBobP3oVIggJT+0JfKnw9sm87c8Hw== +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + emoji-regex@^9.2.2: version "9.2.2" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" @@ -3280,6 +3637,13 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +end-of-stream@^1.1.0: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + enhanced-resolve@^5.12.0: version "5.14.0" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz#0b6c676c8a3266c99fa281e4433a706f5c0c61c4" @@ -3288,6 +3652,13 @@ enhanced-resolve@^5.12.0: graceful-fs "^4.2.4" tapable "^2.2.0" +enquirer@^2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + entities@^4.2.0, entities@^4.4.0: version "4.5.0" resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" @@ -3838,7 +4209,40 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== -execa@^5.0.0: +event-stream@=3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +eventemitter2@6.4.7: + version "6.4.7" + resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" + integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== + +execa@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" + integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + human-signals "^1.1.1" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.0" + onetime "^5.1.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + +execa@5.1.1, execa@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== @@ -3868,6 +4272,13 @@ execa@^7.1.1: signal-exit "^3.0.7" strip-final-newline "^3.0.0" +executable@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c" + integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg== + dependencies: + pify "^2.2.0" + exit-hook@2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-2.2.1.tgz#007b2d92c6428eda2b76e7016a34351586934593" @@ -3921,6 +4332,32 @@ express@^4.18.2: utils-merge "1.0.1" vary "~1.1.2" +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +extract-zip@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" + integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== + dependencies: + debug "^4.1.1" + get-stream "^5.1.0" + yauzl "^2.10.0" + optionalDependencies: + "@types/yauzl" "^2.9.1" + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== + +extsprintf@^1.2.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" + integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -3964,6 +4401,20 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fd-slicer@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" + integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== + dependencies: + pend "~1.2.0" + +figures@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + file-entry-cache@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" @@ -4024,6 +4475,11 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== +follow-redirects@^1.14.9: + version "1.15.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + for-each@^0.3.3: version "0.3.3" resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" @@ -4031,6 +4487,11 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== + form-data@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" @@ -4049,6 +4510,15 @@ form-data@^4.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + formidable@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/formidable/-/formidable-2.1.2.tgz#fa973a2bec150e4ce7cac15589d7a25fc30ebd89" @@ -4069,7 +4539,12 @@ fresh@0.5.2: resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== -fs-extra@^9.0.1: +from@~0: + version "0.1.7" + resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" + integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== + +fs-extra@^9.0.1, fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -4134,6 +4609,13 @@ get-own-enumerable-property-symbols@^3.0.0: resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== +get-stream@^5.0.0, get-stream@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" @@ -4152,6 +4634,20 @@ get-tsconfig@^4.5.0: resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.5.0.tgz#6d52d1c7b299bd3ee9cd7638561653399ac77b0f" integrity sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ== +getos@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/getos/-/getos-3.2.1.tgz#0134d1f4e00eb46144c5a9c0ac4dc087cbb27dc5" + integrity sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q== + dependencies: + async "^3.2.0" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== + dependencies: + assert-plus "^1.0.0" + glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -4188,6 +4684,13 @@ glob@9.3.2: minipass "^4.2.4" path-scurry "^1.6.1" +global-dirs@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485" + integrity sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== + dependencies: + ini "2.0.0" + globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" @@ -4359,6 +4862,15 @@ http-proxy-agent@^5.0.0: agent-base "6" debug "4" +http-signature@~1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.3.6.tgz#cb6fbfdf86d1c974f343be94e87f7fc128662cf9" + integrity sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw== + dependencies: + assert-plus "^1.0.0" + jsprim "^2.0.2" + sshpk "^1.14.1" + https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" @@ -4367,6 +4879,11 @@ https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: agent-base "6" debug "4" +human-signals@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== + human-signals@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" @@ -4422,6 +4939,11 @@ idb@^7.0.1: resolved "https://registry.yarnpkg.com/idb/-/idb-7.1.1.tgz#d910ded866d32c7ced9befc5bfdf36f572ced72b" integrity sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ== +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + ignore@^5.1.1, ignore@^5.2.0: version "5.2.4" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" @@ -4463,6 +4985,11 @@ inherits@2, inherits@2.0.4: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +ini@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" + integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== + internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" @@ -4526,6 +5053,13 @@ is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== +is-ci@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" + integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== + dependencies: + ci-info "^3.2.0" + is-core-module@^2.11.0, is-core-module@^2.12.0, is-core-module@^2.9.0: version "2.12.0" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.0.tgz#36ad62f6f73c8253fd6472517a12483cf03e7ec4" @@ -4555,6 +5089,11 @@ is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" @@ -4569,6 +5108,14 @@ is-inside-container@^1.0.0: dependencies: is-docker "^3.0.0" +is-installed-globally@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" + integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== + dependencies: + global-dirs "^3.0.0" + is-path-inside "^3.0.2" + is-map@^2.0.1, is-map@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" @@ -4601,7 +5148,7 @@ is-obj@^1.0.1: resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== -is-path-inside@^3.0.3: +is-path-inside@^3.0.2, is-path-inside@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== @@ -4671,6 +5218,16 @@ is-typed-array@^1.1.10, is-typed-array@^1.1.9: gopd "^1.0.1" has-tostringtag "^1.0.0" +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + is-weakmap@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" @@ -4708,6 +5265,11 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== + istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" @@ -4829,6 +5391,17 @@ jest-worker@^26.2.1: merge-stream "^2.0.0" supports-color "^7.0.0" +joi@^17.7.0: + version "17.9.2" + resolved "https://registry.yarnpkg.com/joi/-/joi-17.9.2.tgz#8b2e4724188369f55451aebd1d0b1d9482470690" + integrity sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw== + dependencies: + "@hapi/hoek" "^9.0.0" + "@hapi/topo" "^5.0.0" + "@sideway/address" "^4.1.3" + "@sideway/formula" "^3.0.1" + "@sideway/pinpoint" "^2.0.0" + js-sdsl@^4.1.4: version "4.4.0" resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.4.0.tgz#8b437dbe642daa95760400b602378ed8ffea8430" @@ -4851,6 +5424,11 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== + jsdom@^22.1.0: version "22.1.0" resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-22.1.0.tgz#0fca6d1a37fbeb7f4aac93d1090d782c56b611c8" @@ -4913,7 +5491,7 @@ json-schema-traverse@^1.0.0: resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== -json-schema@^0.4.0: +json-schema@0.4.0, json-schema@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== @@ -4923,6 +5501,11 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + json5@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" @@ -4964,6 +5547,16 @@ jsonpointer@^5.0.0: resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559" integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== +jsprim@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-2.0.2.tgz#77ca23dbcd4135cd364800d22ff82c2185803d4d" + integrity sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ== + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.4.0" + verror "1.10.0" + "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: version "3.3.3" resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" @@ -4984,6 +5577,11 @@ language-tags@=1.0.5: dependencies: language-subtag-registry "~0.3.2" +lazy-ass@1.6.0, lazy-ass@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513" + integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw== + leven@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" @@ -5002,6 +5600,20 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +listr2@^3.8.3: + version "3.14.0" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.14.0.tgz#23101cc62e1375fd5836b248276d1d2b51fdbe9e" + integrity sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g== + dependencies: + cli-truncate "^2.1.0" + colorette "^2.0.16" + log-update "^4.0.0" + p-map "^4.0.0" + rfdc "^1.3.0" + rxjs "^7.5.1" + through "^2.3.8" + wrap-ansi "^7.0.0" + local-pkg@^0.4.3: version "0.4.3" resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" @@ -5029,6 +5641,11 @@ lodash.merge@^4.6.2: resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== +lodash.once@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== + lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -5039,6 +5656,24 @@ lodash@^4.0.1, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +log-symbols@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== + dependencies: + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" + loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" @@ -5077,7 +5712,7 @@ lru_map@^0.3.3: resolved "https://registry.yarnpkg.com/lru_map/-/lru_map-0.3.3.tgz#b5c8351b9464cbd750335a79650a0ec0e56118dd" integrity sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ== -lz-string@^1.5.0: +lz-string@^1.4.4, lz-string@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ== @@ -5115,6 +5750,11 @@ make-error@^1.1.1: resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== + material-colors@^1.2.1: version "1.2.6" resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.6.tgz#6d1958871126992ceecc72f4bcc4d8f010865f46" @@ -5180,7 +5820,7 @@ mime-db@1.52.0: resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== @@ -5233,7 +5873,7 @@ minimatch@^7.4.1: dependencies: brace-expansion "^2.0.1" -minimist@^1.2.0, minimist@^1.2.6: +minimist@^1.2.0, minimist@^1.2.6, minimist@^1.2.7, minimist@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -5327,7 +5967,7 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== -npm-run-path@^4.0.1: +npm-run-path@^4.0.0, npm-run-path@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== @@ -5428,14 +6068,14 @@ on-finished@2.4.1: dependencies: ee-first "1.1.1" -once@^1.3.0, once@^1.4.0: +once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" -onetime@^5.1.2: +onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== @@ -5471,6 +6111,11 @@ optionator@^0.9.1: type-check "^0.4.0" word-wrap "^1.2.3" +ospath@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b" + integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA== + p-limit@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" @@ -5492,6 +6137,13 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -5597,6 +6249,23 @@ pathval@^1.1.1: resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" + integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== + dependencies: + through "~2.3" + +pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== + picocolors@1.0.0, picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" @@ -5607,6 +6276,11 @@ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3, picomatc resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +pify@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + pkg-types@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" @@ -5630,7 +6304,7 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== -pretty-bytes@5.6.0, pretty-bytes@^5.3.0: +pretty-bytes@5.6.0, pretty-bytes@^5.3.0, pretty-bytes@^5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== @@ -5687,16 +6361,36 @@ proxy-addr@~2.0.7: forwarded "0.2.0" ipaddr.js "1.9.1" +proxy-from-env@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" + integrity sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A== + proxy-from-env@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== -psl@^1.1.33: +ps-tree@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" + integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== + dependencies: + event-stream "=3.3.4" + +psl@^1.1.28, psl@^1.1.33: version "1.9.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" @@ -5716,6 +6410,13 @@ qs@^6.11.0: dependencies: side-channel "^1.0.4" +qs@~6.10.3: + version "6.10.5" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" + integrity sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ== + dependencies: + side-channel "^1.0.4" + querystringify@^2.1.1: version "2.2.0" resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" @@ -5924,6 +6625,13 @@ regjsparser@^0.9.1: dependencies: jsesc "~0.5.0" +request-progress@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe" + integrity sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg== + dependencies: + throttleit "^1.0.0" + require-from-string@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" @@ -5962,12 +6670,25 @@ resolve@^2.0.0-next.4: path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + reusify@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== -rimraf@^3.0.2: +rfdc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" + integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== + +rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== @@ -6017,7 +6738,14 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -safe-buffer@5.2.1, safe-buffer@^5.1.0: +rxjs@^7.5.1, rxjs@^7.8.0: + version "7.8.1" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + dependencies: + tslib "^2.1.0" + +safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== @@ -6031,7 +6759,7 @@ safe-regex-test@^1.0.0: get-intrinsic "^1.1.3" is-regex "^1.1.4" -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -6129,7 +6857,7 @@ siginfo@^2.0.0: resolved "https://registry.yarnpkg.com/siginfo/-/siginfo-2.0.0.tgz#32e76c70b79724e3bb567cb9d543eb858ccfaf30" integrity sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== -signal-exit@^3.0.3, signal-exit@^3.0.7: +signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== @@ -6144,6 +6872,24 @@ slash@^4.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + source-map-js@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" @@ -6184,6 +6930,28 @@ specificity@^0.4.1: resolved "https://registry.yarnpkg.com/specificity/-/specificity-0.4.1.tgz#aab5e645012db08ba182e151165738d00887b019" integrity sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg== +split@0.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== + dependencies: + through "2" + +sshpk@^1.14.1: + version "1.17.0" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" + integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + stack-utils@^2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" @@ -6196,6 +6964,20 @@ stackback@0.0.2: resolved "https://registry.yarnpkg.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b" integrity sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== +start-server-and-test@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/start-server-and-test/-/start-server-and-test-2.0.0.tgz#0644809d63036a8a001efb70582f3e37ebfdd33d" + integrity sha512-UqKLw0mJbfrsG1jcRLTUlvuRi9sjNuUiDOLI42r7R5fA9dsFoywAy9DoLXNYys9B886E4RCKb+qM1Gzu96h7DQ== + dependencies: + arg "^5.0.2" + bluebird "3.7.2" + check-more-types "2.24.0" + debug "4.3.4" + execa "5.1.1" + lazy-ass "1.6.0" + ps-tree "1.2.0" + wait-on "7.0.1" + statuses@2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" @@ -6213,6 +6995,22 @@ stop-iteration-iterator@^1.0.0: dependencies: internal-slot "^1.0.4" +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== + dependencies: + duplexer "~0.1.1" + +string-width@^4.1.0, string-width@^4.2.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string.prototype.matchall@^4.0.6, string.prototype.matchall@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" @@ -6263,7 +7061,7 @@ stringify-object@^3.3.0: is-obj "^1.0.1" is-regexp "^1.0.0" -strip-ansi@^6.0.1: +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -6352,6 +7150,13 @@ supports-color@^7.0.0, supports-color@^7.1.0: dependencies: has-flag "^4.0.0" +supports-color@^8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" @@ -6414,6 +7219,16 @@ text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== +throttleit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" + integrity sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g== + +through@2, through@^2.3.8, through@~2.3, through@~2.3.1: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + time-span@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/time-span/-/time-span-4.0.0.tgz#fe74cd50a54e7998712f90ddfe47109040c985c4" @@ -6451,6 +7266,13 @@ titleize@^3.0.0: resolved "https://registry.yarnpkg.com/titleize/-/titleize-3.0.0.tgz#71c12eb7fdd2558aa8a44b0be83b8a76694acd53" integrity sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ== +tmp@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" + integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== + dependencies: + rimraf "^3.0.0" + to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" @@ -6478,6 +7300,14 @@ tough-cookie@^4.1.2: universalify "^0.2.0" url-parse "^1.5.3" +tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + tr46@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" @@ -6549,7 +7379,7 @@ tslib@^1.8.1, tslib@^1.9.3: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.0.0, tslib@^2.5.0, tslib@^2.5.3: +tslib@^2.0.0, tslib@^2.1.0, tslib@^2.5.0, tslib@^2.5.3: version "2.5.3" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== @@ -6561,6 +7391,18 @@ tsutils@^3.21.0: dependencies: tslib "^1.8.1" +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" @@ -6583,6 +7425,11 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" @@ -6723,6 +7570,11 @@ utils-merge@1.0.1: resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + v8-compile-cache-lib@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" @@ -6733,6 +7585,15 @@ vary@~1.1.2: resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + vite-node@0.32.0: version "0.32.0" resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-0.32.0.tgz#8ee54539fa75d1271adaa9788c8ba526480f4519" @@ -6819,6 +7680,17 @@ w3c-xmlserializer@^4.0.0: dependencies: xml-name-validator "^4.0.0" +wait-on@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/wait-on/-/wait-on-7.0.1.tgz#5cff9f8427e94f4deacbc2762e6b0a489b19eae9" + integrity sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog== + dependencies: + axios "^0.27.2" + joi "^17.7.0" + lodash "^4.17.21" + minimist "^1.2.7" + rxjs "^7.8.0" + webidl-conversions@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" @@ -7097,6 +7969,24 @@ workbox-window@7.0.0, workbox-window@^7.0.0: "@types/trusted-types" "^2.0.2" workbox-core "7.0.0" +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" @@ -7132,6 +8022,14 @@ yaml@^1.10.0: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== +yauzl@^2.10.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" + integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== + dependencies: + buffer-crc32 "~0.2.3" + fd-slicer "~1.1.0" + yn@3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" From 88bea2804402652d8b86a5ad5fafe06020badf6b Mon Sep 17 00:00:00 2001 From: Bartosz Date: Tue, 15 Aug 2023 22:06:21 +0200 Subject: [PATCH 8/9] [tests] Add and fix tests, re-setup github actions --- .github/workflows/run-lint.yml | 9 +- .github/workflows/run-tests.yml | 40 +- .github/workflows/run-tsc.yml | 9 +- .nyc_output/out.json | 23585 ++++++++++++++++ .nycrc.json | 15 + TODO.md | 7 + cypress.config.ts | 30 +- cypress/e2e/speeddial/create-link.cy.ts | 24 +- cypress/e2e/speeddial/edit-link.cy.ts | 37 + cypress/e2e/speeddial/edit-link.cy.ts.todo | 0 cypress/support/commands.ts | 20 +- cypress/support/e2e.ts | 17 +- eslint.config.js | 7 +- package.json | 10 +- src/__tests__/__snapshots__/app.test.tsx.snap | 9 +- .../__snapshots__/index.test.tsx.snap | 4 +- .../__snapshots__/index.test.tsx.snap | 570 +- .../__snapshots__/add-tile.test.tsx.snap | 117 +- .../components/__tests__/add-tile.test.tsx | 130 +- .../speeddial/components/add-tile.tsx | 28 +- src/components/speeddial/group-contents.tsx | 17 +- vite.config.ts | 11 +- yarn.lock | 990 +- 23 files changed, 24820 insertions(+), 866 deletions(-) create mode 100644 .nyc_output/out.json create mode 100644 .nycrc.json create mode 100644 TODO.md create mode 100644 cypress/e2e/speeddial/edit-link.cy.ts delete mode 100644 cypress/e2e/speeddial/edit-link.cy.ts.todo diff --git a/.github/workflows/run-lint.yml b/.github/workflows/run-lint.yml index a3e4a2d..ddc8ed1 100644 --- a/.github/workflows/run-lint.yml +++ b/.github/workflows/run-lint.yml @@ -8,11 +8,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v3 - name: Use Node.js uses: actions/setup-node@v3 with: node-version: 18 cache: yarn - - run: yarn install --frozen-lockfile - - run: yarn lint + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Run linter + run: yarn lint diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8244297..a070fa2 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -4,20 +4,50 @@ on: workflow_call jobs: - tests: + unit-tests: runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: 18 + cache: yarn + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Run unit tests with coverage + run: yarn coverage + - name: Archive code coverage results + uses: actions/upload-artifact@v3 + with: + name: coverage/unit + path: coverage + e2e: + strategy: + matrix: + browser: [chrome, firefox] + runs-on: ubuntu-22.04 + container: + image: cypress/browsers:latest + options: --user 1001 steps: - - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v3 - name: Use Node.js uses: actions/setup-node@v3 with: node-version: 18 cache: yarn - - run: yarn install --frozen-lockfile - - run: yarn coverage + - name: Run cypress e2e testing + uses: cypress-io/github-action@v5 + with: + browser: ${{ matrix.browser }} + start: yarn d --listen 5137 + wait-on: 'http://localhost:5137' - name: Archive code coverage results uses: actions/upload-artifact@v3 with: - name: code-coverage-report + name: coverage/e2e path: coverage diff --git a/.github/workflows/run-tsc.yml b/.github/workflows/run-tsc.yml index cd5f1fc..7649ab5 100644 --- a/.github/workflows/run-tsc.yml +++ b/.github/workflows/run-tsc.yml @@ -8,11 +8,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v3 - name: Use Node.js uses: actions/setup-node@v3 with: node-version: 18 cache: yarn - - run: yarn install --frozen-lockfile - - run: yarn tsc --noEmit + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Check types + run: yarn tsc --noEmit diff --git a/.nyc_output/out.json b/.nyc_output/out.json new file mode 100644 index 0000000..15256d2 --- /dev/null +++ b/.nyc_output/out.json @@ -0,0 +1,23585 @@ +{ + "/home/bartosz/projects/speeddial/src/sentry.ts": { + "path": "/home/bartosz/projects/speeddial/src/sentry.ts", + "statementMap": { + "0": { + "start": { + "line": 2, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 3, + "column": 2 + }, + "end": { + "line": 14, + "column": 5 + } + } + }, + "fnMap": {}, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 2, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 2, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 2 + } + }, + "s": { + "0": 2, + "1": 2 + }, + "f": {}, + "b": { + "0": [ + 2, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/sentry.ts" + ], + "mappings": "AAAA,SAAS,QAAQ,YAAY,sBAAsB;AAGnD,IAAI,YAAY,IAAI,iBAAiB;AACjC,aAAW;AAAA,IACP,KAAK,YAAY,IAAI;AAAA,IACrB,aAAa,YAAY,IAAI;AAAA,IAC7B,cAAc,CAAC,IAAI,eAAe,CAAC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAOnC,kBAAkB;AAAA,IAClB,QAAQ;AAAA,EACZ,CAAC;AACL;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "dc7f5175cf4898129388a16b031ff548d66e6367" + }, + "/home/bartosz/projects/speeddial/src/i18n.ts": { + "path": "/home/bartosz/projects/speeddial/src/i18n.ts", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 11, + "column": 3 + } + } + }, + "fnMap": {}, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 7, + "column": 15 + }, + "end": { + "line": 7, + "column": 58 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 7, + "column": 37 + }, + "end": { + "line": 7, + "column": 42 + } + }, + { + "start": { + "line": 7, + "column": 45 + }, + "end": { + "line": 7, + "column": 58 + } + } + ], + "line": 7 + }, + "1": { + "loc": { + "start": { + "line": 10, + "column": 17 + }, + "end": { + "line": 10, + "column": 73 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 10, + "column": 39 + }, + "end": { + "line": 10, + "column": 58 + } + }, + { + "start": { + "line": 10, + "column": 61 + }, + "end": { + "line": 10, + "column": 73 + } + } + ], + "line": 10 + } + }, + "s": { + "0": 2 + }, + "f": {}, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 2, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/i18n.ts" + ], + "mappings": "AAAA,OAAO,UAAU;AACjB,OAAO,sBAAsB;AAC7B,OAAO,aAAa;AACpB,SAAS,wBAAwB;AAcjC,MAAM,KACD,IAAI,OAAO,EACX,IAAI,gBAAgB,EACpB,IAAI,gBAAgB,EACpB,KAAK;AAAA,EACF,OAAO,YAAY,IAAI;AAAA,EACvB,aAAa,YAAY,IAAI,MAAM,QAAQ,CAAC,MAAM,KAAK;AAAA,EACvD,eAAe,EAAE,aAAa,MAAM;AAAA,EACpC,MAAM;AAAA,EACN,eAAe,YAAY,IAAI,MAAM,CAAC,MAAM,MAAM,KAAK,IAAI,CAAC,MAAM,IAAI;AAC1E,CAAC;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "630504375fcb2e1299f98ab6b43dc80da70b5e91" + }, + "/home/bartosz/projects/speeddial/src/data/redux-toolkit.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/redux-toolkit.ts", + "statementMap": { + "0": { + "start": { + "line": 3, + "column": 30 + }, + "end": { + "line": 3, + "column": 41 + } + }, + "1": { + "start": { + "line": 4, + "column": 35 + }, + "end": { + "line": 4, + "column": 63 + } + } + }, + "fnMap": {}, + "branchMap": {}, + "s": { + "0": 2, + "1": 2 + }, + "f": {}, + "b": {}, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/data/redux-toolkit.ts" + ], + "mappings": "AAAA,SAAS,wBAAwB;AACjC,SAAS,mBAAmB;AAKrB,aAAM,iBAA0C;AAEhD,aAAM,sBAAsB,iBAAiB,UAKjD;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "a14c455ed7affe49f3442a578f985b75b289b2dc" + }, + "/home/bartosz/projects/speeddial/src/data/config/slice.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/config/slice.ts", + "statementMap": { + "0": { + "start": { + "line": 4, + "column": 28 + }, + "end": { + "line": 7, + "column": 2 + } + }, + "1": { + "start": { + "line": 4, + "column": 35 + }, + "end": { + "line": 7, + "column": 1 + } + }, + "2": { + "start": { + "line": 8, + "column": 35 + }, + "end": { + "line": 8, + "column": 39 + } + }, + "3": { + "start": { + "line": 9, + "column": 23 + }, + "end": { + "line": 23, + "column": 1 + } + }, + "4": { + "start": { + "line": 11, + "column": 8 + }, + "end": { + "line": 22, + "column": 4 + } + }, + "5": { + "start": { + "line": 12, + "column": 17 + }, + "end": { + "line": 12, + "column": 94 + } + }, + "6": { + "start": { + "line": 13, + "column": 18 + }, + "end": { + "line": 13, + "column": 45 + } + }, + "7": { + "start": { + "line": 14, + "column": 4 + }, + "end": { + "line": 14, + "column": 82 + } + }, + "8": { + "start": { + "line": 15, + "column": 4 + }, + "end": { + "line": 15, + "column": 50 + } + }, + "9": { + "start": { + "line": 16, + "column": 4 + }, + "end": { + "line": 16, + "column": 18 + } + }, + "10": { + "start": { + "line": 17, + "column": 4 + }, + "end": { + "line": 21, + "column": 35 + } + }, + "11": { + "start": { + "line": 18, + "column": 6 + }, + "end": { + "line": 18, + "column": 45 + } + }, + "12": { + "start": { + "line": 19, + "column": 6 + }, + "end": { + "line": 19, + "column": 21 + } + }, + "13": { + "start": { + "line": 20, + "column": 6 + }, + "end": { + "line": 20, + "column": 16 + } + }, + "14": { + "start": { + "line": 24, + "column": 23 + }, + "end": { + "line": 52, + "column": 1 + } + }, + "15": { + "start": { + "line": 26, + "column": 19 + }, + "end": { + "line": 51, + "column": 4 + } + }, + "16": { + "start": { + "line": 27, + "column": 18 + }, + "end": { + "line": 27, + "column": 49 + } + }, + "17": { + "start": { + "line": 28, + "column": 4 + }, + "end": { + "line": 28, + "column": 24 + } + }, + "18": { + "start": { + "line": 29, + "column": 4 + }, + "end": { + "line": 29, + "column": 38 + } + }, + "19": { + "start": { + "line": 30, + "column": 4 + }, + "end": { + "line": 45, + "column": 7 + } + }, + "20": { + "start": { + "line": 31, + "column": 19 + }, + "end": { + "line": 31, + "column": 35 + } + }, + "21": { + "start": { + "line": 32, + "column": 6 + }, + "end": { + "line": 42, + "column": 7 + } + }, + "22": { + "start": { + "line": 33, + "column": 8 + }, + "end": { + "line": 33, + "column": 40 + } + }, + "23": { + "start": { + "line": 34, + "column": 25 + }, + "end": { + "line": 34, + "column": 42 + } + }, + "24": { + "start": { + "line": 35, + "column": 21 + }, + "end": { + "line": 35, + "column": 41 + } + }, + "25": { + "start": { + "line": 36, + "column": 8 + }, + "end": { + "line": 40, + "column": 9 + } + }, + "26": { + "start": { + "line": 37, + "column": 10 + }, + "end": { + "line": 39, + "column": 11 + } + }, + "27": { + "start": { + "line": 38, + "column": 12 + }, + "end": { + "line": 38, + "column": 49 + } + }, + "28": { + "start": { + "line": 41, + "column": 8 + }, + "end": { + "line": 41, + "column": 33 + } + }, + "29": { + "start": { + "line": 43, + "column": 6 + }, + "end": { + "line": 43, + "column": 21 + } + }, + "30": { + "start": { + "line": 44, + "column": 6 + }, + "end": { + "line": 44, + "column": 16 + } + }, + "31": { + "start": { + "line": 46, + "column": 4 + }, + "end": { + "line": 49, + "column": 7 + } + }, + "32": { + "start": { + "line": 47, + "column": 6 + }, + "end": { + "line": 47, + "column": 21 + } + }, + "33": { + "start": { + "line": 48, + "column": 6 + }, + "end": { + "line": 48, + "column": 16 + } + }, + "34": { + "start": { + "line": 50, + "column": 4 + }, + "end": { + "line": 50, + "column": 18 + } + }, + "35": { + "start": { + "line": 53, + "column": 60 + }, + "end": { + "line": 67, + "column": 2 + } + }, + "36": { + "start": { + "line": 58, + "column": 6 + }, + "end": { + "line": 58, + "column": 29 + } + }, + "37": { + "start": { + "line": 61, + "column": 6 + }, + "end": { + "line": 61, + "column": 30 + } + }, + "38": { + "start": { + "line": 64, + "column": 6 + }, + "end": { + "line": 64, + "column": 37 + } + }, + "39": { + "start": { + "line": 68, + "column": 23 + }, + "end": { + "line": 72, + "column": 1 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 4, + "column": 28 + }, + "end": { + "line": 4, + "column": 29 + } + }, + "loc": { + "start": { + "line": 4, + "column": 35 + }, + "end": { + "line": 7, + "column": 1 + } + }, + "line": 4 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 11, + "column": 3 + } + }, + "loc": { + "start": { + "line": 11, + "column": 8 + }, + "end": { + "line": 22, + "column": 4 + } + }, + "line": 11 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 11, + "column": 20 + }, + "end": { + "line": 11, + "column": 21 + } + }, + "loc": { + "start": { + "line": 11, + "column": 33 + }, + "end": { + "line": 22, + "column": 3 + } + }, + "line": 11 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 17, + "column": 15 + }, + "end": { + "line": 17, + "column": 16 + } + }, + "loc": { + "start": { + "line": 17, + "column": 21 + }, + "end": { + "line": 21, + "column": 5 + } + }, + "line": 17 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 26, + "column": 2 + }, + "end": { + "line": 26, + "column": 3 + } + }, + "loc": { + "start": { + "line": 26, + "column": 19 + }, + "end": { + "line": 51, + "column": 4 + } + }, + "line": 26 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 26, + "column": 31 + }, + "end": { + "line": 26, + "column": 32 + } + }, + "loc": { + "start": { + "line": 26, + "column": 44 + }, + "end": { + "line": 51, + "column": 3 + } + }, + "line": 26 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 30, + "column": 37 + }, + "end": { + "line": 30, + "column": 38 + } + }, + "loc": { + "start": { + "line": 30, + "column": 49 + }, + "end": { + "line": 45, + "column": 5 + } + }, + "line": 30 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 46, + "column": 37 + }, + "end": { + "line": 46, + "column": 38 + } + }, + "loc": { + "start": { + "line": 46, + "column": 43 + }, + "end": { + "line": 49, + "column": 5 + } + }, + "line": 46 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 57, + "column": 4 + }, + "end": { + "line": 57, + "column": 5 + } + }, + "loc": { + "start": { + "line": 57, + "column": 21 + }, + "end": { + "line": 59, + "column": 5 + } + }, + "line": 57 + }, + "9": { + "name": "(anonymous_9)", + "decl": { + "start": { + "line": 60, + "column": 4 + }, + "end": { + "line": 60, + "column": 5 + } + }, + "loc": { + "start": { + "line": 60, + "column": 22 + }, + "end": { + "line": 62, + "column": 5 + } + }, + "line": 60 + }, + "10": { + "name": "(anonymous_10)", + "decl": { + "start": { + "line": 63, + "column": 4 + }, + "end": { + "line": 63, + "column": 5 + } + }, + "loc": { + "start": { + "line": 63, + "column": 37 + }, + "end": { + "line": 65, + "column": 5 + } + }, + "line": 63 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 32, + "column": 6 + }, + "end": { + "line": 42, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 32, + "column": 6 + }, + "end": { + "line": 42, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 32 + }, + "1": { + "loc": { + "start": { + "line": 37, + "column": 10 + }, + "end": { + "line": 39, + "column": 11 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 37, + "column": 10 + }, + "end": { + "line": 39, + "column": 11 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 37 + } + }, + "s": { + "0": 2, + "1": 6, + "2": 2, + "3": 2, + "4": 0, + "5": 0, + "6": 0, + "7": 0, + "8": 0, + "9": 0, + "10": 0, + "11": 0, + "12": 0, + "13": 0, + "14": 2, + "15": 0, + "16": 0, + "17": 0, + "18": 0, + "19": 0, + "20": 0, + "21": 0, + "22": 0, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 0, + "34": 0, + "35": 2, + "36": 0, + "37": 0, + "38": 0, + "39": 2 + }, + "f": { + "0": 6, + "1": 0, + "2": 0, + "3": 0, + "4": 0, + "5": 0, + "6": 0, + "7": 0, + "8": 0, + "9": 0, + "10": 0 + }, + "b": { + "0": [ + 0, + 0 + ], + "1": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/data/config/slice.ts" + ], + "mappings": "AACA,SAAS,mBAAmB;AAC5B,OAAO,WAAW;AAElB,SAAS,2BAA2B;AAK7B,aAAM,eAAe,OAAO;AAAA,EAC/B,WAAW;AAAA,EACX,WAAW;AACf;AAGA,MAAM,6BAA6B;AACnC,MAAM,iBAAiB;AAAA,EACnB;AAAA,EACA,MAAM,IAAI,QAAc,aAAW;AAC/B,UAAM,OAAO,IAAI,KAAK,CAAC,KAAK,UAAU,EAAE,GAAG,aAAa,CAAC,CAAC,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAEzF,UAAM,QAAQ,SAAS,cAAc,GAAG;AACxC,UAAM,WAAW,oBAAoB,MAAM,EAAE,OAAO,iBAAiB;AACrE,UAAM,OAAO,OAAO,IAAI,gBAAgB,IAAI;AAE5C,UAAM,MAAM;AACZ,eAAW,MAAM;AACb,aAAO,IAAI,gBAAgB,MAAM,IAAI;AACrC,YAAM,OAAO;AACb,cAAQ;AAAA,IACZ,GAAG,0BAA0B;AAAA,EACjC,CAAC;AACL;AAEA,MAAM,iBAAiB;AAAA,EACnB;AAAA,EACA,CAAC,GAAG,aAAa,IAAI,QAAc,aAAW;AAC1C,UAAM,QAAQ,SAAS,cAAc,OAAO;AAC5C,UAAM,OAAO;AACb,UAAM,SAAS;AAEf,UAAM,iBAAiB,UAAU,YAAY;AACzC,YAAM,OAAO,MAAM,QAAQ,CAAC;AAE5B,UAAI,MAAM;AACN,iBAAS,MAAM,eAAe;AAE9B,cAAM,WAAW,MAAM,KAAK,KAAK;AACjC,cAAM,OAAO,KAAK,MAAM,QAAQ;AAEhC,mBAAW,OAAO,MAAM;AACpB,cAAI,OAAO,OAAO,MAAM,GAAG,GAAG;AAC1B,yBAAa,QAAQ,KAAK,KAAK,GAAG,CAAC;AAAA,UACvC;AAAA,QACJ;AAEA,eAAO,SAAS,OAAO;AAAA,MAC3B;AAEA,YAAM,OAAO;AACb,cAAQ;AAAA,IACZ,CAAC;AACD,UAAM,iBAAiB,UAAU,MAAM;AACnC,YAAM,OAAO;AACb,cAAQ;AAAA,IACZ,CAAC;AAED,UAAM,MAAM;AAAA,EAChB,CAAC;AACL;AAEA,MAAM,EAAE,SAAS,cAAc,MAAM,WAAW,QAAQ,IAAI,YAAY;AAAA,EACpE,MAAM;AAAA,EACN;AAAA,EACA,UAAU;AAAA,IACN,UAAU,OAAO;AACb,YAAM,YAAY;AAAA,IACtB;AAAA,IACA,WAAW,OAAO;AACd,YAAM,YAAY;AAAA,IACtB;AAAA,IAEA,aAAa,OAAO,EAAE,QAAQ,GAA8C;AACxE,YAAM,YAAY,QAAQ;AAAA,IAC9B;AAAA,EACJ;AACJ,CAAC;AAEM,aAAM,UAAU;AAAA,EACnB,GAAG;AAAA,EACH;AAAA,EACA;AACJ;AAEA,SAAS,WAAW;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "b2610396a61154eb160d38e55aff20b8d0ecb422" + }, + "/home/bartosz/projects/speeddial/src/data/config/selectors.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/config/selectors.ts", + "statementMap": { + "0": { + "start": { + "line": 3, + "column": 25 + }, + "end": { + "line": 3, + "column": 52 + } + }, + "1": { + "start": { + "line": 3, + "column": 36 + }, + "end": { + "line": 3, + "column": 52 + } + }, + "2": { + "start": { + "line": 4, + "column": 28 + }, + "end": { + "line": 4, + "column": 73 + } + }, + "3": { + "start": { + "line": 4, + "column": 61 + }, + "end": { + "line": 4, + "column": 72 + } + }, + "4": { + "start": { + "line": 5, + "column": 31 + }, + "end": { + "line": 5, + "column": 76 + } + }, + "5": { + "start": { + "line": 5, + "column": 64 + }, + "end": { + "line": 5, + "column": 75 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 3, + "column": 25 + }, + "end": { + "line": 3, + "column": 26 + } + }, + "loc": { + "start": { + "line": 3, + "column": 36 + }, + "end": { + "line": 3, + "column": 52 + } + }, + "line": 3 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 4, + "column": 54 + }, + "end": { + "line": 4, + "column": 55 + } + }, + "loc": { + "start": { + "line": 4, + "column": 61 + }, + "end": { + "line": 4, + "column": 72 + } + }, + "line": 4 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 5, + "column": 57 + }, + "end": { + "line": 5, + "column": 58 + } + }, + "loc": { + "start": { + "line": 5, + "column": 64 + }, + "end": { + "line": 5, + "column": 75 + } + }, + "line": 5 + } + }, + "branchMap": {}, + "s": { + "0": 2, + "1": 12, + "2": 2, + "3": 2, + "4": 2, + "5": 2 + }, + "f": { + "0": 12, + "1": 2, + "2": 2 + }, + "b": {}, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/data/config/selectors.ts" + ], + "mappings": "AAAA,SAAS,sBAAsB;AAI/B,SAAS,iBAAiB;AAGnB,aAAM,YAAY,CAAC,UAAqB,MAAM,SAAS;AAEvD,aAAM,eAAe,eAAe,WAAW,OAAK,EAAE,SAAS;AAE/D,aAAM,kBAAkB,eAAe,WAAW,OAAK,EAAE,SAAS;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "917d8f605dfbaff8e264ef45288758537901d36a" + }, + "/home/bartosz/projects/speeddial/src/data/config/index.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/config/index.ts", + "statementMap": { + "0": { + "start": { + "line": 4, + "column": 32 + }, + "end": { + "line": 12, + "column": 1 + } + } + }, + "fnMap": {}, + "branchMap": {}, + "s": { + "0": 2 + }, + "f": {}, + "b": {}, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/data/config/index.ts" + ], + "mappings": "AAAA,OAAO,oBAAoB;AAC3B,OAAO,uBAAuB;AAE9B,SAAS,SAAS,iBAAiB;AAG5B,aAAM,mBAAmB;AAAA,EAC5B;AAAA,IACI,SAAS;AAAA,IACT,KAAK;AAAA,IACL,SAAS;AAAA,IACT,WAAW,CAAC,WAAW;AAAA,EAC3B;AAAA,EACA;AACJ;AAEA,2BAA2B;AAC3B,cAAc;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "572aabbab5fbe283fd6152dce9c4e4aa3dad3158" + }, + "/home/bartosz/projects/speeddial/src/data/speeddial/slice.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/speeddial/slice.ts", + "statementMap": { + "0": { + "start": { + "line": 3, + "column": 28 + }, + "end": { + "line": 3, + "column": 49 + } + }, + "1": { + "start": { + "line": 4, + "column": 29 + }, + "end": { + "line": 4, + "column": 50 + } + }, + "2": { + "start": { + "line": 5, + "column": 33 + }, + "end": { + "line": 5, + "column": 43 + } + }, + "3": { + "start": { + "line": 7, + "column": 2 + }, + "end": { + "line": 7, + "column": 76 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 102 + } + }, + "5": { + "start": { + "line": 12, + "column": 28 + }, + "end": { + "line": 16, + "column": 2 + } + }, + "6": { + "start": { + "line": 12, + "column": 35 + }, + "end": { + "line": 16, + "column": 1 + } + }, + "7": { + "start": { + "line": 18, + "column": 2 + }, + "end": { + "line": 18, + "column": 49 + } + }, + "8": { + "start": { + "line": 21, + "column": 16 + }, + "end": { + "line": 21, + "column": 34 + } + }, + "9": { + "start": { + "line": 22, + "column": 2 + }, + "end": { + "line": 22, + "column": 67 + } + }, + "10": { + "start": { + "line": 25, + "column": 17 + }, + "end": { + "line": 25, + "column": 35 + } + }, + "11": { + "start": { + "line": 26, + "column": 2 + }, + "end": { + "line": 29, + "column": 3 + } + }, + "12": { + "start": { + "line": 27, + "column": 18 + }, + "end": { + "line": 27, + "column": 48 + } + }, + "13": { + "start": { + "line": 28, + "column": 4 + }, + "end": { + "line": 28, + "column": 37 + } + }, + "14": { + "start": { + "line": 31, + "column": 53 + }, + "end": { + "line": 98, + "column": 2 + } + }, + "15": { + "start": { + "line": 36, + "column": 20 + }, + "end": { + "line": 36, + "column": 42 + } + }, + "16": { + "start": { + "line": 37, + "column": 6 + }, + "end": { + "line": 37, + "column": 48 + } + }, + "17": { + "start": { + "line": 38, + "column": 6 + }, + "end": { + "line": 38, + "column": 61 + } + }, + "18": { + "start": { + "line": 41, + "column": 19 + }, + "end": { + "line": 41, + "column": 40 + } + }, + "19": { + "start": { + "line": 42, + "column": 6 + }, + "end": { + "line": 42, + "column": 45 + } + }, + "20": { + "start": { + "line": 43, + "column": 6 + }, + "end": { + "line": 48, + "column": 8 + } + }, + "21": { + "start": { + "line": 51, + "column": 6 + }, + "end": { + "line": 51, + "column": 79 + } + }, + "22": { + "start": { + "line": 54, + "column": 21 + }, + "end": { + "line": 54, + "column": 58 + } + }, + "23": { + "start": { + "line": 55, + "column": 6 + }, + "end": { + "line": 58, + "column": 7 + } + }, + "24": { + "start": { + "line": 56, + "column": 8 + }, + "end": { + "line": 56, + "column": 66 + } + }, + "25": { + "start": { + "line": 57, + "column": 8 + }, + "end": { + "line": 57, + "column": 45 + } + }, + "26": { + "start": { + "line": 61, + "column": 6 + }, + "end": { + "line": 61, + "column": 59 + } + }, + "27": { + "start": { + "line": 64, + "column": 6 + }, + "end": { + "line": 66, + "column": 7 + } + }, + "28": { + "start": { + "line": 65, + "column": 8 + }, + "end": { + "line": 65, + "column": 65 + } + }, + "29": { + "start": { + "line": 67, + "column": 6 + }, + "end": { + "line": 67, + "column": 30 + } + }, + "30": { + "start": { + "line": 70, + "column": 6 + }, + "end": { + "line": 70, + "column": 30 + } + }, + "31": { + "start": { + "line": 71, + "column": 6 + }, + "end": { + "line": 71, + "column": 61 + } + }, + "32": { + "start": { + "line": 74, + "column": 6 + }, + "end": { + "line": 74, + "column": 51 + } + }, + "33": { + "start": { + "line": 75, + "column": 6 + }, + "end": { + "line": 77, + "column": 7 + } + }, + "34": { + "start": { + "line": 76, + "column": 8 + }, + "end": { + "line": 76, + "column": 73 + } + }, + "35": { + "start": { + "line": 78, + "column": 6 + }, + "end": { + "line": 78, + "column": 30 + } + }, + "36": { + "start": { + "line": 82, + "column": 8 + }, + "end": { + "line": 82, + "column": 63 + } + }, + "37": { + "start": { + "line": 85, + "column": 8 + }, + "end": { + "line": 85, + "column": 55 + } + }, + "38": { + "start": { + "line": 89, + "column": 6 + }, + "end": { + "line": 89, + "column": 62 + } + }, + "39": { + "start": { + "line": 90, + "column": 6 + }, + "end": { + "line": 90, + "column": 54 + } + }, + "40": { + "start": { + "line": 93, + "column": 6 + }, + "end": { + "line": 93, + "column": 63 + } + }, + "41": { + "start": { + "line": 94, + "column": 6 + }, + "end": { + "line": 94, + "column": 94 + } + }, + "42": { + "start": { + "line": 95, + "column": 6 + }, + "end": { + "line": 95, + "column": 56 + } + } + }, + "fnMap": { + "0": { + "name": "createSpeeddialLink", + "decl": { + "start": { + "line": 6, + "column": 9 + }, + "end": { + "line": 6, + "column": 28 + } + }, + "loc": { + "start": { + "line": 6, + "column": 44 + }, + "end": { + "line": 8, + "column": 1 + } + }, + "line": 6 + }, + "1": { + "name": "createSpeeddialGroup", + "decl": { + "start": { + "line": 9, + "column": 9 + }, + "end": { + "line": 9, + "column": 29 + } + }, + "loc": { + "start": { + "line": 9, + "column": 45 + }, + "end": { + "line": 11, + "column": 1 + } + }, + "line": 9 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 12, + "column": 28 + }, + "end": { + "line": 12, + "column": 29 + } + }, + "loc": { + "start": { + "line": 12, + "column": 35 + }, + "end": { + "line": 16, + "column": 1 + } + }, + "line": 12 + }, + "3": { + "name": "addChildren", + "decl": { + "start": { + "line": 17, + "column": 9 + }, + "end": { + "line": 17, + "column": 20 + } + }, + "loc": { + "start": { + "line": 17, + "column": 45 + }, + "end": { + "line": 19, + "column": 1 + } + }, + "line": 17 + }, + "4": { + "name": "reorderChildren", + "decl": { + "start": { + "line": 20, + "column": 9 + }, + "end": { + "line": 20, + "column": 24 + } + }, + "loc": { + "start": { + "line": 20, + "column": 46 + }, + "end": { + "line": 23, + "column": 1 + } + }, + "line": 20 + }, + "5": { + "name": "removeChild", + "decl": { + "start": { + "line": 24, + "column": 9 + }, + "end": { + "line": 24, + "column": 20 + } + }, + "loc": { + "start": { + "line": 24, + "column": 39 + }, + "end": { + "line": 30, + "column": 1 + } + }, + "line": 24 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 35, + "column": 4 + }, + "end": { + "line": 35, + "column": 5 + } + }, + "loc": { + "start": { + "line": 35, + "column": 23 + }, + "end": { + "line": 39, + "column": 5 + } + }, + "line": 35 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 40, + "column": 4 + }, + "end": { + "line": 40, + "column": 5 + } + }, + "loc": { + "start": { + "line": 40, + "column": 35 + }, + "end": { + "line": 49, + "column": 5 + } + }, + "line": 40 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 50, + "column": 4 + }, + "end": { + "line": 50, + "column": 5 + } + }, + "loc": { + "start": { + "line": 50, + "column": 37 + }, + "end": { + "line": 52, + "column": 5 + } + }, + "line": 50 + }, + "9": { + "name": "(anonymous_9)", + "decl": { + "start": { + "line": 53, + "column": 4 + }, + "end": { + "line": 53, + "column": 5 + } + }, + "loc": { + "start": { + "line": 53, + "column": 40 + }, + "end": { + "line": 59, + "column": 5 + } + }, + "line": 53 + }, + "10": { + "name": "(anonymous_10)", + "decl": { + "start": { + "line": 60, + "column": 4 + }, + "end": { + "line": 60, + "column": 5 + } + }, + "loc": { + "start": { + "line": 60, + "column": 33 + }, + "end": { + "line": 62, + "column": 5 + } + }, + "line": 60 + }, + "11": { + "name": "(anonymous_11)", + "decl": { + "start": { + "line": 63, + "column": 4 + }, + "end": { + "line": 63, + "column": 5 + } + }, + "loc": { + "start": { + "line": 63, + "column": 26 + }, + "end": { + "line": 68, + "column": 5 + } + }, + "line": 63 + }, + "12": { + "name": "(anonymous_12)", + "decl": { + "start": { + "line": 69, + "column": 4 + }, + "end": { + "line": 69, + "column": 5 + } + }, + "loc": { + "start": { + "line": 69, + "column": 58 + }, + "end": { + "line": 72, + "column": 5 + } + }, + "line": 69 + }, + "13": { + "name": "(anonymous_13)", + "decl": { + "start": { + "line": 73, + "column": 4 + }, + "end": { + "line": 73, + "column": 5 + } + }, + "loc": { + "start": { + "line": 73, + "column": 37 + }, + "end": { + "line": 79, + "column": 5 + } + }, + "line": 73 + }, + "14": { + "name": "(anonymous_14)", + "decl": { + "start": { + "line": 81, + "column": 6 + }, + "end": { + "line": 81, + "column": 7 + } + }, + "loc": { + "start": { + "line": 81, + "column": 29 + }, + "end": { + "line": 83, + "column": 7 + } + }, + "line": 81 + }, + "15": { + "name": "(anonymous_15)", + "decl": { + "start": { + "line": 84, + "column": 6 + }, + "end": { + "line": 84, + "column": 7 + } + }, + "loc": { + "start": { + "line": 84, + "column": 34 + }, + "end": { + "line": 86, + "column": 7 + } + }, + "line": 84 + }, + "16": { + "name": "(anonymous_16)", + "decl": { + "start": { + "line": 88, + "column": 4 + }, + "end": { + "line": 88, + "column": 5 + } + }, + "loc": { + "start": { + "line": 88, + "column": 35 + }, + "end": { + "line": 91, + "column": 5 + } + }, + "line": 88 + }, + "17": { + "name": "(anonymous_17)", + "decl": { + "start": { + "line": 92, + "column": 4 + }, + "end": { + "line": 92, + "column": 5 + } + }, + "loc": { + "start": { + "line": 92, + "column": 36 + }, + "end": { + "line": 96, + "column": 5 + } + }, + "line": 92 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 6, + "column": 29 + }, + "end": { + "line": 6, + "column": 42 + } + }, + "type": "default-arg", + "locations": [ + { + "start": { + "line": 6, + "column": 34 + }, + "end": { + "line": 6, + "column": 42 + } + } + ], + "line": 6 + }, + "1": { + "loc": { + "start": { + "line": 9, + "column": 30 + }, + "end": { + "line": 9, + "column": 43 + } + }, + "type": "default-arg", + "locations": [ + { + "start": { + "line": 9, + "column": 35 + }, + "end": { + "line": 9, + "column": 43 + } + } + ], + "line": 9 + }, + "2": { + "loc": { + "start": { + "line": 26, + "column": 2 + }, + "end": { + "line": 29, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 26, + "column": 2 + }, + "end": { + "line": 29, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 26 + }, + "3": { + "loc": { + "start": { + "line": 55, + "column": 6 + }, + "end": { + "line": 58, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 55, + "column": 6 + }, + "end": { + "line": 58, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 55 + }, + "4": { + "loc": { + "start": { + "line": 64, + "column": 6 + }, + "end": { + "line": 66, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 64, + "column": 6 + }, + "end": { + "line": 66, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 64 + }, + "5": { + "loc": { + "start": { + "line": 64, + "column": 10 + }, + "end": { + "line": 64, + "column": 74 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 64, + "column": 10 + }, + "end": { + "line": 64, + "column": 43 + } + }, + { + "start": { + "line": 64, + "column": 47 + }, + "end": { + "line": 64, + "column": 74 + } + } + ], + "line": 64 + }, + "6": { + "loc": { + "start": { + "line": 75, + "column": 6 + }, + "end": { + "line": 77, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 75, + "column": 6 + }, + "end": { + "line": 77, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 75 + }, + "7": { + "loc": { + "start": { + "line": 75, + "column": 10 + }, + "end": { + "line": 75, + "column": 74 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 75, + "column": 10 + }, + "end": { + "line": 75, + "column": 43 + } + }, + { + "start": { + "line": 75, + "column": 47 + }, + "end": { + "line": 75, + "column": 74 + } + } + ], + "line": 75 + }, + "8": { + "loc": { + "start": { + "line": 94, + "column": 43 + }, + "end": { + "line": 94, + "column": 92 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 94, + "column": 43 + }, + "end": { + "line": 94, + "column": 86 + } + }, + { + "start": { + "line": 94, + "column": 90 + }, + "end": { + "line": 94, + "column": 92 + } + } + ], + "line": 94 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 2, + "3": 2, + "4": 0, + "5": 2, + "6": 6, + "7": 2, + "8": 0, + "9": 0, + "10": 0, + "11": 0, + "12": 0, + "13": 0, + "14": 2, + "15": 0, + "16": 0, + "17": 0, + "18": 2, + "19": 2, + "20": 2, + "21": 0, + "22": 0, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 2, + "33": 2, + "34": 2, + "35": 2, + "36": 0, + "37": 0, + "38": 0, + "39": 0, + "40": 0, + "41": 0, + "42": 0 + }, + "f": { + "0": 2, + "1": 0, + "2": 6, + "3": 2, + "4": 0, + "5": 0, + "6": 0, + "7": 2, + "8": 0, + "9": 0, + "10": 0, + "11": 0, + "12": 0, + "13": 2, + "14": 0, + "15": 0, + "16": 0, + "17": 0 + }, + "b": { + "0": [ + 2 + ], + "1": [ + 0 + ], + "2": [ + 0, + 0 + ], + "3": [ + 0, + 0 + ], + "4": [ + 0, + 0 + ], + "5": [ + 0, + 0 + ], + "6": [ + 2, + 0 + ], + "7": [ + 2, + 2 + ], + "8": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/data/speeddial/slice.ts" + ], + "mappings": "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", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "ea5c57be9fa580e314ceab3d2f4423c6c09dc888" + }, + "/home/bartosz/projects/speeddial/src/data/speeddial/selectors.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/speeddial/selectors.ts", + "statementMap": { + "0": { + "start": { + "line": 3, + "column": 28 + }, + "end": { + "line": 3, + "column": 55 + } + }, + "1": { + "start": { + "line": 3, + "column": 39 + }, + "end": { + "line": 3, + "column": 55 + } + }, + "2": { + "start": { + "line": 4, + "column": 34 + }, + "end": { + "line": 4, + "column": 79 + } + }, + "3": { + "start": { + "line": 4, + "column": 70 + }, + "end": { + "line": 4, + "column": 78 + } + }, + "4": { + "start": { + "line": 5, + "column": 33 + }, + "end": { + "line": 5, + "column": 77 + } + }, + "5": { + "start": { + "line": 5, + "column": 69 + }, + "end": { + "line": 5, + "column": 76 + } + }, + "6": { + "start": { + "line": 6, + "column": 34 + }, + "end": { + "line": 6, + "column": 83 + } + }, + "7": { + "start": { + "line": 6, + "column": 70 + }, + "end": { + "line": 6, + "column": 82 + } + }, + "8": { + "start": { + "line": 7, + "column": 31 + }, + "end": { + "line": 10, + "column": 1 + } + }, + "9": { + "start": { + "line": 9, + "column": 13 + }, + "end": { + "line": 9, + "column": 50 + } + }, + "10": { + "start": { + "line": 11, + "column": 32 + }, + "end": { + "line": 14, + "column": 1 + } + }, + "11": { + "start": { + "line": 13, + "column": 13 + }, + "end": { + "line": 13, + "column": 51 + } + }, + "12": { + "start": { + "line": 15, + "column": 37 + }, + "end": { + "line": 15, + "column": 83 + } + }, + "13": { + "start": { + "line": 16, + "column": 37 + }, + "end": { + "line": 16, + "column": 81 + } + }, + "14": { + "start": { + "line": 17, + "column": 32 + }, + "end": { + "line": 17, + "column": 138 + } + }, + "15": { + "start": { + "line": 17, + "column": 73 + }, + "end": { + "line": 17, + "column": 138 + } + }, + "16": { + "start": { + "line": 18, + "column": 29 + }, + "end": { + "line": 23, + "column": 1 + } + }, + "17": { + "start": { + "line": 22, + "column": 26 + }, + "end": { + "line": 22, + "column": 72 + } + }, + "18": { + "start": { + "line": 22, + "column": 42 + }, + "end": { + "line": 22, + "column": 71 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 3, + "column": 28 + }, + "end": { + "line": 3, + "column": 29 + } + }, + "loc": { + "start": { + "line": 3, + "column": 39 + }, + "end": { + "line": 3, + "column": 55 + } + }, + "line": 3 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 4, + "column": 63 + }, + "end": { + "line": 4, + "column": 64 + } + }, + "loc": { + "start": { + "line": 4, + "column": 70 + }, + "end": { + "line": 4, + "column": 78 + } + }, + "line": 4 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 5, + "column": 62 + }, + "end": { + "line": 5, + "column": 63 + } + }, + "loc": { + "start": { + "line": 5, + "column": 69 + }, + "end": { + "line": 5, + "column": 76 + } + }, + "line": 5 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 6, + "column": 63 + }, + "end": { + "line": 6, + "column": 64 + } + }, + "loc": { + "start": { + "line": 6, + "column": 70 + }, + "end": { + "line": 6, + "column": 82 + } + }, + "line": 6 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 3 + } + }, + "loc": { + "start": { + "line": 9, + "column": 13 + }, + "end": { + "line": 9, + "column": 50 + } + }, + "line": 9 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 13, + "column": 2 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "loc": { + "start": { + "line": 13, + "column": 13 + }, + "end": { + "line": 13, + "column": 51 + } + }, + "line": 13 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 17, + "column": 32 + }, + "end": { + "line": 17, + "column": 33 + } + }, + "loc": { + "start": { + "line": 17, + "column": 73 + }, + "end": { + "line": 17, + "column": 138 + } + }, + "line": 17 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 22, + "column": 2 + }, + "end": { + "line": 22, + "column": 3 + } + }, + "loc": { + "start": { + "line": 22, + "column": 26 + }, + "end": { + "line": 22, + "column": 72 + } + }, + "line": 22 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 22, + "column": 34 + }, + "end": { + "line": 22, + "column": 35 + } + }, + "loc": { + "start": { + "line": 22, + "column": 42 + }, + "end": { + "line": 22, + "column": 71 + } + }, + "line": 22 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 9, + "column": 13 + }, + "end": { + "line": 9, + "column": 50 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 9, + "column": 38 + }, + "end": { + "line": 9, + "column": 43 + } + }, + { + "start": { + "line": 9, + "column": 46 + }, + "end": { + "line": 9, + "column": 50 + } + } + ], + "line": 9 + }, + "1": { + "loc": { + "start": { + "line": 13, + "column": 13 + }, + "end": { + "line": 13, + "column": 51 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 13, + "column": 39 + }, + "end": { + "line": 13, + "column": 44 + } + }, + { + "start": { + "line": 13, + "column": 47 + }, + "end": { + "line": 13, + "column": 51 + } + } + ], + "line": 13 + }, + "2": { + "loc": { + "start": { + "line": 17, + "column": 40 + }, + "end": { + "line": 17, + "column": 68 + } + }, + "type": "default-arg", + "locations": [ + { + "start": { + "line": 17, + "column": 51 + }, + "end": { + "line": 17, + "column": 68 + } + } + ], + "line": 17 + }, + "3": { + "loc": { + "start": { + "line": 17, + "column": 73 + }, + "end": { + "line": 17, + "column": 138 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 17, + "column": 73 + }, + "end": { + "line": 17, + "column": 132 + } + }, + { + "start": { + "line": 17, + "column": 136 + }, + "end": { + "line": 17, + "column": 138 + } + } + ], + "line": 17 + }, + "4": { + "loc": { + "start": { + "line": 22, + "column": 42 + }, + "end": { + "line": 22, + "column": 71 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 22, + "column": 42 + }, + "end": { + "line": 22, + "column": 52 + } + }, + { + "start": { + "line": 22, + "column": 56 + }, + "end": { + "line": 22, + "column": 65 + } + }, + { + "start": { + "line": 22, + "column": 69 + }, + "end": { + "line": 22, + "column": 71 + } + } + ], + "line": 22 + } + }, + "s": { + "0": 2, + "1": 36, + "2": 2, + "3": 6, + "4": 2, + "5": 6, + "6": 2, + "7": 6, + "8": 2, + "9": 6, + "10": 2, + "11": 6, + "12": 2, + "13": 2, + "14": 2, + "15": 6, + "16": 2, + "17": 6, + "18": 2 + }, + "f": { + "0": 36, + "1": 6, + "2": 6, + "3": 6, + "4": 6, + "5": 6, + "6": 6, + "7": 6, + "8": 2 + }, + "b": { + "0": [ + 2, + 4 + ], + "1": [ + 0, + 6 + ], + "2": [ + 0 + ], + "3": [ + 6, + 0 + ], + "4": [ + 2, + 2, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/data/speeddial/selectors.ts" + ], + "mappings": "AAAA,SAAS,sBAAsB;AAK/B,SAAS,eAAe,cAAc,mBAAmB,iBAAiB;AAGnE,aAAM,eAAe,CAAC,UAA6C,MAAM,SAAS;AAElF,aAAM,qBAAqB,eAAe,cAAc,OAAK,EAAE,MAAM;AACrE,aAAM,oBAAoB,eAAe,cAAc,OAAK,EAAE,KAAK;AAEnE,aAAM,qBAAqB,eAAe,cAAc,OAAK,EAAE,UAAU;AACzE,aAAM,kBAAkB;AAAA,EAC3B;AAAA,EACA,WAAU,OAAO,SAAS,SAAS,QAAQ;AAC/C;AACO,aAAM,mBAAmB;AAAA,EAC5B;AAAA,EACA,WAAU,OAAO,SAAS,UAAU,QAAQ;AAChD;AAEO,aAAM,wBAAwB,cAAc,aAAa,kBAAkB;AAC3E,aAAM,wBAAwB,aAAa,aAAa,iBAAiB;AAEzE,aAAM,mBAAmB,CAAC,OAAkB,WAAW,sBAAsB,sBAAsB,WAAW,OAAO,QAAQ,GAAG,YAAY,CAAC;AAC7I,aAAM,gBAAgB;AAAA,EACzB;AAAA,EACA,sBAAsB;AAAA,EACtB,sBAAsB;AAAA,EACtB,CAAC,KAAK,QAAQ,UAAU,IAAI,IAAI,QAAO,OAAO,EAAE,KAAK,MAAM,EAAE,KAAK,CAAC,CAAoC;AAC3G;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "95abb3a0b12ced4a2a3bd9c24ab70579522e226d" + }, + "/home/bartosz/projects/speeddial/src/data/speeddial/index.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/speeddial/index.ts", + "statementMap": { + "0": { + "start": { + "line": 4, + "column": 32 + }, + "end": { + "line": 12, + "column": 1 + } + } + }, + "fnMap": {}, + "branchMap": {}, + "s": { + "0": 2 + }, + "f": {}, + "b": {}, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/data/speeddial/index.ts" + ], + "mappings": "AAAA,OAAO,oBAAoB;AAC3B,OAAO,uBAAuB;AAE9B,SAAS,SAAS,iBAAiB;AAG5B,aAAM,mBAAmB;AAAA,EAC5B;AAAA,IACI,SAAS;AAAA,IACT,KAAK;AAAA,IACL,SAAS;AAAA,IACT,WAAW,CAAC,YAAY;AAAA,EAC5B;AAAA,EACA;AACJ;AAEA,2BAA2B;AAC3B,cAAc;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "c627bf963071ec3b7eba8840acf749a113baa573" + }, + "/home/bartosz/projects/speeddial/src/data/index.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/index.ts", + "statementMap": { + "0": { + "start": { + "line": 8, + "column": 23 + }, + "end": { + "line": 8, + "column": 74 + } + }, + "1": { + "start": { + "line": 9, + "column": 28 + }, + "end": { + "line": 9, + "column": 55 + } + }, + "2": { + "start": { + "line": 12, + "column": 16 + }, + "end": { + "line": 38, + "column": 4 + } + }, + "3": { + "start": { + "line": 15, + "column": 25 + }, + "end": { + "line": 25, + "column": 8 + } + }, + "4": { + "start": { + "line": 19, + "column": 14 + }, + "end": { + "line": 19, + "column": 32 + } + }, + "5": { + "start": { + "line": 26, + "column": 6 + }, + "end": { + "line": 34, + "column": 8 + } + }, + "6": { + "start": { + "line": 31, + "column": 12 + }, + "end": { + "line": 31, + "column": 144 + } + }, + "7": { + "start": { + "line": 35, + "column": 6 + }, + "end": { + "line": 35, + "column": 24 + } + }, + "8": { + "start": { + "line": 39, + "column": 2 + }, + "end": { + "line": 39, + "column": 34 + } + }, + "9": { + "start": { + "line": 40, + "column": 2 + }, + "end": { + "line": 40, + "column": 30 + } + } + }, + "fnMap": { + "0": { + "name": "createStore", + "decl": { + "start": { + "line": 10, + "column": 16 + }, + "end": { + "line": 10, + "column": 27 + } + }, + "loc": { + "start": { + "line": 10, + "column": 49 + }, + "end": { + "line": 41, + "column": 1 + } + }, + "line": 10 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 14, + "column": 16 + }, + "end": { + "line": 14, + "column": 17 + } + }, + "loc": { + "start": { + "line": 14, + "column": 42 + }, + "end": { + "line": 36, + "column": 5 + } + }, + "line": 14 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 18, + "column": 12 + }, + "end": { + "line": 18, + "column": 13 + } + }, + "loc": { + "start": { + "line": 18, + "column": 29 + }, + "end": { + "line": 20, + "column": 13 + } + }, + "line": 18 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 30, + "column": 10 + }, + "end": { + "line": 30, + "column": 11 + } + }, + "loc": { + "start": { + "line": 30, + "column": 22 + }, + "end": { + "line": 32, + "column": 11 + } + }, + "line": 30 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 10, + "column": 28 + }, + "end": { + "line": 10, + "column": 47 + } + }, + "type": "default-arg", + "locations": [ + { + "start": { + "line": 10, + "column": 43 + }, + "end": { + "line": 10, + "column": 47 + } + } + ], + "line": 10 + }, + "1": { + "loc": { + "start": { + "line": 13, + "column": 15 + }, + "end": { + "line": 13, + "column": 56 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 13, + "column": 30 + }, + "end": { + "line": 13, + "column": 51 + } + }, + { + "start": { + "line": 13, + "column": 54 + }, + "end": { + "line": 13, + "column": 56 + } + } + ], + "line": 13 + }, + "2": { + "loc": { + "start": { + "line": 31, + "column": 19 + }, + "end": { + "line": 31, + "column": 143 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 31, + "column": 19 + }, + "end": { + "line": 31, + "column": 38 + } + }, + { + "start": { + "line": 31, + "column": 42 + }, + "end": { + "line": 31, + "column": 84 + } + }, + { + "start": { + "line": 31, + "column": 88 + }, + "end": { + "line": 31, + "column": 143 + } + } + ], + "line": 31 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 2, + "3": 2, + "4": 0, + "5": 2, + "6": 10, + "7": 2, + "8": 2, + "9": 2 + }, + "f": { + "0": 2, + "1": 2, + "2": 0, + "3": 10 + }, + "b": { + "0": [ + 2 + ], + "1": [ + 2, + 0 + ], + "2": [ + 10, + 10, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/data/index.ts" + ], + "mappings": "AAEA,SAAS,sBAAsB;AAC/B,SAAS,uBAAuB,iCAAiC;AACjE,SAAS,oBAAoB;AAE7B,SAAS,oBAAoB;AAC7B,SAAS,OAAO,WAAW,OAAO,SAAS,OAAO,gBAAgB;AAGlE,SAAS,oBAAoB,cAAc;AAC3C,SAAS,oBAAoB,iBAAiB;AAG9C,MAAM,iBAAiB,CAAC,OAAO,WAAW,OAAO,SAAS,OAAO,QAAQ;AAEzE,MAAM,sBAAsB,0BAA0B;AAM/C,gBAAS,YAAY,eAAe,MAAM;AAE7C,MAAI;AAEJ,QAAM,QAAQ,eAAe;AAAA,IACzB,WAAW,eAAe,CAAC,mBAAmB,IAAI,CAAC;AAAA,IACnD,YAAY,0BAAwB;AAChC,YAAM,aAAa,qBAAqB;AAAA,QACpC,OAAO;AAAA,UACH,eAAe;AAAA,YACX,iBAAiB;AACb,wBAAU,MAAM;AAAA,YACpB;AAAA,UACJ;AAAA,QACJ;AAAA,QACA,gBAAgB;AAAA,QAChB,mBAAmB,EAAE,eAAe;AAAA,MACxC,CAAC;AAGD,iBAAW;AAAA,QACP,aAAa;AAAA,UACT,WAAW;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AACR,mBAAQ,YAAY,IAAI,OAAO,YAAY,IAAI,oBAAoB,UAC5D,IAAI,IAAI,OAAO,SAAS,IAAI,EAAE,aAAa,IAAI,OAAO;AAAA,UACjE;AAAA,QACJ,CAAC;AAAA,MACL;AAEA,aAAO;AAAA,IACX;AAAA,IACA,SAAS,EAAE,QAAQ,UAAU;AAAA,EACjC,CAAC;AAED,cAAY,aAAa,KAAK;AAE9B,SAAO,EAAE,OAAO,UAAU;AAC9B;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "337a31a526ebebd99509b632b03f518095ce1294" + }, + "/home/bartosz/projects/speeddial/src/components/app-footer/index.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/app-footer/index.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 112 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 19, + "column": 15 + }, + "end": { + "line": 19, + "column": 23 + } + }, + "10": { + "start": { + "line": 20, + "column": 19 + }, + "end": { + "line": 20, + "column": 46 + } + }, + "11": { + "start": { + "line": 21, + "column": 17 + }, + "end": { + "line": 21, + "column": 54 + } + }, + "12": { + "start": { + "line": 23, + "column": 2 + }, + "end": { + "line": 28, + "column": 3 + } + }, + "13": { + "start": { + "line": 25, + "column": 6 + }, + "end": { + "line": 25, + "column": 72 + } + }, + "14": { + "start": { + "line": 27, + "column": 6 + }, + "end": { + "line": 27, + "column": 45 + } + }, + "15": { + "start": { + "line": 30, + "column": 25 + }, + "end": { + "line": 64, + "column": 1 + } + }, + "16": { + "start": { + "line": 33, + "column": 2 + }, + "end": { + "line": 33, + "column": 7 + } + }, + "17": { + "start": { + "line": 36, + "column": 6 + }, + "end": { + "line": 36, + "column": 22 + } + }, + "18": { + "start": { + "line": 37, + "column": 2 + }, + "end": { + "line": 63, + "column": 11 + } + }, + "19": { + "start": { + "line": 65, + "column": 0 + }, + "end": { + "line": 67, + "column": 3 + } + }, + "20": { + "start": { + "line": 66, + "column": 2 + }, + "end": { + "line": 66, + "column": 26 + } + }, + "21": { + "start": { + "line": 68, + "column": 0 + }, + "end": { + "line": 68, + "column": 15 + } + }, + "22": { + "start": { + "line": 70, + "column": 0 + }, + "end": { + "line": 70, + "column": 30 + } + }, + "23": { + "start": { + "line": 71, + "column": 0 + }, + "end": { + "line": 84, + "column": 1 + } + }, + "24": { + "start": { + "line": 72, + "column": 2 + }, + "end": { + "line": 72, + "column": 39 + } + }, + "25": { + "start": { + "line": 73, + "column": 2 + }, + "end": { + "line": 73, + "column": 39 + } + }, + "26": { + "start": { + "line": 74, + "column": 2 + }, + "end": { + "line": 83, + "column": 5 + } + }, + "27": { + "start": { + "line": 75, + "column": 4 + }, + "end": { + "line": 75, + "column": 138 + } + }, + "28": { + "start": { + "line": 76, + "column": 4 + }, + "end": { + "line": 82, + "column": 7 + } + }, + "29": { + "start": { + "line": 77, + "column": 6 + }, + "end": { + "line": 78, + "column": 15 + } + }, + "30": { + "start": { + "line": 78, + "column": 8 + }, + "end": { + "line": 78, + "column": 15 + } + }, + "31": { + "start": { + "line": 79, + "column": 32 + }, + "end": { + "line": 79, + "column": 115 + } + }, + "32": { + "start": { + "line": 80, + "column": 6 + }, + "end": { + "line": 81, + "column": 54 + } + }, + "33": { + "start": { + "line": 81, + "column": 8 + }, + "end": { + "line": 81, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "getBuildDescription", + "decl": { + "start": { + "line": 22, + "column": 9 + }, + "end": { + "line": 22, + "column": 28 + } + }, + "loc": { + "start": { + "line": 22, + "column": 31 + }, + "end": { + "line": 29, + "column": 1 + } + }, + "line": 22 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 30, + "column": 25 + }, + "end": { + "line": 30, + "column": 26 + } + }, + "loc": { + "start": { + "line": 32, + "column": 6 + }, + "end": { + "line": 64, + "column": 1 + } + }, + "line": 32 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 65, + "column": 53 + }, + "end": { + "line": 65, + "column": 54 + } + }, + "loc": { + "start": { + "line": 65, + "column": 64 + }, + "end": { + "line": 67, + "column": 1 + } + }, + "line": 65 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 74, + "column": 52 + }, + "end": { + "line": 74, + "column": 53 + } + }, + "loc": { + "start": { + "line": 74, + "column": 72 + }, + "end": { + "line": 83, + "column": 3 + } + }, + "line": 74 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 76, + "column": 27 + }, + "end": { + "line": 76, + "column": 28 + } + }, + "loc": { + "start": { + "line": 76, + "column": 44 + }, + "end": { + "line": 82, + "column": 5 + } + }, + "line": 76 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 23, + "column": 2 + }, + "end": { + "line": 28, + "column": 3 + } + }, + "type": "switch", + "locations": [ + { + "start": { + "line": 24, + "column": 4 + }, + "end": { + "line": 25, + "column": 72 + } + }, + { + "start": { + "line": 26, + "column": 4 + }, + "end": { + "line": 27, + "column": 45 + } + } + ], + "line": 23 + }, + "3": { + "loc": { + "start": { + "line": 71, + "column": 0 + }, + "end": { + "line": 84, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 71, + "column": 0 + }, + "end": { + "line": 84, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 71 + }, + "4": { + "loc": { + "start": { + "line": 77, + "column": 6 + }, + "end": { + "line": 78, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 77, + "column": 6 + }, + "end": { + "line": 78, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 77 + }, + "5": { + "loc": { + "start": { + "line": 80, + "column": 6 + }, + "end": { + "line": 81, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 80, + "column": 6 + }, + "end": { + "line": 81, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 80 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 2, + "11": 2, + "12": 8, + "13": 0, + "14": 8, + "15": 2, + "16": 8, + "17": 8, + "18": 8, + "19": 2, + "20": 2, + "21": 2, + "22": 2, + "23": 2, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 0 + }, + "f": { + "0": 2, + "1": 8, + "2": 8, + "3": 2, + "4": 2, + "5": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 0, + 8 + ], + "3": [ + 2, + 0 + ], + "4": [ + 0, + 0 + ], + "5": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AA6BgB;;;;;;;;;;;;;;;;AA7BhB,SAASA,KAAKC,MAAMC,kBAAkB;AAEtC,SAASC,sBAAsB;AAK/B,MAAMC,SAAS;AACf,MAAMC,aAAa;AACnB,MAAMC,WAAW;AAGjB,SAASC,sBAAsB;AAC3B,UAAQC,YAAYC,IAAIC,iBAAe;AAAA,IACnC,KAAK;AACD,aAAOF,YAAYC,IAAIE,2BAA2BC,UAAU,GAAG,CAAC;AAAA,IACpE;AACI,aAAOJ,YAAYC,IAAIC;AAAAA,EAC/B;AACJ;AAEO,aAAMG,YAAuCA,CAAC;AAAA,EAAEC;AAAS,MAAM;AAAAC,KAAA;AAClE,QAAM;AAAA,IAAEC;AAAAA,EAAE,IAAIb,eAAe;AAE7B,SACI,uBAAC,OAAI,IAAI;AAAA,IAAEW;AAAAA,IAAUG,WAAW;AAAA,EAAS,GACrC,iCAAC,cAAU;AAAA;AAAA,IAEN;AAAA,IACD,uBAAC,QACG,MAAMZ,YACN,QAAO,UACP,gBAAe,eACf,KAAI,uBAEHD,oBANL;AAAA;AAAA;AAAA;AAAA,WAOA;AAAA,IACE,KAAG,oBAAIc,KAAK,GAAEC,YAAY;AAAA,IAC5B,uBAAC,QACG,MAAMb,UACN,QAAO,UACP,gBAAe,eACf,KAAI,uBAEHU,YAAE,mBAAmB,KAN1B;AAAA;AAAA;AAAA;AAAA,WAOA;AAAA,IACE,MAAKA,EAAE,cAAc,KAAKT,oBAAoB;AAAA,OApBpD;AAAA;AAAA;AAAA;AAAA,SAqBA,KAtBJ;AAAA;AAAA;AAAA;AAAA,SAuBA;AAER;AAAEQ,GA7BWF,WAAoC;AAAA,UAC/BV,cAAc;AAAA;AAAAiB,KADnBP;AAAoC,IAAAO;AAAAC,aAAAD,IAAA", + "names": [ + "Box", + "Link", + "Typography", + "useTranslation", + "AUTHOR", + "AUTHOR_URL", + "REPO_URL", + "getBuildDescription", + "import", + "env", + "VITE_VERCEL_ENV", + "VITE_VERCEL_GIT_COMMIT_SHA", + "substring", + "AppFooter", + "gridArea", + "_s", + "t", + "textAlign", + "Date", + "getFullYear", + "_c", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/app-footer/index.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/app-footer/index.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "fb6ac51fcb142aa6a66ded1826667a6c5303080e" + }, + "/home/bartosz/projects/speeddial/src/components/search/index.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/search/index.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 108 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 19, + "column": 25 + }, + "end": { + "line": 48, + "column": 1 + } + }, + "10": { + "start": { + "line": 22, + "column": 2 + }, + "end": { + "line": 22, + "column": 7 + } + }, + "11": { + "start": { + "line": 25, + "column": 6 + }, + "end": { + "line": 25, + "column": 22 + } + }, + "12": { + "start": { + "line": 26, + "column": 2 + }, + "end": { + "line": 47, + "column": 11 + } + }, + "13": { + "start": { + "line": 49, + "column": 0 + }, + "end": { + "line": 51, + "column": 3 + } + }, + "14": { + "start": { + "line": 50, + "column": 2 + }, + "end": { + "line": 50, + "column": 26 + } + }, + "15": { + "start": { + "line": 52, + "column": 0 + }, + "end": { + "line": 52, + "column": 15 + } + }, + "16": { + "start": { + "line": 54, + "column": 0 + }, + "end": { + "line": 54, + "column": 30 + } + }, + "17": { + "start": { + "line": 55, + "column": 0 + }, + "end": { + "line": 68, + "column": 1 + } + }, + "18": { + "start": { + "line": 56, + "column": 2 + }, + "end": { + "line": 56, + "column": 39 + } + }, + "19": { + "start": { + "line": 57, + "column": 2 + }, + "end": { + "line": 57, + "column": 39 + } + }, + "20": { + "start": { + "line": 58, + "column": 2 + }, + "end": { + "line": 67, + "column": 5 + } + }, + "21": { + "start": { + "line": 59, + "column": 4 + }, + "end": { + "line": 59, + "column": 134 + } + }, + "22": { + "start": { + "line": 60, + "column": 4 + }, + "end": { + "line": 66, + "column": 7 + } + }, + "23": { + "start": { + "line": 61, + "column": 6 + }, + "end": { + "line": 62, + "column": 15 + } + }, + "24": { + "start": { + "line": 62, + "column": 8 + }, + "end": { + "line": 62, + "column": 15 + } + }, + "25": { + "start": { + "line": 63, + "column": 32 + }, + "end": { + "line": 63, + "column": 115 + } + }, + "26": { + "start": { + "line": 64, + "column": 6 + }, + "end": { + "line": 65, + "column": 54 + } + }, + "27": { + "start": { + "line": 65, + "column": 8 + }, + "end": { + "line": 65, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 19, + "column": 25 + }, + "end": { + "line": 19, + "column": 26 + } + }, + "loc": { + "start": { + "line": 21, + "column": 6 + }, + "end": { + "line": 48, + "column": 1 + } + }, + "line": 21 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 49, + "column": 53 + }, + "end": { + "line": 49, + "column": 54 + } + }, + "loc": { + "start": { + "line": 49, + "column": 64 + }, + "end": { + "line": 51, + "column": 1 + } + }, + "line": 49 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 58, + "column": 52 + }, + "end": { + "line": 58, + "column": 53 + } + }, + "loc": { + "start": { + "line": 58, + "column": 72 + }, + "end": { + "line": 67, + "column": 3 + } + }, + "line": 58 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 60, + "column": 27 + }, + "end": { + "line": 60, + "column": 28 + } + }, + "loc": { + "start": { + "line": 60, + "column": 44 + }, + "end": { + "line": 66, + "column": 5 + } + }, + "line": 60 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 55, + "column": 0 + }, + "end": { + "line": 68, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 55, + "column": 0 + }, + "end": { + "line": 68, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 55 + }, + "3": { + "loc": { + "start": { + "line": 61, + "column": 6 + }, + "end": { + "line": 62, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 61, + "column": 6 + }, + "end": { + "line": 62, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 61 + }, + "4": { + "loc": { + "start": { + "line": 64, + "column": 6 + }, + "end": { + "line": 65, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 64, + "column": 6 + }, + "end": { + "line": 65, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 64 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 8, + "11": 8, + "12": 8, + "13": 2, + "14": 2, + "15": 2, + "16": 2, + "17": 2, + "18": 2, + "19": 2, + "20": 2, + "21": 2, + "22": 2, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0 + }, + "f": { + "0": 2, + "1": 8, + "2": 2, + "3": 2, + "4": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 2, + 0 + ], + "3": [ + 0, + 0 + ], + "4": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AAgBgB;;;;;;;;;;;;;;;;AAhBhB,OAAOA,WAAW;AAElB,SAASC,sBAAsB;AAGxB,aAAMC,YAAuCA,CAAC;AAAA,EAAEC;AAAS,MAAM;AAAAC,KAAA;AAClE,QAAM;AAAA,IAAEC;AAAAA,EAAE,IAAIJ,eAAe;AAG7B,SACI,uBAAC,SAAM,WAAW,GAAG,IAAI;AAAA,IAAEE;AAAAA,IAAUG,SAAS;AAAA,EAAM,GAChD,iCAAC,UACG,QAAO,iCACP,QAAO,OACP,OAAO;AAAA,IAAEC,SAAS;AAAA,EAAO,GAEzB,iCAAC,WACG,OAAO;AAAA,IAAEC,MAAM;AAAA,IAAGF,SAAS;AAAA,IAAeG,cAAc;AAAA,EAAE,GAC1D,MAAK,QACL,MAAK,KACL,aAAaJ,EAAE,oBAAoB,KAJvC;AAAA;AAAA;AAAA;AAAA,SAIyC,KAT7C;AAAA;AAAA;AAAA;AAAA,SAWA,KAZJ;AAAA;AAAA;AAAA;AAAA,SAaA;AAER;AAAED,GApBWF,WAAoC;AAAA,UAC/BD,cAAc;AAAA;AAAAS,KADnBR;AAAoC,IAAAQ;AAAAC,aAAAD,IAAA", + "names": [ + "Paper", + "useTranslation", + "SearchBar", + "gridArea", + "_s", + "t", + "padding", + "display", + "flex", + "borderRadius", + "_c", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/search/index.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/search/index.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "6a97be7f7b3ee1dd89c0524124259b2b446ac8c9" + }, + "/home/bartosz/projects/speeddial/src/components/settings/button.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/settings/button.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 111 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 23, + "column": 30 + }, + "end": { + "line": 43, + "column": 1 + } + }, + "10": { + "start": { + "line": 26, + "column": 2 + }, + "end": { + "line": 26, + "column": 7 + } + }, + "11": { + "start": { + "line": 29, + "column": 6 + }, + "end": { + "line": 29, + "column": 22 + } + }, + "12": { + "start": { + "line": 30, + "column": 19 + }, + "end": { + "line": 30, + "column": 35 + } + }, + "13": { + "start": { + "line": 31, + "column": 18 + }, + "end": { + "line": 33, + "column": 16 + } + }, + "14": { + "start": { + "line": 32, + "column": 4 + }, + "end": { + "line": 32, + "column": 40 + } + }, + "15": { + "start": { + "line": 34, + "column": 2 + }, + "end": { + "line": 42, + "column": 11 + } + }, + "16": { + "start": { + "line": 44, + "column": 0 + }, + "end": { + "line": 46, + "column": 3 + } + }, + "17": { + "start": { + "line": 45, + "column": 2 + }, + "end": { + "line": 45, + "column": 42 + } + }, + "18": { + "start": { + "line": 47, + "column": 0 + }, + "end": { + "line": 47, + "column": 20 + } + }, + "19": { + "start": { + "line": 49, + "column": 0 + }, + "end": { + "line": 49, + "column": 35 + } + }, + "20": { + "start": { + "line": 50, + "column": 0 + }, + "end": { + "line": 63, + "column": 1 + } + }, + "21": { + "start": { + "line": 51, + "column": 2 + }, + "end": { + "line": 51, + "column": 39 + } + }, + "22": { + "start": { + "line": 52, + "column": 2 + }, + "end": { + "line": 52, + "column": 39 + } + }, + "23": { + "start": { + "line": 53, + "column": 2 + }, + "end": { + "line": 62, + "column": 5 + } + }, + "24": { + "start": { + "line": 54, + "column": 4 + }, + "end": { + "line": 54, + "column": 137 + } + }, + "25": { + "start": { + "line": 55, + "column": 4 + }, + "end": { + "line": 61, + "column": 7 + } + }, + "26": { + "start": { + "line": 56, + "column": 6 + }, + "end": { + "line": 57, + "column": 15 + } + }, + "27": { + "start": { + "line": 57, + "column": 8 + }, + "end": { + "line": 57, + "column": 15 + } + }, + "28": { + "start": { + "line": 58, + "column": 32 + }, + "end": { + "line": 58, + "column": 115 + } + }, + "29": { + "start": { + "line": 59, + "column": 6 + }, + "end": { + "line": 60, + "column": 54 + } + }, + "30": { + "start": { + "line": 60, + "column": 8 + }, + "end": { + "line": 60, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 23, + "column": 30 + }, + "end": { + "line": 23, + "column": 31 + } + }, + "loc": { + "start": { + "line": 25, + "column": 6 + }, + "end": { + "line": 43, + "column": 1 + } + }, + "line": 25 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 31, + "column": 30 + }, + "end": { + "line": 31, + "column": 31 + } + }, + "loc": { + "start": { + "line": 31, + "column": 36 + }, + "end": { + "line": 33, + "column": 3 + } + }, + "line": 31 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 44, + "column": 58 + }, + "end": { + "line": 44, + "column": 59 + } + }, + "loc": { + "start": { + "line": 44, + "column": 69 + }, + "end": { + "line": 46, + "column": 1 + } + }, + "line": 44 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 53, + "column": 52 + }, + "end": { + "line": 53, + "column": 53 + } + }, + "loc": { + "start": { + "line": 53, + "column": 72 + }, + "end": { + "line": 62, + "column": 3 + } + }, + "line": 53 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 55, + "column": 27 + }, + "end": { + "line": 55, + "column": 28 + } + }, + "loc": { + "start": { + "line": 55, + "column": 44 + }, + "end": { + "line": 61, + "column": 5 + } + }, + "line": 55 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 50, + "column": 0 + }, + "end": { + "line": 63, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 50, + "column": 0 + }, + "end": { + "line": 63, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 50 + }, + "3": { + "loc": { + "start": { + "line": 56, + "column": 6 + }, + "end": { + "line": 57, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 56, + "column": 6 + }, + "end": { + "line": 57, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 56 + }, + "4": { + "loc": { + "start": { + "line": 59, + "column": 6 + }, + "end": { + "line": 60, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 59, + "column": 6 + }, + "end": { + "line": 60, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 59 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 0, + "15": 8, + "16": 2, + "17": 2, + "18": 2, + "19": 2, + "20": 2, + "21": 2, + "22": 2, + "23": 2, + "24": 2, + "25": 2, + "26": 0, + "27": 0, + "28": 0, + "29": 0, + "30": 0 + }, + "f": { + "0": 2, + "1": 8, + "2": 0, + "3": 2, + "4": 2, + "5": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 2, + 0 + ], + "3": [ + 0, + 0 + ], + "4": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AA0BY;;;;;;;;;;;;;;;;AAzBZ,SAASA,kBAAkB;AAC3B,SAASC,WAAW;AAEpB,SAASC,mBAAmB;AAC5B,SAASC,sBAAsB;AAE/B,SAASC,WAAWC,qBAAqB;AACzC,SAASC,sBAAsB;AAGxB,aAAMC,iBAA8CA,CAAC;AAAA,EAAEC;AAAG,MAAM;AAAAC,KAAA;AACnE,QAAM;AAAA,IAAEC;AAAAA,EAAE,IAAIP,eAAe;AAE7B,QAAMQ,WAAWL,eAAe;AAChC,QAAMM,UAAUV,YAAY,MAAM;AAC9BS,aAASN,cAAcQ,UAAU,CAAC;AAAA,EACtC,GAAG,CAACF,QAAQ,CAAC;AAEb,SACI,uBAAC,cACG,SACA,IACA,OAAOD,EAAE,mBAAmB,GAC5B,cAAYA,EAAE,mBAAmB,GAEjC,iCAAC,SAAD;AAAA;AAAA;AAAA;AAAA,SAAI,KANR;AAAA;AAAA;AAAA;AAAA,SAOA;AAER;AAAED,GAlBWF,gBAA2C;AAAA,UACtCJ,gBAEGG,cAAc;AAAA;AAAAQ,KAHtBP;AAA2C,IAAAO;AAAAC,aAAAD,IAAA", + "names": [ + "IconButton", + "Cog", + "useCallback", + "useTranslation", + "actions", + "configActions", + "useAppDispatch", + "SettingsButton", + "sx", + "_s", + "t", + "dispatch", + "onClick", + "openModal", + "_c", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/settings/button.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/settings/button.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "417e5a56f4397a82985e97d4ac2d80191f6261ca" + }, + "/home/bartosz/projects/speeddial/src/components/settings/modal.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/settings/modal.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 110 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 24, + "column": 29 + }, + "end": { + "line": 120, + "column": 1 + } + }, + "10": { + "start": { + "line": 25, + "column": 2 + }, + "end": { + "line": 25, + "column": 7 + } + }, + "11": { + "start": { + "line": 28, + "column": 6 + }, + "end": { + "line": 28, + "column": 22 + } + }, + "12": { + "start": { + "line": 29, + "column": 19 + }, + "end": { + "line": 29, + "column": 35 + } + }, + "13": { + "start": { + "line": 30, + "column": 21 + }, + "end": { + "line": 30, + "column": 49 + } + }, + "14": { + "start": { + "line": 31, + "column": 20 + }, + "end": { + "line": 31, + "column": 55 + } + }, + "15": { + "start": { + "line": 32, + "column": 28 + }, + "end": { + "line": 37, + "column": 16 + } + }, + "16": { + "start": { + "line": 33, + "column": 18 + }, + "end": { + "line": 33, + "column": 36 + } + }, + "17": { + "start": { + "line": 34, + "column": 4 + }, + "end": { + "line": 36, + "column": 8 + } + }, + "18": { + "start": { + "line": 38, + "column": 18 + }, + "end": { + "line": 40, + "column": 16 + } + }, + "19": { + "start": { + "line": 39, + "column": 4 + }, + "end": { + "line": 39, + "column": 41 + } + }, + "20": { + "start": { + "line": 41, + "column": 19 + }, + "end": { + "line": 43, + "column": 16 + } + }, + "21": { + "start": { + "line": 42, + "column": 4 + }, + "end": { + "line": 42, + "column": 50 + } + }, + "22": { + "start": { + "line": 44, + "column": 19 + }, + "end": { + "line": 46, + "column": 16 + } + }, + "23": { + "start": { + "line": 45, + "column": 4 + }, + "end": { + "line": 45, + "column": 50 + } + }, + "24": { + "start": { + "line": 47, + "column": 2 + }, + "end": { + "line": 119, + "column": 11 + } + }, + "25": { + "start": { + "line": 121, + "column": 0 + }, + "end": { + "line": 123, + "column": 3 + } + }, + "26": { + "start": { + "line": 122, + "column": 2 + }, + "end": { + "line": 122, + "column": 68 + } + }, + "27": { + "start": { + "line": 124, + "column": 0 + }, + "end": { + "line": 124, + "column": 19 + } + }, + "28": { + "start": { + "line": 126, + "column": 0 + }, + "end": { + "line": 126, + "column": 34 + } + }, + "29": { + "start": { + "line": 127, + "column": 0 + }, + "end": { + "line": 140, + "column": 1 + } + }, + "30": { + "start": { + "line": 128, + "column": 2 + }, + "end": { + "line": 128, + "column": 39 + } + }, + "31": { + "start": { + "line": 129, + "column": 2 + }, + "end": { + "line": 129, + "column": 39 + } + }, + "32": { + "start": { + "line": 130, + "column": 2 + }, + "end": { + "line": 139, + "column": 5 + } + }, + "33": { + "start": { + "line": 131, + "column": 4 + }, + "end": { + "line": 131, + "column": 136 + } + }, + "34": { + "start": { + "line": 132, + "column": 4 + }, + "end": { + "line": 138, + "column": 7 + } + }, + "35": { + "start": { + "line": 133, + "column": 6 + }, + "end": { + "line": 134, + "column": 15 + } + }, + "36": { + "start": { + "line": 134, + "column": 8 + }, + "end": { + "line": 134, + "column": 15 + } + }, + "37": { + "start": { + "line": 135, + "column": 32 + }, + "end": { + "line": 135, + "column": 115 + } + }, + "38": { + "start": { + "line": 136, + "column": 6 + }, + "end": { + "line": 137, + "column": 54 + } + }, + "39": { + "start": { + "line": 137, + "column": 8 + }, + "end": { + "line": 137, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 24, + "column": 29 + }, + "end": { + "line": 24, + "column": 30 + } + }, + "loc": { + "start": { + "line": 24, + "column": 35 + }, + "end": { + "line": 120, + "column": 1 + } + }, + "line": 24 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 32, + "column": 40 + }, + "end": { + "line": 32, + "column": 41 + } + }, + "loc": { + "start": { + "line": 32, + "column": 51 + }, + "end": { + "line": 37, + "column": 3 + } + }, + "line": 32 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 38, + "column": 30 + }, + "end": { + "line": 38, + "column": 31 + } + }, + "loc": { + "start": { + "line": 38, + "column": 36 + }, + "end": { + "line": 40, + "column": 3 + } + }, + "line": 38 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 41, + "column": 31 + }, + "end": { + "line": 41, + "column": 32 + } + }, + "loc": { + "start": { + "line": 41, + "column": 37 + }, + "end": { + "line": 43, + "column": 3 + } + }, + "line": 41 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 44, + "column": 31 + }, + "end": { + "line": 44, + "column": 32 + } + }, + "loc": { + "start": { + "line": 44, + "column": 37 + }, + "end": { + "line": 46, + "column": 3 + } + }, + "line": 44 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 121, + "column": 57 + }, + "end": { + "line": 121, + "column": 58 + } + }, + "loc": { + "start": { + "line": 121, + "column": 68 + }, + "end": { + "line": 123, + "column": 1 + } + }, + "line": 121 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 130, + "column": 52 + }, + "end": { + "line": 130, + "column": 53 + } + }, + "loc": { + "start": { + "line": 130, + "column": 72 + }, + "end": { + "line": 139, + "column": 3 + } + }, + "line": 130 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 132, + "column": 27 + }, + "end": { + "line": 132, + "column": 28 + } + }, + "loc": { + "start": { + "line": 132, + "column": 44 + }, + "end": { + "line": 138, + "column": 5 + } + }, + "line": 132 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 31, + "column": 20 + }, + "end": { + "line": 31, + "column": 55 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 31, + "column": 20 + }, + "end": { + "line": 31, + "column": 45 + } + }, + { + "start": { + "line": 31, + "column": 49 + }, + "end": { + "line": 31, + "column": 55 + } + } + ], + "line": 31 + }, + "3": { + "loc": { + "start": { + "line": 35, + "column": 12 + }, + "end": { + "line": 35, + "column": 43 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 35, + "column": 31 + }, + "end": { + "line": 35, + "column": 35 + } + }, + { + "start": { + "line": 35, + "column": 38 + }, + "end": { + "line": 35, + "column": 43 + } + } + ], + "line": 35 + }, + "4": { + "loc": { + "start": { + "line": 127, + "column": 0 + }, + "end": { + "line": 140, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 127, + "column": 0 + }, + "end": { + "line": 140, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 127 + }, + "5": { + "loc": { + "start": { + "line": 133, + "column": 6 + }, + "end": { + "line": 134, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 133, + "column": 6 + }, + "end": { + "line": 134, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 133 + }, + "6": { + "loc": { + "start": { + "line": 136, + "column": 6 + }, + "end": { + "line": 137, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 136, + "column": 6 + }, + "end": { + "line": 137, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 136 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 8, + "15": 8, + "16": 0, + "17": 0, + "18": 8, + "19": 0, + "20": 8, + "21": 0, + "22": 8, + "23": 0, + "24": 8, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "34": 2, + "35": 0, + "36": 0, + "37": 0, + "38": 0, + "39": 0 + }, + "f": { + "0": 2, + "1": 8, + "2": 0, + "3": 0, + "4": 0, + "5": 0, + "6": 2, + "7": 2, + "8": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 8, + 8 + ], + "3": [ + 0, + 0 + ], + "4": [ + 2, + 0 + ], + "5": [ + 0, + 0 + ], + "6": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AA4CY;;;;;;;;;;;;;;;;AA3CZ,SAASA,QAAQC,SAASC,QAAQC,eAAeC,aAAaC,aAAaC,YAAYC,UAAUC,cAAc;AAE/G,SAASC,mBAAmB;AAC5B,SAASC,sBAAsB;AAC/B,SAASC,mBAAmB;AAG5B,SAASC,WAAWC,qBAAqB;AACzC,SAASC,iBAAiBC,oBAAoB;AAC9C,SAASC,sBAAsB;AAGxB,aAAMC,gBAAoBA,MAAM;AAAAC,KAAA;AACnC,QAAM;AAAA,IAAEC;AAAAA,EAAE,IAAIT,eAAe;AAC7B,QAAMU,WAAWJ,eAAe;AAEhC,QAAMK,aAAaV,YAAYG,eAAe;AAC9C,QAAMQ,YAAYX,YAAYI,YAAY,KAAK;AAE/C,QAAMQ,oBAAoBd,YAAY,CAACe,UAAiD;AACpF,UAAMC,QAAQD,MAAME,OAAOD;AAC3BL,aAASP,cAAcc,aAAa;AAAA,MAAEC,MAAMH,UAAU,SAAS,OAAOA;AAAAA,IAAM,CAAC,CAAC;AAAA,EAClF,GAAG,CAACL,QAAQ,CAAC;AAEb,QAAMS,UAAUpB,YAAY,MAAM;AAC9BW,aAASP,cAAciB,WAAW,CAAC;AAAA,EACvC,GAAG,CAACV,QAAQ,CAAC;AAEb,QAAMW,WAAWtB,YAAY,MAAM;AAC/B,SAAKW,SAASP,cAAcmB,eAAe,CAAC;AAAA,EAChD,GAAG,CAACZ,QAAQ,CAAC;AAEb,QAAMa,WAAWxB,YAAY,MAAM;AAC/B,SAAKW,SAASP,cAAcqB,eAAe,CAAC;AAAA,EAChD,GAAG,CAACd,QAAQ,CAAC;AAEb,SACI,uBAAC,UACG,MAAMC,YACN,WAAS,MACT,UAAS,MACT,SAEA;AAAA,2BAAC,eAAaF,YAAE,oBAAoB,KAApC;AAAA;AAAA;AAAA;AAAA,WAAsC;AAAA,IACtC,uBAAC,aAAD;AAAA;AAAA;AAAA;AAAA,WAAQ;AAAA,IACR,uBAAC,iBACG,iCAAC,eAAY,WAAS,MAClB;AAAA,6BAAC,cAAW,IAAG,2BAA2BA,YAAE,8BAA8B,KAA1E;AAAA;AAAA;AAAA;AAAA,aAA4E;AAAA,MAC5E,uBAAC,UACG,SAAQ,2BACR,IAAG,qBACH,OAAOG,WACP,OAAOH,EAAE,8BAA8B,GACvC,UAAUI,mBAEV;AAAA,+BAAC,YAAS,OAAM,QAAQJ,YAAE,oCAAoC,KAA9D;AAAA;AAAA;AAAA;AAAA,eAAgE;AAAA,QAChE,uBAAC,YAAS,OAAM,SAASA,YAAE,qCAAqC,KAAhE;AAAA;AAAA;AAAA;AAAA,eAAkE;AAAA,QAClE,uBAAC,YAAS,OAAM,QAAQA,YAAE,oCAAoC,KAA9D;AAAA;AAAA;AAAA;AAAA,eAAgE;AAAA,WATpE;AAAA;AAAA;AAAA;AAAA,aAUA;AAAA,SAZJ;AAAA;AAAA;AAAA;AAAA,WAaA,KAdJ;AAAA;AAAA;AAAA;AAAA,WAeA;AAAA,IACA,uBAAC,aAAD;AAAA;AAAA;AAAA;AAAA,WAAQ;AAAA,IACR,uBAAC,iBACG;AAAA,6BAAC,UAAO,SAASY,UAAW,yCAA5B;AAAA;AAAA;AAAA;AAAA,aAAqD;AAAA,MACrD,uBAAC,UAAO,SAASE,UAAW,2CAA5B;AAAA;AAAA;AAAA;AAAA,aAAuD;AAAA,SAF3D;AAAA;AAAA;AAAA;AAAA,WAGA;AAAA,OA5BJ;AAAA;AAAA;AAAA;AAAA,SA6BA;AAER;AAAEf,GAxDWD,eAAiB;AAAA,UACZP,gBACGM,gBAEEL,aACDA,WAAW;AAAA;AAAAwB,KALpBlB;AAAiB,IAAAkB;AAAAC,aAAAD,IAAA", + "names": [ + "Button", + "Divider", + "Dialog", + "DialogContent", + "DialogTitle", + "FormControl", + "InputLabel", + "MenuItem", + "Select", + "useCallback", + "useTranslation", + "useSelector", + "actions", + "configActions", + "getIsDialogOpen", + "getThemeMode", + "useAppDispatch", + "SettingsModal", + "_s", + "t", + "dispatch", + "dialogOpen", + "themeMode", + "onChangeThemeMode", + "event", + "value", + "target", + "setThemeMode", + "mode", + "onClose", + "closeModal", + "onExport", + "exportSettings", + "onImport", + "importSettings", + "_c", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/settings/modal.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/settings/modal.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "f186f6a3359aa47019941216bf3988709246a759" + }, + "/home/bartosz/projects/speeddial/src/components/settings/index.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/settings/index.ts", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {}, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/settings/index.ts" + ], + "mappings": "AAAA,+BAA+B;AAC/B,8BAA8B;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "59d19892a38841518a0ca555f33a2bb015ebac5b" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-autofocus.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-autofocus.ts", + "statementMap": { + "0": { + "start": { + "line": 2, + "column": 28 + }, + "end": { + "line": 19, + "column": 1 + } + }, + "1": { + "start": { + "line": 3, + "column": 14 + }, + "end": { + "line": 3, + "column": 22 + } + }, + "2": { + "start": { + "line": 4, + "column": 2 + }, + "end": { + "line": 17, + "column": 16 + } + }, + "3": { + "start": { + "line": 5, + "column": 4 + }, + "end": { + "line": 15, + "column": 5 + } + }, + "4": { + "start": { + "line": 6, + "column": 17 + }, + "end": { + "line": 11, + "column": 12 + } + }, + "5": { + "start": { + "line": 7, + "column": 8 + }, + "end": { + "line": 10, + "column": 9 + } + }, + "6": { + "start": { + "line": 8, + "column": 10 + }, + "end": { + "line": 8, + "column": 30 + } + }, + "7": { + "start": { + "line": 9, + "column": 10 + }, + "end": { + "line": 9, + "column": 31 + } + }, + "8": { + "start": { + "line": 12, + "column": 6 + }, + "end": { + "line": 14, + "column": 8 + } + }, + "9": { + "start": { + "line": 13, + "column": 8 + }, + "end": { + "line": 13, + "column": 25 + } + }, + "10": { + "start": { + "line": 16, + "column": 4 + }, + "end": { + "line": 16, + "column": 18 + } + }, + "11": { + "start": { + "line": 18, + "column": 2 + }, + "end": { + "line": 18, + "column": 13 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 2, + "column": 28 + }, + "end": { + "line": 2, + "column": 29 + } + }, + "loc": { + "start": { + "line": 2, + "column": 41 + }, + "end": { + "line": 19, + "column": 1 + } + }, + "line": 2 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 4, + "column": 12 + }, + "end": { + "line": 4, + "column": 13 + } + }, + "loc": { + "start": { + "line": 4, + "column": 18 + }, + "end": { + "line": 17, + "column": 3 + } + }, + "line": 4 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 6, + "column": 28 + }, + "end": { + "line": 6, + "column": 29 + } + }, + "loc": { + "start": { + "line": 6, + "column": 34 + }, + "end": { + "line": 11, + "column": 7 + } + }, + "line": 6 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 12, + "column": 13 + }, + "end": { + "line": 12, + "column": 14 + } + }, + "loc": { + "start": { + "line": 12, + "column": 19 + }, + "end": { + "line": 14, + "column": 7 + } + }, + "line": 12 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 4 + }, + "end": { + "line": 15, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 4 + }, + "end": { + "line": 15, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 7, + "column": 8 + }, + "end": { + "line": 10, + "column": 9 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 7, + "column": 8 + }, + "end": { + "line": 10, + "column": 9 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 7 + } + }, + "s": { + "0": 2, + "1": 8, + "2": 8, + "3": 4, + "4": 0, + "5": 0, + "6": 0, + "7": 0, + "8": 0, + "9": 0, + "10": 4, + "11": 8 + }, + "f": { + "0": 8, + "1": 4, + "2": 0, + "3": 0 + }, + "b": { + "0": [ + 0, + 4 + ], + "1": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-autofocus.ts" + ], + "mappings": "AAAA,SAAS,WAAW,cAAc;AAG3B,aAAM,eAAe,CAAC,YAAqB;AAC9C,QAAM,MAAM,OAAyB;AACrC,YAAU,MAAM;AACZ,QAAI,SAAS;AACT,YAAM,KAAK,WAAW,MAAM;AACxB,YAAI,IAAI,SAAS;AACb,cAAI,QAAQ,MAAM;AAClB,cAAI,QAAQ,OAAO;AAAA,QACvB;AAAA,MACJ,GAAG,EAAE;AACL,aAAO,MAAM;AACT,qBAAa,EAAE;AAAA,MACnB;AAAA,IACJ;AACA,WAAO;AAAA,EACX,GAAG,CAAC,OAAO,CAAC;AAEZ,SAAO;AACX;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "32cf18112770930bff81deab385f5ed387a5e31e" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-draft.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-draft.ts", + "statementMap": { + "0": { + "start": { + "line": 2, + "column": 24 + }, + "end": { + "line": 22, + "column": 1 + } + }, + "1": { + "start": { + "line": 3, + "column": 28 + }, + "end": { + "line": 3, + "column": 44 + } + }, + "2": { + "start": { + "line": 4, + "column": 2 + }, + "end": { + "line": 6, + "column": 15 + } + }, + "3": { + "start": { + "line": 5, + "column": 4 + }, + "end": { + "line": 5, + "column": 21 + } + }, + "4": { + "start": { + "line": 7, + "column": 14 + }, + "end": { + "line": 9, + "column": 8 + } + }, + "5": { + "start": { + "line": 8, + "column": 4 + }, + "end": { + "line": 8, + "column": 49 + } + }, + "6": { + "start": { + "line": 8, + "column": 20 + }, + "end": { + "line": 8, + "column": 47 + } + }, + "7": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 21, + "column": 4 + } + }, + "8": { + "start": { + "line": 11, + "column": 26 + }, + "end": { + "line": 18, + "column": 5 + } + }, + "9": { + "start": { + "line": 15, + "column": 8 + }, + "end": { + "line": 15, + "column": 37 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 2, + "column": 24 + }, + "end": { + "line": 2, + "column": 25 + } + }, + "loc": { + "start": { + "line": 2, + "column": 36 + }, + "end": { + "line": 22, + "column": 1 + } + }, + "line": 2 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 4, + "column": 12 + }, + "end": { + "line": 4, + "column": 13 + } + }, + "loc": { + "start": { + "line": 4, + "column": 18 + }, + "end": { + "line": 6, + "column": 3 + } + }, + "line": 4 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 7, + "column": 26 + }, + "end": { + "line": 7, + "column": 27 + } + }, + "loc": { + "start": { + "line": 7, + "column": 42 + }, + "end": { + "line": 9, + "column": 3 + } + }, + "line": 7 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 8, + "column": 13 + }, + "end": { + "line": 8, + "column": 14 + } + }, + "loc": { + "start": { + "line": 8, + "column": 20 + }, + "end": { + "line": 8, + "column": 47 + } + }, + "line": 8 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 11, + "column": 16 + }, + "end": { + "line": 11, + "column": 17 + } + }, + "loc": { + "start": { + "line": 11, + "column": 26 + }, + "end": { + "line": 18, + "column": 5 + } + }, + "line": 11 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 14, + "column": 16 + }, + "end": { + "line": 14, + "column": 17 + } + }, + "loc": { + "start": { + "line": 14, + "column": 27 + }, + "end": { + "line": 16, + "column": 7 + } + }, + "line": 14 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 8, + "column": 20 + }, + "end": { + "line": 8, + "column": 47 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 8, + "column": 20 + }, + "end": { + "line": 8, + "column": 21 + } + }, + { + "start": { + "line": 8, + "column": 25 + }, + "end": { + "line": 8, + "column": 47 + } + } + ], + "line": 8 + }, + "1": { + "loc": { + "start": { + "line": 13, + "column": 13 + }, + "end": { + "line": 13, + "column": 31 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 13, + "column": 13 + }, + "end": { + "line": 13, + "column": 25 + } + }, + { + "start": { + "line": 13, + "column": 29 + }, + "end": { + "line": 13, + "column": 31 + } + } + ], + "line": 13 + } + }, + "s": { + "0": 2, + "1": 236, + "2": 236, + "3": 12, + "4": 236, + "5": 56, + "6": 62, + "7": 236, + "8": 292, + "9": 48 + }, + "f": { + "0": 236, + "1": 12, + "2": 56, + "3": 62, + "4": 292, + "5": 48 + }, + "b": { + "0": [ + 62, + 62 + ], + "1": [ + 292, + 68 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-draft.ts" + ], + "mappings": "AACA,SAAS,aAAa,WAAW,gBAAgB;AAO1C,aAAM,WAAW,CAAI,WAA0B;AAClD,QAAM,CAAC,OAAO,QAAQ,IAAI,SAAwB,MAAM;AAExD,YAAU,MAAM;AACZ,aAAS,MAAM;AAAA,EACnB,GAAG,CAAC,MAAM,CAAC;AAEX,QAAM,MAAM,YAAY,CAA0B,KAAQ,UAA8C;AACpG,aAAS,OAAK,KAAK,EAAE,GAAG,GAAG,CAAC,GAAG,GAAG,MAAM,CAAC;AAAA,EAC7C,GAAG,CAAC,CAAC;AAEL,SAAO;AAAA,IACH,YAAY,CAA0B,SAAY;AAAA,MAC9C,IAAI;AAAA,MACJ,OAAO,QAAQ,GAAG,KAAK;AAAA,MACvB,UAAU,CAAC,UAAyC;AAChD,YAAI,KAAK,MAAM,OAAO,KAAsB;AAAA,MAChD;AAAA,MACA,MAAM;AAAA,IACV;AAAA,IACA,OAAO;AAAA,IACP;AAAA,EACJ;AACJ;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "c2a92cb50deb27fb41aee6dd6ab389d2ac830623" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-form-handlers.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-form-handlers.ts", + "statementMap": { + "0": { + "start": { + "line": 2, + "column": 31 + }, + "end": { + "line": 25, + "column": 1 + } + }, + "1": { + "start": { + "line": 3, + "column": 20 + }, + "end": { + "line": 23, + "column": 3 + } + }, + "2": { + "start": { + "line": 5, + "column": 6 + }, + "end": { + "line": 7, + "column": 7 + } + }, + "3": { + "start": { + "line": 6, + "column": 8 + }, + "end": { + "line": 6, + "column": 15 + } + }, + "4": { + "start": { + "line": 8, + "column": 6 + }, + "end": { + "line": 20, + "column": 7 + } + }, + "5": { + "start": { + "line": 10, + "column": 10 + }, + "end": { + "line": 10, + "column": 33 + } + }, + "6": { + "start": { + "line": 11, + "column": 10 + }, + "end": { + "line": 11, + "column": 34 + } + }, + "7": { + "start": { + "line": 12, + "column": 10 + }, + "end": { + "line": 12, + "column": 19 + } + }, + "8": { + "start": { + "line": 13, + "column": 10 + }, + "end": { + "line": 13, + "column": 16 + } + }, + "9": { + "start": { + "line": 15, + "column": 10 + }, + "end": { + "line": 15, + "column": 33 + } + }, + "10": { + "start": { + "line": 16, + "column": 10 + }, + "end": { + "line": 16, + "column": 34 + } + }, + "11": { + "start": { + "line": 17, + "column": 10 + }, + "end": { + "line": 17, + "column": 19 + } + }, + "12": { + "start": { + "line": 18, + "column": 10 + }, + "end": { + "line": 18, + "column": 16 + } + }, + "13": { + "start": { + "line": 24, + "column": 2 + }, + "end": { + "line": 24, + "column": 23 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 2, + "column": 31 + }, + "end": { + "line": 2, + "column": 32 + } + }, + "loc": { + "start": { + "line": 2, + "column": 55 + }, + "end": { + "line": 25, + "column": 1 + } + }, + "line": 2 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 4, + "column": 4 + }, + "end": { + "line": 4, + "column": 5 + } + }, + "loc": { + "start": { + "line": 4, + "column": 15 + }, + "end": { + "line": 21, + "column": 5 + } + }, + "line": 4 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 6 + }, + "end": { + "line": 7, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 6 + }, + "end": { + "line": 7, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 8, + "column": 6 + }, + "end": { + "line": 20, + "column": 7 + } + }, + "type": "switch", + "locations": [ + { + "start": { + "line": 9, + "column": 8 + }, + "end": { + "line": 13, + "column": 16 + } + }, + { + "start": { + "line": 14, + "column": 8 + }, + "end": { + "line": 18, + "column": 16 + } + }, + { + "start": { + "line": 19, + "column": 8 + }, + "end": { + "line": 19, + "column": 16 + } + } + ], + "line": 8 + } + }, + "s": { + "0": 2, + "1": 236, + "2": 48, + "3": 0, + "4": 48, + "5": 0, + "6": 0, + "7": 0, + "8": 0, + "9": 0, + "10": 0, + "11": 0, + "12": 0, + "13": 236 + }, + "f": { + "0": 236, + "1": 48 + }, + "b": { + "0": [ + 0, + 48 + ], + "1": [ + 0, + 0, + 48 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-form-handlers.ts" + ], + "mappings": "AACA,SAAS,mBAAmB;AAGrB,aAAM,kBAAkB,CAAC,EAAE,QAAQ,OAAO,MAA+C;AAC5F,QAAM,YAAY;AAAA,IACd,WAAS;AACL,UAAI,EAAE,MAAM,kBAAkB,mBAAmB;AAC7C;AAAA,MACJ;AACA,cAAQ,MAAM,KAAK;AAAA,QACf,KAAK;AACD,gBAAM,eAAe;AACrB,gBAAM,gBAAgB;AACtB,iBAAO;AACP;AAAA,QACJ,KAAK;AACD,gBAAM,eAAe;AACrB,gBAAM,gBAAgB;AACtB,iBAAO;AACP;AAAA,QACJ;AAAA,MACJ;AAAA,IACJ;AAAA,IACA,CAAC,QAAQ,MAAM;AAAA,EACnB;AAEA,SAAO,EAAE,UAAU;AACvB;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "a836cb9f4ab20f9bf856d416a901c5e9dae1024d" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/edit-group-dialog.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/edit-group-dialog.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 123 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 27, + "column": 31 + }, + "end": { + "line": 78, + "column": 1 + } + }, + "10": { + "start": { + "line": 28, + "column": 2 + }, + "end": { + "line": 28, + "column": 7 + } + }, + "11": { + "start": { + "line": 31, + "column": 6 + }, + "end": { + "line": 31, + "column": 22 + } + }, + "12": { + "start": { + "line": 32, + "column": 24 + }, + "end": { + "line": 32, + "column": 53 + } + }, + "13": { + "start": { + "line": 33, + "column": 15 + }, + "end": { + "line": 33, + "column": 103 + } + }, + "14": { + "start": { + "line": 33, + "column": 38 + }, + "end": { + "line": 33, + "column": 102 + } + }, + "15": { + "start": { + "line": 34, + "column": 19 + }, + "end": { + "line": 34, + "column": 35 + } + }, + "16": { + "start": { + "line": 35, + "column": 29 + }, + "end": { + "line": 35, + "column": 103 + } + }, + "17": { + "start": { + "line": 35, + "column": 47 + }, + "end": { + "line": 35, + "column": 90 + } + }, + "18": { + "start": { + "line": 36, + "column": 16 + }, + "end": { + "line": 36, + "column": 30 + } + }, + "19": { + "start": { + "line": 37, + "column": 17 + }, + "end": { + "line": 41, + "column": 29 + } + }, + "20": { + "start": { + "line": 38, + "column": 4 + }, + "end": { + "line": 40, + "column": 5 + } + }, + "21": { + "start": { + "line": 39, + "column": 6 + }, + "end": { + "line": 39, + "column": 60 + } + }, + "22": { + "start": { + "line": 42, + "column": 23 + }, + "end": { + "line": 45, + "column": 4 + } + }, + "23": { + "start": { + "line": 46, + "column": 19 + }, + "end": { + "line": 46, + "column": 46 + } + }, + "24": { + "start": { + "line": 47, + "column": 2 + }, + "end": { + "line": 77, + "column": 11 + } + }, + "25": { + "start": { + "line": 79, + "column": 0 + }, + "end": { + "line": 81, + "column": 3 + } + }, + "26": { + "start": { + "line": 80, + "column": 2 + }, + "end": { + "line": 80, + "column": 109 + } + }, + "27": { + "start": { + "line": 82, + "column": 0 + }, + "end": { + "line": 82, + "column": 21 + } + }, + "28": { + "start": { + "line": 84, + "column": 0 + }, + "end": { + "line": 84, + "column": 36 + } + }, + "29": { + "start": { + "line": 85, + "column": 0 + }, + "end": { + "line": 98, + "column": 1 + } + }, + "30": { + "start": { + "line": 86, + "column": 2 + }, + "end": { + "line": 86, + "column": 39 + } + }, + "31": { + "start": { + "line": 87, + "column": 2 + }, + "end": { + "line": 87, + "column": 39 + } + }, + "32": { + "start": { + "line": 88, + "column": 2 + }, + "end": { + "line": 97, + "column": 5 + } + }, + "33": { + "start": { + "line": 89, + "column": 4 + }, + "end": { + "line": 89, + "column": 149 + } + }, + "34": { + "start": { + "line": 90, + "column": 4 + }, + "end": { + "line": 96, + "column": 7 + } + }, + "35": { + "start": { + "line": 91, + "column": 6 + }, + "end": { + "line": 92, + "column": 15 + } + }, + "36": { + "start": { + "line": 92, + "column": 8 + }, + "end": { + "line": 92, + "column": 15 + } + }, + "37": { + "start": { + "line": 93, + "column": 32 + }, + "end": { + "line": 93, + "column": 115 + } + }, + "38": { + "start": { + "line": 94, + "column": 6 + }, + "end": { + "line": 95, + "column": 54 + } + }, + "39": { + "start": { + "line": 95, + "column": 8 + }, + "end": { + "line": 95, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 27, + "column": 31 + }, + "end": { + "line": 27, + "column": 32 + } + }, + "loc": { + "start": { + "line": 27, + "column": 37 + }, + "end": { + "line": 78, + "column": 1 + } + }, + "line": 27 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 33, + "column": 27 + }, + "end": { + "line": 33, + "column": 28 + } + }, + "loc": { + "start": { + "line": 33, + "column": 38 + }, + "end": { + "line": 33, + "column": 102 + } + }, + "line": 33 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 35, + "column": 41 + }, + "end": { + "line": 35, + "column": 42 + } + }, + "loc": { + "start": { + "line": 35, + "column": 47 + }, + "end": { + "line": 35, + "column": 90 + } + }, + "line": 35 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 37, + "column": 29 + }, + "end": { + "line": 37, + "column": 30 + } + }, + "loc": { + "start": { + "line": 37, + "column": 35 + }, + "end": { + "line": 41, + "column": 3 + } + }, + "line": 37 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 79, + "column": 59 + }, + "end": { + "line": 79, + "column": 60 + } + }, + "loc": { + "start": { + "line": 79, + "column": 70 + }, + "end": { + "line": 81, + "column": 1 + } + }, + "line": 79 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 88, + "column": 52 + }, + "end": { + "line": 88, + "column": 53 + } + }, + "loc": { + "start": { + "line": 88, + "column": 72 + }, + "end": { + "line": 97, + "column": 3 + } + }, + "line": 88 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 90, + "column": 27 + }, + "end": { + "line": 90, + "column": 28 + } + }, + "loc": { + "start": { + "line": 90, + "column": 44 + }, + "end": { + "line": 96, + "column": 5 + } + }, + "line": 90 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 33, + "column": 78 + }, + "end": { + "line": 33, + "column": 101 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 33, + "column": 78 + }, + "end": { + "line": 33, + "column": 95 + } + }, + { + "start": { + "line": 33, + "column": 99 + }, + "end": { + "line": 33, + "column": 101 + } + } + ], + "line": 33 + }, + "3": { + "loc": { + "start": { + "line": 38, + "column": 4 + }, + "end": { + "line": 40, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 38, + "column": 4 + }, + "end": { + "line": 40, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 38 + }, + "4": { + "loc": { + "start": { + "line": 85, + "column": 0 + }, + "end": { + "line": 98, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 85, + "column": 0 + }, + "end": { + "line": 98, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 85 + }, + "5": { + "loc": { + "start": { + "line": 91, + "column": 6 + }, + "end": { + "line": 92, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 91, + "column": 6 + }, + "end": { + "line": 92, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 91 + }, + "6": { + "loc": { + "start": { + "line": 94, + "column": 6 + }, + "end": { + "line": 95, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 94, + "column": 6 + }, + "end": { + "line": 95, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 94 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 8, + "11": 8, + "12": 8, + "13": 8, + "14": 12, + "15": 8, + "16": 8, + "17": 0, + "18": 8, + "19": 8, + "20": 0, + "21": 0, + "22": 8, + "23": 8, + "24": 8, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "34": 2, + "35": 0, + "36": 0, + "37": 0, + "38": 0, + "39": 0 + }, + "f": { + "0": 2, + "1": 8, + "2": 12, + "3": 0, + "4": 0, + "5": 2, + "6": 2, + "7": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 12, + 12 + ], + "3": [ + 0, + 0 + ], + "4": [ + 2, + 0 + ], + "5": [ + 0, + 0 + ], + "6": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AAwCgB;;;;;;;;;;;;;;;;AAxChB,SAASA,QAAQC,QAAQC,eAAeC,eAAeC,iBAAiB;AAExE,SAASC,mBAAmB;AAC5B,SAASC,sBAAsB;AAC/B,SAASC,mBAAmB;AAG5B,SAASC,sBAAsB;AAC/B,SAASC,kBAAkBC,6BAA6B;AACxD,SAASC,WAAWC,wBAAwB;AAE5C,SAASC,oBAAoB;AAC7B,SAASC,gBAAgB;AACzB,SAASC,uBAAuB;AAGzB,aAAMC,kBAAsBA,MAAM;AAAAC,KAAA;AACrC,QAAM;AAAA,IAAEC;AAAAA,EAAE,IAAIZ,eAAe;AAE7B,QAAMa,gBAAgBZ,YAAYE,gBAAgB;AAClD,QAAMW,OAAOb,YAAY,CAACc,UAAqBX,sBAAsBY,WAAWD,OAAOF,eAAeI,MAAM,EAAE,CAAC;AAE/G,QAAMC,WAAWhB,eAAe;AAChC,QAAMiB,qBAAqBpB,YAAY,MAAMmB,SAASZ,iBAAiBc,eAAe,CAAC,GAAG,CAACF,QAAQ,CAAC;AAEpG,QAAMG,QAAQb,SAASM,IAAI;AAE3B,QAAMQ,SAASvB,YAAY,MAAM;AAC7B,QAAIsB,MAAME,OAAO;AACbL,eAASZ,iBAAiBkB,cAAcH,MAAME,KAAK,CAAC;AAAA,IACxD;AAAA,EACJ,GAAG,CAACL,UAAUG,MAAME,KAAK,CAAC;AAE1B,QAAME,eAAehB,gBAAgB;AAAA,IAAEiB,QAAQP;AAAAA,IAAoBQ,QAAQL;AAAAA,EAAO,CAAC;AAEnF,QAAMM,WAAWrB,aAAasB,QAAQf,IAAI,CAAC;AAE3C,SACI,uBAAC,UAAO,MAAMe,QAAQf,IAAI,GAAG,SAASK,oBAClC;AAAA,2BAAC,iBAAc,GAAIM,cACf,iCAAC,aACG,OAAOb,EAAE,mBAAmB,GAC5B,GAAIS,MAAMS,WAAW,MAAM,GAC3B,WAAS,MACT,QAAO,SACP,SAAQ,YACR,WAAS,MACT,UAAQ,MACR,YARJ;AAAA;AAAA;AAAA;AAAA,WAQuB,KAT3B;AAAA;AAAA;AAAA;AAAA,WAWA;AAAA,IACA,uBAAC,iBACG;AAAA,6BAAC,UAAO,OAAM,aAAY,SAASX,oBAAqBP,YAAE,gBAAgB,KAA1E;AAAA;AAAA;AAAA;AAAA,aAA4E;AAAA,MAC5E,uBAAC,UAAO,OAAM,WAAU,SAASU,QAASV,YAAE,cAAc,KAA1D;AAAA;AAAA;AAAA;AAAA,aAA4D;AAAA,SAFhE;AAAA;AAAA;AAAA;AAAA,WAGA;AAAA,OAhBJ;AAAA;AAAA;AAAA;AAAA,SAiBA;AAER;AAAED,GAzCWD,iBAAmB;AAAA,UACdV,gBAEQC,aACTA,aAEIC,gBAGHM,UAQOC,iBAEJF,YAAY;AAAA;AAAAwB,KAnBpBrB;AAAmB,IAAAqB;AAAAC,aAAAD,IAAA", + "names": [ + "Button", + "Dialog", + "DialogActions", + "DialogContent", + "TextField", + "useCallback", + "useTranslation", + "useSelector", + "useAppDispatch", + "getGroupEditTile", + "groupAdapterSelectors", + "actions", + "speeddialActions", + "useAutofocus", + "useDraft", + "useFormHandlers", + "GroupEditDialog", + "_s", + "t", + "editTileState", + "tile", + "state", + "selectById", + "id", + "dispatch", + "onCloseWithoutSave", + "cancelEditTile", + "draft", + "onSave", + "value", + "saveEditGroup", + "formHandlers", + "cancel", + "submit", + "inputRef", + "Boolean", + "inputProps", + "_c", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/edit-group-dialog.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/edit-group-dialog.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "10dd87d295b01226de83e92878bf1e9588637f8d" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-edit-link-tile.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-edit-link-tile.ts", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 31 + }, + "end": { + "line": 24, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 24 + }, + "end": { + "line": 6, + "column": 52 + } + }, + "2": { + "start": { + "line": 7, + "column": 15 + }, + "end": { + "line": 7, + "column": 103 + } + }, + "3": { + "start": { + "line": 7, + "column": 38 + }, + "end": { + "line": 7, + "column": 102 + } + }, + "4": { + "start": { + "line": 8, + "column": 40 + }, + "end": { + "line": 8, + "column": 55 + } + }, + "5": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 15, + "column": 13 + } + }, + "6": { + "start": { + "line": 10, + "column": 4 + }, + "end": { + "line": 14, + "column": 5 + } + }, + "7": { + "start": { + "line": 11, + "column": 6 + }, + "end": { + "line": 11, + "column": 57 + } + }, + "8": { + "start": { + "line": 13, + "column": 6 + }, + "end": { + "line": 13, + "column": 28 + } + }, + "9": { + "start": { + "line": 16, + "column": 2 + }, + "end": { + "line": 23, + "column": 4 + } + }, + "10": { + "start": { + "line": 21, + "column": 6 + }, + "end": { + "line": 21, + "column": 28 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 5, + "column": 31 + }, + "end": { + "line": 5, + "column": 32 + } + }, + "loc": { + "start": { + "line": 5, + "column": 37 + }, + "end": { + "line": 24, + "column": 1 + } + }, + "line": 5 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 7, + "column": 27 + }, + "end": { + "line": 7, + "column": 28 + } + }, + "loc": { + "start": { + "line": 7, + "column": 38 + }, + "end": { + "line": 7, + "column": 102 + } + }, + "line": 7 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 9, + "column": 12 + }, + "end": { + "line": 9, + "column": 13 + } + }, + "loc": { + "start": { + "line": 9, + "column": 18 + }, + "end": { + "line": 15, + "column": 3 + } + }, + "line": 9 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 20, + "column": 30 + }, + "end": { + "line": 20, + "column": 31 + } + }, + "loc": { + "start": { + "line": 20, + "column": 36 + }, + "end": { + "line": 22, + "column": 5 + } + }, + "line": 20 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 7, + "column": 78 + }, + "end": { + "line": 7, + "column": 101 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 7, + "column": 78 + }, + "end": { + "line": 7, + "column": 95 + } + }, + { + "start": { + "line": 7, + "column": 99 + }, + "end": { + "line": 7, + "column": 101 + } + } + ], + "line": 7 + }, + "1": { + "loc": { + "start": { + "line": 10, + "column": 4 + }, + "end": { + "line": 14, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 10, + "column": 4 + }, + "end": { + "line": 14, + "column": 5 + } + }, + { + "start": { + "line": 12, + "column": 11 + }, + "end": { + "line": 14, + "column": 5 + } + } + ], + "line": 10 + } + }, + "s": { + "0": 2, + "1": 228, + "2": 228, + "3": 232, + "4": 228, + "5": 228, + "6": 8, + "7": 2, + "8": 6, + "9": 228, + "10": 2 + }, + "f": { + "0": 228, + "1": 232, + "2": 8, + "3": 2 + }, + "b": { + "0": [ + 232, + 22 + ], + "1": [ + 2, + 6 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-edit-link-tile.ts" + ], + "mappings": "AACA,SAAS,aAAa,WAAW,gBAAgB;AACjD,SAAS,mBAAmB;AAG5B,SAAS,iBAAiB,6BAA6B;AAEvD,SAAS,gBAAgB;AAGlB,aAAM,kBAAkB,MAAM;AACjC,QAAM,gBAAgB,YAAY,eAAe;AACjD,QAAM,OAAO,YAAY,CAAC,UAAqB,sBAAsB,WAAW,OAAO,eAAe,MAAM,EAAE,CAAC;AAE/G,QAAM,CAAC,aAAa,cAAc,IAAI,SAAS,KAAK;AACpD,YAAU,MAAM;AACZ,QAAI,MAAM;AACN,qBAAe,QAAQ,eAAe,UAAU,CAAC;AAAA,IACrD,OAAO;AACH,qBAAe,KAAK;AAAA,IACxB;AAAA,EACJ,GAAG,CAAC,IAAI,CAAC;AAET,SAAO;AAAA,IACH,OAAO,SAAS,IAAI;AAAA,IACpB,QAAQ,QAAQ,IAAI;AAAA,IACpB;AAAA,IACA,cAAc,YAAY,MAAM;AAC5B,qBAAe,KAAK;AAAA,IACxB,GAAG,CAAC,CAAC;AAAA,EACT;AACJ;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "eb1b73a93a8f3aa6b992c056e6daa6685466127a" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-fetch-metadata.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-fetch-metadata.ts", + "statementMap": { + "0": { + "start": { + "line": 4, + "column": 2 + }, + "end": { + "line": 14, + "column": 4 + } + }, + "1": { + "start": { + "line": 16, + "column": 16 + }, + "end": { + "line": 16, + "column": 19 + } + }, + "2": { + "start": { + "line": 17, + "column": 38 + }, + "end": { + "line": 55, + "column": 1 + } + }, + "3": { + "start": { + "line": 18, + "column": 38 + }, + "end": { + "line": 18, + "column": 53 + } + }, + "4": { + "start": { + "line": 19, + "column": 28 + }, + "end": { + "line": 19, + "column": 42 + } + }, + "5": { + "start": { + "line": 20, + "column": 2 + }, + "end": { + "line": 23, + "column": 12 + } + }, + "6": { + "start": { + "line": 21, + "column": 4 + }, + "end": { + "line": 21, + "column": 25 + } + }, + "7": { + "start": { + "line": 22, + "column": 4 + }, + "end": { + "line": 22, + "column": 19 + } + }, + "8": { + "start": { + "line": 24, + "column": 20 + }, + "end": { + "line": 49, + "column": 24 + } + }, + "9": { + "start": { + "line": 25, + "column": 4 + }, + "end": { + "line": 25, + "column": 24 + } + }, + "10": { + "start": { + "line": 26, + "column": 4 + }, + "end": { + "line": 26, + "column": 19 + } + }, + "11": { + "start": { + "line": 27, + "column": 4 + }, + "end": { + "line": 48, + "column": 5 + } + }, + "12": { + "start": { + "line": 28, + "column": 23 + }, + "end": { + "line": 28, + "column": 62 + } + }, + "13": { + "start": { + "line": 29, + "column": 19 + }, + "end": { + "line": 29, + "column": 40 + } + }, + "14": { + "start": { + "line": 30, + "column": 6 + }, + "end": { + "line": 41, + "column": 7 + } + }, + "15": { + "start": { + "line": 31, + "column": 8 + }, + "end": { + "line": 31, + "column": 37 + } + }, + "16": { + "start": { + "line": 32, + "column": 8 + }, + "end": { + "line": 32, + "column": 23 + } + }, + "17": { + "start": { + "line": 33, + "column": 13 + }, + "end": { + "line": 41, + "column": 7 + } + }, + "18": { + "start": { + "line": 34, + "column": 8 + }, + "end": { + "line": 34, + "column": 61 + } + }, + "19": { + "start": { + "line": 35, + "column": 8 + }, + "end": { + "line": 35, + "column": 37 + } + }, + "20": { + "start": { + "line": 36, + "column": 8 + }, + "end": { + "line": 36, + "column": 42 + } + }, + "21": { + "start": { + "line": 38, + "column": 8 + }, + "end": { + "line": 38, + "column": 97 + } + }, + "22": { + "start": { + "line": 39, + "column": 8 + }, + "end": { + "line": 39, + "column": 37 + } + }, + "23": { + "start": { + "line": 40, + "column": 8 + }, + "end": { + "line": 40, + "column": 55 + } + }, + "24": { + "start": { + "line": 43, + "column": 6 + }, + "end": { + "line": 43, + "column": 43 + } + }, + "25": { + "start": { + "line": 44, + "column": 6 + }, + "end": { + "line": 44, + "column": 35 + } + }, + "26": { + "start": { + "line": 45, + "column": 6 + }, + "end": { + "line": 45, + "column": 19 + } + }, + "27": { + "start": { + "line": 47, + "column": 6 + }, + "end": { + "line": 47, + "column": 27 + } + }, + "28": { + "start": { + "line": 50, + "column": 2 + }, + "end": { + "line": 54, + "column": 4 + } + } + }, + "fnMap": { + "0": { + "name": "capture", + "decl": { + "start": { + "line": 3, + "column": 9 + }, + "end": { + "line": 3, + "column": 16 + } + }, + "loc": { + "start": { + "line": 3, + "column": 95 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "line": 3 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 17, + "column": 38 + }, + "end": { + "line": 17, + "column": 39 + } + }, + "loc": { + "start": { + "line": 17, + "column": 60 + }, + "end": { + "line": 55, + "column": 1 + } + }, + "line": 17 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 20, + "column": 12 + }, + "end": { + "line": 20, + "column": 13 + } + }, + "loc": { + "start": { + "line": 20, + "column": 18 + }, + "end": { + "line": 23, + "column": 3 + } + }, + "line": 20 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 24, + "column": 32 + }, + "end": { + "line": 24, + "column": 33 + } + }, + "loc": { + "start": { + "line": 24, + "column": 48 + }, + "end": { + "line": 49, + "column": 3 + } + }, + "line": 24 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 3, + "column": 48 + }, + "end": { + "line": 3, + "column": 93 + } + }, + "type": "default-arg", + "locations": [ + { + "start": { + "line": 3, + "column": 56 + }, + "end": { + "line": 3, + "column": 93 + } + } + ], + "line": 3 + }, + "1": { + "loc": { + "start": { + "line": 5, + "column": 4 + }, + "end": { + "line": 5, + "column": 53 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 5, + "column": 29 + }, + "end": { + "line": 5, + "column": 34 + } + }, + { + "start": { + "line": 5, + "column": 37 + }, + "end": { + "line": 5, + "column": 53 + } + } + ], + "line": 5 + }, + "2": { + "loc": { + "start": { + "line": 30, + "column": 6 + }, + "end": { + "line": 41, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 30, + "column": 6 + }, + "end": { + "line": 41, + "column": 7 + } + }, + { + "start": { + "line": 33, + "column": 13 + }, + "end": { + "line": 41, + "column": 7 + } + } + ], + "line": 30 + }, + "3": { + "loc": { + "start": { + "line": 30, + "column": 10 + }, + "end": { + "line": 30, + "column": 59 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 30, + "column": 10 + }, + "end": { + "line": 30, + "column": 37 + } + }, + { + "start": { + "line": 30, + "column": 41 + }, + "end": { + "line": 30, + "column": 59 + } + } + ], + "line": 30 + }, + "4": { + "loc": { + "start": { + "line": 33, + "column": 13 + }, + "end": { + "line": 41, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 33, + "column": 13 + }, + "end": { + "line": 41, + "column": 7 + } + }, + { + "start": { + "line": 37, + "column": 13 + }, + "end": { + "line": 41, + "column": 7 + } + } + ], + "line": 33 + } + }, + "s": { + "0": 0, + "1": 2, + "2": 2, + "3": 228, + "4": 228, + "5": 228, + "6": 54, + "7": 54, + "8": 228, + "9": 2, + "10": 2, + "11": 2, + "12": 2, + "13": 2, + "14": 2, + "15": 2, + "16": 2, + "17": 0, + "18": 0, + "19": 0, + "20": 0, + "21": 0, + "22": 0, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 2, + "28": 228 + }, + "f": { + "0": 0, + "1": 228, + "2": 54, + "3": 2 + }, + "b": { + "0": [ + 0 + ], + "1": [ + 0, + 0 + ], + "2": [ + 2, + 0 + ], + "3": [ + 2, + 2 + ], + "4": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-fetch-metadata.ts" + ], + "mappings": "AACA,SAAS,oBAAoB,0BAA0B;AAEvD,SAAS,aAAa,WAAW,gBAAgB;AAKjD,SAAS,QACL,KACA,QACA,WACA,OACA,QAAwB,IAAI,MAAM,0BAA0B,GAC9D;AACE;AAAA,IACI,iBAAiB,QAAQ,QAAQ,IAAI,MAAM,KAAK;AAAA,IAChD;AAAA,MACI,MAAM;AAAA,QACF;AAAA,QACA;AAAA,QACA;AAAA,MACJ;AAAA,MACA;AAAA,IACJ;AAAA,EACJ;AACJ;AAmBA,MAAM,UAAU;AAET,aAAM,yBAAyB,CAAO,KAAa,gBAA6E;AACnI,QAAM,CAAC,YAAY,aAAa,IAAI,SAAS,KAAK;AAClD,QAAM,CAAC,OAAO,QAAQ,IAAI,SAA4B,IAAI;AAE1D,YAAU,MAAM;AACZ,kBAAc,KAAK;AACnB,aAAS,IAAI;AAAA,EACjB,GAAG,CAAC,GAAG,CAAC;AAER,QAAM,YAAY,YAAY,OAAO,SAAe;AAChD,kBAAc,IAAI;AAClB,aAAS,IAAI;AAEb,QAAI;AACA,YAAM,WAAW,MAAM,MAAM,qBAAqB,KAAK;AACvD,YAAM,OAAO,MAAM,SAAS,KAAK;AAEjC,UAAI,SAAS,WAAW,WAAW,cAAc,MAAM;AACnD,oBAAY,MAAM,KAAK,IAAI;AAC3B,iBAAS,IAAI;AAAA,MACjB,WAAW,WAAW,MAAM;AACxB,gBAAQ,KAAK,SAAS,QAAQ,KAAK,OAAO,SAAS;AACnD,oBAAY,MAAM,KAAK,IAAI;AAC3B,iBAAS,EAAE,SAAS,KAAK,MAA6B,CAAC;AAAA,MAC3D,OAAO;AACH,gBAAQ,KAAK,SAAS,QAAQ,GAAG,SAAS,cAAc,KAAK,UAAU,IAAI,KAAK,OAAO;AACvF,oBAAY,MAAM,KAAK,IAAI;AAC3B,iBAAS,EAAE,MAAM,SAAS,OAAO,SAAS,EAAsB,CAAC;AAAA,MACrE;AAAA,IACJ,SAAS,KAAP;AACE,cAAQ,KAAK,MAAM,IAAI,SAAS,GAAY;AAC5C,kBAAY,MAAM,KAAK,IAAI;AAC3B,eAAS,CAAC,CAAC;AAAA,IACf,UAAE;AACE,oBAAc,KAAK;AAAA,IACvB;AAAA,EACJ,GAAG,CAAC,aAAa,GAAG,CAAC;AAErB,SAAO;AAAA,IACH;AAAA,IACA;AAAA,IACA;AAAA,EACJ;AACJ;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "96068708dbf819e14c22c89248bcc4e062018597" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-popover-state.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-popover-state.ts", + "statementMap": { + "0": { + "start": { + "line": 2, + "column": 31 + }, + "end": { + "line": 24, + "column": 1 + } + }, + "1": { + "start": { + "line": 3, + "column": 35 + }, + "end": { + "line": 12, + "column": 47 + } + }, + "2": { + "start": { + "line": 4, + "column": 4 + }, + "end": { + "line": 11, + "column": 5 + } + }, + "3": { + "start": { + "line": 6, + "column": 8 + }, + "end": { + "line": 6, + "column": 42 + } + }, + "4": { + "start": { + "line": 8, + "column": 8 + }, + "end": { + "line": 8, + "column": 70 + } + }, + "5": { + "start": { + "line": 10, + "column": 8 + }, + "end": { + "line": 10, + "column": 21 + } + }, + "6": { + "start": { + "line": 13, + "column": 2 + }, + "end": { + "line": 23, + "column": 4 + } + }, + "7": { + "start": { + "line": 17, + "column": 8 + }, + "end": { + "line": 17, + "column": 49 + } + }, + "8": { + "start": { + "line": 20, + "column": 8 + }, + "end": { + "line": 20, + "column": 36 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 2, + "column": 31 + }, + "end": { + "line": 2, + "column": 32 + } + }, + "loc": { + "start": { + "line": 2, + "column": 37 + }, + "end": { + "line": 24, + "column": 1 + } + }, + "line": 2 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 3, + "column": 46 + }, + "end": { + "line": 3, + "column": 47 + } + }, + "loc": { + "start": { + "line": 3, + "column": 65 + }, + "end": { + "line": 12, + "column": 3 + } + }, + "line": 3 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 16, + "column": 24 + }, + "end": { + "line": 16, + "column": 25 + } + }, + "loc": { + "start": { + "line": 16, + "column": 42 + }, + "end": { + "line": 18, + "column": 7 + } + }, + "line": 16 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 19, + "column": 25 + }, + "end": { + "line": 19, + "column": 26 + } + }, + "loc": { + "start": { + "line": 19, + "column": 31 + }, + "end": { + "line": 21, + "column": 7 + } + }, + "line": 19 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 4, + "column": 4 + }, + "end": { + "line": 11, + "column": 5 + } + }, + "type": "switch", + "locations": [ + { + "start": { + "line": 5, + "column": 6 + }, + "end": { + "line": 6, + "column": 42 + } + }, + { + "start": { + "line": 7, + "column": 6 + }, + "end": { + "line": 8, + "column": 70 + } + }, + { + "start": { + "line": 9, + "column": 6 + }, + "end": { + "line": 10, + "column": 21 + } + } + ], + "line": 4 + } + }, + "s": { + "0": 2, + "1": 228, + "2": 0, + "3": 0, + "4": 0, + "5": 0, + "6": 228, + "7": 0, + "8": 0 + }, + "f": { + "0": 228, + "1": 0, + "2": 0, + "3": 0 + }, + "b": { + "0": [ + 0, + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-popover-state.ts" + ], + "mappings": "AAAA,SAAS,YAAY,mBAAmB;AAGjC,aAAM,kBAAkB,MAAM;AAejC,QAAM,CAAC,cAAc,QAAQ,IAAI,WAAW,CAAC,OAAc,WAAqC;AAC5F,YAAQ,OAAO,MAAM;AAAA,MACjB,KAAK;AACD,eAAO,EAAE,GAAG,OAAO,QAAQ,KAAK;AAAA,MACpC,KAAK;AACD,eAAO,EAAE,GAAG,OAAO,QAAQ,OAAO,QAAQ,MAAM,OAAO,KAAK;AAAA,MAChE;AACI,eAAO;AAAA,IACf;AAAA,EACJ,GAAG,EAAE,QAAQ,MAAM,MAAM,kBAAkB,CAAC;AAE5C,SAAO;AAAA,IACH;AAAA,IACA;AAAA,MACI,MAAM,YAAY,CAAC,QAAqB,SAAwB;AAC5D,iBAAS,EAAE,MAAM,QAAQ,QAAQ,KAAK,CAAC;AAAA,MAC3C,GAAG,CAAC,CAAC;AAAA,MACL,OAAO,YAAY,MAAM;AACrB,iBAAS,EAAE,MAAM,QAAQ,CAAC;AAAA,MAC9B,GAAG,CAAC,CAAC;AAAA,IACT;AAAA,EACJ;AACJ;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "ac47589611bddcad465f4c12236f05a889e2f7fb" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/edit-link-dialog.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/edit-link-dialog.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 122 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 16, + "column": 31 + }, + "end": { + "line": 16, + "column": 45 + } + }, + "10": { + "start": { + "line": 28, + "column": 28 + }, + "end": { + "line": 36, + "column": 3 + } + }, + "11": { + "start": { + "line": 30, + "column": 7 + }, + "end": { + "line": 36, + "column": 1 + } + }, + "12": { + "start": { + "line": 37, + "column": 0 + }, + "end": { + "line": 37, + "column": 18 + } + }, + "13": { + "start": { + "line": 38, + "column": 17 + }, + "end": { + "line": 47, + "column": 3 + } + }, + "14": { + "start": { + "line": 40, + "column": 7 + }, + "end": { + "line": 47, + "column": 1 + } + }, + "15": { + "start": { + "line": 48, + "column": 0 + }, + "end": { + "line": 48, + "column": 15 + } + }, + "16": { + "start": { + "line": 49, + "column": 28 + }, + "end": { + "line": 54, + "column": 2 + } + }, + "17": { + "start": { + "line": 55, + "column": 0 + }, + "end": { + "line": 55, + "column": 26 + } + }, + "18": { + "start": { + "line": 56, + "column": 33 + }, + "end": { + "line": 59, + "column": 2 + } + }, + "19": { + "start": { + "line": 60, + "column": 0 + }, + "end": { + "line": 60, + "column": 31 + } + }, + "20": { + "start": { + "line": 61, + "column": 26 + }, + "end": { + "line": 71, + "column": 3 + } + }, + "21": { + "start": { + "line": 62, + "column": 31 + }, + "end": { + "line": 62, + "column": 72 + } + }, + "22": { + "start": { + "line": 66, + "column": 7 + }, + "end": { + "line": 71, + "column": 1 + } + }, + "23": { + "start": { + "line": 72, + "column": 0 + }, + "end": { + "line": 72, + "column": 24 + } + }, + "24": { + "start": { + "line": 73, + "column": 25 + }, + "end": { + "line": 98, + "column": 1 + } + }, + "25": { + "start": { + "line": 99, + "column": 23 + }, + "end": { + "line": 103, + "column": 2 + } + }, + "26": { + "start": { + "line": 104, + "column": 0 + }, + "end": { + "line": 104, + "column": 21 + } + }, + "27": { + "start": { + "line": 105, + "column": 21 + }, + "end": { + "line": 120, + "column": 1 + } + }, + "28": { + "start": { + "line": 106, + "column": 2 + }, + "end": { + "line": 106, + "column": 7 + } + }, + "29": { + "start": { + "line": 109, + "column": 6 + }, + "end": { + "line": 109, + "column": 22 + } + }, + "30": { + "start": { + "line": 110, + "column": 2 + }, + "end": { + "line": 112, + "column": 3 + } + }, + "31": { + "start": { + "line": 111, + "column": 4 + }, + "end": { + "line": 111, + "column": 16 + } + }, + "32": { + "start": { + "line": 113, + "column": 2 + }, + "end": { + "line": 115, + "column": 3 + } + }, + "33": { + "start": { + "line": 114, + "column": 4 + }, + "end": { + "line": 114, + "column": 62 + } + }, + "34": { + "start": { + "line": 116, + "column": 2 + }, + "end": { + "line": 118, + "column": 3 + } + }, + "35": { + "start": { + "line": 117, + "column": 4 + }, + "end": { + "line": 117, + "column": 68 + } + }, + "36": { + "start": { + "line": 119, + "column": 2 + }, + "end": { + "line": 119, + "column": 29 + } + }, + "37": { + "start": { + "line": 121, + "column": 0 + }, + "end": { + "line": 123, + "column": 3 + } + }, + "38": { + "start": { + "line": 122, + "column": 2 + }, + "end": { + "line": 122, + "column": 26 + } + }, + "39": { + "start": { + "line": 124, + "column": 23 + }, + "end": { + "line": 126, + "column": 1 + } + }, + "40": { + "start": { + "line": 125, + "column": 2 + }, + "end": { + "line": 125, + "column": 25 + } + }, + "41": { + "start": { + "line": 127, + "column": 17 + }, + "end": { + "line": 127, + "column": 131 + } + }, + "42": { + "start": { + "line": 128, + "column": 30 + }, + "end": { + "line": 364, + "column": 1 + } + }, + "43": { + "start": { + "line": 129, + "column": 2 + }, + "end": { + "line": 129, + "column": 8 + } + }, + "44": { + "start": { + "line": 132, + "column": 6 + }, + "end": { + "line": 132, + "column": 22 + } + }, + "45": { + "start": { + "line": 142, + "column": 6 + }, + "end": { + "line": 142, + "column": 23 + } + }, + "46": { + "start": { + "line": 143, + "column": 19 + }, + "end": { + "line": 143, + "column": 35 + } + }, + "47": { + "start": { + "line": 144, + "column": 29 + }, + "end": { + "line": 144, + "column": 103 + } + }, + "48": { + "start": { + "line": 144, + "column": 47 + }, + "end": { + "line": 144, + "column": 90 + } + }, + "49": { + "start": { + "line": 145, + "column": 16 + }, + "end": { + "line": 145, + "column": 49 + } + }, + "50": { + "start": { + "line": 146, + "column": 22 + }, + "end": { + "line": 164, + "column": 16 + } + }, + "51": { + "start": { + "line": 149, + "column": 4 + }, + "end": { + "line": 163, + "column": 5 + } + }, + "52": { + "start": { + "line": 150, + "column": 6 + }, + "end": { + "line": 150, + "column": 35 + } + }, + "53": { + "start": { + "line": 151, + "column": 6 + }, + "end": { + "line": 151, + "column": 55 + } + }, + "54": { + "start": { + "line": 152, + "column": 6 + }, + "end": { + "line": 154, + "column": 7 + } + }, + "55": { + "start": { + "line": 153, + "column": 8 + }, + "end": { + "line": 153, + "column": 51 + } + }, + "56": { + "start": { + "line": 155, + "column": 6 + }, + "end": { + "line": 157, + "column": 7 + } + }, + "57": { + "start": { + "line": 156, + "column": 8 + }, + "end": { + "line": 156, + "column": 50 + } + }, + "58": { + "start": { + "line": 158, + "column": 6 + }, + "end": { + "line": 162, + "column": 9 + } + }, + "59": { + "start": { + "line": 159, + "column": 8 + }, + "end": { + "line": 161, + "column": 9 + } + }, + "60": { + "start": { + "line": 160, + "column": 10 + }, + "end": { + "line": 160, + "column": 36 + } + }, + "61": { + "start": { + "line": 169, + "column": 6 + }, + "end": { + "line": 169, + "column": 64 + } + }, + "62": { + "start": { + "line": 170, + "column": 20 + }, + "end": { + "line": 170, + "column": 39 + } + }, + "63": { + "start": { + "line": 171, + "column": 22 + }, + "end": { + "line": 176, + "column": 31 + } + }, + "64": { + "start": { + "line": 172, + "column": 4 + }, + "end": { + "line": 174, + "column": 7 + } + }, + "65": { + "start": { + "line": 175, + "column": 4 + }, + "end": { + "line": 175, + "column": 19 + } + }, + "66": { + "start": { + "line": 177, + "column": 17 + }, + "end": { + "line": 181, + "column": 28 + } + }, + "67": { + "start": { + "line": 178, + "column": 4 + }, + "end": { + "line": 180, + "column": 5 + } + }, + "68": { + "start": { + "line": 179, + "column": 6 + }, + "end": { + "line": 179, + "column": 58 + } + }, + "69": { + "start": { + "line": 182, + "column": 19 + }, + "end": { + "line": 192, + "column": 3 + } + }, + "70": { + "start": { + "line": 182, + "column": 29 + }, + "end": { + "line": 192, + "column": 3 + } + }, + "71": { + "start": { + "line": 183, + "column": 17 + }, + "end": { + "line": 183, + "column": 69 + } + }, + "72": { + "start": { + "line": 184, + "column": 4 + }, + "end": { + "line": 191, + "column": 5 + } + }, + "73": { + "start": { + "line": 185, + "column": 22 + }, + "end": { + "line": 185, + "column": 57 + } + }, + "74": { + "start": { + "line": 185, + "column": 43 + }, + "end": { + "line": 185, + "column": 56 + } + }, + "75": { + "start": { + "line": 186, + "column": 6 + }, + "end": { + "line": 186, + "column": 32 + } + }, + "76": { + "start": { + "line": 188, + "column": 6 + }, + "end": { + "line": 190, + "column": 9 + } + }, + "77": { + "start": { + "line": 193, + "column": 23 + }, + "end": { + "line": 196, + "column": 4 + } + }, + "78": { + "start": { + "line": 200, + "column": 7 + }, + "end": { + "line": 200, + "column": 24 + } + }, + "79": { + "start": { + "line": 201, + "column": 33 + }, + "end": { + "line": 203, + "column": 3 + } + }, + "80": { + "start": { + "line": 201, + "column": 43 + }, + "end": { + "line": 203, + "column": 3 + } + }, + "81": { + "start": { + "line": 202, + "column": 4 + }, + "end": { + "line": 202, + "column": 43 + } + }, + "82": { + "start": { + "line": 204, + "column": 25 + }, + "end": { + "line": 208, + "column": 35 + } + }, + "83": { + "start": { + "line": 207, + "column": 4 + }, + "end": { + "line": 207, + "column": 37 + } + }, + "84": { + "start": { + "line": 209, + "column": 27 + }, + "end": { + "line": 221, + "column": 10 + } + }, + "85": { + "start": { + "line": 209, + "column": 53 + }, + "end": { + "line": 221, + "column": 10 + } + }, + "86": { + "start": { + "line": 222, + "column": 25 + }, + "end": { + "line": 329, + "column": 3 + } + }, + "87": { + "start": { + "line": 223, + "column": 4 + }, + "end": { + "line": 233, + "column": 5 + } + }, + "88": { + "start": { + "line": 224, + "column": 6 + }, + "end": { + "line": 232, + "column": 15 + } + }, + "89": { + "start": { + "line": 234, + "column": 4 + }, + "end": { + "line": 328, + "column": 13 + } + }, + "90": { + "start": { + "line": 265, + "column": 116 + }, + "end": { + "line": 287, + "column": 16 + } + }, + "91": { + "start": { + "line": 330, + "column": 2 + }, + "end": { + "line": 363, + "column": 11 + } + }, + "92": { + "start": { + "line": 365, + "column": 0 + }, + "end": { + "line": 367, + "column": 3 + } + }, + "93": { + "start": { + "line": 366, + "column": 2 + }, + "end": { + "line": 366, + "column": 131 + } + }, + "94": { + "start": { + "line": 368, + "column": 0 + }, + "end": { + "line": 368, + "column": 21 + } + }, + "95": { + "start": { + "line": 370, + "column": 0 + }, + "end": { + "line": 370, + "column": 33 + } + }, + "96": { + "start": { + "line": 371, + "column": 0 + }, + "end": { + "line": 371, + "column": 30 + } + }, + "97": { + "start": { + "line": 372, + "column": 0 + }, + "end": { + "line": 372, + "column": 41 + } + }, + "98": { + "start": { + "line": 373, + "column": 0 + }, + "end": { + "line": 373, + "column": 46 + } + }, + "99": { + "start": { + "line": 374, + "column": 0 + }, + "end": { + "line": 374, + "column": 39 + } + }, + "100": { + "start": { + "line": 375, + "column": 0 + }, + "end": { + "line": 375, + "column": 36 + } + }, + "101": { + "start": { + "line": 376, + "column": 0 + }, + "end": { + "line": 376, + "column": 36 + } + }, + "102": { + "start": { + "line": 377, + "column": 0 + }, + "end": { + "line": 390, + "column": 1 + } + }, + "103": { + "start": { + "line": 378, + "column": 2 + }, + "end": { + "line": 378, + "column": 39 + } + }, + "104": { + "start": { + "line": 379, + "column": 2 + }, + "end": { + "line": 379, + "column": 39 + } + }, + "105": { + "start": { + "line": 380, + "column": 2 + }, + "end": { + "line": 389, + "column": 5 + } + }, + "106": { + "start": { + "line": 381, + "column": 4 + }, + "end": { + "line": 381, + "column": 148 + } + }, + "107": { + "start": { + "line": 382, + "column": 4 + }, + "end": { + "line": 388, + "column": 7 + } + }, + "108": { + "start": { + "line": 383, + "column": 6 + }, + "end": { + "line": 384, + "column": 15 + } + }, + "109": { + "start": { + "line": 384, + "column": 8 + }, + "end": { + "line": 384, + "column": 15 + } + }, + "110": { + "start": { + "line": 385, + "column": 32 + }, + "end": { + "line": 385, + "column": 115 + } + }, + "111": { + "start": { + "line": 386, + "column": 6 + }, + "end": { + "line": 387, + "column": 54 + } + }, + "112": { + "start": { + "line": 387, + "column": 8 + }, + "end": { + "line": 387, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 28, + "column": 42 + }, + "end": { + "line": 28, + "column": 43 + } + }, + "loc": { + "start": { + "line": 30, + "column": 7 + }, + "end": { + "line": 36, + "column": 1 + } + }, + "line": 30 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 38, + "column": 31 + }, + "end": { + "line": 38, + "column": 32 + } + }, + "loc": { + "start": { + "line": 40, + "column": 7 + }, + "end": { + "line": 47, + "column": 1 + } + }, + "line": 40 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 62, + "column": 21 + }, + "end": { + "line": 62, + "column": 22 + } + }, + "loc": { + "start": { + "line": 62, + "column": 31 + }, + "end": { + "line": 62, + "column": 72 + } + }, + "line": 62 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 63, + "column": 3 + }, + "end": { + "line": 63, + "column": 4 + } + }, + "loc": { + "start": { + "line": 66, + "column": 7 + }, + "end": { + "line": 71, + "column": 1 + } + }, + "line": 66 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 105, + "column": 21 + }, + "end": { + "line": 105, + "column": 22 + } + }, + "loc": { + "start": { + "line": 105, + "column": 32 + }, + "end": { + "line": 120, + "column": 1 + } + }, + "line": 105 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 121, + "column": 56 + }, + "end": { + "line": 121, + "column": 57 + } + }, + "loc": { + "start": { + "line": 121, + "column": 67 + }, + "end": { + "line": 123, + "column": 1 + } + }, + "line": 121 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 124, + "column": 23 + }, + "end": { + "line": 124, + "column": 24 + } + }, + "loc": { + "start": { + "line": 124, + "column": 34 + }, + "end": { + "line": 126, + "column": 1 + } + }, + "line": 124 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 128, + "column": 30 + }, + "end": { + "line": 128, + "column": 31 + } + }, + "loc": { + "start": { + "line": 128, + "column": 36 + }, + "end": { + "line": 364, + "column": 1 + } + }, + "line": 128 + }, + "9": { + "name": "(anonymous_9)", + "decl": { + "start": { + "line": 144, + "column": 41 + }, + "end": { + "line": 144, + "column": 42 + } + }, + "loc": { + "start": { + "line": 144, + "column": 47 + }, + "end": { + "line": 144, + "column": 90 + } + }, + "line": 144 + }, + "10": { + "name": "(anonymous_10)", + "decl": { + "start": { + "line": 146, + "column": 34 + }, + "end": { + "line": 146, + "column": 35 + } + }, + "loc": { + "start": { + "line": 148, + "column": 8 + }, + "end": { + "line": 164, + "column": 3 + } + }, + "line": 148 + }, + "11": { + "name": "(anonymous_11)", + "decl": { + "start": { + "line": 158, + "column": 23 + }, + "end": { + "line": 158, + "column": 24 + } + }, + "loc": { + "start": { + "line": 158, + "column": 40 + }, + "end": { + "line": 162, + "column": 7 + } + }, + "line": 158 + }, + "12": { + "name": "(anonymous_12)", + "decl": { + "start": { + "line": 171, + "column": 34 + }, + "end": { + "line": 171, + "column": 35 + } + }, + "loc": { + "start": { + "line": 171, + "column": 46 + }, + "end": { + "line": 176, + "column": 3 + } + }, + "line": 171 + }, + "13": { + "name": "(anonymous_13)", + "decl": { + "start": { + "line": 177, + "column": 29 + }, + "end": { + "line": 177, + "column": 30 + } + }, + "loc": { + "start": { + "line": 177, + "column": 35 + }, + "end": { + "line": 181, + "column": 3 + } + }, + "line": 177 + }, + "14": { + "name": "(anonymous_14)", + "decl": { + "start": { + "line": 182, + "column": 19 + }, + "end": { + "line": 182, + "column": 20 + } + }, + "loc": { + "start": { + "line": 182, + "column": 29 + }, + "end": { + "line": 192, + "column": 3 + } + }, + "line": 182 + }, + "15": { + "name": "(anonymous_15)", + "decl": { + "start": { + "line": 182, + "column": 29 + }, + "end": { + "line": 182, + "column": 30 + } + }, + "loc": { + "start": { + "line": 182, + "column": 41 + }, + "end": { + "line": 192, + "column": 3 + } + }, + "line": 182 + }, + "16": { + "name": "(anonymous_16)", + "decl": { + "start": { + "line": 185, + "column": 36 + }, + "end": { + "line": 185, + "column": 37 + } + }, + "loc": { + "start": { + "line": 185, + "column": 43 + }, + "end": { + "line": 185, + "column": 56 + } + }, + "line": 185 + }, + "17": { + "name": "(anonymous_17)", + "decl": { + "start": { + "line": 201, + "column": 33 + }, + "end": { + "line": 201, + "column": 34 + } + }, + "loc": { + "start": { + "line": 201, + "column": 43 + }, + "end": { + "line": 203, + "column": 3 + } + }, + "line": 201 + }, + "18": { + "name": "(anonymous_18)", + "decl": { + "start": { + "line": 201, + "column": 43 + }, + "end": { + "line": 201, + "column": 44 + } + }, + "loc": { + "start": { + "line": 201, + "column": 54 + }, + "end": { + "line": 203, + "column": 3 + } + }, + "line": 201 + }, + "19": { + "name": "(anonymous_19)", + "decl": { + "start": { + "line": 204, + "column": 37 + }, + "end": { + "line": 204, + "column": 38 + } + }, + "loc": { + "start": { + "line": 206, + "column": 8 + }, + "end": { + "line": 208, + "column": 3 + } + }, + "line": 206 + }, + "20": { + "name": "(anonymous_20)", + "decl": { + "start": { + "line": 209, + "column": 27 + }, + "end": { + "line": 209, + "column": 28 + } + }, + "loc": { + "start": { + "line": 209, + "column": 53 + }, + "end": { + "line": 221, + "column": 10 + } + }, + "line": 209 + }, + "21": { + "name": "(anonymous_21)", + "decl": { + "start": { + "line": 222, + "column": 25 + }, + "end": { + "line": 222, + "column": 26 + } + }, + "loc": { + "start": { + "line": 222, + "column": 31 + }, + "end": { + "line": 329, + "column": 3 + } + }, + "line": 222 + }, + "22": { + "name": "(anonymous_22)", + "decl": { + "start": { + "line": 265, + "column": 91 + }, + "end": { + "line": 265, + "column": 92 + } + }, + "loc": { + "start": { + "line": 265, + "column": 116 + }, + "end": { + "line": 287, + "column": 16 + } + }, + "line": 265 + }, + "23": { + "name": "(anonymous_23)", + "decl": { + "start": { + "line": 365, + "column": 59 + }, + "end": { + "line": 365, + "column": 60 + } + }, + "loc": { + "start": { + "line": 365, + "column": 70 + }, + "end": { + "line": 367, + "column": 1 + } + }, + "line": 365 + }, + "24": { + "name": "(anonymous_24)", + "decl": { + "start": { + "line": 380, + "column": 52 + }, + "end": { + "line": 380, + "column": 53 + } + }, + "loc": { + "start": { + "line": 380, + "column": 72 + }, + "end": { + "line": 389, + "column": 3 + } + }, + "line": 380 + }, + "25": { + "name": "(anonymous_25)", + "decl": { + "start": { + "line": 382, + "column": 27 + }, + "end": { + "line": 382, + "column": 28 + } + }, + "loc": { + "start": { + "line": 382, + "column": 44 + }, + "end": { + "line": 388, + "column": 5 + } + }, + "line": 382 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 67, + "column": 19 + }, + "end": { + "line": 67, + "column": 48 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 67, + "column": 19 + }, + "end": { + "line": 67, + "column": 31 + } + }, + { + "start": { + "line": 67, + "column": 35 + }, + "end": { + "line": 67, + "column": 48 + } + } + ], + "line": 67 + }, + "3": { + "loc": { + "start": { + "line": 68, + "column": 39 + }, + "end": { + "line": 68, + "column": 66 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 68, + "column": 39 + }, + "end": { + "line": 68, + "column": 51 + } + }, + { + "start": { + "line": 68, + "column": 55 + }, + "end": { + "line": 68, + "column": 66 + } + } + ], + "line": 68 + }, + "4": { + "loc": { + "start": { + "line": 110, + "column": 2 + }, + "end": { + "line": 112, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 110, + "column": 2 + }, + "end": { + "line": 112, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 110 + }, + "5": { + "loc": { + "start": { + "line": 113, + "column": 2 + }, + "end": { + "line": 115, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 113, + "column": 2 + }, + "end": { + "line": 115, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 113 + }, + "6": { + "loc": { + "start": { + "line": 116, + "column": 2 + }, + "end": { + "line": 118, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 116, + "column": 2 + }, + "end": { + "line": 118, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 116 + }, + "7": { + "loc": { + "start": { + "line": 149, + "column": 4 + }, + "end": { + "line": 163, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 149, + "column": 4 + }, + "end": { + "line": 163, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 149 + }, + "8": { + "loc": { + "start": { + "line": 152, + "column": 6 + }, + "end": { + "line": 154, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 152, + "column": 6 + }, + "end": { + "line": 154, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 152 + }, + "9": { + "loc": { + "start": { + "line": 155, + "column": 6 + }, + "end": { + "line": 157, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 155, + "column": 6 + }, + "end": { + "line": 157, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 155 + }, + "10": { + "loc": { + "start": { + "line": 159, + "column": 8 + }, + "end": { + "line": 161, + "column": 9 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 159, + "column": 8 + }, + "end": { + "line": 161, + "column": 9 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 159 + }, + "11": { + "loc": { + "start": { + "line": 159, + "column": 12 + }, + "end": { + "line": 159, + "column": 72 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 159, + "column": 13 + }, + "end": { + "line": 159, + "column": 33 + } + }, + { + "start": { + "line": 159, + "column": 37 + }, + "end": { + "line": 159, + "column": 58 + } + }, + { + "start": { + "line": 159, + "column": 63 + }, + "end": { + "line": 159, + "column": 72 + } + } + ], + "line": 159 + }, + "12": { + "loc": { + "start": { + "line": 169, + "column": 29 + }, + "end": { + "line": 169, + "column": 50 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 169, + "column": 29 + }, + "end": { + "line": 169, + "column": 44 + } + }, + { + "start": { + "line": 169, + "column": 48 + }, + "end": { + "line": 169, + "column": 50 + } + } + ], + "line": 169 + }, + "13": { + "loc": { + "start": { + "line": 178, + "column": 4 + }, + "end": { + "line": 180, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 178, + "column": 4 + }, + "end": { + "line": 180, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 178 + }, + "14": { + "loc": { + "start": { + "line": 183, + "column": 17 + }, + "end": { + "line": 183, + "column": 69 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 183, + "column": 17 + }, + "end": { + "line": 183, + "column": 32 + } + }, + { + "start": { + "line": 183, + "column": 36 + }, + "end": { + "line": 183, + "column": 69 + } + } + ], + "line": 183 + }, + "15": { + "loc": { + "start": { + "line": 184, + "column": 4 + }, + "end": { + "line": 191, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 184, + "column": 4 + }, + "end": { + "line": 191, + "column": 5 + } + }, + { + "start": { + "line": 187, + "column": 11 + }, + "end": { + "line": 191, + "column": 5 + } + } + ], + "line": 184 + }, + "16": { + "loc": { + "start": { + "line": 195, + "column": 12 + }, + "end": { + "line": 195, + "column": 46 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 195, + "column": 26 + }, + "end": { + "line": 195, + "column": 37 + } + }, + { + "start": { + "line": 195, + "column": 40 + }, + "end": { + "line": 195, + "column": 46 + } + } + ], + "line": 195 + }, + "17": { + "loc": { + "start": { + "line": 223, + "column": 4 + }, + "end": { + "line": 233, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 223, + "column": 4 + }, + "end": { + "line": 233, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 223 + }, + "18": { + "loc": { + "start": { + "line": 272, + "column": 158 + }, + "end": { + "line": 272, + "column": 218 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 272, + "column": 158 + }, + "end": { + "line": 272, + "column": 175 + } + }, + { + "start": { + "line": 272, + "column": 179 + }, + "end": { + "line": 272, + "column": 218 + } + } + ], + "line": 272 + }, + "19": { + "loc": { + "start": { + "line": 317, + "column": 6 + }, + "end": { + "line": 323, + "column": 14 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 317, + "column": 6 + }, + "end": { + "line": 317, + "column": 20 + } + }, + { + "start": { + "line": 317, + "column": 40 + }, + "end": { + "line": 323, + "column": 14 + } + } + ], + "line": 317 + }, + "20": { + "loc": { + "start": { + "line": 338, + "column": 6 + }, + "end": { + "line": 353, + "column": 14 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 338, + "column": 36 + }, + "end": { + "line": 349, + "column": 14 + } + }, + { + "start": { + "line": 349, + "column": 33 + }, + "end": { + "line": 353, + "column": 14 + } + } + ], + "line": 338 + }, + "21": { + "loc": { + "start": { + "line": 340, + "column": 8 + }, + "end": { + "line": 344, + "column": 23 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 340, + "column": 37 + }, + "end": { + "line": 344, + "column": 16 + } + }, + { + "start": { + "line": 344, + "column": 19 + }, + "end": { + "line": 344, + "column": 23 + } + } + ], + "line": 340 + }, + "22": { + "loc": { + "start": { + "line": 377, + "column": 0 + }, + "end": { + "line": 390, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 377, + "column": 0 + }, + "end": { + "line": 390, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 377 + }, + "23": { + "loc": { + "start": { + "line": 383, + "column": 6 + }, + "end": { + "line": 384, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 383, + "column": 6 + }, + "end": { + "line": 384, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 383 + }, + "24": { + "loc": { + "start": { + "line": 386, + "column": 6 + }, + "end": { + "line": 387, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 386, + "column": 6 + }, + "end": { + "line": 387, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 386 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 14, + "7": 2, + "8": 2, + "9": 2, + "10": 2, + "11": 16, + "12": 2, + "13": 2, + "14": 16, + "15": 2, + "16": 2, + "17": 2, + "18": 2, + "19": 2, + "20": 2, + "21": 130, + "22": 32, + "23": 2, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "28": 228, + "29": 228, + "30": 228, + "31": 228, + "32": 0, + "33": 0, + "34": 0, + "35": 0, + "36": 0, + "37": 2, + "38": 2, + "39": 2, + "40": 0, + "41": 2, + "42": 2, + "43": 228, + "44": 228, + "45": 228, + "46": 228, + "47": 228, + "48": 0, + "49": 228, + "50": 228, + "51": 2, + "52": 2, + "53": 2, + "54": 2, + "55": 0, + "56": 2, + "57": 2, + "58": 2, + "59": 8, + "60": 8, + "61": 228, + "62": 228, + "63": 228, + "64": 2, + "65": 2, + "66": 228, + "67": 2, + "68": 2, + "69": 228, + "70": 112, + "71": 0, + "72": 0, + "73": 0, + "74": 0, + "75": 0, + "76": 0, + "77": 228, + "78": 228, + "79": 228, + "80": 56, + "81": 0, + "82": 228, + "83": 0, + "84": 228, + "85": 112, + "86": 228, + "87": 228, + "88": 200, + "89": 28, + "90": 56, + "91": 228, + "92": 2, + "93": 2, + "94": 2, + "95": 2, + "96": 2, + "97": 2, + "98": 2, + "99": 2, + "100": 2, + "101": 2, + "102": 2, + "103": 2, + "104": 2, + "105": 2, + "106": 2, + "107": 2, + "108": 0, + "109": 0, + "110": 0, + "111": 0, + "112": 0 + }, + "f": { + "0": 14, + "1": 16, + "2": 16, + "3": 130, + "4": 32, + "5": 228, + "6": 2, + "7": 0, + "8": 228, + "9": 0, + "10": 2, + "11": 8, + "12": 2, + "13": 2, + "14": 112, + "15": 0, + "16": 0, + "17": 56, + "18": 0, + "19": 0, + "20": 112, + "21": 228, + "22": 56, + "23": 2, + "24": 2, + "25": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 32, + 16 + ], + "3": [ + 32, + 16 + ], + "4": [ + 228, + 0 + ], + "5": [ + 0, + 0 + ], + "6": [ + 0, + 0 + ], + "7": [ + 2, + 0 + ], + "8": [ + 0, + 2 + ], + "9": [ + 2, + 0 + ], + "10": [ + 8, + 0 + ], + "11": [ + 8, + 8, + 8 + ], + "12": [ + 228, + 20 + ], + "13": [ + 2, + 0 + ], + "14": [ + 0, + 0 + ], + "15": [ + 0, + 0 + ], + "16": [ + 200, + 28 + ], + "17": [ + 200, + 28 + ], + "18": [ + 56, + 40 + ], + "19": [ + 28, + 0 + ], + "20": [ + 200, + 28 + ], + "21": [ + 4, + 196 + ], + "22": [ + 2, + 0 + ], + "23": [ + 0, + 0 + ], + "24": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "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", + "names": [ + "RefreshIcon", + "Alert", + "Button", + "Dialog", + "DialogActions", + "DialogContent", + "FormControl", + "IconButton", + "InputAdornment", + "InputLabel", + "Popover", + "TextField", + "Tooltip", + "keyframes", + "styled", + "useRef", + "useCallback", + "ChromePicker", + "useTranslation", + "useAppDispatch", + "actions", + "speeddialActions", + "useEditLinkTile", + "useFetchMetadataForUrl", + "useFormHandlers", + "usePopoverState", + "PreviewImage", + "theme", + "float", + "gridArea", + "objectFit", + "width", + "margin", + "spacing", + "_c", + "SplitRow", + "flex", + "_c2", + "DialogContentStyled", + "display", + "gridTemplateColumns", + "gridTemplateRows", + "gridTemplateAreas", + "_c3", + "ColorPickerButtonWrapper", + "alignItems", + "_c4", + "ColorPickerButton", + "shouldForwardProp", + "prop", + "includes", + "currentColor", + "backgroundColor", + "color", + "palette", + "getContrastText", + "marginTop", + "_c5", + "loadingAnimation", + "EllipsisLoader", + "animation", + "overflow", + "_c6", + "useErrorText", + "error", + "_s", + "t", + "http", + "logoUrl", + "preventDefault", + "event", + "mapProps", + "LinkEditDialog", + "_s2", + "draft", + "inputProps", + "draftInputProps", + "set", + "draftSet", + "value", + "draftValue", + "isOpen", + "onlyShowUrl", + "showFullForm", + "dispatch", + "onCloseWithoutSave", + "cancelEditTile", + "cache", + "Map", + "setMetadata", + "data", + "url", + "setProperty", + "current", + "URL", + "toString", + "canonicalURL", + "resolvedURL", + "forEach", + "key", + "fetchData", + "isFetching", + "errorText", + "onSubmitUrl", + "onSave", + "saveEditLink", + "onReload", + "get", + "find", + "m", + "formHandlers", + "cancel", + "submit", + "popoverState", + "open", + "openPopover", + "close", + "closePopover", + "handleColorButtonClick", + "mode", + "currentTarget", + "onColorChanged", + "hex", + "makeReloadButton", + "renderContents", + "endAdornment", + "map", + "Boolean", + "anchor", + "vertical", + "horizontal", + "_c7", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/edit-link-dialog.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/edit-link-dialog.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "08dedd701866db879ee0855fa6b09c951759b7b7" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/components/_constants.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/components/_constants.ts", + "statementMap": { + "0": { + "start": { + "line": 1, + "column": 26 + }, + "end": { + "line": 1, + "column": 29 + } + }, + "1": { + "start": { + "line": 2, + "column": 35 + }, + "end": { + "line": 2, + "column": 37 + } + } + }, + "fnMap": {}, + "branchMap": {}, + "s": { + "0": 2, + "1": 2 + }, + "f": {}, + "b": {}, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/components/_constants.ts" + ], + "mappings": "AAAO,aAAM,aAAa;AACnB,aAAM,sBAAsB;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "81307f72ace42669cfe7f50c05a09797b1c85d0c" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/components/add-tile.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/components/add-tile.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 125 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 23, + "column": 23 + }, + "end": { + "line": 29, + "column": 2 + } + }, + "10": { + "start": { + "line": 30, + "column": 0 + }, + "end": { + "line": 30, + "column": 20 + } + }, + "11": { + "start": { + "line": 31, + "column": 23 + }, + "end": { + "line": 41, + "column": 2 + } + }, + "12": { + "start": { + "line": 42, + "column": 0 + }, + "end": { + "line": 42, + "column": 21 + } + }, + "13": { + "start": { + "line": 43, + "column": 26 + }, + "end": { + "line": 107, + "column": 1 + } + }, + "14": { + "start": { + "line": 47, + "column": 2 + }, + "end": { + "line": 47, + "column": 7 + } + }, + "15": { + "start": { + "line": 50, + "column": 6 + }, + "end": { + "line": 50, + "column": 22 + } + }, + "16": { + "start": { + "line": 51, + "column": 40 + }, + "end": { + "line": 51, + "column": 55 + } + }, + "17": { + "start": { + "line": 52, + "column": 22 + }, + "end": { + "line": 54, + "column": 22 + } + }, + "18": { + "start": { + "line": 53, + "column": 4 + }, + "end": { + "line": 53, + "column": 25 + } + }, + "19": { + "start": { + "line": 55, + "column": 21 + }, + "end": { + "line": 57, + "column": 22 + } + }, + "20": { + "start": { + "line": 56, + "column": 4 + }, + "end": { + "line": 56, + "column": 26 + } + }, + "21": { + "start": { + "line": 58, + "column": 41 + }, + "end": { + "line": 62, + "column": 10 + } + }, + "22": { + "start": { + "line": 63, + "column": 43 + }, + "end": { + "line": 97, + "column": 10 + } + }, + "23": { + "start": { + "line": 98, + "column": 2 + }, + "end": { + "line": 106, + "column": 11 + } + }, + "24": { + "start": { + "line": 108, + "column": 0 + }, + "end": { + "line": 110, + "column": 3 + } + }, + "25": { + "start": { + "line": 109, + "column": 2 + }, + "end": { + "line": 109, + "column": 26 + } + }, + "26": { + "start": { + "line": 111, + "column": 0 + }, + "end": { + "line": 111, + "column": 17 + } + }, + "27": { + "start": { + "line": 113, + "column": 0 + }, + "end": { + "line": 113, + "column": 35 + } + }, + "28": { + "start": { + "line": 114, + "column": 0 + }, + "end": { + "line": 114, + "column": 36 + } + }, + "29": { + "start": { + "line": 115, + "column": 0 + }, + "end": { + "line": 115, + "column": 32 + } + }, + "30": { + "start": { + "line": 116, + "column": 0 + }, + "end": { + "line": 129, + "column": 1 + } + }, + "31": { + "start": { + "line": 117, + "column": 2 + }, + "end": { + "line": 117, + "column": 39 + } + }, + "32": { + "start": { + "line": 118, + "column": 2 + }, + "end": { + "line": 118, + "column": 39 + } + }, + "33": { + "start": { + "line": 119, + "column": 2 + }, + "end": { + "line": 128, + "column": 5 + } + }, + "34": { + "start": { + "line": 120, + "column": 4 + }, + "end": { + "line": 120, + "column": 151 + } + }, + "35": { + "start": { + "line": 121, + "column": 4 + }, + "end": { + "line": 127, + "column": 7 + } + }, + "36": { + "start": { + "line": 122, + "column": 6 + }, + "end": { + "line": 123, + "column": 15 + } + }, + "37": { + "start": { + "line": 123, + "column": 8 + }, + "end": { + "line": 123, + "column": 15 + } + }, + "38": { + "start": { + "line": 124, + "column": 32 + }, + "end": { + "line": 124, + "column": 115 + } + }, + "39": { + "start": { + "line": 125, + "column": 6 + }, + "end": { + "line": 126, + "column": 54 + } + }, + "40": { + "start": { + "line": 126, + "column": 8 + }, + "end": { + "line": 126, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 43, + "column": 26 + }, + "end": { + "line": 43, + "column": 27 + } + }, + "loc": { + "start": { + "line": 46, + "column": 6 + }, + "end": { + "line": 107, + "column": 1 + } + }, + "line": 46 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 52, + "column": 34 + }, + "end": { + "line": 52, + "column": 35 + } + }, + "loc": { + "start": { + "line": 52, + "column": 40 + }, + "end": { + "line": 54, + "column": 3 + } + }, + "line": 52 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 55, + "column": 33 + }, + "end": { + "line": 55, + "column": 34 + } + }, + "loc": { + "start": { + "line": 55, + "column": 39 + }, + "end": { + "line": 57, + "column": 3 + } + }, + "line": 55 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 108, + "column": 54 + }, + "end": { + "line": 108, + "column": 55 + } + }, + "loc": { + "start": { + "line": 108, + "column": 65 + }, + "end": { + "line": 110, + "column": 1 + } + }, + "line": 108 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 119, + "column": 52 + }, + "end": { + "line": 119, + "column": 53 + } + }, + "loc": { + "start": { + "line": 119, + "column": 72 + }, + "end": { + "line": 128, + "column": 3 + } + }, + "line": 119 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 121, + "column": 27 + }, + "end": { + "line": 121, + "column": 28 + } + }, + "loc": { + "start": { + "line": 121, + "column": 44 + }, + "end": { + "line": 127, + "column": 5 + } + }, + "line": 121 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 58, + "column": 73 + }, + "end": { + "line": 58, + "column": 142 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 58, + "column": 86 + }, + "end": { + "line": 58, + "column": 117 + } + }, + { + "start": { + "line": 58, + "column": 120 + }, + "end": { + "line": 58, + "column": 142 + } + } + ], + "line": 58 + }, + "3": { + "loc": { + "start": { + "line": 73, + "column": 4 + }, + "end": { + "line": 92, + "column": 19 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 73, + "column": 33 + }, + "end": { + "line": 92, + "column": 12 + } + }, + { + "start": { + "line": 92, + "column": 15 + }, + "end": { + "line": 92, + "column": 19 + } + } + ], + "line": 73 + }, + "4": { + "loc": { + "start": { + "line": 98, + "column": 157 + }, + "end": { + "line": 98, + "column": 204 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 98, + "column": 171 + }, + "end": { + "line": 98, + "column": 187 + } + }, + { + "start": { + "line": 98, + "column": 190 + }, + "end": { + "line": 98, + "column": 204 + } + } + ], + "line": 98 + }, + "5": { + "loc": { + "start": { + "line": 116, + "column": 0 + }, + "end": { + "line": 129, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 116, + "column": 0 + }, + "end": { + "line": 129, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 116 + }, + "6": { + "loc": { + "start": { + "line": 122, + "column": 6 + }, + "end": { + "line": 123, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 122, + "column": 6 + }, + "end": { + "line": 123, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 122 + }, + "7": { + "loc": { + "start": { + "line": 125, + "column": 6 + }, + "end": { + "line": 126, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 125, + "column": 6 + }, + "end": { + "line": 126, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 125 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 6, + "7": 2, + "8": 2, + "9": 2, + "10": 2, + "11": 2, + "12": 2, + "13": 2, + "14": 28, + "15": 28, + "16": 28, + "17": 28, + "18": 4, + "19": 28, + "20": 2, + "21": 28, + "22": 28, + "23": 28, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "34": 2, + "35": 2, + "36": 0, + "37": 0, + "38": 0, + "39": 0, + "40": 0 + }, + "f": { + "0": 6, + "1": 28, + "2": 4, + "3": 2, + "4": 2, + "5": 2, + "6": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 28, + 0 + ], + "3": [ + 28, + 0 + ], + "4": [ + 12, + 16 + ], + "5": [ + 2, + 0 + ], + "6": [ + 0, + 0 + ], + "7": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AAwCQ,SAiBY,UAjBZ;;;;;;;;;;;;;;;;AAxCR,OAAOA,aAAa;AACpB,SAASC,MAAMC,aAAaC,SAASC,YAAYC,cAAc;AAC/D,SAASC,YAAYC,gBAAgB;AAErC,SAASC,UAAUC,mBAAmB;AACtC,SAASC,sBAAsB;AAE/B,SAASC,kBAAkB;AAG3B,MAAMC,iBAAiBP,OAAOJ,IAAI,EAAE;AAAA,EAChCY,QAAQ;AAAA,EACRC,OAAOH;AAAAA,EACPI,SAAS;AAAA,EACTC,gBAAgB;AAAA,EAChBC,YAAY;AAChB,CAAC;AAAEC,KANGN;AAQN,MAAMO,iBAAiBd,OAAOH,WAAW,EAAE;AAAA,EACvC,WAAW;AAAA,EACX,kBAAkB;AAAA,EAClB,cAAc;AAAA,EACd,iBAAiB;AAAA,EACjB,WAAW;AAAA,EACX,gBAAgB;AAAA,IAAEkB,SAAS;AAAA,EAAE;AAAA,EAC7B,QAAQ;AACZ,CAAC;AAAEC,MARGF;AAUC,aAAMG,aAAwBA,CAAC;AAAA,EAAEC;AAAAA,EAAYC;AAAU,MAAM;AAAAC,KAAA;AAChE,QAAM;AAAA,IAAEC;AAAAA,EAAE,IAAIhB,eAAe;AAE7B,QAAM,CAACiB,aAAaC,cAAc,IAAIpB,SAAS,KAAK;AACpD,QAAMqB,cAAcpB,YAAY,MAAM;AAClCmB,mBAAe,IAAI;AAAA,EACvB,GAAG,CAACA,cAAc,CAAC;AACnB,QAAME,aAAarB,YAAY,MAAM;AACjCmB,mBAAe,KAAK;AAAA,EACxB,GAAG,CAACA,cAAc,CAAC;AAEnB,QAAMG,iBACF,uBAAC,WACG,cAAYR,aAAaG,EAAE,4BAA4B,IAAIA,EAAE,mBAAmB,GAChF,UAAS,SACT,WAAU,UAHd;AAAA;AAAA;AAAA;AAAA,SAGoB;AAGxB,QAAMM,mBACF,mCACI;AAAA,2BAAC,cACG,cAAYN,EAAE,mBAAmB,GACjC,SAASF,WACT,OAAOE,EAAE,mBAAmB,GAE5B,iCAAC,YAAS,UAAS,SAAQ,WAAU,UAArC;AAAA;AAAA;AAAA;AAAA,WAA2C,KAL/C;AAAA;AAAA;AAAA;AAAA,WAMA;AAAA,IACCH,aAEO,mCACI;AAAA,6BAAC,WAAQ,UAAQ,MAAC,SAAQ,YAA1B;AAAA;AAAA;AAAA;AAAA,aAAkC;AAAA,MAClC,uBAAC,cACG,cAAYG,EAAE,oBAAoB,GAClC,SAASH,YACT,OAAOG,EAAE,oBAAoB,GAE7B,iCAAC,cAAW,UAAS,SAAQ,WAAU,UAAvC;AAAA;AAAA;AAAA;AAAA,aAA6C,KALjD;AAAA;AAAA;AAAA;AAAA,aAMA;AAAA,SARJ;AAAA;AAAA;AAAA;AAAA,WASA,IAEF;AAAA,OArBV;AAAA;AAAA;AAAA;AAAA,SAsBA;AAGJ,SACI,uBAAC,kBACG,SAAQ,YACR,aACA,YAEA,iCAAC,kBACIC,wBAAcK,mBAAmBD,kBADtC;AAAA;AAAA;AAAA;AAAA,SAEA,KAPJ;AAAA;AAAA;AAAA;AAAA,SAQA;AAER;AAAEN,GAvDWH,YAAqB;AAAA,UAChBZ,cAAc;AAAA;AAAAuB,MADnBX;AA4DZ,IAAAJ,IAAAG,KAAAY;AAAAC,aAAAhB,IAAA;AAAAgB,aAAAb,KAAA;AAAAa,aAAAD,KAAA", + "names": [ + "AddIcon", + "Card", + "CardContent", + "Divider", + "IconButton", + "styled", + "FolderPlus", + "LinkPlus", + "useState", + "useCallback", + "useTranslation", + "TILE_WIDTH", + "AddTileWrapper", + "cursor", + "width", + "display", + "justifyContent", + "alignItems", + "_c", + "AddTileContent", + "padding", + "_c2", + "AddNewTile", + "onAddGroup", + "onAddLink", + "_s", + "t", + "isMouseOver", + "setIsMouseOver", + "onMouseOver", + "onMouseOut", + "defaultContent", + "mouseOverContent", + "_c3", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/components/add-tile.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/components/add-tile.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "269490cbbb25056849ffd85ca7b8a4bc97d3c091" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/components/tile.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/components/tile.tsx", + "statementMap": { + "0": { + "start": { + "line": 3, + "column": 15 + }, + "end": { + "line": 15, + "column": 2 + } + }, + "1": { + "start": { + "line": 7, + "column": 7 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "2": { + "start": { + "line": 16, + "column": 20 + }, + "end": { + "line": 18, + "column": 10 + } + }, + "3": { + "start": { + "line": 17, + "column": 31 + }, + "end": { + "line": 17, + "column": 97 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 3, + "column": 15 + }, + "end": { + "line": 3, + "column": 16 + } + }, + "loc": { + "start": { + "line": 7, + "column": 7 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "line": 7 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 17, + "column": 21 + }, + "end": { + "line": 17, + "column": 22 + } + }, + "loc": { + "start": { + "line": 17, + "column": 31 + }, + "end": { + "line": 17, + "column": 97 + } + }, + "line": 17 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 8, + "column": 10 + }, + "end": { + "line": 8, + "column": 45 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 8, + "column": 23 + }, + "end": { + "line": 8, + "column": 33 + } + }, + { + "start": { + "line": 8, + "column": 36 + }, + "end": { + "line": 8, + "column": 45 + } + } + ], + "line": 8 + }, + "1": { + "loc": { + "start": { + "line": 9, + "column": 17 + }, + "end": { + "line": 9, + "column": 45 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 9, + "column": 30 + }, + "end": { + "line": 9, + "column": 36 + } + }, + { + "start": { + "line": 9, + "column": 39 + }, + "end": { + "line": 9, + "column": 45 + } + } + ], + "line": 9 + }, + "2": { + "loc": { + "start": { + "line": 14, + "column": 10 + }, + "end": { + "line": 14, + "column": 33 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 14, + "column": 23 + }, + "end": { + "line": 14, + "column": 24 + } + }, + { + "start": { + "line": 14, + "column": 27 + }, + "end": { + "line": 14, + "column": 33 + } + } + ], + "line": 14 + } + }, + "s": { + "0": 2, + "1": 12, + "2": 2, + "3": 230 + }, + "f": { + "0": 12, + "1": 230 + }, + "b": { + "0": [ + 0, + 12 + ], + "1": [ + 0, + 12 + ], + "2": [ + 0, + 12 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AACA,SAASA,QAAQC,SAASC,cAAc;AAMxC,SAASC,kBAAkB;AAS3B,MAAMC,SAASA,CAAC;AAAA,EAAEC;AAAAA,EAAYC;AAAAA,EAAWC;AAAoD,OAAkB;AAAA,EAC3GC,QAAQH,aAAa,aAAa;AAAA,EAClCI,eAAeJ,aAAa,SAASK;AAAAA,EACrCC,gBAAgB;AAAA,EAChBL;AAAAA,EACAC;AAAAA,EACAK,OAAOT;AAAAA,EACPU,QAAQR,aAAa,IAAIK;AAC7B;AAIO,aAAMI,OAAOZ,OAChBD,SACA;AAAA,EAAEc,mBAAmBC,UAAQ,CAAC,CAAC,SAAS,cAAc,aAAa,YAAY,EAAEC,SAASD,IAAI;AAAE,CACpG,EAAaZ,MAAM", + "names": [ + "Card", + "MuiCard", + "styled", + "TILE_WIDTH", + "styles", + "isDragging", + "transform", + "transition", + "cursor", + "pointerEvents", + "undefined", + "textDecoration", + "width", + "zIndex", + "Tile", + "shouldForwardProp", + "prop", + "includes" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/components/tile.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/components/tile.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "84249125e5527341e1b03a725683f556ae5d0efd" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/components/tile-image-placeholder.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/components/tile-image-placeholder.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 139 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 18, + "column": 36 + }, + "end": { + "line": 25, + "column": 9 + } + }, + "9": { + "start": { + "line": 21, + "column": 22 + }, + "end": { + "line": 25, + "column": 8 + } + }, + "10": { + "start": { + "line": 21, + "column": 139 + }, + "end": { + "line": 21, + "column": 146 + } + }, + "11": { + "start": { + "line": 26, + "column": 0 + }, + "end": { + "line": 26, + "column": 27 + } + }, + "12": { + "start": { + "line": 27, + "column": 0 + }, + "end": { + "line": 27, + "column": 58 + } + }, + "13": { + "start": { + "line": 29, + "column": 0 + }, + "end": { + "line": 29, + "column": 46 + } + }, + "14": { + "start": { + "line": 30, + "column": 0 + }, + "end": { + "line": 30, + "column": 42 + } + }, + "15": { + "start": { + "line": 31, + "column": 0 + }, + "end": { + "line": 44, + "column": 1 + } + }, + "16": { + "start": { + "line": 32, + "column": 2 + }, + "end": { + "line": 32, + "column": 39 + } + }, + "17": { + "start": { + "line": 33, + "column": 2 + }, + "end": { + "line": 33, + "column": 39 + } + }, + "18": { + "start": { + "line": 34, + "column": 2 + }, + "end": { + "line": 43, + "column": 5 + } + }, + "19": { + "start": { + "line": 35, + "column": 4 + }, + "end": { + "line": 35, + "column": 165 + } + }, + "20": { + "start": { + "line": 36, + "column": 4 + }, + "end": { + "line": 42, + "column": 7 + } + }, + "21": { + "start": { + "line": 37, + "column": 6 + }, + "end": { + "line": 38, + "column": 15 + } + }, + "22": { + "start": { + "line": 38, + "column": 8 + }, + "end": { + "line": 38, + "column": 15 + } + }, + "23": { + "start": { + "line": 39, + "column": 32 + }, + "end": { + "line": 39, + "column": 115 + } + }, + "24": { + "start": { + "line": 40, + "column": 6 + }, + "end": { + "line": 41, + "column": 54 + } + }, + "25": { + "start": { + "line": 41, + "column": 8 + }, + "end": { + "line": 41, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 18, + "column": 46 + }, + "end": { + "line": 18, + "column": 47 + } + }, + "loc": { + "start": { + "line": 21, + "column": 22 + }, + "end": { + "line": 25, + "column": 8 + } + }, + "line": 21 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 21, + "column": 129 + }, + "end": { + "line": 21, + "column": 130 + } + }, + "loc": { + "start": { + "line": 21, + "column": 139 + }, + "end": { + "line": 21, + "column": 146 + } + }, + "line": 21 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 34, + "column": 52 + }, + "end": { + "line": 34, + "column": 53 + } + }, + "loc": { + "start": { + "line": 34, + "column": 72 + }, + "end": { + "line": 43, + "column": 3 + } + }, + "line": 34 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 36, + "column": 27 + }, + "end": { + "line": 36, + "column": 28 + } + }, + "loc": { + "start": { + "line": 36, + "column": 44 + }, + "end": { + "line": 42, + "column": 5 + } + }, + "line": 36 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 31, + "column": 0 + }, + "end": { + "line": 44, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 31, + "column": 0 + }, + "end": { + "line": 44, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 31 + }, + "3": { + "loc": { + "start": { + "line": 37, + "column": 6 + }, + "end": { + "line": 38, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 37, + "column": 6 + }, + "end": { + "line": 38, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 37 + }, + "4": { + "loc": { + "start": { + "line": 40, + "column": 6 + }, + "end": { + "line": 41, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 40, + "column": 6 + }, + "end": { + "line": 41, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 40 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 4, + "7": 2, + "8": 2, + "9": 0, + "10": 0, + "11": 2, + "12": 2, + "13": 2, + "14": 2, + "15": 2, + "16": 2, + "17": 2, + "18": 2, + "19": 2, + "20": 2, + "21": 0, + "22": 0, + "23": 0, + "24": 0, + "25": 0 + }, + "f": { + "0": 4, + "1": 0, + "2": 0, + "3": 2, + "4": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 2, + 0 + ], + "3": [ + 0, + 0 + ], + "4": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AAKI;AALJ,2BAA2B;AAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAC1C,SAASA,YAAY;AAGd,aAAMC,uBAAuBD,KAAyCE,KAACA,CAAC;AAAA,EAAEC;AAAAA,EAAMC;AAAS,MAC5F,uBAAC,cAAW,UAAoB,YAAY,KACvCD,eACIE,MAAM,GAAG,EACTC,OAAOC,OAAO,EACdC,OAAO,GAAG,CAAC,EACXC,IAAIC,UAAQA,KAAK,CAAC,CAAC,EACnBC,KAAK,EAAE,KANhB;AAAA;AAAA;AAAA;AAAA,OAOA,CACH;AAAEC,MATUX;AAUbA,qBAAqBY,cAAc;AAAuB,IAAAX,IAAAU;AAAAE,aAAAZ,IAAA;AAAAY,aAAAF,KAAA", + "names": [ + "memo", + "TileImagePlaceholder", + "_c", + "name", + "fontSize", + "split", + "filter", + "Boolean", + "splice", + "map", + "word", + "join", + "_c2", + "displayName", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/components/tile-image-placeholder.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/components/tile-image-placeholder.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "924752ca3bddbde9cf63ea52807842137d53806d" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-context-menu.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-context-menu.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 128 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 21, + "column": 41 + }, + "end": { + "line": 21, + "column": 44 + } + }, + "10": { + "start": { + "line": 23, + "column": 2 + }, + "end": { + "line": 23, + "column": 7 + } + }, + "11": { + "start": { + "line": 26, + "column": 6 + }, + "end": { + "line": 26, + "column": 22 + } + }, + "12": { + "start": { + "line": 27, + "column": 21 + }, + "end": { + "line": 30, + "column": 4 + } + }, + "13": { + "start": { + "line": 31, + "column": 52 + }, + "end": { + "line": 31, + "column": 66 + } + }, + "14": { + "start": { + "line": 32, + "column": 2 + }, + "end": { + "line": 36, + "column": 26 + } + }, + "15": { + "start": { + "line": 33, + "column": 4 + }, + "end": { + "line": 35, + "column": 5 + } + }, + "16": { + "start": { + "line": 34, + "column": 6 + }, + "end": { + "line": 34, + "column": 72 + } + }, + "17": { + "start": { + "line": 37, + "column": 19 + }, + "end": { + "line": 39, + "column": 8 + } + }, + "18": { + "start": { + "line": 38, + "column": 4 + }, + "end": { + "line": 38, + "column": 31 + } + }, + "19": { + "start": { + "line": 40, + "column": 21 + }, + "end": { + "line": 40, + "column": 40 + } + }, + "20": { + "start": { + "line": 41, + "column": 22 + }, + "end": { + "line": 129, + "column": 49 + } + }, + "21": { + "start": { + "line": 43, + "column": 6 + }, + "end": { + "line": 46, + "column": 8 + } + }, + "22": { + "start": { + "line": 44, + "column": 8 + }, + "end": { + "line": 44, + "column": 26 + } + }, + "23": { + "start": { + "line": 45, + "column": 8 + }, + "end": { + "line": 45, + "column": 27 + } + }, + "24": { + "start": { + "line": 48, + "column": 4 + }, + "end": { + "line": 128, + "column": 7 + } + }, + "25": { + "start": { + "line": 49, + "column": 6 + }, + "end": { + "line": 80, + "column": 7 + } + }, + "26": { + "start": { + "line": 55, + "column": 12 + }, + "end": { + "line": 55, + "column": 18 + } + }, + "27": { + "start": { + "line": 56, + "column": 8 + }, + "end": { + "line": 79, + "column": 10 + } + }, + "28": { + "start": { + "line": 63, + "column": 16 + }, + "end": { + "line": 63, + "column": 43 + } + }, + "29": { + "start": { + "line": 71, + "column": 17 + }, + "end": { + "line": 78, + "column": 11 + } + }, + "30": { + "start": { + "line": 86, + "column": 10 + }, + "end": { + "line": 86, + "column": 16 + } + }, + "31": { + "start": { + "line": 87, + "column": 6 + }, + "end": { + "line": 96, + "column": 7 + } + }, + "32": { + "start": { + "line": 88, + "column": 8 + }, + "end": { + "line": 95, + "column": 10 + } + }, + "33": { + "start": { + "line": 97, + "column": 6 + }, + "end": { + "line": 120, + "column": 8 + } + }, + "34": { + "start": { + "line": 104, + "column": 14 + }, + "end": { + "line": 104, + "column": 40 + } + }, + "35": { + "start": { + "line": 130, + "column": 30 + }, + "end": { + "line": 146, + "column": 46 + } + }, + "36": { + "start": { + "line": 130, + "column": 44 + }, + "end": { + "line": 146, + "column": 11 + } + }, + "37": { + "start": { + "line": 133, + "column": 4 + }, + "end": { + "line": 135, + "column": 5 + } + }, + "38": { + "start": { + "line": 134, + "column": 6 + }, + "end": { + "line": 134, + "column": 27 + } + }, + "39": { + "start": { + "line": 136, + "column": 4 + }, + "end": { + "line": 136, + "column": 55 + } + }, + "40": { + "start": { + "line": 142, + "column": 24 + }, + "end": { + "line": 146, + "column": 10 + } + }, + "41": { + "start": { + "line": 147, + "column": 2 + }, + "end": { + "line": 154, + "column": 4 + } + }, + "42": { + "start": { + "line": 156, + "column": 0 + }, + "end": { + "line": 158, + "column": 3 + } + }, + "43": { + "start": { + "line": 157, + "column": 2 + }, + "end": { + "line": 157, + "column": 41 + } + }, + "44": { + "start": { + "line": 159, + "column": 0 + }, + "end": { + "line": 172, + "column": 1 + } + }, + "45": { + "start": { + "line": 160, + "column": 2 + }, + "end": { + "line": 160, + "column": 39 + } + }, + "46": { + "start": { + "line": 161, + "column": 2 + }, + "end": { + "line": 161, + "column": 39 + } + }, + "47": { + "start": { + "line": 162, + "column": 2 + }, + "end": { + "line": 171, + "column": 5 + } + }, + "48": { + "start": { + "line": 163, + "column": 4 + }, + "end": { + "line": 163, + "column": 154 + } + }, + "49": { + "start": { + "line": 164, + "column": 4 + }, + "end": { + "line": 170, + "column": 7 + } + }, + "50": { + "start": { + "line": 165, + "column": 6 + }, + "end": { + "line": 166, + "column": 15 + } + }, + "51": { + "start": { + "line": 166, + "column": 8 + }, + "end": { + "line": 166, + "column": 15 + } + }, + "52": { + "start": { + "line": 167, + "column": 32 + }, + "end": { + "line": 167, + "column": 115 + } + }, + "53": { + "start": { + "line": 168, + "column": 6 + }, + "end": { + "line": 169, + "column": 54 + } + }, + "54": { + "start": { + "line": 169, + "column": 8 + }, + "end": { + "line": 169, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "useContextMenu", + "decl": { + "start": { + "line": 22, + "column": 16 + }, + "end": { + "line": 22, + "column": 30 + } + }, + "loc": { + "start": { + "line": 22, + "column": 99 + }, + "end": { + "line": 155, + "column": 1 + } + }, + "line": 22 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 32, + "column": 12 + }, + "end": { + "line": 32, + "column": 13 + } + }, + "loc": { + "start": { + "line": 32, + "column": 18 + }, + "end": { + "line": 36, + "column": 3 + } + }, + "line": 32 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 37, + "column": 31 + }, + "end": { + "line": 37, + "column": 32 + } + }, + "loc": { + "start": { + "line": 37, + "column": 37 + }, + "end": { + "line": 39, + "column": 3 + } + }, + "line": 37 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 41, + "column": 30 + }, + "end": { + "line": 41, + "column": 31 + } + }, + "loc": { + "start": { + "line": 41, + "column": 36 + }, + "end": { + "line": 129, + "column": 3 + } + }, + "line": 41 + }, + "5": { + "name": "doAction", + "decl": { + "start": { + "line": 42, + "column": 13 + }, + "end": { + "line": 42, + "column": 21 + } + }, + "loc": { + "start": { + "line": 42, + "column": 35 + }, + "end": { + "line": 47, + "column": 5 + } + }, + "line": 42 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 43, + "column": 13 + }, + "end": { + "line": 43, + "column": 14 + } + }, + "loc": { + "start": { + "line": 43, + "column": 19 + }, + "end": { + "line": 46, + "column": 7 + } + }, + "line": 43 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 48, + "column": 31 + }, + "end": { + "line": 48, + "column": 32 + } + }, + "loc": { + "start": { + "line": 48, + "column": 43 + }, + "end": { + "line": 121, + "column": 5 + } + }, + "line": 48 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 62, + "column": 14 + }, + "end": { + "line": 62, + "column": 15 + } + }, + "loc": { + "start": { + "line": 62, + "column": 24 + }, + "end": { + "line": 64, + "column": 15 + } + }, + "line": 62 + }, + "9": { + "name": "(anonymous_9)", + "decl": { + "start": { + "line": 68, + "column": 28 + }, + "end": { + "line": 68, + "column": 29 + } + }, + "loc": { + "start": { + "line": 71, + "column": 17 + }, + "end": { + "line": 78, + "column": 11 + } + }, + "line": 71 + }, + "10": { + "name": "(anonymous_10)", + "decl": { + "start": { + "line": 103, + "column": 12 + }, + "end": { + "line": 103, + "column": 13 + } + }, + "loc": { + "start": { + "line": 103, + "column": 22 + }, + "end": { + "line": 105, + "column": 13 + } + }, + "line": 103 + }, + "11": { + "name": "(anonymous_11)", + "decl": { + "start": { + "line": 130, + "column": 38 + }, + "end": { + "line": 130, + "column": 39 + } + }, + "loc": { + "start": { + "line": 130, + "column": 44 + }, + "end": { + "line": 146, + "column": 11 + } + }, + "line": 130 + }, + "12": { + "name": "(anonymous_12)", + "decl": { + "start": { + "line": 130, + "column": 63 + }, + "end": { + "line": 130, + "column": 64 + } + }, + "loc": { + "start": { + "line": 132, + "column": 8 + }, + "end": { + "line": 137, + "column": 3 + } + }, + "line": 132 + }, + "13": { + "name": "(anonymous_13)", + "decl": { + "start": { + "line": 137, + "column": 9 + }, + "end": { + "line": 137, + "column": 10 + } + }, + "loc": { + "start": { + "line": 142, + "column": 24 + }, + "end": { + "line": 146, + "column": 10 + } + }, + "line": 142 + }, + "14": { + "name": "(anonymous_14)", + "decl": { + "start": { + "line": 156, + "column": 58 + }, + "end": { + "line": 156, + "column": 59 + } + }, + "loc": { + "start": { + "line": 156, + "column": 69 + }, + "end": { + "line": 158, + "column": 1 + } + }, + "line": 156 + }, + "15": { + "name": "(anonymous_15)", + "decl": { + "start": { + "line": 162, + "column": 52 + }, + "end": { + "line": 162, + "column": 53 + } + }, + "loc": { + "start": { + "line": 162, + "column": 72 + }, + "end": { + "line": 171, + "column": 3 + } + }, + "line": 162 + }, + "16": { + "name": "(anonymous_16)", + "decl": { + "start": { + "line": 164, + "column": 27 + }, + "end": { + "line": 164, + "column": 28 + } + }, + "loc": { + "start": { + "line": 164, + "column": 44 + }, + "end": { + "line": 170, + "column": 5 + } + }, + "line": 164 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 22, + "column": 44 + }, + "end": { + "line": 22, + "column": 97 + } + }, + "type": "default-arg", + "locations": [ + { + "start": { + "line": 22, + "column": 65 + }, + "end": { + "line": 22, + "column": 97 + } + } + ], + "line": 22 + }, + "3": { + "loc": { + "start": { + "line": 33, + "column": 4 + }, + "end": { + "line": 35, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 33, + "column": 4 + }, + "end": { + "line": 35, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 33 + }, + "4": { + "loc": { + "start": { + "line": 44, + "column": 15 + }, + "end": { + "line": 44, + "column": 24 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 44, + "column": 15 + }, + "end": { + "line": 44, + "column": 18 + } + }, + { + "start": { + "line": 44, + "column": 22 + }, + "end": { + "line": 44, + "column": 24 + } + } + ], + "line": 44 + }, + "5": { + "loc": { + "start": { + "line": 49, + "column": 6 + }, + "end": { + "line": 80, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 49, + "column": 6 + }, + "end": { + "line": 80, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 49 + }, + "6": { + "loc": { + "start": { + "line": 85, + "column": 8 + }, + "end": { + "line": 85, + "column": 30 + } + }, + "type": "default-arg", + "locations": [ + { + "start": { + "line": 85, + "column": 25 + }, + "end": { + "line": 85, + "column": 30 + } + } + ], + "line": 85 + }, + "7": { + "loc": { + "start": { + "line": 87, + "column": 6 + }, + "end": { + "line": 96, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 87, + "column": 6 + }, + "end": { + "line": 96, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 87 + }, + "8": { + "loc": { + "start": { + "line": 133, + "column": 4 + }, + "end": { + "line": 135, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 133, + "column": 4 + }, + "end": { + "line": 135, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 133 + }, + "9": { + "loc": { + "start": { + "line": 136, + "column": 11 + }, + "end": { + "line": 136, + "column": 54 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 136, + "column": 11 + }, + "end": { + "line": 136, + "column": 24 + } + }, + { + "start": { + "line": 136, + "column": 28 + }, + "end": { + "line": 136, + "column": 54 + } + } + ], + "line": 136 + }, + "10": { + "loc": { + "start": { + "line": 159, + "column": 0 + }, + "end": { + "line": 172, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 159, + "column": 0 + }, + "end": { + "line": 172, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 159 + }, + "11": { + "loc": { + "start": { + "line": 165, + "column": 6 + }, + "end": { + "line": 166, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 165, + "column": 6 + }, + "end": { + "line": 166, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 165 + }, + "12": { + "loc": { + "start": { + "line": 168, + "column": 6 + }, + "end": { + "line": 169, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 168, + "column": 6 + }, + "end": { + "line": 169, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 168 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 0, + "7": 2, + "8": 2, + "9": 2, + "10": 12, + "11": 12, + "12": 12, + "13": 12, + "14": 12, + "15": 4, + "16": 4, + "17": 12, + "18": 0, + "19": 12, + "20": 12, + "21": 24, + "22": 0, + "23": 0, + "24": 12, + "25": 36, + "26": 12, + "27": 12, + "28": 0, + "29": 0, + "30": 24, + "31": 24, + "32": 12, + "33": 12, + "34": 0, + "35": 12, + "36": 12, + "37": 60, + "38": 60, + "39": 0, + "40": 36, + "41": 12, + "42": 2, + "43": 2, + "44": 2, + "45": 2, + "46": 2, + "47": 2, + "48": 2, + "49": 2, + "50": 0, + "51": 0, + "52": 0, + "53": 0, + "54": 0 + }, + "f": { + "0": 0, + "1": 12, + "2": 4, + "3": 0, + "4": 12, + "5": 24, + "6": 0, + "7": 36, + "8": 0, + "9": 0, + "10": 0, + "11": 12, + "12": 60, + "13": 36, + "14": 2, + "15": 2, + "16": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 12 + ], + "3": [ + 4, + 0 + ], + "4": [ + 0, + 0 + ], + "5": [ + 12, + 24 + ], + "6": [ + 12 + ], + "7": [ + 12, + 12 + ], + "8": [ + 60, + 0 + ], + "9": [ + 0, + 0 + ], + "10": [ + 2, + 0 + ], + "11": [ + 0, + 0 + ], + "12": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "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", + "names": [ + "Menu", + "MenuItem", + "bindContextMenu", + "bindMenu", + "usePopupState", + "useCallback", + "useEffect", + "useMemo", + "useState", + "useTranslation", + "DEFAULT_MENU_TRANSITION_DURATION", + "useContextMenu", + "options", + "id", + "transitionDuration", + "_s", + "t", + "popupState", + "variant", + "popupId", + "confirmationState", + "setConfirmationState", + "isOpen", + "window", + "setTimeout", + "onCancel", + "cancelText", + "menuOptions", + "doAction", + "action", + "arg", + "close", + "flatMap", + "option", + "key", + "label", + "suboptions", + "props", + "children", + "onClick", + "show", + "map", + "value", + "suboptionLabel", + "requireConfirm", + "sx", + "color", + "renderedMenuOptions", + "filter", + "rest", + "menu", + "triggerProps" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-context-menu.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-context-menu.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "faba31a3519b3cf04bad2476030867aa53acbdfd" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-typed-sortable.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-typed-sortable.ts", + "statementMap": { + "0": { + "start": { + "line": 2, + "column": 32 + }, + "end": { + "line": 2, + "column": 59 + } + }, + "1": { + "start": { + "line": 2, + "column": 42 + }, + "end": { + "line": 2, + "column": 59 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 2, + "column": 32 + }, + "end": { + "line": 2, + "column": 33 + } + }, + "loc": { + "start": { + "line": 2, + "column": 42 + }, + "end": { + "line": 2, + "column": 59 + } + }, + "line": 2 + } + }, + "branchMap": {}, + "s": { + "0": 2, + "1": 12 + }, + "f": { + "0": 12 + }, + "b": {}, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/use-typed-sortable.ts" + ], + "mappings": "AACA,SAAS,mBAAmB;AAQrB,aAAM,mBAAmB,CAAC,SAA6D,YAAY,IAAI;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "a49d49b339871d9e09c0abc6de0f988b6a346272" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/tile-group.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/tile-group.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 116 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 31, + "column": 20 + }, + "end": { + "line": 48, + "column": 2 + } + }, + "10": { + "start": { + "line": 49, + "column": 0 + }, + "end": { + "line": 49, + "column": 17 + } + }, + "11": { + "start": { + "line": 50, + "column": 21 + }, + "end": { + "line": 61, + "column": 2 + } + }, + "12": { + "start": { + "line": 62, + "column": 0 + }, + "end": { + "line": 62, + "column": 19 + } + }, + "13": { + "start": { + "line": 63, + "column": 23 + }, + "end": { + "line": 70, + "column": 3 + } + }, + "14": { + "start": { + "line": 65, + "column": 7 + }, + "end": { + "line": 70, + "column": 1 + } + }, + "15": { + "start": { + "line": 71, + "column": 0 + }, + "end": { + "line": 71, + "column": 21 + } + }, + "16": { + "start": { + "line": 72, + "column": 22 + }, + "end": { + "line": 72, + "column": 23 + } + }, + "17": { + "start": { + "line": 73, + "column": 25 + }, + "end": { + "line": 196, + "column": 1 + } + }, + "18": { + "start": { + "line": 78, + "column": 2 + }, + "end": { + "line": 78, + "column": 7 + } + }, + "19": { + "start": { + "line": 81, + "column": 6 + }, + "end": { + "line": 81, + "column": 22 + } + }, + "20": { + "start": { + "line": 82, + "column": 19 + }, + "end": { + "line": 82, + "column": 35 + } + }, + "21": { + "start": { + "line": 83, + "column": 17 + }, + "end": { + "line": 88, + "column": 25 + } + }, + "22": { + "start": { + "line": 84, + "column": 4 + }, + "end": { + "line": 87, + "column": 8 + } + }, + "23": { + "start": { + "line": 89, + "column": 19 + }, + "end": { + "line": 93, + "column": 25 + } + }, + "24": { + "start": { + "line": 90, + "column": 4 + }, + "end": { + "line": 92, + "column": 8 + } + }, + "25": { + "start": { + "line": 94, + "column": 23 + }, + "end": { + "line": 96, + "column": 25 + } + }, + "26": { + "start": { + "line": 95, + "column": 4 + }, + "end": { + "line": 95, + "column": 72 + } + }, + "27": { + "start": { + "line": 97, + "column": 22 + }, + "end": { + "line": 106, + "column": 14 + } + }, + "28": { + "start": { + "line": 107, + "column": 16 + }, + "end": { + "line": 107, + "column": 65 + } + }, + "29": { + "start": { + "line": 115, + "column": 6 + }, + "end": { + "line": 121, + "column": 4 + } + }, + "30": { + "start": { + "line": 122, + "column": 30 + }, + "end": { + "line": 122, + "column": 45 + } + }, + "31": { + "start": { + "line": 123, + "column": 17 + }, + "end": { + "line": 125, + "column": 8 + } + }, + "32": { + "start": { + "line": 124, + "column": 4 + }, + "end": { + "line": 124, + "column": 20 + } + }, + "33": { + "start": { + "line": 126, + "column": 22 + }, + "end": { + "line": 128, + "column": 8 + } + }, + "34": { + "start": { + "line": 127, + "column": 4 + }, + "end": { + "line": 127, + "column": 21 + } + }, + "35": { + "start": { + "line": 129, + "column": 2 + }, + "end": { + "line": 195, + "column": 11 + } + }, + "36": { + "start": { + "line": 131, + "column": 87 + }, + "end": { + "line": 131, + "column": 105 + } + }, + "37": { + "start": { + "line": 132, + "column": 8 + }, + "end": { + "line": 140, + "column": 9 + } + }, + "38": { + "start": { + "line": 133, + "column": 10 + }, + "end": { + "line": 139, + "column": 19 + } + }, + "39": { + "start": { + "line": 141, + "column": 8 + }, + "end": { + "line": 145, + "column": 17 + } + }, + "40": { + "start": { + "line": 197, + "column": 0 + }, + "end": { + "line": 199, + "column": 3 + } + }, + "41": { + "start": { + "line": 198, + "column": 2 + }, + "end": { + "line": 198, + "column": 89 + } + }, + "42": { + "start": { + "line": 200, + "column": 0 + }, + "end": { + "line": 200, + "column": 16 + } + }, + "43": { + "start": { + "line": 202, + "column": 0 + }, + "end": { + "line": 202, + "column": 32 + } + }, + "44": { + "start": { + "line": 203, + "column": 0 + }, + "end": { + "line": 203, + "column": 34 + } + }, + "45": { + "start": { + "line": 204, + "column": 0 + }, + "end": { + "line": 204, + "column": 36 + } + }, + "46": { + "start": { + "line": 205, + "column": 0 + }, + "end": { + "line": 205, + "column": 31 + } + }, + "47": { + "start": { + "line": 206, + "column": 0 + }, + "end": { + "line": 219, + "column": 1 + } + }, + "48": { + "start": { + "line": 207, + "column": 2 + }, + "end": { + "line": 207, + "column": 39 + } + }, + "49": { + "start": { + "line": 208, + "column": 2 + }, + "end": { + "line": 208, + "column": 39 + } + }, + "50": { + "start": { + "line": 209, + "column": 2 + }, + "end": { + "line": 218, + "column": 5 + } + }, + "51": { + "start": { + "line": 210, + "column": 4 + }, + "end": { + "line": 210, + "column": 142 + } + }, + "52": { + "start": { + "line": 211, + "column": 4 + }, + "end": { + "line": 217, + "column": 7 + } + }, + "53": { + "start": { + "line": 212, + "column": 6 + }, + "end": { + "line": 213, + "column": 15 + } + }, + "54": { + "start": { + "line": 213, + "column": 8 + }, + "end": { + "line": 213, + "column": 15 + } + }, + "55": { + "start": { + "line": 214, + "column": 32 + }, + "end": { + "line": 214, + "column": 115 + } + }, + "56": { + "start": { + "line": 215, + "column": 6 + }, + "end": { + "line": 216, + "column": 54 + } + }, + "57": { + "start": { + "line": 216, + "column": 8 + }, + "end": { + "line": 216, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 63, + "column": 37 + }, + "end": { + "line": 63, + "column": 38 + } + }, + "loc": { + "start": { + "line": 65, + "column": 7 + }, + "end": { + "line": 70, + "column": 1 + } + }, + "line": 65 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 73, + "column": 25 + }, + "end": { + "line": 73, + "column": 26 + } + }, + "loc": { + "start": { + "line": 77, + "column": 6 + }, + "end": { + "line": 196, + "column": 1 + } + }, + "line": 77 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 83, + "column": 29 + }, + "end": { + "line": 83, + "column": 30 + } + }, + "loc": { + "start": { + "line": 83, + "column": 35 + }, + "end": { + "line": 88, + "column": 3 + } + }, + "line": 83 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 89, + "column": 31 + }, + "end": { + "line": 89, + "column": 32 + } + }, + "loc": { + "start": { + "line": 89, + "column": 37 + }, + "end": { + "line": 93, + "column": 3 + } + }, + "line": 89 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 94, + "column": 35 + }, + "end": { + "line": 94, + "column": 36 + } + }, + "loc": { + "start": { + "line": 94, + "column": 46 + }, + "end": { + "line": 96, + "column": 3 + } + }, + "line": 94 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 123, + "column": 29 + }, + "end": { + "line": 123, + "column": 30 + } + }, + "loc": { + "start": { + "line": 123, + "column": 35 + }, + "end": { + "line": 125, + "column": 3 + } + }, + "line": 123 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 126, + "column": 34 + }, + "end": { + "line": 126, + "column": 35 + } + }, + "loc": { + "start": { + "line": 126, + "column": 40 + }, + "end": { + "line": 128, + "column": 3 + } + }, + "line": 126 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 131, + "column": 76 + }, + "end": { + "line": 131, + "column": 77 + } + }, + "loc": { + "start": { + "line": 131, + "column": 87 + }, + "end": { + "line": 131, + "column": 105 + } + }, + "line": 131 + }, + "9": { + "name": "(anonymous_9)", + "decl": { + "start": { + "line": 131, + "column": 135 + }, + "end": { + "line": 131, + "column": 136 + } + }, + "loc": { + "start": { + "line": 131, + "column": 145 + }, + "end": { + "line": 146, + "column": 7 + } + }, + "line": 131 + }, + "10": { + "name": "(anonymous_10)", + "decl": { + "start": { + "line": 197, + "column": 53 + }, + "end": { + "line": 197, + "column": 54 + } + }, + "loc": { + "start": { + "line": 197, + "column": 64 + }, + "end": { + "line": 199, + "column": 1 + } + }, + "line": 197 + }, + "11": { + "name": "(anonymous_11)", + "decl": { + "start": { + "line": 209, + "column": 52 + }, + "end": { + "line": 209, + "column": 53 + } + }, + "loc": { + "start": { + "line": 209, + "column": 72 + }, + "end": { + "line": 218, + "column": 3 + } + }, + "line": 209 + }, + "12": { + "name": "(anonymous_12)", + "decl": { + "start": { + "line": 211, + "column": 27 + }, + "end": { + "line": 211, + "column": 28 + } + }, + "loc": { + "start": { + "line": 211, + "column": 44 + }, + "end": { + "line": 217, + "column": 5 + } + }, + "line": 211 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 131, + "column": 87 + }, + "end": { + "line": 131, + "column": 105 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 131, + "column": 87 + }, + "end": { + "line": 131, + "column": 99 + } + }, + { + "start": { + "line": 131, + "column": 103 + }, + "end": { + "line": 131, + "column": 105 + } + } + ], + "line": 131 + }, + "3": { + "loc": { + "start": { + "line": 132, + "column": 8 + }, + "end": { + "line": 140, + "column": 9 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 132, + "column": 8 + }, + "end": { + "line": 140, + "column": 9 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 132 + }, + "4": { + "loc": { + "start": { + "line": 206, + "column": 0 + }, + "end": { + "line": 219, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 206, + "column": 0 + }, + "end": { + "line": 219, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 206 + }, + "5": { + "loc": { + "start": { + "line": 212, + "column": 6 + }, + "end": { + "line": 213, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 212, + "column": 6 + }, + "end": { + "line": 213, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 212 + }, + "6": { + "loc": { + "start": { + "line": 215, + "column": 6 + }, + "end": { + "line": 216, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 215, + "column": 6 + }, + "end": { + "line": 216, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 215 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 8, + "7": 2, + "8": 2, + "9": 2, + "10": 2, + "11": 2, + "12": 2, + "13": 2, + "14": 0, + "15": 2, + "16": 2, + "17": 2, + "18": 0, + "19": 0, + "20": 0, + "21": 0, + "22": 0, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0, + "28": 0, + "29": 0, + "30": 0, + "31": 0, + "32": 0, + "33": 0, + "34": 0, + "35": 0, + "36": 0, + "37": 0, + "38": 0, + "39": 0, + "40": 2, + "41": 0, + "42": 2, + "43": 2, + "44": 2, + "45": 2, + "46": 2, + "47": 2, + "48": 2, + "49": 2, + "50": 2, + "51": 2, + "52": 2, + "53": 0, + "54": 0, + "55": 0, + "56": 0, + "57": 0 + }, + "f": { + "0": 8, + "1": 0, + "2": 0, + "3": 0, + "4": 0, + "5": 0, + "6": 0, + "7": 0, + "8": 0, + "9": 0, + "10": 0, + "11": 2, + "12": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 0, + 0 + ], + "3": [ + 0, + 0 + ], + "4": [ + 2, + 0 + ], + "5": [ + 0, + 0 + ], + "6": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "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", + "names": [ + "CSS", + "DndCss", + "CardContent", + "CardMedia", + "Modal", + "Paper", + "Typography", + "styled", + "Input", + "useState", + "useCallback", + "useTranslation", + "useSelector", + "useAppDispatch", + "linksAdapterSelectors", + "actions", + "speeddialActions", + "TILE_CONTENT_HEIGHT", + "Tile", + "TileImagePlaceholder", + "GroupContents", + "useContextMenu", + "useTypedSortable", + "TileContent", + "objectFit", + "height", + "_c", + "ModalContent", + "display", + "flexDirection", + "alignItems", + "justifyContent", + "position", + "width", + "top", + "left", + "transform", + "_c2", + "GroupNameInput", + "theme", + "spacing", + "textAlign", + "_c3", + "SHOW_SUBTILES", + "GroupTile", + "index", + "parentId", + "tile", + "_s", + "t", + "dispatch", + "onEdit", + "editTile", + "id", + "type", + "onDelete", + "deleteGroup", + "onNameChange", + "event", + "renameGroup", + "target", + "value", + "contextMenu", + "key", + "action", + "label", + "requireConfirm", + "links", + "selectEntities", + "attributes", + "isDragging", + "listeners", + "setNodeRef", + "transition", + "data", + "isOpen", + "setIsOpen", + "onOpen", + "handleClose", + "triggerProps", + "Transform", + "toString", + "children", + "flatMap", + "child", + "slice", + "map", + "link", + "logoUrl", + "backgroundColor", + "name", + "paddingBottom", + "menu", + "_c4", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/tile-group.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/tile-group.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "99ab3f8460d6295b12b86fcaf516a483c0fc7ebf" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/tile-link.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/tile-link.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 115 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 30, + "column": 26 + }, + "end": { + "line": 36, + "column": 2 + } + }, + "10": { + "start": { + "line": 37, + "column": 0 + }, + "end": { + "line": 37, + "column": 23 + } + }, + "11": { + "start": { + "line": 38, + "column": 18 + }, + "end": { + "line": 52, + "column": 3 + } + }, + "12": { + "start": { + "line": 39, + "column": 31 + }, + "end": { + "line": 39, + "column": 75 + } + }, + "13": { + "start": { + "line": 43, + "column": 7 + }, + "end": { + "line": 52, + "column": 1 + } + }, + "14": { + "start": { + "line": 53, + "column": 0 + }, + "end": { + "line": 53, + "column": 16 + } + }, + "15": { + "start": { + "line": 54, + "column": 24 + }, + "end": { + "line": 156, + "column": 1 + } + }, + "16": { + "start": { + "line": 59, + "column": 2 + }, + "end": { + "line": 59, + "column": 7 + } + }, + "17": { + "start": { + "line": 62, + "column": 6 + }, + "end": { + "line": 62, + "column": 22 + } + }, + "18": { + "start": { + "line": 63, + "column": 19 + }, + "end": { + "line": 63, + "column": 35 + } + }, + "19": { + "start": { + "line": 64, + "column": 17 + }, + "end": { + "line": 69, + "column": 22 + } + }, + "20": { + "start": { + "line": 65, + "column": 4 + }, + "end": { + "line": 68, + "column": 8 + } + }, + "21": { + "start": { + "line": 70, + "column": 24 + }, + "end": { + "line": 76, + "column": 35 + } + }, + "22": { + "start": { + "line": 71, + "column": 4 + }, + "end": { + "line": 75, + "column": 8 + } + }, + "23": { + "start": { + "line": 77, + "column": 19 + }, + "end": { + "line": 82, + "column": 32 + } + }, + "24": { + "start": { + "line": 78, + "column": 4 + }, + "end": { + "line": 81, + "column": 8 + } + }, + "25": { + "start": { + "line": 83, + "column": 17 + }, + "end": { + "line": 83, + "column": 61 + } + }, + "26": { + "start": { + "line": 84, + "column": 23 + }, + "end": { + "line": 87, + "column": 62 + } + }, + "27": { + "start": { + "line": 84, + "column": 37 + }, + "end": { + "line": 87, + "column": 41 + } + }, + "28": { + "start": { + "line": 84, + "column": 56 + }, + "end": { + "line": 87, + "column": 3 + } + }, + "29": { + "start": { + "line": 87, + "column": 20 + }, + "end": { + "line": 87, + "column": 40 + } + }, + "30": { + "start": { + "line": 88, + "column": 22 + }, + "end": { + "line": 102, + "column": 14 + } + }, + "31": { + "start": { + "line": 110, + "column": 6 + }, + "end": { + "line": 116, + "column": 4 + } + }, + "32": { + "start": { + "line": 117, + "column": 2 + }, + "end": { + "line": 155, + "column": 11 + } + }, + "33": { + "start": { + "line": 157, + "column": 0 + }, + "end": { + "line": 159, + "column": 3 + } + }, + "34": { + "start": { + "line": 158, + "column": 2 + }, + "end": { + "line": 158, + "column": 89 + } + }, + "35": { + "start": { + "line": 160, + "column": 0 + }, + "end": { + "line": 160, + "column": 15 + } + }, + "36": { + "start": { + "line": 162, + "column": 0 + }, + "end": { + "line": 162, + "column": 38 + } + }, + "37": { + "start": { + "line": 163, + "column": 0 + }, + "end": { + "line": 163, + "column": 31 + } + }, + "38": { + "start": { + "line": 164, + "column": 0 + }, + "end": { + "line": 164, + "column": 30 + } + }, + "39": { + "start": { + "line": 165, + "column": 0 + }, + "end": { + "line": 178, + "column": 1 + } + }, + "40": { + "start": { + "line": 166, + "column": 2 + }, + "end": { + "line": 166, + "column": 39 + } + }, + "41": { + "start": { + "line": 167, + "column": 2 + }, + "end": { + "line": 167, + "column": 39 + } + }, + "42": { + "start": { + "line": 168, + "column": 2 + }, + "end": { + "line": 177, + "column": 5 + } + }, + "43": { + "start": { + "line": 169, + "column": 4 + }, + "end": { + "line": 169, + "column": 141 + } + }, + "44": { + "start": { + "line": 170, + "column": 4 + }, + "end": { + "line": 176, + "column": 7 + } + }, + "45": { + "start": { + "line": 171, + "column": 6 + }, + "end": { + "line": 172, + "column": 15 + } + }, + "46": { + "start": { + "line": 172, + "column": 8 + }, + "end": { + "line": 172, + "column": 15 + } + }, + "47": { + "start": { + "line": 173, + "column": 32 + }, + "end": { + "line": 173, + "column": 115 + } + }, + "48": { + "start": { + "line": 174, + "column": 6 + }, + "end": { + "line": 175, + "column": 54 + } + }, + "49": { + "start": { + "line": 175, + "column": 8 + }, + "end": { + "line": 175, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 39, + "column": 21 + }, + "end": { + "line": 39, + "column": 22 + } + }, + "loc": { + "start": { + "line": 39, + "column": 31 + }, + "end": { + "line": 39, + "column": 75 + } + }, + "line": 39 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 40, + "column": 3 + }, + "end": { + "line": 40, + "column": 4 + } + }, + "loc": { + "start": { + "line": 43, + "column": 7 + }, + "end": { + "line": 52, + "column": 1 + } + }, + "line": 43 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 54, + "column": 24 + }, + "end": { + "line": 54, + "column": 25 + } + }, + "loc": { + "start": { + "line": 58, + "column": 6 + }, + "end": { + "line": 156, + "column": 1 + } + }, + "line": 58 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 64, + "column": 29 + }, + "end": { + "line": 64, + "column": 30 + } + }, + "loc": { + "start": { + "line": 64, + "column": 35 + }, + "end": { + "line": 69, + "column": 3 + } + }, + "line": 64 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 70, + "column": 36 + }, + "end": { + "line": 70, + "column": 37 + } + }, + "loc": { + "start": { + "line": 70, + "column": 48 + }, + "end": { + "line": 76, + "column": 3 + } + }, + "line": 70 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 77, + "column": 31 + }, + "end": { + "line": 77, + "column": 32 + } + }, + "loc": { + "start": { + "line": 77, + "column": 37 + }, + "end": { + "line": 82, + "column": 3 + } + }, + "line": 77 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 84, + "column": 31 + }, + "end": { + "line": 84, + "column": 32 + } + }, + "loc": { + "start": { + "line": 84, + "column": 37 + }, + "end": { + "line": 87, + "column": 41 + } + }, + "line": 84 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 84, + "column": 48 + }, + "end": { + "line": 84, + "column": 49 + } + }, + "loc": { + "start": { + "line": 84, + "column": 56 + }, + "end": { + "line": 87, + "column": 3 + } + }, + "line": 84 + }, + "9": { + "name": "(anonymous_9)", + "decl": { + "start": { + "line": 87, + "column": 13 + }, + "end": { + "line": 87, + "column": 14 + } + }, + "loc": { + "start": { + "line": 87, + "column": 20 + }, + "end": { + "line": 87, + "column": 40 + } + }, + "line": 87 + }, + "10": { + "name": "(anonymous_10)", + "decl": { + "start": { + "line": 157, + "column": 52 + }, + "end": { + "line": 157, + "column": 53 + } + }, + "loc": { + "start": { + "line": 157, + "column": 63 + }, + "end": { + "line": 159, + "column": 1 + } + }, + "line": 157 + }, + "11": { + "name": "(anonymous_11)", + "decl": { + "start": { + "line": 168, + "column": 52 + }, + "end": { + "line": 168, + "column": 53 + } + }, + "loc": { + "start": { + "line": 168, + "column": 72 + }, + "end": { + "line": 177, + "column": 3 + } + }, + "line": 168 + }, + "12": { + "name": "(anonymous_12)", + "decl": { + "start": { + "line": 170, + "column": 27 + }, + "end": { + "line": 170, + "column": 28 + } + }, + "loc": { + "start": { + "line": 170, + "column": 44 + }, + "end": { + "line": 176, + "column": 5 + } + }, + "line": 170 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 47, + "column": 21 + }, + "end": { + "line": 47, + "column": 53 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 47, + "column": 21 + }, + "end": { + "line": 47, + "column": 36 + } + }, + { + "start": { + "line": 47, + "column": 40 + }, + "end": { + "line": 47, + "column": 53 + } + } + ], + "line": 47 + }, + "3": { + "loc": { + "start": { + "line": 48, + "column": 41 + }, + "end": { + "line": 48, + "column": 71 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 48, + "column": 41 + }, + "end": { + "line": 48, + "column": 56 + } + }, + { + "start": { + "line": 48, + "column": 60 + }, + "end": { + "line": 48, + "column": 71 + } + } + ], + "line": 48 + }, + "4": { + "loc": { + "start": { + "line": 119, + "column": 6 + }, + "end": { + "line": 135, + "column": 14 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 119, + "column": 37 + }, + "end": { + "line": 127, + "column": 14 + } + }, + { + "start": { + "line": 127, + "column": 33 + }, + "end": { + "line": 135, + "column": 14 + } + } + ], + "line": 119 + }, + "5": { + "loc": { + "start": { + "line": 120, + "column": 25 + }, + "end": { + "line": 120, + "column": 62 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 120, + "column": 25 + }, + "end": { + "line": 120, + "column": 45 + } + }, + { + "start": { + "line": 120, + "column": 49 + }, + "end": { + "line": 120, + "column": 62 + } + } + ], + "line": 120 + }, + "6": { + "loc": { + "start": { + "line": 165, + "column": 0 + }, + "end": { + "line": 178, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 165, + "column": 0 + }, + "end": { + "line": 178, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 165 + }, + "7": { + "loc": { + "start": { + "line": 171, + "column": 6 + }, + "end": { + "line": 172, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 171, + "column": 6 + }, + "end": { + "line": 172, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 171 + }, + "8": { + "loc": { + "start": { + "line": 174, + "column": 6 + }, + "end": { + "line": 175, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 174, + "column": 6 + }, + "end": { + "line": 175, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 174 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 6, + "7": 2, + "8": 2, + "9": 2, + "10": 2, + "11": 2, + "12": 26, + "13": 12, + "14": 2, + "15": 2, + "16": 12, + "17": 12, + "18": 12, + "19": 12, + "20": 0, + "21": 12, + "22": 0, + "23": 12, + "24": 0, + "25": 12, + "26": 12, + "27": 4, + "28": 4, + "29": 4, + "30": 12, + "31": 12, + "32": 12, + "33": 2, + "34": 2, + "35": 2, + "36": 2, + "37": 2, + "38": 2, + "39": 2, + "40": 2, + "41": 2, + "42": 2, + "43": 2, + "44": 2, + "45": 0, + "46": 0, + "47": 0, + "48": 0, + "49": 0 + }, + "f": { + "0": 6, + "1": 26, + "2": 12, + "3": 12, + "4": 0, + "5": 0, + "6": 0, + "7": 4, + "8": 4, + "9": 4, + "10": 2, + "11": 2, + "12": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 12, + 0 + ], + "3": [ + 12, + 0 + ], + "4": [ + 12, + 0 + ], + "5": [ + 12, + 0 + ], + "6": [ + 2, + 0 + ], + "7": [ + 0, + 0 + ], + "8": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "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", + "names": [ + "CSS", + "DndCss", + "CardContent", + "CardMedia", + "Typography", + "styled", + "useCallback", + "useMemo", + "useTranslation", + "useSelector", + "useAppDispatch", + "groupAdapterSelectors", + "actions", + "speeddialActions", + "TILE_CONTENT_HEIGHT", + "Tile", + "TileImagePlaceholder", + "useContextMenu", + "useTypedSortable", + "StyledCardContent", + "height", + "padding", + "display", + "justifyContent", + "alignItems", + "_c", + "TileTitle", + "shouldForwardProp", + "prop", + "includes", + "backgroundColor", + "theme", + "spacing", + "palette", + "getContrastText", + "_c2", + "LinkTile", + "index", + "parentId", + "tile", + "_s", + "t", + "dispatch", + "onEdit", + "editTile", + "id", + "type", + "onMoveToGroup", + "target", + "moveLinkToGroup", + "source", + "linkId", + "onDelete", + "deleteLink", + "groups", + "selectAll", + "groupOptions", + "map", + "g", + "value", + "label", + "name", + "filter", + "contextMenu", + "key", + "action", + "options", + "requireConfirm", + "attributes", + "isDragging", + "listeners", + "setNodeRef", + "transform", + "transition", + "data", + "triggerProps", + "url", + "Transform", + "toString", + "logoUrl", + "objectFit", + "themeColor", + "menu", + "_c3", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/tile-link.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/tile-link.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "ae7ba103f44a54b9aebe48e2ef4b7eecf62a43b1" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/group-contents.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/group-contents.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 120 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 27, + "column": 21 + }, + "end": { + "line": 39, + "column": 3 + } + }, + "10": { + "start": { + "line": 29, + "column": 7 + }, + "end": { + "line": 39, + "column": 1 + } + }, + "11": { + "start": { + "line": 40, + "column": 0 + }, + "end": { + "line": 40, + "column": 18 + } + }, + "12": { + "start": { + "line": 41, + "column": 29 + }, + "end": { + "line": 92, + "column": 1 + } + }, + "13": { + "start": { + "line": 44, + "column": 2 + }, + "end": { + "line": 44, + "column": 7 + } + }, + "14": { + "start": { + "line": 45, + "column": 16 + }, + "end": { + "line": 45, + "column": 69 + } + }, + "15": { + "start": { + "line": 45, + "column": 39 + }, + "end": { + "line": 45, + "column": 68 + } + }, + "16": { + "start": { + "line": 46, + "column": 21 + }, + "end": { + "line": 63, + "column": 3 + } + }, + "17": { + "start": { + "line": 47, + "column": 4 + }, + "end": { + "line": 62, + "column": 5 + } + }, + "18": { + "start": { + "line": 49, + "column": 8 + }, + "end": { + "line": 53, + "column": 17 + } + }, + "19": { + "start": { + "line": 55, + "column": 8 + }, + "end": { + "line": 59, + "column": 17 + } + }, + "20": { + "start": { + "line": 61, + "column": 8 + }, + "end": { + "line": 61, + "column": 20 + } + }, + "21": { + "start": { + "line": 64, + "column": 19 + }, + "end": { + "line": 64, + "column": 35 + } + }, + "22": { + "start": { + "line": 65, + "column": 20 + }, + "end": { + "line": 69, + "column": 25 + } + }, + "23": { + "start": { + "line": 66, + "column": 4 + }, + "end": { + "line": 68, + "column": 8 + } + }, + "24": { + "start": { + "line": 70, + "column": 21 + }, + "end": { + "line": 75, + "column": 25 + } + }, + "25": { + "start": { + "line": 71, + "column": 4 + }, + "end": { + "line": 73, + "column": 5 + } + }, + "26": { + "start": { + "line": 72, + "column": 6 + }, + "end": { + "line": 72, + "column": 60 + } + }, + "27": { + "start": { + "line": 72, + "column": 19 + }, + "end": { + "line": 72, + "column": 59 + } + }, + "28": { + "start": { + "line": 74, + "column": 4 + }, + "end": { + "line": 74, + "column": 18 + } + }, + "29": { + "start": { + "line": 76, + "column": 2 + }, + "end": { + "line": 91, + "column": 11 + } + }, + "30": { + "start": { + "line": 93, + "column": 0 + }, + "end": { + "line": 95, + "column": 3 + } + }, + "31": { + "start": { + "line": 94, + "column": 2 + }, + "end": { + "line": 94, + "column": 39 + } + }, + "32": { + "start": { + "line": 96, + "column": 0 + }, + "end": { + "line": 96, + "column": 20 + } + }, + "33": { + "start": { + "line": 98, + "column": 0 + }, + "end": { + "line": 98, + "column": 33 + } + }, + "34": { + "start": { + "line": 99, + "column": 0 + }, + "end": { + "line": 99, + "column": 35 + } + }, + "35": { + "start": { + "line": 100, + "column": 0 + }, + "end": { + "line": 113, + "column": 1 + } + }, + "36": { + "start": { + "line": 101, + "column": 2 + }, + "end": { + "line": 101, + "column": 39 + } + }, + "37": { + "start": { + "line": 102, + "column": 2 + }, + "end": { + "line": 102, + "column": 39 + } + }, + "38": { + "start": { + "line": 103, + "column": 2 + }, + "end": { + "line": 112, + "column": 5 + } + }, + "39": { + "start": { + "line": 104, + "column": 4 + }, + "end": { + "line": 104, + "column": 146 + } + }, + "40": { + "start": { + "line": 105, + "column": 4 + }, + "end": { + "line": 111, + "column": 7 + } + }, + "41": { + "start": { + "line": 106, + "column": 6 + }, + "end": { + "line": 107, + "column": 15 + } + }, + "42": { + "start": { + "line": 107, + "column": 8 + }, + "end": { + "line": 107, + "column": 15 + } + }, + "43": { + "start": { + "line": 108, + "column": 32 + }, + "end": { + "line": 108, + "column": 115 + } + }, + "44": { + "start": { + "line": 109, + "column": 6 + }, + "end": { + "line": 110, + "column": 54 + } + }, + "45": { + "start": { + "line": 110, + "column": 8 + }, + "end": { + "line": 110, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 27, + "column": 33 + }, + "end": { + "line": 27, + "column": 34 + } + }, + "loc": { + "start": { + "line": 29, + "column": 7 + }, + "end": { + "line": 39, + "column": 1 + } + }, + "line": 29 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 41, + "column": 29 + }, + "end": { + "line": 41, + "column": 30 + } + }, + "loc": { + "start": { + "line": 43, + "column": 6 + }, + "end": { + "line": 92, + "column": 1 + } + }, + "line": 43 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 45, + "column": 28 + }, + "end": { + "line": 45, + "column": 29 + } + }, + "loc": { + "start": { + "line": 45, + "column": 39 + }, + "end": { + "line": 45, + "column": 68 + } + }, + "line": 45 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 46, + "column": 21 + }, + "end": { + "line": 46, + "column": 22 + } + }, + "loc": { + "start": { + "line": 46, + "column": 38 + }, + "end": { + "line": 63, + "column": 3 + } + }, + "line": 46 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 65, + "column": 32 + }, + "end": { + "line": 65, + "column": 33 + } + }, + "loc": { + "start": { + "line": 65, + "column": 38 + }, + "end": { + "line": 69, + "column": 3 + } + }, + "line": 65 + }, + "6": { + "name": "(anonymous_6)", + "decl": { + "start": { + "line": 70, + "column": 29 + }, + "end": { + "line": 70, + "column": 30 + } + }, + "loc": { + "start": { + "line": 70, + "column": 35 + }, + "end": { + "line": 75, + "column": 3 + } + }, + "line": 70 + }, + "7": { + "name": "(anonymous_7)", + "decl": { + "start": { + "line": 72, + "column": 13 + }, + "end": { + "line": 72, + "column": 14 + } + }, + "loc": { + "start": { + "line": 72, + "column": 19 + }, + "end": { + "line": 72, + "column": 59 + } + }, + "line": 72 + }, + "8": { + "name": "(anonymous_8)", + "decl": { + "start": { + "line": 93, + "column": 57 + }, + "end": { + "line": 93, + "column": 58 + } + }, + "loc": { + "start": { + "line": 93, + "column": 68 + }, + "end": { + "line": 95, + "column": 1 + } + }, + "line": 93 + }, + "9": { + "name": "(anonymous_9)", + "decl": { + "start": { + "line": 103, + "column": 52 + }, + "end": { + "line": 103, + "column": 53 + } + }, + "loc": { + "start": { + "line": 103, + "column": 72 + }, + "end": { + "line": 112, + "column": 3 + } + }, + "line": 103 + }, + "10": { + "name": "(anonymous_10)", + "decl": { + "start": { + "line": 105, + "column": 27 + }, + "end": { + "line": 105, + "column": 28 + } + }, + "loc": { + "start": { + "line": 105, + "column": 44 + }, + "end": { + "line": 111, + "column": 5 + } + }, + "line": 105 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 47, + "column": 4 + }, + "end": { + "line": 62, + "column": 5 + } + }, + "type": "switch", + "locations": [ + { + "start": { + "line": 48, + "column": 6 + }, + "end": { + "line": 53, + "column": 17 + } + }, + { + "start": { + "line": 54, + "column": 6 + }, + "end": { + "line": 59, + "column": 17 + } + }, + { + "start": { + "line": 60, + "column": 6 + }, + "end": { + "line": 61, + "column": 20 + } + } + ], + "line": 47 + }, + "3": { + "loc": { + "start": { + "line": 71, + "column": 4 + }, + "end": { + "line": 73, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 71, + "column": 4 + }, + "end": { + "line": 73, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 71 + }, + "4": { + "loc": { + "start": { + "line": 100, + "column": 0 + }, + "end": { + "line": 113, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 100, + "column": 0 + }, + "end": { + "line": 113, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 100 + }, + "5": { + "loc": { + "start": { + "line": 106, + "column": 6 + }, + "end": { + "line": 107, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 106, + "column": 6 + }, + "end": { + "line": 107, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 106 + }, + "6": { + "loc": { + "start": { + "line": 109, + "column": 6 + }, + "end": { + "line": 110, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 109, + "column": 6 + }, + "end": { + "line": 110, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 109 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 4, + "7": 2, + "8": 2, + "9": 2, + "10": 12, + "11": 2, + "12": 2, + "13": 12, + "14": 12, + "15": 16, + "16": 12, + "17": 4, + "18": 4, + "19": 0, + "20": 0, + "21": 12, + "22": 12, + "23": 2, + "24": 12, + "25": 4, + "26": 4, + "27": 0, + "28": 0, + "29": 12, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "34": 2, + "35": 2, + "36": 2, + "37": 2, + "38": 2, + "39": 2, + "40": 2, + "41": 0, + "42": 0, + "43": 0, + "44": 0, + "45": 0 + }, + "f": { + "0": 4, + "1": 12, + "2": 12, + "3": 16, + "4": 4, + "5": 2, + "6": 4, + "7": 0, + "8": 2, + "9": 2, + "10": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 4, + 0, + 0 + ], + "3": [ + 4, + 0 + ], + "4": [ + 2, + 0 + ], + "5": [ + 0, + 0 + ], + "6": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AAmCoB;;;;;;;;;;;;;;;;AAlCpB,SAASA,uBAAuB;AAChC,SAASC,KAAKC,cAAc;AAE5B,SAASC,aAAaC,eAAe;AACrC,SAASC,mBAAmB;AAG5B,SAASC,sBAAsB;AAE/B,SAASC,mBAAmBC,WAAWC,wBAAwB;AAC/D,SAASC,qBAAqB;AAE9B,SAASC,kBAAkB;AAC3B,SAASC,iBAAiB;AAC1B,SAASC,gBAAgB;AAGzB,MAAMC,eAAeZ,OAAOD,GAAG,EAAE,CAAC;AAAA,EAAEc;AAAM,OAAO;AAAA,EAC7C,WAAWA,MAAMC,QAAQ,CAAC;AAAA,EAC1B,WAAW;AAAA,EACX,OAAOD,MAAMC,QAAQ,CAAC;AAAA,EACtB,cAAc;AAAA,EACd,SAAS;AAAA,IAAEC,YAAY;AAAA,EAAE;AAAA,EACzB,YAAY;AAAA,EACZ,cAAc;AAClB,EAAE;AAAEC,KAREJ;AAUC,aAAMK,gBAA2BA,CAAC;AAAA,EAAEC;AAAQ,MAAM;AAAAC,KAAA;AACrD,QAAMC,QAAQjB,YAAY,CAACkB,UAAqBb,cAAca,OAAOH,OAAO,CAAC;AAE7E,QAAMI,aAAaA,CAACC,MAAsCC,UAAkB;AACxE,YAAQD,KAAKE,MAAI;AAAA,MACb,KAAK;AACD,eACI,uBAAC,YAEG,OACA,UAAUP,SACV,QAHKK,KAAKG,IADd;AAAA;AAAA;AAAA;AAAA,eAIe;AAAA,MAGvB,KAAK;AACD,eACI,uBAAC,aAEG,OACA,UAAUR,SACV,QAHKK,KAAKG,IADd;AAAA;AAAA;AAAA;AAAA,eAIe;AAAA,MAGvB;AACI,eAAO;AAAA,IACf;AAAA,EACJ;AAEA,QAAMC,WAAWvB,eAAe;AAChC,QAAMwB,YAAY3B,YAAY,MAAM;AAChC0B,aAASpB,iBAAiBsB,WAAW;AAAA,MAAEC,UAAUZ;AAAAA,IAAQ,CAAC,CAAC;AAAA,EAC/D,GAAG,CAACS,UAAUT,OAAO,CAAC;AACtB,QAAMa,aAAa7B,QAAkC,MAAM;AACvD,QAAIgB,YAAYb,mBAAmB;AAC/B,aAAO,MAAMsB,SAASpB,iBAAiByB,YAAY,CAAC;AAAA,IACxD;AACA,WAAOC;AAAAA,EACX,GAAG,CAACN,UAAUT,OAAO,CAAC;AAEtB,SACI,uBAAC,mBAAgB,IAAIA,SAAS,OAAOE,OACjC,iCAAC,gBAAa,sBAAkB,MAC3BA;AAAAA,UAAMc,IAAIZ,UAAU;AAAA,IACrB,uBAAC,cAAW,WAAsB,cAAlC;AAAA;AAAA;AAAA;AAAA,WAAyD;AAAA,OAF7D;AAAA;AAAA;AAAA;AAAA,SAGA,KAJJ;AAAA;AAAA;AAAA;AAAA,SAKA;AAER;AAAEH,GA/CWF,eAAwB;AAAA,UACnBd,aA2BGC,cAAc;AAAA;AAAA+B,MA5BtBlB;AAmDZ,IAAAD,IAAAmB;AAAAC,aAAApB,IAAA;AAAAoB,aAAAD,KAAA", + "names": [ + "SortableContext", + "Box", + "styled", + "useCallback", + "useMemo", + "useSelector", + "useAppDispatch", + "ROOT_SPEEDDIAL_ID", + "actions", + "speeddialActions", + "getGroupTiles", + "AddNewTile", + "GroupTile", + "LinkTile", + "TilesWrapper", + "theme", + "spacing", + "flexShrink", + "_c", + "GroupContents", + "groupId", + "_s", + "tiles", + "state", + "renderTile", + "tile", + "index", + "type", + "id", + "dispatch", + "onAddLink", + "createLink", + "parentId", + "onAddGroup", + "createGroup", + "undefined", + "map", + "_c2", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/group-contents.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/group-contents.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "83d5fc4a2aa32cb00a502e14c4aca55206af1937" + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/index.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/index.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 111 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 25, + "column": 25 + }, + "end": { + "line": 79, + "column": 1 + } + }, + "10": { + "start": { + "line": 28, + "column": 2 + }, + "end": { + "line": 28, + "column": 7 + } + }, + "11": { + "start": { + "line": 29, + "column": 19 + }, + "end": { + "line": 29, + "column": 35 + } + }, + "12": { + "start": { + "line": 30, + "column": 20 + }, + "end": { + "line": 46, + "column": 16 + } + }, + "13": { + "start": { + "line": 34, + "column": 4 + }, + "end": { + "line": 45, + "column": 5 + } + }, + "14": { + "start": { + "line": 35, + "column": 19 + }, + "end": { + "line": 35, + "column": 45 + } + }, + "15": { + "start": { + "line": 36, + "column": 17 + }, + "end": { + "line": 36, + "column": 41 + } + }, + "16": { + "start": { + "line": 37, + "column": 22 + }, + "end": { + "line": 37, + "column": 49 + } + }, + "17": { + "start": { + "line": 38, + "column": 6 + }, + "end": { + "line": 44, + "column": 7 + } + }, + "18": { + "start": { + "line": 39, + "column": 8 + }, + "end": { + "line": 43, + "column": 12 + } + }, + "19": { + "start": { + "line": 47, + "column": 18 + }, + "end": { + "line": 51, + "column": 5 + } + }, + "20": { + "start": { + "line": 52, + "column": 2 + }, + "end": { + "line": 78, + "column": 11 + } + }, + "21": { + "start": { + "line": 80, + "column": 0 + }, + "end": { + "line": 82, + "column": 3 + } + }, + "22": { + "start": { + "line": 81, + "column": 2 + }, + "end": { + "line": 81, + "column": 49 + } + }, + "23": { + "start": { + "line": 83, + "column": 0 + }, + "end": { + "line": 83, + "column": 15 + } + }, + "24": { + "start": { + "line": 85, + "column": 0 + }, + "end": { + "line": 85, + "column": 30 + } + }, + "25": { + "start": { + "line": 86, + "column": 0 + }, + "end": { + "line": 99, + "column": 1 + } + }, + "26": { + "start": { + "line": 87, + "column": 2 + }, + "end": { + "line": 87, + "column": 39 + } + }, + "27": { + "start": { + "line": 88, + "column": 2 + }, + "end": { + "line": 88, + "column": 39 + } + }, + "28": { + "start": { + "line": 89, + "column": 2 + }, + "end": { + "line": 98, + "column": 5 + } + }, + "29": { + "start": { + "line": 90, + "column": 4 + }, + "end": { + "line": 90, + "column": 137 + } + }, + "30": { + "start": { + "line": 91, + "column": 4 + }, + "end": { + "line": 97, + "column": 7 + } + }, + "31": { + "start": { + "line": 92, + "column": 6 + }, + "end": { + "line": 93, + "column": 15 + } + }, + "32": { + "start": { + "line": 93, + "column": 8 + }, + "end": { + "line": 93, + "column": 15 + } + }, + "33": { + "start": { + "line": 94, + "column": 32 + }, + "end": { + "line": 94, + "column": 115 + } + }, + "34": { + "start": { + "line": 95, + "column": 6 + }, + "end": { + "line": 96, + "column": 54 + } + }, + "35": { + "start": { + "line": 96, + "column": 8 + }, + "end": { + "line": 96, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 25, + "column": 25 + }, + "end": { + "line": 25, + "column": 26 + } + }, + "loc": { + "start": { + "line": 27, + "column": 6 + }, + "end": { + "line": 79, + "column": 1 + } + }, + "line": 27 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 30, + "column": 32 + }, + "end": { + "line": 30, + "column": 33 + } + }, + "loc": { + "start": { + "line": 33, + "column": 8 + }, + "end": { + "line": 46, + "column": 3 + } + }, + "line": 33 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 80, + "column": 53 + }, + "end": { + "line": 80, + "column": 54 + } + }, + "loc": { + "start": { + "line": 80, + "column": 64 + }, + "end": { + "line": 82, + "column": 1 + } + }, + "line": 80 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 89, + "column": 52 + }, + "end": { + "line": 89, + "column": 53 + } + }, + "loc": { + "start": { + "line": 89, + "column": 72 + }, + "end": { + "line": 98, + "column": 3 + } + }, + "line": 89 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 91, + "column": 27 + }, + "end": { + "line": 91, + "column": 28 + } + }, + "loc": { + "start": { + "line": 91, + "column": 44 + }, + "end": { + "line": 97, + "column": 5 + } + }, + "line": 91 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 34, + "column": 4 + }, + "end": { + "line": 45, + "column": 5 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 34, + "column": 4 + }, + "end": { + "line": 45, + "column": 5 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 34 + }, + "3": { + "loc": { + "start": { + "line": 34, + "column": 8 + }, + "end": { + "line": 34, + "column": 37 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 34, + "column": 8 + }, + "end": { + "line": 34, + "column": 12 + } + }, + { + "start": { + "line": 34, + "column": 16 + }, + "end": { + "line": 34, + "column": 37 + } + } + ], + "line": 34 + }, + "4": { + "loc": { + "start": { + "line": 38, + "column": 6 + }, + "end": { + "line": 44, + "column": 7 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 38, + "column": 6 + }, + "end": { + "line": 44, + "column": 7 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 38 + }, + "5": { + "loc": { + "start": { + "line": 38, + "column": 10 + }, + "end": { + "line": 38, + "column": 71 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 38, + "column": 10 + }, + "end": { + "line": 38, + "column": 34 + } + }, + { + "start": { + "line": 38, + "column": 38 + }, + "end": { + "line": 38, + "column": 60 + } + }, + { + "start": { + "line": 38, + "column": 64 + }, + "end": { + "line": 38, + "column": 71 + } + } + ], + "line": 38 + }, + "6": { + "loc": { + "start": { + "line": 86, + "column": 0 + }, + "end": { + "line": 99, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 86, + "column": 0 + }, + "end": { + "line": 99, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 86 + }, + "7": { + "loc": { + "start": { + "line": 92, + "column": 6 + }, + "end": { + "line": 93, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 92, + "column": 6 + }, + "end": { + "line": 93, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 92 + }, + "8": { + "loc": { + "start": { + "line": 95, + "column": 6 + }, + "end": { + "line": 96, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 95, + "column": 6 + }, + "end": { + "line": 96, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 95 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 4, + "11": 4, + "12": 4, + "13": 0, + "14": 0, + "15": 0, + "16": 0, + "17": 0, + "18": 0, + "19": 4, + "20": 4, + "21": 2, + "22": 2, + "23": 2, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "31": 0, + "32": 0, + "33": 0, + "34": 0, + "35": 0 + }, + "f": { + "0": 2, + "1": 4, + "2": 0, + "3": 2, + "4": 2, + "5": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 0, + 0 + ], + "3": [ + 0, + 0 + ], + "4": [ + 0, + 0 + ], + "5": [ + 0, + 0, + 0 + ], + "6": [ + 2, + 0 + ], + "7": [ + 0, + 0 + ], + "8": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AAyCgB;;;;;;;;;;;;;;;;AAxChB,SAASA,eAAeC,YAAYC,eAAeC,WAAWC,kBAAkB;AAChF,SAASC,aAAa;AAEtB,SAASC,mBAAmB;AAE5B,SAASC,sBAAsB;AAC/B,SAASC,WAAWC,kBAAkBC,yBAAyB;AAE/D,SAASC,uBAAuB;AAChC,SAASC,sBAAsB;AAC/B,SAASC,qBAAqB;AAIvB,aAAMC,YAAuCA,CAAC;AAAA,EAAEC;AAAS,MAAM;AAAAC,KAAA;AAClE,QAAMC,WAAWV,eAAe;AAEhC,QAAMW,YAAYZ,YAAY,CAAC;AAAA,IAAEa;AAAAA,IAAQC;AAAAA,EAAmB,MAAM;AAC9D,QAAIA,QAAQD,OAAOE,OAAOD,KAAKC,IAAI;AAC/B,YAAMC,OAAQH,OAAOI,KAAoCC,SAASC;AAClE,YAAMC,KAAMN,KAAKG,KAAoCC,SAASC;AAC9D,YAAME,UAAWP,KAAKG,KAAoCC,SAASI;AAEnE,UAAI,OAAON,SAAS,YAAY,OAAOI,OAAO,YAAWC,SAAS;AAC9DV,iBAASR,iBAAiBoB,aAAa;AAAA,UAAEF;AAAAA,UAASL;AAAAA,UAAMI;AAAAA,QAAG,CAAC,CAAC;AAAA,MACjE;AAAA,IACJ;AAAA,EACJ,GAAG,CAACT,QAAQ,CAAC;AAEb,QAAMa,UAAU1B,WACZD,UAAUD,eAAe;AAAA,IAAE6B,sBAAsB;AAAA,MAAEC,UAAU;AAAA,IAAG;AAAA,EAAE,CAAC,CACvE;AAEA,SACI,uBAAC,cACG,SACA,oBAAoBhC,eACpB,WAEA;AAAA,2BAAC,SAAM,WAAW,GAAG,IAAI;AAAA,MAAEe;AAAAA,IAAS,GAChC,iCAAC,iBAAc,SAASL,qBAAxB;AAAA;AAAA;AAAA;AAAA,WAA0C,KAD9C;AAAA;AAAA;AAAA;AAAA,WAEA;AAAA,IACA,uBAAC,oBAAD;AAAA;AAAA;AAAA;AAAA,WAAe;AAAA,IACf,uBAAC,qBAAD;AAAA;AAAA;AAAA;AAAA,WAAgB;AAAA,OATpB;AAAA;AAAA;AAAA;AAAA,SAUA;AAER;AAAEM,GAhCWF,WAAoC;AAAA,UAC5BP,gBAcDH,YACZD,SAAS;AAAA;AAAA8B,KAhBJnB;AAAoC,IAAAmB;AAAAC,aAAAD,IAAA", + "names": [ + "closestCenter", + "DndContext", + "PointerSensor", + "useSensor", + "useSensors", + "Paper", + "useCallback", + "useAppDispatch", + "actions", + "speeddialActions", + "ROOT_SPEEDDIAL_ID", + "GroupEditDialog", + "LinkEditDialog", + "GroupContents", + "SpeedDial", + "gridArea", + "_s", + "dispatch", + "onDragEnd", + "active", + "over", + "id", + "from", + "data", + "current", + "index", + "to", + "groupId", + "parentId", + "reorderTiles", + "sensors", + "activationConstraint", + "distance", + "_c", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/components/speeddial/index.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/components/speeddial/index.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "a1e6d51e1764f68becb44daa60b2d529b4d16021" + }, + "/home/bartosz/projects/speeddial/src/app.tsx": { + "path": "/home/bartosz/projects/speeddial/src/app.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 88 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 21, + "column": 18 + }, + "end": { + "line": 28, + "column": 3 + } + }, + "9": { + "start": { + "line": 23, + "column": 7 + }, + "end": { + "line": 28, + "column": 1 + } + }, + "10": { + "start": { + "line": 29, + "column": 0 + }, + "end": { + "line": 29, + "column": 15 + } + }, + "11": { + "start": { + "line": 30, + "column": 40 + }, + "end": { + "line": 40, + "column": 27 + } + }, + "12": { + "start": { + "line": 31, + "column": 2 + }, + "end": { + "line": 31, + "column": 46 + } + }, + "13": { + "start": { + "line": 32, + "column": 2 + }, + "end": { + "line": 32, + "column": 54 + } + }, + "14": { + "start": { + "line": 33, + "column": 2 + }, + "end": { + "line": 33, + "column": 42 + } + }, + "15": { + "start": { + "line": 34, + "column": 2 + }, + "end": { + "line": 34, + "column": 48 + } + }, + "16": { + "start": { + "line": 35, + "column": 2 + }, + "end": { + "line": 35, + "column": 42 + } + }, + "17": { + "start": { + "line": 36, + "column": 2 + }, + "end": { + "line": 36, + "column": 42 + } + }, + "18": { + "start": { + "line": 37, + "column": 2 + }, + "end": { + "line": 37, + "column": 50 + } + }, + "19": { + "start": { + "line": 38, + "column": 2 + }, + "end": { + "line": 38, + "column": 56 + } + }, + "20": { + "start": { + "line": 39, + "column": 2 + }, + "end": { + "line": 39, + "column": 28 + } + }, + "21": { + "start": { + "line": 41, + "column": 15 + }, + "end": { + "line": 52, + "column": 2 + } + }, + "22": { + "start": { + "line": 53, + "column": 0 + }, + "end": { + "line": 53, + "column": 13 + } + }, + "23": { + "start": { + "line": 55, + "column": 2 + }, + "end": { + "line": 96, + "column": 11 + } + }, + "24": { + "start": { + "line": 98, + "column": 0 + }, + "end": { + "line": 98, + "column": 16 + } + }, + "25": { + "start": { + "line": 100, + "column": 0 + }, + "end": { + "line": 100, + "column": 30 + } + }, + "26": { + "start": { + "line": 101, + "column": 0 + }, + "end": { + "line": 101, + "column": 28 + } + }, + "27": { + "start": { + "line": 102, + "column": 0 + }, + "end": { + "line": 102, + "column": 31 + } + }, + "28": { + "start": { + "line": 103, + "column": 0 + }, + "end": { + "line": 116, + "column": 1 + } + }, + "29": { + "start": { + "line": 104, + "column": 2 + }, + "end": { + "line": 104, + "column": 39 + } + }, + "30": { + "start": { + "line": 105, + "column": 2 + }, + "end": { + "line": 105, + "column": 39 + } + }, + "31": { + "start": { + "line": 106, + "column": 2 + }, + "end": { + "line": 115, + "column": 5 + } + }, + "32": { + "start": { + "line": 107, + "column": 4 + }, + "end": { + "line": 107, + "column": 114 + } + }, + "33": { + "start": { + "line": 108, + "column": 4 + }, + "end": { + "line": 114, + "column": 7 + } + }, + "34": { + "start": { + "line": 109, + "column": 6 + }, + "end": { + "line": 110, + "column": 15 + } + }, + "35": { + "start": { + "line": 110, + "column": 8 + }, + "end": { + "line": 110, + "column": 15 + } + }, + "36": { + "start": { + "line": 111, + "column": 32 + }, + "end": { + "line": 111, + "column": 115 + } + }, + "37": { + "start": { + "line": 112, + "column": 6 + }, + "end": { + "line": 113, + "column": 54 + } + }, + "38": { + "start": { + "line": 113, + "column": 8 + }, + "end": { + "line": 113, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 21, + "column": 30 + }, + "end": { + "line": 21, + "column": 31 + } + }, + "loc": { + "start": { + "line": 23, + "column": 7 + }, + "end": { + "line": 28, + "column": 1 + } + }, + "line": 23 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 30, + "column": 41 + }, + "end": { + "line": 30, + "column": 42 + } + }, + "loc": { + "start": { + "line": 30, + "column": 65 + }, + "end": { + "line": 40, + "column": 1 + } + }, + "line": 30 + }, + "3": { + "name": "AppLayout", + "decl": { + "start": { + "line": 54, + "column": 16 + }, + "end": { + "line": 54, + "column": 25 + } + }, + "loc": { + "start": { + "line": 54, + "column": 28 + }, + "end": { + "line": 97, + "column": 1 + } + }, + "line": 54 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 106, + "column": 52 + }, + "end": { + "line": 106, + "column": 53 + } + }, + "loc": { + "start": { + "line": 106, + "column": 72 + }, + "end": { + "line": 115, + "column": 3 + } + }, + "line": 106 + }, + "5": { + "name": "(anonymous_5)", + "decl": { + "start": { + "line": 108, + "column": 27 + }, + "end": { + "line": 108, + "column": 28 + } + }, + "loc": { + "start": { + "line": 108, + "column": 44 + }, + "end": { + "line": 114, + "column": 5 + } + }, + "line": 108 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 40, + "column": 3 + }, + "end": { + "line": 40, + "column": 26 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 40, + "column": 3 + }, + "end": { + "line": 40, + "column": 20 + } + }, + { + "start": { + "line": 40, + "column": 24 + }, + "end": { + "line": 40, + "column": 26 + } + } + ], + "line": 40 + }, + "3": { + "loc": { + "start": { + "line": 103, + "column": 0 + }, + "end": { + "line": 116, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 103, + "column": 0 + }, + "end": { + "line": 116, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 103 + }, + "4": { + "loc": { + "start": { + "line": 109, + "column": 6 + }, + "end": { + "line": 110, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 109, + "column": 6 + }, + "end": { + "line": 110, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 109 + }, + "5": { + "loc": { + "start": { + "line": 112, + "column": 6 + }, + "end": { + "line": 113, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 112, + "column": 6 + }, + "end": { + "line": 113, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 112 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 6, + "7": 2, + "8": 2, + "9": 4, + "10": 2, + "11": 2, + "12": 2, + "13": 2, + "14": 2, + "15": 2, + "16": 2, + "17": 2, + "18": 2, + "19": 2, + "20": 2, + "21": 2, + "22": 2, + "23": 4, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "34": 0, + "35": 0, + "36": 0, + "37": 0, + "38": 0 + }, + "f": { + "0": 6, + "1": 4, + "2": 2, + "3": 4, + "4": 2, + "5": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 2, + 2 + ], + "3": [ + 2, + 0 + ], + "4": [ + 0, + 0 + ], + "5": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AA2CgB;AA3ChB,2BAAoB;AAAuB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAE3C,SAASA,iBAAiB;AAC1B,SAASC,iBAAiB;AAC1B,SAASC,gBAAgBC,qBAAqB;AAC9C,SAASC,iBAAiB;AAG1B,MAAMC,YAAYC,OAAOC,GAAG,EAAyB,CAAC;AAAA,EAAEC;AAAS,OAAO;AAAA,EACpEA;AAAAA,EACAC,SAAS;AAAA,EACTC,gBAAgB;AAAA,EAChBC,YAAY;AAChB,EAAE;AAAEC,KALEP;AAON,IAAWQ,oBAAX,kBAAWA,uBAAX;AACIC,mCAAW;AACXC,uCAAe;AACfC,iCAAS;AACTC,oCAAY;AACZC,iCAAS;AACTC,iCAAS;AACTC,qCAAa;AACbC,wCAAgB;AARTR;AAAAA;AAWX,MAAMS,SAAShB,OAAOC,GAAG,EAAE;AAAA,EACvBE,SAAS;AAAA,EACTc,mBAAoB;AAAA,WACbV,mCAAoCA,8BAAiCA;AAAAA,WACrEA,uCAAoCA,iCAAiCA;AAAAA,WACrEA,uCAAoCA,8BAAiCA;AAAAA,WACrEA,iCAAoCA,8BAAiCA;AAAAA,EAC5EW,qBAAqB;AAAA,EACrBC,kBAAkB;AAAA,EAClBC,KAAK;AAAA,EACLC,WAAW;AACf,CAAC;AAAEC,MAXGN;AAaC,gBAASO,YAAY;AACxB,SACI,uBAAC,UACG;AAAA,2BAAC,aAAU,UAAUhB,+BACjB,iCAAC,oBAAD;AAAA;AAAA;AAAA;AAAA,WAAe,KADnB;AAAA;AAAA;AAAA;AAAA,WAEA;AAAA,IACA,uBAAC,aAAU,UAAUA,yBAArB;AAAA;AAAA;AAAA;AAAA,WAA8C;AAAA,IAC9C,uBAAC,aAAU,UAAUA,+BAArB;AAAA;AAAA;AAAA;AAAA,WAAiD;AAAA,IACjD,uBAAC,SAAI,OAAO;AAAA,MAAEL,UAAUK;AAAAA,IAAyB,KAAjD;AAAA;AAAA;AAAA;AAAA,WAAmD;AAAA,IACnD,uBAAC,aAAU,UAAUA,yBAArB;AAAA;AAAA;AAAA;AAAA,WAA8C;AAAA,IAC9C,uBAAC,mBAAD;AAAA;AAAA;AAAA;AAAA,WAAc;AAAA,OARlB;AAAA;AAAA;AAAA;AAAA,SASA;AAER;AAACiB,MAbeD;AAAS,IAAAjB,IAAAgB,KAAAE;AAAAC,aAAAnB,IAAA;AAAAmB,aAAAH,KAAA;AAAAG,aAAAD,KAAA", + "names": [ + "AppFooter", + "SearchBar", + "SettingsButton", + "SettingsModal", + "SpeedDial", + "ActionBar", + "styled", + "Box", + "gridArea", + "display", + "justifyContent", + "alignItems", + "_c", + "GridTemplateAreas", + "LEFT_TOP", + "LEFT_SIDEBAR", + "SEARCH", + "SPEEDDIAL", + "SPACER", + "FOOTER", + "ACTION_BAR", + "RIGHT_SIDEBAR", + "Layout", + "gridTemplateAreas", + "gridTemplateColumns", + "gridTemplateRows", + "gap", + "minHeight", + "_c2", + "AppLayout", + "_c3", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/app.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/app.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "d4a9e350a2dc4bbf2839aadf22049bfeffbb6cf9" + }, + "/home/bartosz/projects/speeddial/src/theme/use-create-theme.ts": { + "path": "/home/bartosz/projects/speeddial/src/theme/use-create-theme.ts", + "statementMap": { + "0": { + "start": { + "line": 10, + "column": 30 + }, + "end": { + "line": 14, + "column": 1 + } + }, + "1": { + "start": { + "line": 11, + "column": 26 + }, + "end": { + "line": 11, + "column": 71 + } + }, + "2": { + "start": { + "line": 12, + "column": 15 + }, + "end": { + "line": 12, + "column": 80 + } + }, + "3": { + "start": { + "line": 13, + "column": 2 + }, + "end": { + "line": 13, + "column": 67 + } + }, + "4": { + "start": { + "line": 13, + "column": 23 + }, + "end": { + "line": 13, + "column": 57 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 10, + "column": 30 + }, + "end": { + "line": 10, + "column": 31 + } + }, + "loc": { + "start": { + "line": 10, + "column": 36 + }, + "end": { + "line": 14, + "column": 1 + } + }, + "line": 10 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 13, + "column": 17 + }, + "end": { + "line": 13, + "column": 18 + } + }, + "loc": { + "start": { + "line": 13, + "column": 23 + }, + "end": { + "line": 13, + "column": 57 + } + }, + "line": 13 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 12, + "column": 15 + }, + "end": { + "line": 12, + "column": 80 + } + }, + "type": "binary-expr", + "locations": [ + { + "start": { + "line": 12, + "column": 15 + }, + "end": { + "line": 12, + "column": 40 + } + }, + { + "start": { + "line": 12, + "column": 45 + }, + "end": { + "line": 12, + "column": 79 + } + } + ], + "line": 12 + }, + "1": { + "loc": { + "start": { + "line": 12, + "column": 45 + }, + "end": { + "line": 12, + "column": 79 + } + }, + "type": "cond-expr", + "locations": [ + { + "start": { + "line": 12, + "column": 63 + }, + "end": { + "line": 12, + "column": 69 + } + }, + { + "start": { + "line": 12, + "column": 72 + }, + "end": { + "line": 12, + "column": 79 + } + } + ], + "line": 12 + } + }, + "s": { + "0": 2, + "1": 4, + "2": 4, + "3": 4, + "4": 4 + }, + "f": { + "0": 4, + "1": 4 + }, + "b": { + "0": [ + 4, + 4 + ], + "1": [ + 4, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "sources": [ + "/home/bartosz/projects/speeddial/src/theme/use-create-theme.ts" + ], + "mappings": "AAAA,OAAO;AACP,OAAO;AACP,OAAO;AACP,OAAO;AAEP,SAAS,qBAAqB;AAC9B,SAAS,mBAAmB;AAC5B,SAAS,eAAe;AACxB,SAAS,mBAAmB;AAE5B,SAAS,oBAAoB;AAGtB,aAAM,iBAAiB,MAAM;AAChC,QAAM,kBAAkB,cAAc,8BAA8B;AAEpE,QAAM,OAAO,YAAY,YAAY,MAAM,kBAAkB,SAAS;AAEtE,SAAO,QAAQ,MAAM,YAAY,EAAE,SAAS,EAAE,KAAK,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC;AACnE;", + "names": [] + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "a27c6f11010c81114ae6a6f6b9dc977e2c07d0c2" + }, + "/home/bartosz/projects/speeddial/src/theme/themed-app.tsx": { + "path": "/home/bartosz/projects/speeddial/src/theme/themed-app.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 101 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 16, + "column": 9 + }, + "end": { + "line": 16, + "column": 23 + } + }, + "9": { + "start": { + "line": 20, + "column": 25 + }, + "end": { + "line": 36, + "column": 1 + } + }, + "10": { + "start": { + "line": 23, + "column": 2 + }, + "end": { + "line": 23, + "column": 7 + } + }, + "11": { + "start": { + "line": 24, + "column": 2 + }, + "end": { + "line": 35, + "column": 11 + } + }, + "12": { + "start": { + "line": 37, + "column": 0 + }, + "end": { + "line": 39, + "column": 3 + } + }, + "13": { + "start": { + "line": 38, + "column": 2 + }, + "end": { + "line": 38, + "column": 26 + } + }, + "14": { + "start": { + "line": 40, + "column": 0 + }, + "end": { + "line": 40, + "column": 15 + } + }, + "15": { + "start": { + "line": 42, + "column": 0 + }, + "end": { + "line": 42, + "column": 30 + } + }, + "16": { + "start": { + "line": 43, + "column": 0 + }, + "end": { + "line": 56, + "column": 1 + } + }, + "17": { + "start": { + "line": 44, + "column": 2 + }, + "end": { + "line": 44, + "column": 39 + } + }, + "18": { + "start": { + "line": 45, + "column": 2 + }, + "end": { + "line": 45, + "column": 39 + } + }, + "19": { + "start": { + "line": 46, + "column": 2 + }, + "end": { + "line": 55, + "column": 5 + } + }, + "20": { + "start": { + "line": 47, + "column": 4 + }, + "end": { + "line": 47, + "column": 127 + } + }, + "21": { + "start": { + "line": 48, + "column": 4 + }, + "end": { + "line": 54, + "column": 7 + } + }, + "22": { + "start": { + "line": 49, + "column": 6 + }, + "end": { + "line": 50, + "column": 15 + } + }, + "23": { + "start": { + "line": 50, + "column": 8 + }, + "end": { + "line": 50, + "column": 15 + } + }, + "24": { + "start": { + "line": 51, + "column": 32 + }, + "end": { + "line": 51, + "column": 115 + } + }, + "25": { + "start": { + "line": 52, + "column": 6 + }, + "end": { + "line": 53, + "column": 54 + } + }, + "26": { + "start": { + "line": 53, + "column": 8 + }, + "end": { + "line": 53, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 20, + "column": 25 + }, + "end": { + "line": 20, + "column": 26 + } + }, + "loc": { + "start": { + "line": 22, + "column": 6 + }, + "end": { + "line": 36, + "column": 1 + } + }, + "line": 22 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 37, + "column": 53 + }, + "end": { + "line": 37, + "column": 54 + } + }, + "loc": { + "start": { + "line": 37, + "column": 64 + }, + "end": { + "line": 39, + "column": 1 + } + }, + "line": 37 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 46, + "column": 52 + }, + "end": { + "line": 46, + "column": 53 + } + }, + "loc": { + "start": { + "line": 46, + "column": 72 + }, + "end": { + "line": 55, + "column": 3 + } + }, + "line": 46 + }, + "4": { + "name": "(anonymous_4)", + "decl": { + "start": { + "line": 48, + "column": 27 + }, + "end": { + "line": 48, + "column": 28 + } + }, + "loc": { + "start": { + "line": 48, + "column": 44 + }, + "end": { + "line": 54, + "column": 5 + } + }, + "line": 48 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 43, + "column": 0 + }, + "end": { + "line": 56, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 43, + "column": 0 + }, + "end": { + "line": 56, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 43 + }, + "3": { + "loc": { + "start": { + "line": 49, + "column": 6 + }, + "end": { + "line": 50, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 49, + "column": 6 + }, + "end": { + "line": 50, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 49 + }, + "4": { + "loc": { + "start": { + "line": 52, + "column": 6 + }, + "end": { + "line": 53, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 52, + "column": 6 + }, + "end": { + "line": 53, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 52 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 4, + "11": 4, + "12": 2, + "13": 2, + "14": 2, + "15": 2, + "16": 2, + "17": 2, + "18": 2, + "19": 2, + "20": 2, + "21": 2, + "22": 0, + "23": 0, + "24": 0, + "25": 0, + "26": 0 + }, + "f": { + "0": 2, + "1": 4, + "2": 2, + "3": 2, + "4": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 2, + 0 + ], + "3": [ + 0, + 0 + ], + "4": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AASQ;;;;;;;;;;;;;;;;AATR,SAASA,qBAAqB;AAC9B,SAASC,mBAAmB;AAG5B,SAASC,sBAAsB;AAGxB,aAAMC,YAAmCA,CAAC;AAAA,EAAEC;AAAS,MAAC;AAAAC,KAAA;AAAA,SACzD,uBAAC,iBAAc,OAAOH,eAAe,GACjC;AAAA,2BAAC,iBAAD;AAAA;AAAA;AAAA;AAAA,WAAY;AAAA,IACXE;AAAAA,OAFL;AAAA;AAAA;AAAA;AAAA,SAGA;AAAgB;AAClBC,GALWF,WAAgC;AAAA,UACnBD,cAAc;AAAA;AAAAI,KAD3BH;AAAgC,IAAAG;AAAAC,aAAAD,IAAA", + "names": [ + "ThemeProvider", + "CssBaseline", + "useCreateTheme", + "ThemedApp", + "children", + "_s", + "_c", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/theme/themed-app.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/theme/themed-app.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "5c94e583b1c46e9c93825e1ac3d7fe8fede6a3e9" + }, + "/home/bartosz/projects/speeddial/src/index.tsx": { + "path": "/home/bartosz/projects/speeddial/src/index.tsx", + "statementMap": { + "0": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "1": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "2": { + "start": { + "line": 7, + "column": 4 + }, + "end": { + "line": 7, + "column": 165 + } + }, + "3": { + "start": { + "line": 9, + "column": 2 + }, + "end": { + "line": 9, + "column": 39 + } + }, + "4": { + "start": { + "line": 10, + "column": 2 + }, + "end": { + "line": 10, + "column": 39 + } + }, + "5": { + "start": { + "line": 11, + "column": 2 + }, + "end": { + "line": 13, + "column": 4 + } + }, + "6": { + "start": { + "line": 12, + "column": 4 + }, + "end": { + "line": 12, + "column": 90 + } + }, + "7": { + "start": { + "line": 14, + "column": 2 + }, + "end": { + "line": 14, + "column": 75 + } + }, + "8": { + "start": { + "line": 29, + "column": 4 + }, + "end": { + "line": 29, + "column": 17 + } + }, + "9": { + "start": { + "line": 30, + "column": 36 + }, + "end": { + "line": 50, + "column": 1 + } + }, + "10": { + "start": { + "line": 34, + "column": 2 + }, + "end": { + "line": 44, + "column": 3 + } + }, + "11": { + "start": { + "line": 35, + "column": 4 + }, + "end": { + "line": 43, + "column": 13 + } + }, + "12": { + "start": { + "line": 45, + "column": 2 + }, + "end": { + "line": 49, + "column": 11 + } + }, + "13": { + "start": { + "line": 51, + "column": 0 + }, + "end": { + "line": 51, + "column": 33 + } + }, + "14": { + "start": { + "line": 52, + "column": 13 + }, + "end": { + "line": 52, + "column": 64 + } + }, + "15": { + "start": { + "line": 53, + "column": 0 + }, + "end": { + "line": 77, + "column": 10 + } + }, + "16": { + "start": { + "line": 79, + "column": 0 + }, + "end": { + "line": 79, + "column": 48 + } + }, + "17": { + "start": { + "line": 80, + "column": 0 + }, + "end": { + "line": 93, + "column": 1 + } + }, + "18": { + "start": { + "line": 81, + "column": 2 + }, + "end": { + "line": 81, + "column": 39 + } + }, + "19": { + "start": { + "line": 82, + "column": 2 + }, + "end": { + "line": 82, + "column": 39 + } + }, + "20": { + "start": { + "line": 83, + "column": 2 + }, + "end": { + "line": 92, + "column": 5 + } + }, + "21": { + "start": { + "line": 84, + "column": 4 + }, + "end": { + "line": 84, + "column": 116 + } + }, + "22": { + "start": { + "line": 85, + "column": 4 + }, + "end": { + "line": 91, + "column": 7 + } + }, + "23": { + "start": { + "line": 86, + "column": 6 + }, + "end": { + "line": 87, + "column": 15 + } + }, + "24": { + "start": { + "line": 87, + "column": 8 + }, + "end": { + "line": 87, + "column": 15 + } + }, + "25": { + "start": { + "line": 88, + "column": 32 + }, + "end": { + "line": 88, + "column": 115 + } + }, + "26": { + "start": { + "line": 89, + "column": 6 + }, + "end": { + "line": 90, + "column": 54 + } + }, + "27": { + "start": { + "line": 90, + "column": 8 + }, + "end": { + "line": 90, + "column": 54 + } + } + }, + "fnMap": { + "0": { + "name": "(anonymous_0)", + "decl": { + "start": { + "line": 11, + "column": 24 + }, + "end": { + "line": 11, + "column": 25 + } + }, + "loc": { + "start": { + "line": 11, + "column": 38 + }, + "end": { + "line": 13, + "column": 3 + } + }, + "line": 11 + }, + "1": { + "name": "(anonymous_1)", + "decl": { + "start": { + "line": 30, + "column": 36 + }, + "end": { + "line": 30, + "column": 37 + } + }, + "loc": { + "start": { + "line": 33, + "column": 6 + }, + "end": { + "line": 50, + "column": 1 + } + }, + "line": 33 + }, + "2": { + "name": "(anonymous_2)", + "decl": { + "start": { + "line": 83, + "column": 52 + }, + "end": { + "line": 83, + "column": 53 + } + }, + "loc": { + "start": { + "line": 83, + "column": 72 + }, + "end": { + "line": 92, + "column": 3 + } + }, + "line": 83 + }, + "3": { + "name": "(anonymous_3)", + "decl": { + "start": { + "line": 85, + "column": 27 + }, + "end": { + "line": 85, + "column": 28 + } + }, + "loc": { + "start": { + "line": 85, + "column": 44 + }, + "end": { + "line": 91, + "column": 5 + } + }, + "line": 85 + } + }, + "branchMap": { + "0": { + "loc": { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 5, + "column": 0 + }, + "end": { + "line": 15, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 5 + }, + "1": { + "loc": { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 6, + "column": 2 + }, + "end": { + "line": 8, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 6 + }, + "2": { + "loc": { + "start": { + "line": 34, + "column": 2 + }, + "end": { + "line": 44, + "column": 3 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 34, + "column": 2 + }, + "end": { + "line": 44, + "column": 3 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 34 + }, + "3": { + "loc": { + "start": { + "line": 80, + "column": 0 + }, + "end": { + "line": 93, + "column": 1 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 80, + "column": 0 + }, + "end": { + "line": 93, + "column": 1 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 80 + }, + "4": { + "loc": { + "start": { + "line": 86, + "column": 6 + }, + "end": { + "line": 87, + "column": 15 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 86, + "column": 6 + }, + "end": { + "line": 87, + "column": 15 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 86 + }, + "5": { + "loc": { + "start": { + "line": 89, + "column": 6 + }, + "end": { + "line": 90, + "column": 54 + } + }, + "type": "if", + "locations": [ + { + "start": { + "line": 89, + "column": 6 + }, + "end": { + "line": 90, + "column": 54 + } + }, + { + "start": {}, + "end": {} + } + ], + "line": 89 + } + }, + "s": { + "0": 2, + "1": 2, + "2": 0, + "3": 2, + "4": 2, + "5": 2, + "6": 2, + "7": 2, + "8": 2, + "9": 2, + "10": 4, + "11": 0, + "12": 4, + "13": 2, + "14": 2, + "15": 2, + "16": 2, + "17": 2, + "18": 2, + "19": 2, + "20": 2, + "21": 2, + "22": 2, + "23": 0, + "24": 0, + "25": 0, + "26": 0, + "27": 0 + }, + "f": { + "0": 2, + "1": 4, + "2": 2, + "3": 0 + }, + "b": { + "0": [ + 2, + 0 + ], + "1": [ + 0, + 2 + ], + "2": [ + 0, + 4 + ], + "3": [ + 2, + 0 + ], + "4": [ + 0, + 0 + ], + "5": [ + 0, + 0 + ] + }, + "inputSourceMap": { + "version": 3, + "mappings": "AAoB8C,SAGnC,UAHmC;AApB9C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA,SAASA,iBAAiBC,2BAA2B;AAErD,SAASC,kBAAkB;AAC3B,SAASC,cAAcC,0BAA0B;AACjD,SAASC,YAAYC,qBAAqB;AAC1C,SAASC,mBAAmB;AAE5B,OAAO;AACP,OAAO;AAEP,SAASC,mBAAmB;AAC5B,SAASC,iBAAiB;AAC1B,SAASC,iBAAiB;AAGnB,aAAM;AAAA,EAAEC;AAAAA,EAAOC;AAAU,IAAIJ,YAAY;AAEhD,MAAMK,8BAA+EA,CAAC;AAAA,EAAEC;AAAAA,EAAUC;AAAY,MAAM;AAChH,MAAIA,aAAa;AACb,WAAO,uBAAC,uBAAoB,UAAU,uBAAC,OAAE,qCAAH;AAAA;AAAA;AAAA;AAAA,WAAwB,GAAOD,YAA9D;AAAA;AAAA;AAAA;AAAA,WAAuE;AAAA,EAClF;AAEA,SAAO,mCAAGA,YAAH;AAAA;AAAA;AAAA;AAAA,SAAY;AACvB;AAAEE,KANIH;AAQN,MAAMI,OAAOb,mBACTc,SAASC,eAAe,MAAM,CAClC;AAEAF,KAAKG,OACD,uBAAC,cACG,iCAAC,+BAA4B,aAAaC,YAAYC,IAAIC,MACtD,iCAAC,iBAAc,OACX,iCAAC,eAAY,SAAS,MAAM,WACxB,iCAAC,aACG,iCAAC,eAAD;AAAA;AAAA;AAAA;AAAA,OAAU,KADd;AAAA;AAAA;AAAA;AAAA,OAEA,KAHJ;AAAA;AAAA;AAAA;AAAA,OAIA,KALJ;AAAA;AAAA;AAAA;AAAA,OAMA,KAPJ;AAAA;AAAA;AAAA;AAAA,OAQA,KATJ;AAAA;AAAA;AAAA;AAAA,OAUA,CACJ;AAAE,IAAAP;AAAAQ,aAAAR,IAAA", + "names": [ + "ErrorBoundary", + "SentryErrorBoundary", + "StrictMode", + "createRoot", + "createReactDOMRoot", + "Provider", + "StoreProvider", + "PersistGate", + "createStore", + "AppLayout", + "ThemedApp", + "store", + "persistor", + "MaybeUseSentryErrorBoundary", + "children", + "useBoundary", + "_c", + "root", + "document", + "getElementById", + "render", + "import", + "env", + "PROD", + "$RefreshReg$" + ], + "sources": [ + "/home/bartosz/projects/speeddial/src/index.tsx" + ], + "file": "/home/bartosz/projects/speeddial/src/index.tsx" + }, + "_coverageSchema": "1a1c01bbd47fc00a2c39e90264f33305004495a9", + "hash": "c168ceb7b6ff3ebfda3d2940c0d277a2155f7dde" + }, + "/home/bartosz/projects/speeddial/src/data/speeddial/selectors.test.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/speeddial/selectors.test.ts", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/data/speeddial/slice.test.ts": { + "path": "/home/bartosz/projects/speeddial/src/data/speeddial/slice.test.ts", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/__tests__/use-draft.test.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/__tests__/use-draft.test.ts", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/__tests__/use-fetch-metadata.test.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/__tests__/use-fetch-metadata.test.ts", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/__tests__/use-form-handlers.test.ts": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/__tests__/use-form-handlers.test.ts", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/__tests__/app.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/__tests__/app.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/app-footer/index.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/app-footer/index.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/search/index.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/search/index.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/settings/index.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/settings/index.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/edit-group-dialog.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/edit-group-dialog.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/edit-link-dialog.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/edit-link-dialog.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/group-contents.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/group-contents.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/index.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/index.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/speeddial-create-tile.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/speeddial-create-tile.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/speeddial-manage-tile.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/speeddial-manage-tile.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/tile-group.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/tile-group.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/tile-link.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/__tests__/tile-link.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/components/__tests__/add-tile.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/components/__tests__/add-tile.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/components/__tests__/tile.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/components/__tests__/tile.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + }, + "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/__tests__/use-context-menu.test.tsx": { + "path": "/home/bartosz/projects/speeddial/src/components/speeddial/hooks/__tests__/use-context-menu.test.tsx", + "statementMap": {}, + "fnMap": {}, + "branchMap": {}, + "s": {}, + "f": {}, + "b": {} + } +} diff --git a/.nycrc.json b/.nycrc.json new file mode 100644 index 0000000..126457e --- /dev/null +++ b/.nycrc.json @@ -0,0 +1,15 @@ +{ + "all": true, + "extends": "@istanbuljs/nyc-config-typescript", + "check-coverage": true, + "include": [ + "src/**/*.ts", + "src/**/*.tsx" + ], + "exclude": [ + "cypress/**/*.*", + "**/*.d.ts", + "**/*.cy.tsx", + "**/*.cy.ts" + ] +} diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..d8ba3ef --- /dev/null +++ b/TODO.md @@ -0,0 +1,7 @@ +# Remove & publish eslint config +# Tests + - configure e2e/cypress component/jest RTL + - have at least one test per type + - have commands for all types + - have coverages configured for all types + - have codecov configured to recognise all coverage types diff --git a/cypress.config.ts b/cypress.config.ts index e8d9219..cb60ecc 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -1,18 +1,38 @@ +import coverage from '@cypress/code-coverage/task'; import { defineConfig } from 'cypress'; import vitePreprocessor from 'cypress-vite'; export default defineConfig({ + env: { codeCoverage: { exclude: 'cypress/**/*.*' } }, e2e: { baseUrl: 'http://localhost:5137/', video: false, screenshotOnRunFailure: false, - setupNodeEvents(on) { - on('file:preprocessor', vitePreprocessor({ - configFile: './vite.config.ts', - mode: 'development' - })); + setupNodeEvents(on, config) { + coverage(on, config); + on( + 'file:preprocessor', + vitePreprocessor({ + configFile: './vite.config.ts', + mode: 'development' + }) + ); + + return config; } } + + // component: { + // devServer: { + // framework: 'react', + // bundler: 'vite' + // }, + // setupNodeEvents(on, config) { + // coverage(on, config); + + // return config; + // } + // } }); diff --git a/cypress/e2e/speeddial/create-link.cy.ts b/cypress/e2e/speeddial/create-link.cy.ts index f8fd2b4..a17afd6 100644 --- a/cypress/e2e/speeddial/create-link.cy.ts +++ b/cypress/e2e/speeddial/create-link.cy.ts @@ -1,11 +1,12 @@ /* eslint no-warning-comments: 1 */ describe('create link', () => { beforeEach(() => { - cy.clearAllLocalStorage(); - cy.visit('/', { timeout: 10_000 }); + cy.loadApp(); }); - it('hover', () => { + it('should create link', () => { + cy.getAllRootTiles().should('have.length', 0); + cy.findByLabelText('Add new link').should('not.exist'); cy.findByLabelText('Add new group').should('not.exist'); @@ -13,12 +14,6 @@ describe('create link', () => { cy.findByLabelText('Add new link').should('exist'); cy.findByLabelText('Add new group').should('exist'); - }); - - it('open dialog', () => { - cy.getAllVisibleTiles().should('have.length', 0); - - cy.findByLabelText('Add new link or group').trigger('mouseover'); cy.findByLabelText('Add new link').click(); @@ -27,14 +22,9 @@ describe('create link', () => { cy.findByText('Next').click(); - let title: string | undefined; - cy.findByLabelText(/^Name/, { timeout: 10000 }).should('be.visible') .invoke('val') - .should('have.length.above', 0) - .then(v => { - title = v?.toString(); - }); + .should('have.length.above', 0); cy.findByLabelText(/^Image URL/, { timeout: 10000 }).should('be.visible') .invoke('val') .should('have.length.above', 0); @@ -46,7 +36,7 @@ describe('create link', () => { cy.findByText('Save').click(); - cy.getTileByTitle(title as string).should('be.visible'); - cy.getAllVisibleTiles().should('have.length', 1); + cy.getTileByTitle('YouTube').should('be.visible'); + cy.getAllRootTiles().should('have.length', 1); }); }); diff --git a/cypress/e2e/speeddial/edit-link.cy.ts b/cypress/e2e/speeddial/edit-link.cy.ts new file mode 100644 index 0000000..6604969 --- /dev/null +++ b/cypress/e2e/speeddial/edit-link.cy.ts @@ -0,0 +1,37 @@ +/* eslint no-warning-comments: 1 */ +describe('create link', () => { + beforeEach(() => { + cy.loadApp(); + }); + + it('should edit link', () => { + cy.getTileByTitle('YouTube').should('be.visible'); + + cy.getTileByTitle('YouTube').rightclick(); + cy.findByLabelText('Edit').click(); + + // TODO: use own test server + cy.findByLabelText(/^URL/).type('https://www.youtube.com/'); + + cy.findByText('Next').click(); + + cy.findByLabelText(/^Name/, { timeout: 10000 }).should('be.visible') + .invoke('val') + .should('have.length.above', 0); + cy.findByLabelText(/^Image URL/, { timeout: 10000 }).should('be.visible') + .invoke('val') + .should('have.length.above', 0); + + cy.findByLabelText('Background color').invoke('text') + .should('match', /^#[0-9a-z]{6}$/i); + cy.findByLabelText('Theme color').invoke('text') + .should('match', /^#[0-9a-z]{6}$/i); + + cy.findByDisplayValue('Youtube').type('{end}.new'); + + cy.findByText('Save').click(); + + cy.getTileByTitle('YouTube.new').should('be.visible'); + cy.getAllRootTiles().should('have.length', 1); + }); +}); diff --git a/cypress/e2e/speeddial/edit-link.cy.ts.todo b/cypress/e2e/speeddial/edit-link.cy.ts.todo deleted file mode 100644 index e69de29..0000000 diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts index f78babc..ac7a8d8 100644 --- a/cypress/support/commands.ts +++ b/cypress/support/commands.ts @@ -6,23 +6,25 @@ import '@testing-library/cypress/add-commands'; Cypress.Commands.add('loadApp', () => { cy.clearAllLocalStorage(); - cy.visit('/', { timeout: 10_000 }); + cy.visit('/', { timeout: 5_000 }); }); Cypress.Commands.add('getTileByTitle', (title: string) => cy.findByText(title, { timeout: 500 }).parents('a')); -Cypress.Commands.add('getAllVisibleTiles', () => { - try { - return cy.findByRole('presentation').get('[data-group-content]'); - } catch { - return cy.get('#root [data-group-content]'); - } -}); +Cypress.Commands.add( + 'getAllDialogTiles', + () => cy.findByRole('presentation').get('[data-group-content] > [role="button"]') +); +Cypress.Commands.add( + 'getAllRootTiles', + () => cy.get('#root [data-group-content] > [role="button"]') +); declare global { namespace Cypress { interface Chainable { - getAllVisibleTiles: () => Cypress.Chainable>; + getAllDialogTiles: () => Cypress.Chainable>; + getAllRootTiles: () => Cypress.Chainable>; getTileByTitle: (title: string) => Cypress.Chainable>; loadApp: () => Chainable; } diff --git a/cypress/support/e2e.ts b/cypress/support/e2e.ts index e66558e..11acccd 100644 --- a/cypress/support/e2e.ts +++ b/cypress/support/e2e.ts @@ -1,17 +1,2 @@ -// *********************************************************** -// This example support/e2e.ts is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: import './commands'; +import '@cypress/code-coverage/support'; diff --git a/eslint.config.js b/eslint.config.js index 1f43f79..639a49f 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -23,7 +23,10 @@ export default defineFlatConfig([ } }, { - files: ['**/*.cy.{ts,tsx}'], - rules: { 'promise/prefer-await-to-then': 'off' } + files: ['cypress/**/*.cy.{ts,tsx}', 'cypress/**/commands.ts'], + rules: { + 'promise/prefer-await-to-then': 'off', + 'newline-per-chained-call': 'off' + } } ]); diff --git a/package.json b/package.json index ebde72c..59955fb 100644 --- a/package.json +++ b/package.json @@ -29,14 +29,18 @@ "tslib": "^2.5.3" }, "devDependencies": { - "@dtrw/eslint-config": "^2.0.2", + "@cypress/code-coverage": "^3.10.7", + "@cypress/react18": "^2.0.0", + "@dtrw/eslint-config": "^2.1.1", "@edge-runtime/vm": "^3.0.2", "@emotion/jest": "^11.11.0", + "@istanbuljs/nyc-config-typescript": "^1.0.2", "@sentry/vite-plugin": "^2.2.1", "@testing-library/cypress": "^9.0.0", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^14.0.0", "@testing-library/user-event": "^14.4.3", + "@types/cypress__code-coverage": "^3.10.0", "@types/express": "^4.17.17", "@types/node": "^18.16.16", "@types/react": "^18.2.8", @@ -60,6 +64,7 @@ "supertest": "^6.3.3", "typescript": "^5.1.3", "vite": "^4.3.9", + "vite-plugin-istanbul": "^4.1.0", "vite-plugin-pwa": "^0.16.3", "vite-tsconfig-paths": "^4.2.0", "vitest": "^0.32.0" @@ -73,8 +78,7 @@ "lint": "eslint src", "preview": "vite preview", "start": "vite", - "test": "vitest", - "test:e2e": "start-server-and-test 'yarn d --listen 5137' 5137 'cypress run'" + "test": "vitest" }, "type": "module" } diff --git a/src/__tests__/__snapshots__/app.test.tsx.snap b/src/__tests__/__snapshots__/app.test.tsx.snap index 5c89526..80d2efc 100644 --- a/src/__tests__/__snapshots__/app.test.tsx.snap +++ b/src/__tests__/__snapshots__/app.test.tsx.snap @@ -169,6 +169,10 @@ exports[`app > should match snapshot 1`] = ` -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } .emotion-7>* { @@ -331,6 +335,7 @@ exports[`app > should match snapshot 1`] = ` >
should match snapshot 1`] = ` class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways emotion-13" href="https://github.com/burtek" referrerpolicy="no-referrer" - rel="noopener noreferrer nofollow" + rel="noopener noreferrer" target="_blank" > burtek @@ -397,7 +402,7 @@ exports[`app > should match snapshot 1`] = ` class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways emotion-13" href="https://github.com/burtek/speeddial" referrerpolicy="no-referrer" - rel="noopener noreferrer nofollow" + rel="noopener noreferrer" target="_blank" > footer.openSource diff --git a/src/components/app-footer/__snapshots__/index.test.tsx.snap b/src/components/app-footer/__snapshots__/index.test.tsx.snap index 7bf46e8..0724897 100644 --- a/src/components/app-footer/__snapshots__/index.test.tsx.snap +++ b/src/components/app-footer/__snapshots__/index.test.tsx.snap @@ -44,7 +44,7 @@ exports[`app-footer > should match snapshot 1`] = ` class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways emotion-2" href="https://github.com/burtek" referrerpolicy="no-referrer" - rel="noopener noreferrer nofollow" + rel="noopener noreferrer" target="_blank" > burtek @@ -54,7 +54,7 @@ exports[`app-footer > should match snapshot 1`] = ` class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways emotion-2" href="https://github.com/burtek/speeddial" referrerpolicy="no-referrer" - rel="noopener noreferrer nofollow" + rel="noopener noreferrer" target="_blank" > footer.openSource diff --git a/src/components/settings/__snapshots__/index.test.tsx.snap b/src/components/settings/__snapshots__/index.test.tsx.snap index ee09c44..fb9fdd3 100644 --- a/src/components/settings/__snapshots__/index.test.tsx.snap +++ b/src/components/settings/__snapshots__/index.test.tsx.snap @@ -1073,57 +1073,6 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- `; exports[`settings > settings > theme mode > should change theme mode to auto 1`] = ` -@keyframes animation-0 { - 0% { - -webkit-transform: scale(0); - -moz-transform: scale(0); - -ms-transform: scale(0); - transform: scale(0); - opacity: 0.1; - } - - 100% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - opacity: 0.3; - } -} - -@keyframes animation-1 { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -@keyframes animation-2 { - 0% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } - - 50% { - -webkit-transform: scale(0.92); - -moz-transform: scale(0.92); - -ms-transform: scale(0.92); - transform: scale(0.92); - } - - 100% { - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - } -} - .emotion-0 { display: -webkit-inline-box; display: -webkit-inline-flex; @@ -1231,65 +1180,6 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] } .emotion-3 { - opacity: 0; - position: absolute; -} - -.emotion-3.MuiTouchRipple-rippleVisible { - opacity: 0.3; - -webkit-transform: scale(1); - -moz-transform: scale(1); - -ms-transform: scale(1); - transform: scale(1); - -webkit-animation-name: animation-0; - animation-name: animation-0; - -webkit-animation-duration: 550ms; - animation-duration: 550ms; - -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -} - -.emotion-3.MuiTouchRipple-ripplePulsate { - -webkit-animation-duration: 200ms; - animation-duration: 200ms; -} - -.emotion-3 .MuiTouchRipple-child { - opacity: 1; - display: block; - width: 100%; - height: 100%; - border-radius: 50%; - background-color: currentColor; -} - -.emotion-3 .MuiTouchRipple-childLeaving { - opacity: 0; - -webkit-animation-name: animation-1; - animation-name: animation-1; - -webkit-animation-duration: 550ms; - animation-duration: 550ms; - -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -} - -.emotion-3 .MuiTouchRipple-childPulsate { - position: absolute; - left: 0px; - top: 0; - -webkit-animation-name: animation-2; - animation-name: animation-2; - -webkit-animation-duration: 2500ms; - animation-duration: 2500ms; - -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - -webkit-animation-delay: 200ms; - animation-delay: 200ms; -} - -.emotion-4 { position: fixed; z-index: 1300; right: 0; @@ -1299,12 +1189,12 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] } @media print { - .emotion-4 { + .emotion-3 { position: absolute!important; } } -.emotion-5 { +.emotion-4 { position: fixed; display: -webkit-box; display: -webkit-flex; @@ -1327,7 +1217,7 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] z-index: -1; } -.emotion-6 { +.emotion-5 { height: 100%; outline: 0; display: -webkit-box; @@ -1345,12 +1235,12 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] } @media print { - .emotion-6 { + .emotion-5 { height: auto; } } -.emotion-7 { +.emotion-6 { background-color: #fff; color: rgba(0, 0, 0, 0.87); -webkit-transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; @@ -1373,19 +1263,19 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] } @media print { - .emotion-7 { + .emotion-6 { overflow-y: visible; box-shadow: none; } } @media (max-width:963.95px) { - .emotion-7.MuiDialog-paperScrollBody { + .emotion-6.MuiDialog-paperScrollBody { max-width: calc(100% - 64px); } } -.emotion-8 { +.emotion-7 { margin: 0; font-family: "Roboto","Helvetica","Arial",sans-serif; font-weight: 500; @@ -1398,7 +1288,7 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] flex: 0 0 auto; } -.emotion-9 { +.emotion-8 { margin: 0; -webkit-flex-shrink: 0; -ms-flex-negative: 0; @@ -1409,7 +1299,7 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] border-bottom-width: thin; } -.emotion-10 { +.emotion-9 { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; @@ -1418,11 +1308,11 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] padding: 20px 24px; } -.MuiDialogTitle-root+.emotion-10 { +.MuiDialogTitle-root+.emotion-9 { padding-top: 0; } -.emotion-11 { +.emotion-10 { display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; @@ -1439,7 +1329,7 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] width: 100%; } -.emotion-12 { +.emotion-11 { color: rgba(0, 0, 0, 0.6); font-family: "Roboto","Helvetica","Arial",sans-serif; font-weight: 400; @@ -1471,19 +1361,19 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] user-select: none; } -.emotion-12.Mui-focused { +.emotion-11.Mui-focused { color: #1976d2; } -.emotion-12.Mui-disabled { +.emotion-11.Mui-disabled { color: rgba(0, 0, 0, 0.38); } -.emotion-12.Mui-error { +.emotion-11.Mui-error { color: #d32f2f; } -.emotion-13 { +.emotion-12 { font-family: "Roboto","Helvetica","Arial",sans-serif; font-weight: 400; font-size: 1rem; @@ -1505,35 +1395,35 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] border-radius: 4px; } -.emotion-13.Mui-disabled { +.emotion-12.Mui-disabled { color: rgba(0, 0, 0, 0.38); cursor: default; } -.emotion-13:hover .MuiOutlinedInput-notchedOutline { +.emotion-12:hover .MuiOutlinedInput-notchedOutline { border-color: rgba(0, 0, 0, 0.87); } @media (hover: none) { - .emotion-13:hover .MuiOutlinedInput-notchedOutline { + .emotion-12:hover .MuiOutlinedInput-notchedOutline { border-color: rgba(0, 0, 0, 0.23); } } -.emotion-13.Mui-focused .MuiOutlinedInput-notchedOutline { +.emotion-12.Mui-focused .MuiOutlinedInput-notchedOutline { border-color: #1976d2; border-width: 2px; } -.emotion-13.Mui-error .MuiOutlinedInput-notchedOutline { +.emotion-12.Mui-error .MuiOutlinedInput-notchedOutline { border-color: #d32f2f; } -.emotion-13.Mui-disabled .MuiOutlinedInput-notchedOutline { +.emotion-12.Mui-disabled .MuiOutlinedInput-notchedOutline { border-color: rgba(0, 0, 0, 0.26); } -.emotion-14 { +.emotion-13 { -moz-appearance: none; -webkit-appearance: none; -webkit-user-select: none; @@ -1562,32 +1452,32 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] padding: 16.5px 14px; } -.emotion-14:focus { +.emotion-13:focus { border-radius: 4px; } -.emotion-14::-ms-expand { +.emotion-13::-ms-expand { display: none; } -.emotion-14.Mui-disabled { +.emotion-13.Mui-disabled { cursor: default; } -.emotion-14[multiple] { +.emotion-13[multiple] { height: auto; } -.emotion-14:not([multiple]) option, -.emotion-14:not([multiple]) optgroup { +.emotion-13:not([multiple]) option, +.emotion-13:not([multiple]) optgroup { background-color: #fff; } -.emotion-14.emotion-14.emotion-14 { +.emotion-13.emotion-13.emotion-13 { padding-right: 32px; } -.emotion-14.MuiSelect-select { +.emotion-13.MuiSelect-select { height: auto; min-height: 1.4375em; text-overflow: ellipsis; @@ -1595,95 +1485,95 @@ exports[`settings > settings > theme mode > should change theme mode to auto 1`] overflow: hidden; } -.emotion-14::-webkit-input-placeholder { +.emotion-13::-webkit-input-placeholder { color: currentColor; opacity: 0.42; -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; } -.emotion-14::-moz-placeholder { +.emotion-13::-moz-placeholder { color: currentColor; opacity: 0.42; -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; } -.emotion-14:-ms-input-placeholder { +.emotion-13:-ms-input-placeholder { color: currentColor; opacity: 0.42; -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; } -.emotion-14::-ms-input-placeholder { +.emotion-13::-ms-input-placeholder { color: currentColor; opacity: 0.42; -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; } -.emotion-14:focus { +.emotion-13:focus { outline: 0; } -.emotion-14:invalid { +.emotion-13:invalid { box-shadow: none; } -.emotion-14::-webkit-search-decoration { +.emotion-13::-webkit-search-decoration { -webkit-appearance: none; } -label[data-shrink=false]+.MuiInputBase-formControl .emotion-14::-webkit-input-placeholder { +label[data-shrink=false]+.MuiInputBase-formControl .emotion-13::-webkit-input-placeholder { opacity: 0!important; } -label[data-shrink=false]+.MuiInputBase-formControl .emotion-14::-moz-placeholder { +label[data-shrink=false]+.MuiInputBase-formControl .emotion-13::-moz-placeholder { opacity: 0!important; } -label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:-ms-input-placeholder { +label[data-shrink=false]+.MuiInputBase-formControl .emotion-13:-ms-input-placeholder { opacity: 0!important; } -label[data-shrink=false]+.MuiInputBase-formControl .emotion-14::-ms-input-placeholder { +label[data-shrink=false]+.MuiInputBase-formControl .emotion-13::-ms-input-placeholder { opacity: 0!important; } -label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-webkit-input-placeholder { +label[data-shrink=false]+.MuiInputBase-formControl .emotion-13:focus::-webkit-input-placeholder { opacity: 0.42; } -label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-moz-placeholder { +label[data-shrink=false]+.MuiInputBase-formControl .emotion-13:focus::-moz-placeholder { opacity: 0.42; } -label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus:-ms-input-placeholder { +label[data-shrink=false]+.MuiInputBase-formControl .emotion-13:focus:-ms-input-placeholder { opacity: 0.42; } -label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input-placeholder { +label[data-shrink=false]+.MuiInputBase-formControl .emotion-13:focus::-ms-input-placeholder { opacity: 0.42; } -.emotion-14.Mui-disabled { +.emotion-13.Mui-disabled { opacity: 1; -webkit-text-fill-color: rgba(0, 0, 0, 0.38); } -.emotion-14:-webkit-autofill { +.emotion-13:-webkit-autofill { -webkit-animation-duration: 5000s; animation-duration: 5000s; -webkit-animation-name: mui-auto-fill; animation-name: mui-auto-fill; } -.emotion-14:-webkit-autofill { +.emotion-13:-webkit-autofill { border-radius: inherit; } -.emotion-15 { +.emotion-14 { bottom: 0; left: 0; position: absolute; @@ -1693,7 +1583,7 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- box-sizing: border-box; } -.emotion-16 { +.emotion-15 { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; @@ -1715,11 +1605,11 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- color: rgba(0, 0, 0, 0.54); } -.emotion-16.Mui-disabled { +.emotion-15.Mui-disabled { color: rgba(0, 0, 0, 0.26); } -.emotion-17 { +.emotion-16 { text-align: left; position: absolute; bottom: 0; @@ -1737,7 +1627,7 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- border-color: rgba(0, 0, 0, 0.23); } -.emotion-18 { +.emotion-17 { float: unset; width: auto; overflow: hidden; @@ -1752,7 +1642,7 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- white-space: nowrap; } -.emotion-18>span { +.emotion-17>span { padding-left: 5px; padding-right: 5px; display: inline-block; @@ -1760,7 +1650,7 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- visibility: visible; } -.emotion-21 { +.emotion-20 { display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; @@ -1807,35 +1697,35 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- color: #1976d2; } -.emotion-21::-moz-focus-inner { +.emotion-20::-moz-focus-inner { border-style: none; } -.emotion-21.Mui-disabled { +.emotion-20.Mui-disabled { pointer-events: none; cursor: default; } @media print { - .emotion-21 { + .emotion-20 { -webkit-print-color-adjust: exact; color-adjust: exact; } } -.emotion-21:hover { +.emotion-20:hover { -webkit-text-decoration: none; text-decoration: none; background-color: rgba(25, 118, 210, 0.04); } @media (hover: none) { - .emotion-21:hover { + .emotion-20:hover { background-color: transparent; } } -.emotion-21.Mui-disabled { +.emotion-20.Mui-disabled { color: rgba(0, 0, 0, 0.26); } @@ -1865,25 +1755,16 @@ label[data-shrink=false]+.MuiInputBase-formControl .emotion-14:focus::-ms-input- - - - - + />