mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-09 20:37:47 +00:00
fix: release
RELEASE_ALL
This commit is contained in:
@@ -27,6 +27,6 @@
|
||||
"build:types": "tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tanstack/store": "0.0.1-beta.88"
|
||||
"@tanstack/store": "0.0.1-beta.89"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,6 +81,7 @@ export class FieldApi<TData, TFormData> {
|
||||
name!: DeepKeys<TFormData>
|
||||
store!: Store<FieldState<TData>>
|
||||
state!: FieldState<TData>
|
||||
#prevState!: FieldState<TData>
|
||||
options: FieldOptions<TData, TFormData> = {} as any
|
||||
|
||||
constructor(opts: FieldApiOptions<TData, TFormData>) {
|
||||
@@ -105,24 +106,25 @@ export class FieldApi<TData, TFormData> {
|
||||
},
|
||||
},
|
||||
{
|
||||
onUpdate: (next) => {
|
||||
next.meta.touchedError = next.meta.isTouched
|
||||
? next.meta.error
|
||||
onUpdate: () => {
|
||||
const state = this.store.state
|
||||
|
||||
state.meta.touchedError = state.meta.isTouched
|
||||
? state.meta.error
|
||||
: undefined
|
||||
|
||||
const prev = this.state
|
||||
this.state = next
|
||||
|
||||
if (next.value !== prev.value) {
|
||||
this.validate('change', next.value)
|
||||
if (state.value !== this.#prevState.value) {
|
||||
this.validate('change', state.value)
|
||||
}
|
||||
|
||||
return this.state
|
||||
this.#prevState = state
|
||||
this.state = state
|
||||
},
|
||||
},
|
||||
)
|
||||
|
||||
this.state = this.store.state
|
||||
this.#prevState = this.state
|
||||
this.update(opts)
|
||||
}
|
||||
|
||||
@@ -130,7 +132,7 @@ export class FieldApi<TData, TFormData> {
|
||||
const info = this.getInfo()
|
||||
info.instances[this.uid] = this
|
||||
|
||||
const unsubscribe = this.form.store.subscribe((next) => {
|
||||
const unsubscribe = this.form.store.subscribe(() => {
|
||||
this.store.batch(() => {
|
||||
const nextValue = this.getValue()
|
||||
const nextMeta = this.getMeta()
|
||||
|
||||
@@ -116,9 +116,10 @@ export class FormApi<TFormData> {
|
||||
isFormValid: true,
|
||||
}),
|
||||
{
|
||||
onUpdate: (next) => {
|
||||
onUpdate: () => {
|
||||
let { state } = this.store
|
||||
// Computed state
|
||||
const fieldMetaValues = Object.values(next.fieldMeta) as (
|
||||
const fieldMetaValues = Object.values(state.fieldMeta) as (
|
||||
| FieldMeta
|
||||
| undefined
|
||||
)[]
|
||||
@@ -131,15 +132,15 @@ export class FormApi<TFormData> {
|
||||
|
||||
const isTouched = fieldMetaValues.some((field) => field?.isTouched)
|
||||
|
||||
const isValidating = isFieldsValidating || next.isFormValidating
|
||||
const isFormValid = !next.formError
|
||||
const isValidating = isFieldsValidating || state.isFormValidating
|
||||
const isFormValid = !state.formError
|
||||
const isValid = isFieldsValid && isFormValid
|
||||
const canSubmit =
|
||||
(next.submissionAttempts === 0 && !isTouched) ||
|
||||
(!isValidating && !next.isSubmitting && isValid)
|
||||
(state.submissionAttempts === 0 && !isTouched) ||
|
||||
(!isValidating && !state.isSubmitting && isValid)
|
||||
|
||||
next = {
|
||||
...next,
|
||||
state = {
|
||||
...state,
|
||||
isFieldsValidating,
|
||||
isFieldsValid,
|
||||
isFormValid,
|
||||
@@ -148,10 +149,8 @@ export class FormApi<TFormData> {
|
||||
isTouched,
|
||||
}
|
||||
|
||||
// Create a shortcut for the state
|
||||
// Write it back to the store
|
||||
this.store.state = next
|
||||
this.state = next
|
||||
this.store.state = state
|
||||
this.state = state
|
||||
},
|
||||
},
|
||||
)
|
||||
@@ -176,10 +175,7 @@ export class FormApi<TFormData> {
|
||||
}
|
||||
|
||||
if (options.defaultValues !== this.options.defaultValues) {
|
||||
this.store.setState((prev) => ({
|
||||
...prev,
|
||||
values: options.defaultValues as TFormData,
|
||||
}))
|
||||
this.store.setState(() => getDefaultFormState(options.defaultValues!))
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -57,7 +57,7 @@ export function useForm<TData>(opts?: FormOptions<TData>): FormApi<TData> {
|
||||
selector,
|
||||
) => {
|
||||
// eslint-disable-next-line react-hooks/rules-of-hooks
|
||||
return useStore(api.store, selector as any) as any
|
||||
return useStore(api.store, selector) as any
|
||||
}
|
||||
api.Subscribe = (
|
||||
// @ts-ignore
|
||||
@@ -66,7 +66,7 @@ export function useForm<TData>(opts?: FormOptions<TData>): FormApi<TData> {
|
||||
return functionalUpdate(
|
||||
props.children,
|
||||
// eslint-disable-next-line react-hooks/rules-of-hooks
|
||||
useStore(api.store, props.selector as any),
|
||||
useStore(api.store, props.selector),
|
||||
) as any
|
||||
}
|
||||
|
||||
|
||||
279
pnpm-lock.yaml
generated
279
pnpm-lock.yaml
generated
@@ -184,7 +184,7 @@ importers:
|
||||
version: 2.7.1
|
||||
prettier-plugin-svelte:
|
||||
specifier: ^2.9.0
|
||||
version: 2.9.0(prettier@2.7.1)(svelte@3.59.0)
|
||||
version: 2.9.0(prettier@2.7.1)(svelte@3.59.1)
|
||||
react:
|
||||
specifier: ^18.2.0
|
||||
version: 18.2.0
|
||||
@@ -268,8 +268,8 @@ importers:
|
||||
packages/form-core:
|
||||
dependencies:
|
||||
'@tanstack/store':
|
||||
specifier: 0.0.1-beta.88
|
||||
version: 0.0.1-beta.88
|
||||
specifier: 0.0.1-beta.89
|
||||
version: 0.0.1-beta.89
|
||||
|
||||
packages/react-form:
|
||||
dependencies:
|
||||
@@ -320,8 +320,7 @@ packages:
|
||||
engines: {node: '>=6.0.0'}
|
||||
dependencies:
|
||||
'@jridgewell/gen-mapping': 0.3.3
|
||||
'@jridgewell/trace-mapping': 0.3.18
|
||||
dev: false
|
||||
'@jridgewell/trace-mapping': 0.3.14
|
||||
|
||||
/@babel/code-frame@7.18.6:
|
||||
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
|
||||
@@ -339,6 +338,7 @@ packages:
|
||||
/@babel/compat-data@7.19.1:
|
||||
resolution: {integrity: sha512-72a9ghR0gnESIa7jBN53U32FOVCEoztyIlKaNoU05zRhEecduGK9L9c3ww7Mp06JiR+0ls0GBPFJQwwtjn9ksg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dev: true
|
||||
|
||||
/@babel/compat-data@7.21.7:
|
||||
resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==}
|
||||
@@ -388,7 +388,6 @@ packages:
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@babel/eslint-parser@7.21.3(@babel/core@7.19.1)(eslint@8.34.0):
|
||||
resolution: {integrity: sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==}
|
||||
@@ -434,14 +433,6 @@ packages:
|
||||
dependencies:
|
||||
'@babel/helper-explode-assignable-expression': 7.18.6
|
||||
'@babel/types': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/helper-builder-binary-assignment-operator-visitor@7.21.5:
|
||||
resolution: {integrity: sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.21.5
|
||||
dev: false
|
||||
|
||||
/@babel/helper-compilation-targets@7.19.1(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-LlLkkqhCMyz2lkQPvJNdIYU7O5YjWRgC2R4omjCTpZd8u8KMQzZvX4qce+/BluN1rcQiV7BoGUpmQ0LeHerbhg==}
|
||||
@@ -482,7 +473,6 @@ packages:
|
||||
browserslist: 4.21.5
|
||||
lru-cache: 5.1.1
|
||||
semver: 6.3.0
|
||||
dev: false
|
||||
|
||||
/@babel/helper-create-class-features-plugin@7.18.6(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==}
|
||||
@@ -514,7 +504,7 @@ packages:
|
||||
'@babel/helper-function-name': 7.21.0
|
||||
'@babel/helper-member-expression-to-functions': 7.21.0
|
||||
'@babel/helper-optimise-call-expression': 7.18.6
|
||||
'@babel/helper-replace-supers': 7.20.7
|
||||
'@babel/helper-replace-supers': 7.21.5
|
||||
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
|
||||
'@babel/helper-split-export-declaration': 7.18.6
|
||||
transitivePeerDependencies:
|
||||
@@ -588,7 +578,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/helper-compilation-targets': 7.21.5(@babel/core@7.19.1)
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
debug: 4.3.4
|
||||
lodash.debounce: 4.0.8
|
||||
resolve: 1.22.2
|
||||
@@ -604,7 +594,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-compilation-targets': 7.21.5(@babel/core@7.21.8)
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
debug: 4.3.4
|
||||
lodash.debounce: 4.0.8
|
||||
resolve: 1.22.2
|
||||
@@ -626,7 +616,6 @@ packages:
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@babel/helper-function-name@7.19.0:
|
||||
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
|
||||
@@ -667,13 +656,12 @@ packages:
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.21.5
|
||||
dev: false
|
||||
|
||||
/@babel/helper-module-imports@7.16.0:
|
||||
resolution: {integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.19.0
|
||||
'@babel/types': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@babel/helper-module-imports@7.18.6:
|
||||
@@ -719,7 +707,6 @@ packages:
|
||||
'@babel/types': 7.21.5
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@babel/helper-optimise-call-expression@7.18.6:
|
||||
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
|
||||
@@ -734,6 +721,7 @@ packages:
|
||||
/@babel/helper-plugin-utils@7.20.2:
|
||||
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dev: true
|
||||
|
||||
/@babel/helper-plugin-utils@7.21.5:
|
||||
resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==}
|
||||
@@ -820,7 +808,6 @@ packages:
|
||||
'@babel/types': 7.21.5
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@babel/helper-simple-access@7.18.6:
|
||||
resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
|
||||
@@ -834,7 +821,6 @@ packages:
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/types': 7.21.5
|
||||
dev: false
|
||||
|
||||
/@babel/helper-skip-transparent-expression-wrappers@7.18.6:
|
||||
resolution: {integrity: sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==}
|
||||
@@ -924,7 +910,6 @@ packages:
|
||||
'@babel/types': 7.21.5
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@babel/highlight@7.18.6:
|
||||
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
|
||||
@@ -1252,6 +1237,15 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
|
||||
peerDependencies:
|
||||
@@ -1261,6 +1255,15 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
|
||||
peerDependencies:
|
||||
@@ -1277,7 +1280,6 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: false
|
||||
|
||||
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
|
||||
@@ -1296,7 +1298,7 @@ packages:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.19.1):
|
||||
@@ -1336,16 +1338,6 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-flow@7.21.4(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@@ -1385,6 +1377,15 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
|
||||
peerDependencies:
|
||||
@@ -1394,6 +1395,15 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@@ -1433,6 +1443,15 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
|
||||
peerDependencies:
|
||||
@@ -1449,7 +1468,6 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: false
|
||||
|
||||
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
|
||||
@@ -1460,6 +1478,15 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
|
||||
peerDependencies:
|
||||
@@ -1476,7 +1503,6 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: false
|
||||
|
||||
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
|
||||
@@ -1494,7 +1520,6 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: false
|
||||
|
||||
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
|
||||
@@ -1512,7 +1537,6 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: false
|
||||
|
||||
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
|
||||
@@ -1534,6 +1558,16 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.19.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.19.1):
|
||||
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@@ -1544,6 +1578,16 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-syntax-typescript@7.21.4(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@@ -1761,7 +1805,7 @@ packages:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-builder-binary-assignment-operator-visitor': 7.21.5
|
||||
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.6
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
dev: false
|
||||
|
||||
@@ -1773,7 +1817,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.19.1)
|
||||
'@babel/plugin-syntax-flow': 7.21.4(@babel/core@7.19.1)
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-flow-strip-types@7.21.0(@babel/core@7.21.8):
|
||||
@@ -2203,7 +2247,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/helper-module-imports': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.19.1)
|
||||
babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.19.1)
|
||||
babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.19.1)
|
||||
@@ -2220,7 +2264,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-module-imports': 7.21.4
|
||||
'@babel/helper-plugin-utils': 7.20.2
|
||||
'@babel/helper-plugin-utils': 7.21.5
|
||||
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.8)
|
||||
babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.8)
|
||||
babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.8)
|
||||
@@ -2873,7 +2917,7 @@ packages:
|
||||
collect-v8-coverage: 1.0.1
|
||||
exit: 0.1.2
|
||||
glob: 7.2.3
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
istanbul-lib-coverage: 3.2.0
|
||||
istanbul-lib-instrument: 5.2.1
|
||||
istanbul-lib-report: 3.0.0
|
||||
@@ -2897,7 +2941,7 @@ packages:
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
dependencies:
|
||||
callsites: 3.1.0
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
source-map: 0.6.1
|
||||
dev: true
|
||||
|
||||
@@ -2916,7 +2960,7 @@ packages:
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
dependencies:
|
||||
'@jest/test-result': 27.5.1
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
jest-haste-map: 27.5.1
|
||||
jest-runtime: 27.5.1
|
||||
transitivePeerDependencies:
|
||||
@@ -2952,7 +2996,7 @@ packages:
|
||||
dependencies:
|
||||
'@types/istanbul-lib-coverage': 2.0.4
|
||||
'@types/istanbul-reports': 3.0.1
|
||||
'@types/node': 20.1.0
|
||||
'@types/node': 17.0.45
|
||||
'@types/yargs': 15.0.15
|
||||
chalk: 4.1.2
|
||||
|
||||
@@ -3015,7 +3059,6 @@ packages:
|
||||
dependencies:
|
||||
'@jridgewell/resolve-uri': 3.1.0
|
||||
'@jridgewell/sourcemap-codec': 1.4.14
|
||||
dev: true
|
||||
|
||||
/@jridgewell/trace-mapping@0.3.18:
|
||||
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
|
||||
@@ -3272,7 +3315,7 @@ packages:
|
||||
chalk: 3.0.0
|
||||
lodash: 4.17.21
|
||||
mime: 2.6.0
|
||||
node-fetch: 2.6.9
|
||||
node-fetch: 2.6.10
|
||||
open: 6.4.0
|
||||
shell-quote: 1.6.1
|
||||
transitivePeerDependencies:
|
||||
@@ -3473,8 +3516,8 @@ packages:
|
||||
engines: {node: '>=12'}
|
||||
dev: false
|
||||
|
||||
/@tanstack/store@0.0.1-beta.88:
|
||||
resolution: {integrity: sha512-Lnr++DVSrez83I67BzcwST3lQZDdiAIVoc6xGZVlbsMEMqDKD8adZ1lA91RLRPIlIbykB7zaKtauNK6QJSHDYg==}
|
||||
/@tanstack/store@0.0.1-beta.89:
|
||||
resolution: {integrity: sha512-YW2aAhsXI4QYLXRnxZzB7MgEah91itQcWAjN3GYg1HKHxPv/11T5bL1CUCSxFLTI0f+45uNRjsmof6eqsN3ECA==}
|
||||
engines: {node: '>=12'}
|
||||
dev: false
|
||||
|
||||
@@ -3497,7 +3540,7 @@ packages:
|
||||
engines: {node: '>=12'}
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.21.4
|
||||
'@babel/runtime': 7.18.9
|
||||
'@babel/runtime': 7.21.5
|
||||
'@types/aria-query': 4.2.2
|
||||
aria-query: 5.1.3
|
||||
chalk: 4.1.2
|
||||
@@ -3650,20 +3693,20 @@ packages:
|
||||
/@types/babel__generator@7.6.4:
|
||||
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
|
||||
dependencies:
|
||||
'@babel/types': 7.19.0
|
||||
'@babel/types': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@types/babel__template@7.4.1:
|
||||
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.19.1
|
||||
'@babel/types': 7.19.0
|
||||
'@babel/types': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@types/babel__traverse@7.17.1:
|
||||
resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==}
|
||||
dependencies:
|
||||
'@babel/types': 7.19.0
|
||||
'@babel/types': 7.21.5
|
||||
dev: true
|
||||
|
||||
/@types/estree@0.0.39:
|
||||
@@ -3679,7 +3722,7 @@ packages:
|
||||
/@types/graceful-fs@4.1.6:
|
||||
resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
|
||||
dependencies:
|
||||
'@types/node': 20.1.0
|
||||
'@types/node': 17.0.45
|
||||
dev: false
|
||||
|
||||
/@types/istanbul-lib-coverage@2.0.4:
|
||||
@@ -3728,9 +3771,6 @@ packages:
|
||||
/@types/node@17.0.45:
|
||||
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
|
||||
|
||||
/@types/node@20.1.0:
|
||||
resolution: {integrity: sha512-O+z53uwx64xY7D6roOi4+jApDGFg0qn6WHcxe5QeqjMaTezBO/mxdfFXIVAVVyNWKx84OmPB3L8kbVYOTeN34A==}
|
||||
|
||||
/@types/normalize-package-data@2.4.1:
|
||||
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
|
||||
dev: true
|
||||
@@ -4599,6 +4639,25 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-jest@27.5.1(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.8.0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@jest/transform': 27.5.1
|
||||
'@jest/types': 27.5.1
|
||||
'@types/babel__core': 7.1.19
|
||||
babel-plugin-istanbul: 6.1.1
|
||||
babel-preset-jest: 27.5.1(@babel/core@7.21.8)
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.10
|
||||
slash: 3.0.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-add-module-exports@0.2.1:
|
||||
resolution: {integrity: sha512-3AN/9V/rKuv90NG65m4tTHsI04XrCKsWbztIcW7a8H5iIN7WlvWucRtVV0V/rT4QvtA11n5Vmp20fLwfMWqp6g==}
|
||||
dev: true
|
||||
@@ -4671,7 +4730,7 @@ packages:
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.19.1
|
||||
'@babel/compat-data': 7.21.7
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.19.1)
|
||||
semver: 6.3.0
|
||||
@@ -4684,7 +4743,7 @@ packages:
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.19.1
|
||||
'@babel/compat-data': 7.21.7
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.8)
|
||||
semver: 6.3.0
|
||||
@@ -4793,6 +4852,26 @@ packages:
|
||||
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.19.1)
|
||||
dev: true
|
||||
|
||||
/babel-preset-current-node-syntax@1.0.1(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.8)
|
||||
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.8)
|
||||
dev: true
|
||||
|
||||
/babel-preset-fbjs@3.4.0(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
|
||||
peerDependencies:
|
||||
@@ -4841,6 +4920,17 @@ packages:
|
||||
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.19.1)
|
||||
dev: true
|
||||
|
||||
/babel-preset-jest@27.5.1(@babel/core@7.21.8):
|
||||
resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.8
|
||||
babel-plugin-jest-hoist: 27.5.1
|
||||
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.8)
|
||||
dev: true
|
||||
|
||||
/babel-preset-react-app@10.0.1:
|
||||
resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==}
|
||||
dependencies:
|
||||
@@ -7235,7 +7325,7 @@ packages:
|
||||
fs.realpath: 1.0.0
|
||||
inflight: 1.0.6
|
||||
inherits: 2.0.4
|
||||
minimatch: 3.0.5
|
||||
minimatch: 3.1.2
|
||||
once: 1.4.0
|
||||
path-is-absolute: 1.0.1
|
||||
dev: true
|
||||
@@ -7939,7 +8029,7 @@ packages:
|
||||
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
|
||||
engines: {node: '>=8'}
|
||||
dependencies:
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/parser': 7.21.8
|
||||
'@istanbuljs/schema': 0.1.3
|
||||
istanbul-lib-coverage: 3.2.0
|
||||
@@ -8051,15 +8141,15 @@ packages:
|
||||
ts-node:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/core': 7.21.8
|
||||
'@jest/test-sequencer': 27.5.1
|
||||
'@jest/types': 27.5.1
|
||||
babel-jest: 27.5.1(@babel/core@7.19.1)
|
||||
babel-jest: 27.5.1(@babel/core@7.21.8)
|
||||
chalk: 4.1.2
|
||||
ci-info: 3.3.2
|
||||
deepmerge: 4.3.1
|
||||
glob: 7.2.3
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
jest-circus: 27.5.1
|
||||
jest-environment-jsdom: 27.5.1
|
||||
jest-environment-node: 27.5.1
|
||||
@@ -8166,7 +8256,7 @@ packages:
|
||||
dependencies:
|
||||
'@jest/types': 26.6.2
|
||||
'@types/graceful-fs': 4.1.6
|
||||
'@types/node': 20.1.0
|
||||
'@types/node': 17.0.45
|
||||
anymatch: 3.1.3
|
||||
fb-watchman: 2.0.2
|
||||
graceful-fs: 4.2.11
|
||||
@@ -8192,7 +8282,7 @@ packages:
|
||||
'@types/node': 17.0.45
|
||||
anymatch: 3.1.2
|
||||
fb-watchman: 2.0.1
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
jest-regex-util: 27.5.1
|
||||
jest-serializer: 27.5.1
|
||||
jest-util: 27.5.1
|
||||
@@ -8254,7 +8344,7 @@ packages:
|
||||
'@jest/types': 27.5.1
|
||||
'@types/stack-utils': 2.0.1
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
micromatch: 4.0.5
|
||||
pretty-format: 27.5.1
|
||||
slash: 3.0.0
|
||||
@@ -8308,7 +8398,7 @@ packages:
|
||||
dependencies:
|
||||
'@jest/types': 27.5.1
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
jest-haste-map: 27.5.1
|
||||
jest-pnp-resolver: 1.2.2(jest-resolve@27.5.1)
|
||||
jest-util: 27.5.1
|
||||
@@ -8330,7 +8420,7 @@ packages:
|
||||
'@types/node': 17.0.45
|
||||
chalk: 4.1.2
|
||||
emittery: 0.8.1
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
jest-docblock: 27.5.1
|
||||
jest-environment-jsdom: 27.5.1
|
||||
jest-environment-node: 27.5.1
|
||||
@@ -8366,7 +8456,7 @@ packages:
|
||||
collect-v8-coverage: 1.0.1
|
||||
execa: 5.1.1
|
||||
glob: 7.2.3
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
jest-haste-map: 27.5.1
|
||||
jest-message-util: 27.5.1
|
||||
jest-mock: 27.5.1
|
||||
@@ -8384,7 +8474,7 @@ packages:
|
||||
resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@types/node': 20.1.0
|
||||
'@types/node': 17.0.45
|
||||
graceful-fs: 4.2.11
|
||||
dev: false
|
||||
|
||||
@@ -8393,26 +8483,26 @@ packages:
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
dependencies:
|
||||
'@types/node': 17.0.45
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
dev: true
|
||||
|
||||
/jest-snapshot@27.5.1:
|
||||
resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
dependencies:
|
||||
'@babel/core': 7.19.1
|
||||
'@babel/core': 7.21.8
|
||||
'@babel/generator': 7.21.5
|
||||
'@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.19.1)
|
||||
'@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.21.8)
|
||||
'@babel/traverse': 7.21.5
|
||||
'@babel/types': 7.21.5
|
||||
'@jest/transform': 27.5.1
|
||||
'@jest/types': 27.5.1
|
||||
'@types/babel__traverse': 7.17.1
|
||||
'@types/prettier': 2.6.3
|
||||
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.19.1)
|
||||
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.21.8)
|
||||
chalk: 4.1.2
|
||||
expect: 27.5.1
|
||||
graceful-fs: 4.2.10
|
||||
graceful-fs: 4.2.11
|
||||
jest-diff: 27.5.1
|
||||
jest-get-type: 27.5.1
|
||||
jest-haste-map: 27.5.1
|
||||
@@ -8431,7 +8521,7 @@ packages:
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@jest/types': 26.6.2
|
||||
'@types/node': 20.1.0
|
||||
'@types/node': 17.0.45
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.11
|
||||
is-ci: 2.0.0
|
||||
@@ -8636,7 +8726,7 @@ packages:
|
||||
resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
minimist: 1.2.6
|
||||
minimist: 1.2.8
|
||||
dev: true
|
||||
|
||||
/json5@2.2.1:
|
||||
@@ -9354,7 +9444,7 @@ packages:
|
||||
metro-transform-worker: 0.64.0
|
||||
mime-types: 2.1.35
|
||||
mkdirp: 0.5.6
|
||||
node-fetch: 2.6.9
|
||||
node-fetch: 2.6.10
|
||||
nullthrows: 1.1.1
|
||||
rimraf: 2.7.1
|
||||
serialize-error: 2.1.0
|
||||
@@ -9555,8 +9645,8 @@ packages:
|
||||
resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==}
|
||||
dev: true
|
||||
|
||||
/node-fetch@2.6.9:
|
||||
resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==}
|
||||
/node-fetch@2.6.10:
|
||||
resolution: {integrity: sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==}
|
||||
engines: {node: 4.x || >=6.0.0}
|
||||
peerDependencies:
|
||||
encoding: ^0.1.0
|
||||
@@ -10142,14 +10232,14 @@ packages:
|
||||
fast-diff: 1.2.0
|
||||
dev: true
|
||||
|
||||
/prettier-plugin-svelte@2.9.0(prettier@2.7.1)(svelte@3.59.0):
|
||||
/prettier-plugin-svelte@2.9.0(prettier@2.7.1)(svelte@3.59.1):
|
||||
resolution: {integrity: sha512-3doBi5NO4IVgaNPtwewvrgPpqAcvNv0NwJNflr76PIGgi9nf1oguQV1Hpdm9TI2ALIQVn/9iIwLpBO5UcD2Jiw==}
|
||||
peerDependencies:
|
||||
prettier: ^1.16.4 || ^2.0.0
|
||||
svelte: ^3.2.0
|
||||
dependencies:
|
||||
prettier: 2.7.1
|
||||
svelte: 3.59.0
|
||||
svelte: 3.59.1
|
||||
dev: true
|
||||
|
||||
/prettier@2.7.1:
|
||||
@@ -10462,15 +10552,6 @@ packages:
|
||||
safe-regex: 1.1.0
|
||||
dev: false
|
||||
|
||||
/regexp.prototype.flags@1.4.3:
|
||||
resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
|
||||
engines: {node: '>= 0.4'}
|
||||
dependencies:
|
||||
call-bind: 1.0.2
|
||||
define-properties: 1.1.4
|
||||
functions-have-names: 1.2.3
|
||||
dev: true
|
||||
|
||||
/regexp.prototype.flags@1.5.0:
|
||||
resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==}
|
||||
engines: {node: '>= 0.4'}
|
||||
@@ -11234,7 +11315,7 @@ packages:
|
||||
get-intrinsic: 1.2.0
|
||||
has-symbols: 1.0.3
|
||||
internal-slot: 1.0.5
|
||||
regexp.prototype.flags: 1.4.3
|
||||
regexp.prototype.flags: 1.5.0
|
||||
side-channel: 1.0.4
|
||||
dev: true
|
||||
|
||||
@@ -11379,8 +11460,8 @@ packages:
|
||||
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
/svelte@3.59.0:
|
||||
resolution: {integrity: sha512-Di1wVPwdWriw5pSyInMRpr5EZmwrzKxtDKv5aXu8A/WDUi59Y5bIvl42eLef0x1vwz+ZtrjdnT8nXir2bDqR/A==}
|
||||
/svelte@3.59.1:
|
||||
resolution: {integrity: sha512-pKj8fEBmqf6mq3/NfrB9SLtcJcUvjYSWyePlfCqN9gujLB25RitWK8PvFzlwim6hD/We35KbPlRteuA6rnPGcQ==}
|
||||
engines: {node: '>= 8'}
|
||||
dev: true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user