diff --git a/.changeset/poor-pets-eat.md b/.changeset/poor-pets-eat.md new file mode 100644 index 00000000..a4eabd66 --- /dev/null +++ b/.changeset/poor-pets-eat.md @@ -0,0 +1,15 @@ +--- +'react-native-reanimated-carousel': patch +--- + +feat: change the way of PanGestureHandler modification from panGestureHandlerProps to onConfigurePanGesture. + +e.g. + +```tsx + { + gestureChain.activeOffsetX([-10, 10]) + }} +/> +``` diff --git a/README.md b/README.md index 0ea15699..78425b31 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Check out [the documentation website](https://reanimated-carousel.dev). | left-align | -> You can make cool animations with custom animation API [[Details]](./docs/custom-animation.md) +> You can make cool animations with custom animation API [[Details]](https://reanimated-carousel.dev/custom-animations) | | | | | :-----------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------: | diff --git a/README.zh-CN.md b/README.zh-CN.md deleted file mode 100644 index bfbe3caa..00000000 --- a/README.zh-CN.md +++ /dev/null @@ -1,202 +0,0 @@ -[English](./README.md) | 简体中文 - -# react-native-reanimated-carousel - - - -![Hacktober Badge](https://img.shields.io/badge/hacktoberfest-2022-blueviolet) -![platforms](https://img.shields.io/badge/platforms-Android%20%7C%20iOS%20%7C%20Web-brightgreen.svg?style=flat-square&colorB=191A17) -[![npm](https://img.shields.io/npm/v/react-native-reanimated-carousel.svg?style=flat-square)](https://www.npmjs.com/package/react-native-reanimated-carousel) -[![npm](https://img.shields.io/npm/dm/react-native-reanimated-carousel.svg?style=flat-square&colorB=007ec6)](https://www.npmjs.com/package/react-native-reanimated-carousel) -[![npm](https://img.shields.io/npm/dw/react-native-reanimated-carousel.svg?style=flat-square&colorB=007ec6)](https://www.npmjs.com/package/react-native-reanimated-carousel) -[![github issues](https://img.shields.io/github/issues/dohooo/react-native-reanimated-carousel.svg?style=flat-square)](https://github.com/dohooo/react-native-reanimated-carousel/issues) -[![github closed issues](https://img.shields.io/github/issues-closed/dohooo/react-native-reanimated-carousel.svg?style=flat-square&colorB=44cc11)](https://github.com/dohooo/react-native-reanimated-carousel/issues?q=is%3Aissue+is%3Aclosed) -[![discord chat](https://img.shields.io/badge/chat-discord-blue?style=flat&logo=discord)](https://discord.gg/KsXRuDs43y) - -## ReactNative 社区最好用的轮播图组件! 🎉🎉🎉 - -- **完全解决了`react-native-snap-carousel`的** [[问题]](https://github.com/meliorence/react-native-snap-carousel/issues/632) -- **易用**、**无限滚动**、**完全使用 Reanimated2 实现** - -> v2 已经发布,希望大家喜欢!~ [[v1 文档]](https://github.com/dohooo/react-native-reanimated-carousel/tree/v1.x.x) - -> 支持 Web 端 [[示例]](https://dohooo.github.io/react-native-reanimated-carousel/) - -> 点击图片,查看代码 [[试一下]](https://snack.expo.dev/@zhaodonghao586/simple-carousel) 🍺 - -| | | | -| :------------------------------------------------------------------: | :-------------------------------------------------------------------: | :--------------------------------------------------------------------: | -| normal-horizontal | normal-vertical | parallax-horizontal | -| | | | -| parallax-vertical | stack-horizontal-left | stack-horizontal-right | -| | | | -| stack-vertical-left | stack-vertical-right | stack-horizontal-right | -| | -| left-align | - -> 现在你可以和我们一起来制作酷炫的动画了! 非常简单! [[详情]](./docs/custom-animation.zh-CN.md) - -| | | | -| :-----------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------: | -| advanced-parallax | pause-advanced-parallax | scale-fade-in-out | -| | | | -| rotate-scale-fade-in-out | rotate-in-out | anim-tab-bar | -| | | | -| marquee | multiple | circular | -| | | | -| fold | tear | press-swipe | -| | | | -| cube-3d | blur-parallax | curve | -| | | | -| parallax-layers | stack-cards | flow | -| | | | -| blur-rotate | | | - -## 目录 - -1. [安装](#安装) -1. [使用](#使用) -1. [Props](./docs/props.zh-CN.md) -1. [提示](#提示) -1. [原因](#原因) -1. [示例](#示例) - ---- - -## 安装 - -在项目根目录打开终端并且执行: - -```sh -yarn add react-native-reanimated-carousel -``` - -如果你使用 npm: - -```sh -npm install react-native-reanimated-carousel -``` - -并且我们需要安装 [`react-native-gesture-handler`](https://github.com/kmagiera/react-native-gesture-handler) 、[`react-native-reanimated`](https://github.com/kmagiera/react-native-reanimated),安装步骤可参考各自文档。 -| | react-native-reanimated | react-native-gesture-handler | -| -------------------------------------- | ----------------------- | ---------------------------- | -| react-native-reanimated-carousel v1、v2 | >=2.0 & <2.7.0 | <2.9.0 | -| react-native-reanimated-carousel v3 | >=2.7.0 & < 3.x | <2.9.0 | -| react-native-reanimated-carousel v4 | >=3.x | >=2.9.0 | - - -## 使用 - -```tsx -import * as React from "react"; -import { Dimensions, Text, View } from "react-native"; -import Carousel from "react-native-reanimated-carousel"; - -function Index() { - const width = Dimensions.get("window").width; - return ( - - console.log("current index:", index)} - renderItem={({ index }) => ( - - - {index} - - - )} - /> - - ); -} - -export default Index; -``` - -## 提示 - -- 优化 - - 当渲染大量元素时,可使用`windowSize`属性,来控制当前元素的两侧渲染数量,默认为全量渲染。经测试不加此属性,渲染 200 个空 view 时会出现掉帧情况,设置此属性后渲染 1000 个空 view 依旧流畅。(具体数量与测试的手机型号相关) -- 在`ScrollView/FlatList`中使用 - - - **[#143](https://github.com/dohooo/react-native-reanimated-carousel/issues/143) - Carousel suppresses ScrollView/FlatList scroll gesture handler:** 当轮播图被放置在 ScrollView/FlatList 中时,轮播图的部分将无法控制列表滚动,解决办法是我们只允许手势系统识别某一方向,而不是所有方向,在下方例子中我们为了让列表可以向下滑动,所以我们使用[activeOffsetX](https://docs.swmansion.com/react-native-gesture-handler/docs/1.10.3/api/gesture-handlers/pan-gh/#activeoffsetx)属性来控制轮播图只识别横向手势: - - ```tsx - - ``` - -- RTL - - 所有 layout 均完美支持 RTL 模式,并且无需再做任何配置。但在 RTL 模式下使用自动播放时,默认不会自动转换方向,需要结合 autoPlayReverse 来手动控制方向。 -- EXPO - - 如果你使用 EXPO 托管工作流,请确定你的 EXPO SDK 版本大于 41,因为旧的版本并不支持`Reanimated(v2)`。 -- 工作原理 - - [关于RNRC](./docs/about.zh-CN.md) -- 如何运行`exampleExpo`的测试 - ```shell - $ yarn prepare - $ yarn link --global - $ cd ./exampleExpo - $ yarn link react-native-reanimated-carousel --global - $ yarn test - ``` - -## 原因 - -
- 常见的无限滚动轮播图,在快速滑动时会出现卡住的情况,这是因为实现方式而导致的问题。所以这个组件用了完全不同的方式来实现,并获得了最佳的性能也解决了这个问题,这就是创建这个库的原因。 -

- 使用react-native-snap-carousel快速滑动,当到连接处时可以看清楚的看到卡顿。(gif 4.6mb) -

-

- -

- -

- 使用react-native-reanimated-carousel对比,每秒滚动十张依然顺畅链接,无限滚动。这里使用了gif无法很清晰的看出。 -

-

- -

-
- -## 示例 - -> `:pretty` 使用更好看的图片 - -```shell -yarn ios -yarn ios:pretty - -yarn android -yarn android:pretty - -yarn web -yarn web:pretty -``` - -## 赞助商 - -

- -

- -## 许可 - -MIT diff --git a/docs/about.md b/docs/about.md deleted file mode 100644 index 402d07df..00000000 --- a/docs/about.md +++ /dev/null @@ -1,127 +0,0 @@ -## About RNRC -About the internal implementation of RNRC(react-native-reanimated-carousel). - -### Working principle -This is what we expect to see in the execution of RNRC. - -1. First we have three images by default and have slid to the second image in the middle -![steps-1](./assets/steps-1.png) -2. When we drag the image to the right -![steps-2](./assets/steps-2.png) -![steps-3](./assets/steps-3.png) -3. When the first image is partially in the viewport, we move the last image to the front -![steps-4](./assets/steps-4.png) -4. So we've done a circular scroll to one side and the other way around. It works by sliding and appending, and relies on reanimated, so the whole processing logic is still done in the UI thread, and moving images doesn't cause animation to freeze. -![steps-5](./assets/steps-5.png) - -This is how it works in code. - -> I don't think I have explained this logic clearly, but this is a version that has been revised many times, it is a complicated process, if any partners have their own understanding, welcome to submit PR, we will make this explanation more clear. -> In my opinion, this part is undoubtedly very important for the initial stage of project development, but it is no longer so "important" at present, because the underlying content of this part will no longer change significantly. If you are interested in it, you can understand it, otherwise I don't think it is necessary to understand it. - -1. First we need a unit `size` to help us calculate the scroll distance. When horizontal, `size` is equal to the `width` prop setting, when vertical, `size` is equal to the `height` prop setting. - -2. Then we need a value `handlerOffset`, which is the current scroll distance, and it's a total value, if we scroll two, `handlerOffset` is equal to `size` * 2, if we scroll ten, `handlerOffset` is equal to `size` * 10. - -3. Followed by dealing with how to get at the end of the element at the right time to move to the front, this part of logic in `./src/hooks/useOffsetX.ts`. First we need to know the current window size (the total number of elements rendered on one side). The window size defaults to half the total number of elements, i.e. full render. -![steps-6](./assets/steps-6.jpg) - -From the value of the window size we can calculate the position of the end of the forward or reverse element. -![steps-7](./assets/steps-7.jpg) - -Then we need to find the boundary (see if the image moves to the front). Currently we set this position to the total length of the side plus half the size of the element. This position is affected by the `windowSize` and can be changed using `windowSize` prop. For example, if `windowSize` is not set and the data length is 5, then one side length is size * (5-1)/2 = size * 2, then the boundary is size * 2 + size * 0.5, if `windowSize` is set to 3, then the boundary is size * 2 + size * 0.5. Size * (3-1)/2 = size * 1, size * 1 + size * 0.5 -![steps-8](./assets/steps-8.jpeg) - -In order to control the position of the elements more intuitively, we place the elements at the origin, and they all overlap at the origin, `translateX:0`. In this case, we need to calculate the base position of each element `startPos` based on the index of the element, for example, the base position of the first image is 0, the base position of the second image is SIZE, the base position of the third image is size * 2, and so on. Then, keeping the position of each element relative to each other, we subtract each element from its base position `startPos` and add the minimum boundary value `number.min_value`, so that we have the logic to change position immediately if we cross the `boundary`. It will be converted automatically by `outputRange`. - -The above logic is translated into code as follows: - -```tsx - const inputRange = [ - -TOTAL_WIDTH, - MIN - HALF_WIDTH - startPos - Number.MIN_VALUE, - MIN - HALF_WIDTH - startPos, - 0, - MAX + HALF_WIDTH - startPos, - MAX + HALF_WIDTH - startPos + Number.MIN_VALUE, - TOTAL_WIDTH, - ]; - const outputRange = [ - startPos, - MAX + HALF_WIDTH - Number.MIN_VALUE, - MIN - HALF_WIDTH, - startPos, - MAX + HALF_WIDTH, - MIN - HALF_WIDTH + Number.MIN_VALUE, - startPos, - ]; - return interpolate( - handlerOffset.value, - inputRange, - outputRange, - Extrapolate.CLAMP - ); -``` - -4. Now we have a nice x value that behaves differently for different indexes. For example, when we want the second element to come after the first, we can do something like this -```tsx -const inputRange = [-1, 0 ,1] -const outputRange = [-size, 0 ,size] -return { - transform: [ - { translateX: interpolate(handlerOffset.value, inputRange, outputRange) }, - ], -} -``` -So when the first one is at the origin `translateX:0`, the next one is at the origin `translateX:size`, because the first one receives an X value of 0 and the second one receives an X value of 1. And if we continue to drag to the left, then -1 approaches -1.5, which, according to our logic, exceeds `-1.50000...00001`, the left most image receives an X value of `1.49999... 00001`, which triggers the logic to change position. - -### Directory -``` -./src -├── Carousel.tsx # RNRC component `entry file` -├── LazyView.tsx # ShouldUpdate prop controls whether to display elements -├── ScrollViewGesture.tsx # Gesture logic `entry file` -├── constants -│ └── index.ts # Constants defined -├── hooks -│ ├── useAutoPlay.ts # Managing Auto Play -│ ├── useCarouselController.tsx # The controller that manages the behavior of the multicast graph (previous, next...) -│ ├── useCheckMounted.ts # Check whether the wheel cast diagram has been mounted -│ ├── useCommonVariables.ts # Pull some common variables from Props -│ ├── useInitProps.ts # Initialize the Props passed in -│ ├── useLayoutConfig.ts # parallax, horizontal-stack... Returns different animationStyles -│ ├── useOffsetX.ts # The core logic of when to move the end slide to the start position -│ ├── useOnProgressChange.ts # Listen for scrolling progress changes -│ ├── usePropsErrorBoundary.ts # Used to catch setup errors for Props -│ └── useVisibleRanges.tsx # Manages the visibility of the carousel elements -├── index.tsx -├── layouts # Some basic layouts are defined -│ ├── BaseLayout.tsx -│ ├── ParallaxLayout.tsx -│ ├── index.tsx # Layout entry file that returns the various animationStyles defined. -│ ├── normal.ts -│ ├── parallax.ts -│ └── stack.ts -├── store -│ └── index.ts # ContextStore for Props and some base variables -├── types.ts # The type definition -└── utils # Some tool methods. - ├── computedWithAutoFillData.ts # When the default data is insufficient, the data will be automatically completed and can also be turned off with `autoFillData` prop, so this file provides ways to handle two different cases. - ├── dealWithAnimation.ts # Encapsulates and handles both Spring/Timing animation types - └── log.ts # The utility method used to type logs in `worklet` functions -``` - -### Development -1. Run `yarn dev` in the root directory. -2. Run `yarn ios/ yarn android/yarn web` on exampleExpo. -3. Modify the files under './src/*'to see the changes. - -### Tips -How to add a new animation effect? - -We recommend you to use ['customAnimation'](./custom-animation.zh-cn.md) prop to do this, as this is a more flexible and easy way to do it. - -1. In `./exampleExpo/src/pages/[new example]`reference other examples to create a new animation and give it a name (kebab-case dash name). -2. In the `./exampleExpo/src/pages/Home.tsx ` file to add the entrance route. -3. Record the demo animation. We recommend that you record the demo animation at a size of 1.8:1, usually in the same proportion as other demo GIF. Running 'yarn gif' in the root directory will automatically generate GIF files in this directory. -4. Put the GIF files into the `./assets` directory and update the `README.md` and `README.zh-cn. md` files according to their types. \ No newline at end of file diff --git a/docs/about.zh-CN.md b/docs/about.zh-CN.md deleted file mode 100644 index 73c2e1bb..00000000 --- a/docs/about.zh-CN.md +++ /dev/null @@ -1,130 +0,0 @@ -## About RNRC -关于RNRC(react-native-reanimated-carousel)的内部实现。 - -### 工作原理 -这是我们期望看到的执行逻辑。 - -1. 首先我们默认有三张图片,并且已经滑动到了中间第二张 -![steps-1](./assets/steps-1.png) -2. 我们拖动图片向右滑动 -![steps-2](./assets/steps-2.png) -![steps-3](./assets/steps-3.png) -3. 当第一张图片的部分进入轮播图视窗超过1/2后,我们将末尾的图片挪动到最前面 -![steps-4](./assets/steps-4.png) -4. 这样我们就完成了一次向一侧的循环滚动,反方向同理。其实原理就是滑动并且追加,这里依赖reanimated实现,所以整个处理逻辑依然在UI线程完成,图片的挪动并不会导致动画卡顿。 -![steps-5](./assets/steps-5.png) - -在代码中它的运行方式是这样的。 - -> 我认为我并没有讲清楚这部分逻辑,但这已经是修改很多遍后的版本了,这是一个复杂的过程,如果有任何伙伴有了自己的理解,欢迎提交PR,我们来让这个讲解变得更清晰。 -> 并且我认为这部分内容,对于项目开发初期无疑是非常重要的,但就目前来看已经变得不再那么"重要",因为这部分底层内容应该也不再会有大幅变动,如果感兴趣可以了解,否则我认为不是很有必要弄懂。 - -1. 首先我们需要一个单位`size`,它用来帮我们计算滚动距离,当水平时`size`等于`width` prop的设置,当垂直时`size`等于`height` prop的设置。 - -2. 其次我们需要一个值`handlerOffset`,用来记录当前的滚动距离,这是一个总值,当我们滚动两张,那`handlerOffset`等于size * 2,如果滚动十张那`handlerOffset`等于size * 10。 - -3. 紧接着是处理如何让末尾的元素在合适的时候挪动到最前面,这部分逻辑在`./src/hooks/useOffsetX.ts`中。首先我们需要知道目前的视窗大小(一侧元素渲染的总数量),视窗大小默认为元素总数量的一半,即全量渲染。 -![steps-6](./assets/steps-6.jpg) - -通过视窗大小的值我们可以计算出,正向或者反向元素末端的位置. -![steps-7](./assets/steps-7.jpg) - -然后我们需要找到界限(判断图片是否挪动到最前面的那个位置)。目前我们设置这个位置为一侧的总长度加元素一半大小,这个位置会受视窗大小所影响,可以通过`windowSize` prop来修改。比如,当不设置`windowSize`时,并且数据长度为5时,则一侧长度为size * (5-1)/2 = size * 2,那么界限为size * 2 + size * 0.5,如果修改`windowSize`为3,则一侧长度为size * (3-1)/2 = size * 1,那么界限为size * 1 + size * 0.5。 -![steps-8](./assets/steps-8.jpeg) - -为了控制元素位置更加直观,我们将元素都位于了原点,它们都会重合在原点,`translateX:0`。在这种情况下,我们需要计算出每个元素的基础位置`startPos`,这个值是根据元素的索引来计算的,比如第一张图片的基础位置是0,第二张图片的基础位置是size,第三张图片的基础位置是size * 2,以此类推。 然后保持每个元素相对的位置关系,我们要让每个元素减去自身的基础位置`startPos`,并且再加上最小的边界值`Number.MIN_VALUE`,这样我们能获得越过`界限`则立刻触发更换位置的逻辑,它会自动通过`outputRange`进行转换。 - -上面的逻辑转化为代码如下: - -```tsx - const inputRange = [ - -TOTAL_WIDTH, - MIN - HALF_WIDTH - startPos - Number.MIN_VALUE, - MIN - HALF_WIDTH - startPos, - 0, - MAX + HALF_WIDTH - startPos, - MAX + HALF_WIDTH - startPos + Number.MIN_VALUE, - TOTAL_WIDTH, - ]; - const outputRange = [ - startPos, - MAX + HALF_WIDTH - Number.MIN_VALUE, - MIN - HALF_WIDTH, - startPos, - MAX + HALF_WIDTH, - MIN - HALF_WIDTH + Number.MIN_VALUE, - startPos, - ]; - return interpolate( - handlerOffset.value, - inputRange, - outputRange, - Extrapolate.CLAMP - ); -``` - -4. 现在我们获得了一个非常好用的x值,它是一个针对不同index都有不同表现的x值,比如,当我们想让第二个元素在第一个元素后面时,就可以做如下设置 -```tsx -const inputRange = [-1, 0 ,1] -const outputRange = [-size, 0 ,size] -return { - transform: [ - { translateX: interpolate(handlerOffset.value, inputRange, outputRange) }, - ], -} -``` -这样第一张位于原点`translateX:0`时,下一张位于`translateX:size`,因为第一张收到的x值是0,第二张此刻收到的x值将会是1。而且如果我们继续向左侧拖动,那么-1会接近-1.5,按照我们的逻辑,当超过-1.50000...00001时,位于最左侧的图片收到的x值会瞬间变成1.49999...00001,这样就会触发更换位置的逻辑。 - - -### 目录结构 -``` -./src -├── Carousel.tsx # RNRC组件的`入口文件` -├── LazyView.tsx # 根据 `shouldUpdate` prop, 控制是否展示元素 -├── ScrollViewGesture.tsx # 手势逻辑的`入口文件` -├── constants -│ └── index.ts # 常量定义 -├── hooks -│ ├── useAutoPlay.ts # 管理自动播放 -│ ├── useCarouselController.tsx # 管理轮播图行为的控制器(上一张、下一张...) -│ ├── useCheckMounted.ts # 检查轮播图是否已经挂载完成 -│ ├── useCommonVariables.ts # 从Props中取出一些公共变量 -│ ├── useInitProps.ts # 对传入的Props做初始化定义 -│ ├── useLayoutConfig.ts # 根据指定的不同mode(parallax、horizontal-stack...)返回不同的AnimationStyle -│ ├── useOffsetX.ts # 何时将下一张挪动到最前面的核心逻辑 -│ ├── useOnProgressChange.ts # 监听滚动进度变化 -│ ├── usePropsErrorBoundary.ts # 用于捕获Props的设置错误 -│ └── useVisibleRanges.tsx # 管理轮播图的可见范围 -├── index.tsx -├── layouts # 定义了一些基本Layout -│ ├── BaseLayout.tsx -│ ├── ParallaxLayout.tsx -│ ├── index.tsx # Layout的`入口文件`,返回定义好的各种AnimationStyle. -│ ├── normal.ts -│ ├── parallax.ts -│ └── stack.ts -├── store -│ └── index.ts # 存储Props和一些基础变量的ContextStore -├── types.ts # 类型定义 -└── utils # 一些工具方法 - ├── computedWithAutoFillData.ts # 当默认数据不足时,将会自动补全数据,也可以通过`autoFillData` prop来关闭,所以这个文件内提供了处理两种不同情况的方法。 - ├── dealWithAnimation.ts # 封装处理Spring/Timing两种动画类型 - └── log.ts # 用来在`worklet`函数中打log的工具方法 -``` - -### 开始开发 -1. 在根目录中执行`yarn dev`。 -2. 在exampleExpo执行`yarn ios/ yarn android/ yarn web`。 -3. 修改`./src/*`下的文件将会看到变化。 - -### 提示 - -如何增加一个新的动画效果? - -我们鼓励大家使用[`customAnimation`](./custom-animation.zh-CN.md) prop来完成它,因为这是一个更加灵活且简单的方式。 - -1. 在`./exampleExpo/src/pages/[new example]`中参考其它的example来制作一个新的动画效果,并给它起一个名字(kebab-case 短横线命名)。 -2. 在`./exampleExpo/src/pages/Home.tsx`文件中来添加入口路由。 -3. 录制演示动画,我们推荐大家按照1.8:1的大小来进行录制,一般来说按照其他演示gif的比例即可,最后将录制的动画放到`./scripts/gif-works-directory`中,执行`yarn gif`将会自动在此目录生成gif文件。 -4. 将gif文件放到`./assets`目录中,并按照类型更新`README.md`与`README.zh-CN.md`文件。 - diff --git a/docs/custom-animation.md b/docs/custom-animation.md deleted file mode 100644 index 27419af8..00000000 --- a/docs/custom-animation.md +++ /dev/null @@ -1,138 +0,0 @@ -# Custom Animation - -After some effort, we finally implemented custom animation in v2, now we just need to implement a callback function of type `TAnimationStyle` and pass it to the `customAnimation` property of `Carousel`. - -## Prepare - -``` -type TAnimationStyle = (value: number) => Animated.AnimatedStyleProp; -``` - -This function will be called in each item and accepts a parameter `value` indicating the position of the current item relative to `window`. The following picture shows the relationship between `value` and position - - - -After getting the `value`, we only need to describe how the item is displayed in the corresponding position, and the rest is handed over to `Animated` to execute. - -### Tips - -- Don't forget to set `zIndex` - ---- - -## Let's get started! - -Here are a few examples. - -### Parallax - - - - - -```ts -const animationStyle: TAnimationStyle = React.useCallback((value: number) => { - 'worklet'; - - const zIndex = interpolate(value, [-1, 0, 1], [10, 20, 30]); - const translateX = interpolate( - value, - [-1, 0, 1], - [-PAGE_WIDTH * 0.5, 0, PAGE_WIDTH] - ); - - return { - transform: [{ translateX }], - zIndex, - }; -}, []); - - { - return ( - - ); - }} -/>; - -const CustomItem = ({ index, animationValue }) => { - const maskStyle = useAnimatedStyle(() => { - const backgroundColor = interpolateColor( - animationValue.value, - [-1, 0, 1], - ['#000000dd', 'transparent', '#000000dd'] - ); - - return { - backgroundColor, - }; - }, [animationValue]); - - return ( - - - - - ); -}; -``` - -In order to implement some animation effects outside `Carousel`, such as `MaskView`, we pass the animation value calculated inside each Item to the outside through `renderItem`. - -### ScaleFadeInOut - - - - - -```ts -const animationStyle: TAnimationStyle = React.useCallback((value: number) => { - 'worklet'; - - const zIndex = interpolate(value, [-1, 0, 1], [10, 20, 30]); - const scale = interpolate(value, [-1, 0, 1], [1.25, 1, 0.25]); - const opacity = interpolate(value, [-0.75, 0, 1], [0, 1, 0]); - - return { - transform: [{ scale }], - zIndex, - opacity, - }; -}, []); - - { - return ; - }} -/>; -``` diff --git a/docs/custom-animation.zh-CN.md b/docs/custom-animation.zh-CN.md deleted file mode 100644 index c8ae8183..00000000 --- a/docs/custom-animation.zh-CN.md +++ /dev/null @@ -1,138 +0,0 @@ -# 自定义动画 - -经过一些努力,我们终于在 v2 版本中实现了自定义动画,现在只需实现一个类型`TAnimationStyle`的回调函数,然后将它传给`Carousel`的`customAnimation`属性即可。 - -## 准备 - -``` -type TAnimationStyle = (value: number) => Animated.AnimatedStyleProp; -``` - -这个函数会在每个 item 里去调用,并接受一个参数`value`表示当前 item 相对`window`所在的位置,下图展示了`value`和位置的关系 - - - -当拿到`value`后,我们只需要描述 item 在对应位置上如何展示,剩下的就交给`Animated`去执行吧。 - -### 小贴士 - -- 别忘了设置`zIndex` - ---- - -## 发车! - -下面写了几个例子 - -### 视差效果 - - - - - -```ts -const animationStyle: TAnimationStyle = React.useCallback((value: number) => { - 'worklet'; - - const zIndex = interpolate(value, [-1, 0, 1], [10, 20, 30]); - const translateX = interpolate( - value, - [-1, 0, 1], - [-PAGE_WIDTH * 0.5, 0, PAGE_WIDTH] - ); - - return { - transform: [{ translateX }], - zIndex, - }; -}, []); - - { - return ( - - ); - }} -/>; - -const CustomItem = ({ index, animationValue }) => { - const maskStyle = useAnimatedStyle(() => { - const backgroundColor = interpolateColor( - animationValue.value, - [-1, 0, 1], - ['#000000dd', 'transparent', '#000000dd'] - ); - - return { - backgroundColor, - }; - }, [animationValue]); - - return ( - - - - - ); -}; -``` - -为了让`Carousel`外部实现一些动画效果,比如`MaskView`,我们将每个 Item 内部计算出来的动画值通过`renderItem`传递到了外部。 - -### 缩放渐入渐出效果 - - - - - -```ts -const animationStyle: TAnimationStyle = React.useCallback((value: number) => { - 'worklet'; - - const zIndex = interpolate(value, [-1, 0, 1], [10, 20, 30]); - const scale = interpolate(value, [-1, 0, 1], [1.25, 1, 0.25]); - const opacity = interpolate(value, [-0.75, 0, 1], [0, 1, 0]); - - return { - transform: [{ scale }], - zIndex, - opacity, - }; -}, []); - - { - return ; - }} -/>; -``` diff --git a/docs/props.md b/docs/props.md deleted file mode 100644 index 6d31e88a..00000000 --- a/docs/props.md +++ /dev/null @@ -1,67 +0,0 @@ -## Common Props - -| name | required | default | types | description | -| ----------------------- | ------------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ | -| data | ✅ | | T[] | Carousel items data set | -| renderItem | ✅ | | (info: { item: T, index: number, animationValue: SharedValue\ }) => React.ReactElement | Render carousel item | -| defaultScrollOffsetValue| ❌ | useSharedValue(0) | boolean | The default animated value of the carousel. | -| autoFillData | ❌ | true | boolean | Auto fill data array to allow loop playback when the loop props is true.([1] => [1, 1, 1];[1, 2] => [1, 2, 1, 2]) | -| vertical | ❌ | false | boolean | Layout items vertically instead of horizontally | -| width | vertical ❌ horizontal ✅ | '100%' | number \| undefined | Specified carousel item width | -| height | vertical ✅ horizontal ❌ | '100%' | number \| undefined | Specified carousel item height | -| mode | ❌ | default | 'horizontal-stack'\|'vertical-stack'\|'parallax' | Carousel Animated transitions | -| modeConfig | ❌ | | | Different modes correspond to different configurations. For details, see below[modeConfig](#`modeConfig` Props) | -| style | ❌ | {} | ViewStyle | Carousel container style | -| defaultIndex | ❌ | 0 | number | Default index | -| autoPlay | ❌ | false | boolean | Auto play | -| autoPlayReverse | ❌ | false | boolean | Auto play reverse playback | -| autoPlayInterval | ❌ | 1000 | number | Auto play playback interval | -| scrollAnimationDuration | ❌ | 500 | number | Time a scroll animation takes to finish | -| loop | ❌ | true | boolean | Carousel loop playback | -| testID | ❌ | | string | Used to locate this view in end-to-end tests | -| onSnapToItem | ❌ | | (index: number) => void | Callback fired when navigating to an item | -| onScrollBegin | ❌ | | () => void | Callback fired when scroll begin | -| onScrollEnd | ❌ | | (index: number) => void | Callback fired when scroll end | -| withAnimation | ❌ | | {type: 'spring';config: WithSpringConfig;} \| {type: 'timing';config: WithTimingConfig;} | Specifies the scrolling animation effect | -| panGestureHandlerProps | ❌ | {} | Omit,'onHandlerStateChange'> | PanGestureHandler props | -| windowSize | ❌ | 0 | number | The maximum number of items that can respond to pan gesture events, `0` means all items will respond to pan gesture events | -| onProgressChange | ❌ | | onProgressChange?: (offsetProgress: number,absoluteProgress: number) => void | On progress change. `offsetProgress`:Total of offset distance (0 390 780 ...); `absoluteProgress`:Convert to index (0 1 2 ...) | -| modeConfig | ❌ | { snapDirection: 'left',moveSize: window.width,stackInterval: 30,scaleInterval: 0.08,rotateZDeg: 135} | {moveSize?: number;stackInterval?: number;scaleInterval?: number;rotateZDeg?: number;snapDirection?: 'left' \| 'right';} | Stack layout animation style | -| pagingEnabled | ❌ | true | boolean | When true, the scroll view stops on multiples of the scroll view's size when scrolling | -| overscrollEnabled | ❌ | true | boolean | If enabled, the item will scroll to the first placement when scrolling past the edge rather than closing to the last. (previous conditions: loop=false) | -| snapEnabled | ❌ | true | boolean | If enabled, releasing the touch will scroll to the nearest item, valid when pagingEnabled=false | -| enabled | ❌ | true | boolean | when false, Carousel will not respond to any gestures | -| customConfig | ❌ | | () => {type?: 'negative' \| 'positive';viewCount?: number;} | Custom carousel config | -| customAnimation | ❌ | | (value: number) => Animated.AnimatedStyleProp | Custom animations. For details, see below[custom animation](./custom-animation.md) | -| maxScrollDistancePerSwipe | ❌ | | number | Maximum offset value for one scroll. If `props.vertical = true`, this will be `maxScrollDistancePerSwipeY`. If `props.vertical = false`, this will be `maxScrollDistancePerSwipeX`. | - -## `modeConfig` Props - -### Parallax - -| name | required | default | types | description | -| ------------------------- | -------- | ------------------------------------------------------------------ | ------ | ------------------------------------ | -| parallaxScrollingOffset | ❌ | 100 | number | control prev/next item offset | -| parallaxScrollingScale | ❌ | 0.8 | number | control prev/current/next item scale | -| parallaxAdjacentItemScale | ❌ | parallaxAdjacentItemScale \|\| Math.pow(parallaxScrollingScale, 2) | number | control prev/next item scale | - -### Stack - -| name | required | default | types | description | -| --------------- | -------- | ------------- | --------------- | ------------------------ | -| showLength | ❌ | data.length-1 | number | Display number | -| moveSize | ❌ | screen.width | number | Item translate size | -| stackInterval | ❌ | 18 | number | The spacing of each item | -| scaleInterval | ❌ | 0.04 | number | The scale of each item | -| opacityInterval | ❌ | 0.1 | number | The opacity of each item | -| rotateZDeg | ❌ | 30 | number | The item rotation Angle | -| snapDirection | ❌ | 'left' | 'left'\|'right' | Slide direction | - -## Ref - -| name | types | description | -| --------------- | -------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| prev | ({ count: number, animated: boolean, onFinished?: () => void }) => void | Scroll to previous item, it takes one optional argument (count), which allows you to specify how many items to cross | -| next | ({ count: number, animated: boolean, onFinished?: () => void }) => void | Scroll to next item, it takes one optional argument (count), which allows you to specify how many items to cross | -| scrollTo | ({ index: number, count: number, animated: boolean, onFinished?: () => void }) => void | Use count to scroll to a position where relative to the current position, scrollTo({count:-2}) is equivalent to prev(2), scrollTo({count:2}) is equivalent to next(2). And also can jump to specific position, e.g. scrollTo({index:2,animated:false}) | -| getCurrentIndex | ()=>number | Get current item index | diff --git a/docs/props.zh-CN.md b/docs/props.zh-CN.md deleted file mode 100644 index f552ffe3..00000000 --- a/docs/props.zh-CN.md +++ /dev/null @@ -1,67 +0,0 @@ -## 通用 Props - -| name | required | default | types | description | -| ----------------------- | ------------------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------- | -| data | ✅ | | T[] | 即将渲染的数据集合 | -| renderItem | ✅ | | (info: { item: T, index: number, animationValue: SharedValue\ }) => React.ReactElement | 渲染元素的方法 | -| defaultScrollOffsetValue| ❌ | useSharedValue(0) | boolean | 轮播图的默认动画值 | -| autoFillData | ❌ | true | boolean | 将会在`loop`属性设置为 true 时,自动填充 data 元素以满足 loop 循环效果([1] => [1, 1, 1];[1, 2] => [1, 2, 1, 2]) | -| vertical | ❌ | false | boolean | 将元素垂直布局而不是水平 | -| width | 垂直时 ❌ 水平时 ✅ | '100%' | number \| undefined | 指定每一项的宽度 | -| height | 垂直时 ✅ 水平时 ❌ | '100%' | number \| undefined | 指定每一项的高度 | -| mode | ❌ | defalut | 'horizontal-stack'\|'vertical-stack'\|'parallax' | 轮播图播放模式 | -| modeConfig | ❌ | | | 不同 mode 对应不同配置,详情见下方[modeConfig](#`modeConfig` Props) | -| style | ❌ | {} | ViewStyle | 轮播图容器样式 | -| defaultIndex | ❌ | 0 | number | 默认 index | -| autoPlay | ❌ | false | boolean | 是否自动播放 | -| autoPlayReverse | ❌ | false | boolean | 是否倒序自动播放 | -| autoPlayInterval | ❌ | 1000 | number | 自动播放的间隔 | -| scrollAnimationDuration | ❌ | 500 | number | 滚动动画完成所需的时间 | -| loop | ❌ | true | boolean | 是否循环播放 | -| testID | ❌ | | string | 在 E2E 测试中用来定位视图 | -| onSnapToItem | ❌ | | (index: number) => void | 切换至另一张轮播图时触发 | -| onScrollBegin | ❌ | | () => void | 切换动画开始时触发 | -| onScrollEnd | ❌ | | (index: number) => void | 切换动画结束时触发 | -| withAnimation | ❌ | | {type: 'spring';config: WithSpringConfig;} \| {type: 'timing';config: WithTimingConfig;} | 指定滚动时的动画效果 | -| panGestureHandlerProps | ❌ | {} | Omit,'onHandlerStateChange'> | PanGestureHandler props | -| windowSize | ❌ | 0 | number | 能响应平移手势事件的最大 item 数量,0 表示所有元素都会先响应 | -| onProgressChange | ❌ | | onProgressChange?: (offsetProgress: number,absoluteProgress: number) => void | 当滚动进度发生变化时触发 `offsetProgress`:总的偏移值 (0 390 780 ...); `absoluteProgress`:转化为 index 的进度变化 (0 1 2 ...) | -| modeConfig | ❌ | { snapDirection: 'left',moveSize: window.width,stackInterval: 30,scaleInterval: 0.08,rotateZDeg: 135} | {moveSize?: number;stackInterval?: number;scaleInterval?: number;rotateZDeg?: number;snapDirection?: 'left' \| 'right';} | 堆栈视图的动画样式 | -| pagingEnabled | ❌ | true | boolean | 当值为 true 时,滚动条会停在滚动视图的尺寸的整数倍位置。 | -| overscrollEnabled | ❌ | true | boolean | 当值为 true 时,末尾的元素将会滚动至容器最前方,而不是贴近末尾,如果想要让元素停留在容器末尾可将其设置为 false。 (前置条件: loop=false) | -| snapEnabled | ❌ | true | boolean | 如果启用,松开触摸会滚动到最近的元素,当 pagingEnabled=false 时有效 | -| enabled | ❌ | true | boolean | 当值为 false 时,轮播图将不会响应任何手势行为 | -| customConfig | ❌ | | () => {type?: 'negative' \| 'positive';viewCount?: number;} | 自定义轮播图内部配置 | -| customAnimation | ❌ | | (value: number) => Animated.AnimatedStyleProp | 自定动画,详情见[自定义动画](./custom-animation.zh-CN.md) | -| maxScrollDistancePerSwipe | ❌ | | number | 单次滚动的最大偏移值。如果`props.vertical = true`,则表示`maxScrollDistancePerSwipeY`;如果`props.vertical = false`,则表示`maxScrollDistancePerSwipeX`。 | - -## `modeConfig` Props - -### Parallax - -| name | required | default | types | description | -| ------------------------- | -------- | ------------------------------------------------------------------ | ------ | -------------------------------- | -| parallaxScrollingOffset | ❌ | 100 | number | 控制两侧图片离中间元素的距离 | -| parallaxScrollingScale | ❌ | 0.8 | number | 控制前面/当前/后面图片的缩放比例 | -| parallaxAdjacentItemScale | ❌ | parallaxAdjacentItemScale \|\| Math.pow(parallaxScrollingScale, 2) | number | 控制前面/后面图片的缩放比例 | - -### Stack - -| name | required | default | types | description | -| --------------- | -------- | ------------- | --------------- | ---------------------- | -| showLength | ❌ | data.length-1 | number | 展示数量 | -| moveSize | ❌ | screen.width | number | 移动距离 | -| stackInterval | ❌ | 18 | number | 间隔距离 | -| scaleInterval | ❌ | 0.04 | number | 每一个元素缩放的间隔 | -| opacityInterval | ❌ | 0.1 | number | 每一个元素透明度的间隔 | -| rotateZDeg | ❌ | 30 | number | 旋转角度 | -| snapDirection | ❌ | 'left' | 'left'\|'right' | 图片滑动方向 | - -## Ref - -| name | types | description | -| --------------- | -------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| prev | ({ count: number, animated: boolean, onFinished?: () => void }) => void | 切换至上一项,可以指定`count`决定切换的数量 | -| next | ({ count: number, animated: boolean, onFinished?: () => void }) => void | 切换至下一张,可以指定`count`决定切换的数量 | -| scrollTo | ({ index: number, count: number, animated: boolean, onFinished?: () => void }) => void | 切换到距离当前相对位置为`count`的位置,`scrollTo({count:-2})`等价于`prev(2)`,`scrollTo({count:2})`等价于`next(2)`. 同样可以跳转到指定位置 `scrollTo({index:2,animated:false})` | -| getCurrentIndex | ()=>number | 获得当前轮播图下标 | diff --git a/example/app/src/Home.tsx b/example/app/src/Home.tsx index d440d2c9..b09b30b6 100644 --- a/example/app/src/Home.tsx +++ b/example/app/src/Home.tsx @@ -139,7 +139,7 @@ export const CustomAnimations = [ }, ]; -export const OtherPage = [ +export const ExperimentPage = [ { name: "complex", page: ComplexComponent, @@ -155,7 +155,7 @@ if (isIos || isAndroid) { () => import("./pages/snap-carousel-loop"), ); - OtherPage.push( + ExperimentPage.push( { name: "snap-carousel-complex", // eslint-disable-next-line @typescript-eslint/ban-ts-comment @@ -218,7 +218,7 @@ const Index = () => { {renderSection('Layouts', LayoutsPage)} {renderSection('CustomAnimations', CustomAnimations)} - {renderSection('Others', OtherPage)} + {renderSection('Experiment', ExperimentPage)} ); }; diff --git a/example/app/src/navigation/root.tsx b/example/app/src/navigation/root.tsx index 8d1848e2..53b4c13a 100644 --- a/example/app/src/navigation/root.tsx +++ b/example/app/src/navigation/root.tsx @@ -7,7 +7,7 @@ import { createStackNavigator } from "@react-navigation/stack"; import * as Updates from "expo-updates"; import { QRCode } from "../components/QRCode"; -import Home, { CustomAnimations, LayoutsPage, OtherPage } from "../Home"; +import Home, { CustomAnimations, LayoutsPage, ExperimentPage } from "../Home"; import { isWeb } from "../utils"; import { useColor } from "../hooks/useColor"; import { useWebContext } from "../store/WebProvider"; @@ -87,7 +87,7 @@ export const RootNavigator = () => { {[ ...LayoutsPage, ...CustomAnimations, - ...OtherPage, + ...ExperimentPage, ].map((item) => { return ( g.enabled(true)} // default is true, just for demo pagingEnabled={isPagingEnabled} onSnapToItem={index => console.log("current index:", index)} renderItem={({ index }) => } @@ -79,7 +80,7 @@ function Index() { setIsPagingEnabled(!isPagingEnabled); }} > - PagingEnabled:{isPagingEnabled.toString()} + PagingEnabled:{isPagingEnabled.toString()} { @@ -93,7 +94,7 @@ function Index() { console.log(ref.current?.getCurrentIndex()); }} > - Log current index + Log current index { @@ -104,21 +105,21 @@ function Index() { ); }} > - Change data length to:{data.length === 6 ? 8 : 6} + Change data length to:{data.length === 6 ? 8 : 6} { ref.current?.scrollTo({ count: -1, animated: true }); }} > - prev + prev { ref.current?.scrollTo({ count: 1, animated: true }); }} > - next + next diff --git a/example/app/src/types/index.d.ts b/example/app/src/types/index.d.ts new file mode 100644 index 00000000..283bee41 --- /dev/null +++ b/example/app/src/types/index.d.ts @@ -0,0 +1,2 @@ +declare module "react-native-safe-area-context"; + diff --git a/example/website/assets/steps-1.png b/example/website/assets/steps-1.png new file mode 100644 index 00000000..2382f326 Binary files /dev/null and b/example/website/assets/steps-1.png differ diff --git a/example/website/assets/steps-2.png b/example/website/assets/steps-2.png new file mode 100644 index 00000000..b742e51b Binary files /dev/null and b/example/website/assets/steps-2.png differ diff --git a/example/website/assets/steps-3.png b/example/website/assets/steps-3.png new file mode 100644 index 00000000..ba78262a Binary files /dev/null and b/example/website/assets/steps-3.png differ diff --git a/example/website/assets/steps-4.png b/example/website/assets/steps-4.png new file mode 100644 index 00000000..c5f02c42 Binary files /dev/null and b/example/website/assets/steps-4.png differ diff --git a/example/website/assets/steps-5.png b/example/website/assets/steps-5.png new file mode 100644 index 00000000..aecbdef7 Binary files /dev/null and b/example/website/assets/steps-5.png differ diff --git a/example/website/assets/steps-6.jpg b/example/website/assets/steps-6.jpg new file mode 100644 index 00000000..e710fb25 Binary files /dev/null and b/example/website/assets/steps-6.jpg differ diff --git a/example/website/assets/steps-7.jpg b/example/website/assets/steps-7.jpg new file mode 100644 index 00000000..a338be8d Binary files /dev/null and b/example/website/assets/steps-7.jpg differ diff --git a/example/website/assets/steps-8.jpeg b/example/website/assets/steps-8.jpeg new file mode 100644 index 00000000..ebc1e434 Binary files /dev/null and b/example/website/assets/steps-8.jpeg differ diff --git a/example/website/pages/concepts.mdx b/example/website/pages/concepts.mdx index da945c18..01d68abe 100644 --- a/example/website/pages/concepts.mdx +++ b/example/website/pages/concepts.mdx @@ -30,20 +30,20 @@ This is what we expect to see in the execution of RNRC. 1. First we have three images by default and have slid to the second image in the middle -![steps-1](../../../docs/assets/steps-1.png) +![steps-1](../assets/steps-1.png) 2. When we drag the image to the right -![steps-2](../../../docs/assets/steps-2.png) +![steps-2](../assets/steps-2.png) -![steps-3](../../../docs/assets/steps-3.png) +![steps-3](../assets/steps-3.png) 3. When the first image is partially in the viewport, we move the last image to the front -![steps-4](../../../docs/assets/steps-4.png) +![steps-4](../assets/steps-4.png) 4. So we've done a circular scroll to one side and the other way around. It works by sliding and appending, and relies on reanimated, so the whole processing logic is still done in the UI thread, and moving images doesn't cause animation to freeze. -![steps-5](../../../docs/assets/steps-5.png) +![steps-5](../assets/steps-5.png) This is how it works in code. @@ -56,15 +56,15 @@ This is how it works in code. 3. Followed by dealing with how to get at the end of the element at the right time to move to the front, this part of logic in `./src/hooks/useOffsetX.ts`. First we need to know the current window size (the total number of elements rendered on one side). The window size defaults to half the total number of elements, i.e. full render. -![steps-6](../../../docs/assets/steps-6.jpg) +![steps-6](../assets/steps-6.jpg) From the value of the window size we can calculate the position of the end of the forward or reverse element. -![steps-7](../../../docs/assets/steps-7.jpg) +![steps-7](../assets/steps-7.jpg) Then we need to find the boundary (see if the image moves to the front). Currently we set this position to the total length of the side plus half the size of the element. This position is affected by the `windowSize` and can be changed using `windowSize` prop. For example, if `windowSize` is not set and the data length is 5, then one side length is size * (5-1)/2 = size * 2, then the boundary is size * 2 + size * 0.5, if `windowSize` is set to 3, then the boundary is size * 2 + size * 0.5. Size * (3-1)/2 = size * 1, size * 1 + size * 0.5 -![steps-8](../../../docs/assets/steps-8.jpeg) +![steps-8](../assets/steps-8.jpeg) In order to control the position of the elements more intuitively, we place the elements at the origin, and they all overlap at the origin, `translateX:0`. In this case, we need to calculate the base position of each element `startPos` based on the index of the element, for example, the base position of the first image is 0, the base position of the second image is SIZE, the base position of the third image is size * 2, and so on. Then, keeping the position of each element relative to each other, we subtract each element from its base position `startPos` and add the minimum boundary value `number.min_value`, so that we have the logic to change position immediately if we cross the `boundary`. It will be converted automatically by `outputRange`. diff --git a/example/website/pages/faq.mdx b/example/website/pages/faq.mdx index 9762651b..409db35c 100644 --- a/example/website/pages/faq.mdx +++ b/example/website/pages/faq.mdx @@ -34,9 +34,9 @@ When rendering a large number of elements, you can use the 'windowSize' property ```tsx copy ( + gestureChain.activeOffsetX([-10, 10]) + )} /> ``` diff --git a/example/website/pages/props.mdx b/example/website/pages/props.mdx index 57504ce4..e5ab2173 100644 --- a/example/website/pages/props.mdx +++ b/example/website/pages/props.mdx @@ -199,13 +199,13 @@ Specifies the scrolling animation effect | ------ | ------- | -------- | | \{type: 'spring';config: WithSpringConfig;\} \| \{type: 'timing';config: WithTimingConfig;\} | - | ❌ | -### `panGestureHandlerProps` +### `onConfigurePanGesture` -PanGestureHandler props +PanGesture config | type | default | required | | ------ | ------- | -------- | -| Omit\,'onHandlerStateChange'\> | \{\} | ❌ | +| onConfigurePanGesture?: \(panGesture: PanGesture\) => void | - | ❌ | ### `windowSize` diff --git a/example/website/yarn.lock b/example/website/yarn.lock index dea0a34d..6adade38 100644 --- a/example/website/yarn.lock +++ b/example/website/yarn.lock @@ -2,22 +2,22 @@ # Manual changes might be lost - proceed with caution! __metadata: - version: 6 - cacheKey: 8 + version: 8 + cacheKey: 10 "@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.6": version: 7.23.5 resolution: "@babel/runtime@npm:7.23.5" dependencies: - regenerator-runtime: ^0.14.0 - checksum: 164d9802424f06908e62d29b8fd3a87db55accf82f46f964ac481dcead11ff7df8391e3696e5fa91a8ca10ea8845bf650acd730fa88cf13f8026cd8d5eec6936 + regenerator-runtime: "npm:^0.14.0" + checksum: 0f1669f639af30a0a2948ffcefa2c61935f337b0777bd94f8d7bc66bba8e7d4499e725caeb0449540d9c6d67399b733c4e719babb43ce9a0f33095aa01b42b37 languageName: node linkType: hard "@braintree/sanitize-url@npm:^6.0.1": version: 6.0.4 resolution: "@braintree/sanitize-url@npm:6.0.4" - checksum: f5ec6048973722ea1c46ae555d2e9eb848d7fa258994f8ea7d6db9514ee754ea3ef344ef71b3696d486776bcb839f3124e79f67c6b5b2814ed2da220b340627c + checksum: 52de7e19df29039134e2f0fbe6d11dbc15423d18799dc5306fbc2c92d6a7bd0e6c3c079c09be99260647cc85c3ca910e2099d819965a1d8604d05e5d3f3bb358 languageName: node linkType: hard @@ -25,11 +25,11 @@ __metadata: version: 1.7.17 resolution: "@headlessui/react@npm:1.7.17" dependencies: - client-only: ^0.0.1 + client-only: "npm:^0.0.1" peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 - checksum: 0cdb67747e7f606f78214dac0b48573247779e70534b4471515c094b74addda173dc6a9847d33aea9c6e6bc151016c034125328953077e32aa7947ebabed91f7 + checksum: 00ad7db43bc1904a149925693f9d99d000e237d6e7206d0ded6bf43089070e0cb5b7188bef6f2f7d0d9175039dc90838f1cb9d0cc2b7479d6139da40de637fb7 languageName: node linkType: hard @@ -37,24 +37,24 @@ __metadata: version: 2.3.0 resolution: "@mdx-js/mdx@npm:2.3.0" dependencies: - "@types/estree-jsx": ^1.0.0 - "@types/mdx": ^2.0.0 - estree-util-build-jsx: ^2.0.0 - estree-util-is-identifier-name: ^2.0.0 - estree-util-to-js: ^1.1.0 - estree-walker: ^3.0.0 - hast-util-to-estree: ^2.0.0 - markdown-extensions: ^1.0.0 - periscopic: ^3.0.0 - remark-mdx: ^2.0.0 - remark-parse: ^10.0.0 - remark-rehype: ^10.0.0 - unified: ^10.0.0 - unist-util-position-from-estree: ^1.0.0 - unist-util-stringify-position: ^3.0.0 - unist-util-visit: ^4.0.0 - vfile: ^5.0.0 - checksum: d918766a326502ec0b54adee61dc2930daf5b748acb9107f9bfd1ab0dbc4d7b1a4d0dbb9e21da9dd2a9fc2f9950b2973a43c6ba62d3a72eb67a30f6c953e5be8 + "@types/estree-jsx": "npm:^1.0.0" + "@types/mdx": "npm:^2.0.0" + estree-util-build-jsx: "npm:^2.0.0" + estree-util-is-identifier-name: "npm:^2.0.0" + estree-util-to-js: "npm:^1.1.0" + estree-walker: "npm:^3.0.0" + hast-util-to-estree: "npm:^2.0.0" + markdown-extensions: "npm:^1.0.0" + periscopic: "npm:^3.0.0" + remark-mdx: "npm:^2.0.0" + remark-parse: "npm:^10.0.0" + remark-rehype: "npm:^10.0.0" + unified: "npm:^10.0.0" + unist-util-position-from-estree: "npm:^1.0.0" + unist-util-stringify-position: "npm:^3.0.0" + unist-util-visit: "npm:^4.0.0" + vfile: "npm:^5.0.0" + checksum: 3f56d25d7e410278881e8ff8ea9efef0b538aed7d4c3481f89790be832863236c3e582b4233a3d5a5f05491f23d2ba6df46c04deab268976013032c4603ccafe languageName: node linkType: hard @@ -62,11 +62,11 @@ __metadata: version: 2.3.0 resolution: "@mdx-js/react@npm:2.3.0" dependencies: - "@types/mdx": ^2.0.0 - "@types/react": ">=16" + "@types/mdx": "npm:^2.0.0" + "@types/react": "npm:>=16" peerDependencies: react: ">=16" - checksum: f45fe779556e6cd9a787f711274480e0638b63c460f192ebdcd77cc07ffa61e23c98cb46dd46e577093e1cb4997a232a848d1fb0ba850ae204422cf603add524 + checksum: bce1cb1dde0a9a2b786cd9167b9e2bc0e3be52c195a4a79aaf1677470566d1fd2979d01baca2380c76aa4a1a27cd89f051484e595fdc4144a428d6af39bb667a languageName: node linkType: hard @@ -151,17 +151,17 @@ __metadata: version: 0.1.9 resolution: "@napi-rs/simple-git@npm:0.1.9" dependencies: - "@napi-rs/simple-git-android-arm-eabi": 0.1.9 - "@napi-rs/simple-git-android-arm64": 0.1.9 - "@napi-rs/simple-git-darwin-arm64": 0.1.9 - "@napi-rs/simple-git-darwin-x64": 0.1.9 - "@napi-rs/simple-git-linux-arm-gnueabihf": 0.1.9 - "@napi-rs/simple-git-linux-arm64-gnu": 0.1.9 - "@napi-rs/simple-git-linux-arm64-musl": 0.1.9 - "@napi-rs/simple-git-linux-x64-gnu": 0.1.9 - "@napi-rs/simple-git-linux-x64-musl": 0.1.9 - "@napi-rs/simple-git-win32-arm64-msvc": 0.1.9 - "@napi-rs/simple-git-win32-x64-msvc": 0.1.9 + "@napi-rs/simple-git-android-arm-eabi": "npm:0.1.9" + "@napi-rs/simple-git-android-arm64": "npm:0.1.9" + "@napi-rs/simple-git-darwin-arm64": "npm:0.1.9" + "@napi-rs/simple-git-darwin-x64": "npm:0.1.9" + "@napi-rs/simple-git-linux-arm-gnueabihf": "npm:0.1.9" + "@napi-rs/simple-git-linux-arm64-gnu": "npm:0.1.9" + "@napi-rs/simple-git-linux-arm64-musl": "npm:0.1.9" + "@napi-rs/simple-git-linux-x64-gnu": "npm:0.1.9" + "@napi-rs/simple-git-linux-x64-musl": "npm:0.1.9" + "@napi-rs/simple-git-win32-arm64-msvc": "npm:0.1.9" + "@napi-rs/simple-git-win32-x64-msvc": "npm:0.1.9" dependenciesMeta: "@napi-rs/simple-git-android-arm-eabi": optional: true @@ -185,14 +185,14 @@ __metadata: optional: true "@napi-rs/simple-git-win32-x64-msvc": optional: true - checksum: 4e261908b84807d0b99af6e85f99f8ad8f0f22ffbaea8328834b778e62d4db5fcbb0fedab2e27e1da05b173160a0a436c9ba8fc765dfb8fa5a008066b0ab16eb + checksum: 6b23a26ba8d8a5a760156370bc9dec57fb05fb454cd8be468f6c88a7d6c9fcde96af9c9f7980c339e46137c95194621a812f0ab8c9b67c52b0addf59ed38c726 languageName: node linkType: hard "@next/env@npm:13.5.6": version: 13.5.6 resolution: "@next/env@npm:13.5.6" - checksum: 5e8f3f6f987a15dad3cd7b2bcac64a6382c2ec372d95d0ce6ab295eb59c9731222017eebf71ff3005932de2571f7543bce7e5c6a8c90030207fb819404138dc2 + checksum: c81bd6052db366407da701e4e431becbc80ef36a88bec7883b0266cdfeb45a7da959d37c38e1a816006cd2da287e5ff5b928bdb71025e3d4aa59e07dea3edd59 languageName: node linkType: hard @@ -262,14 +262,14 @@ __metadata: "@popperjs/core@npm:^2.11.6": version: 2.11.8 resolution: "@popperjs/core@npm:2.11.8" - checksum: e5c69fdebf52a4012f6a1f14817ca8e9599cb1be73dd1387e1785e2ed5e5f0862ff817f420a87c7fc532add1f88a12e25aeb010ffcbdc98eace3d55ce2139cf0 + checksum: ddd16090cde777aaf102940f05d0274602079a95ad9805bd20bc55dcc7c3a2ba1b99dd5c73e5cc2753c3d31250ca52a67d58059459d7d27debb983a9f552936c languageName: node linkType: hard "@react-native/normalize-color@npm:^2.1.0": version: 2.1.0 resolution: "@react-native/normalize-color@npm:2.1.0" - checksum: 8ccbd40b3c7629f1dc97b3e9aadd95fd3507fcf2e37535a6299a70436ab891c34cbdc4240b07380553d6e85dd909e23d5773b5be1da2906b026312e0b0768838 + checksum: a72b98538e6b7e265fb0669b8767d5f788777fb1a0ac1df7b0c82d8b3a804c8122aa7b819688c5e36fcf90b5ba93050b0070e29d3f0d70ab9530c2abd2bb9f9e languageName: node linkType: hard @@ -284,8 +284,8 @@ __metadata: version: 0.5.2 resolution: "@swc/helpers@npm:0.5.2" dependencies: - tslib: ^2.4.0 - checksum: 51d7e3d8bd56818c49d6bfbd715f0dbeedc13cf723af41166e45c03e37f109336bbcb57a1f2020f4015957721aeb21e1a7fff281233d797ff7d3dd1f447fa258 + tslib: "npm:^2.4.0" + checksum: 3a3b179b3369acd26c5da89a0e779c756ae5231eb18a5507524c7abf955f488d34d86649f5b8417a0e19879688470d06319f5cfca2273d6d6b2046950e0d79af languageName: node linkType: hard @@ -293,11 +293,11 @@ __metadata: version: 0.0.5 resolution: "@theguild/remark-mermaid@npm:0.0.5" dependencies: - mermaid: ^10.2.2 - unist-util-visit: ^5.0.0 + mermaid: "npm:^10.2.2" + unist-util-visit: "npm:^5.0.0" peerDependencies: react: ^18.2.0 - checksum: 64c8419b5591565bb248a341406d5e5a9bc2d581550ce65dc578acb27ba2aaade00cc78066acc3edc55133916eff18ddc3ed74f7ce50d14a9f11e24186b01fbe + checksum: 964bf5ced5216b85846f1e0dcbae0547157e672d5268b022e0e69e5488eeaea59cb24e46f3090f72b043791fdde25b7340a1993ff4da85cd932d8bffb3843e61 languageName: node linkType: hard @@ -305,16 +305,16 @@ __metadata: version: 0.2.1 resolution: "@theguild/remark-npm2yarn@npm:0.2.1" dependencies: - npm-to-yarn: ^2.1.0 - unist-util-visit: ^5.0.0 - checksum: 382587db3c400ce4ad4c6b9388ad350a88d209f72985808919aafacaea587f751bc0dec3c5699a5a61e7dfb4e5afc47d9f31d4a7083c1584322d1a8e5015cde2 + npm-to-yarn: "npm:^2.1.0" + unist-util-visit: "npm:^5.0.0" + checksum: c8cd8647ae9a977721ea191cf7343d9ce8eafaa53cc417013ada4986240b179297333ebd6886285d74e80d66485a0fbfeb6fd973d254b2041c69b749140a305a languageName: node linkType: hard "@tootallnate/quickjs-emscripten@npm:^0.23.0": version: 0.23.0 resolution: "@tootallnate/quickjs-emscripten@npm:0.23.0" - checksum: c350a2947ffb80b22e14ff35099fd582d1340d65723384a0fd0515e905e2534459ad2f301a43279a37308a27c99273c932e64649abd57d0bb3ca8c557150eccc + checksum: 95cbad451d195b9d8f312103abafcc010741eb9256e98d7953e7c026d4c1ed4abb2248a14018bf49e3201c350104fc643137b23aa0bbed2744c795c39dc48a28 languageName: node linkType: hard @@ -322,15 +322,15 @@ __metadata: version: 4.0.6 resolution: "@types/acorn@npm:4.0.6" dependencies: - "@types/estree": "*" - checksum: 60e1fd28af18d6cb54a93a7231c7c18774a9a8739c9b179e9e8750dca631e10cbef2d82b02830ea3f557b1d121e6406441e9e1250bd492dc81d4b3456e76e4d4 + "@types/estree": "npm:*" + checksum: e00671d5055d06b07feccb8c2841467a4bdd1ab95a29e191d51cacc08c496e1ba1f54edeefab274bb2ba51cb45b0aaaa662a63897650e9d02e9997ad82124ae4 languageName: node linkType: hard "@types/d3-scale-chromatic@npm:^3.0.0": version: 3.0.3 resolution: "@types/d3-scale-chromatic@npm:3.0.3" - checksum: a465d126a00a71d3824957283580b4b404fe6f6bb52eb2b7303047fffed2bec6e31aeb34bfb30313e72ee1d75243c50ec5a45824eaf547f9c0849a1379527662 + checksum: cc5488af1136c3f9e28aa3c3ee2dc3e5e843c666f64360fb3870f0b8679cd2ee844edaa5a93504a9665deb98cb3c2ae2257d610c338fa8caa4a31ab6fdeb2f15 languageName: node linkType: hard @@ -338,15 +338,15 @@ __metadata: version: 4.0.8 resolution: "@types/d3-scale@npm:4.0.8" dependencies: - "@types/d3-time": "*" - checksum: 3b1906da895564f73bb3d0415033d9a8aefe7c4f516f970176d5b2ff7a417bd27ae98486e9a9aa0472001dc9885a9204279a1973a985553bdb3ee9bbc1b94018 + "@types/d3-time": "npm:*" + checksum: 376e4f2199ee6db70906651587a4521976920fa5eaa847a976c434e7a8171cbfeeab515cc510c5130b1f64fcf95b9750a7fd21dfc0a40fc3398641aa7dd4e7e2 languageName: node linkType: hard "@types/d3-time@npm:*": version: 3.0.3 resolution: "@types/d3-time@npm:3.0.3" - checksum: a071826c80efdb1999e6406fef2db516d45f3906da3a9a4da8517fa863bae53c4c1056ca5347a20921660607d21ec874fd2febe0e961adb7be6954255587d08f + checksum: 4e6bf24ec422f0893747e5020592e107bb3d96764a43d5f0bff666202bd71f052c73f735b50ec66296a6efd5766ca40b6a4e8ce3bbc61217dbe9467340608c12 languageName: node linkType: hard @@ -354,7 +354,7 @@ __metadata: version: 4.1.12 resolution: "@types/debug@npm:4.1.12" dependencies: - "@types/ms": "*" + "@types/ms": "npm:*" checksum: 47876a852de8240bfdaf7481357af2b88cb660d30c72e73789abf00c499d6bc7cd5e52f41c915d1b9cd8ec9fef5b05688d7b7aef17f7f272c2d04679508d1053 languageName: node linkType: hard @@ -363,7 +363,7 @@ __metadata: version: 1.0.3 resolution: "@types/estree-jsx@npm:1.0.3" dependencies: - "@types/estree": "*" + "@types/estree": "npm:*" checksum: 6887a134308b6db4a33a147b56c9d0a47c17ea7e810bdd7c498c306a0fd00bcf2619cb0f57f74009d03dda974b3cd7e414767f85332b1d1b2be30a3ef9e1cca9 languageName: node linkType: hard @@ -371,7 +371,7 @@ __metadata: "@types/estree@npm:*, @types/estree@npm:^1.0.0": version: 1.0.5 resolution: "@types/estree@npm:1.0.5" - checksum: dd8b5bed28e6213b7acd0fb665a84e693554d850b0df423ac8076cc3ad5823a6bc26b0251d080bdc545af83179ede51dd3f6fa78cad2c46ed1f29624ddf3e41a + checksum: 7de6d928dd4010b0e20c6919e1a6c27b61f8d4567befa89252055fad503d587ecb9a1e3eab1b1901f923964d7019796db810b7fd6430acb26c32866d126fd408 languageName: node linkType: hard @@ -379,7 +379,7 @@ __metadata: version: 2.3.8 resolution: "@types/hast@npm:2.3.8" dependencies: - "@types/unist": ^2 + "@types/unist": "npm:^2" checksum: 4c3b3efb7067d32a568a9bf5d2a7599f99ec08c2eaade3aaeb579b7a31bcdf8f6475f56c1ac5bc3f4e4e07b84a93a9b1cf1ef9a8b52b39e3deabea7989e5dd4b languageName: node linkType: hard @@ -388,15 +388,15 @@ __metadata: version: 3.0.3 resolution: "@types/hast@npm:3.0.3" dependencies: - "@types/unist": "*" - checksum: ca204207550fd6848ee20b5ba2018fd54f515d59a8b80375cdbe392ba2b4b130dac25fdfbaf9f2a70d2aec9d074a34dc14d4d59d31fa3ede80ef9850afad5d3c + "@types/unist": "npm:*" + checksum: cf380cb351215847a598b06c10c0139a694fbb9a5cca27e7a836df4c9d616873ff5b01326530907b5a95b6a4b8fc928bcecb46424cc6f9bd1f53ba377f190d86 languageName: node linkType: hard "@types/js-yaml@npm:^4.0.0": version: 4.0.9 resolution: "@types/js-yaml@npm:4.0.9" - checksum: e5e5e49b5789a29fdb1f7d204f82de11cb9e8f6cb24ab064c616da5d6e1b3ccfbf95aa5d1498a9fbd3b9e745564e69b4a20b6c530b5a8bbb2d4eb830cda9bc69 + checksum: a0ce595db8a987904badd21fc50f9f444cb73069f4b95a76cc222e0a17b3ff180669059c763ec314bc4c3ce284379177a9da80e83c5f650c6c1310cafbfaa8e6 languageName: node linkType: hard @@ -411,8 +411,8 @@ __metadata: version: 3.0.15 resolution: "@types/mdast@npm:3.0.15" dependencies: - "@types/unist": ^2 - checksum: af85042a4e3af3f879bde4059fa9e76c71cb552dffc896cdcc6cf9dc1fd38e37035c2dbd6245cfa6535b433f1f0478f5549696234ccace47a64055a10c656530 + "@types/unist": "npm:^2" + checksum: 050a5c1383928b2688dd145382a22535e2af87dc3fd592c843abb7851bcc99893a1ee0f63be19fc4e89779387ec26a57486cfb425b016c0b2a98a17fc4a1e8b3 languageName: node linkType: hard @@ -420,15 +420,15 @@ __metadata: version: 4.0.3 resolution: "@types/mdast@npm:4.0.3" dependencies: - "@types/unist": "*" - checksum: 345c5a22fccf05f35239ea6313ee4aaf6ebed5927c03ac79744abccb69b9ba5e692f9b771e36a012b79e17429082cada30f579e9c43b8a54e0ffb365431498b6 + "@types/unist": "npm:*" + checksum: 6d2d8f00ffaff6663dd67ea9ab999a5e52066c001432a9b99947fa9e76bccba819dfca40e419588a637a70d42cd405071f5b76efd4ddeb1dc721353b7cc73623 languageName: node linkType: hard "@types/mdx@npm:^2.0.0": version: 2.0.10 resolution: "@types/mdx@npm:2.0.10" - checksum: 3e2fb24b7bfae739a59573344171292b6c31256ad9afddc00232e9de4fbc97b270e1a11d13cb935cba0d9bbb9bc7348793eda82ee752233c5d2289f4b897f719 + checksum: 9e4ac676d191142e5cd33bb5f07f57f1ea0138ce943ad971df8a47be907def83daad0c351825fdd59fe94fc94a58579fb329185b8def8ce5478d1fb378ec7ac2 languageName: node linkType: hard @@ -442,7 +442,7 @@ __metadata: "@types/node@npm:18.11.10": version: 18.11.10 resolution: "@types/node@npm:18.11.10" - checksum: 0f60cb090b2ee91fcd3dc4311bc1ed7889b92f14644c0069f100776f86474c12eebbcc6c75bc0d7d96b975a103b4d5d6b3c22b4e88bea6e7f4e2b1bb0daf5ea8 + checksum: 5a20103af43d76e988d8b270f9a88fc1e633dd7cdb9c0b8f15f1ed7b8ae1cdbcc562ec17db31735a696357bfd3a89563f5c6600c0ab7a8140beb21fe21f85ec4 languageName: node linkType: hard @@ -457,10 +457,10 @@ __metadata: version: 18.2.39 resolution: "@types/react@npm:18.2.39" dependencies: - "@types/prop-types": "*" - "@types/scheduler": "*" - csstype: ^3.0.2 - checksum: 9bcb1f1f060f1bf8f4730fb1c7772d0323a6e707f274efee3b976c40d92af4677df4d88e9135faaacf34e13e02f92ef24eb7d0cbcf7fb75c1883f5623ccb19f4 + "@types/prop-types": "npm:*" + "@types/scheduler": "npm:*" + csstype: "npm:^3.0.2" + checksum: 870f7774c676ae0f3ab6339a62b3315f5a296e89412358b15a5249a61e781a8807a2253ef7ad2ec98e7a5bea1e8c3ddd95b02226d6b8ac4a085da59b4a496564 languageName: node linkType: hard @@ -488,7 +488,7 @@ __metadata: "@ungap/structured-clone@npm:^1.0.0": version: 1.2.0 resolution: "@ungap/structured-clone@npm:1.2.0" - checksum: 4f656b7b4672f2ce6e272f2427d8b0824ed11546a601d8d5412b9d7704e83db38a8d9f402ecdf2b9063fc164af842ad0ec4a55819f621ed7e7ea4d1efcc74524 + checksum: c6fe89a505e513a7592e1438280db1c075764793a2397877ff1351721fe8792a966a5359769e30242b3cd023f2efb9e63ca2ca88019d73b564488cc20e3eab12 languageName: node linkType: hard @@ -496,8 +496,8 @@ __metadata: version: 1.1.1 resolution: "@vercel/analytics@npm:1.1.1" dependencies: - server-only: ^0.0.1 - checksum: 25f0259a5730a05b9df3bb40309ff75db53d4136e2db24d8287eccb346de08e55484c885679746d4cfbc8418241c4a357ad07b34751380ffa108aaf844f4203e + server-only: "npm:^0.0.1" + checksum: fece944678360085a5deaea3afdade16cab67097dca6585e02a1c4c67ac3ba91b8e0bb848b7ec686b87757aad763df5bae41ce103bdc16c6e586b9390d0b4c11 languageName: node linkType: hard @@ -506,7 +506,7 @@ __metadata: resolution: "acorn-jsx@npm:5.3.2" peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: c3d3b2a89c9a056b205b69530a37b972b404ee46ec8e5b341666f9513d3163e2a4f214a71f4dfc7370f5a9c07472d2fd1c11c91c3f03d093e37637d95da98950 + checksum: d4371eaef7995530b5b5ca4183ff6f062ca17901a6d3f673c9ac011b01ede37e7a1f7f61f8f5cfe709e88054757bb8f3277dc4061087cdf4f2a1f90ccbcdb977 languageName: node linkType: hard @@ -515,7 +515,7 @@ __metadata: resolution: "acorn@npm:8.11.2" bin: acorn: bin/acorn - checksum: 818450408684da89423e3daae24e4dc9b68692db8ab49ea4569c7c5abb7a3f23669438bf129cc81dfdada95e1c9b944ee1bfca2c57a05a4dc73834a612fbf6a7 + checksum: ff559b891382ad4cd34cc3c493511d0a7075a51f5f9f02a03440e92be3705679367238338566c5fbd3521ecadd565d29301bc8e16cb48379206bffbff3d72500 languageName: node linkType: hard @@ -523,7 +523,7 @@ __metadata: version: 7.1.0 resolution: "agent-base@npm:7.1.0" dependencies: - debug: ^4.3.4 + debug: "npm:^4.3.4" checksum: f7828f991470a0cc22cb579c86a18cbae83d8a3cbed39992ab34fc7217c4d126017f1c74d0ab66be87f71455318a8ea3e757d6a37881b8d0f2a2c6aa55e5418f languageName: node linkType: hard @@ -532,15 +532,15 @@ __metadata: version: 3.5.2 resolution: "agentkeepalive@npm:3.5.2" dependencies: - humanize-ms: ^1.2.1 - checksum: 75ecb0f764cae3b3c2ba919e2230ac5ff82051e029d8c74d5044e29ddbec14106f696be0196ac83ed370c8dabd2e5ff67bd7601b24660f3d9ed62bd3cdf0f23a + humanize-ms: "npm:^1.2.1" + checksum: 093d6557fc7767e7bf339085fcf9d08c00d4e7e1b2654d181b10902d77da903fb8e1d4d64a488908ed4518b68e2c35952a5de4a7b0df330ad39940f4b9cbe9fe languageName: node linkType: hard "ansi-sequence-parser@npm:^1.1.0": version: 1.1.1 resolution: "ansi-sequence-parser@npm:1.1.1" - checksum: ead5b15c596e8e85ca02951a844366c6776769dcc9fd1bd3a0db11bb21364554822c6a439877fb599e7e1ffa0b5f039f1e5501423950457f3dcb2f480c30b188 + checksum: 9ce30f257badc2ef62cac8028a7e26c368d22bf26650427192e8ffd102da42e377e3affe90fae58062eecc963b0b055f510dde3b677c7e0c433c67069b5a8ee5 languageName: node linkType: hard @@ -548,7 +548,7 @@ __metadata: version: 3.2.1 resolution: "ansi-styles@npm:3.2.1" dependencies: - color-convert: ^1.9.0 + color-convert: "npm:^1.9.0" checksum: d85ade01c10e5dd77b6c89f34ed7531da5830d2cb5882c645f330079975b716438cd7ebb81d0d6e6b4f9c577f19ae41ab55f07f19786b02f9dfd9e0377395665 languageName: node linkType: hard @@ -556,14 +556,14 @@ __metadata: "arch@npm:^2.1.0": version: 2.2.0 resolution: "arch@npm:2.2.0" - checksum: e21b7635029fe8e9cdd5a026f9a6c659103e63fff423834323cdf836a1bb240a72d0c39ca8c470f84643385cf581bd8eda2cad8bf493e27e54bd9783abe9101f + checksum: e35dbc6d362297000ab90930069576ba165fe63cd52383efcce14bd66c1b16a91ce849e1fd239964ed029d5e0bdfc32f68e9c7331b7df6c84ddebebfdbf242f7 languageName: node linkType: hard "arg@npm:1.0.0": version: 1.0.0 resolution: "arg@npm:1.0.0" - checksum: 0a35939e3cb59d4f18207884563e00b0f71647becccec932348e9c5bdecfe6ca41b2ed854bbb267a2e87f97f605ed3ca936f2f0b3313bf88be6d7cdbb2d0a4b1 + checksum: a4cbea033cee9a5ff0be251d5fe8e18db23c22c80c3ea5effe2ee8cbf0b9a93cbffa466cb63b6325b2f87485326219b6080fa038a630ec97d20b6d9918980309 languageName: node linkType: hard @@ -571,22 +571,22 @@ __metadata: version: 1.0.10 resolution: "argparse@npm:1.0.10" dependencies: - sprintf-js: ~1.0.2 - checksum: 7ca6e45583a28de7258e39e13d81e925cfa25d7d4aacbf806a382d3c02fcb13403a07fb8aeef949f10a7cfe4a62da0e2e807b348a5980554cc28ee573ef95945 + sprintf-js: "npm:~1.0.2" + checksum: c6a621343a553ff3779390bb5ee9c2263d6643ebcd7843227bdde6cc7adbed796eb5540ca98db19e3fd7b4714e1faa51551f8849b268bb62df27ddb15cbcd91e languageName: node linkType: hard "argparse@npm:^2.0.1": version: 2.0.1 resolution: "argparse@npm:2.0.1" - checksum: 83644b56493e89a254bae05702abf3a1101b4fa4d0ca31df1c9985275a5a5bd47b3c27b7fa0b71098d41114d8ca000e6ed90cad764b306f8a503665e4d517ced + checksum: 18640244e641a417ec75a9bd38b0b2b6b95af5199aa241b131d4b2fb206f334d7ecc600bd194861610a5579084978bfcbb02baa399dbe442d56d0ae5e60dbaef languageName: node linkType: hard "asap@npm:^2.0.0, asap@npm:~2.0.3": version: 2.0.6 resolution: "asap@npm:2.0.6" - checksum: b296c92c4b969e973260e47523207cd5769abd27c245a68c26dc7a0fe8053c55bb04360237cb51cab1df52be939da77150ace99ad331fb7fb13b3423ed73ff3d + checksum: b244c0458c571945e4b3be0b14eb001bea5596f9868cc50cc711dc03d58a7e953517d3f0dad81ccde3ff37d1f074701fa76a6f07d41aaa992d7204a37b915dda languageName: node linkType: hard @@ -594,8 +594,8 @@ __metadata: version: 0.13.4 resolution: "ast-types@npm:0.13.4" dependencies: - tslib: ^2.0.1 - checksum: 5a51f7b70588ecced3601845a0e203279ca2f5fdc184416a0a1640c93ec0a267241d6090a328e78eebb8de81f8754754e0a4f1558ba2a3d638f8ccbd0b1f0eff + tslib: "npm:^2.0.1" + checksum: c55b375b9aaf44713d8c0f77a08215ab6d44f368b13e44f2141c421022af3c62b615a30c8ea629457f0cbaec409c713401c0188a124552c8fe4a5ad6b17ff3c3 languageName: node linkType: hard @@ -604,14 +604,14 @@ __metadata: resolution: "astring@npm:1.8.6" bin: astring: bin/astring - checksum: 6f034d2acef1dac8bb231e7cc26c573d3c14e1975ea6e04f20312b43d4f462f963209bc64187d25d477a182dc3c33277959a0156ab7a3617aa79b1eac4d88e1f + checksum: 5c1eb7cf3e8ff7da2021c887dddd887c6ae307767e76ee4418eb02dfee69794c397ea4dccaf3f28975ecd8eb32a5fe4dce108d35b2e4c6429c2a7ec9b7b7de57 languageName: node linkType: hard "asynckit@npm:^0.4.0": version: 0.4.0 resolution: "asynckit@npm:0.4.0" - checksum: 7b78c451df768adba04e2d02e63e2d0bf3b07adcd6e42b4cf665cb7ce899bedd344c69a1dcbce355b5f972d597b25aaa1c1742b52cffd9caccb22f348114f6be + checksum: 3ce727cbc78f69d6a4722517a58ee926c8c21083633b1d3fdf66fd688f6c127a53a592141bd4866f9b63240a86e9d8e974b13919450bd17fa33c2d22c4558ad8 languageName: node linkType: hard @@ -632,7 +632,7 @@ __metadata: "basic-ftp@npm:^5.0.2": version: 5.0.3 resolution: "basic-ftp@npm:5.0.3" - checksum: 8b04e88eb85a64de9311721bb0707c9cd70453eefdd854cab85438e6f46fb6c597ddad57ed1acf0a9ede3c677b14e657f51051688a5f23d6f3ea7b5d9073b850 + checksum: 8f69811a7f4088c5ae39025f1a662522aad517b4065365fbbe80676dc9ccf7a188463dfcb2d9573af2af859d7de70015f612c20a04a311b520efbf7c21dc1ff2 languageName: node linkType: hard @@ -640,16 +640,16 @@ __metadata: version: 6.0.3 resolution: "buffer@npm:6.0.3" dependencies: - base64-js: ^1.3.1 - ieee754: ^1.2.1 - checksum: 5ad23293d9a731e4318e420025800b42bf0d264004c0286c8cc010af7a270c7a0f6522e84f54b9ad65cbd6db20b8badbfd8d2ebf4f80fa03dab093b89e68c3f9 + base64-js: "npm:^1.3.1" + ieee754: "npm:^1.2.1" + checksum: b6bc68237ebf29bdacae48ce60e5e28fc53ae886301f2ad9496618efac49427ed79096750033e7eab1897a4f26ae374ace49106a5758f38fb70c78c9fda2c3b1 languageName: node linkType: hard "builtins@npm:^1.0.3": version: 1.0.3 resolution: "builtins@npm:1.0.3" - checksum: 47ce94f7eee0e644969da1f1a28e5f29bd2e48b25b2bbb61164c345881086e29464ccb1fb88dbc155ea26e8b1f5fc8a923b26c8c1ed0935b67b644d410674513 + checksum: 8f756616bd3d92611bcb5bcc3008308e7cdaadbc4603a5ce6fe709193198bc115351d138524d79e5269339ef7ba5ba73185da541c7b4bc076b00dd0124f938f6 languageName: node linkType: hard @@ -657,8 +657,8 @@ __metadata: version: 1.6.0 resolution: "busboy@npm:1.6.0" dependencies: - streamsearch: ^1.1.0 - checksum: 32801e2c0164e12106bf236291a00795c3c4e4b709ae02132883fe8478ba2ae23743b11c5735a0aae8afe65ac4b6ca4568b91f0d9fed1fdbc32ede824a73746e + streamsearch: "npm:^1.1.0" + checksum: bee10fa10ea58e7e3e7489ffe4bda6eacd540a17de9f9cd21cc37e297b2dd9fe52b2715a5841afaec82900750d810d01d7edb4b2d456427f449b92b417579763 languageName: node linkType: hard @@ -666,31 +666,31 @@ __metadata: version: 1.0.5 resolution: "call-bind@npm:1.0.5" dependencies: - function-bind: ^1.1.2 - get-intrinsic: ^1.2.1 - set-function-length: ^1.1.1 - checksum: 449e83ecbd4ba48e7eaac5af26fea3b50f8f6072202c2dd7c5a6e7a6308f2421abe5e13a3bbd55221087f76320c5e09f25a8fdad1bab2b77c68ae74d92234ea5 + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.1" + set-function-length: "npm:^1.1.1" + checksum: 246d44db6ef9bbd418828dbd5337f80b46be4398d522eded015f31554cbb2ea33025b0203b75c7ab05a1a255b56ef218880cca1743e4121e306729f9e414da39 languageName: node linkType: hard "caniuse-lite@npm:^1.0.30001406": version: 1.0.30001565 resolution: "caniuse-lite@npm:1.0.30001565" - checksum: 7621f358d0e1158557430a111ca5506008ae0b2c796039ef53aeebf4e2ba15e5241cb89def21ea3a633b6a609273085835b44a522165d871fa44067cdf29cccd + checksum: abc58bf3504508c4cb62f0e4a3267a222140935cb63ff252f1e960bf8680cc17368da1d29fb1f68343dfa8b046de7b9e7c2003b822732adc4c68e8ab6ae82c0e languageName: node linkType: hard "cbor-js@npm:^0.1.0": version: 0.1.0 resolution: "cbor-js@npm:0.1.0" - checksum: 9267e1d1eda70d34994fec05bb1aa53541673276131ff776194ee7b41e4ee80aec8c5c33f3a1bea3d393f9724c4f46c217b89ee2bcff6e35de583f3c533050fd + checksum: 763b1aebba89cb576874d0273976e0e51f2aec5665fd8ae05603eab3efa8bb3af6fec24d19f186ef801dfa79f9ce2486bc4b454b10b4fab0f012fd55516eb611 languageName: node linkType: hard "cbor-sync@npm:^1.0.4": version: 1.0.4 resolution: "cbor-sync@npm:1.0.4" - checksum: 147834c64b43511b2ea601f02bc2cc4190ec8d41a7b8dc3e9037c636b484ca2124bc7d49da7a0f775ea5153ff799d57e45992816851dbb1d61335f308a0d0120 + checksum: bdad5fbf442b5b2478ba59433cab145ad823f963f674ec42f3b730689e679327ec8a6dfab97724b63295badac915574139984e702475ff8025d7cb175e50e9ae languageName: node linkType: hard @@ -705,10 +705,10 @@ __metadata: version: 2.3.0 resolution: "chalk@npm:2.3.0" dependencies: - ansi-styles: ^3.1.0 - escape-string-regexp: ^1.0.5 - supports-color: ^4.0.0 - checksum: d348fc0f4f8d27c068a6ac492e708fa35a75e273d5f0004da61ea694e958981658c96693790f4d23e7b3712f9e3e4ca0988136cb0403876de5459a4c0d13078f + ansi-styles: "npm:^3.1.0" + escape-string-regexp: "npm:^1.0.5" + supports-color: "npm:^4.0.0" + checksum: 760d2da7c300a23be015c38df0b0dec43cdcb12a12248f045015b5daef48d9e3c0de1fb6f4ab6bb09c4bb320e0b68ec928d7200417af26b03a314a745764ed02 languageName: node linkType: hard @@ -729,7 +729,7 @@ __metadata: "character-entities@npm:^2.0.0": version: 2.0.2 resolution: "character-entities@npm:2.0.2" - checksum: cf1643814023697f725e47328fcec17923b8f1799102a8a79c1514e894815651794a2bffd84bb1b3a4b124b050154e4529ed6e81f7c8068a734aecf07a6d3def + checksum: c8dd1f4bf1a92fccf7d2fad9673660a88b37854557d30f6076c32fedfb92d1420208298829ff1d3b6b4fa1c7012e8326c45e7f5c3ed1e9a09ec177593c521b2f languageName: node linkType: hard @@ -751,16 +751,16 @@ __metadata: version: 1.2.2 resolution: "clipboardy@npm:1.2.2" dependencies: - arch: ^2.1.0 - execa: ^0.8.0 - checksum: 7744a95e014e5945f17554b426fe78c6e1329ead85a61fa589dd4c3f4a596a037d45cad0bfaa3e60bdf77717f0dfda67c35454216f4dbb7832ec0eba42ba8a06 + arch: "npm:^2.1.0" + execa: "npm:^0.8.0" + checksum: bce29cbbb9a8b50888ecde31232aa9ab09f0065c447067d389b3a1f395c5f5ff1dd1eb181581c657d73a18629f4dac2f16fa091bd861b228273e0e4a57969723 languageName: node linkType: hard "clsx@npm:^2.0.0": version: 2.0.0 resolution: "clsx@npm:2.0.0" - checksum: a2cfb2351b254611acf92faa0daf15220f4cd648bdf96ce369d729813b85336993871a4bf6978ddea2b81b5a130478339c20d9d0b5c6fc287e5147f0c059276e + checksum: 943766d1b02fee3538c871e56638d87f973fbc2d6291ce221215ea436fdecb9be97ad323f411839c2d52c45640c449b1a53fbfe7e8b3d529b4e263308b630c9a languageName: node linkType: hard @@ -768,8 +768,8 @@ __metadata: version: 1.9.3 resolution: "color-convert@npm:1.9.3" dependencies: - color-name: 1.1.3 - checksum: fd7a64a17cde98fb923b1dd05c5f2e6f7aefda1b60d67e8d449f9328b4e53b228a428fd38bfeaeb2db2ff6b6503a776a996150b80cdf224062af08a5c8a3a203 + color-name: "npm:1.1.3" + checksum: ffa319025045f2973919d155f25e7c00d08836b6b33ea2d205418c59bd63a665d713c52d9737a9e0fe467fb194b40fbef1d849bae80d674568ee220a31ef3d10 languageName: node linkType: hard @@ -784,8 +784,8 @@ __metadata: version: 1.0.8 resolution: "combined-stream@npm:1.0.8" dependencies: - delayed-stream: ~1.0.0 - checksum: 49fa4aeb4916567e33ea81d088f6584749fc90c7abec76fd516bf1c5aa5c79f3584b5ba3de6b86d26ddd64bae5329c4c7479343250cfe71c75bb366eae53bb7c + delayed-stream: "npm:~1.0.0" + checksum: 2e969e637d05d09fa50b02d74c83a1186f6914aae89e6653b62595cc75a221464f884f55f231b8f4df7a49537fba60bdc0427acd2bf324c09a1dbb84837e36e4 languageName: node linkType: hard @@ -799,14 +799,14 @@ __metadata: "commander@npm:7": version: 7.2.0 resolution: "commander@npm:7.2.0" - checksum: 53501cbeee61d5157546c0bef0fedb6cdfc763a882136284bed9a07225f09a14b82d2a84e7637edfd1a679fb35ed9502fd58ef1d091e6287f60d790147f68ddc + checksum: 9973af10727ad4b44f26703bf3e9fdc323528660a7590efe3aa9ad5042b4584c0deed84ba443f61c9d6f02dade54a5a5d3c95e306a1e1630f8374ae6db16c06d languageName: node linkType: hard "commander@npm:^8.3.0": version: 8.3.0 resolution: "commander@npm:8.3.0" - checksum: 0f82321821fc27b83bd409510bb9deeebcfa799ff0bf5d102128b500b7af22872c0c92cb6a0ebc5a4cf19c6b550fba9cedfa7329d18c6442a625f851377bacf0 + checksum: 6b7b5d334483ce24bd73c5dac2eab901a7dbb25fd983ea24a1eeac6e7166bb1967f641546e8abf1920afbde86a45fbfe5812fbc69d0dc451bb45ca416a12a3a3 languageName: node linkType: hard @@ -820,14 +820,14 @@ __metadata: "compute-scroll-into-view@npm:^3.0.2": version: 3.1.0 resolution: "compute-scroll-into-view@npm:3.1.0" - checksum: 224549d6dd1d40342230de5c6d69cac5c3ed5c2f6a4437310f959aadc8db1d20b03da44a6e0de14d9419c6f9130ce51ec99a91b11bde55d4640f10551c89c213 + checksum: cc5211d49bced5ad23385da5c2eaf69b6045628581b0dcb9f4dd407bfee51bbd26d2bce426be26edf2feaf8c243706f5a7c3759827d89cc5a01a5cf7d299a5eb languageName: node linkType: hard "cookiejar@npm:^2.1.4": version: 2.1.4 resolution: "cookiejar@npm:2.1.4" - checksum: c4442111963077dc0e5672359956d6556a195d31cbb35b528356ce5f184922b99ac48245ac05ed86cf993f7df157c56da10ab3efdadfed79778a0d9b1b092d5b + checksum: 4a184f5a0591df8b07d22a43ea5d020eacb4572c383e853a33361a99710437eaa0971716c688684075bbf695b484f5872e9e3f562382e46858716cb7fc8ce3f4 languageName: node linkType: hard @@ -835,8 +835,8 @@ __metadata: version: 1.0.3 resolution: "cose-base@npm:1.0.3" dependencies: - layout-base: ^1.0.0 - checksum: 3f3d592316df74adb215ca91e430f1c22b6e890bc0025b32ae1f6464c73fdb9614816cb40a8d38b40c6a3e9e7b8c64eda90d53fb9a4a6948abec17dad496f30b + layout-base: "npm:^1.0.0" + checksum: 52e1f4ae173738aebe14395e3f865dc10ce430156554bab52f4b8ef0c583375644348c2a226b83d97eebc7d35340919e7bc10d23a3e2fe51b853bf56f27b5da7 languageName: node linkType: hard @@ -844,8 +844,8 @@ __metadata: version: 2.2.0 resolution: "cose-base@npm:2.2.0" dependencies: - layout-base: ^2.0.0 - checksum: 2e694f340bf216c71fc126d237578a4168e138720011d0b48c88bf9bfc7fd45f912eff2c603ef3d1307d6e3ce6f465ed382285a764a3a6620db590c5457d2557 + layout-base: "npm:^2.0.0" + checksum: 4d4b16a84188b8f9419d9dbaffca62561f0e0ee125569339782141111aaf2bec1d180270bbaf5a13ac956f6a8c6b74ab2431e456da239982046b9ddb612bde6a languageName: node linkType: hard @@ -853,8 +853,8 @@ __metadata: version: 3.1.8 resolution: "cross-fetch@npm:3.1.8" dependencies: - node-fetch: ^2.6.12 - checksum: 78f993fa099eaaa041122ab037fe9503ecbbcb9daef234d1d2e0b9230a983f64d645d088c464e21a247b825a08dc444a6e7064adfa93536d3a9454b4745b3632 + node-fetch: "npm:^2.6.12" + checksum: ac8c4ca87d2ac0e17a19b6a293a67ee8934881aee5ec9a5a8323c30e9a9a60a0f5291d3c0d633ec2a2f970cbc60978d628804dfaf03add92d7e720b6d37f392c languageName: node linkType: hard @@ -862,9 +862,9 @@ __metadata: version: 5.1.0 resolution: "cross-spawn@npm:5.1.0" dependencies: - lru-cache: ^4.0.1 - shebang-command: ^1.2.0 - which: ^1.2.9 + lru-cache: "npm:^4.0.1" + shebang-command: "npm:^1.2.0" + which: "npm:^1.2.9" checksum: 726939c9954fc70c20e538923feaaa33bebc253247d13021737c3c7f68cdc3e0a57f720c0fe75057c0387995349f3f12e20e9bfdbf12274db28019c7ea4ec166 languageName: node linkType: hard @@ -873,15 +873,15 @@ __metadata: version: 3.1.0 resolution: "css-in-js-utils@npm:3.1.0" dependencies: - hyphenate-style-name: ^1.0.3 - checksum: 066318e918c04a5e5bce46b38fe81052ea6ac051bcc6d3c369a1d59ceb1546cb2b6086901ab5d22be084122ee3732169996a3dfb04d3406eaee205af77aec61b + hyphenate-style-name: "npm:^1.0.3" + checksum: bd2f569f1870389004cfacfd7b798c0f40933d34af1f040c391a08322d097790b9a9524affb2ba4d26122e9cb8f4256afb59edb6077dbe607506944a9c673c67 languageName: node linkType: hard "csstype@npm:^3.0.2": version: 3.1.2 resolution: "csstype@npm:3.1.2" - checksum: e1a52e6c25c1314d6beef5168da704ab29c5186b877c07d822bd0806717d9a265e8493a2e35ca7e68d0f5d472d43fac1cdce70fd79fd0853dff81f3028d857b5 + checksum: 1f39c541e9acd9562996d88bc9fb62d1cb234786ef11ed275567d4b2bd82e1ceacde25debc8de3d3b4871ae02c2933fa02614004c97190711caebad6347debc2 languageName: node linkType: hard @@ -889,10 +889,10 @@ __metadata: version: 4.1.0 resolution: "cytoscape-cose-bilkent@npm:4.1.0" dependencies: - cose-base: ^1.0.0 + cose-base: "npm:^1.0.0" peerDependencies: cytoscape: ^3.2.0 - checksum: bea6aa139e21bf4135b01b99f8778eed061e074d1a1689771597e8164a999d66f4075d46be584b0a88a5447f9321f38c90c8821df6a9322faaf5afebf4848d97 + checksum: 9ec2999159af62f1a251bf1e146a9a779085c4fdb1b8146596208f0097c0512fc4bffda53d3b00c87a1e8ae5024db3ebfb97162115216f5b4d024e314f4a03bb languageName: node linkType: hard @@ -900,10 +900,10 @@ __metadata: version: 2.2.0 resolution: "cytoscape-fcose@npm:2.2.0" dependencies: - cose-base: ^2.2.0 + cose-base: "npm:^2.2.0" peerDependencies: cytoscape: ^3.2.0 - checksum: 94ffe6f131f9c08c2a0a7a6ce1c6c5e523a395bf8d84eba6d4a5f85e23f33788ea3ff807540861a5f78a6914a27729e06a7e6f66784f4f28ea1c030acf500121 + checksum: 927aa3b29c1d514c6513c5a785d7af7a8d0499eb166de1f42b958ef20d264ef9cbe238da0b65ae01860424972dce1c73017cf2afdae4f02f9a247f7031b00de3 languageName: node linkType: hard @@ -911,9 +911,9 @@ __metadata: version: 3.27.0 resolution: "cytoscape@npm:3.27.0" dependencies: - heap: ^0.2.6 - lodash: ^4.17.21 - checksum: bb3184ab3f5d3e2ccef56a2944a5d6c8433ab31bbbbeb0c1b5e5d1bc009f1d80188b827e02d8f736b7e7e1161a3acbb4e1a38b6325ba5638359a1a6d23480f4b + heap: "npm:^0.2.6" + lodash: "npm:^4.17.21" + checksum: efd93a2e8e6226d318477e01ee45f23f3a2f3a1543b7f679e3a45bf8a15feb32d1ded925fd9bb127f688cfdbaf4f02ed18b4e371e88579fa7fc3b82747fceabe languageName: node linkType: hard @@ -921,8 +921,8 @@ __metadata: version: 2.12.1 resolution: "d3-array@npm:2.12.1" dependencies: - internmap: ^1.0.0 - checksum: 97853b7b523aded17078f37c67742f45d81e88dda2107ae9994c31b9e36c5fa5556c4c4cf39650436f247813602dfe31bf7ad067ff80f127a16903827f10c6eb + internmap: "npm:^1.0.0" + checksum: 9fdfb91f428915006e126090fe9aa9d5fcbecc78e925eceb32de9dfb989135f6ad940a8f1b086d0b569523679f85453c5335772aa9e6d5d41b480c2610857c7f languageName: node linkType: hard @@ -930,15 +930,15 @@ __metadata: version: 3.2.4 resolution: "d3-array@npm:3.2.4" dependencies: - internmap: 1 - 2 - checksum: a5976a6d6205f69208478bb44920dd7ce3e788c9dceb86b304dbe401a4bfb42ecc8b04c20facde486e9adcb488b5d1800d49393a3f81a23902b68158e12cddd0 + internmap: "npm:1 - 2" + checksum: 5800c467f89634776a5977f6dae3f4e127d91be80f1d07e3e6e35303f9de93e6636d014b234838eea620f7469688d191b3f41207a30040aab750a63c97ec1d7c languageName: node linkType: hard "d3-axis@npm:3": version: 3.0.0 resolution: "d3-axis@npm:3.0.0" - checksum: 227ddaa6d4bad083539c1ec245e2228b4620cca941997a8a650cb0af239375dc20271993127eedac66f0543f331027aca09385e1e16eed023f93eac937cddf0b + checksum: 15ec43ecbd4e7b606fcda60f67a522e45576dfd6aa83dff47f3e91ef6c8448841a09cd91f630b492250dcec67c6ea64463510ead5e632ff6b827aeefae1d42ad languageName: node linkType: hard @@ -946,12 +946,12 @@ __metadata: version: 3.0.0 resolution: "d3-brush@npm:3.0.0" dependencies: - d3-dispatch: 1 - 3 - d3-drag: 2 - 3 - d3-interpolate: 1 - 3 - d3-selection: 3 - d3-transition: 3 - checksum: 1d042167769a02ac76271c71e90376d7184206e489552b7022a8ec2860209fe269db55e0a3430f3dcbe13b6fec2ff65b1adeaccba3218991b38e022390df72e3 + d3-dispatch: "npm:1 - 3" + d3-drag: "npm:2 - 3" + d3-interpolate: "npm:1 - 3" + d3-selection: "npm:3" + d3-transition: "npm:3" + checksum: fa3a461b62f0f0ee6fe41f5babf45535a0a8f6d4999f675fb1dce932ee02eff72dec14c7296af31ca15998dc0141ccf5d02aa6499363f8bf2941d90688a1d644 languageName: node linkType: hard @@ -959,15 +959,15 @@ __metadata: version: 3.0.1 resolution: "d3-chord@npm:3.0.1" dependencies: - d3-path: 1 - 3 - checksum: ddf35d41675e0f8738600a8a2f05bf0858def413438c12cba357c5802ecc1014c80a658acbbee63cbad2a8c747912efb2358455d93e59906fe37469f1dc6b78b + d3-path: "npm:1 - 3" + checksum: 4febcdca4fdc8ba91fc4f7545f4b6321c440150dff80c1ebef887db07bb4200395dfebede63b257393259de07f914da10842da5ab3135e1e281e33ad153e0849 languageName: node linkType: hard "d3-color@npm:1 - 3, d3-color@npm:3": version: 3.1.0 resolution: "d3-color@npm:3.1.0" - checksum: 4931fbfda5d7c4b5cfa283a13c91a954f86e3b69d75ce588d06cde6c3628cebfc3af2069ccf225e982e8987c612aa7948b3932163ce15eb3c11cd7c003f3ee3b + checksum: 536ba05bfd9f4fcd6fa289b5974f5c846b21d186875684637e22bf6855e6aba93e24a2eb3712985c6af3f502fbbfa03708edb72f58142f626241a8a17258e545 languageName: node linkType: hard @@ -975,8 +975,8 @@ __metadata: version: 4.0.2 resolution: "d3-contour@npm:4.0.2" dependencies: - d3-array: ^3.2.0 - checksum: 56aa082c1acf62a45b61c8d29fdd307041785aa17d9a07de7d1d848633769887a33fb6823888afa383f31c460d0f21d24756593e84e334ddb92d774214d32f1b + d3-array: "npm:^3.2.0" + checksum: 0b252267e0c3c5e97d7e0c720bd35654de99f981199f7240d7dd1acfd4e2d5bf1638829f6db486452eff9c38608efa4a6ab5a0d1525131735c011ee7be3cb4ba languageName: node linkType: hard @@ -984,15 +984,15 @@ __metadata: version: 6.0.4 resolution: "d3-delaunay@npm:6.0.4" dependencies: - delaunator: 5 - checksum: ce6d267d5ef21a8aeadfe4606329fc80a22ab6e7748d47bc220bcc396ee8be84b77a5473033954c5ac4aa522d265ddc45d4165d30fe4787dd60a15ea66b9bbb4 + delaunator: "npm:5" + checksum: 4588e2872d4154daaf2c3f34fefe74e43b909cc460238a7b02823907ca6dd109f2c488c57c8551f1a2607fe4b44fdf24e3a190cea29bca70ef5606678dd9e2de languageName: node linkType: hard "d3-dispatch@npm:1 - 3, d3-dispatch@npm:3": version: 3.0.1 resolution: "d3-dispatch@npm:3.0.1" - checksum: fdfd4a230f46463e28e5b22a45dd76d03be9345b605e1b5dc7d18bd7ebf504e6c00ae123fd6d03e23d9e2711e01f0e14ea89cd0632545b9f0c00b924ba4be223 + checksum: 2b82f41bf4ef88c2f9033dfe32815b67e2ef1c5754a74137a74c7d44d6f0d6ecfa934ac56ed8afe358f6c1f06462e8aa42ca0a388397b5b77a42721570e80487 languageName: node linkType: hard @@ -1000,9 +1000,9 @@ __metadata: version: 3.0.0 resolution: "d3-drag@npm:3.0.0" dependencies: - d3-dispatch: 1 - 3 - d3-selection: 3 - checksum: d297231e60ecd633b0d076a63b4052b436ddeb48b5a3a11ff68c7e41a6774565473a6b064c5e9256e88eca6439a917ab9cea76032c52d944ddbf4fd289e31111 + d3-dispatch: "npm:1 - 3" + d3-selection: "npm:3" + checksum: 80bc689935e5a46ee92b2d7f71e1c792279382affed9fbcf46034bff3ff7d3f50cf61a874da4bdf331037292b9e7dca5c6401a605d4bb699fdcb4e0c87e176ec languageName: node linkType: hard @@ -1010,9 +1010,9 @@ __metadata: version: 3.0.1 resolution: "d3-dsv@npm:3.0.1" dependencies: - commander: 7 - iconv-lite: 0.6 - rw: 1 + commander: "npm:7" + iconv-lite: "npm:0.6" + rw: "npm:1" bin: csv2json: bin/dsv2json.js csv2tsv: bin/dsv2dsv.js @@ -1023,14 +1023,14 @@ __metadata: json2tsv: bin/json2dsv.js tsv2csv: bin/dsv2dsv.js tsv2json: bin/dsv2json.js - checksum: 5fc0723647269d5dccd181d74f2265920ab368a2868b0b4f55ffa2fecdfb7814390ea28622cd61ee5d9594ab262879509059544e9f815c54fe76fbfb4ffa4c8a + checksum: a628ac42a272466940f713f310db2e5246690b22035121dc1230077070c9135fb7c9b4d260f093fcadf63b0528202a1953107448a4be3a860c4f42f50d09504d languageName: node linkType: hard "d3-ease@npm:1 - 3, d3-ease@npm:3": version: 3.0.1 resolution: "d3-ease@npm:3.0.1" - checksum: 06e2ee5326d1e3545eab4e2c0f84046a123dcd3b612e68858219aa034da1160333d9ce3da20a1d3486d98cb5c2a06f7d233eee1bc19ce42d1533458bd85dedcd + checksum: 985d46e868494e9e6806fedd20bad712a50dcf98f357bf604a843a9f6bc17714a657c83dd762f183173dcde983a3570fa679b2bc40017d40b24163cdc4167796 languageName: node linkType: hard @@ -1038,8 +1038,8 @@ __metadata: version: 3.0.1 resolution: "d3-fetch@npm:3.0.1" dependencies: - d3-dsv: 1 - 3 - checksum: 382dcea06549ef82c8d0b719e5dc1d96286352579e3b51b20f71437f5800323315b09cf7dcfd4e1f60a41e1204deb01758470cea257d2285a7abd9dcec806984 + d3-dsv: "npm:1 - 3" + checksum: cd35d55f8fbb1ea1e37be362a575bb0161449957133aa5b45b9891889b2aca1dc0769c240a236736e33cd823e820a0e73fb3744582307a5d26d1df7bed0ccecb languageName: node linkType: hard @@ -1047,17 +1047,17 @@ __metadata: version: 3.0.0 resolution: "d3-force@npm:3.0.0" dependencies: - d3-dispatch: 1 - 3 - d3-quadtree: 1 - 3 - d3-timer: 1 - 3 - checksum: 6c7e96438cab62fa32aeadb0ade3297b62b51f81b1b38b0a60a5ec9fd627d74090c1189654d92df2250775f31b06812342f089f1d5947de9960a635ee3581def + d3-dispatch: "npm:1 - 3" + d3-quadtree: "npm:1 - 3" + d3-timer: "npm:1 - 3" + checksum: 85945f8d444d78567009518f0ab54c0f0c8873eb8eb9a2ff0ab667b0f81b419e101a411415d4a2c752547ec7143f89675e8c33b8f111e55e5579a04cb7f4591c languageName: node linkType: hard "d3-format@npm:1 - 3, d3-format@npm:3": version: 3.1.0 resolution: "d3-format@npm:3.1.0" - checksum: f345ec3b8ad3cab19bff5dead395bd9f5590628eb97a389b1dd89f0b204c7c4fc1d9520f13231c2c7cf14b7c9a8cf10f8ef15bde2befbab41454a569bd706ca2 + checksum: a0fe23d2575f738027a3db0ce57160e5a473ccf24808c1ed46d45ef4f3211076b34a18b585547d34e365e78dcc26dd4ab15c069731fc4b1c07a26bfced09ea31 languageName: node linkType: hard @@ -1065,15 +1065,15 @@ __metadata: version: 3.1.0 resolution: "d3-geo@npm:3.1.0" dependencies: - d3-array: 2.5.0 - 3 - checksum: adf82b0c105c0c5951ae0a833d4dfc479a563791ad7938579fa14e1cffd623b469d8aa7a37dc413a327fb6ac56880f3da3f6c43d4abe3c923972dd98f34f37d1 + d3-array: "npm:2.5.0 - 3" + checksum: d214c2951c327501699b49f73fcbf417284468f41b31cd8f34c1975137a2544e4bb8080f35fa216659dba91c60f35b7bc857cd6b8297cf4f0fd37343269d9f8a languageName: node linkType: hard "d3-hierarchy@npm:3": version: 3.1.2 resolution: "d3-hierarchy@npm:3.1.2" - checksum: 0fd946a8c5fd4686d43d3e11bbfc2037a145fda29d2261ccd0e36f70b66af6d7638e2c0c7112124d63fc3d3127197a00a6aecf676bd5bd392a94d7235a214263 + checksum: 497b79dc6c35e28b21e8a7b94db92876abd1d4ec082d9803a07ea8964e55b0e71c511a21489363a36f1456f069adb8ff7d33c633678730d6ae961ed350b27733 languageName: node linkType: hard @@ -1081,43 +1081,43 @@ __metadata: version: 3.0.1 resolution: "d3-interpolate@npm:3.0.1" dependencies: - d3-color: 1 - 3 - checksum: a42ba314e295e95e5365eff0f604834e67e4a3b3c7102458781c477bd67e9b24b6bb9d8e41ff5521050a3f2c7c0c4bbbb6e187fd586daa3980943095b267e78b + d3-color: "npm:1 - 3" + checksum: 988d66497ef5c190cf64f8c80cd66e1e9a58c4d1f8932d776a8e3ae59330291795d5a342f5a97602782ccbef21a5df73bc7faf1f0dc46a5145ba6243a82a0f0e languageName: node linkType: hard "d3-path@npm:1": version: 1.0.9 resolution: "d3-path@npm:1.0.9" - checksum: d4382573baf9509a143f40944baeff9fead136926aed6872f7ead5b3555d68925f8a37935841dd51f1d70b65a294fe35c065b0906fb6e42109295f6598fc16d0 + checksum: 6ce1747837ea2a449d9ea32e169a382978ab09a4805eb408feb6bbc12cb5f5f6ce29aefc252dd9a815d420f4813d672f75578b78b3bbaf7811f54d8c7f93fd11 languageName: node linkType: hard "d3-path@npm:1 - 3, d3-path@npm:3, d3-path@npm:^3.1.0": version: 3.1.0 resolution: "d3-path@npm:3.1.0" - checksum: 2306f1bd9191e1eac895ec13e3064f732a85f243d6e627d242a313f9777756838a2215ea11562f0c7630c7c3b16a19ec1fe0948b1c82f3317fac55882f6ee5d8 + checksum: 8e97a9ab4930a05b18adda64cf4929219bac913a5506cf8585631020253b39309549632a5cbeac778c0077994442ddaaee8316ee3f380e7baf7566321b84e76a languageName: node linkType: hard "d3-polygon@npm:3": version: 3.0.1 resolution: "d3-polygon@npm:3.0.1" - checksum: 0b85c532517895544683849768a2c377cee3801ef8ccf3fa9693c8871dd21a0c1a2a0fc75ff54192f0ba2c562b0da2bc27f5bf959dfafc7fa23573b574865d2c + checksum: c4fa2ed19dcba13fd341815361d27e64597aa0d38d377e401e1353c4acbe8bd73c0afb3e49a1cf4119fadc3651ec8073d06aa6d0e34e664c868d071e58912cd1 languageName: node linkType: hard "d3-quadtree@npm:1 - 3, d3-quadtree@npm:3": version: 3.0.1 resolution: "d3-quadtree@npm:3.0.1" - checksum: 5469d462763811475f34a7294d984f3eb100515b0585ca5b249656f6b1a6e99b20056a2d2e463cc9944b888896d2b1d07859c50f9c0cf23438df9cd2e3146066 + checksum: 1915b6a7b031fc312f9af61947072db9468c5a2b03837f6a90b38fdaebcd0ea17a883bffd94d16b8a6848e81711a06222f7d39f129386ef1850297219b8d32ba languageName: node linkType: hard "d3-random@npm:3": version: 3.0.1 resolution: "d3-random@npm:3.0.1" - checksum: a70ad8d1cabe399ebeb2e482703121ac8946a3b336830b518da6848b9fdd48a111990fc041dc716f16885a72176ffa2898f2a250ca3d363ecdba5ef92b18e131 + checksum: 9f41d6ca3a1826cea8d88392917b5039504337d442a4d1357c870fa3031701e60209a2689a6ddae7df8fca824383d038c957eb545bc49a7428c71aaf3b11f56f languageName: node linkType: hard @@ -1125,9 +1125,9 @@ __metadata: version: 0.12.3 resolution: "d3-sankey@npm:0.12.3" dependencies: - d3-array: 1 - 2 - d3-shape: ^1.2.0 - checksum: df1cb9c9d02dd8fd14040e89f112f0da58c03bd7529fa001572a6925a51496d1d82ff25d9fedb6c429a91645fbd2476c19891e535ac90c8bc28337c33ee21c87 + d3-array: "npm:1 - 2" + d3-shape: "npm:^1.2.0" + checksum: d5c679135a26d435e9970de3fc0778c6ef5c911f0c878b246939517b57a8daa2e2db6ef99318a0dad16e6079e4b89ef9166f1f661d8d247637875b764628094d languageName: node linkType: hard @@ -1135,9 +1135,9 @@ __metadata: version: 3.0.0 resolution: "d3-scale-chromatic@npm:3.0.0" dependencies: - d3-color: 1 - 3 - d3-interpolate: 1 - 3 - checksum: a8ce4cb0267a17b28ebbb929f5e3071d985908a9c13b6fcaa2a198e1e018f275804d691c5794b970df0049725b7944f32297b31603d235af6414004f0c7f82c0 + d3-color: "npm:1 - 3" + d3-interpolate: "npm:1 - 3" + checksum: e4d23a7d2ba48ad5de1d06dcc488f7278304def0ea28a268528923b1d74971260636b5c8fe0e27bc2c51b2a3f95542c248e35028bdb0b7c19ac804eee235d340 languageName: node linkType: hard @@ -1145,19 +1145,19 @@ __metadata: version: 4.0.2 resolution: "d3-scale@npm:4.0.2" dependencies: - d3-array: 2.10.0 - 3 - d3-format: 1 - 3 - d3-interpolate: 1.2.0 - 3 - d3-time: 2.1.1 - 3 - d3-time-format: 2 - 4 - checksum: a9c770d283162c3bd11477c3d9d485d07f8db2071665f1a4ad23eec3e515e2cefbd369059ec677c9ac849877d1a765494e90e92051d4f21111aa56791c98729e + d3-array: "npm:2.10.0 - 3" + d3-format: "npm:1 - 3" + d3-interpolate: "npm:1.2.0 - 3" + d3-time: "npm:2.1.1 - 3" + d3-time-format: "npm:2 - 4" + checksum: e2dc4243586eae2a0fdf91de1df1a90d51dfacb295933f0ca7e9184c31203b01436bef69906ad40f1100173a5e6197ae753cb7b8a1a8fcfda43194ea9cad6493 languageName: node linkType: hard "d3-selection@npm:2 - 3, d3-selection@npm:3": version: 3.0.0 resolution: "d3-selection@npm:3.0.0" - checksum: f4e60e133309115b99f5b36a79ae0a19d71ee6e2d5e3c7216ef3e75ebd2cb1e778c2ed2fa4c01bef35e0dcbd96c5428f5bd6ca2184fe2957ed582fde6841cbc5 + checksum: 0e5acfd305b31628b7be5009ba7303d84bb34817a88ed4dde9c8bd9c23528573fc5272f89fc04e5be03d2cbf5441a248d7274aaf55a8ef3dad46e16333d72298 languageName: node linkType: hard @@ -1165,8 +1165,8 @@ __metadata: version: 3.2.0 resolution: "d3-shape@npm:3.2.0" dependencies: - d3-path: ^3.1.0 - checksum: de2af5fc9a93036a7b68581ca0bfc4aca2d5a328aa7ba7064c11aedd44d24f310c20c40157cb654359d4c15c3ef369f95ee53d71221017276e34172c7b719cfa + d3-path: "npm:^3.1.0" + checksum: 2e861f4d4781ee8abd85d2b435f848d667479dcf01a4e0db3a06600a5bdeddedb240f88229ec7b3bf7fa300c2b3526faeaf7e75f9a24dbf4396d3cc5358ff39d languageName: node linkType: hard @@ -1174,8 +1174,8 @@ __metadata: version: 1.3.7 resolution: "d3-shape@npm:1.3.7" dependencies: - d3-path: 1 - checksum: 46566a3ab64a25023653bf59d64e81e9e6c987e95be985d81c5cedabae5838bd55f4a201a6b69069ca862eb63594cd263cac9034afc2b0e5664dfe286c866129 + d3-path: "npm:1" + checksum: 1e40fdcfdc8edc9c53a77a6aaea2dbf31bf06df12ebd66cc8d91f76bbde753049ad21dfee0577f7dc5d0a4468554ede4783f6df7d809e291745334dba977c09e languageName: node linkType: hard @@ -1183,8 +1183,8 @@ __metadata: version: 4.1.0 resolution: "d3-time-format@npm:4.1.0" dependencies: - d3-time: 1 - 3 - checksum: 7342bce28355378152bbd4db4e275405439cabba082d9cd01946d40581140481c8328456d91740b0fe513c51ec4a467f4471ffa390c7e0e30ea30e9ec98fcdf4 + d3-time: "npm:1 - 3" + checksum: ffc0959258fbb90e3890bfb31b43b764f51502b575e87d0af2c85b85ac379120d246914d07fca9f533d1bcedc27b2841d308a00fd64848c3e2cad9eff5c9a0aa languageName: node linkType: hard @@ -1192,15 +1192,15 @@ __metadata: version: 3.1.0 resolution: "d3-time@npm:3.1.0" dependencies: - d3-array: 2 - 3 - checksum: 613b435352a78d9f31b7f68540788186d8c331b63feca60ad21c88e9db1989fe888f97f242322ebd6365e45ec3fb206a4324cd4ca0dfffa1d9b5feb856ba00a7 + d3-array: "npm:2 - 3" + checksum: c110bed295ce63e8180e45b82a9b0ba114d5f33ff315871878f209c1a6d821caa505739a2b07f38d1396637155b8e7372632dacc018e11fbe8ceef58f6af806d languageName: node linkType: hard "d3-timer@npm:1 - 3, d3-timer@npm:3": version: 3.0.1 resolution: "d3-timer@npm:3.0.1" - checksum: 1cfddf86d7bca22f73f2c427f52dfa35c49f50d64e187eb788dcad6e927625c636aa18ae4edd44d084eb9d1f81d8ca4ec305dae7f733c15846a824575b789d73 + checksum: 004128602bb187948d72c7dc153f0f063f38ac7a584171de0b45e3a841ad2e17f1e40ad396a4af9cce5551b6ab4a838d5246d23492553843d9da4a4050a911e2 languageName: node linkType: hard @@ -1208,14 +1208,14 @@ __metadata: version: 3.0.1 resolution: "d3-transition@npm:3.0.1" dependencies: - d3-color: 1 - 3 - d3-dispatch: 1 - 3 - d3-ease: 1 - 3 - d3-interpolate: 1 - 3 - d3-timer: 1 - 3 + d3-color: "npm:1 - 3" + d3-dispatch: "npm:1 - 3" + d3-ease: "npm:1 - 3" + d3-interpolate: "npm:1 - 3" + d3-timer: "npm:1 - 3" peerDependencies: d3-selection: 2 - 3 - checksum: cb1e6e018c3abf0502fe9ff7b631ad058efb197b5e14b973a410d3935aead6e3c07c67d726cfab258e4936ef2667c2c3d1cd2037feb0765f0b4e1d3b8788c0ea + checksum: 02571636acb82f5532117928a87fe25de68f088c38ab4a8b16e495f0f2d08a3fd2937eaebdefdfcf7f1461545524927d2632d795839b88d2e4c71e387aaaffac languageName: node linkType: hard @@ -1223,12 +1223,12 @@ __metadata: version: 3.0.0 resolution: "d3-zoom@npm:3.0.0" dependencies: - d3-dispatch: 1 - 3 - d3-drag: 2 - 3 - d3-interpolate: 1 - 3 - d3-selection: 2 - 3 - d3-transition: 2 - 3 - checksum: 8056e3527281cfd1ccbcbc458408f86973b0583e9dac00e51204026d1d36803ca437f970b5736f02fafed9f2b78f145f72a5dbc66397e02d4d95d4c594b8ff54 + d3-dispatch: "npm:1 - 3" + d3-drag: "npm:2 - 3" + d3-interpolate: "npm:1 - 3" + d3-selection: "npm:2 - 3" + d3-transition: "npm:2 - 3" + checksum: 0e6e5c14e33c4ecdff311a900dd037dea407734f2dd2818988ed6eae342c1799e8605824523678bd404f81e37824cc588f62dbde46912444c89acc7888036c6b languageName: node linkType: hard @@ -1236,37 +1236,37 @@ __metadata: version: 7.8.5 resolution: "d3@npm:7.8.5" dependencies: - d3-array: 3 - d3-axis: 3 - d3-brush: 3 - d3-chord: 3 - d3-color: 3 - d3-contour: 4 - d3-delaunay: 6 - d3-dispatch: 3 - d3-drag: 3 - d3-dsv: 3 - d3-ease: 3 - d3-fetch: 3 - d3-force: 3 - d3-format: 3 - d3-geo: 3 - d3-hierarchy: 3 - d3-interpolate: 3 - d3-path: 3 - d3-polygon: 3 - d3-quadtree: 3 - d3-random: 3 - d3-scale: 4 - d3-scale-chromatic: 3 - d3-selection: 3 - d3-shape: 3 - d3-time: 3 - d3-time-format: 4 - d3-timer: 3 - d3-transition: 3 - d3-zoom: 3 - checksum: e407e79731f74d946a5eb8dec2f037b5a4ad33c294409b1d3531fdf7094de48adfe364974cb37e2396bdb81e23149d56d0ede716c004d6aebb52b3cc114cd15c + d3-array: "npm:3" + d3-axis: "npm:3" + d3-brush: "npm:3" + d3-chord: "npm:3" + d3-color: "npm:3" + d3-contour: "npm:4" + d3-delaunay: "npm:6" + d3-dispatch: "npm:3" + d3-drag: "npm:3" + d3-dsv: "npm:3" + d3-ease: "npm:3" + d3-fetch: "npm:3" + d3-force: "npm:3" + d3-format: "npm:3" + d3-geo: "npm:3" + d3-hierarchy: "npm:3" + d3-interpolate: "npm:3" + d3-path: "npm:3" + d3-polygon: "npm:3" + d3-quadtree: "npm:3" + d3-random: "npm:3" + d3-scale: "npm:4" + d3-scale-chromatic: "npm:3" + d3-selection: "npm:3" + d3-shape: "npm:3" + d3-time: "npm:3" + d3-time-format: "npm:4" + d3-timer: "npm:3" + d3-transition: "npm:3" + d3-zoom: "npm:3" + checksum: d5a0581fae34ce06f065c36bfe4045d2877ec23c413bb40d5b8cc005df9f8ef5ac44ccc13ffae4c4e5159827bb92c09da07e7283c1b7a507072e88b9047a848a languageName: node linkType: hard @@ -1274,9 +1274,9 @@ __metadata: version: 7.0.10 resolution: "dagre-d3-es@npm:7.0.10" dependencies: - d3: ^7.8.2 - lodash-es: ^4.17.21 - checksum: 25194e80dfad48db0dc2e0a273a7c9fcbfdc4cf993b219eaa1e0e0ce0cbb8c63be42fa2aa0c5f9bf9b324c34b8b2e300bb2a1606d5ae35c2de00f9c4ac317d8e + d3: "npm:^7.8.2" + lodash-es: "npm:^4.17.21" + checksum: 09f56dd337cc7d0620d50f20913308d5e8aaffafb0b188a69b0d8ff87915599586224694be3f8d93bd8c383858d358c0140493a11a0df2508de959a4658952c2 languageName: node linkType: hard @@ -1290,7 +1290,7 @@ __metadata: "dayjs@npm:^1.11.7": version: 1.11.10 resolution: "dayjs@npm:1.11.10" - checksum: a6b5a3813b8884f5cd557e2e6b7fa569f4c5d0c97aca9558e38534af4f2d60daafd3ff8c2000fed3435cfcec9e805bcebd99f90130c6d1c5ef524084ced588c4 + checksum: 27e8f5bc01c0a76f36c656e62ab7f08c2e7b040b09e613cd4844abf03fb258e0350f0a83b02c887b84d771c1f11e092deda0beef8c6df2a1afbc3f6c1fade279 languageName: node linkType: hard @@ -1298,11 +1298,11 @@ __metadata: version: 4.3.4 resolution: "debug@npm:4.3.4" dependencies: - ms: 2.1.2 + ms: "npm:2.1.2" peerDependenciesMeta: supports-color: optional: true - checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708 + checksum: 0073c3bcbd9cb7d71dd5f6b55be8701af42df3e56e911186dfa46fac3a5b9eb7ce7f377dd1d3be6db8977221f8eb333d945216f645cf56f6b688cd484837d255 languageName: node linkType: hard @@ -1310,7 +1310,7 @@ __metadata: version: 1.0.2 resolution: "decode-named-character-reference@npm:1.0.2" dependencies: - character-entities: ^2.0.0 + character-entities: "npm:^2.0.0" checksum: f4c71d3b93105f20076052f9cb1523a22a9c796b8296cd35eef1ca54239c78d182c136a848b83ff8da2071e3ae2b1d300bf29d00650a6d6e675438cc31b11d78 languageName: node linkType: hard @@ -1319,10 +1319,10 @@ __metadata: version: 1.1.1 resolution: "define-data-property@npm:1.1.1" dependencies: - get-intrinsic: ^1.2.1 - gopd: ^1.0.1 - has-property-descriptors: ^1.0.0 - checksum: a29855ad3f0630ea82e3c5012c812efa6ca3078d5c2aa8df06b5f597c1cde6f7254692df41945851d903e05a1668607b6d34e778f402b9ff9ffb38111f1a3f0d + get-intrinsic: "npm:^1.2.1" + gopd: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.0" + checksum: 5573c8df96b5857408cad64d9b91b69152e305ce4b06218e5f49b59c6cafdbb90a8bd8a0bb83c7bc67a8d479c04aa697063c9bc28d849b7282f9327586d6bc7b languageName: node linkType: hard @@ -1330,9 +1330,9 @@ __metadata: version: 5.0.1 resolution: "degenerator@npm:5.0.1" dependencies: - ast-types: ^0.13.4 - escodegen: ^2.1.0 - esprima: ^4.0.1 + ast-types: "npm:^0.13.4" + escodegen: "npm:^2.1.0" + esprima: "npm:^4.0.1" checksum: a64fa39cdf6c2edd75188157d32338ee9de7193d7dbb2aeb4acb1eb30fa4a15ed80ba8dae9bd4d7b085472cf174a5baf81adb761aaa8e326771392c922084152 languageName: node linkType: hard @@ -1341,8 +1341,8 @@ __metadata: version: 5.0.0 resolution: "delaunator@npm:5.0.0" dependencies: - robust-predicates: ^3.0.0 - checksum: d6764188442b7f7c6bcacebd96edc00e35f542a96f1af3ef600e586bfb9849a3682c489c0ab423440c90bc4c7cac77f28761babff76fa29e193e1cf50a95b860 + robust-predicates: "npm:^3.0.0" + checksum: 87f9aa5e2378036377ad924418181261ffb58607f303480b4615a5ef6fe2ecefc79f90db217353f2b79e06ee959bba65940429d4484aa36350bd6bde0fbf5010 languageName: node linkType: hard @@ -1356,7 +1356,7 @@ __metadata: "dequal@npm:^2.0.0": version: 2.0.3 resolution: "dequal@npm:2.0.3" - checksum: 8679b850e1a3d0ebbc46ee780d5df7b478c23f335887464023a631d1b9af051ad4a6595a44220f9ff8ff95a8ddccf019b5ad778a976fd7bbf77383d36f412f90 + checksum: 6ff05a7561f33603df87c45e389c9ac0a95e3c056be3da1a0c4702149e3a7f6fe5ffbb294478687ba51a9e95f3a60e8b6b9005993acd79c292c7d15f71964b6b languageName: node linkType: hard @@ -1364,8 +1364,8 @@ __metadata: version: 1.1.0 resolution: "devlop@npm:1.1.0" dependencies: - dequal: ^2.0.0 - checksum: d2ff650bac0bb6ef08c48f3ba98640bb5fec5cce81e9957eb620408d1bab1204d382a45b785c6b3314dc867bb0684936b84c6867820da6db97cbb5d3c15dd185 + dequal: "npm:^2.0.0" + checksum: 3cc5f903d02d279d6dc4aa71ab6ed9898b9f4d1f861cc5421ce7357893c21b9520de78afb203c92bd650a6977ad0ca98195453a0707a39958cf5fea3b0a8ddd8 languageName: node linkType: hard @@ -1373,8 +1373,8 @@ __metadata: version: 1.0.4 resolution: "dezalgo@npm:1.0.4" dependencies: - asap: ^2.0.0 - wrappy: 1 + asap: "npm:^2.0.0" + wrappy: "npm:1" checksum: 895389c6aead740d2ab5da4d3466d20fa30f738010a4d3f4dcccc9fc645ca31c9d10b7e1804ae489b1eb02c7986f9f1f34ba132d409b043082a86d9a4e745624 languageName: node linkType: hard @@ -1382,28 +1382,28 @@ __metadata: "diff@npm:^4.0.2": version: 4.0.2 resolution: "diff@npm:4.0.2" - checksum: f2c09b0ce4e6b301c221addd83bf3f454c0bc00caa3dd837cf6c127d6edf7223aa2bbe3b688feea110b7f262adbfc845b757c44c8a9f8c0c5b15d8fa9ce9d20d + checksum: ec09ec2101934ca5966355a229d77afcad5911c92e2a77413efda5455636c4cf2ce84057e2d7715227a2eeeda04255b849bd3ae3a4dd22eb22e86e76456df069 languageName: node linkType: hard "diff@npm:^5.0.0": version: 5.1.0 resolution: "diff@npm:5.1.0" - checksum: c7bf0df7c9bfbe1cf8a678fd1b2137c4fb11be117a67bc18a0e03ae75105e8533dbfb1cda6b46beb3586ef5aed22143ef9d70713977d5fb1f9114e21455fba90 + checksum: f4557032a98b2967fe27b1a91dfcf8ebb6b9a24b1afe616b5c2312465100b861e9b8d4da374be535f2d6b967ce2f53826d7f6edc2a0d32b2ab55abc96acc2f9d languageName: node linkType: hard "dompurify@npm:^3.0.5": version: 3.0.6 resolution: "dompurify@npm:3.0.6" - checksum: e5c6cdc5fe972a9d0859d939f1d86320de275be00bbef7bd5591c80b1e538935f6ce236624459a1b0c84ecd7c6a1e248684aa4637512659fccc0ce7c353828a6 + checksum: bf6e8a240673f60f5aafa46b598cfb66a18ab68f2801840005bc784b3fd3598a6bfac1eca1f80a98b197054d2329cd6edbc857aca34364abdee389a8fe6c027a languageName: node linkType: hard "elkjs@npm:^0.8.2": version: 0.8.2 resolution: "elkjs@npm:0.8.2" - checksum: ed615c485fa4ac1e858af509df24fdc9f61f2c6576df5f79f6a31c733fda69f235f53cd36af037aa9d2b8a935cb4f823fbd89d784b67f6e51be5100306ea1b39 + checksum: 0076f3b41ab874144eaab5e9edd3a592006cff154425d9d9adc8201614caa6673babc0ca9bd0ea2e8bae2a16ac87c07c2d4d4cc04f22d660928e50886481143e languageName: node linkType: hard @@ -1411,26 +1411,26 @@ __metadata: version: 6.2.3 resolution: "engine.io-client@npm:6.2.3" dependencies: - "@socket.io/component-emitter": ~3.1.0 - debug: ~4.3.1 - engine.io-parser: ~5.0.3 - ws: ~8.2.3 - xmlhttprequest-ssl: ~2.0.0 - checksum: c09fb6429503a4a8a599ec1c4f67f100202e6e06588b67b81d386a4ebf8e81160cf7501ad6770ffe0a04575f41868f0a4cbf330b85de3f7cd24ebcf2bf9fc660 + "@socket.io/component-emitter": "npm:~3.1.0" + debug: "npm:~4.3.1" + engine.io-parser: "npm:~5.0.3" + ws: "npm:~8.2.3" + xmlhttprequest-ssl: "npm:~2.0.0" + checksum: 0bf8b74a185cab929fbe7ffbce9927c42a599d527ee00123469be655a78d3c3af63b9cd138622169a1ed56bc77f95dd1eaa3b31dc17168d4059d7e19554bd8c8 languageName: node linkType: hard "engine.io-parser@npm:~5.0.3": version: 5.0.7 resolution: "engine.io-parser@npm:5.0.7" - checksum: 70ce4e22429ad4afbba187a0f71f87eb1448dbc2e4ff611857e46ca5ad09951408afa97f216e5fda993be4a944815b6f8eaebd6f70a9de522b54c7b8262fafb4 + checksum: c5cf6efc572f9c7231c67c69946e2cdd8e3dc870f692ddae73e62794915719ee0fd4cd3973349ef30c2f957111c7b7eebe0b61fef9e1d9f9634fb58fafbd05f2 languageName: node linkType: hard "entities@npm:^4.4.0": version: 4.5.0 resolution: "entities@npm:4.5.0" - checksum: 853f8ebd5b425d350bffa97dd6958143179a5938352ccae092c62d1267c4e392a039be1bae7d51b6e4ffad25f51f9617531fedf5237f15df302ccfb452cbf2d7 + checksum: ede2a35c9bce1aeccd055a1b445d41c75a14a2bb1cd22e242f20cf04d236cdcd7f9c859eb83f76885327bfae0c25bf03303665ee1ce3d47c5927b98b0e3e3d48 languageName: node linkType: hard @@ -1452,17 +1452,17 @@ __metadata: version: 2.1.0 resolution: "escodegen@npm:2.1.0" dependencies: - esprima: ^4.0.1 - estraverse: ^5.2.0 - esutils: ^2.0.2 - source-map: ~0.6.1 + esprima: "npm:^4.0.1" + estraverse: "npm:^5.2.0" + esutils: "npm:^2.0.2" + source-map: "npm:~0.6.1" dependenciesMeta: source-map: optional: true bin: escodegen: bin/escodegen.js esgenerate: bin/esgenerate.js - checksum: 096696407e161305cd05aebb95134ad176708bc5cb13d0dcc89a5fcbb959b8ed757e7f2591a5f8036f8f4952d4a724de0df14cd419e29212729fa6df5ce16bf6 + checksum: 47719a65b2888b4586e3fa93769068b275961c13089e90d5d01a96a6e8e95871b1c3893576814c8fbf08a4a31a496f37e7b2c937cf231270f4d81de012832c7c languageName: node linkType: hard @@ -1472,14 +1472,14 @@ __metadata: bin: esparse: ./bin/esparse.js esvalidate: ./bin/esvalidate.js - checksum: b45bc805a613dbea2835278c306b91aff6173c8d034223fa81498c77dcbce3b2931bf6006db816f62eacd9fd4ea975dfd85a5b7f3c6402cfd050d4ca3c13a628 + checksum: f1d3c622ad992421362294f7acf866aa9409fbad4eb2e8fa230bd33944ce371d32279667b242d8b8907ec2b6ad7353a717f3c0e60e748873a34a7905174bc0eb languageName: node linkType: hard "estraverse@npm:^5.2.0": version: 5.3.0 resolution: "estraverse@npm:5.3.0" - checksum: 072780882dc8416ad144f8fe199628d2b3e7bbc9989d9ed43795d2c90309a2047e6bc5979d7e2322a341163d22cfad9e21f4110597fe487519697389497e4e2b + checksum: 37cbe6e9a68014d34dbdc039f90d0baf72436809d02edffcc06ba3c2a12eb298048f877511353b130153e532aac8d68ba78430c0dd2f44806ebc7c014b01585e languageName: node linkType: hard @@ -1487,8 +1487,8 @@ __metadata: version: 2.1.1 resolution: "estree-util-attach-comments@npm:2.1.1" dependencies: - "@types/estree": ^1.0.0 - checksum: c5c2c41c9a55a169fb4fba9627057843f0d2e21e47a2e3e24318a11ffcf6bc704c0f96f405a529bddac7969b7c44f6cf86711505faaf0c5862c2024419b19704 + "@types/estree": "npm:^1.0.0" + checksum: f5b4d46a9d78fc41ec707dceba9773b225d73a5de9d48bc3c3d813726f84bc143a682a181eb3b60562653eac16e7d5eeb03c20d06248fbb989a98c0877dd8c42 languageName: node linkType: hard @@ -1496,17 +1496,17 @@ __metadata: version: 2.2.2 resolution: "estree-util-build-jsx@npm:2.2.2" dependencies: - "@types/estree-jsx": ^1.0.0 - estree-util-is-identifier-name: ^2.0.0 - estree-walker: ^3.0.0 - checksum: d008ac36a45d797eadca696f41b4c1ac0587ec0e0b52560cfb0e76d14ef15fc18e526f9023b6e5457dafa9cf3f010c9bb1dfc9c727ebd7cf0ba2ebbaa43919ac + "@types/estree-jsx": "npm:^1.0.0" + estree-util-is-identifier-name: "npm:^2.0.0" + estree-walker: "npm:^3.0.0" + checksum: f690334ea48843a25596f44808c404c7cdbb5211a754cc095cf8f8856240e8b7b3154350f5f0c39318581f05827b55f55ed1d89e0c9ebd7ad6ed1fe51054c9a5 languageName: node linkType: hard "estree-util-is-identifier-name@npm:^2.0.0": version: 2.1.0 resolution: "estree-util-is-identifier-name@npm:2.1.0" - checksum: cab317a071fafb99cf83b57df7924bccd2e6ab4e252688739e49f00b16cefd168e279c171442b0557c80a1c80ffaa927d670dadea65bb3c9b151efb8e772e89d + checksum: 8d99b0ce26dc0711c8d600ec69c653047d803464aed049402f492a40ccacf3b6a9d89c6ccfb2d8a17cb7a18869dc432302898702cb28e8b9172c9cda7ef82888 languageName: node linkType: hard @@ -1514,10 +1514,10 @@ __metadata: version: 1.2.0 resolution: "estree-util-to-js@npm:1.2.0" dependencies: - "@types/estree-jsx": ^1.0.0 - astring: ^1.8.0 - source-map: ^0.7.0 - checksum: 93a75e1051a6a4f5c631597ecd2ed95129fadbc80a58a10475d6d6b1b076a69393ba4a8d2bb71f698401f64ccca47e3f3828dd0042cac81439b988fae0f5f8e0 + "@types/estree-jsx": "npm:^1.0.0" + astring: "npm:^1.8.0" + source-map: "npm:^0.7.0" + checksum: 58ac98eae45bced9e865843f64ad8fb986f49eab2e67c7903c6f09a1df9f0fd40b89487d176906a34eb37acc94f9d07fce979889aec8e1b4b063f51b0c3b0fdd languageName: node linkType: hard @@ -1525,8 +1525,8 @@ __metadata: version: 1.3.0 resolution: "estree-util-value-to-estree@npm:1.3.0" dependencies: - is-plain-obj: ^3.0.0 - checksum: a13c65f0712f32897ecae128d30dedafc439e39ab3722b0a4e51c455a6a0f506fcf2cd4f4c5cce35dafb738f1f55a933a3a44ce277e2140d4a4133968b2becb3 + is-plain-obj: "npm:^3.0.0" + checksum: ebde685fe5f16b2a6d7b4204e9ac08c0ec71da855ece61dab84f748edbc9a4f77f47eba71c1d9d1755fabf88792d75accccc3c00d6433f1f65840e7dabb0c453 languageName: node linkType: hard @@ -1534,9 +1534,9 @@ __metadata: version: 1.2.1 resolution: "estree-util-visit@npm:1.2.1" dependencies: - "@types/estree-jsx": ^1.0.0 - "@types/unist": ^2.0.0 - checksum: 6feea4fdc43b0ba0f79faf1d57cf32373007e146d4810c7c09c13f5a9c1b8600c1ac57a8d949967cedd2a9a91dddd246e19b59bacfc01e417168b4ebf220f691 + "@types/estree-jsx": "npm:^1.0.0" + "@types/unist": "npm:^2.0.0" + checksum: f86b923312ca69620718d3429eabf9a3e03f7a3521c87e271f3b4152a906370dea56b58970bc574650ec7163ede1357fe27ee12a32a62a61561e33c249395d65 languageName: node linkType: hard @@ -1544,7 +1544,7 @@ __metadata: version: 3.0.3 resolution: "estree-walker@npm:3.0.3" dependencies: - "@types/estree": ^1.0.0 + "@types/estree": "npm:^1.0.0" checksum: a65728d5727b71de172c5df323385755a16c0fdab8234dc756c3854cfee343261ddfbb72a809a5660fac8c75d960bb3e21aa898c2d7e9b19bb298482ca58a3af languageName: node linkType: hard @@ -1552,7 +1552,7 @@ __metadata: "esutils@npm:^2.0.2": version: 2.0.3 resolution: "esutils@npm:2.0.3" - checksum: 22b5b08f74737379a840b8ed2036a5fb35826c709ab000683b092d9054e5c2a82c27818f12604bfc2a9a76b90b6834ef081edbc1c7ae30d1627012e067c6ec87 + checksum: b23acd24791db11d8f65be5ea58fd9a6ce2df5120ae2da65c16cfc5331ff59d5ac4ef50af66cd4bde238881503ec839928a0135b99a036a9cdfa22d17fd56cdb languageName: node linkType: hard @@ -1560,14 +1560,14 @@ __metadata: version: 0.8.0 resolution: "execa@npm:0.8.0" dependencies: - cross-spawn: ^5.0.1 - get-stream: ^3.0.0 - is-stream: ^1.1.0 - npm-run-path: ^2.0.0 - p-finally: ^1.0.0 - signal-exit: ^3.0.0 - strip-eof: ^1.0.0 - checksum: c2a4bf6e051737e46bee61a93ec286cb71a05f16650a1918c8d6262ba9f0bac031472252411baa8c78b7f432f10cb4c601349403774d69be2ebd864e9b1eca60 + cross-spawn: "npm:^5.0.1" + get-stream: "npm:^3.0.0" + is-stream: "npm:^1.1.0" + npm-run-path: "npm:^2.0.0" + p-finally: "npm:^1.0.0" + signal-exit: "npm:^3.0.0" + strip-eof: "npm:^1.0.0" + checksum: 1e255f4381714402aa85605057b9a8bbb2ea6b59eae12affad3b1233aae0109cece49f1f842453e97976a537db62a0d91969d52557bd1a66badd01a926b33b67 languageName: node linkType: hard @@ -1575,7 +1575,7 @@ __metadata: version: 2.0.1 resolution: "extend-shallow@npm:2.0.1" dependencies: - is-extendable: ^0.1.0 + is-extendable: "npm:^0.1.0" checksum: 8fb58d9d7a511f4baf78d383e637bd7d2e80843bd9cd0853649108ea835208fb614da502a553acc30208e1325240bb7cc4a68473021612496bb89725483656d8 languageName: node linkType: hard @@ -1583,21 +1583,21 @@ __metadata: "extend@npm:^3.0.0": version: 3.0.2 resolution: "extend@npm:3.0.2" - checksum: a50a8309ca65ea5d426382ff09f33586527882cf532931cb08ca786ea3146c0553310bda688710ff61d7668eba9f96b923fe1420cdf56a2c3eaf30fcab87b515 + checksum: 59e89e2dc798ec0f54b36d82f32a27d5f6472c53974f61ca098db5d4648430b725387b53449a34df38fd0392045434426b012f302b3cc049a6500ccf82877e4e languageName: node linkType: hard "fast-loops@npm:^1.1.3": version: 1.1.3 resolution: "fast-loops@npm:1.1.3" - checksum: b674378ba2ed8364ca1a00768636e88b22201c8d010fa62a8588a4cace04f90bac46714c13cf638be82b03438d2fe813600da32291fb47297a1bd7fa6cef0cee + checksum: 1bf9f102d8ed48a8c8304e2b27fd32afa65d370498db9b49d5762696ac4aa8c55593d505c142c2b7e25ca79f45207c4b25f778afd80f35df98cb2caaaf9609b7 languageName: node linkType: hard "fast-safe-stringify@npm:^2.1.1": version: 2.1.1 resolution: "fast-safe-stringify@npm:2.1.1" - checksum: a851cbddc451745662f8f00ddb622d6766f9bd97642dabfd9a405fb0d646d69fc0b9a1243cbf67f5f18a39f40f6fa821737651ff1bceeba06c9992ca2dc5bd3d + checksum: dc1f063c2c6ac9533aee14d406441f86783a8984b2ca09b19c2fe281f9ff59d315298bc7bc22fd1f83d26fe19ef2f20e2ddb68e96b15040292e555c5ced0c1e4 languageName: node linkType: hard @@ -1612,14 +1612,14 @@ __metadata: version: 3.0.5 resolution: "fbjs@npm:3.0.5" dependencies: - cross-fetch: ^3.1.5 - fbjs-css-vars: ^1.0.0 - loose-envify: ^1.0.0 - object-assign: ^4.1.0 - promise: ^7.1.1 - setimmediate: ^1.0.5 - ua-parser-js: ^1.0.35 - checksum: e609b5b64686bc96495a5c67728ed9b2710b9b3d695c5759c5f5e47c9483d1c323543ac777a86459e3694efc5712c6ce7212e944feb19752867d699568bb0e54 + cross-fetch: "npm:^3.1.5" + fbjs-css-vars: "npm:^1.0.0" + loose-envify: "npm:^1.0.0" + object-assign: "npm:^4.1.0" + promise: "npm:^7.1.1" + setimmediate: "npm:^1.0.5" + ua-parser-js: "npm:^1.0.35" + checksum: 71252595b00b06fb0475a295c74d81ada1cc499b7e11f2cde51fef04618affa568f5b7f4927f61720c23254b9144be28f8acb2086a5001cf65df8eec87c6ca5c languageName: node linkType: hard @@ -1627,22 +1627,22 @@ __metadata: version: 7.1.0 resolution: "fetch-ponyfill@npm:7.1.0" dependencies: - node-fetch: ~2.6.1 - checksum: 7fd497dd5f7db890e80193de5bc1cd0115a62400272cd9a992849288e66886fcdb0724ea1ed161be7b8db2daeafda8c58d0259acdda42d6561155dbcdbb0720a + node-fetch: "npm:~2.6.1" + checksum: 787df06a74a708163ef9e1c7967189c885cf9f7f30d63cac9e46e4cfc1f963bdd076ab025f85b58c5e85620d27992ae6714a1888e262b1748e9fdb65d82ac678 languageName: node linkType: hard "flexsearch@npm:^0.7.31": version: 0.7.31 resolution: "flexsearch@npm:0.7.31" - checksum: 9817d8909a0d07d98e2c31f8a39cbc91be7a900cc3f86d74214ee49d00b6f3b133b883a3a19154de1d2064519494002dcfb1a30fbc65c8ef44259c3655fa8f39 + checksum: f2062781b610a60f8ceb81c990405126058304ef5c78461fe3fed281c25031ddcc452571e595b107ef68a65a9b52482b7ed34a9bc6aecd4747bf38dce79c02ab languageName: node linkType: hard "focus-visible@npm:^5.2.0": version: 5.2.0 resolution: "focus-visible@npm:5.2.0" - checksum: 876f646ef453680d3d34e9f9b23961527ffd5ccaed8690f423d4fbfa37ff023d98a490972bc1387850e37ec2e44958c81f6096ef95b67462e5c4b5404cf1dbb9 + checksum: 11f686d68dbd4a0efb6714f037a4611411ffb8db4369784fcd6ba7f6cc386a42a5fa08211f6feb14ad3660719b451d0621f95058ea49963a59cf204ced38c4bc languageName: node linkType: hard @@ -1650,10 +1650,10 @@ __metadata: version: 4.0.0 resolution: "form-data@npm:4.0.0" dependencies: - asynckit: ^0.4.0 - combined-stream: ^1.0.8 - mime-types: ^2.1.12 - checksum: 01135bf8675f9d5c61ff18e2e2932f719ca4de964e3be90ef4c36aacfc7b9cb2fceb5eca0b7e0190e3383fe51c5b37f4cb80b62ca06a99aaabfcfd6ac7c9328c + asynckit: "npm:^0.4.0" + combined-stream: "npm:^1.0.8" + mime-types: "npm:^2.1.12" + checksum: 7264aa760a8cf09482816d8300f1b6e2423de1b02bba612a136857413fdc96d7178298ced106817655facc6b89036c6e12ae31c9eb5bdc16aabf502ae8a5d805 languageName: node linkType: hard @@ -1661,11 +1661,11 @@ __metadata: version: 2.1.2 resolution: "formidable@npm:2.1.2" dependencies: - dezalgo: ^1.0.4 - hexoid: ^1.0.0 - once: ^1.4.0 - qs: ^6.11.0 - checksum: 81c8e5d89f5eb873e992893468f0de22c01678ca3d315db62be0560f9de1c77d4faefc9b1f4575098eb2263b3c81ba1024833a9fc3206297ddbac88a4f69b7a8 + dezalgo: "npm:^1.0.4" + hexoid: "npm:^1.0.0" + once: "npm:^1.4.0" + qs: "npm:^6.11.0" + checksum: d385180e0461f65e6f7b70452859fe1c32aa97a290c2ca33f00cdc33145ef44fa68bbc9b93af2c3af73ae726e42c3477c6619c49f3c34b49934e9481275b7b4c languageName: node linkType: hard @@ -1673,17 +1673,17 @@ __metadata: version: 8.1.0 resolution: "fs-extra@npm:8.1.0" dependencies: - graceful-fs: ^4.2.0 - jsonfile: ^4.0.0 - universalify: ^0.1.0 - checksum: bf44f0e6cea59d5ce071bba4c43ca76d216f89e402dc6285c128abc0902e9b8525135aa808adad72c9d5d218e9f4bcc63962815529ff2f684ad532172a284880 + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^4.0.0" + universalify: "npm:^0.1.0" + checksum: 6fb12449f5349be724a138b4a7b45fe6a317d2972054517f5971959c26fbd17c0e145731a11c7324460262baa33e0a799b183ceace98f7a372c95fbb6f20f5de languageName: node linkType: hard "function-bind@npm:^1.1.2": version: 1.1.2 resolution: "function-bind@npm:1.1.2" - checksum: 2b0ff4ce708d99715ad14a6d1f894e2a83242e4a52ccfcefaee5e40050562e5f6dafc1adbb4ce2d4ab47279a45dc736ab91ea5042d843c3c092820dfe032efb1 + checksum: 185e20d20f10c8d661d59aac0f3b63b31132d492e1b11fcc2a93cb2c47257ebaee7407c38513efd2b35cafdf972d9beb2ea4593c1e0f3bf8f2744836928d7454 languageName: node linkType: hard @@ -1691,18 +1691,18 @@ __metadata: version: 1.2.2 resolution: "get-intrinsic@npm:1.2.2" dependencies: - function-bind: ^1.1.2 - has-proto: ^1.0.1 - has-symbols: ^1.0.3 - hasown: ^2.0.0 - checksum: 447ff0724df26829908dc033b62732359596fcf66027bc131ab37984afb33842d9cd458fd6cecadfe7eac22fd8a54b349799ed334cf2726025c921c7250e7417 + function-bind: "npm:^1.1.2" + has-proto: "npm:^1.0.1" + has-symbols: "npm:^1.0.3" + hasown: "npm:^2.0.0" + checksum: aa96db4f809734d26d49b59bc8669d73a0ae792da561514e987735573a1dfaede516cd102f217a078ea2b42d4c4fb1f83d487932cb15d49826b726cc9cd4470b languageName: node linkType: hard "get-stream@npm:^3.0.0": version: 3.0.0 resolution: "get-stream@npm:3.0.0" - checksum: 36142f46005ed74ce3a45c55545ec4e7da8e243554179e345a786baf144e5c4a35fb7bdc49fadfa9f18bd08000589b6fe364abdadfc4e1eb0e1b9914a6bb9c56 + checksum: de14fbb3b4548ace9ab6376be852eef9898c491282e29595bc908a1814a126d3961b11cd4b7be5220019fe3b2abb84568da7793ad308fc139925a217063fa159 languageName: node linkType: hard @@ -1710,11 +1710,11 @@ __metadata: version: 6.0.2 resolution: "get-uri@npm:6.0.2" dependencies: - basic-ftp: ^5.0.2 - data-uri-to-buffer: ^6.0.0 - debug: ^4.3.4 - fs-extra: ^8.1.0 - checksum: 762de3b0e3d4e7afc966e4ce93be587d70c270590da9b4c8fbff888362656c055838d926903d1774cbfeed4d392b4d6def4b2c06d48c050580070426a3a8629b + basic-ftp: "npm:^5.0.2" + data-uri-to-buffer: "npm:^6.0.0" + debug: "npm:^4.3.4" + fs-extra: "npm:^8.1.0" + checksum: beaf1978986f7e446b46655a047e19eb7a14ac1d8a3dec543ae34f814a84dbf8867a42660f91b1a5dbdfba50f5f9c3a6efdd8ae14632ff12a865a3790c6a4790 languageName: node linkType: hard @@ -1722,9 +1722,9 @@ __metadata: version: 7.0.0 resolution: "git-up@npm:7.0.0" dependencies: - is-ssh: ^1.4.0 - parse-url: ^8.1.0 - checksum: 2faadbab51e94d2ffb220e426e950087cc02c15d664e673bd5d1f734cfa8196fed8b19493f7bf28fe216d087d10e22a7fd9b63687e0ba7d24f0ddcfb0a266d6e + is-ssh: "npm:^1.4.0" + parse-url: "npm:^8.1.0" + checksum: 003ef38424702ac4cbe6d2817ccfb5811251244c955a8011ca40298d12cf1fb6529529f074d5832b5221e193ec05f4742ecf7806e6c4f41a81a2f2cff65d6bf4 languageName: node linkType: hard @@ -1732,22 +1732,22 @@ __metadata: version: 13.1.1 resolution: "git-url-parse@npm:13.1.1" dependencies: - git-up: ^7.0.0 - checksum: 8a6111814f4dfff304149b22c8766dc0a90c10e4ea5b5d103f7c3f14b0a711c7b20fc5a9e03c0e2d29123486ac648f9e19f663d8132f69549bee2de49ee96989 + git-up: "npm:^7.0.0" + checksum: 407f6579f3aa5e4040e215b45c1cfa7f08bd52a298a50310fc3debdd99e9d049d9f05e582b5475218116f312526691e1c3cc368e0d23f97c49735f210e381475 languageName: node linkType: hard "github-slugger@npm:^2.0.0": version: 2.0.0 resolution: "github-slugger@npm:2.0.0" - checksum: 250375cde2058f21454872c2c79f72c4637340c30c51ff158ca4ec71cbc478f33d54477d787a662f9207aeb095a2060f155bc01f15329ba8a5fb6698e0fc81f8 + checksum: 2fb15d78262eeba1e68671f048c62d05ed21e51281cccc7b1c9e8e089e8510b3037fb648b8ba27290e60534df2cb251312a1e7e813204495df621220192fd600 languageName: node linkType: hard "glob-to-regexp@npm:^0.4.1": version: 0.4.1 resolution: "glob-to-regexp@npm:0.4.1" - checksum: e795f4e8f06d2a15e86f76e4d92751cf8bbfcf0157cea5c2f0f35678a8195a750b34096b1256e436f0cebc1883b5ff0888c47348443e69546a5a87f9e1eb1167 + checksum: 9009529195a955c40d7b9690794aeff5ba665cc38f1519e111c58bb54366fd0c106bde80acf97ba4e533208eb53422c83b136611a54c5fefb1edd8dc267cb62e languageName: node linkType: hard @@ -1755,15 +1755,15 @@ __metadata: version: 1.0.1 resolution: "gopd@npm:1.0.1" dependencies: - get-intrinsic: ^1.1.3 - checksum: a5ccfb8806e0917a94e0b3de2af2ea4979c1da920bc381667c260e00e7cafdbe844e2cb9c5bcfef4e5412e8bf73bab837285bc35c7ba73aaaf0134d4583393a6 + get-intrinsic: "npm:^1.1.3" + checksum: 5fbc7ad57b368ae4cd2f41214bd947b045c1a4be2f194a7be1778d71f8af9dbf4004221f3b6f23e30820eb0d052b4f819fe6ebe8221e2a3c6f0ee4ef173421ca languageName: node linkType: hard "graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.11": version: 4.2.11 resolution: "graceful-fs@npm:4.2.11" - checksum: ac85f94da92d8eb6b7f5a8b20ce65e43d66761c55ce85ac96df6865308390da45a8d3f0296dd3a663de65d30ba497bd46c696cc1e248c72b13d6d567138a4fc7 + checksum: bf152d0ed1dc159239db1ba1f74fdbc40cb02f626770dcd5815c427ce0688c2635a06ed69af364396da4636d0408fcf7d4afdf7881724c3307e46aff30ca49e2 languageName: node linkType: hard @@ -1771,11 +1771,11 @@ __metadata: version: 4.0.3 resolution: "gray-matter@npm:4.0.3" dependencies: - js-yaml: ^3.13.1 - kind-of: ^6.0.2 - section-matter: ^1.0.0 - strip-bom-string: ^1.0.0 - checksum: 37717bd424344487d655392251ce8d8878a1275ee087003e61208fba3bfd59cbb73a85b2159abf742ae95e23db04964813fdc33ae18b074208428b2528205222 + js-yaml: "npm:^3.13.1" + kind-of: "npm:^6.0.2" + section-matter: "npm:^1.0.0" + strip-bom-string: "npm:^1.0.0" + checksum: 9a8f146a7a918d2524d5d60e0b4d45729f5bca54aa41247f971d9e4bc984943fda58159435763d463ec2abc8a0e238e807bd9b05e3a48f4a613a325c9dd5ad0c languageName: node linkType: hard @@ -1790,22 +1790,22 @@ __metadata: version: 1.0.1 resolution: "has-property-descriptors@npm:1.0.1" dependencies: - get-intrinsic: ^1.2.2 - checksum: 2bcc6bf6ec6af375add4e4b4ef586e43674850a91ad4d46666d0b28ba8e1fd69e424c7677d24d60f69470ad0afaa2f3197f508b20b0bb7dd99a8ab77ffc4b7c4 + get-intrinsic: "npm:^1.2.2" + checksum: 21a47bb080a24e79594aef1ce71e1a18a1c5ab4120308e218088f67ebb7f6f408847541e2d96e5bd00e90eef5c5a49e4ebbdc8fc2d5b365a2c379aef071642f0 languageName: node linkType: hard "has-proto@npm:^1.0.1": version: 1.0.1 resolution: "has-proto@npm:1.0.1" - checksum: febc5b5b531de8022806ad7407935e2135f1cc9e64636c3916c6842bd7995994ca3b29871ecd7954bd35f9e2986c17b3b227880484d22259e2f8e6ce63fd383e + checksum: eab2ab0ed1eae6d058b9bbc4c1d99d2751b29717be80d02fd03ead8b62675488de0c7359bc1fdd4b87ef6fd11e796a9631ad4d7452d9324fdada70158c2e5be7 languageName: node linkType: hard "has-symbols@npm:^1.0.3": version: 1.0.3 resolution: "has-symbols@npm:1.0.3" - checksum: a054c40c631c0d5741a8285010a0777ea0c068f99ed43e5d6eb12972da223f8af553a455132fdb0801bdcfa0e0f443c0c03a68d8555aa529b3144b446c3f2410 + checksum: 464f97a8202a7690dadd026e6d73b1ceeddd60fe6acfd06151106f050303eaa75855aaa94969df8015c11ff7c505f196114d22f7386b4a471038da5874cf5e9b languageName: node linkType: hard @@ -1813,9 +1813,9 @@ __metadata: version: 4.0.0 resolution: "hash-obj@npm:4.0.0" dependencies: - is-obj: ^3.0.0 - sort-keys: ^5.0.0 - type-fest: ^1.0.2 + is-obj: "npm:^3.0.0" + sort-keys: "npm:^5.0.0" + type-fest: "npm:^1.0.2" checksum: 33ff78814accc4e7ac7a1227d8eff3c377ff24996b3329d2092e0e39e4cbbb5330c8e738f86130cea7980852bae4f3650d5b8ef89b5902e10571d2e8cb4f4d64 languageName: node linkType: hard @@ -1824,8 +1824,8 @@ __metadata: version: 2.0.0 resolution: "hasown@npm:2.0.0" dependencies: - function-bind: ^1.1.2 - checksum: 6151c75ca12554565098641c98a40f4cc86b85b0fd5b6fe92360967e4605a4f9610f7757260b4e8098dd1c2ce7f4b095f2006fe72a570e3b6d2d28de0298c176 + function-bind: "npm:^1.1.2" + checksum: c330f8d93f9d23fe632c719d4db3d698ef7d7c367d51548b836069e06a90fa9151e868c8e67353cfe98d67865bf7354855db28fa36eb1b18fa5d4a3f4e7f1c90 languageName: node linkType: hard @@ -1833,10 +1833,10 @@ __metadata: version: 5.0.0 resolution: "hast-util-from-dom@npm:5.0.0" dependencies: - "@types/hast": ^3.0.0 - hastscript: ^8.0.0 - web-namespaces: ^2.0.0 - checksum: bf8f96c480a598b42156227be2210bbb7a08da519ae4d57814385c8560b01e2b6b5fbde2afce808ce7ba7c5cd172822d4285b8f5edde2d13089bc9c3177c0d09 + "@types/hast": "npm:^3.0.0" + hastscript: "npm:^8.0.0" + web-namespaces: "npm:^2.0.0" + checksum: 96ff4231abe479a6b17cb49f5c80ca4980c2197c5e0f531e0305b4a15ff9e1d5577d9716f39f15801c0411dc6e02ae02f588283204c3350c0df16c2ee7474155 languageName: node linkType: hard @@ -1844,11 +1844,11 @@ __metadata: version: 2.0.0 resolution: "hast-util-from-html-isomorphic@npm:2.0.0" dependencies: - "@types/hast": ^3.0.0 - hast-util-from-dom: ^5.0.0 - hast-util-from-html: ^2.0.0 - unist-util-remove-position: ^5.0.0 - checksum: a98d02890bd1b5a804a1b2aaacd0332a6563f2a8df620450e38ab8962728cda0485cd29435824840621d1e653943776864e912d78d24cce6a7f484011ee7cef0 + "@types/hast": "npm:^3.0.0" + hast-util-from-dom: "npm:^5.0.0" + hast-util-from-html: "npm:^2.0.0" + unist-util-remove-position: "npm:^5.0.0" + checksum: 16ba4b46f9f3322d750516fcf760f5d181ff32cefc941dc4d3992742d30ad5ba78139e7429db8567a8e5c8725db7c86f07f4af9935342469db0b8565147eb2b6 languageName: node linkType: hard @@ -1856,13 +1856,13 @@ __metadata: version: 2.0.1 resolution: "hast-util-from-html@npm:2.0.1" dependencies: - "@types/hast": ^3.0.0 - devlop: ^1.1.0 - hast-util-from-parse5: ^8.0.0 - parse5: ^7.0.0 - vfile: ^6.0.0 - vfile-message: ^4.0.0 - checksum: 8decdec1f2750d3d8d4933a4d06d78846a9fb3c97cded07395d160adae22bacfc69eaf113fd95a6ad696d1e5877580f2ac83a4161fa9f3becb0fafe2cec8b0ea + "@types/hast": "npm:^3.0.0" + devlop: "npm:^1.1.0" + hast-util-from-parse5: "npm:^8.0.0" + parse5: "npm:^7.0.0" + vfile: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 5e8111c28fa4aa7cbb2d57b41bf4ff771641332c6e0704900367acbe0b3f5e5c432a82df80815d4fe91ac8137c264f72c8632fd7704992ebbddc6c0712b78582 languageName: node linkType: hard @@ -1870,15 +1870,15 @@ __metadata: version: 8.0.1 resolution: "hast-util-from-parse5@npm:8.0.1" dependencies: - "@types/hast": ^3.0.0 - "@types/unist": ^3.0.0 - devlop: ^1.0.0 - hastscript: ^8.0.0 - property-information: ^6.0.0 - vfile: ^6.0.0 - vfile-location: ^5.0.0 - web-namespaces: ^2.0.0 - checksum: fdd1ab8b03af13778ecb94ef9a58b1e3528410cdfceb3d6bb7600508967d0d836b451bc7bc3baf66efb7c730d3d395eea4bb1b30352b0162823d9f0de976774b + "@types/hast": "npm:^3.0.0" + "@types/unist": "npm:^3.0.0" + devlop: "npm:^1.0.0" + hastscript: "npm:^8.0.0" + property-information: "npm:^6.0.0" + vfile: "npm:^6.0.0" + vfile-location: "npm:^5.0.0" + web-namespaces: "npm:^2.0.0" + checksum: d4105af849bebceac0a641a5f4611a43eeb4b94f9d3958ce6cbbb069dd177edefb9cd31a210689bc9cca9a30db984d622bdf898aed44a2ea99560d81023b0e2d languageName: node linkType: hard @@ -1886,8 +1886,8 @@ __metadata: version: 3.0.0 resolution: "hast-util-is-element@npm:3.0.0" dependencies: - "@types/hast": ^3.0.0 - checksum: 82569a420eda5877c52fdbbdbe26675f012c02d70813dfd19acffdee328e42e4bd0b7ae34454cfcbcb932b2bedbd7ddc119f943a0cfb234120f9456d6c0c4331 + "@types/hast": "npm:^3.0.0" + checksum: b4e6d84c763ffdc44198ba0c4a5a7430794a7b2c1eec699d37776ea9832eef79f129726c175982103eb3b21f531a6bfd2fa43ce26e1ed6d8f6a87c102ba212c8 languageName: node linkType: hard @@ -1895,7 +1895,7 @@ __metadata: version: 4.0.0 resolution: "hast-util-parse-selector@npm:4.0.0" dependencies: - "@types/hast": ^3.0.0 + "@types/hast": "npm:^3.0.0" checksum: 76087670d3b0b50b23a6cb70bca53a6176d6608307ccdbb3ed18b650b82e7c3513bfc40348f1389dc0c5ae872b9a768851f4335f44654abd7deafd6974c52402 languageName: node linkType: hard @@ -1904,20 +1904,20 @@ __metadata: version: 9.0.1 resolution: "hast-util-raw@npm:9.0.1" dependencies: - "@types/hast": ^3.0.0 - "@types/unist": ^3.0.0 - "@ungap/structured-clone": ^1.0.0 - hast-util-from-parse5: ^8.0.0 - hast-util-to-parse5: ^8.0.0 - html-void-elements: ^3.0.0 - mdast-util-to-hast: ^13.0.0 - parse5: ^7.0.0 - unist-util-position: ^5.0.0 - unist-util-visit: ^5.0.0 - vfile: ^6.0.0 - web-namespaces: ^2.0.0 - zwitch: ^2.0.0 - checksum: 4b486eb4782eafb471ae639d45c14ac8797676518cf5da16adc973f52d7b8e1075a1451558c023b390820bd9fd213213e6248a2dae71b68ac5040b277509b8d9 + "@types/hast": "npm:^3.0.0" + "@types/unist": "npm:^3.0.0" + "@ungap/structured-clone": "npm:^1.0.0" + hast-util-from-parse5: "npm:^8.0.0" + hast-util-to-parse5: "npm:^8.0.0" + html-void-elements: "npm:^3.0.0" + mdast-util-to-hast: "npm:^13.0.0" + parse5: "npm:^7.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit: "npm:^5.0.0" + vfile: "npm:^6.0.0" + web-namespaces: "npm:^2.0.0" + zwitch: "npm:^2.0.0" + checksum: b89a198ec3a3786cef08beac500d27f948124d0f2795e079f775f16c38506719157b9b5cc9a0c781c705b6eff7f66d692f55f0aa5e88530d4ba81e21ca653248 languageName: node linkType: hard @@ -1925,22 +1925,22 @@ __metadata: version: 2.3.3 resolution: "hast-util-to-estree@npm:2.3.3" dependencies: - "@types/estree": ^1.0.0 - "@types/estree-jsx": ^1.0.0 - "@types/hast": ^2.0.0 - "@types/unist": ^2.0.0 - comma-separated-tokens: ^2.0.0 - estree-util-attach-comments: ^2.0.0 - estree-util-is-identifier-name: ^2.0.0 - hast-util-whitespace: ^2.0.0 - mdast-util-mdx-expression: ^1.0.0 - mdast-util-mdxjs-esm: ^1.0.0 - property-information: ^6.0.0 - space-separated-tokens: ^2.0.0 - style-to-object: ^0.4.1 - unist-util-position: ^4.0.0 - zwitch: ^2.0.0 - checksum: a09de0214db4d71f11cbd6f18663a8032116f82cb076b05d2d735444c05a9692902dae1023b70d0a254fc0a776f81e97450ca396bb9252c8fd631c3ba2e12f24 + "@types/estree": "npm:^1.0.0" + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^2.0.0" + "@types/unist": "npm:^2.0.0" + comma-separated-tokens: "npm:^2.0.0" + estree-util-attach-comments: "npm:^2.0.0" + estree-util-is-identifier-name: "npm:^2.0.0" + hast-util-whitespace: "npm:^2.0.0" + mdast-util-mdx-expression: "npm:^1.0.0" + mdast-util-mdxjs-esm: "npm:^1.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + style-to-object: "npm:^0.4.1" + unist-util-position: "npm:^4.0.0" + zwitch: "npm:^2.0.0" + checksum: 86818cba4cceb94006ba09a21026df3732e638d3f871ce7f087436287f7a0a7da6e7c0178256a007849e10d4cea6e346bf224ecd6e5009d9f82a71064d3d3183 languageName: node linkType: hard @@ -1948,14 +1948,14 @@ __metadata: version: 8.0.0 resolution: "hast-util-to-parse5@npm:8.0.0" dependencies: - "@types/hast": ^3.0.0 - comma-separated-tokens: ^2.0.0 - devlop: ^1.0.0 - property-information: ^6.0.0 - space-separated-tokens: ^2.0.0 - web-namespaces: ^2.0.0 - zwitch: ^2.0.0 - checksum: 137469209cb2b32b57387928878dc85310fbd5afa4807a8da69529199bb1d19044bfc95b50c3dc68d4fb2b6cb8bf99b899285597ab6ab318f50422eefd5599dd + "@types/hast": "npm:^3.0.0" + comma-separated-tokens: "npm:^2.0.0" + devlop: "npm:^1.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + web-namespaces: "npm:^2.0.0" + zwitch: "npm:^2.0.0" + checksum: ba59d0913ba7e914d8b0a50955c06806a6868445c56796ac9129d58185e86d7ff24037246767aba2ea904d9dee8c09b8ff303630bcd854431fdc1bbee2164c36 languageName: node linkType: hard @@ -1963,18 +1963,18 @@ __metadata: version: 4.0.0 resolution: "hast-util-to-text@npm:4.0.0" dependencies: - "@types/hast": ^3.0.0 - "@types/unist": ^3.0.0 - hast-util-is-element: ^3.0.0 - unist-util-find-after: ^5.0.0 - checksum: 3beedbdf20e2ecc9352cdd0963848b741294c1f3872d43400125bc0ca2d7938d5358081b0f9c252ec15c22368f30a4e7e6ca0ce5a57d4d2bcdd02adbf884e2af + "@types/hast": "npm:^3.0.0" + "@types/unist": "npm:^3.0.0" + hast-util-is-element: "npm:^3.0.0" + unist-util-find-after: "npm:^5.0.0" + checksum: 04997674ae74c63c785349e4dc4ffd6cbc32caca80d76dbccde78cd56b25199f6321eb68b9d516fe2ffcc1bc5ea8d24e91f2168afc3d939ddf32b9ac371e1832 languageName: node linkType: hard "hast-util-whitespace@npm:^2.0.0": version: 2.0.1 resolution: "hast-util-whitespace@npm:2.0.1" - checksum: 431be6b2f35472f951615540d7a53f69f39461e5e080c0190268bdeb2be9ab9b1dddfd1f467dd26c1de7e7952df67beb1307b6ee940baf78b24a71b5e0663868 + checksum: ad5a61f4e81330413d4182247e158d77408a076994fbe7257574ea6489728bb4138c83e00482051c941973d4ed3049729afb35600debfc6d1d945c40453685f7 languageName: node linkType: hard @@ -1982,26 +1982,26 @@ __metadata: version: 8.0.0 resolution: "hastscript@npm:8.0.0" dependencies: - "@types/hast": ^3.0.0 - comma-separated-tokens: ^2.0.0 - hast-util-parse-selector: ^4.0.0 - property-information: ^6.0.0 - space-separated-tokens: ^2.0.0 - checksum: ae3c20223e7b847320c0f98b6fb3c763ebe1bf3913c5805fbc176cf84553a9db1117ca34cf842a5235890b4b9ae0e94501bfdc9a9b870a5dbf5fc52426db1097 + "@types/hast": "npm:^3.0.0" + comma-separated-tokens: "npm:^2.0.0" + hast-util-parse-selector: "npm:^4.0.0" + property-information: "npm:^6.0.0" + space-separated-tokens: "npm:^2.0.0" + checksum: cdc3477968ee0161c39615a650203e592d03bbd9a2a0e1d78d37f544fcf8c30f55fcf9e6d27c4372a89fdebeae756452f19c7f5b655a162d54524b39b2dfe0fe languageName: node linkType: hard "heap@npm:^0.2.6": version: 0.2.7 resolution: "heap@npm:0.2.7" - checksum: b0f3963a799e02173f994c452921a777f2b895b710119df999736bfed7477235c2860c423d9aea18a9f3b3d065cb1114d605c208cfcb8d0ac550f97ec5d28cb0 + checksum: 6374f6510af79bf47f2cfcee265bf608e6ed2b2694875974d1cb5654ddc98af05347dcf3a42ee9a7de318b576022d6f4d00fe06fa65a4a65c4c60638375eabfe languageName: node linkType: hard "hexoid@npm:^1.0.0": version: 1.0.0 resolution: "hexoid@npm:1.0.0" - checksum: 27a148ca76a2358287f40445870116baaff4a0ed0acc99900bf167f0f708ffd82e044ff55e9949c71963852b580fc024146d3ac6d5d76b508b78d927fa48ae2d + checksum: f2271b8b6b0e13fb5a1eccf740f53ce8bae689c80b9498b854c447f9dc94f75f44e0de064c0e4660ecdbfa8942bb2b69973fdcb080187b45bbb409a3c71f19d4 languageName: node linkType: hard @@ -2016,9 +2016,9 @@ __metadata: version: 7.0.0 resolution: "http-proxy-agent@npm:7.0.0" dependencies: - agent-base: ^7.1.0 - debug: ^4.3.4 - checksum: 48d4fac997917e15f45094852b63b62a46d0c8a4f0b9c6c23ca26d27b8df8d178bed88389e604745e748bd9a01f5023e25093722777f0593c3f052009ff438b6 + agent-base: "npm:^7.1.0" + debug: "npm:^4.3.4" + checksum: dbaaf3d9f3fc4df4a5d7ec45d456ec50f575240b557160fa63427b447d1f812dd7fe4a4f17d2e1ba003d231f07edf5a856ea6d91cb32d533062ff20a7803ccac languageName: node linkType: hard @@ -2026,9 +2026,9 @@ __metadata: version: 7.0.2 resolution: "https-proxy-agent@npm:7.0.2" dependencies: - agent-base: ^7.0.2 - debug: 4 - checksum: 088969a0dd476ea7a0ed0a2cf1283013682b08f874c3bc6696c83fa061d2c157d29ef0ad3eb70a2046010bb7665573b2388d10fdcb3e410a66995e5248444292 + agent-base: "npm:^7.0.2" + debug: "npm:4" + checksum: 9ec844f78fd643608239c9c3f6819918631df5cd3e17d104cc507226a39b5d4adda9d790fc9fd63ac0d2bb8a761b2f9f60faa80584a9bf9d7f2e8c5ed0acd330 languageName: node linkType: hard @@ -2036,7 +2036,7 @@ __metadata: version: 1.2.1 resolution: "humanize-ms@npm:1.2.1" dependencies: - ms: ^2.0.0 + ms: "npm:^2.0.0" checksum: 9c7a74a2827f9294c009266c82031030eae811ca87b0da3dceb8d6071b9bde22c9f3daef0469c3c533cc67a97d8a167cd9fc0389350e5f415f61a79b171ded16 languageName: node linkType: hard @@ -2044,7 +2044,7 @@ __metadata: "hyphenate-style-name@npm:^1.0.3": version: 1.0.4 resolution: "hyphenate-style-name@npm:1.0.4" - checksum: 4f5bf4b055089754924babebaa23c17845937bcca6aee95d5d015f8fa1e6814279002bd6a9e541e3fac2cd02519fc76305396727066c57c8e21a7e73e7a12137 + checksum: d37883e6b7e1be62e1ddae29cac83fa59fb93c068bc8eb1561585439adbad91dcf7e264ee2a82c4378fc58049f7bd853544a4a81bf00d4aff717f641052323e7 languageName: node linkType: hard @@ -2052,22 +2052,22 @@ __metadata: version: 0.6.3 resolution: "iconv-lite@npm:0.6.3" dependencies: - safer-buffer: ">= 2.1.2 < 3.0.0" - checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf + safer-buffer: "npm:>= 2.1.2 < 3.0.0" + checksum: 24e3292dd3dadaa81d065c6f8c41b274a47098150d444b96e5f53b4638a9a71482921ea6a91a1f59bb71d9796de25e04afd05919fa64c360347ba65d3766f10f languageName: node linkType: hard "ieee754@npm:^1.2.1": version: 1.2.1 resolution: "ieee754@npm:1.2.1" - checksum: 5144c0c9815e54ada181d80a0b810221a253562422e7c6c3a60b1901154184f49326ec239d618c416c1c5945a2e197107aee8d986a3dd836b53dffefd99b5e7e + checksum: d9f2557a59036f16c282aaeb107832dc957a93d73397d89bbad4eb1130560560eb695060145e8e6b3b498b15ab95510226649a0b8f52ae06583575419fe10fc4 languageName: node linkType: hard "inline-style-parser@npm:0.1.1": version: 0.1.1 resolution: "inline-style-parser@npm:0.1.1" - checksum: 5d545056a3e1f2bf864c928a886a0e1656a3517127d36917b973de581bd54adc91b4bf1febcb0da054f204b4934763f1a4e09308b4d55002327cf1d48ac5d966 + checksum: e661f4fb6824a41076c4d23358e8b581fd3410fbfb9baea4cb542a85448b487691c3b9bbb58ad73a95613041ca616f059595f19cadd0c22476a1fffa79842b48 languageName: node linkType: hard @@ -2075,44 +2075,44 @@ __metadata: version: 6.0.4 resolution: "inline-style-prefixer@npm:6.0.4" dependencies: - css-in-js-utils: ^3.1.0 - fast-loops: ^1.1.3 - checksum: caf7a75d18acbedc7e3b8bfac17563082becd2df6b65accad964a6afdf490329b42315c37fe65ba0177cc10fd32809eb40d62aba23a0118c74d87d4fc58defa2 + css-in-js-utils: "npm:^3.1.0" + fast-loops: "npm:^1.1.3" + checksum: 5ee7a082b4d23ac220fabe2353a8452bd50c587ae0d9e20e6c0f4ebc456377c7a3a4ce9d13486e0cfc9032db00d9b0ae33d3944a183340b1b3d34cef2d5df80b languageName: node linkType: hard "internmap@npm:1 - 2": version: 2.0.3 resolution: "internmap@npm:2.0.3" - checksum: 7ca41ec6aba8f0072fc32fa8a023450a9f44503e2d8e403583c55714b25efd6390c38a87161ec456bf42d7bc83aab62eb28f5aef34876b1ac4e60693d5e1d241 + checksum: 873e0e7fcfe32f999aa0997a0b648b1244508e56e3ea6b8259b5245b50b5eeb3853fba221f96692bd6d1def501da76c32d64a5cb22a0b26cdd9b445664f805e0 languageName: node linkType: hard "internmap@npm:^1.0.0": version: 1.0.1 resolution: "internmap@npm:1.0.1" - checksum: 9d00f8c0cf873a24a53a5a937120dab634c41f383105e066bb318a61864e6292d24eb9516e8e7dccfb4420ec42ca474a0f28ac9a6cc82536898fa09bbbe53813 + checksum: 429cb9e28f393f10c73a826d71ba9e359711b7e42345bd684aba708f43b8139ce90f09b15abbf977a981474ac61615294854e5b9520d3f65187d0f6a2ff27665 languageName: node linkType: hard "intersection-observer@npm:^0.12.2": version: 0.12.2 resolution: "intersection-observer@npm:0.12.2" - checksum: d1fa9ebbb1e0baafe88ad95545bbb93f92bdcb8789912a2bd11b2463ab177ef185052c9c79c26187833d633f404acb077d4b1249353c5f6e2ca5cd64f50e216b + checksum: cb1a6369bd1636b3f227d7cb7fec22f5a35b9d8ba9e26303b405d50c54c3ef02c5a547107b1d951e7eb421e192a564222faf4660a21fad69c34dcb9f926c159c languageName: node linkType: hard "ip@npm:^1.1.8": version: 1.1.8 resolution: "ip@npm:1.1.8" - checksum: a2ade53eb339fb0cbe9e69a44caab10d6e3784662285eb5d2677117ee4facc33a64679051c35e0dfdb1a3983a51ce2f5d2cb36446d52e10d01881789b76e28fb + checksum: 52975ebf84a090162d561fc6948fbc4c53775a8054c05371f09cfcb40e30a53aa225b4efb624f630cff5af2dd8124c82dd68e4df065dc1d1ca91d04e850e9cde languageName: node linkType: hard "ip@npm:^2.0.0": version: 2.0.0 resolution: "ip@npm:2.0.0" - checksum: cfcfac6b873b701996d71ec82a7dd27ba92450afdb421e356f44044ed688df04567344c36cbacea7d01b1c39a4c732dc012570ebe9bebfb06f27314bca625349 + checksum: 1270b11e534a466fb4cf4426cbcc3a907c429389f7f4e4e3b288b42823562e88d6a509ceda8141a507de147ca506141f745005c0aa144569d94cf24a54eb52bc languageName: node linkType: hard @@ -2127,8 +2127,8 @@ __metadata: version: 2.0.1 resolution: "is-alphanumerical@npm:2.0.1" dependencies: - is-alphabetical: ^2.0.0 - is-decimal: ^2.0.0 + is-alphabetical: "npm:^2.0.0" + is-decimal: "npm:^2.0.0" checksum: 87acc068008d4c9c4e9f5bd5e251041d42e7a50995c77b1499cf6ed248f971aadeddb11f239cabf09f7975ee58cac7a48ffc170b7890076d8d227b24a68663c9 languageName: node linkType: hard @@ -2136,7 +2136,7 @@ __metadata: "is-buffer@npm:^2.0.0": version: 2.0.5 resolution: "is-buffer@npm:2.0.5" - checksum: 764c9ad8b523a9f5a32af29bdf772b08eb48c04d2ad0a7240916ac2688c983bf5f8504bf25b35e66240edeb9d9085461f9b5dae1f3d2861c6b06a65fe983de42 + checksum: 3261a8b858edcc6c9566ba1694bf829e126faa88911d1c0a747ea658c5d81b14b6955e3a702d59dabadd58fdd440c01f321aa71d6547105fd21d03f94d0597e7 languageName: node linkType: hard @@ -2186,7 +2186,7 @@ __metadata: version: 3.0.2 resolution: "is-reference@npm:3.0.2" dependencies: - "@types/estree": "*" + "@types/estree": "npm:*" checksum: ac3bf5626fe9d0afbd7454760d73c47f16b9f471401b9749721ad3b66f0a39644390382acf88ca9d029c95782c1e2ec65662855e3ba91acf52d82231247a7fd3 languageName: node linkType: hard @@ -2195,29 +2195,29 @@ __metadata: version: 1.4.0 resolution: "is-ssh@npm:1.4.0" dependencies: - protocols: ^2.0.1 - checksum: 75eaa17b538bee24b661fbeb0f140226ac77e904a6039f787bea418431e2162f1f9c4c4ccad3bd169e036cd701cc631406e8c505d9fa7e20164e74b47f86f40f + protocols: "npm:^2.0.1" + checksum: e2d17d74a19b4368cc06ce5c76d4f625952442da337098d670a9840e1db5334c646aa0a6ed3a01e9d396901e22c755174ce64e74c3139bb10e5df03d5a6fb3fa languageName: node linkType: hard "is-stream@npm:^1.1.0": version: 1.1.0 resolution: "is-stream@npm:1.1.0" - checksum: 063c6bec9d5647aa6d42108d4c59723d2bd4ae42135a2d4db6eadbd49b7ea05b750fd69d279e5c7c45cf9da753ad2c00d8978be354d65aa9f6bb434969c6a2ae + checksum: 351aa77c543323c4e111204482808cfad68d2e940515949e31ccd0b010fc13d5fba4b9c230e4887fd24284713040f43e542332fbf172f6b9944b7d62e389c0ec languageName: node linkType: hard "isexe@npm:^2.0.0": version: 2.0.0 resolution: "isexe@npm:2.0.0" - checksum: 26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62 + checksum: 7c9f715c03aff08f35e98b1fadae1b9267b38f0615d501824f9743f3aab99ef10e303ce7db3f186763a0b70a19de5791ebfc854ff884d5a8c4d92211f642ec92 languageName: node linkType: hard "js-tokens@npm:^3.0.0 || ^4.0.0": version: 4.0.0 resolution: "js-tokens@npm:4.0.0" - checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78 + checksum: af37d0d913fb56aec6dc0074c163cc71cd23c0b8aad5c2350747b6721d37ba118af35abdd8b33c47ec2800de07dedb16a527ca9c530ee004093e04958bd0cbf2 languageName: node linkType: hard @@ -2225,11 +2225,11 @@ __metadata: version: 3.14.1 resolution: "js-yaml@npm:3.14.1" dependencies: - argparse: ^1.0.7 - esprima: ^4.0.0 + argparse: "npm:^1.0.7" + esprima: "npm:^4.0.0" bin: js-yaml: bin/js-yaml.js - checksum: bef146085f472d44dee30ec34e5cf36bf89164f5d585435a3d3da89e52622dff0b188a580e4ad091c3341889e14cb88cac6e4deb16dc5b1e9623bb0601fc255c + checksum: 9e22d80b4d0105b9899135365f746d47466ed53ef4223c529b3c0f7a39907743fdbd3c4379f94f1106f02755b5e90b2faaf84801a891135544e1ea475d1a1379 languageName: node linkType: hard @@ -2237,17 +2237,17 @@ __metadata: version: 4.1.0 resolution: "js-yaml@npm:4.1.0" dependencies: - argparse: ^2.0.1 + argparse: "npm:^2.0.1" bin: js-yaml: bin/js-yaml.js - checksum: c7830dfd456c3ef2c6e355cc5a92e6700ceafa1d14bba54497b34a99f0376cecbb3e9ac14d3e5849b426d5a5140709a66237a8c991c675431271c4ce5504151a + checksum: c138a34a3fd0d08ebaf71273ad4465569a483b8a639e0b118ff65698d257c2791d3199e3f303631f2cb98213fa7b5f5d6a4621fd0fff819421b990d30d967140 languageName: node linkType: hard "jsonc-parser@npm:^3.2.0": version: 3.2.0 resolution: "jsonc-parser@npm:3.2.0" - checksum: 946dd9a5f326b745aa326d48a7257e3f4a4b62c5e98ec8e49fa2bdd8d96cef7e6febf1399f5c7016114fd1f68a1c62c6138826d5d90bc650448e3cf0951c53c7 + checksum: bd68b902e5f9394f01da97921f49c5084b2dc03a0c5b4fdb2a429f8d6f292686c1bf87badaeb0a8148d024192a88f5ad2e57b2918ba43fe25cf15f3371db64d4 languageName: node linkType: hard @@ -2255,11 +2255,11 @@ __metadata: version: 4.0.0 resolution: "jsonfile@npm:4.0.0" dependencies: - graceful-fs: ^4.1.6 + graceful-fs: "npm:^4.1.6" dependenciesMeta: graceful-fs: optional: true - checksum: 6447d6224f0d31623eef9b51185af03ac328a7553efcee30fa423d98a9e276ca08db87d71e17f2310b0263fd3ffa6c2a90a6308367f661dc21580f9469897c9e + checksum: 17796f0ab1be8479827d3683433f97ebe0a1c6932c3360fa40348eac36904d69269aab26f8b16da311882d94b42e9208e8b28e490bf926364f3ac9bff134c226 languageName: node linkType: hard @@ -2267,73 +2267,73 @@ __metadata: version: 0.16.9 resolution: "katex@npm:0.16.9" dependencies: - commander: ^8.3.0 + commander: "npm:^8.3.0" bin: katex: cli.js - checksum: 861194dfd4d86505e657f688fb73048d46ac498edafce71199502a35b03c0ecc35ba930c631be79c4a09d90a0d23476673cd52f6bc367c7a161854d64005fa95 + checksum: 0a1ea1e87c286f845ccd12adadb39e5bc6655c830229195697e5ed74b525f3a4595e77ed3de57d3cfc678476c4bc074ee421fc2dc156554a11968f9d9b5093ea languageName: node linkType: hard "khroma@npm:^2.0.0": version: 2.1.0 resolution: "khroma@npm:2.1.0" - checksum: b34ba39d3a9a52d388110bded8cb1c12272eb69c249d8eb26feab12d18a96a9bc4ceec4851d2afa43de4569f7d5ea78fa305965a3d0e96a38e02fe77c53677da + checksum: a195e317bf6f3a1cba98df2677bf9bf6d14195ee0b1c3e5bc20a542cd99652682f290c196a8963956d87aed4ad65ac0bc8a15d75cddf00801fdafd148e01a5d2 languageName: node linkType: hard "kind-of@npm:^6.0.0, kind-of@npm:^6.0.2": version: 6.0.3 resolution: "kind-of@npm:6.0.3" - checksum: 3ab01e7b1d440b22fe4c31f23d8d38b4d9b91d9f291df683476576493d5dfd2e03848a8b05813dd0c3f0e835bc63f433007ddeceb71f05cb25c45ae1b19c6d3b + checksum: 5873d303fb36aad875b7538798867da2ae5c9e328d67194b0162a3659a627d22f742fc9c4ae95cd1704132a24b00cae5041fc00c0f6ef937dc17080dc4dbb962 languageName: node linkType: hard "kleur@npm:^4.0.3": version: 4.1.5 resolution: "kleur@npm:4.1.5" - checksum: 1dc476e32741acf0b1b5b0627ffd0d722e342c1b0da14de3e8ae97821327ca08f9fb944542fb3c126d90ac5f27f9d804edbe7c585bf7d12ef495d115e0f22c12 + checksum: 44d84cc4eedd4311099402ef6d4acd9b2d16e08e499d6ef3bb92389bd4692d7ef09e35248c26e27f98acac532122acb12a1bfee645994ae3af4f0a37996da7df languageName: node linkType: hard "layout-base@npm:^1.0.0": version: 1.0.2 resolution: "layout-base@npm:1.0.2" - checksum: e4c312765ac4fa13b49c940e701461309c7a0aa07f784f81d31f626b945dced90a8abf83222388a5af16b7074271f745501a90ef5a3af676abb2e7eb16d55b2e + checksum: 34504e61e4770e563cf49d4a56c8c10f1da0fb452cff89a652118783189c642ebc86a300d97cbc247e59a9c1eb06a2d419982f7dd10e8eedcab2414bc46d32f8 languageName: node linkType: hard "layout-base@npm:^2.0.0": version: 2.0.1 resolution: "layout-base@npm:2.0.1" - checksum: ef93baf044f67c3680f4f3a6d628bf4c7faba0f70f3e0abb16e4811bed087045208560347ca749e123d169cbf872505ad84e11fb21b0be925997227e042c7f43 + checksum: b5cca04a2e327ea16374a0058f73544291aeb0026972677a128594aca3b627d26949140ab7d275798c7d39193a33b41c5a856d4509c1518f49c9a5f1dad39a20 languageName: node linkType: hard "lil-uuid@npm:^0.1.1": version: 0.1.1 resolution: "lil-uuid@npm:0.1.1" - checksum: 1ca634ede9930a5c0c379525cbe1cbc84d849836154428bb1d74e83e4f22380fc63e0c2ba6c0ed97296cc55bcbb52a1486846410078bd293c1a26b1658a26fdf + checksum: 48404a147b84c3d4afbc258a32a11cd7506c8995a9dc2fb45ebcd725ad13c82b69e0e24a06d8b3d22fcb2be317390234f77a6e70cf5b540d3d94acabcf1e467f languageName: node linkType: hard "lodash-es@npm:^4.17.21": version: 4.17.21 resolution: "lodash-es@npm:4.17.21" - checksum: 05cbffad6e2adbb331a4e16fbd826e7faee403a1a04873b82b42c0f22090f280839f85b95393f487c1303c8a3d2a010048bf06151a6cbe03eee4d388fb0a12d2 + checksum: 03f39878ea1e42b3199bd3f478150ab723f93cc8730ad86fec1f2804f4a07c6e30deaac73cad53a88e9c3db33348bb8ceeb274552390e7a75d7849021c02df43 languageName: node linkType: hard "lodash.get@npm:^4.4.2": version: 4.4.2 resolution: "lodash.get@npm:4.4.2" - checksum: e403047ddb03181c9d0e92df9556570e2b67e0f0a930fcbbbd779370972368f5568e914f913e93f3b08f6d492abc71e14d4e9b7a18916c31fa04bd2306efe545 + checksum: 2a4925f6e89bc2c010a77a802d1ba357e17ed1ea03c2ddf6a146429f2856a216663e694a6aa3549a318cbbba3fd8b7decb392db457e6ac0b83dc745ed0a17380 languageName: node linkType: hard "lodash@npm:^4.17.20, lodash@npm:^4.17.21": version: 4.17.21 resolution: "lodash@npm:4.17.21" - checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7 + checksum: c08619c038846ea6ac754abd6dd29d2568aa705feb69339e836dfa8d8b09abbb2f859371e86863eda41848221f9af43714491467b5b0299122431e202bb0c532 languageName: node linkType: hard @@ -2348,7 +2348,7 @@ __metadata: version: 1.4.0 resolution: "loose-envify@npm:1.4.0" dependencies: - js-tokens: ^3.0.0 || ^4.0.0 + js-tokens: "npm:^3.0.0 || ^4.0.0" bin: loose-envify: cli.js checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4 @@ -2359,9 +2359,9 @@ __metadata: version: 4.1.5 resolution: "lru-cache@npm:4.1.5" dependencies: - pseudomap: ^1.0.2 - yallist: ^2.1.2 - checksum: 4bb4b58a36cd7dc4dcec74cbe6a8f766a38b7426f1ff59d4cf7d82a2aa9b9565cd1cb98f6ff60ce5cd174524868d7bc9b7b1c294371851356066ca9ac4cf135a + pseudomap: "npm:^1.0.2" + yallist: "npm:^2.1.2" + checksum: 9ec7d73f11a32cba0e80b7a58fdf29970814c0c795acaee1a6451ddfd609bae6ef9df0837f5bbeabb571ecd49c1e2d79e10e9b4ed422cfba17a0cb6145b018a9 languageName: node linkType: hard @@ -2369,15 +2369,15 @@ __metadata: version: 6.0.0 resolution: "lru-cache@npm:6.0.0" dependencies: - yallist: ^4.0.0 - checksum: f97f499f898f23e4585742138a22f22526254fdba6d75d41a1c2526b3b6cc5747ef59c5612ba7375f42aca4f8461950e925ba08c991ead0651b4918b7c978297 + yallist: "npm:^4.0.0" + checksum: fc1fe2ee205f7c8855fa0f34c1ab0bcf14b6229e35579ec1fd1079f31d6fc8ef8eb6fd17f2f4d99788d7e339f50e047555551ebd5e434dda503696e7c6591825 languageName: node linkType: hard "lru-cache@npm:^7.14.1": version: 7.18.3 resolution: "lru-cache@npm:7.18.3" - checksum: e550d772384709deea3f141af34b6d4fa392e2e418c1498c078de0ee63670f1f46f5eee746e8ef7e69e1c895af0d4224e62ee33e66a543a14763b0f2e74c1356 + checksum: 6029ca5aba3aacb554e919d7ef804fffd4adfc4c83db00fac8248c7c78811fb6d4b6f70f7fd9d55032b3823446546a007edaa66ad1f2377ae833bd983fac5d98 languageName: node linkType: hard @@ -2391,7 +2391,7 @@ __metadata: "markdown-table@npm:^3.0.0": version: 3.0.3 resolution: "markdown-table@npm:3.0.3" - checksum: 8fcd3d9018311120fbb97115987f8b1665a603f3134c93fbecc5d1463380c8036f789e2a62c19432058829e594fff8db9ff81c88f83690b2f8ed6c074f8d9e10 + checksum: ee6e661935c85734620d2fd10e237a60ae2992ef861713b71aa66135a5d5ae957cf06ce5e15fedf3ed1fce839dd7af1f9e87c5729186490f69fa9469e8e5c3e8 languageName: node linkType: hard @@ -2399,9 +2399,9 @@ __metadata: version: 6.3.1 resolution: "match-sorter@npm:6.3.1" dependencies: - "@babel/runtime": ^7.12.5 - remove-accents: 0.4.2 - checksum: a4b02b676ac4ce64a89a091539ee4a70a802684713bcf06f2b70787927f510fe8a2adc849f9288857a90906083ad303467e530e8723b4a9756df9994fc164550 + "@babel/runtime": "npm:^7.12.5" + remove-accents: "npm:0.4.2" + checksum: 917dd07c2562b345919156ef601dfbeaa44571e111e2956f876be8de6800325be97f878677199c50298672fbd3cfd17b2c4918d3fba15f0e9a5b32f328780fdc languageName: node linkType: hard @@ -2409,10 +2409,10 @@ __metadata: version: 5.1.2 resolution: "mdast-util-definitions@npm:5.1.2" dependencies: - "@types/mdast": ^3.0.0 - "@types/unist": ^2.0.0 - unist-util-visit: ^4.0.0 - checksum: 2544daccab744ea1ede76045c2577ae4f1cc1b9eb1ea51ab273fe1dca8db5a8d6f50f87759c0ce6484975914b144b7f40316f805cb9c86223a78db8de0b77bae + "@types/mdast": "npm:^3.0.0" + "@types/unist": "npm:^2.0.0" + unist-util-visit: "npm:^4.0.0" + checksum: 4491b7c551ce1bdeb6c8fb1968cd461acb01ca1584f12c240755541a92d7f02bc5b9c9d6303d50deaed6d959ba58fe9a352a3e676e0f1d954e003de1277f57e4 languageName: node linkType: hard @@ -2420,11 +2420,11 @@ __metadata: version: 2.2.2 resolution: "mdast-util-find-and-replace@npm:2.2.2" dependencies: - "@types/mdast": ^3.0.0 - escape-string-regexp: ^5.0.0 - unist-util-is: ^5.0.0 - unist-util-visit-parents: ^5.0.0 - checksum: b4ce463c43fe6e1c38a53a89703f755c84ab5437f49bff9a0ac751279733332ca11c85ed0262aa6c17481f77b555d26ca6d64e70d6814f5b8d12d34a3e53a60b + "@types/mdast": "npm:^3.0.0" + escape-string-regexp: "npm:^5.0.0" + unist-util-is: "npm:^5.0.0" + unist-util-visit-parents: "npm:^5.0.0" + checksum: 59e11e853b74d8f6083950327df39e27287b383930ff836298a5100aeda5568282bb45046c27886d2156ea101580bb0689b890c29623cefa5adc74e95d9ca9ff languageName: node linkType: hard @@ -2432,19 +2432,19 @@ __metadata: version: 1.3.1 resolution: "mdast-util-from-markdown@npm:1.3.1" dependencies: - "@types/mdast": ^3.0.0 - "@types/unist": ^2.0.0 - decode-named-character-reference: ^1.0.0 - mdast-util-to-string: ^3.1.0 - micromark: ^3.0.0 - micromark-util-decode-numeric-character-reference: ^1.0.0 - micromark-util-decode-string: ^1.0.0 - micromark-util-normalize-identifier: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - unist-util-stringify-position: ^3.0.0 - uvu: ^0.5.0 - checksum: c2fac225167e248d394332a4ea39596e04cbde07d8cdb3889e91e48972c4c3462a02b39fda3855345d90231eb17a90ac6e082fb4f012a77c1d0ddfb9c7446940 + "@types/mdast": "npm:^3.0.0" + "@types/unist": "npm:^2.0.0" + decode-named-character-reference: "npm:^1.0.0" + mdast-util-to-string: "npm:^3.1.0" + micromark: "npm:^3.0.0" + micromark-util-decode-numeric-character-reference: "npm:^1.0.0" + micromark-util-decode-string: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + unist-util-stringify-position: "npm:^3.0.0" + uvu: "npm:^0.5.0" + checksum: 1d334a54ddd6481ec4acf64c2c537b6463bc5113ba5a408f65c228dcc302d46837352814f11307af0f8b51dd7e4a0b887ce692e4d30ff31ff9d578b8ca82810b languageName: node linkType: hard @@ -2452,11 +2452,11 @@ __metadata: version: 1.0.3 resolution: "mdast-util-gfm-autolink-literal@npm:1.0.3" dependencies: - "@types/mdast": ^3.0.0 - ccount: ^2.0.0 - mdast-util-find-and-replace: ^2.0.0 - micromark-util-character: ^1.0.0 - checksum: 1748a8727cfc533bac0c287d6e72d571d165bfa77ae0418be4828177a3ec73c02c3f2ee534d87eb75cbaffa00c0866853bbcc60ae2255babb8210f7636ec2ce2 + "@types/mdast": "npm:^3.0.0" + ccount: "npm:^2.0.0" + mdast-util-find-and-replace: "npm:^2.0.0" + micromark-util-character: "npm:^1.0.0" + checksum: 272d075cdc7937bec0179af4052bd9032a6fbb05608b387b1b075b0491c73ce012f3ff1c718cdb5fb0ed1032c1fa7570d955b59c0ab3c3c72609928754774529 languageName: node linkType: hard @@ -2464,10 +2464,10 @@ __metadata: version: 1.0.2 resolution: "mdast-util-gfm-footnote@npm:1.0.2" dependencies: - "@types/mdast": ^3.0.0 - mdast-util-to-markdown: ^1.3.0 - micromark-util-normalize-identifier: ^1.0.0 - checksum: 2d77505f9377ed7e14472ef5e6b8366c3fec2cf5f936bb36f9fbe5b97ccb7cce0464d9313c236fa86fb844206fd585db05707e4fcfb755e4fc1864194845f1f6 + "@types/mdast": "npm:^3.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + checksum: 825f207afc98fd1daa0acc8adcb5754d1f0d577ccb1749245289bee7c892557668d8ee3a5ab618f42e710646cf018dcda84f3c0c608ae11718e9014e5bf4f9dc languageName: node linkType: hard @@ -2475,9 +2475,9 @@ __metadata: version: 1.0.3 resolution: "mdast-util-gfm-strikethrough@npm:1.0.3" dependencies: - "@types/mdast": ^3.0.0 - mdast-util-to-markdown: ^1.3.0 - checksum: 17003340ff1bba643ec4a59fd4370fc6a32885cab2d9750a508afa7225ea71449fb05acaef60faa89c6378b8bcfbd86a9d94b05f3c6651ff27a60e3ddefc2549 + "@types/mdast": "npm:^3.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + checksum: a9c2dc3ef46be7952d13b7063a16171bba8aa266bffe6b1e7267df02a60b4fa3734115cca311e9127db8cfcbbcd68fdd92aa26152bcd0c14372c79b254e4df2f languageName: node linkType: hard @@ -2485,11 +2485,11 @@ __metadata: version: 1.0.7 resolution: "mdast-util-gfm-table@npm:1.0.7" dependencies: - "@types/mdast": ^3.0.0 - markdown-table: ^3.0.0 - mdast-util-from-markdown: ^1.0.0 - mdast-util-to-markdown: ^1.3.0 - checksum: 8b8c401bb4162e53f072a2dff8efbca880fd78d55af30601c791315ab6722cb2918176e8585792469a0c530cebb9df9b4e7fede75fdc4d83df2839e238836692 + "@types/mdast": "npm:^3.0.0" + markdown-table: "npm:^3.0.0" + mdast-util-from-markdown: "npm:^1.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + checksum: 167f7f7a9dc17ce852f4f9bd155d7be179588e2ccf4ce3c4f23b12c1c9db5de904cdacc6f41b2d635cb84eb09a7ff5a33497585f2664a7f1e6bd6f7ab7e1197a languageName: node linkType: hard @@ -2497,9 +2497,9 @@ __metadata: version: 1.0.2 resolution: "mdast-util-gfm-task-list-item@npm:1.0.2" dependencies: - "@types/mdast": ^3.0.0 - mdast-util-to-markdown: ^1.3.0 - checksum: c9b86037d6953b84f11fb2fc3aa23d5b8e14ca0dfcb0eb2fb289200e172bb9d5647bfceb4f86606dc6d935e8d58f6a458c04d3e55e87ff8513c7d4ade976200b + "@types/mdast": "npm:^3.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + checksum: 958417a7d7690728b44d65127ab9189c7feaa17aea924dd56a888c781ab3abaa4eb0c209f05c4dbf203da3d0c4df8fdace4c9471b644268bfc7fc792a018a171 languageName: node linkType: hard @@ -2507,14 +2507,14 @@ __metadata: version: 2.0.2 resolution: "mdast-util-gfm@npm:2.0.2" dependencies: - mdast-util-from-markdown: ^1.0.0 - mdast-util-gfm-autolink-literal: ^1.0.0 - mdast-util-gfm-footnote: ^1.0.0 - mdast-util-gfm-strikethrough: ^1.0.0 - mdast-util-gfm-table: ^1.0.0 - mdast-util-gfm-task-list-item: ^1.0.0 - mdast-util-to-markdown: ^1.0.0 - checksum: 7078cb985255208bcbce94a121906417d38353c6b1a9acbe56ee8888010d3500608b5d51c16b0999ac63ca58848fb13012d55f26930ff6c6f3450f053d56514e + mdast-util-from-markdown: "npm:^1.0.0" + mdast-util-gfm-autolink-literal: "npm:^1.0.0" + mdast-util-gfm-footnote: "npm:^1.0.0" + mdast-util-gfm-strikethrough: "npm:^1.0.0" + mdast-util-gfm-table: "npm:^1.0.0" + mdast-util-gfm-task-list-item: "npm:^1.0.0" + mdast-util-to-markdown: "npm:^1.0.0" + checksum: 70e6cd32af94181d409f171f984f83fc18b3efe316844c62f31816f5c1612a92517b8ed766340f23e0a6d6cb0f27a8b07d288bab6619cbdbb0c5341006bcdc4d languageName: node linkType: hard @@ -2522,10 +2522,10 @@ __metadata: version: 2.0.2 resolution: "mdast-util-math@npm:2.0.2" dependencies: - "@types/mdast": ^3.0.0 - longest-streak: ^3.0.0 - mdast-util-to-markdown: ^1.3.0 - checksum: 60b3c1ca8dd0f009504de17515249fa396818fd4d5f83ed2c9c4aa3523add080c9076b32299b9622a8b1eb6e249d65fd4a8c1f0ab231a7656396353c2898d0bd + "@types/mdast": "npm:^3.0.0" + longest-streak: "npm:^3.0.0" + mdast-util-to-markdown: "npm:^1.3.0" + checksum: 19e9f04e2e2c0aaf869e1795f50b14f3253a75b6b05a22585d203b8b24bb7e23629d8254903f3aea24e660b0337256b518eb0e087b397aab3f0fef777fe05845 languageName: node linkType: hard @@ -2533,12 +2533,12 @@ __metadata: version: 1.3.2 resolution: "mdast-util-mdx-expression@npm:1.3.2" dependencies: - "@types/estree-jsx": ^1.0.0 - "@types/hast": ^2.0.0 - "@types/mdast": ^3.0.0 - mdast-util-from-markdown: ^1.0.0 - mdast-util-to-markdown: ^1.0.0 - checksum: e4c90f26deaa5eb6217b0a9af559a80de41da02ab3bcd864c56bed3304b056ae703896e9876bc6ded500f4aff59f4de5cbf6a4b109a5ba408f2342805fe6dc05 + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^2.0.0" + "@types/mdast": "npm:^3.0.0" + mdast-util-from-markdown: "npm:^1.0.0" + mdast-util-to-markdown: "npm:^1.0.0" + checksum: 90b8ec5b6fdd05282f45c1286bb8c5c3568959877930a10b8bcae100676d3baead8c6f26a768abfe74fde93fbf9cd0eabb3ab63af88a6026a3029a3f6700bd63 languageName: node linkType: hard @@ -2546,19 +2546,19 @@ __metadata: version: 2.1.4 resolution: "mdast-util-mdx-jsx@npm:2.1.4" dependencies: - "@types/estree-jsx": ^1.0.0 - "@types/hast": ^2.0.0 - "@types/mdast": ^3.0.0 - "@types/unist": ^2.0.0 - ccount: ^2.0.0 - mdast-util-from-markdown: ^1.1.0 - mdast-util-to-markdown: ^1.3.0 - parse-entities: ^4.0.0 - stringify-entities: ^4.0.0 - unist-util-remove-position: ^4.0.0 - unist-util-stringify-position: ^3.0.0 - vfile-message: ^3.0.0 - checksum: add3ff2dd1faf2419b506abb630a471da42edc99e16fdcff95f405d27f881cb4890a94b2a7a38de9592f37170bee1c135bc156699a0f74af4b69610f0b5fcf1d + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^2.0.0" + "@types/mdast": "npm:^3.0.0" + "@types/unist": "npm:^2.0.0" + ccount: "npm:^2.0.0" + mdast-util-from-markdown: "npm:^1.1.0" + mdast-util-to-markdown: "npm:^1.3.0" + parse-entities: "npm:^4.0.0" + stringify-entities: "npm:^4.0.0" + unist-util-remove-position: "npm:^4.0.0" + unist-util-stringify-position: "npm:^3.0.0" + vfile-message: "npm:^3.0.0" + checksum: 549c84635ef3d6e69a9967eb799f6c7834b1571db2946f415661ce4e9e4c0b1d369ac6c4ac450cd27f93225224e107d8be2107efad71b0424d537c89720b1828 languageName: node linkType: hard @@ -2566,12 +2566,12 @@ __metadata: version: 2.0.1 resolution: "mdast-util-mdx@npm:2.0.1" dependencies: - mdast-util-from-markdown: ^1.0.0 - mdast-util-mdx-expression: ^1.0.0 - mdast-util-mdx-jsx: ^2.0.0 - mdast-util-mdxjs-esm: ^1.0.0 - mdast-util-to-markdown: ^1.0.0 - checksum: 7303149230a26e524e319833b782bffca94e49cdab012996618701259bd056e014ca22a35d25ffa8880ba9064ee126a2a002f01e5c90a31ca726339ed775875e + mdast-util-from-markdown: "npm:^1.0.0" + mdast-util-mdx-expression: "npm:^1.0.0" + mdast-util-mdx-jsx: "npm:^2.0.0" + mdast-util-mdxjs-esm: "npm:^1.0.0" + mdast-util-to-markdown: "npm:^1.0.0" + checksum: 58230fccd8f499182a0b98879d90c0c13c533627c00b4509cd6100a9f0b4b6c70a460782dc62f2230753b40b8f0795ce2090ce7d6d131c5ab2c87b7698efc3ec languageName: node linkType: hard @@ -2579,12 +2579,12 @@ __metadata: version: 1.3.1 resolution: "mdast-util-mdxjs-esm@npm:1.3.1" dependencies: - "@types/estree-jsx": ^1.0.0 - "@types/hast": ^2.0.0 - "@types/mdast": ^3.0.0 - mdast-util-from-markdown: ^1.0.0 - mdast-util-to-markdown: ^1.0.0 - checksum: ee78a4f58adfec38723cbc920f05481201ebb001eff3982f2d0e5f5ce5c75685e732e9d361ad4a1be8b936b4e5de0f2599cb96b92ad4bd92698ac0c4a09bbec3 + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^2.0.0" + "@types/mdast": "npm:^3.0.0" + mdast-util-from-markdown: "npm:^1.0.0" + mdast-util-to-markdown: "npm:^1.0.0" + checksum: 319b4e138b25079964bd69b79c6d5c1cc7001f2cd392f48f024e235e5c14240c78fc9016c5c9c8001eb03e6efd3a2b06fcf1da62104ae94f93f65d12301c7957 languageName: node linkType: hard @@ -2592,8 +2592,8 @@ __metadata: version: 3.0.1 resolution: "mdast-util-phrasing@npm:3.0.1" dependencies: - "@types/mdast": ^3.0.0 - unist-util-is: ^5.0.0 + "@types/mdast": "npm:^3.0.0" + unist-util-is: "npm:^5.0.0" checksum: c5b616d9b1eb76a6b351d195d94318494722525a12a89d9c8a3b091af7db3dd1fc55d294f9d29266d8159a8267b0df4a7a133bda8a3909d5331c383e1e1ff328 languageName: node linkType: hard @@ -2602,15 +2602,15 @@ __metadata: version: 12.3.0 resolution: "mdast-util-to-hast@npm:12.3.0" dependencies: - "@types/hast": ^2.0.0 - "@types/mdast": ^3.0.0 - mdast-util-definitions: ^5.0.0 - micromark-util-sanitize-uri: ^1.1.0 - trim-lines: ^3.0.0 - unist-util-generated: ^2.0.0 - unist-util-position: ^4.0.0 - unist-util-visit: ^4.0.0 - checksum: ea40c9f07dd0b731754434e81c913590c611b1fd753fa02550a1492aadfc30fb3adecaf62345ebb03cea2ddd250c15ab6e578fffde69c19955c9b87b10f2a9bb + "@types/hast": "npm:^2.0.0" + "@types/mdast": "npm:^3.0.0" + mdast-util-definitions: "npm:^5.0.0" + micromark-util-sanitize-uri: "npm:^1.1.0" + trim-lines: "npm:^3.0.0" + unist-util-generated: "npm:^2.0.0" + unist-util-position: "npm:^4.0.0" + unist-util-visit: "npm:^4.0.0" + checksum: 82b72bf46863f0f5683dbf1c5917186ee2da2e06af1a5f5aaeca51b880f4cb2b3ae0463ebb4fa1a776f5d3c73f5fc6cd542920060cf5040f3d4431607ee73cce languageName: node linkType: hard @@ -2618,15 +2618,15 @@ __metadata: version: 13.0.2 resolution: "mdast-util-to-hast@npm:13.0.2" dependencies: - "@types/hast": ^3.0.0 - "@types/mdast": ^4.0.0 - "@ungap/structured-clone": ^1.0.0 - devlop: ^1.0.0 - micromark-util-sanitize-uri: ^2.0.0 - trim-lines: ^3.0.0 - unist-util-position: ^5.0.0 - unist-util-visit: ^5.0.0 - checksum: 8fef6c3752476461d9c00b1dea4f141bc7d980e1b3bac7bd965bc68f532b6d30fb1c9e810433327c167176e68e071b8f4ab5a45355954857dc095c878421f35e + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + "@ungap/structured-clone": "npm:^1.0.0" + devlop: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + trim-lines: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit: "npm:^5.0.0" + checksum: 6f91926ca59bc1b048a0f82c21ba6355f7352c3793442c43e3f93ac895af0b9f85881b7a461d23aeed0fbe16d695b419106a48075c79e3b6008fef75ca43a571 languageName: node linkType: hard @@ -2634,15 +2634,15 @@ __metadata: version: 1.5.0 resolution: "mdast-util-to-markdown@npm:1.5.0" dependencies: - "@types/mdast": ^3.0.0 - "@types/unist": ^2.0.0 - longest-streak: ^3.0.0 - mdast-util-phrasing: ^3.0.0 - mdast-util-to-string: ^3.0.0 - micromark-util-decode-string: ^1.0.0 - unist-util-visit: ^4.0.0 - zwitch: ^2.0.0 - checksum: 64338eb33e49bb0aea417591fd986f72fdd39205052563bb7ce9eb9ecc160824509bfacd740086a05af355c6d5c36353aafe95cab9e6927d674478757cee6259 + "@types/mdast": "npm:^3.0.0" + "@types/unist": "npm:^2.0.0" + longest-streak: "npm:^3.0.0" + mdast-util-phrasing: "npm:^3.0.0" + mdast-util-to-string: "npm:^3.0.0" + micromark-util-decode-string: "npm:^1.0.0" + unist-util-visit: "npm:^4.0.0" + zwitch: "npm:^2.0.0" + checksum: 713f674588a01969a2ce524a69985bd57e507377eea2c4ba69800fb305414468b30144ae9b837fbdde8c609877673140e4f56f6cabe9e0e2bc1487291e3c5144 languageName: node linkType: hard @@ -2650,15 +2650,15 @@ __metadata: version: 3.2.0 resolution: "mdast-util-to-string@npm:3.2.0" dependencies: - "@types/mdast": ^3.0.0 - checksum: dc40b544d54339878ae2c9f2b3198c029e1e07291d2126bd00ca28272ee6616d0d2194eb1c9828a7c34d412a79a7e73b26512a734698d891c710a1e73db1e848 + "@types/mdast": "npm:^3.0.0" + checksum: fafe201c12a0d412a875fe8540bf70b4360f3775fb7f0d19403ba7b59e50f74f730e3b405c72ad940bc8a3ec1ba311f76dfca61c4ce585dce1ccda2168ec244f languageName: node linkType: hard "memoize-one@npm:^6.0.0": version: 6.0.0 resolution: "memoize-one@npm:6.0.0" - checksum: f185ea69f7cceae5d1cb596266dcffccf545e8e7b4106ec6aa93b71ab9d16460dd118ac8b12982c55f6d6322fcc1485de139df07eacffaae94888b9b3ad7675f + checksum: 28feaf7e9a870efef1187df110b876ce42deaf86c955f4111d72d23b96e44eed573469316e6ad0d2cc7fa3b1526978215617b126158015f957242c7493babca9 languageName: node linkType: hard @@ -2666,34 +2666,34 @@ __metadata: version: 10.6.1 resolution: "mermaid@npm:10.6.1" dependencies: - "@braintree/sanitize-url": ^6.0.1 - "@types/d3-scale": ^4.0.3 - "@types/d3-scale-chromatic": ^3.0.0 - cytoscape: ^3.23.0 - cytoscape-cose-bilkent: ^4.1.0 - cytoscape-fcose: ^2.1.0 - d3: ^7.4.0 - d3-sankey: ^0.12.3 - dagre-d3-es: 7.0.10 - dayjs: ^1.11.7 - dompurify: ^3.0.5 - elkjs: ^0.8.2 - khroma: ^2.0.0 - lodash-es: ^4.17.21 - mdast-util-from-markdown: ^1.3.0 - non-layered-tidy-tree-layout: ^2.0.2 - stylis: ^4.1.3 - ts-dedent: ^2.2.0 - uuid: ^9.0.0 - web-worker: ^1.2.0 - checksum: 60cf621ab811ba112919c867697dbd547df8ad0cf31e4d69044c3d96ac2dac4fa21ebba1936e1b72a060a4aa102924a6b396824a58fae176f48b42d993bbdb0b + "@braintree/sanitize-url": "npm:^6.0.1" + "@types/d3-scale": "npm:^4.0.3" + "@types/d3-scale-chromatic": "npm:^3.0.0" + cytoscape: "npm:^3.23.0" + cytoscape-cose-bilkent: "npm:^4.1.0" + cytoscape-fcose: "npm:^2.1.0" + d3: "npm:^7.4.0" + d3-sankey: "npm:^0.12.3" + dagre-d3-es: "npm:7.0.10" + dayjs: "npm:^1.11.7" + dompurify: "npm:^3.0.5" + elkjs: "npm:^0.8.2" + khroma: "npm:^2.0.0" + lodash-es: "npm:^4.17.21" + mdast-util-from-markdown: "npm:^1.3.0" + non-layered-tidy-tree-layout: "npm:^2.0.2" + stylis: "npm:^4.1.3" + ts-dedent: "npm:^2.2.0" + uuid: "npm:^9.0.0" + web-worker: "npm:^1.2.0" + checksum: 4299f5719d692866aa68a6eb2fc68ce0c6c4d34438a58a222c204e87a514e812e150cb1fbaf2ca2655042b3339d87b873e3d7c55dd0f9251d3451750a429f30d languageName: node linkType: hard "methods@npm:^1.1.2": version: 1.1.2 resolution: "methods@npm:1.1.2" - checksum: 0917ff4041fa8e2f2fda5425a955fe16ca411591fbd123c0d722fcf02b73971ed6f764d85f0a6f547ce49ee0221ce2c19a5fa692157931cecb422984f1dcd13a + checksum: a385dd974faa34b5dd021b2bbf78c722881bf6f003bfe6d391d7da3ea1ed625d1ff10ddd13c57531f628b3e785be38d3eed10ad03cebd90b76932413df9a1820 languageName: node linkType: hard @@ -2701,23 +2701,23 @@ __metadata: version: 1.1.0 resolution: "micromark-core-commonmark@npm:1.1.0" dependencies: - decode-named-character-reference: ^1.0.0 - micromark-factory-destination: ^1.0.0 - micromark-factory-label: ^1.0.0 - micromark-factory-space: ^1.0.0 - micromark-factory-title: ^1.0.0 - micromark-factory-whitespace: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-chunked: ^1.0.0 - micromark-util-classify-character: ^1.0.0 - micromark-util-html-tag-name: ^1.0.0 - micromark-util-normalize-identifier: ^1.0.0 - micromark-util-resolve-all: ^1.0.0 - micromark-util-subtokenize: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.1 - uvu: ^0.5.0 - checksum: c6dfedc95889cc73411cb222fc2330b9eda6d849c09c9fd9eb3cd3398af246167e9d3cdb0ae3ce9ae59dd34a14624c8330e380255d41279ad7350cf6c6be6c5b + decode-named-character-reference: "npm:^1.0.0" + micromark-factory-destination: "npm:^1.0.0" + micromark-factory-label: "npm:^1.0.0" + micromark-factory-space: "npm:^1.0.0" + micromark-factory-title: "npm:^1.0.0" + micromark-factory-whitespace: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-chunked: "npm:^1.0.0" + micromark-util-classify-character: "npm:^1.0.0" + micromark-util-html-tag-name: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-resolve-all: "npm:^1.0.0" + micromark-util-subtokenize: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.1" + uvu: "npm:^0.5.0" + checksum: a73694d223ac8baad8ff00597a3c39d61f5b32bfd56fe4bcf295d75b2a4e8e67fb2edbfc7cc287b362b9d7f6d24fce08b6a7e8b5b155d79bcc1e4d9b2756ffb2 languageName: node linkType: hard @@ -2725,11 +2725,11 @@ __metadata: version: 1.0.5 resolution: "micromark-extension-gfm-autolink-literal@npm:1.0.5" dependencies: - micromark-util-character: ^1.0.0 - micromark-util-sanitize-uri: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - checksum: ec2f6bc4a3eb238c1b8be9744454ffbc2957e3d8a248697af5a26bb21479862300c0e40e0a92baf17c299ddf70d4bc4470d4eee112cd92322f87d81e45c2e83d + micromark-util-character: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 1e0ccc758baef3cd0478ba84ff86fa1ec2b389042421c7cade9485b775456c1a9c3bd797393002b2c6f6abd9bdf829cb114874557bbcb8e43d16d06a464811c0 languageName: node linkType: hard @@ -2737,15 +2737,15 @@ __metadata: version: 1.1.2 resolution: "micromark-extension-gfm-footnote@npm:1.1.2" dependencies: - micromark-core-commonmark: ^1.0.0 - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-normalize-identifier: ^1.0.0 - micromark-util-sanitize-uri: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - checksum: c151a629ee1cd92363c018a50f926a002c944ac481ca72b3720b9529e9c20f1cbef98b0fefdcd2d594af37d0d9743673409cac488af0d2b194210fd16375dcb7 + micromark-core-commonmark: "npm:^1.0.0" + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 8777073fb76d2fd01f6b2405106af6c349c1e25660c4d37cadcc61c187d71c8444870f73cefaaa67f12884d5e45c78ee3c5583561a0b330bd91c6d997113584a languageName: node linkType: hard @@ -2753,13 +2753,13 @@ __metadata: version: 1.0.7 resolution: "micromark-extension-gfm-strikethrough@npm:1.0.7" dependencies: - micromark-util-chunked: ^1.0.0 - micromark-util-classify-character: ^1.0.0 - micromark-util-resolve-all: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - checksum: 169e310a4408feade0df80180f60d48c5cc5b7070e5e75e0bbd914e9100273508162c4bb20b72d53081dc37f1ff5834b3afa137862576f763878552c03389811 + micromark-util-chunked: "npm:^1.0.0" + micromark-util-classify-character: "npm:^1.0.0" + micromark-util-resolve-all: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 8411ef1aa5dc83f662e8b45b085f70ddff29deb3c4259269e8a1ff656397abb755d8ea841a14be23e8585a31d3c0a5de1bd2c05f3453b66670e499d4a0004f5e languageName: node linkType: hard @@ -2767,12 +2767,12 @@ __metadata: version: 1.0.7 resolution: "micromark-extension-gfm-table@npm:1.0.7" dependencies: - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - checksum: 4853731285224e409d7e2c94c6ec849165093bff819e701221701aa7b7b34c17702c44f2f831e96b49dc27bb07e445b02b025561b68e62f5c3254415197e7af6 + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: f05d86a099c941a2a309d60bf4839d16a00a93cb880cda4ab8faeb831647763fff6e03197ec15b80e1f195002afcca6afe2b95c3622b049b82d7ff8ef1c1c776 languageName: node linkType: hard @@ -2780,8 +2780,8 @@ __metadata: version: 1.0.2 resolution: "micromark-extension-gfm-tagfilter@npm:1.0.2" dependencies: - micromark-util-types: ^1.0.0 - checksum: 7d2441df51f890c86f8e7cf7d331a570b69c8105fa1c2fc5b737cb739502c16c8ee01cf35550a8a78f89497c5dfacc97cf82d55de6274e8320f3aec25e2b0dd2 + micromark-util-types: "npm:^1.0.0" + checksum: 55c7d9019d6a39efaaed2c2e40b0aaa137d2c4f9c94cac82e93f509a806c3a775e4c815b5d8e986617450b68861a19776e4b886307e83db452b393f15a837b39 languageName: node linkType: hard @@ -2789,12 +2789,12 @@ __metadata: version: 1.0.5 resolution: "micromark-extension-gfm-task-list-item@npm:1.0.5" dependencies: - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - checksum: 929f05343d272cffb8008899289f4cffe986ef98fc622ebbd1aa4ff11470e6b32ed3e1f18cd294adb69cabb961a400650078f6c12b322cc515b82b5068b31960 + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 46bb1baa10bfb785a2e3e2f975e5509260b9995d5c3aeddf77051957d218ce1af4ea737bcb6a56a930e62d42b05307b20632a400eff25cdb290789ff3170cad5 languageName: node linkType: hard @@ -2802,15 +2802,15 @@ __metadata: version: 2.0.3 resolution: "micromark-extension-gfm@npm:2.0.3" dependencies: - micromark-extension-gfm-autolink-literal: ^1.0.0 - micromark-extension-gfm-footnote: ^1.0.0 - micromark-extension-gfm-strikethrough: ^1.0.0 - micromark-extension-gfm-table: ^1.0.0 - micromark-extension-gfm-tagfilter: ^1.0.0 - micromark-extension-gfm-task-list-item: ^1.0.0 - micromark-util-combine-extensions: ^1.0.0 - micromark-util-types: ^1.0.0 - checksum: c4a917c16d7aa5d00d1767b5ce5f3b1a78c0de11dbd5c8f69d2545083568aa6bb13bd9d8e4c7fec5f4da10e7ed8344b15acffc843b33a615c17396a118bc2bc1 + micromark-extension-gfm-autolink-literal: "npm:^1.0.0" + micromark-extension-gfm-footnote: "npm:^1.0.0" + micromark-extension-gfm-strikethrough: "npm:^1.0.0" + micromark-extension-gfm-table: "npm:^1.0.0" + micromark-extension-gfm-tagfilter: "npm:^1.0.0" + micromark-extension-gfm-task-list-item: "npm:^1.0.0" + micromark-util-combine-extensions: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 3ffd06ced4314abd0f0c72ec227f034f38dd47facbb62439ef3216d42f32433f3901d14675cf806e8d73689802a11849958b330bb5b55dd4fd5cdc64ebaf345c languageName: node linkType: hard @@ -2818,14 +2818,14 @@ __metadata: version: 2.1.2 resolution: "micromark-extension-math@npm:2.1.2" dependencies: - "@types/katex": ^0.16.0 - katex: ^0.16.0 - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - checksum: cbfd1c1ab0e13579571f5af9982eed7c02630300fe3cf3f62b4457f6f3da007621b7d23bc53010f8e727267e6b4caa7bc1b923abd528209c4d8821d80fe4424d + "@types/katex": "npm:^0.16.0" + katex: "npm:^0.16.0" + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: defad85879f3eec6a8aaca0024b2d0bae7d2de4fb16c8ee4cf52a47e0290555954e56e0438e7b9b13d4a78c11434051b7525a182789f3f61feca0bb7ca31651d languageName: node linkType: hard @@ -2833,15 +2833,15 @@ __metadata: version: 1.0.8 resolution: "micromark-extension-mdx-expression@npm:1.0.8" dependencies: - "@types/estree": ^1.0.0 - micromark-factory-mdx-expression: ^1.0.0 - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-events-to-acorn: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - checksum: 49750d10c1664904a5eb61b8dae2a4ff31eef56176d02ff30de4ee4b5db7ca4598b6f044963c26771f53e2a5a517a9ff7223d87fc0b6e159332d77e4f3486cc3 + "@types/estree": "npm:^1.0.0" + micromark-factory-mdx-expression: "npm:^1.0.0" + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-events-to-acorn: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: ea8b01bdd2ba7c5efad1620c89346e2c754814fa758729c4181cf9ea32d4e299bf86022a9d4383779e71ad5fa277e8da1aaba8b16db985da4f5517c0b2b4954f languageName: node linkType: hard @@ -2849,17 +2849,17 @@ __metadata: version: 1.0.5 resolution: "micromark-extension-mdx-jsx@npm:1.0.5" dependencies: - "@types/acorn": ^4.0.0 - "@types/estree": ^1.0.0 - estree-util-is-identifier-name: ^2.0.0 - micromark-factory-mdx-expression: ^1.0.0 - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - vfile-message: ^3.0.0 - checksum: 0ddb7b71c2c5f51f1232546d316b6c126ad245d57690b1af7877dd7b678b8b700d85a78587d56525b26a04082a4e833c6c9199c2db2a3379adf014be796123fb + "@types/acorn": "npm:^4.0.0" + "@types/estree": "npm:^1.0.0" + estree-util-is-identifier-name: "npm:^2.0.0" + micromark-factory-mdx-expression: "npm:^1.0.0" + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + vfile-message: "npm:^3.0.0" + checksum: 0abcba8f156b13f7fee105836de371cd6234e73b7107fc2d13d2daf9ad9f315060de374c7b61c2647598411d90182f026310eb0f6ec189d0db7b5e59f45e5071 languageName: node linkType: hard @@ -2867,8 +2867,8 @@ __metadata: version: 1.0.1 resolution: "micromark-extension-mdx-md@npm:1.0.1" dependencies: - micromark-util-types: ^1.0.0 - checksum: fdeaf8f4f973ec8ebefb74bb4cc1c25d2c3190e3ce4f8197e4cbc1ac325b39ac4dc2723a9f4ec8ff5b179d380e8ba37467acafa13c36dec8d312cd9822a5ab29 + micromark-util-types: "npm:^1.0.0" + checksum: ae4dfc7149d3219e754e3ed9b1f63bf09a6b7eba6289edf61be0456b27ce3c50c87880f18ed7ee77a7eebe1ce3aa9284a253e72126478ca20322ef81af5ea50b languageName: node linkType: hard @@ -2876,16 +2876,16 @@ __metadata: version: 1.0.5 resolution: "micromark-extension-mdxjs-esm@npm:1.0.5" dependencies: - "@types/estree": ^1.0.0 - micromark-core-commonmark: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-events-to-acorn: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - unist-util-position-from-estree: ^1.1.0 - uvu: ^0.5.0 - vfile-message: ^3.0.0 - checksum: 7006cfa963d63a56c2744a9b03021aeba99a24b0a4f769165a13446439c8df529448a63db5f3ae604d1a4f616bbebde8efd1f495d7be32acb064491878e38fbe + "@types/estree": "npm:^1.0.0" + micromark-core-commonmark: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-events-to-acorn: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + unist-util-position-from-estree: "npm:^1.1.0" + uvu: "npm:^0.5.0" + vfile-message: "npm:^3.0.0" + checksum: a8b43e32264adadb9069807ba7c65916c70dc47e23920f0519aea93e547708bf3668f66fd3bf223095d636a38e1dec53953d065f86d7b4416a8fb30ce30e97b3 languageName: node linkType: hard @@ -2893,15 +2893,15 @@ __metadata: version: 1.0.1 resolution: "micromark-extension-mdxjs@npm:1.0.1" dependencies: - acorn: ^8.0.0 - acorn-jsx: ^5.0.0 - micromark-extension-mdx-expression: ^1.0.0 - micromark-extension-mdx-jsx: ^1.0.0 - micromark-extension-mdx-md: ^1.0.0 - micromark-extension-mdxjs-esm: ^1.0.0 - micromark-util-combine-extensions: ^1.0.0 - micromark-util-types: ^1.0.0 - checksum: 1e6bf3df765071dbfb80b20f1ca298f6789cf759dfd19d13301c91e33794940363989107b675afeedb78af446e4af590e0f0cf8c1ed63a70682a494c015eba52 + acorn: "npm:^8.0.0" + acorn-jsx: "npm:^5.0.0" + micromark-extension-mdx-expression: "npm:^1.0.0" + micromark-extension-mdx-jsx: "npm:^1.0.0" + micromark-extension-mdx-md: "npm:^1.0.0" + micromark-extension-mdxjs-esm: "npm:^1.0.0" + micromark-util-combine-extensions: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 3ce9990814e9b5ebfdfc5df6feca8b352bd0088f99e602e23032b0138eeddf0b57f1ad1e3ba9621c4bcd68136dd995f049c728c5a86d68b4fb03cc238bf27271 languageName: node linkType: hard @@ -2909,9 +2909,9 @@ __metadata: version: 1.1.0 resolution: "micromark-factory-destination@npm:1.1.0" dependencies: - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" checksum: 9e2b5fb5fedbf622b687e20d51eb3d56ae90c0e7ecc19b37bd5285ec392c1e56f6e21aa7cfcb3c01eda88df88fe528f3acb91a5f57d7f4cba310bc3cd7f824fa languageName: node linkType: hard @@ -2920,10 +2920,10 @@ __metadata: version: 1.1.0 resolution: "micromark-factory-label@npm:1.1.0" dependencies: - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" checksum: fcda48f1287d9b148c562c627418a2ab759cdeae9c8e017910a0cba94bb759a96611e1fc6df33182e97d28fbf191475237298983bb89ef07d5b02464b1ad28d5 languageName: node linkType: hard @@ -2932,15 +2932,15 @@ __metadata: version: 1.0.9 resolution: "micromark-factory-mdx-expression@npm:1.0.9" dependencies: - "@types/estree": ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-events-to-acorn: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - unist-util-position-from-estree: ^1.0.0 - uvu: ^0.5.0 - vfile-message: ^3.0.0 - checksum: 7359bf3290bf95c647aff1208d88a58288acdcd15190fe3da8bc56a683615f158a7f0593ace7ae459581079d7a9f7420a68d31ce8f0f1637cadacfb52e7782f0 + "@types/estree": "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-events-to-acorn: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + unist-util-position-from-estree: "npm:^1.0.0" + uvu: "npm:^0.5.0" + vfile-message: "npm:^3.0.0" + checksum: 2a4367c50ab59a95a6c68befa64324cf3234ed3ae1b4c712254579113be2c6d043149e872e09515f0c42a88a753207fce95cab6344b039404ba88fbaccb94bc6 languageName: node linkType: hard @@ -2948,8 +2948,8 @@ __metadata: version: 1.1.0 resolution: "micromark-factory-space@npm:1.1.0" dependencies: - micromark-util-character: ^1.0.0 - micromark-util-types: ^1.0.0 + micromark-util-character: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" checksum: b58435076b998a7e244259a4694eb83c78915581206b6e7fc07b34c6abd36a1726ade63df8972fbf6c8fa38eecb9074f4e17be8d53f942e3b3d23d1a0ecaa941 languageName: node linkType: hard @@ -2958,10 +2958,10 @@ __metadata: version: 1.1.0 resolution: "micromark-factory-title@npm:1.1.0" dependencies: - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" checksum: 4432d3dbc828c81f483c5901b0c6591a85d65a9e33f7d96ba7c3ae821617a0b3237ff5faf53a9152d00aaf9afb3a9f185b205590f40ed754f1d9232e0e9157b1 languageName: node linkType: hard @@ -2970,10 +2970,10 @@ __metadata: version: 1.1.0 resolution: "micromark-factory-whitespace@npm:1.1.0" dependencies: - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" checksum: ef0fa682c7d593d85a514ee329809dee27d10bc2a2b65217d8ef81173e33b8e83c549049764b1ad851adfe0a204dec5450d9d20a4ca8598f6c94533a73f73fcd languageName: node linkType: hard @@ -2982,9 +2982,9 @@ __metadata: version: 1.2.0 resolution: "micromark-util-character@npm:1.2.0" dependencies: - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - checksum: 089e79162a19b4a28731736246579ab7e9482ac93cd681c2bfca9983dcff659212ef158a66a5957e9d4b1dba957d1b87b565d85418a5b009f0294f1f07f2aaac + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + checksum: 88cf80f9b4c95266f24814ef587fb4180454668dcc3be4ac829e1227188cf349c8981bfca29e3eab1682f324c2c47544c0b0b799a26fbf9df5f156c6a84c970c languageName: node linkType: hard @@ -2992,9 +2992,9 @@ __metadata: version: 2.0.1 resolution: "micromark-util-character@npm:2.0.1" dependencies: - micromark-util-symbol: ^2.0.0 - micromark-util-types: ^2.0.0 - checksum: 318d6e16fdcbe9d89e18b8e7796568d986abbb10a9f3037b7ac9b92a236bcc962f3cd380e26a7c49df40fd1d9ca33eb546268956345b662f4c4ca4962c7695f2 + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 6eb5e58c6ae5f416f71a2b777544d3118fdb04d4fd62ea27f7920d0c58fa56ddd3fe17331fbba7f0c70fa6f90bdf7910e8e951f018f0500f883369d64fd6b925 languageName: node linkType: hard @@ -3002,7 +3002,7 @@ __metadata: version: 1.1.0 resolution: "micromark-util-chunked@npm:1.1.0" dependencies: - micromark-util-symbol: ^1.0.0 + micromark-util-symbol: "npm:^1.0.0" checksum: c435bde9110cb595e3c61b7f54c2dc28ee03e6a57fa0fc1e67e498ad8bac61ee5a7457a2b6a73022ddc585676ede4b912d28dcf57eb3bd6951e54015e14dc20b languageName: node linkType: hard @@ -3011,9 +3011,9 @@ __metadata: version: 1.1.0 resolution: "micromark-util-classify-character@npm:1.1.0" dependencies: - micromark-util-character: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 + micromark-util-character: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" checksum: 8499cb0bb1f7fb946f5896285fcca65cd742f66cd3e79ba7744792bd413ec46834f932a286de650349914d02e822946df3b55d03e6a8e1d245d1ddbd5102e5b0 languageName: node linkType: hard @@ -3022,8 +3022,8 @@ __metadata: version: 1.1.0 resolution: "micromark-util-combine-extensions@npm:1.1.0" dependencies: - micromark-util-chunked: ^1.0.0 - micromark-util-types: ^1.0.0 + micromark-util-chunked: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" checksum: ee78464f5d4b61ccb437850cd2d7da4d690b260bca4ca7a79c4bb70291b84f83988159e373b167181b6716cb197e309bc6e6c96a68cc3ba9d50c13652774aba9 languageName: node linkType: hard @@ -3032,7 +3032,7 @@ __metadata: version: 1.1.0 resolution: "micromark-util-decode-numeric-character-reference@npm:1.1.0" dependencies: - micromark-util-symbol: ^1.0.0 + micromark-util-symbol: "npm:^1.0.0" checksum: 4733fe75146e37611243f055fc6847137b66f0cde74d080e33bd26d0408c1d6f44cabc984063eee5968b133cb46855e729d555b9ff8d744652262b7b51feec73 languageName: node linkType: hard @@ -3041,10 +3041,10 @@ __metadata: version: 1.1.0 resolution: "micromark-util-decode-string@npm:1.1.0" dependencies: - decode-named-character-reference: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-decode-numeric-character-reference: ^1.0.0 - micromark-util-symbol: ^1.0.0 + decode-named-character-reference: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-decode-numeric-character-reference: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" checksum: f1625155db452f15aa472918499689ba086b9c49d1322a08b22bfbcabe918c61b230a3002c8bc3ea9b1f52ca7a9bb1c3dd43ccb548c7f5f8b16c24a1ae77a813 languageName: node linkType: hard @@ -3067,15 +3067,15 @@ __metadata: version: 1.2.3 resolution: "micromark-util-events-to-acorn@npm:1.2.3" dependencies: - "@types/acorn": ^4.0.0 - "@types/estree": ^1.0.0 - "@types/unist": ^2.0.0 - estree-util-visit: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - vfile-message: ^3.0.0 - checksum: aba0dadb8689a70fab6223386b843f3084c21db0f96b412ebd7be91d2392bb8571af899c60e13eeb373a5f851d6dcd690b584ed1e09833904ac72ddd0a88a7ab + "@types/acorn": "npm:^4.0.0" + "@types/estree": "npm:^1.0.0" + "@types/unist": "npm:^2.0.0" + estree-util-visit: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + vfile-message: "npm:^3.0.0" + checksum: 192dc159154d491f7c91116ec7721f12e02ed44fc57fe101402fd2c5156e3adaad9b9276a8ad3245ef0f05d04d6ecb98f591f319b26bd062d623c79dc0986c79 languageName: node linkType: hard @@ -3090,7 +3090,7 @@ __metadata: version: 1.1.0 resolution: "micromark-util-normalize-identifier@npm:1.1.0" dependencies: - micromark-util-symbol: ^1.0.0 + micromark-util-symbol: "npm:^1.0.0" checksum: 8655bea41ffa4333e03fc22462cb42d631bbef9c3c07b625fd852b7eb442a110f9d2e5902a42e65188d85498279569502bf92f3434a1180fc06f7c37edfbaee2 languageName: node linkType: hard @@ -3099,7 +3099,7 @@ __metadata: version: 1.1.0 resolution: "micromark-util-resolve-all@npm:1.1.0" dependencies: - micromark-util-types: ^1.0.0 + micromark-util-types: "npm:^1.0.0" checksum: 1ce6c0237cd3ca061e76fae6602cf95014e764a91be1b9f10d36cb0f21ca88f9a07de8d49ab8101efd0b140a4fbfda6a1efb72027ab3f4d5b54c9543271dc52c languageName: node linkType: hard @@ -3108,10 +3108,10 @@ __metadata: version: 1.2.0 resolution: "micromark-util-sanitize-uri@npm:1.2.0" dependencies: - micromark-util-character: ^1.0.0 - micromark-util-encode: ^1.0.0 - micromark-util-symbol: ^1.0.0 - checksum: 6663f365c4fe3961d622a580f4a61e34867450697f6806f027f21cf63c92989494895fcebe2345d52e249fe58a35be56e223a9776d084c9287818b40c779acc1 + micromark-util-character: "npm:^1.0.0" + micromark-util-encode: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + checksum: 0d024100d95ffb88bf75f3360e305b545c1eb745430959b8633f7aa93f37ec401fc7094c90c97298409a9e30d94d53b895bae224e1bb966bea114976cfa0fd48 languageName: node linkType: hard @@ -3119,10 +3119,10 @@ __metadata: version: 2.0.0 resolution: "micromark-util-sanitize-uri@npm:2.0.0" dependencies: - micromark-util-character: ^2.0.0 - micromark-util-encode: ^2.0.0 - micromark-util-symbol: ^2.0.0 - checksum: ea4c28bbffcf2430e9aff2d18554296789a8b0a1f54ac24020d1dde76624a7f93e8f2a83e88cd5a846b6d2c4287b71b1142d1b89fa7f1b0363a9b33711a141fe + micromark-util-character: "npm:^2.0.0" + micromark-util-encode: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + checksum: 7d10622f5a2bb058dda6d2e95b2735c43fdf8daa4f88a0863bc90eef6598f8e10e3df98e034341fcbc090d8021c53501308c463c49d3fe91f41eb64b5bf2766e languageName: node linkType: hard @@ -3130,39 +3130,39 @@ __metadata: version: 1.1.0 resolution: "micromark-util-subtokenize@npm:1.1.0" dependencies: - micromark-util-chunked: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.0 - uvu: ^0.5.0 - checksum: 4a9d780c4d62910e196ea4fd886dc4079d8e424e5d625c0820016da0ed399a281daff39c50f9288045cc4bcd90ab47647e5396aba500f0853105d70dc8b1fc45 + micromark-util-chunked: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.0" + uvu: "npm:^0.5.0" + checksum: 075a1db6ea586d65827d3eead33dbfc520c4e43659c93fcd8fd82f44a7b75cfe61dcde967a3dfcc2ffd999347440ba5aa6698e65a04f3fc627e13e9f12a1a910 languageName: node linkType: hard "micromark-util-symbol@npm:^1.0.0": version: 1.1.0 resolution: "micromark-util-symbol@npm:1.1.0" - checksum: 02414a753b79f67ff3276b517eeac87913aea6c028f3e668a19ea0fc09d98aea9f93d6222a76ca783d20299af9e4b8e7c797fe516b766185dcc6e93290f11f88 + checksum: a26b6b1efd77a715a4d9bbe0a5338eaf3d04ea5e85733e34fee56dfeabf64495c0afc5438fe5220316884cd3a5eae1f17768e0ff4e117827ea4a653897466f86 languageName: node linkType: hard "micromark-util-symbol@npm:^2.0.0": version: 2.0.0 resolution: "micromark-util-symbol@npm:2.0.0" - checksum: fa4a05bff575d9fbf0ad96a1013003e3bb6087ed6b34b609a141b6c0d2137b57df594aca409a95f4c5fda199f227b56a7d8b1f82cea0768df161d8a3a3660764 + checksum: 8c662644c326b384f02a5269974d843d400930cf6f5d6a8e6db1743fc8933f5ecc125b4203ad4ebca25447f5d23eb7e5bf1f75af34570c3fdd925cb618752fcd languageName: node linkType: hard "micromark-util-types@npm:^1.0.0, micromark-util-types@npm:^1.0.1": version: 1.1.0 resolution: "micromark-util-types@npm:1.1.0" - checksum: b0ef2b4b9589f15aec2666690477a6a185536927ceb7aa55a0f46475852e012d75a1ab945187e5c7841969a842892164b15d58ff8316b8e0d6cc920cabd5ede7 + checksum: 287ac5de4a3802bb6f6c3842197c294997a488db1c0486e03c7a8e674d9eb7720c17dda1bcb814814b8343b338c4826fcbc0555f3e75463712a60dcdb53a028e languageName: node linkType: hard "micromark-util-types@npm:^2.0.0": version: 2.0.0 resolution: "micromark-util-types@npm:2.0.0" - checksum: 819fef3ab5770c37893d2a60381fb2694396c8d22803b6e103c830c3a1bc1490363c2b0470bb2acaaddad776dfbc2fc1fcfde39cb63c4f54d95121611672e3d0 + checksum: b88e0eefd4b7c8d86b54dbf4ed0094ef56a3b0c7774d040bd5c8146b8e4e05b1026bbf1cd9308c8fcd05ecdc0784507680c8cee9888a4d3c550e6e574f7aef62 languageName: node linkType: hard @@ -3170,31 +3170,31 @@ __metadata: version: 3.2.0 resolution: "micromark@npm:3.2.0" dependencies: - "@types/debug": ^4.0.0 - debug: ^4.0.0 - decode-named-character-reference: ^1.0.0 - micromark-core-commonmark: ^1.0.1 - micromark-factory-space: ^1.0.0 - micromark-util-character: ^1.0.0 - micromark-util-chunked: ^1.0.0 - micromark-util-combine-extensions: ^1.0.0 - micromark-util-decode-numeric-character-reference: ^1.0.0 - micromark-util-encode: ^1.0.0 - micromark-util-normalize-identifier: ^1.0.0 - micromark-util-resolve-all: ^1.0.0 - micromark-util-sanitize-uri: ^1.0.0 - micromark-util-subtokenize: ^1.0.0 - micromark-util-symbol: ^1.0.0 - micromark-util-types: ^1.0.1 - uvu: ^0.5.0 - checksum: 56c15851ad3eb8301aede65603473443e50c92a54849cac1dadd57e4ec33ab03a0a77f3df03de47133e6e8f695dae83b759b514586193269e98c0bf319ecd5e4 + "@types/debug": "npm:^4.0.0" + debug: "npm:^4.0.0" + decode-named-character-reference: "npm:^1.0.0" + micromark-core-commonmark: "npm:^1.0.1" + micromark-factory-space: "npm:^1.0.0" + micromark-util-character: "npm:^1.0.0" + micromark-util-chunked: "npm:^1.0.0" + micromark-util-combine-extensions: "npm:^1.0.0" + micromark-util-decode-numeric-character-reference: "npm:^1.0.0" + micromark-util-encode: "npm:^1.0.0" + micromark-util-normalize-identifier: "npm:^1.0.0" + micromark-util-resolve-all: "npm:^1.0.0" + micromark-util-sanitize-uri: "npm:^1.0.0" + micromark-util-subtokenize: "npm:^1.0.0" + micromark-util-symbol: "npm:^1.0.0" + micromark-util-types: "npm:^1.0.1" + uvu: "npm:^0.5.0" + checksum: 560a4a501efc3859d622461aaa9345fb95b99a2f34d3d3f2a775ab04de1dd857cb0f642083a6b28ab01bd817f5f0741a1be9857fd702f45e04a3752927a66719 languageName: node linkType: hard "mime-db@npm:1.52.0": version: 1.52.0 resolution: "mime-db@npm:1.52.0" - checksum: 0d99a03585f8b39d68182803b12ac601d9c01abfa28ec56204fa330bc9f3d1c5e14beb049bafadb3dbdf646dfb94b87e24d4ec7b31b7279ef906a8ea9b6a513f + checksum: 54bb60bf39e6f8689f6622784e668a3d7f8bed6b0d886f5c3c446cb3284be28b30bf707ed05d0fe44a036f8469976b2629bbea182684977b084de9da274694d7 languageName: node linkType: hard @@ -3202,8 +3202,8 @@ __metadata: version: 2.1.35 resolution: "mime-types@npm:2.1.35" dependencies: - mime-db: 1.52.0 - checksum: 89a5b7f1def9f3af5dad6496c5ed50191ae4331cc5389d7c521c8ad28d5fdad2d06fd81baf38fed813dc4e46bb55c8145bb0ff406330818c9cf712fb2e9b3836 + mime-db: "npm:1.52.0" + checksum: 89aa9651b67644035de2784a6e665fc685d79aba61857e02b9c8758da874a754aed4a9aced9265f5ed1171fd934331e5516b84a7f0218031b6fa0270eca1e51a languageName: node linkType: hard @@ -3212,14 +3212,14 @@ __metadata: resolution: "mime@npm:2.6.0" bin: mime: cli.js - checksum: 1497ba7b9f6960694268a557eae24b743fd2923da46ec392b042469f4b901721ba0adcf8b0d3c2677839d0e243b209d76e5edcbd09cfdeffa2dfb6bb4df4b862 + checksum: 7da117808b5cd0203bb1b5e33445c330fe213f4d8ee2402a84d62adbde9716ca4fb90dd6d9ab4e77a4128c6c5c24a9c4c9f6a4d720b095b1b342132d02dba58d languageName: node linkType: hard "mri@npm:^1.1.0": version: 1.2.0 resolution: "mri@npm:1.2.0" - checksum: 83f515abbcff60150873e424894a2f65d68037e5a7fcde8a9e2b285ee9c13ac581b63cfc1e6826c4732de3aeb84902f7c1e16b7aff46cd3f897a0f757a894e85 + checksum: 6775a1d2228bb9d191ead4efc220bd6be64f943ad3afd4dcb3b3ac8fc7b87034443f666e38805df38e8d047b29f910c3cc7810da0109af83e42c82c73bd3f6bc languageName: node linkType: hard @@ -3242,14 +3242,14 @@ __metadata: resolution: "nanoid@npm:3.3.7" bin: nanoid: bin/nanoid.cjs - checksum: d36c427e530713e4ac6567d488b489a36582ef89da1d6d4e3b87eded11eb10d7042a877958c6f104929809b2ab0bafa17652b076cdf84324aa75b30b722204f2 + checksum: ac1eb60f615b272bccb0e2b9cd933720dad30bf9708424f691b8113826bb91aca7e9d14ef5d9415a6ba15c266b37817256f58d8ce980c82b0ba3185352565679 languageName: node linkType: hard "netmask@npm:^2.0.2": version: 2.0.2 resolution: "netmask@npm:2.0.2" - checksum: c65cb8d3f7ea5669edddb3217e4c96910a60d0d9a4b52d9847ff6b28b2d0277cd8464eee0ef85133cdee32605c57940cacdd04a9a019079b091b6bba4cb0ec22 + checksum: 375cabe898a5832816958664f26206f0a1e9f3605aa1816bfce803e060ff20f9d6ce56a2377e46f1470938358c31c27b3a8086f4a5e3ef678896147884d63ffa languageName: node linkType: hard @@ -3257,14 +3257,14 @@ __metadata: version: 4.4.1 resolution: "next-mdx-remote@npm:4.4.1" dependencies: - "@mdx-js/mdx": ^2.2.1 - "@mdx-js/react": ^2.2.1 - vfile: ^5.3.0 - vfile-matter: ^3.0.1 + "@mdx-js/mdx": "npm:^2.2.1" + "@mdx-js/react": "npm:^2.2.1" + vfile: "npm:^5.3.0" + vfile-matter: "npm:^3.0.1" peerDependencies: react: ">=16.x <=18.x" react-dom: ">=16.x <=18.x" - checksum: 95cd77d03ae8ad7ae691cde0e895597b35a2ddac99cbeb31f1307599b2c7e7628f9e2a0fa5ced8d55036f58d8a2006ae312e308d574b8c3b0948df7279fa393d + checksum: 89d18095f6ad1b9e99fe990692f6c365d13a51d0bc04c2b76aaee0105dcb21b2a1d66e8d27adf6a094d0cc71b25b71b716a62c9a1ac4add22f6cb94bdb72eaed languageName: node linkType: hard @@ -3275,7 +3275,7 @@ __metadata: next: ^8.1.1-canary.54 || >=9.0.0 react: ">=16.0.0" react-dom: ">=16.0.0" - checksum: 94183bf0c75359bad52d9e6463fb433bdcf94f42b33e88a60897a8957b41bc3d6ebb5ead3084a43cf287c42f7b95ba4e9f3a6cd21af532e1a8eb285f2cf8ac3b + checksum: acb7ea474f121f788d2cc312f9c8ec2061f72c28b4d9ef6beb89d0707f0319e7b5025d08c1970bad7d0cda451820751ecf9a40507c1b97098a18d00a99436856 languageName: node linkType: hard @@ -3286,7 +3286,7 @@ __metadata: next: "*" react: "*" react-dom: "*" - checksum: ebc248b956138e73436c4ed0a0f0a877a0a48a33156db577029b8b8469e48b5c777d61abf2baeb75953378febea74e067a4869ff90b4a3e94fce123289b862ba + checksum: 6c955c114b7aa920fc14edd3832d0ea95be245ad33f79f397f613696a7c16c7f4112d6e61893d4977255b270f920811741eafdf8be49bd99cecafabf09e8a499 languageName: node linkType: hard @@ -3294,22 +3294,22 @@ __metadata: version: 13.5.6 resolution: "next@npm:13.5.6" dependencies: - "@next/env": 13.5.6 - "@next/swc-darwin-arm64": 13.5.6 - "@next/swc-darwin-x64": 13.5.6 - "@next/swc-linux-arm64-gnu": 13.5.6 - "@next/swc-linux-arm64-musl": 13.5.6 - "@next/swc-linux-x64-gnu": 13.5.6 - "@next/swc-linux-x64-musl": 13.5.6 - "@next/swc-win32-arm64-msvc": 13.5.6 - "@next/swc-win32-ia32-msvc": 13.5.6 - "@next/swc-win32-x64-msvc": 13.5.6 - "@swc/helpers": 0.5.2 - busboy: 1.6.0 - caniuse-lite: ^1.0.30001406 - postcss: 8.4.31 - styled-jsx: 5.1.1 - watchpack: 2.4.0 + "@next/env": "npm:13.5.6" + "@next/swc-darwin-arm64": "npm:13.5.6" + "@next/swc-darwin-x64": "npm:13.5.6" + "@next/swc-linux-arm64-gnu": "npm:13.5.6" + "@next/swc-linux-arm64-musl": "npm:13.5.6" + "@next/swc-linux-x64-gnu": "npm:13.5.6" + "@next/swc-linux-x64-musl": "npm:13.5.6" + "@next/swc-win32-arm64-msvc": "npm:13.5.6" + "@next/swc-win32-ia32-msvc": "npm:13.5.6" + "@next/swc-win32-x64-msvc": "npm:13.5.6" + "@swc/helpers": "npm:0.5.2" + busboy: "npm:1.6.0" + caniuse-lite: "npm:^1.0.30001406" + postcss: "npm:8.4.31" + styled-jsx: "npm:5.1.1" + watchpack: "npm:2.4.0" peerDependencies: "@opentelemetry/api": ^1.1.0 react: ^18.2.0 @@ -3341,7 +3341,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: c869b0014ae921ada3bf22301985027ec320aebcd6aa9c16e8afbded68bb8def5874cca034c680e8c351a79578f1e514971d02777f6f0a5a1d7290f25970ac0d + checksum: ec6defc7958b575d93306a2dcb05b7b14e27474e226ec350f412d03832407a5ae7139c21f7c7437b93cca2c8a79d7197c468308d82a903b2a86d579f84ccac9f languageName: node linkType: hard @@ -3349,16 +3349,16 @@ __metadata: version: 0.0.0-use.local resolution: "nextra-docs-template@workspace:." dependencies: - "@types/node": 18.11.10 - "@vercel/analytics": ^1.1.1 - next: ^13.0.6 - nextra: 2.13.2 - nextra-theme-docs: 2.13.2 - react: ^18.2.0 - react-dom: ^18.2.0 - react-native-web: ~0.19.6 - snack-sdk: ^4.2.0 - typescript: ^4.9.3 + "@types/node": "npm:18.11.10" + "@vercel/analytics": "npm:^1.1.1" + next: "npm:^13.0.6" + nextra: "npm:2.13.2" + nextra-theme-docs: "npm:2.13.2" + react: "npm:^18.2.0" + react-dom: "npm:^18.2.0" + react-native-web: "npm:~0.19.6" + snack-sdk: "npm:^4.2.0" + typescript: "npm:^4.9.3" languageName: unknown linkType: soft @@ -3366,25 +3366,25 @@ __metadata: version: 2.13.2 resolution: "nextra-theme-docs@npm:2.13.2" dependencies: - "@headlessui/react": ^1.7.10 - "@popperjs/core": ^2.11.6 - clsx: ^2.0.0 - escape-string-regexp: ^5.0.0 - flexsearch: ^0.7.31 - focus-visible: ^5.2.0 - git-url-parse: ^13.1.0 - intersection-observer: ^0.12.2 - match-sorter: ^6.3.1 - next-seo: ^6.0.0 - next-themes: ^0.2.1 - scroll-into-view-if-needed: ^3.0.0 - zod: ^3.22.3 + "@headlessui/react": "npm:^1.7.10" + "@popperjs/core": "npm:^2.11.6" + clsx: "npm:^2.0.0" + escape-string-regexp: "npm:^5.0.0" + flexsearch: "npm:^0.7.31" + focus-visible: "npm:^5.2.0" + git-url-parse: "npm:^13.1.0" + intersection-observer: "npm:^0.12.2" + match-sorter: "npm:^6.3.1" + next-seo: "npm:^6.0.0" + next-themes: "npm:^0.2.1" + scroll-into-view-if-needed: "npm:^3.0.0" + zod: "npm:^3.22.3" peerDependencies: next: ">=9.5.3" nextra: 2.13.2 react: ">=16.13.1" react-dom: ">=16.13.1" - checksum: 5852ed24fd2098de48d1f788ec2c45d3ea53fc5f1b49a4ba31636ef021ea58aa3e5eb5f61e55686ecc08063a9fd29b19d5ef1901d380dce3957587f0802f7dda + checksum: 634942d299f78616f38ef8eb5f24cdbde95e85e354da1079dd6a9d50c065648af2eed91dfc8087bb57040a4d8a3dcb12b2613f087c855d5b0a6fa376c86b8a51 languageName: node linkType: hard @@ -3392,37 +3392,37 @@ __metadata: version: 2.13.2 resolution: "nextra@npm:2.13.2" dependencies: - "@headlessui/react": ^1.7.10 - "@mdx-js/mdx": ^2.3.0 - "@mdx-js/react": ^2.3.0 - "@napi-rs/simple-git": ^0.1.9 - "@theguild/remark-mermaid": ^0.0.5 - "@theguild/remark-npm2yarn": ^0.2.0 - clsx: ^2.0.0 - github-slugger: ^2.0.0 - graceful-fs: ^4.2.11 - gray-matter: ^4.0.3 - katex: ^0.16.9 - lodash.get: ^4.4.2 - next-mdx-remote: ^4.2.1 - p-limit: ^3.1.0 - rehype-katex: ^7.0.0 - rehype-pretty-code: 0.9.11 - rehype-raw: ^7.0.0 - remark-gfm: ^3.0.1 - remark-math: ^5.1.1 - remark-reading-time: ^2.0.1 - shiki: ^0.14.3 - slash: ^3.0.0 - title: ^3.5.3 - unist-util-remove: ^4.0.0 - unist-util-visit: ^5.0.0 - zod: ^3.22.3 + "@headlessui/react": "npm:^1.7.10" + "@mdx-js/mdx": "npm:^2.3.0" + "@mdx-js/react": "npm:^2.3.0" + "@napi-rs/simple-git": "npm:^0.1.9" + "@theguild/remark-mermaid": "npm:^0.0.5" + "@theguild/remark-npm2yarn": "npm:^0.2.0" + clsx: "npm:^2.0.0" + github-slugger: "npm:^2.0.0" + graceful-fs: "npm:^4.2.11" + gray-matter: "npm:^4.0.3" + katex: "npm:^0.16.9" + lodash.get: "npm:^4.4.2" + next-mdx-remote: "npm:^4.2.1" + p-limit: "npm:^3.1.0" + rehype-katex: "npm:^7.0.0" + rehype-pretty-code: "npm:0.9.11" + rehype-raw: "npm:^7.0.0" + remark-gfm: "npm:^3.0.1" + remark-math: "npm:^5.1.1" + remark-reading-time: "npm:^2.0.1" + shiki: "npm:^0.14.3" + slash: "npm:^3.0.0" + title: "npm:^3.5.3" + unist-util-remove: "npm:^4.0.0" + unist-util-visit: "npm:^5.0.0" + zod: "npm:^3.22.3" peerDependencies: next: ">=9.5.3" react: ">=16.13.1" react-dom: ">=16.13.1" - checksum: 2c5d6cb2604b92f411abe59844a292cacc861bd474e637ded95d66a224a705f961ff73d9af5d072eebc3eca16571b05b2e4a880d1e52463555962e91d52193e5 + checksum: 8f395a5909f2531398eb46f84d49fe5cd58d2d8ac2bc315c8771f129226e06fa65a661594a9e18b2409c28ea4b23c028218f511bec5d62c7742884f4617c3a74 languageName: node linkType: hard @@ -3430,13 +3430,13 @@ __metadata: version: 2.7.0 resolution: "node-fetch@npm:2.7.0" dependencies: - whatwg-url: ^5.0.0 + whatwg-url: "npm:^5.0.0" peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: encoding: optional: true - checksum: d76d2f5edb451a3f05b15115ec89fc6be39de37c6089f1b6368df03b91e1633fd379a7e01b7ab05089a25034b2023d959b47e59759cb38d88341b2459e89d6e5 + checksum: b24f8a3dc937f388192e59bcf9d0857d7b6940a2496f328381641cb616efccc9866e89ec43f2ec956bbd6c3d3ee05524ce77fe7b29ccd34692b3a16f237d6676 languageName: node linkType: hard @@ -3444,20 +3444,20 @@ __metadata: version: 2.6.13 resolution: "node-fetch@npm:2.6.13" dependencies: - whatwg-url: ^5.0.0 + whatwg-url: "npm:^5.0.0" peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: encoding: optional: true - checksum: 055845ae5b4796c78c7053564745345025cf959563b3568b43c385f67d311779e6b00e5fef6ed1b79f86ba4048e4b4b722e1aa948305521b9353eb7e788912c9 + checksum: 72f94498d547e322207575b2778e7b3d969b0d73f35a19f258c7fb982bf0ae96e5a3a518477300ba1dd2bd22e6b05be074648ed88448c5cf1a9b7d23c6529d1a languageName: node linkType: hard "non-layered-tidy-tree-layout@npm:^2.0.2": version: 2.0.2 resolution: "non-layered-tidy-tree-layout@npm:2.0.2" - checksum: 5defc1c459001b22816a4fb8b86259b9b76e7f3090df576122a41c760133ab2061934cacd6f176c98c2ae4fee3879b97941e8897e8882985cbfe830f155cd158 + checksum: 615b4da455a4ed761cc1563b126450c92f14d2d92c75cfd861fec495557a48768c5bf3012f080c8e58ecb093bfd2268a636515963a1e769f5a7029d057fa169a languageName: node linkType: hard @@ -3465,7 +3465,7 @@ __metadata: version: 2.0.2 resolution: "npm-run-path@npm:2.0.2" dependencies: - path-key: ^2.0.0 + path-key: "npm:^2.0.0" checksum: acd5ad81648ba4588ba5a8effb1d98d2b339d31be16826a118d50f182a134ac523172101b82eab1d01cb4c2ba358e857d54cfafd8163a1ffe7bd52100b741125 languageName: node linkType: hard @@ -3473,14 +3473,14 @@ __metadata: "npm-to-yarn@npm:^2.1.0": version: 2.1.0 resolution: "npm-to-yarn@npm:2.1.0" - checksum: 0e5ed46d9c1bbacc93a83c8ebe347578188b58b5bcb3bc727f7c582aa9144121f981b604778dad10c46dbb2e927da8f0943fd5ca7c2ef26824bdaac317d1d47e + checksum: b1e03d58a4e7bed710b5d937412a344fb8812f79cb47ed570563b7bb46f9ad05ac78379510708e4ded56880b5fa08722ed8406134f8b639d873582732a1c9ddc languageName: node linkType: hard "nullthrows@npm:^1.1.1": version: 1.1.1 resolution: "nullthrows@npm:1.1.1" - checksum: 10806b92121253eb1b08ecf707d92480f5331ba8ae5b23fa3eb0548ad24196eb797ed47606153006568a5733ea9e528a3579f21421f7828e09e7756f4bdd386f + checksum: c7cf377a095535dc301d81cf7959d3784d090a609a2a4faa40b6121a0c1d7f70d3a3aa534a34ab852e8553b66848ec503c28f2c19efd617ed564dc07dfbb6d33 languageName: node linkType: hard @@ -3494,7 +3494,7 @@ __metadata: "object-inspect@npm:^1.9.0": version: 1.13.1 resolution: "object-inspect@npm:1.13.1" - checksum: 7d9fa9221de3311dcb5c7c307ee5dc011cdd31dc43624b7c184b3840514e118e05ef0002be5388304c416c0eb592feb46e983db12577fc47e47d5752fbbfb61f + checksum: 92f4989ed83422d56431bc39656d4c780348eb15d397ce352ade6b7fec08f973b53744bd41b94af021901e61acaf78fcc19e65bf464ecc0df958586a672700f0 languageName: node linkType: hard @@ -3502,7 +3502,7 @@ __metadata: version: 1.4.0 resolution: "once@npm:1.4.0" dependencies: - wrappy: 1 + wrappy: "npm:1" checksum: cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68 languageName: node linkType: hard @@ -3518,7 +3518,7 @@ __metadata: version: 3.1.0 resolution: "p-limit@npm:3.1.0" dependencies: - yocto-queue: ^0.1.0 + yocto-queue: "npm:^0.1.0" checksum: 7c3690c4dbf62ef625671e20b7bdf1cbc9534e83352a2780f165b0d3ceba21907e77ad63401708145ca4e25bfc51636588d89a8c0aeb715e6c37d1c066430360 languageName: node linkType: hard @@ -3527,15 +3527,15 @@ __metadata: version: 7.0.1 resolution: "pac-proxy-agent@npm:7.0.1" dependencies: - "@tootallnate/quickjs-emscripten": ^0.23.0 - agent-base: ^7.0.2 - debug: ^4.3.4 - get-uri: ^6.0.1 - http-proxy-agent: ^7.0.0 - https-proxy-agent: ^7.0.2 - pac-resolver: ^7.0.0 - socks-proxy-agent: ^8.0.2 - checksum: 3d4aa48ec1c19db10158ecc1c4c9a9f77792294412d225ceb3dfa45d5a06950dca9755e2db0d9b69f12769119bea0adf2b24390d9c73c8d81df75e28245ae451 + "@tootallnate/quickjs-emscripten": "npm:^0.23.0" + agent-base: "npm:^7.0.2" + debug: "npm:^4.3.4" + get-uri: "npm:^6.0.1" + http-proxy-agent: "npm:^7.0.0" + https-proxy-agent: "npm:^7.0.2" + pac-resolver: "npm:^7.0.0" + socks-proxy-agent: "npm:^8.0.2" + checksum: b9055d13b2a48acf77689c2e510d033486fd90e50a1c7f6bd5f09cd9270bac62ec54bc8fcdd0edbef26e357194cbce70f6794bd99a454d796bc780de6235a61e languageName: node linkType: hard @@ -3543,9 +3543,9 @@ __metadata: version: 7.0.0 resolution: "pac-resolver@npm:7.0.0" dependencies: - degenerator: ^5.0.0 - ip: ^1.1.8 - netmask: ^2.0.2 + degenerator: "npm:^5.0.0" + ip: "npm:^1.1.8" + netmask: "npm:^2.0.2" checksum: fa3a898c09848e93e35f5e23443fea36ddb393a851c76a23664a5bf3fcbe58ff77a0bcdae1e4f01b9ea87ea493c52e14d97a0fe39f92474d14cd45559c6e3cde languageName: node linkType: hard @@ -3554,15 +3554,15 @@ __metadata: version: 4.0.1 resolution: "parse-entities@npm:4.0.1" dependencies: - "@types/unist": ^2.0.0 - character-entities: ^2.0.0 - character-entities-legacy: ^3.0.0 - character-reference-invalid: ^2.0.0 - decode-named-character-reference: ^1.0.0 - is-alphanumerical: ^2.0.0 - is-decimal: ^2.0.0 - is-hexadecimal: ^2.0.0 - checksum: 32a6ff5b9acb9d2c4d71537308521fd265e685b9215691df73feedd9edfe041bb6da9f89bd0c35c4a2bc7d58e3e76e399bb6078c2fd7d2a343ff1dd46edbf1bd + "@types/unist": "npm:^2.0.0" + character-entities: "npm:^2.0.0" + character-entities-legacy: "npm:^3.0.0" + character-reference-invalid: "npm:^2.0.0" + decode-named-character-reference: "npm:^1.0.0" + is-alphanumerical: "npm:^2.0.0" + is-decimal: "npm:^2.0.0" + is-hexadecimal: "npm:^2.0.0" + checksum: 71314312d2482422fcf0b6675e020643bab424b11f64c654b7843652cae03842a7802eda1fed194ec435debb5db47a33513eb6b1176888e9e998a0368f01f5c8 languageName: node linkType: hard @@ -3577,8 +3577,8 @@ __metadata: version: 7.0.0 resolution: "parse-path@npm:7.0.0" dependencies: - protocols: ^2.0.0 - checksum: 244b46523a58181d251dda9b888efde35d8afb957436598d948852f416d8c76ddb4f2010f9fc94218b4be3e5c0f716aa0d2026194a781e3b8981924142009302 + protocols: "npm:^2.0.0" + checksum: 2e6eadae5aff97a8b6373c1c08440bfeed814f65452674a139dc606c7c410e8e48b7983fe451aedc59802a2814121b40415ca00675c1546ff75cb73ad0c1df5a languageName: node linkType: hard @@ -3586,8 +3586,8 @@ __metadata: version: 8.1.0 resolution: "parse-url@npm:8.1.0" dependencies: - parse-path: ^7.0.0 - checksum: b93e21ab4c93c7d7317df23507b41be7697694d4c94f49ed5c8d6288b01cba328fcef5ba388e147948eac20453dee0df9a67ab2012415189fff85973bdffe8d9 + parse-path: "npm:^7.0.0" + checksum: ceb51dc474568092a50d6d936036dfe438a87aa45bcf20947c8fcdf1544ee9c50255608abae604644e718e91e0b83cfbea4675e8b2fd90bc197432f6d9be263c languageName: node linkType: hard @@ -3595,15 +3595,15 @@ __metadata: version: 7.1.2 resolution: "parse5@npm:7.1.2" dependencies: - entities: ^4.4.0 - checksum: 59465dd05eb4c5ec87b76173d1c596e152a10e290b7abcda1aecf0f33be49646ea74840c69af975d7887543ea45564801736356c568d6b5e71792fd0f4055713 + entities: "npm:^4.4.0" + checksum: 3c86806bb0fb1e9a999ff3a4c883b1ca243d99f45a619a0898dbf021a95a0189ed955c31b07fe49d342b54e814f33f2c9d7489198e8630dacd5477d413ec5782 languageName: node linkType: hard "path-key@npm:^2.0.0": version: 2.0.1 resolution: "path-key@npm:2.0.1" - checksum: f7ab0ad42fe3fb8c7f11d0c4f849871e28fbd8e1add65c370e422512fc5887097b9cf34d09c1747d45c942a8c1e26468d6356e2df3f740bf177ab8ca7301ebfd + checksum: 6e654864e34386a2a8e6bf72cf664dcabb76574dd54013add770b374384d438aca95f4357bb26935b514a4e4c2c9b19e191f2200b282422a76ee038b9258c5e7 languageName: node linkType: hard @@ -3611,10 +3611,10 @@ __metadata: version: 3.1.0 resolution: "periscopic@npm:3.1.0" dependencies: - "@types/estree": ^1.0.0 - estree-walker: ^3.0.0 - is-reference: ^3.0.0 - checksum: 2153244352e58a0d76e7e8d9263e66fe74509495f809af388da20045fb30aa3e93f2f94468dc0b9166ecf206fcfc0d73d2c7641c6fbedc07b1de858b710142cb + "@types/estree": "npm:^1.0.0" + estree-walker: "npm:^3.0.0" + is-reference: "npm:^3.0.0" + checksum: 088a85a6de42e2f34414392dec8348218508609389ecb8002b009c357fa26bdfb67c385d9ec0e4e1089e27748ddc0789254073ef78fd576a32b5e641474c56ba languageName: node linkType: hard @@ -3628,7 +3628,7 @@ __metadata: "postcss-value-parser@npm:^4.2.0": version: 4.2.0 resolution: "postcss-value-parser@npm:4.2.0" - checksum: 819ffab0c9d51cf0acbabf8996dffbfafbafa57afc0e4c98db88b67f2094cb44488758f06e5da95d7036f19556a4a732525e84289a425f4f6fd8e412a9d7442f + checksum: e4e4486f33b3163a606a6ed94f9c196ab49a37a7a7163abfcd469e5f113210120d70b8dd5e33d64636f41ad52316a3725655421eb9a1094f1bcab1db2f555c62 languageName: node linkType: hard @@ -3636,10 +3636,10 @@ __metadata: version: 8.4.31 resolution: "postcss@npm:8.4.31" dependencies: - nanoid: ^3.3.6 - picocolors: ^1.0.0 - source-map-js: ^1.0.2 - checksum: 1d8611341b073143ad90486fcdfeab49edd243377b1f51834dc4f6d028e82ce5190e4f11bb2633276864503654fb7cab28e67abdc0fbf9d1f88cad4a0ff0beea + nanoid: "npm:^3.3.6" + picocolors: "npm:^1.0.0" + source-map-js: "npm:^1.0.2" + checksum: 1a6653e72105907377f9d4f2cd341d8d90e3fde823a5ddea1e2237aaa56933ea07853f0f2758c28892a1d70c53bbaca200eb8b80f8ed55f13093003dbec5afa0 languageName: node linkType: hard @@ -3647,22 +3647,22 @@ __metadata: version: 7.3.1 resolution: "promise@npm:7.3.1" dependencies: - asap: ~2.0.3 - checksum: 475bb069130179fbd27ed2ab45f26d8862376a137a57314cf53310bdd85cc986a826fd585829be97ebc0aaf10e9d8e68be1bfe5a4a0364144b1f9eedfa940cf1 + asap: "npm:~2.0.3" + checksum: 37dbe58ca7b0716cc881f0618128f1fd6ff9c46cdc529a269fd70004e567126a449a94e9428e2d19b53d06182d11b45d0c399828f103e06b2bb87643319bd2e7 languageName: node linkType: hard "property-information@npm:^6.0.0": version: 6.4.0 resolution: "property-information@npm:6.4.0" - checksum: b5aed9a40e87730995f3ceed29839f137fa73b2a4cccfb8ed72ab8bddb8881cad05c3487c4aa168d7cb49a53db8089790c9f00f59d15b8380d2bb5383cdd1f24 + checksum: 853302c207586fa26b11c104d0cf1f832d079adda52985fae901eee8c0c1f3d1c3105f3306f5655614f5017f34d0a46664573f5e9d97b108629b1b8f1bf7f110 languageName: node linkType: hard "protocols@npm:^2.0.0, protocols@npm:^2.0.1": version: 2.0.1 resolution: "protocols@npm:2.0.1" - checksum: 4a9bef6aa0449a0245ded319ac3cbfd032c3e76ebb562777037a3a832c99253d0e8bc2847f7be350236df620a11f7d4fe683ea7f59a2cc14c69f746b6259eda4 + checksum: 0cd08a55b9cb7cc96fed7a528255320428a7c86fd5f3f35965845285436433b7836178893168f80584efdf86391cd7c0a837b6f6bc5ddac3029c76be61118ba5 languageName: node linkType: hard @@ -3670,22 +3670,22 @@ __metadata: version: 6.3.1 resolution: "proxy-agent@npm:6.3.1" dependencies: - agent-base: ^7.0.2 - debug: ^4.3.4 - http-proxy-agent: ^7.0.0 - https-proxy-agent: ^7.0.2 - lru-cache: ^7.14.1 - pac-proxy-agent: ^7.0.1 - proxy-from-env: ^1.1.0 - socks-proxy-agent: ^8.0.2 - checksum: 31030da419da31809340ac2521090c9a5bf4fe47a944843f829b3502883208c8586a468955e64b694140a41d70af6f45cf4793f5efd4a6f3ed94e5ac8023e36d + agent-base: "npm:^7.0.2" + debug: "npm:^4.3.4" + http-proxy-agent: "npm:^7.0.0" + https-proxy-agent: "npm:^7.0.2" + lru-cache: "npm:^7.14.1" + pac-proxy-agent: "npm:^7.0.1" + proxy-from-env: "npm:^1.1.0" + socks-proxy-agent: "npm:^8.0.2" + checksum: 547e6ebd7359cc37608cfb7ba58c97faaa33f29fcff25c2933552917bec234cfbbd8bade0f8acccab1bd0aae489082dce5ee63f644f05f824890084a70919dea languageName: node linkType: hard "proxy-from-env@npm:^1.1.0": version: 1.1.0 resolution: "proxy-from-env@npm:1.1.0" - checksum: ed7fcc2ba0a33404958e34d95d18638249a68c430e30fcb6c478497d72739ba64ce9810a24f53a7d921d0c065e5b78e3822759800698167256b04659366ca4d4 + checksum: f0bb4a87cfd18f77bc2fba23ae49c3b378fb35143af16cc478171c623eebe181678f09439707ad80081d340d1593cd54a33a0113f3ccb3f4bc9451488780ee23 languageName: node linkType: hard @@ -3700,14 +3700,14 @@ __metadata: version: 7.4.5 resolution: "pubnub@npm:7.4.5" dependencies: - agentkeepalive: ^3.5.2 - buffer: ^6.0.3 - cbor-js: ^0.1.0 - cbor-sync: ^1.0.4 - lil-uuid: ^0.1.1 - proxy-agent: ^6.3.0 - superagent: ^8.1.2 - checksum: 0a695d05d44325fcc50e7796f83919b7c5f85fa7152d31bf7b2190e9626ead812b3fdbec7d43a1173c65d2460d4b154e1d344b4bce3deb343918c69836203aec + agentkeepalive: "npm:^3.5.2" + buffer: "npm:^6.0.3" + cbor-js: "npm:^0.1.0" + cbor-sync: "npm:^1.0.4" + lil-uuid: "npm:^0.1.1" + proxy-agent: "npm:^6.3.0" + superagent: "npm:^8.1.2" + checksum: a2136ebae39eb203f3a59885105b9f1849af3199780c3d9aab29939a176074790c1213dd39ccd395ca415c3152ab50e8c821b43e2aa3c1614cf1434c2ce4c63d languageName: node linkType: hard @@ -3715,8 +3715,8 @@ __metadata: version: 6.11.2 resolution: "qs@npm:6.11.2" dependencies: - side-channel: ^1.0.4 - checksum: e812f3c590b2262548647d62f1637b6989cc56656dc960b893fe2098d96e1bd633f36576f4cd7564dfbff9db42e17775884db96d846bebe4f37420d073ecdc0b + side-channel: "npm:^1.0.4" + checksum: f2321d0796664d0f94e92447ccd3bdfd6b6f3a50b6b762aa79d7f5b1ea3a7a9f94063ba896b82bc2a877ed6a7426d4081e4f16568fdb04f0ee188cca9d8505b4 languageName: node linkType: hard @@ -3724,11 +3724,11 @@ __metadata: version: 18.2.0 resolution: "react-dom@npm:18.2.0" dependencies: - loose-envify: ^1.1.0 - scheduler: ^0.23.0 + loose-envify: "npm:^1.1.0" + scheduler: "npm:^0.23.0" peerDependencies: react: ^18.2.0 - checksum: 7d323310bea3a91be2965f9468d552f201b1c27891e45ddc2d6b8f717680c95a75ae0bc1e3f5cf41472446a2589a75aed4483aee8169287909fcd59ad149e8cc + checksum: ca5e7762ec8c17a472a3605b6f111895c9f87ac7d43a610ab7024f68cd833d08eda0625ce02ec7178cc1f3c957cf0b9273cdc17aa2cd02da87544331c43b1d21 languageName: node linkType: hard @@ -3736,18 +3736,18 @@ __metadata: version: 0.19.9 resolution: "react-native-web@npm:0.19.9" dependencies: - "@babel/runtime": ^7.18.6 - "@react-native/normalize-color": ^2.1.0 - fbjs: ^3.0.4 - inline-style-prefixer: ^6.0.1 - memoize-one: ^6.0.0 - nullthrows: ^1.1.1 - postcss-value-parser: ^4.2.0 - styleq: ^0.1.3 + "@babel/runtime": "npm:^7.18.6" + "@react-native/normalize-color": "npm:^2.1.0" + fbjs: "npm:^3.0.4" + inline-style-prefixer: "npm:^6.0.1" + memoize-one: "npm:^6.0.0" + nullthrows: "npm:^1.1.1" + postcss-value-parser: "npm:^4.2.0" + styleq: "npm:^0.1.3" peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - checksum: 79fe259a9fc0168c1cd12e72011a5e21cf2493a6b1a92334c3b5cf73ce2219fbf2adb79bca528d02b9643ff4a027e18e4988bc9d50e924be6e9d658c97a7e5ec + checksum: 1cf7ec649815f8c27d49bc221871a0e23c17e1247ffa61f677894a1f570da3ac4d015ce849ed07dce44ea011a63cb4511982a5d3bedc9e42bbf404ad38dd580e languageName: node linkType: hard @@ -3755,22 +3755,22 @@ __metadata: version: 18.2.0 resolution: "react@npm:18.2.0" dependencies: - loose-envify: ^1.1.0 - checksum: 88e38092da8839b830cda6feef2e8505dec8ace60579e46aa5490fc3dc9bba0bd50336507dc166f43e3afc1c42939c09fe33b25fae889d6f402721dcd78fca1b + loose-envify: "npm:^1.1.0" + checksum: b9214a9bd79e99d08de55f8bef2b7fc8c39630be97c4e29d7be173d14a9a10670b5325e94485f74cd8bff4966ef3c78ee53c79a7b0b9b70cba20aa8973acc694 languageName: node linkType: hard "reading-time@npm:^1.3.0": version: 1.5.0 resolution: "reading-time@npm:1.5.0" - checksum: e27bc5a70ba0f4ac337896b18531b914d38f4bee67cbad48029d0c11dd0a7a847b2a6bba895ab7ce2ad3e7ecb86912bdc477d8fa2d48405a3deda964be54d09b + checksum: d52921d2563693f34e71ecc6ec97bd48ec960c44dff04384e56c47ee68cfa36749acbcaeec4d0cd1d18113e53ae67825bb067ea63ba1f86107e289573e5f584f languageName: node linkType: hard "regenerator-runtime@npm:^0.14.0": version: 0.14.0 resolution: "regenerator-runtime@npm:0.14.0" - checksum: 1c977ad82a82a4412e4f639d65d22be376d3ebdd30da2c003eeafdaaacd03fc00c2320f18120007ee700900979284fc78a9f00da7fb593f6e6eeebc673fba9a3 + checksum: 6c19495baefcf5fbb18a281b56a97f0197b5f219f42e571e80877f095320afac0bdb31dab8f8186858e6126950068c3f17a1226437881e3e70446ea66751897c languageName: node linkType: hard @@ -3778,14 +3778,14 @@ __metadata: version: 7.0.0 resolution: "rehype-katex@npm:7.0.0" dependencies: - "@types/hast": ^3.0.0 - "@types/katex": ^0.16.0 - hast-util-from-html-isomorphic: ^2.0.0 - hast-util-to-text: ^4.0.0 - katex: ^0.16.0 - unist-util-visit-parents: ^6.0.0 - vfile: ^6.0.0 - checksum: 3184cf7635e63039a5d455e27718cbc99998cc7bfcc15422badf5da892887f4200f3ee54a6617aa231aa15d46cb678716c112b6b7f9cef11a8653e5d518ad6f0 + "@types/hast": "npm:^3.0.0" + "@types/katex": "npm:^0.16.0" + hast-util-from-html-isomorphic: "npm:^2.0.0" + hast-util-to-text: "npm:^4.0.0" + katex: "npm:^0.16.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile: "npm:^6.0.0" + checksum: 7f20fc25cedc0dc085c06ed2e460f7c2471fd8e54b2d00f5a98100d5cf6ebce3fa6d47ab1247a0021f1d152be1da074ada10fdcfbf3e63f6e3b4bc5b0604195c languageName: node linkType: hard @@ -3793,12 +3793,12 @@ __metadata: version: 0.9.11 resolution: "rehype-pretty-code@npm:0.9.11" dependencies: - "@types/hast": ^2.0.0 - hash-obj: ^4.0.0 - parse-numeric-range: ^1.3.0 + "@types/hast": "npm:^2.0.0" + hash-obj: "npm:^4.0.0" + parse-numeric-range: "npm:^1.3.0" peerDependencies: shiki: "*" - checksum: 1905c8f9ba76859af38559329eaabc8e1a8615d59eb4d22ba13c85a23aefc9711ee8afe93894582462f02af872b496ce105254d0ba42b8c3c0fa3aadca90cfed + checksum: 212f1ac53cb447fa9f7209026a2bc63711b5eac225f6ca6ab7487969fb5ec43bd3d6995aa5825d57209d0a842017bf8406494b2b81569b1aa1d3801eab0eb3b9 languageName: node linkType: hard @@ -3806,10 +3806,10 @@ __metadata: version: 7.0.0 resolution: "rehype-raw@npm:7.0.0" dependencies: - "@types/hast": ^3.0.0 - hast-util-raw: ^9.0.0 - vfile: ^6.0.0 - checksum: f9e28dcbf4c6c7d91a97c10a840310f18ef3268aa45abb3e0428b6b191ff3c4fa8f753b910d768588a2dac5c7da7e557b4ddc3f1b6cd252e8d20cb62d60c65ed + "@types/hast": "npm:^3.0.0" + hast-util-raw: "npm:^9.0.0" + vfile: "npm:^6.0.0" + checksum: 65dd5809f95410ca5056efe50f5b16cb08a69c0785c6d4ec80c9280487efbaec81d342084f6cfdca5624134c1c4018705d97c37b5c0a21d9625ed8a3c88700f1 languageName: node linkType: hard @@ -3817,11 +3817,11 @@ __metadata: version: 3.0.1 resolution: "remark-gfm@npm:3.0.1" dependencies: - "@types/mdast": ^3.0.0 - mdast-util-gfm: ^2.0.0 - micromark-extension-gfm: ^2.0.0 - unified: ^10.0.0 - checksum: 02254f74d67b3419c2c9cf62d799ec35f6c6cd74db25c001361751991552a7ce86049a972107bff8122d85d15ae4a8d1a0618f3bc01a7df837af021ae9b2a04e + "@types/mdast": "npm:^3.0.0" + mdast-util-gfm: "npm:^2.0.0" + micromark-extension-gfm: "npm:^2.0.0" + unified: "npm:^10.0.0" + checksum: 8ec301f5fb1f52c548b5a6d7ca6a3422d55db73cd703f147c979d16dca003f065181f55404d6f3f49d33f1faca3fe56ae731ed7fe0acc00cd945a8e605f155f2 languageName: node linkType: hard @@ -3829,11 +3829,11 @@ __metadata: version: 5.1.1 resolution: "remark-math@npm:5.1.1" dependencies: - "@types/mdast": ^3.0.0 - mdast-util-math: ^2.0.0 - micromark-extension-math: ^2.0.0 - unified: ^10.0.0 - checksum: 1baec5862e36bbb8645144a73740e63a3aed2d547a64b731bb1a0162658319679378fd70f3d3d534655c2a0fcc3f941adba31cca33808e134fa22202a5d314f9 + "@types/mdast": "npm:^3.0.0" + mdast-util-math: "npm:^2.0.0" + micromark-extension-math: "npm:^2.0.0" + unified: "npm:^10.0.0" + checksum: 51566e37333aec866c65b708b9eccf25e6045b8277860497dc1e56e3ffe2eb3562e2f96d9ce9cb81450543ebab1cf96c349ca4ee20cf4cf0b8f31ad9578d2cc0 languageName: node linkType: hard @@ -3841,9 +3841,9 @@ __metadata: version: 2.3.0 resolution: "remark-mdx@npm:2.3.0" dependencies: - mdast-util-mdx: ^2.0.0 - micromark-extension-mdxjs: ^1.0.0 - checksum: 98486986c5b6f6a8321eb2f3b13c70fcd5644821428c77b7bfeb5ee5d4605b9761b322b2f6b531e83883cd2d5bc7bc4623427149aee00e1eba012f538b3d5627 + mdast-util-mdx: "npm:^2.0.0" + micromark-extension-mdxjs: "npm:^1.0.0" + checksum: 811419d0ec041f671e916798dbb305c07152469f1fe7a7a1388d0a13040170caba6d5e6c1719e90f9da5de2b989f97f6562fc4f65a7379b3ba1f90ad3e521765 languageName: node linkType: hard @@ -3851,10 +3851,10 @@ __metadata: version: 10.0.2 resolution: "remark-parse@npm:10.0.2" dependencies: - "@types/mdast": ^3.0.0 - mdast-util-from-markdown: ^1.0.0 - unified: ^10.0.0 - checksum: 5041b4b44725f377e69986e02f8f072ae2222db5e7d3b6c80829756b842e811343ffc2069cae1f958a96bfa36104ab91a57d7d7e2f0cef521e210ab8c614d5c7 + "@types/mdast": "npm:^3.0.0" + mdast-util-from-markdown: "npm:^1.0.0" + unified: "npm:^10.0.0" + checksum: 184f48956734a58a7e157d83233e532ea289697f5ecebd1fb082cce79e6d9f5b1d3da72462356b2b3b5843643cee890280ffe3d21c9d4ad2d7d5e20bb5de7f14 languageName: node linkType: hard @@ -3862,11 +3862,11 @@ __metadata: version: 2.0.1 resolution: "remark-reading-time@npm:2.0.1" dependencies: - estree-util-is-identifier-name: ^2.0.0 - estree-util-value-to-estree: ^1.3.0 - reading-time: ^1.3.0 - unist-util-visit: ^3.1.0 - checksum: 330b2c65d95f2ac3c1fd938fa9e163c5dda5b4aa8c5c554556797f6d1a7d1b7dfb3b580451f30cace04c0a23b4803a42b6827a2627f5a1c479b06b9570f86a80 + estree-util-is-identifier-name: "npm:^2.0.0" + estree-util-value-to-estree: "npm:^1.3.0" + reading-time: "npm:^1.3.0" + unist-util-visit: "npm:^3.1.0" + checksum: 81d408c4391b4f6814aa50e35a217b7c17734a4677fe804a4ccdccef45705c2b57df79e0c4b87fcd387912567ef72509e4f34c6d292f1448384a72643d2d8c17 languageName: node linkType: hard @@ -3874,32 +3874,32 @@ __metadata: version: 10.1.0 resolution: "remark-rehype@npm:10.1.0" dependencies: - "@types/hast": ^2.0.0 - "@types/mdast": ^3.0.0 - mdast-util-to-hast: ^12.1.0 - unified: ^10.0.0 - checksum: b9ac8acff3383b204dfdc2599d0bdf86e6ca7e837033209584af2e6aaa6a9013e519a379afa3201299798cab7298c8f4b388de118c312c67234c133318aec084 + "@types/hast": "npm:^2.0.0" + "@types/mdast": "npm:^3.0.0" + mdast-util-to-hast: "npm:^12.1.0" + unified: "npm:^10.0.0" + checksum: cf765b639d16872404b50d5945df0ba825d14f1150397dde804e7d9e2e856a7b7343c4dc3796c85e7c18ca84f3c989bd40e476bd194fc00a5a870e8a64ec30d9 languageName: node linkType: hard "remove-accents@npm:0.4.2": version: 0.4.2 resolution: "remove-accents@npm:0.4.2" - checksum: 84a6988555dea24115e2d1954db99509588d43fe55a1590f0b5894802776f7b488b3151c37ceb9e4f4b646f26b80b7325dcea2fae58bc3865df146e1fa606711 + checksum: 25d5c84f1355be60b42f8ad8a1ba29c2413dead138a9e2a88633e4fc94a1b953afe306dd27479125aef231d267482c54d292e558b04ec100fb9adf063ccbf75a languageName: node linkType: hard "robust-predicates@npm:^3.0.0": version: 3.0.2 resolution: "robust-predicates@npm:3.0.2" - checksum: 36854c1321548ceca96d36ad9d6e0a5a512986029ec6929ad6ed3ec1612c22cc8b46cc72d2c5674af42e8074a119d793f6f0ea3a5b51373e3ab926c64b172d7a + checksum: 88bd7d45a6b89e88da2631d4c111aaaf0443de4d7078e9ab7f732245790a3645cf79bf91882a9740dbc959cf56ba75d5dced5bf2259410f8b6de19fd240cd08c languageName: node linkType: hard "rw@npm:1": version: 1.3.3 resolution: "rw@npm:1.3.3" - checksum: c20d82421f5a71c86a13f76121b751553a99cd4a70ea27db86f9b23f33db941f3f06019c30f60d50c356d0bd674c8e74764ac146ea55e217c091bde6fba82aa3 + checksum: e90985d64777a00f4ab5f8c0bfea2fb5645c6bda5238840afa339c8a4f86f776e8ce83731155643a7425a0b27ce89077dab27b2f57519996ba4d2fe54cac1941 languageName: node linkType: hard @@ -3907,15 +3907,15 @@ __metadata: version: 1.8.1 resolution: "sade@npm:1.8.1" dependencies: - mri: ^1.1.0 - checksum: 0756e5b04c51ccdc8221ebffd1548d0ce5a783a44a0fa9017a026659b97d632913e78f7dca59f2496aa996a0be0b0c322afd87ca72ccd909406f49dbffa0f45d + mri: "npm:^1.1.0" + checksum: 1c67ba03c94083e0ae307ff5564ecb86c2104c0f558042fdaa40ea0054f91a63a9783f14069870f2f784336adabb70f90f22a84dc457b5a25e859aaadefe0910 languageName: node linkType: hard "safer-buffer@npm:>= 2.1.2 < 3.0.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" - checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0 + checksum: 7eaf7a0cf37cc27b42fb3ef6a9b1df6e93a1c6d98c6c6702b02fe262d5fcbd89db63320793b99b21cb5348097d0a53de81bd5f4e8b86e20cc9412e3f1cfb4e83 languageName: node linkType: hard @@ -3923,8 +3923,8 @@ __metadata: version: 0.23.0 resolution: "scheduler@npm:0.23.0" dependencies: - loose-envify: ^1.1.0 - checksum: d79192eeaa12abef860c195ea45d37cbf2bbf5f66e3c4dcd16f54a7da53b17788a70d109ee3d3dde1a0fd50e6a8fc171f4300356c5aee4fc0171de526bf35f8a + loose-envify: "npm:^1.1.0" + checksum: 0c4557aa37bafca44ff21dc0ea7c92e2dbcb298bc62eae92b29a39b029134f02fb23917d6ebc8b1fa536b4184934314c20d8864d156a9f6357f3398aaf7bfda8 languageName: node linkType: hard @@ -3932,8 +3932,8 @@ __metadata: version: 3.1.0 resolution: "scroll-into-view-if-needed@npm:3.1.0" dependencies: - compute-scroll-into-view: ^3.0.2 - checksum: edc0f68dc170d0c153ce4ae2929cbdfaf3426d1fc842b67d5f092c5ec38fbb8408e6cb8467f86d8dfb23de3f77a2f2a9e79cbf80bc49b35a39f3092e18b4c3d5 + compute-scroll-into-view: "npm:^3.0.2" + checksum: 1ea10d84b79db592493ed22563e307a4eaf858527b4c345e70cc26b9c51383636edda31a09d383541fafb5b50a94e59384d85351662cb7d6e5d70805c0d18798 languageName: node linkType: hard @@ -3941,9 +3941,9 @@ __metadata: version: 1.0.0 resolution: "section-matter@npm:1.0.0" dependencies: - extend-shallow: ^2.0.1 - kind-of: ^6.0.0 - checksum: 3cc4131705493b2955729b075dcf562359bba66183debb0332752dc9cad35616f6da7a23e42b6cab45cd2e4bb5cda113e9e84c8f05aee77adb6b0289a0229101 + extend-shallow: "npm:^2.0.1" + kind-of: "npm:^6.0.0" + checksum: cedfda3a9238f66942d92531fe043dd134702a462cdc9e254cd6aa418c66ca0d229900e4da78ffd1a07051e7b239251c4dc4748e9d1c76bf41a37bff7a478556 languageName: node linkType: hard @@ -3951,10 +3951,10 @@ __metadata: version: 7.5.4 resolution: "semver@npm:7.5.4" dependencies: - lru-cache: ^6.0.0 + lru-cache: "npm:^6.0.0" bin: semver: bin/semver.js - checksum: 12d8ad952fa353b0995bf180cdac205a4068b759a140e5d3c608317098b3575ac2f1e09182206bf2eb26120e1c0ed8fb92c48c592f6099680de56bb071423ca3 + checksum: 985dec0d372370229a262c737063860fabd4a1c730662c1ea3200a2f649117761a42184c96df62a0e885e76fbd5dace41087d6c1ac0351b13c0df5d6bcb1b5ac languageName: node linkType: hard @@ -3969,18 +3969,18 @@ __metadata: version: 1.1.1 resolution: "set-function-length@npm:1.1.1" dependencies: - define-data-property: ^1.1.1 - get-intrinsic: ^1.2.1 - gopd: ^1.0.1 - has-property-descriptors: ^1.0.0 - checksum: c131d7569cd7e110cafdfbfbb0557249b538477624dfac4fc18c376d879672fa52563b74029ca01f8f4583a8acb35bb1e873d573a24edb80d978a7ee607c6e06 + define-data-property: "npm:^1.1.1" + get-intrinsic: "npm:^1.2.1" + gopd: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.0" + checksum: 745ed1d7dc69a6185e0820082fe73838ab3dfd01e75cce83a41e4c1d68bbf34bc5fb38f32ded542ae0b557536b5d2781594499b5dcd19e7db138e06292a76c7b languageName: node linkType: hard "setimmediate@npm:^1.0.5": version: 1.0.5 resolution: "setimmediate@npm:1.0.5" - checksum: c9a6f2c5b51a2dabdc0247db9c46460152ffc62ee139f3157440bd48e7c59425093f42719ac1d7931f054f153e2d26cf37dfeb8da17a794a58198a2705e527fd + checksum: 76e3f5d7f4b581b6100ff819761f04a984fa3f3990e72a6554b57188ded53efce2d3d6c0932c10f810b7c59414f85e2ab3c11521877d1dea1ce0b56dc906f485 languageName: node linkType: hard @@ -3988,7 +3988,7 @@ __metadata: version: 1.2.0 resolution: "shebang-command@npm:1.2.0" dependencies: - shebang-regex: ^1.0.0 + shebang-regex: "npm:^1.0.0" checksum: 9eed1750301e622961ba5d588af2212505e96770ec376a37ab678f965795e995ade7ed44910f5d3d3cb5e10165a1847f52d3348c64e146b8be922f7707958908 languageName: node linkType: hard @@ -4004,11 +4004,11 @@ __metadata: version: 0.14.5 resolution: "shiki@npm:0.14.5" dependencies: - ansi-sequence-parser: ^1.1.0 - jsonc-parser: ^3.2.0 - vscode-oniguruma: ^1.7.0 - vscode-textmate: ^8.0.0 - checksum: 41d847817cfc9bb6d8bf190316896698d250303656546446659cc02caed8dcc171b10cd113bb5da82425b51d0032e87aafcdc36c3dd61dadc123170b438da736 + ansi-sequence-parser: "npm:^1.1.0" + jsonc-parser: "npm:^3.2.0" + vscode-oniguruma: "npm:^1.7.0" + vscode-textmate: "npm:^8.0.0" + checksum: 02c96cf7efcf71679e5c0d58eb91fea6a680251cadcbb15b7a3ccff38004382d3a6d0fdf4a336c2ecda6f6beb50eb9658d3ce91111196621df4fb18bbe4d334e languageName: node linkType: hard @@ -4016,10 +4016,10 @@ __metadata: version: 1.0.4 resolution: "side-channel@npm:1.0.4" dependencies: - call-bind: ^1.0.0 - get-intrinsic: ^1.0.2 - object-inspect: ^1.9.0 - checksum: 351e41b947079c10bd0858364f32bb3a7379514c399edb64ab3dce683933483fc63fb5e4efe0a15a2e8a7e3c436b6a91736ddb8d8c6591b0460a24bb4a1ee245 + call-bind: "npm:^1.0.0" + get-intrinsic: "npm:^1.0.2" + object-inspect: "npm:^1.9.0" + checksum: c4998d9fc530b0e75a7fd791ad868fdc42846f072734f9080ff55cc8dc7d3899abcda24fd896aa6648c3ab7021b4bb478073eb4f44dfd55bce9714bc1a7c5d45 languageName: node linkType: hard @@ -4040,7 +4040,7 @@ __metadata: "smart-buffer@npm:^4.2.0": version: 4.2.0 resolution: "smart-buffer@npm:4.2.0" - checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b + checksum: 927484aa0b1640fd9473cee3e0a0bcad6fce93fd7bbc18bac9ad0c33686f5d2e2c422fba24b5899c184524af01e11dd2bd051c2bf2b07e47aff8ca72cbfc60d2 languageName: node linkType: hard @@ -4048,8 +4048,8 @@ __metadata: version: 1.5.0 resolution: "snack-content@npm:1.5.0" dependencies: - semver: ^7.3.4 - checksum: 7a22db80fad2f978e0656cf9df2d421e50664369b14d71692dc2eb8e4627eb8f655c0cbbad2a609d7ed471930d8060cd47d2ce88d75650d87d4a3dc08e22c217 + semver: "npm:^7.3.4" + checksum: 825a97c34c4db5218c3c1959263d3097d9d3b0e56bf46565dd480f36b4159f852e466bd0557f2ee60703d64cab5a03f7c45819a9b5d5046358f52f4cca95c239 languageName: node linkType: hard @@ -4057,18 +4057,18 @@ __metadata: version: 4.2.0 resolution: "snack-sdk@npm:4.2.0" dependencies: - diff: ^4.0.2 - fetch-ponyfill: ^7.0.0 - lodash: ^4.17.20 - nanoid: ^3.1.20 - nullthrows: ^1.1.1 - pubnub: ^7.2.0 - semver: ^7.3.4 - snack-content: ~1.5.0 - socket.io-client: ~4.5.4 - ua-parser-js: ^0.7.22 - validate-npm-package-name: ^3.0.0 - checksum: 8929cbaad1cc0a228fba918dfbbf48e800bffba029e3ee48ede5a52aaf052de0e0c733ed4ffc61b43ebd05ca3abc0bb55c8883bde3bf977dbf3a11acd4cfe5ca + diff: "npm:^4.0.2" + fetch-ponyfill: "npm:^7.0.0" + lodash: "npm:^4.17.20" + nanoid: "npm:^3.1.20" + nullthrows: "npm:^1.1.1" + pubnub: "npm:^7.2.0" + semver: "npm:^7.3.4" + snack-content: "npm:~1.5.0" + socket.io-client: "npm:~4.5.4" + ua-parser-js: "npm:^0.7.22" + validate-npm-package-name: "npm:^3.0.0" + checksum: 66dacaccf972d7331e226bf9c36e1c0d55b7f211c1ea3d7c727c7916b29d5120081271b74ac222e991ceefde8437f6ac9b83c01a4553fc07e7ac5404b074950d languageName: node linkType: hard @@ -4076,11 +4076,11 @@ __metadata: version: 4.5.4 resolution: "socket.io-client@npm:4.5.4" dependencies: - "@socket.io/component-emitter": ~3.1.0 - debug: ~4.3.2 - engine.io-client: ~6.2.3 - socket.io-parser: ~4.2.1 - checksum: 8320ce4a96e9c28318b17037e412746b1d612cfba653c3c321c0e49042f0be9aeb8de67d5861e45e9aad32407bb4dd204bfe199565d78d5320aaf65253371b7f + "@socket.io/component-emitter": "npm:~3.1.0" + debug: "npm:~4.3.2" + engine.io-client: "npm:~6.2.3" + socket.io-parser: "npm:~4.2.1" + checksum: 40bcf0e9ac37d2bf33c224757202836490ffd3c5f2e14d09ad558ed521ad736bdafe112f5c96af48aad4a19b1b53e3b7cf554b41fe74f222890b8394ad29ea42 languageName: node linkType: hard @@ -4088,9 +4088,9 @@ __metadata: version: 4.2.4 resolution: "socket.io-parser@npm:4.2.4" dependencies: - "@socket.io/component-emitter": ~3.1.0 - debug: ~4.3.1 - checksum: 61540ef99af33e6a562b9effe0fad769bcb7ec6a301aba5a64b3a8bccb611a0abdbe25f469933ab80072582006a78ca136bf0ad8adff9c77c9953581285e2263 + "@socket.io/component-emitter": "npm:~3.1.0" + debug: "npm:~4.3.1" + checksum: 4be500a9ff7e79c50ec25af11048a3ed34b4c003a9500d656786a1e5bceae68421a8394cf3eb0aa9041f85f36c1a9a737617f4aee91a42ab4ce16ffb2aa0c89c languageName: node linkType: hard @@ -4098,10 +4098,10 @@ __metadata: version: 8.0.2 resolution: "socks-proxy-agent@npm:8.0.2" dependencies: - agent-base: ^7.0.2 - debug: ^4.3.4 - socks: ^2.7.1 - checksum: 4fb165df08f1f380881dcd887b3cdfdc1aba3797c76c1e9f51d29048be6e494c5b06d68e7aea2e23df4572428f27a3ec22b3d7c75c570c5346507433899a4b6d + agent-base: "npm:^7.0.2" + debug: "npm:^4.3.4" + socks: "npm:^2.7.1" + checksum: ea727734bd5b2567597aa0eda14149b3b9674bb44df5937bbb9815280c1586994de734d965e61f1dd45661183d7b41f115fb9e432d631287c9063864cfcc2ecc languageName: node linkType: hard @@ -4109,9 +4109,9 @@ __metadata: version: 2.7.1 resolution: "socks@npm:2.7.1" dependencies: - ip: ^2.0.0 - smart-buffer: ^4.2.0 - checksum: 259d9e3e8e1c9809a7f5c32238c3d4d2a36b39b83851d0f573bfde5f21c4b1288417ce1af06af1452569cd1eb0841169afd4998f0e04ba04656f6b7f0e46d748 + ip: "npm:^2.0.0" + smart-buffer: "npm:^4.2.0" + checksum: 5074f7d6a13b3155fa655191df1c7e7a48ce3234b8ccf99afa2ccb56591c195e75e8bb78486f8e9ea8168e95a29573cbaad55b2b5e195160ae4d2ea6811ba833 languageName: node linkType: hard @@ -4119,7 +4119,7 @@ __metadata: version: 5.0.0 resolution: "sort-keys@npm:5.0.0" dependencies: - is-plain-obj: ^4.0.0 + is-plain-obj: "npm:^4.0.0" checksum: 9c0b7a468312075be03770b260b2cc0e5d55149025e564edaed41c9ff619199698aad6712a6fe4bbc75c541efb081276ac6bbd4cf2723d742f272f7a8fe354f5 languageName: node linkType: hard @@ -4127,21 +4127,21 @@ __metadata: "source-map-js@npm:^1.0.2": version: 1.0.2 resolution: "source-map-js@npm:1.0.2" - checksum: c049a7fc4deb9a7e9b481ae3d424cc793cb4845daa690bc5a05d428bf41bf231ced49b4cf0c9e77f9d42fdb3d20d6187619fc586605f5eabe995a316da8d377c + checksum: 38e2d2dd18d2e331522001fc51b54127ef4a5d473f53b1349c5cca2123562400e0986648b52e9407e348eaaed53bce49248b6e2641e6d793ca57cb2c360d6d51 languageName: node linkType: hard "source-map@npm:^0.7.0": version: 0.7.4 resolution: "source-map@npm:0.7.4" - checksum: 01cc5a74b1f0e1d626a58d36ad6898ea820567e87f18dfc9d24a9843a351aaa2ec09b87422589906d6ff1deed29693e176194dc88bcae7c9a852dc74b311dbf5 + checksum: a0f7c9b797eda93139842fd28648e868a9a03ea0ad0d9fa6602a0c1f17b7fb6a7dcca00c144476cccaeaae5042e99a285723b1a201e844ad67221bf5d428f1dc languageName: node linkType: hard "source-map@npm:~0.6.1": version: 0.6.1 resolution: "source-map@npm:0.6.1" - checksum: 59ce8640cf3f3124f64ac289012c2b8bd377c238e316fb323ea22fbfe83da07d81e000071d7242cad7a23cd91c7de98e4df8830ec3f133cb6133a5f6e9f67bc2 + checksum: 59ef7462f1c29d502b3057e822cdbdae0b0e565302c4dd1a95e11e793d8d9d62006cdc10e0fd99163ca33ff2071360cf50ee13f90440806e7ed57d81cba2f7ff languageName: node linkType: hard @@ -4155,14 +4155,14 @@ __metadata: "sprintf-js@npm:~1.0.2": version: 1.0.3 resolution: "sprintf-js@npm:1.0.3" - checksum: 19d79aec211f09b99ec3099b5b2ae2f6e9cdefe50bc91ac4c69144b6d3928a640bb6ae5b3def70c2e85a2c3d9f5ec2719921e3a59d3ca3ef4b2fd1a4656a0df3 + checksum: c34828732ab8509c2741e5fd1af6b767c3daf2c642f267788f933a65b1614943c282e74c4284f4fa749c264b18ee016a0d37a3e5b73aee446da46277d3a85daa languageName: node linkType: hard "streamsearch@npm:^1.1.0": version: 1.1.0 resolution: "streamsearch@npm:1.1.0" - checksum: 1cce16cea8405d7a233d32ca5e00a00169cc0e19fbc02aa839959985f267335d435c07f96e5e0edd0eadc6d39c98d5435fb5bbbdefc62c41834eadc5622ad942 + checksum: 612c2b2a7dbcc859f74597112f80a42cbe4d448d03da790d5b7b39673c1197dd3789e91cd67210353e58857395d32c1e955a9041c4e6d5bae723436b3ed9ed14 languageName: node linkType: hard @@ -4170,9 +4170,9 @@ __metadata: version: 4.0.3 resolution: "stringify-entities@npm:4.0.3" dependencies: - character-entities-html4: ^2.0.0 - character-entities-legacy: ^3.0.0 - checksum: 59e8f523b403bf7d415690e72ae52982decd6ea5426bd8b3f5c66225ddde73e766c0c0d91627df082d0794e30b19dd907ffb5864cef3602e4098d6777d7ca3c2 + character-entities-html4: "npm:^2.0.0" + character-entities-legacy: "npm:^3.0.0" + checksum: 3dc827fbcc9b5feb252d942a21caca89297272d857260448174ca264018726308b48e02ad492f89a2b5faebf7241be56f5a4d9cbf050cfaf5db607d6e5ceb9e7 languageName: node linkType: hard @@ -4194,8 +4194,8 @@ __metadata: version: 0.4.4 resolution: "style-to-object@npm:0.4.4" dependencies: - inline-style-parser: 0.1.1 - checksum: 41656c06f93ac0a7ac260ebc2f9d09a8bd74b8ec1836f358cc58e169235835a3a356977891d2ebbd76f0e08a53616929069199f9cce543214d3dc98346e19c9a + inline-style-parser: "npm:0.1.1" + checksum: 3101c0de5325e8051c3665125468af73578eba4712b818458b9f7ed732d7800f3b34e088e5c16f60070644db25316fa5a5b8b69e7f3414c879401eb074a2211e languageName: node linkType: hard @@ -4203,7 +4203,7 @@ __metadata: version: 5.1.1 resolution: "styled-jsx@npm:5.1.1" dependencies: - client-only: 0.0.1 + client-only: "npm:0.0.1" peerDependencies: react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" peerDependenciesMeta: @@ -4211,21 +4211,21 @@ __metadata: optional: true babel-plugin-macros: optional: true - checksum: 523a33b38603492547e861b98e29c873939b04e15fbe5ef16132c6f1e15958126647983c7d4675325038b428a5e91183d996e90141b18bdd1bbadf6e2c45b2fa + checksum: 4f6a5d0010770fdeea1183d919d528fd46c484e23c0535ef3e1dd49488116f639c594f3bd4440e3bc8a8686c9f8d53c5761599870ff039ede11a5c3bfe08a4be languageName: node linkType: hard "styleq@npm:^0.1.3": version: 0.1.3 resolution: "styleq@npm:0.1.3" - checksum: 14a8d23abd914166a9b4bd04ed753bd91363f0e029ee4a94ec2c7dc37d3213fe01fceee22dc655288da3ae89f5dc01cec42d5e2b58478b0dea33bf5bdf509be1 + checksum: 9a75a1b635f8ebf5c0fdc3ffb56f466254f29aa1b2962ab2af776015d3b3bb1732a53edcda0c9ac9b97be96c22459db768feac0d61c1a319cc3954011ca9dcd8 languageName: node linkType: hard "stylis@npm:^4.1.3": version: 4.3.0 resolution: "stylis@npm:4.3.0" - checksum: 6120de3f03eacf3b5adc8e7919c4cca991089156a6badc5248752a3088106afaaf74996211a6817a7760ebeadca09004048eea31875bd8d4df51386365c50025 + checksum: 54eb1a13a9ec394a01a2e1a5ca8f856b96ecd8b85b8c04a24c0ff0aa8416798a6a1e9555f6a4345b6f088d03424f5a4376ea093d0ec73e419698415a3c8b59d0 languageName: node linkType: hard @@ -4233,17 +4233,17 @@ __metadata: version: 8.1.2 resolution: "superagent@npm:8.1.2" dependencies: - component-emitter: ^1.3.0 - cookiejar: ^2.1.4 - debug: ^4.3.4 - fast-safe-stringify: ^2.1.1 - form-data: ^4.0.0 - formidable: ^2.1.2 - methods: ^1.1.2 - mime: 2.6.0 - qs: ^6.11.0 - semver: ^7.3.8 - checksum: f3601c5ccae34d5ba684a03703394b5d25931f4ae2e1e31a1de809f88a9400e997ece037f9accf148a21c408f950dc829db1e4e23576a7f9fe0efa79fd5c9d2f + component-emitter: "npm:^1.3.0" + cookiejar: "npm:^2.1.4" + debug: "npm:^4.3.4" + fast-safe-stringify: "npm:^2.1.1" + form-data: "npm:^4.0.0" + formidable: "npm:^2.1.2" + methods: "npm:^1.1.2" + mime: "npm:2.6.0" + qs: "npm:^6.11.0" + semver: "npm:^7.3.8" + checksum: 33d0072e051baf91c7d68131c70682a0650dd1bd0b8dfb6f88e5bdfcb02e18cc2b42a66e44b32fd405ac6bcf5fd57c6e267bf80e2a8ce57a18166a9d3a78f57d languageName: node linkType: hard @@ -4251,8 +4251,8 @@ __metadata: version: 4.5.0 resolution: "supports-color@npm:4.5.0" dependencies: - has-flag: ^2.0.0 - checksum: 6da4f498d5c71e8619f06e4a11d16f044105faf7590b5b005fc84933fbefdf72c2b4e5b7174c66da6ddc68e7f6ef56cc960a5ebd6f2d542d910e259e61b02335 + has-flag: "npm:^2.0.0" + checksum: 91cff376dbcef9c9da309ffb44404295cf0705fc63e04c0092f700b01908492ee263d24a04ae210b83e9039b09be4c52e7059e3556a1eb4211e39572cf18bc97 languageName: node linkType: hard @@ -4260,13 +4260,13 @@ __metadata: version: 3.5.3 resolution: "title@npm:3.5.3" dependencies: - arg: 1.0.0 - chalk: 2.3.0 - clipboardy: 1.2.2 - titleize: 1.0.0 + arg: "npm:1.0.0" + chalk: "npm:2.3.0" + clipboardy: "npm:1.2.2" + titleize: "npm:1.0.0" bin: title: bin/title.js - checksum: 3fcd2fffcd12292d2015b7bdacf092cb9ed716b2e0187fdaa5ab0556f636c795f23a698e8a3d2f87ab647df35ba7b4e0ddfc1675b4676c535fb877daafb0dae5 + checksum: 363a03473a4641696182c8d2da25efd2f81574faf5e25ccd72ab022f5a2bdd39da93186b46524b513a2af1ab3d28b8d37816c0245cf956a63fa3b71b7a64675c languageName: node linkType: hard @@ -4280,21 +4280,21 @@ __metadata: "tr46@npm:~0.0.3": version: 0.0.3 resolution: "tr46@npm:0.0.3" - checksum: 726321c5eaf41b5002e17ffbd1fb7245999a073e8979085dacd47c4b4e8068ff5777142fc6726d6ca1fd2ff16921b48788b87225cbc57c72636f6efa8efbffe3 + checksum: 8f1f5aa6cb232f9e1bdc86f485f916b7aa38caee8a778b378ffec0b70d9307873f253f5cbadbe2955ece2ac5c83d0dc14a77513166ccd0a0c7fe197e21396695 languageName: node linkType: hard "trim-lines@npm:^3.0.0": version: 3.0.1 resolution: "trim-lines@npm:3.0.1" - checksum: e241da104682a0e0d807222cc1496b92e716af4db7a002f4aeff33ae6a0024fef93165d49eab11aa07c71e1347c42d46563f91dfaa4d3fb945aa535cdead53ed + checksum: 7a1325e4ce8ff7e9e52007600e9c9862a166d0db1f1cf0c9357e359e410acab1278fcd91cc279dfa5123fc37b69f080de02f471e91dbbc61b155b9ca92597929 languageName: node linkType: hard "trough@npm:^2.0.0": version: 2.1.0 resolution: "trough@npm:2.1.0" - checksum: a577bb561c2b401cc0e1d9e188fcfcdf63b09b151ff56a668da12197fe97cac15e3d77d5b51f426ccfd94255744a9118e9e9935afe81a3644fa1be9783c82886 + checksum: 6ca8a545d0080ce40c3d0e1e44cf9aa0484a272a91f3a5a02ac433bf1e3ed16983d39da0a77a96467237f7f983cfbf19abc5ab1994c27cde9417e21a2aec76cc languageName: node linkType: hard @@ -4308,14 +4308,14 @@ __metadata: "tslib@npm:^2.0.1, tslib@npm:^2.4.0": version: 2.6.2 resolution: "tslib@npm:2.6.2" - checksum: 329ea56123005922f39642318e3d1f0f8265d1e7fcb92c633e0809521da75eeaca28d2cf96d7248229deb40e5c19adf408259f4b9640afd20d13aecc1430f3ad + checksum: bd26c22d36736513980091a1e356378e8b662ded04204453d353a7f34a4c21ed0afc59b5f90719d4ba756e581a162ecbf93118dc9c6be5acf70aa309188166ca languageName: node linkType: hard "type-fest@npm:^1.0.2": version: 1.4.0 resolution: "type-fest@npm:1.4.0" - checksum: b011c3388665b097ae6a109a437a04d6f61d81b7357f74cbcb02246f2f5bd72b888ae33631b99871388122ba0a87f4ff1c94078e7119ff22c70e52c0ff828201 + checksum: 89875c247564601c2650bacad5ff80b859007fbdb6c9e43713ae3ffa3f584552eea60f33711dd762e16496a1ab4debd409822627be14097d9a17e39c49db591a languageName: node linkType: hard @@ -4325,31 +4325,31 @@ __metadata: bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: ee000bc26848147ad423b581bd250075662a354d84f0e06eb76d3b892328d8d4440b7487b5a83e851b12b255f55d71835b008a66cbf8f255a11e4400159237db + checksum: 458f7220ab11e0fc191514cc41be1707645ec9a8c2d609448a448e18c522cef9646f58728f6811185a4c35613dacdf6c98cf8965c88b3541d0288c47291e4300 languageName: node linkType: hard -"typescript@patch:typescript@^4.9.3#~builtin": +"typescript@patch:typescript@npm%3A^4.9.3#optional!builtin": version: 4.9.5 - resolution: "typescript@patch:typescript@npm%3A4.9.5#~builtin::version=4.9.5&hash=289587" + resolution: "typescript@patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=289587" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 1f8f3b6aaea19f0f67cba79057674ba580438a7db55057eb89cc06950483c5d632115c14077f6663ea76fd09fce3c190e6414bb98582ec80aa5a4eaf345d5b68 + checksum: 5659316360b5cc2d6f5931b346401fa534107b68b60179cf14970e27978f0936c1d5c46f4b5b8175f8cba0430f522b3ce355b4b724c0ea36ce6c0347fab25afd languageName: node linkType: hard "ua-parser-js@npm:^0.7.22": version: 0.7.37 resolution: "ua-parser-js@npm:0.7.37" - checksum: 9e91a66171aa16c74680cfac84af6ed7ecdeb508ff7c90a55222f56c63172da2d98d2478763e9469c940415fe29c45a56ae51fec1c19a498e7a3b293f7b3b874 + checksum: a50e8f7ee5618822670443b05e33ab184e3186d3f88c4761cdf65cf264219c626b74ee6cf96146091d9738c61412afe2788eeda75ef98f71a69a81495abe20ff languageName: node linkType: hard "ua-parser-js@npm:^1.0.35": version: 1.0.37 resolution: "ua-parser-js@npm:1.0.37" - checksum: 4d481c720d523366d7762dc8a46a1b58967d979aacf786f9ceceb1cd767de069f64a4bdffb63956294f1c0696eb465ddb950f28ba90571709e33521b4bd75e07 + checksum: 56508f2428ebac64382c4d41da14189e5013e3e2a5f5918aff4bee3ba77df1f4eaad6f81f90c24999f1cf12cc1596764684497fec07e0ff5182ce9a323a8c05b languageName: node linkType: hard @@ -4357,14 +4357,14 @@ __metadata: version: 10.1.2 resolution: "unified@npm:10.1.2" dependencies: - "@types/unist": ^2.0.0 - bail: ^2.0.0 - extend: ^3.0.0 - is-buffer: ^2.0.0 - is-plain-obj: ^4.0.0 - trough: ^2.0.0 - vfile: ^5.0.0 - checksum: 053e7c65ede644607f87bd625a299e4b709869d2f76ec8138569e6e886903b6988b21cd9699e471eda42bee189527be0a9dac05936f1d069a5e65d0125d5d756 + "@types/unist": "npm:^2.0.0" + bail: "npm:^2.0.0" + extend: "npm:^3.0.0" + is-buffer: "npm:^2.0.0" + is-plain-obj: "npm:^4.0.0" + trough: "npm:^2.0.0" + vfile: "npm:^5.0.0" + checksum: 6cffebcefc3290be26d25a58ba714cda943142782baf320fddf374ca3a319bdaabb006f96df4be17b8b367f5e6f6e113b1027c52ef66154846a7a110550f6688 languageName: node linkType: hard @@ -4372,16 +4372,16 @@ __metadata: version: 5.0.0 resolution: "unist-util-find-after@npm:5.0.0" dependencies: - "@types/unist": ^3.0.0 - unist-util-is: ^6.0.0 - checksum: e64bd5ebee7ac021cf990bf33e9ec29fc6452159187d4a7fa0f77334bea8e378fea7a7fb0bcf957300b2ffdba902ff25b62c165fc8b86309613da35ad793ada0 + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + checksum: 7960f98f99ae3c2585a8e16b23f338e5851b7c0f40c3e82e2aef9ddb4887ae63d4cb3906e793dc8ff8242f252425ef846a4e59afa1d3d91ebf0ac84732df2509 languageName: node linkType: hard "unist-util-generated@npm:^2.0.0": version: 2.0.1 resolution: "unist-util-generated@npm:2.0.1" - checksum: 6221ad0571dcc9c8964d6b054f39ef6571ed59cc0ce3e88ae97ea1c70afe76b46412a5ffaa91f96814644ac8477e23fb1b477d71f8d70e625728c5258f5c0d99 + checksum: 0528642918683f1518ab7a50cf8c900df10d8717b58bd2fb05aab29393b1c4050fd2740792f18d477b52f942bfb0e6e00023e985c0a7bd63859d3d836b56e4ce languageName: node linkType: hard @@ -4389,8 +4389,8 @@ __metadata: version: 5.2.1 resolution: "unist-util-is@npm:5.2.1" dependencies: - "@types/unist": ^2.0.0 - checksum: ae76fdc3d35352cd92f1bedc3a0d407c3b9c42599a52ab9141fe89bdd786b51f0ec5a2ab68b93fb532e239457cae62f7e39eaa80229e1cb94875da2eafcbe5c4 + "@types/unist": "npm:^2.0.0" + checksum: c10f6c07aad4f4830ffa8ea82b42a2c8d5cd36c7555e27889e5fee953040af321e4e6f4e52c4edb606604de75d7230a5f4bc7b71b8ac3e874a26ab595c2057e4 languageName: node linkType: hard @@ -4398,8 +4398,8 @@ __metadata: version: 6.0.0 resolution: "unist-util-is@npm:6.0.0" dependencies: - "@types/unist": ^3.0.0 - checksum: f630a925126594af9993b091cf807b86811371e465b5049a6283e08537d3e6ba0f7e248e1e7dab52cfe33f9002606acef093441137181b327f6fe504884b20e2 + "@types/unist": "npm:^3.0.0" + checksum: edd6a93fb2255addf4b9eeb304c1da63c62179aef793169dd64ab955cf2f6814885fe25f95f8105893e3562dead348af535718d7a84333826e0491c04bf42511 languageName: node linkType: hard @@ -4407,7 +4407,7 @@ __metadata: version: 1.1.2 resolution: "unist-util-position-from-estree@npm:1.1.2" dependencies: - "@types/unist": ^2.0.0 + "@types/unist": "npm:^2.0.0" checksum: e3f4060e2a9e894c6ed63489c5a7cb58ff282e5dae9497cbc2073033ca74d6e412af4d4d342c97aea08d997c908b8bce2fe43a2062aafc2bb3f266533016588b languageName: node linkType: hard @@ -4416,8 +4416,8 @@ __metadata: version: 4.0.4 resolution: "unist-util-position@npm:4.0.4" dependencies: - "@types/unist": ^2.0.0 - checksum: e7487b6cec9365299695e3379ded270a1717074fa11fd2407c9b934fb08db6fe1d9077ddeaf877ecf1813665f8ccded5171693d3d9a7a01a125ec5cdd5e88691 + "@types/unist": "npm:^2.0.0" + checksum: aedbc5d112cdab85b752a7dacd8f04233655f00e08948a42f6e49682467c6fc0c531c91acc71188da5ac8acfea9e67d72bc054127d1c4b76b31792cfb5132423 languageName: node linkType: hard @@ -4425,8 +4425,8 @@ __metadata: version: 5.0.0 resolution: "unist-util-position@npm:5.0.0" dependencies: - "@types/unist": ^3.0.0 - checksum: f89b27989b19f07878de9579cd8db2aa0194c8360db69e2c99bd2124a480d79c08f04b73a64daf01a8fb3af7cba65ff4b45a0b978ca243226084ad5f5d441dde + "@types/unist": "npm:^3.0.0" + checksum: 89d4da00e74618d7562ac7ac288961df9bcd4ccca6df3b5a90650f018eceb6b95de6e771e88bdbef46cc9d96861d456abe57b7ad1108921e0feb67c6292aa29d languageName: node linkType: hard @@ -4434,9 +4434,9 @@ __metadata: version: 4.0.2 resolution: "unist-util-remove-position@npm:4.0.2" dependencies: - "@types/unist": ^2.0.0 - unist-util-visit: ^4.0.0 - checksum: 989831da913d09a82a99ed9b47b78471b6409bde95942cde47e09da54b7736516f17e3c7e026af468684c1efcec5fb52df363381b2f9dc7fd96ce791c5a2fa4a + "@types/unist": "npm:^2.0.0" + unist-util-visit: "npm:^4.0.0" + checksum: b809693035a110a597b8ce7dc64c49dd8b8e0f4cb57e51850b1677ac7f3b831620992ab921df1272f08135cb5f507c2c495c2f1e9531c51511102cce4119ff5d languageName: node linkType: hard @@ -4444,9 +4444,9 @@ __metadata: version: 5.0.0 resolution: "unist-util-remove-position@npm:5.0.0" dependencies: - "@types/unist": ^3.0.0 - unist-util-visit: ^5.0.0 - checksum: 8aabdb9d0e3e744141bc123d8f87b90835d521209ad3c6c4619d403b324537152f0b8f20dda839b40c3aa0abfbf1828b3635a7a8bb159c3ed469e743023510ee + "@types/unist": "npm:^3.0.0" + unist-util-visit: "npm:^5.0.0" + checksum: 4d89dc25e2091f9d47d92552145a26bf0e4a32d6b453e9cacac7742d730ada186ee1b820579fee3eeaa31e119850c2cb82f8b5898f977a636d7220e998626967 languageName: node linkType: hard @@ -4454,10 +4454,10 @@ __metadata: version: 4.0.0 resolution: "unist-util-remove@npm:4.0.0" dependencies: - "@types/unist": ^3.0.0 - unist-util-is: ^6.0.0 - unist-util-visit-parents: ^6.0.0 - checksum: 684db988a486782ae3e721d03bd502f9aaa5ef9d55c688da7cdc777864210faa02552d8a40def856d7c31c281816cdd8b9562ea86d4eec9f122c6aaf5a799f26 + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 24a84224720f4c2d2ffce1d570c00b83ef545de80ec32a246698feff880446af6c410fc94deec4b4daafe09851d59f17cd1770e20f66d68092e3cd60c2147fb8 languageName: node linkType: hard @@ -4465,8 +4465,8 @@ __metadata: version: 3.0.3 resolution: "unist-util-stringify-position@npm:3.0.3" dependencies: - "@types/unist": ^2.0.0 - checksum: dbd66c15183607ca942a2b1b7a9f6a5996f91c0d30cf8966fb88955a02349d9eefd3974e9010ee67e71175d784c5a9fea915b0aa0b0df99dcb921b95c4c9e124 + "@types/unist": "npm:^2.0.0" + checksum: 07913e4fd77fe57d95f8b2f771354f97a29082229c1ad14ceedce6bbc77b2d784ca8296563335471cdca97915e548204bd6f098ea5b808b822b4b54087662cfb languageName: node linkType: hard @@ -4474,8 +4474,8 @@ __metadata: version: 4.0.0 resolution: "unist-util-stringify-position@npm:4.0.0" dependencies: - "@types/unist": ^3.0.0 - checksum: e2e7aee4b92ddb64d314b4ac89eef7a46e4c829cbd3ee4aee516d100772b490eb6b4974f653ba0717a0071ca6ea0770bf22b0a2ea62c65fcba1d071285e96324 + "@types/unist": "npm:^3.0.0" + checksum: d15c88aca7a31902d95d5b5355bbe09583cf6f6ff6e59e134ef76c76d3c30bc1021f2d7ea5b7897c6d0858ed5f3770c1b19de9c78274f50d72f95a0d05f1af71 languageName: node linkType: hard @@ -4483,9 +4483,9 @@ __metadata: version: 4.1.1 resolution: "unist-util-visit-parents@npm:4.1.1" dependencies: - "@types/unist": ^2.0.0 - unist-util-is: ^5.0.0 - checksum: 49d78984a6dd858a989f849d2b4330c8a04d1ee99c0e9920a5e37668cf847dab95db77a3bf0c8aaeb3e66abeae12e2d454949ec401614efef377d8f82d215662 + "@types/unist": "npm:^2.0.0" + unist-util-is: "npm:^5.0.0" + checksum: 7c0828b384fe00c82b398d12c641d1fc4da77665a50af44c732d0b6c0d6af2874ffaf6326f3a0f89c34065712d2468510b1b0e4b8807a292f2baefdeadc8469c languageName: node linkType: hard @@ -4493,9 +4493,9 @@ __metadata: version: 5.1.3 resolution: "unist-util-visit-parents@npm:5.1.3" dependencies: - "@types/unist": ^2.0.0 - unist-util-is: ^5.0.0 - checksum: 8ecada5978994f846b64658cf13b4092cd78dea39e1ba2f5090a5de842ba4852712c02351a8ae95250c64f864635e7b02aedf3b4a093552bb30cf1bd160efbaa + "@types/unist": "npm:^2.0.0" + unist-util-is: "npm:^5.0.0" + checksum: 5381fc57a129d478d983b988d86b72a1266d6f91fc608562b00bfa76596128d6e4d1c2b26ced64d96e55eb5d27d620081b4ee9703979bab63e1210789e781372 languageName: node linkType: hard @@ -4503,9 +4503,9 @@ __metadata: version: 6.0.1 resolution: "unist-util-visit-parents@npm:6.0.1" dependencies: - "@types/unist": ^3.0.0 - unist-util-is: ^6.0.0 - checksum: 08927647c579f63b91aafcbec9966dc4a7d0af1e5e26fc69f4e3e6a01215084835a2321b06f3cbe7bf7914a852830fc1439f0fc3d7153d8804ac3ef851ddfa20 + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + checksum: 645b3cbc5e923bc692b1eb1a9ca17bffc5aabc25e6090ff3f1489bff8effd1890b28f7a09dc853cb6a7fa0da8581bfebc9b670a68b53c4c086cb9610dfd37701 languageName: node linkType: hard @@ -4513,9 +4513,9 @@ __metadata: version: 3.1.0 resolution: "unist-util-visit@npm:3.1.0" dependencies: - "@types/unist": ^2.0.0 - unist-util-is: ^5.0.0 - unist-util-visit-parents: ^4.0.0 + "@types/unist": "npm:^2.0.0" + unist-util-is: "npm:^5.0.0" + unist-util-visit-parents: "npm:^4.0.0" checksum: c37dbc0c5509f85f3abdf46d927b3dd11e6c419159771b1f1a5ce446d36ac993d04b087e28bc6173a172e0fbe9d77e997f120029b2b449766ebe55b6f6e0cc2c languageName: node linkType: hard @@ -4524,10 +4524,10 @@ __metadata: version: 4.1.2 resolution: "unist-util-visit@npm:4.1.2" dependencies: - "@types/unist": ^2.0.0 - unist-util-is: ^5.0.0 - unist-util-visit-parents: ^5.1.1 - checksum: 95a34e3f7b5b2d4b68fd722b6229972099eb97b6df18913eda44a5c11df8b1e27efe7206dd7b88c4ed244a48c474a5b2e2629ab79558ff9eb936840295549cee + "@types/unist": "npm:^2.0.0" + unist-util-is: "npm:^5.0.0" + unist-util-visit-parents: "npm:^5.1.1" + checksum: e3b20c6b1f5ae1b7b40bbf9be49103a342d98fad98bdf958110c20d72e5923bd3f12966b6702459bc61ab832facb5af418a79af87cefa7a8a41b892369678b13 languageName: node linkType: hard @@ -4535,10 +4535,10 @@ __metadata: version: 5.0.0 resolution: "unist-util-visit@npm:5.0.0" dependencies: - "@types/unist": ^3.0.0 - unist-util-is: ^6.0.0 - unist-util-visit-parents: ^6.0.0 - checksum: 9ec42e618e7e5d0202f3c191cd30791b51641285732767ee2e6bcd035931032e3c1b29093f4d7fd0c79175bbc1f26f24f26ee49770d32be76f8730a652a857e6 + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: f2bbde23641e9ade7640358c06ddeec0f38342322eb8e7819d9ee380b0f859d25d084dde22bf63db0280b3b2f36575f15aa1d6c23acf276c91c2493cf799e3b0 languageName: node linkType: hard @@ -4554,7 +4554,7 @@ __metadata: resolution: "uuid@npm:9.0.1" bin: uuid: dist/bin/uuid - checksum: 39931f6da74e307f51c0fb463dc2462807531dc80760a9bff1e35af4316131b4fc3203d16da60ae33f07fdca5b56f3f1dd662da0c99fea9aaeab2004780cc5f4 + checksum: 9d0b6adb72b736e36f2b1b53da0d559125ba3e39d913b6072f6f033e0c87835b414f0836b45bcfaf2bdf698f92297fea1c3cc19b0b258bc182c9c43cc0fab9f2 languageName: node linkType: hard @@ -4562,13 +4562,13 @@ __metadata: version: 0.5.6 resolution: "uvu@npm:0.5.6" dependencies: - dequal: ^2.0.0 - diff: ^5.0.0 - kleur: ^4.0.3 - sade: ^1.7.3 + dequal: "npm:^2.0.0" + diff: "npm:^5.0.0" + kleur: "npm:^4.0.3" + sade: "npm:^1.7.3" bin: uvu: bin.js - checksum: 09460a37975627de9fcad396e5078fb844d01aaf64a6399ebfcfd9e55f1c2037539b47611e8631f89be07656962af0cf48c334993db82b9ae9c3d25ce3862168 + checksum: 66ba25afc6732249877f9f4f8b6146f3aaa97538c51cf498f55825d602c33dbb903e02c7e1547cbca6bdfbb609e07eb7ea758b5156002ac2dd5072f00606f8d9 languageName: node linkType: hard @@ -4576,8 +4576,8 @@ __metadata: version: 3.0.0 resolution: "validate-npm-package-name@npm:3.0.0" dependencies: - builtins: ^1.0.3 - checksum: ce4c68207abfb22c05eedb09ff97adbcedc80304a235a0844f5344f1fd5086aa80e4dbec5684d6094e26e35065277b765c1caef68bcea66b9056761eddb22967 + builtins: "npm:^1.0.3" + checksum: 6f89bcc91bb0d46e3c756eec2fd33887eeb76c85d20e5d3e452b69fe3ffbd37062704a4e8422735ea82d69fd963451b4f85501a4dc856f384138411ec42608fa languageName: node linkType: hard @@ -4585,8 +4585,8 @@ __metadata: version: 5.0.2 resolution: "vfile-location@npm:5.0.2" dependencies: - "@types/unist": ^3.0.0 - vfile: ^6.0.0 + "@types/unist": "npm:^3.0.0" + vfile: "npm:^6.0.0" checksum: b61c048cedad3555b4f007f390412c6503f58a6a130b58badf4ee340c87e0d7421e9c86bbc1494c57dedfccadb60f5176cc60ba3098209d99fb3a3d8804e4c38 languageName: node linkType: hard @@ -4595,9 +4595,9 @@ __metadata: version: 3.0.1 resolution: "vfile-matter@npm:3.0.1" dependencies: - "@types/js-yaml": ^4.0.0 - is-buffer: ^2.0.0 - js-yaml: ^4.0.0 + "@types/js-yaml": "npm:^4.0.0" + is-buffer: "npm:^2.0.0" + js-yaml: "npm:^4.0.0" checksum: ced55ed7d79291b6c9321557d685b3c0072321f3de44790b72005f1e232394dd9ae68311b99286e327ec4f1d168d5bada986eaa1d475757e17b7e24150f503ac languageName: node linkType: hard @@ -4606,9 +4606,9 @@ __metadata: version: 3.1.4 resolution: "vfile-message@npm:3.1.4" dependencies: - "@types/unist": ^2.0.0 - unist-util-stringify-position: ^3.0.0 - checksum: d0ee7da1973ad76513c274e7912adbed4d08d180eaa34e6bd40bc82459f4b7bc50fcaff41556135e3339995575eac5f6f709aba9332b80f775618ea4880a1367 + "@types/unist": "npm:^2.0.0" + unist-util-stringify-position: "npm:^3.0.0" + checksum: 423ca87f4427a403e4688d7ec663a2e6add694eefac47c945746463377428c7553bc613058841f1da83e18b68af886d3dd11cb96d582b5cc3c98e11efb7e55e9 languageName: node linkType: hard @@ -4616,9 +4616,9 @@ __metadata: version: 4.0.2 resolution: "vfile-message@npm:4.0.2" dependencies: - "@types/unist": ^3.0.0 - unist-util-stringify-position: ^4.0.0 - checksum: 964e7e119f4c0e0270fc269119c41c96da20afa01acb7c9809a88365c8e0c64aa692fafbd952669382b978002ecd7ad31ef4446d85e8a22cdb62f6df20186c2d + "@types/unist": "npm:^3.0.0" + unist-util-stringify-position: "npm:^4.0.0" + checksum: 1a5a72bf4945a7103750a3001bd979088ce42f6a01efa8590e68b2425e1afc61ddc5c76f2d3c4a7053b40332b24c09982b68743223e99281158fe727135719fc languageName: node linkType: hard @@ -4626,11 +4626,11 @@ __metadata: version: 5.3.7 resolution: "vfile@npm:5.3.7" dependencies: - "@types/unist": ^2.0.0 - is-buffer: ^2.0.0 - unist-util-stringify-position: ^3.0.0 - vfile-message: ^3.0.0 - checksum: 642cce703afc186dbe7cabf698dc954c70146e853491086f5da39e1ce850676fc96b169fcf7898aa3ff245e9313aeec40da93acd1e1fcc0c146dc4f6308b4ef9 + "@types/unist": "npm:^2.0.0" + is-buffer: "npm:^2.0.0" + unist-util-stringify-position: "npm:^3.0.0" + vfile-message: "npm:^3.0.0" + checksum: d8f59b419d4c83b3ed24f500cf02393149b728f8803f88519c18fe0733f62544fa9ab0d8425a8bc7835181d848b9ce29c014168dc45af72f416074bbe475f643 languageName: node linkType: hard @@ -4638,24 +4638,24 @@ __metadata: version: 6.0.1 resolution: "vfile@npm:6.0.1" dependencies: - "@types/unist": ^3.0.0 - unist-util-stringify-position: ^4.0.0 - vfile-message: ^4.0.0 - checksum: 05ccee73aeb00402bc8a5d0708af299e9f4a33f5132805449099295085e3ca3b0d018328bad9ff44cf2e6f4cd364f1d558d3fb9b394243a25b2739207edcb0ed + "@types/unist": "npm:^3.0.0" + unist-util-stringify-position: "npm:^4.0.0" + vfile-message: "npm:^4.0.0" + checksum: 7f8412f9ce7709d3be4041fd68a159e2cf96f9c9a4f095bcb18d1561009757b8efb37b71d0ae087e5202fe0e3b3162aae0adf92e30e2448a45645912c23c4ab2 languageName: node linkType: hard "vscode-oniguruma@npm:^1.7.0": version: 1.7.0 resolution: "vscode-oniguruma@npm:1.7.0" - checksum: 53519d91d90593e6fb080260892e87d447e9b200c4964d766772b5053f5699066539d92100f77f1302c91e8fc5d9c772fbe40fe4c90f3d411a96d5a9b1e63f42 + checksum: 7da9d21459f9788544b258a5fd1b9752df6edd8b406a19eea0209c6bf76507d5717277016799301c4da0d536095f9ca8c06afd1ab8f4001189090c804ca4814e languageName: node linkType: hard "vscode-textmate@npm:^8.0.0": version: 8.0.0 resolution: "vscode-textmate@npm:8.0.0" - checksum: 127780dfea89559d70b8326df6ec344cfd701312dd7f3f591a718693812b7852c30b6715e3cfc8b3200a4e2515b4c96f0843c0eacc0a3020969b5de262c2a4bb + checksum: 9fa7d66d6042cb090d116c2d8820d34c8870cfcbaed6e404da89f66b899970ed0ac47b59a2e30fc40a25af5414822bb3ea27974f714e9b91910d69c894be95f7 languageName: node linkType: hard @@ -4663,9 +4663,9 @@ __metadata: version: 2.4.0 resolution: "watchpack@npm:2.4.0" dependencies: - glob-to-regexp: ^0.4.1 - graceful-fs: ^4.1.2 - checksum: 23d4bc58634dbe13b86093e01c6a68d8096028b664ab7139d58f0c37d962d549a940e98f2f201cecdabd6f9c340338dc73ef8bf094a2249ef582f35183d1a131 + glob-to-regexp: "npm:^0.4.1" + graceful-fs: "npm:^4.1.2" + checksum: 4280b45bc4b5d45d5579113f2a4af93b67ae1b9607cc3d86ae41cdd53ead10db5d9dc3237f24256d05ef88b28c69a02712f78e434cb7ecc8edaca134a56e8cab languageName: node linkType: hard @@ -4679,14 +4679,14 @@ __metadata: "web-worker@npm:^1.2.0": version: 1.2.0 resolution: "web-worker@npm:1.2.0" - checksum: 1bb28348ddcf9b2e7c62c5fd02e49a84098795856cd905456de957271bba288e9618941cf69d8960f0a7ae81f5dfb74b427c0634be47ec69e3e955c4ec5213be + checksum: 61a9d046504891ea25754eae08053a4f62a52798a5612039da9df92aca6c52c47eb0e2e35dbbe4c7ba1ba9622ad5783479ddd2e391ae6aed1f99c9b278309c53 languageName: node linkType: hard "webidl-conversions@npm:^3.0.0": version: 3.0.1 resolution: "webidl-conversions@npm:3.0.1" - checksum: c92a0a6ab95314bde9c32e1d0a6dfac83b578f8fa5f21e675bc2706ed6981bc26b7eb7e6a1fab158e5ce4adf9caa4a0aee49a52505d4d13c7be545f15021b17c + checksum: b65b9f8d6854572a84a5c69615152b63371395f0c5dcd6729c45789052296df54314db2bc3e977df41705eacb8bc79c247cee139a63fa695192f95816ed528ad languageName: node linkType: hard @@ -4694,9 +4694,9 @@ __metadata: version: 5.0.0 resolution: "whatwg-url@npm:5.0.0" dependencies: - tr46: ~0.0.3 - webidl-conversions: ^3.0.0 - checksum: b8daed4ad3356cc4899048a15b2c143a9aed0dfae1f611ebd55073310c7b910f522ad75d727346ad64203d7e6c79ef25eafd465f4d12775ca44b90fa82ed9e2c + tr46: "npm:~0.0.3" + webidl-conversions: "npm:^3.0.0" + checksum: f95adbc1e80820828b45cc671d97da7cd5e4ef9deb426c31bcd5ab00dc7103042291613b3ef3caec0a2335ed09e0d5ed026c940755dbb6d404e2b27f940fdf07 languageName: node linkType: hard @@ -4704,10 +4704,10 @@ __metadata: version: 1.3.1 resolution: "which@npm:1.3.1" dependencies: - isexe: ^2.0.0 + isexe: "npm:^2.0.0" bin: which: ./bin/which - checksum: f2e185c6242244b8426c9df1510e86629192d93c1a986a7d2a591f2c24869e7ffd03d6dac07ca863b2e4c06f59a4cc9916c585b72ee9fa1aa609d0124df15e04 + checksum: 549dcf1752f3ee7fbb64f5af2eead4b9a2f482108b7de3e85c781d6c26d8cf6a52d37cfbe0642a155fa6470483fe892661a859c03157f24c669cf115f3bbab5e languageName: node linkType: hard @@ -4729,28 +4729,28 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: c869296ccb45f218ac6d32f8f614cd85b50a21fd434caf11646008eef92173be53490810c5c23aea31bc527902261fbfd7b062197eea341b26128d4be56a85e4 + checksum: 84f3e90c35f466c86bf37fb15dbb9fbcdab5f4cf9485e563b2a75fd76b03c4813bb130e03991eb2bb325761bf7a0ad845e3ced7499a5e4e206e08bf93fac7bb7 languageName: node linkType: hard "xmlhttprequest-ssl@npm:~2.0.0": version: 2.0.0 resolution: "xmlhttprequest-ssl@npm:2.0.0" - checksum: 1e98df67f004fec15754392a131343ea92e6ab5ac4d77e842378c5c4e4fd5b6a9134b169d96842cc19422d77b1606b8df84a5685562b3b698cb68441636f827e + checksum: 3c2edfce0c49c7a494ed16c87e6897c9e3eba29763a5505526de83ddefd195d224fa5cdf41092298c99cd6ee473c9f259a0679f6ff3b8a9535dcd09900db91f9 languageName: node linkType: hard "yallist@npm:^2.1.2": version: 2.1.2 resolution: "yallist@npm:2.1.2" - checksum: 9ba99409209f485b6fcb970330908a6d41fa1c933f75e08250316cce19383179a6b70a7e0721b89672ebb6199cc377bf3e432f55100da6a7d6e11902b0a642cb + checksum: 75fc7bee4821f52d1c6e6021b91b3e079276f1a9ce0ad58da3c76b79a7e47d6f276d35e206a96ac16c1cf48daee38a8bb3af0b1522a3d11c8ffe18f898828832 languageName: node linkType: hard "yallist@npm:^4.0.0": version: 4.0.0 resolution: "yallist@npm:4.0.0" - checksum: 343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5 + checksum: 4cb02b42b8a93b5cf50caf5d8e9beb409400a8a4d85e83bb0685c1457e9ac0b7a00819e9f5991ac25ffabb56a78e2f017c1acc010b3a1babfe6de690ba531abd languageName: node linkType: hard @@ -4764,7 +4764,7 @@ __metadata: "zod@npm:^3.22.3": version: 3.22.4 resolution: "zod@npm:3.22.4" - checksum: 80bfd7f8039b24fddeb0718a2ec7c02aa9856e4838d6aa4864335a047b6b37a3273b191ef335bf0b2002e5c514ef261ffcda5a589fb084a48c336ffc4cdbab7f + checksum: 73622ca36a916f785cf528fe612a884b3e0f183dbe6b33365a7d0fc92abdbedf7804c5e2bd8df0a278e1472106d46674281397a3dd800fa9031dc3429758c6ac languageName: node linkType: hard diff --git a/src/Carousel.tsx b/src/components/Carousel.tsx similarity index 88% rename from src/Carousel.tsx rename to src/components/Carousel.tsx index 408584b6..409a34c9 100644 --- a/src/Carousel.tsx +++ b/src/components/Carousel.tsx @@ -3,19 +3,20 @@ import { StyleSheet } from "react-native"; import { GestureHandlerRootView } from "react-native-gesture-handler"; import { runOnJS, useDerivedValue } from "react-native-reanimated"; -import { useAutoPlay } from "./hooks/useAutoPlay"; -import { useCarouselController } from "./hooks/useCarouselController"; -import { useCommonVariables } from "./hooks/useCommonVariables"; -import { useInitProps } from "./hooks/useInitProps"; -import { useLayoutConfig } from "./hooks/useLayoutConfig"; -import { useOnProgressChange } from "./hooks/useOnProgressChange"; -import { usePropsErrorBoundary } from "./hooks/usePropsErrorBoundary"; -import { useVisibleRanges } from "./hooks/useVisibleRanges"; -import { BaseLayout } from "./layouts/BaseLayout"; import { ScrollViewGesture } from "./ScrollViewGesture"; -import { CTX } from "./store"; -import type { ICarouselInstance, TCarouselProps } from "./types"; -import { computedRealIndexWithAutoFillData } from "./utils/computedWithAutoFillData"; + +import { useAutoPlay } from "../hooks/useAutoPlay"; +import { useCarouselController } from "../hooks/useCarouselController"; +import { useCommonVariables } from "../hooks/useCommonVariables"; +import { useInitProps } from "../hooks/useInitProps"; +import { useLayoutConfig } from "../hooks/useLayoutConfig"; +import { useOnProgressChange } from "../hooks/useOnProgressChange"; +import { usePropsErrorBoundary } from "../hooks/usePropsErrorBoundary"; +import { useVisibleRanges } from "../hooks/useVisibleRanges"; +import { BaseLayout } from "../layouts/BaseLayout"; +import { CTX } from "../store"; +import type { ICarouselInstance, TCarouselProps } from "../types"; +import { computedRealIndexWithAutoFillData } from "../utils/computed-with-auto-fill-data"; const Carousel = React.forwardRef>( (_props, ref) => { diff --git a/src/LazyView.tsx b/src/components/LazyView.tsx similarity index 100% rename from src/LazyView.tsx rename to src/components/LazyView.tsx diff --git a/src/ScrollViewGesture.tsx b/src/components/ScrollViewGesture.tsx similarity index 92% rename from src/ScrollViewGesture.tsx rename to src/components/ScrollViewGesture.tsx index e2f4dace..7de7b3f1 100644 --- a/src/ScrollViewGesture.tsx +++ b/src/components/ScrollViewGesture.tsx @@ -17,10 +17,10 @@ import Animated, { withDecay, } from "react-native-reanimated"; -import { Easing } from "./constants"; -import { CTX } from "./store"; -import type { WithTimingAnimation } from "./types"; -import { dealWithAnimation } from "./utils/dealWithAnimation"; +import { Easing } from "../constants"; +import { CTX } from "../store"; +import type { WithTimingAnimation } from "../types"; +import { dealWithAnimation } from "../utils/deal-with-animation"; interface Props { size: number @@ -37,6 +37,7 @@ interface Props { const IScrollViewGesture: React.FC> = (props) => { const { props: { + onConfigurePanGesture, vertical, pagingEnabled, snapEnabled, @@ -126,13 +127,13 @@ const IScrollViewGesture: React.FC> = (props) => { finalTranslation = origin; } else { - /** - * The page size is the same as the item size. - * If direction is vertical, the page size is the height of the item. - * If direction is horizontal, the page size is the width of the item. - * - * `page size` equals to `size` variable. - * */ + /** + * The page size is the same as the item size. + * If direction is vertical, the page size is the height of the item. + * If direction is horizontal, the page size is the width of the item. + * + * `page size` equals to `size` variable. + * */ if (pagingEnabled) { // distance with direction const offset = -(scrollEndTranslation.value >= 0 ? 1 : -1); // 1 or -1 @@ -359,10 +360,22 @@ const IScrollViewGesture: React.FC> = (props) => { onScrollEnd, ]); - const gesture = useMemo(() => Gesture.Pan().onBegin(onGestureBegin).onUpdate(onGestureUpdate).onEnd(onGestureFinish), [ + const gesture = useMemo(() => { + const gesture = Gesture.Pan() + .onBegin(onGestureBegin) + .onUpdate(onGestureUpdate) + .onEnd(onGestureFinish); + + if (onConfigurePanGesture) + onConfigurePanGesture(gesture); + + return gesture; + }, + [ onGestureBegin, onGestureUpdate, onGestureFinish, + onConfigurePanGesture, ]); const GestureContainer = enabled ? GestureDetector : React.Fragment; diff --git a/src/hooks/useCarouselController.tsx b/src/hooks/useCarouselController.tsx index a4bf32ff..ee230d32 100644 --- a/src/hooks/useCarouselController.tsx +++ b/src/hooks/useCarouselController.tsx @@ -12,9 +12,9 @@ import type { TCarouselProps, WithTimingAnimation, } from "../types"; -import { computedRealIndexWithAutoFillData, convertToSharedIndex } from "../utils/computedWithAutoFillData"; -import { dealWithAnimation } from "../utils/dealWithAnimation"; -import { handlerOffsetDirection } from "../utils/handlerOffsetDirection"; +import { computedRealIndexWithAutoFillData, convertToSharedIndex } from "../utils/computed-with-auto-fill-data"; +import { dealWithAnimation } from "../utils/deal-with-animation"; +import { handlerOffsetDirection } from "../utils/handleroffset-direction"; import { round } from "../utils/log"; interface IOpts { diff --git a/src/hooks/useCommonVariables.ts b/src/hooks/useCommonVariables.ts index f0201b9b..40d5fa87 100644 --- a/src/hooks/useCommonVariables.ts +++ b/src/hooks/useCommonVariables.ts @@ -2,10 +2,10 @@ import React from "react"; import type Animated from "react-native-reanimated"; import { useSharedValue, useAnimatedReaction } from "react-native-reanimated"; -import { computeNewIndexWhenDataChanges } from "./computeNewIndexWhenDataChanges"; import type { TInitializeCarouselProps } from "./useInitProps"; -import { handlerOffsetDirection } from "../utils/handlerOffsetDirection"; +import { computeNewIndexWhenDataChanges } from "../utils/computeNewIndexWhenDataChanges"; +import { handlerOffsetDirection } from "../utils/handleroffset-direction"; interface ICommonVariables { size: number diff --git a/src/hooks/useInitProps.ts b/src/hooks/useInitProps.ts index 1b1b176f..3e0d4e5e 100644 --- a/src/hooks/useInitProps.ts +++ b/src/hooks/useInitProps.ts @@ -1,7 +1,7 @@ import React from "react"; import type { TCarouselProps } from "../types"; -import { computedFillDataWithAutoFillData } from "../utils/computedWithAutoFillData"; +import { computedFillDataWithAutoFillData } from "../utils/computed-with-auto-fill-data"; type TGetRequiredProps

= Record< P, @@ -34,7 +34,6 @@ export function useInitProps( autoPlayInterval: _autoPlayInterval = 1000, scrollAnimationDuration = 500, style = {}, - panGestureHandlerProps = {}, autoFillData = true, // switchers enabled = true, @@ -88,7 +87,6 @@ export function useInitProps( autoPlayInterval, scrollAnimationDuration, style, - panGestureHandlerProps, pagingEnabled, snapEnabled, overscrollEnabled, diff --git a/src/hooks/useOnProgressChange.ts b/src/hooks/useOnProgressChange.ts index bbb4e378..6e9a0f31 100644 --- a/src/hooks/useOnProgressChange.ts +++ b/src/hooks/useOnProgressChange.ts @@ -5,7 +5,7 @@ import { } from "react-native-reanimated"; import type { TCarouselProps } from "../types"; -import { computedOffsetXValueWithAutoFillData } from "../utils/computedWithAutoFillData"; +import { computedOffsetXValueWithAutoFillData } from "../utils/computed-with-auto-fill-data"; export function useOnProgressChange( opts: { diff --git a/src/index.tsx b/src/index.tsx index dfaa88e5..4b5210f0 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,4 +1,4 @@ -import Carousel from "./Carousel"; +import Carousel from "./components/Carousel"; export type { TCarouselProps, ICarouselInstance, diff --git a/src/layouts/BaseLayout.tsx b/src/layouts/BaseLayout.tsx index 5447cef5..416b2db5 100644 --- a/src/layouts/BaseLayout.tsx +++ b/src/layouts/BaseLayout.tsx @@ -10,11 +10,11 @@ import Animated, { import type { ILayoutConfig } from "./stack"; +import { LazyView } from "../components/LazyView"; import { useCheckMounted } from "../hooks/useCheckMounted"; import type { IOpts } from "../hooks/useOffsetX"; import { useOffsetX } from "../hooks/useOffsetX"; import type { IVisibleRanges } from "../hooks/useVisibleRanges"; -import { LazyView } from "../LazyView"; import { CTX } from "../store"; export type TAnimationStyle = (value: number) => AnimatedStyleProp; diff --git a/src/layouts/ParallaxLayout.tsx b/src/layouts/ParallaxLayout.tsx index dbc0c858..65b6d67d 100644 --- a/src/layouts/ParallaxLayout.tsx +++ b/src/layouts/ParallaxLayout.tsx @@ -10,9 +10,9 @@ import Animated, { import type { ILayoutConfig } from "./parallax"; +import { LazyView } from "../components/LazyView"; import { useOffsetX } from "../hooks/useOffsetX"; import type { IVisibleRanges } from "../hooks/useVisibleRanges"; -import { LazyView } from "../LazyView"; import type { IComputedDirectionTypes } from "../types"; export const ParallaxLayout: React.FC = - | (T & - VP & { - /** - * Layout items vertically instead of horizontally - */ - vertical: true - /** - * Layout items vertically instead of horizontally - */ - /** - * Specified carousel container width. - */ - width?: number - height: number - }) - | (T & - HP & { - /** - * Layout items vertically instead of horizontally - */ - vertical?: false - /** - * Layout items vertically instead of horizontally - */ - /** - * Specified carousel container width. - */ - width: number - height?: number - }); + | (T & + VP & { + /** + * Layout items vertically instead of horizontally + */ + vertical: true + /** + * Layout items vertically instead of horizontally + */ + /** + * Specified carousel container width. + */ + width?: number + height: number + }) + | (T & + HP & { + /** + * Layout items vertically instead of horizontally + */ + vertical?: false + /** + * Layout items vertically instead of horizontally + */ + /** + * Specified carousel container width. + */ + width: number + height?: number + }); export interface CustomConfig { type?: "negative" | "positive" @@ -63,132 +63,130 @@ export type WithAnimation = WithSpringAnimation | WithTimingAnimation; export type TCarouselProps = { ref?: React.Ref /** - * The default animated value of the carousel. - */ + * The default animated value of the carousel. + */ defaultScrollOffsetValue?: SharedValue /** - * Carousel loop playback. - * @default true - */ + * Carousel loop playback. + * @default true + */ loop?: boolean /** - * Carousel items data set. - */ + * Carousel items data set. + */ data: T[] /** - * Auto fill data array to allow loop playback when the loop props is true. - * @default true - * @example - * [1] => [1, 1, 1] - * [1, 2] => [1, 2, 1, 2] - */ + * Auto fill data array to allow loop playback when the loop props is true. + * @default true + * @example + * [1] => [1, 1, 1] + * [1, 2] => [1, 2, 1, 2] + */ autoFillData?: boolean /** - * Default index - * @default 0 - */ + * Default index + * @default 0 + */ defaultIndex?: number /** - * Auto play - */ + * Auto play + */ autoPlay?: boolean /** - * Auto play - * @description reverse playback - */ + * Auto play + * @description reverse playback + */ autoPlayReverse?: boolean /** - * Auto play - * @description playback interval - */ + * Auto play + * @description playback interval + */ autoPlayInterval?: number /** - * Time a scroll animation takes to finish - * @default 500 (ms) - */ + * Time a scroll animation takes to finish + * @default 500 (ms) + */ scrollAnimationDuration?: number /** - * Carousel container style - */ + * Carousel container style + */ style?: StyleProp /** - * PanGestureHandler props - */ - panGestureHandlerProps?: Partial< - Omit - > - /** - * Determines the maximum number of items will respond to pan gesture events, - * windowSize={11} will active visible item plus up to 5 items above and 5 below the viewpor, - * Reducing this number will reduce the calculation of the animation value and may improve performance. - * @default 0 all items will respond to pan gesture events. - */ + * PanGesture config + */ + onConfigurePanGesture?: (panGesture: PanGesture) => void + /** + * Determines the maximum number of items will respond to pan gesture events, + * windowSize={11} will active visible item plus up to 5 items above and 5 below the viewpor, + * Reducing this number will reduce the calculation of the animation value and may improve performance. + * @default 0 all items will respond to pan gesture events. + */ windowSize?: number /** - * When true, the scroll view stops on multiples of the scroll view's size when scrolling. - * @default true - */ + * When true, the scroll view stops on multiples of the scroll view's size when scrolling. + * @default true + */ pagingEnabled?: boolean /** - * If enabled, releasing the touch will scroll to the nearest item. - * valid when pagingEnabled=false - * @default true - */ + * If enabled, releasing the touch will scroll to the nearest item. + * valid when pagingEnabled=false + * @default true + */ snapEnabled?: boolean /** - * If enabled, items will scroll to the first placement when scrolling past the edge rather than closing to the last. (previous conditions: loop=false) - * @default true - */ + * If enabled, items will scroll to the first placement when scrolling past the edge rather than closing to the last. (previous conditions: loop=false) + * @default true + */ overscrollEnabled?: boolean /** - * If false, Carousel will not respond to any gestures. - * @default true - */ + * If false, Carousel will not respond to any gestures. + * @default true + */ enabled?: boolean /** - * Specifies the scrolling animation effect. - */ + * Specifies the scrolling animation effect. + */ withAnimation?: WithAnimation /** - * Used to locate this view in end-to-end tests. - */ + * Used to locate this view in end-to-end tests. + */ testID?: string /** - * Maximum offset value for once scroll. - * props.vertical = true => maxScrollDistancePerSwipeY - * props.vertical = false => maxScrollDistancePerSwipeX - * */ + * Maximum offset value for once scroll. + * props.vertical = true => maxScrollDistancePerSwipeY + * props.vertical = false => maxScrollDistancePerSwipeX + * */ maxScrollDistancePerSwipe?: number /** - * Custom carousel config. - */ + * Custom carousel config. + */ customConfig?: () => CustomConfig /** - * Custom animations. - * Must use `worklet`, Details: https://docs.swmansion.com/react-native-reanimated/docs/2.2.0/worklets/ - */ + * Custom animations. + * Must use `worklet`, Details: https://docs.swmansion.com/react-native-reanimated/docs/2.2.0/worklets/ + */ customAnimation?: (value: number) => AnimatedStyleProp /** - * Render carousel item. - */ + * Render carousel item. + */ renderItem: CarouselRenderItem /** - * Callback fired when navigating to an item. - */ + * Callback fired when navigating to an item. + */ onSnapToItem?: (index: number) => void /** - * On scroll begin - */ + * On scroll begin + */ onScrollBegin?: () => void /** - * On scroll end - */ + * On scroll end + */ onScrollEnd?: (index: number) => void /** - * On progress change - * @param offsetProgress Total of offset distance (0 390 780 ...) - * @param absoluteProgress Convert to index (0 1 2 ...) - */ + * On progress change + * @param offsetProgress Total of offset distance (0 390 780 ...) + * @param absoluteProgress Convert to index (0 1 2 ...) + */ onProgressChange?: ( offsetProgress: number, absoluteProgress: number @@ -196,32 +194,32 @@ export type TCarouselProps = { // ============================== deprecated props ============================== /** - * If enabled, releasing the touch will scroll to the nearest item. - * valid when pagingEnabled=false - * @deprecated please use snapEnabled instead - */ + * If enabled, releasing the touch will scroll to the nearest item. + * valid when pagingEnabled=false + * @deprecated please use snapEnabled instead + */ enableSnap?: boolean } & (TParallaxModeProps | TStackModeProps); export interface ICarouselInstance { /** - * Scroll to previous item, it takes one optional argument (count), - * which allows you to specify how many items to cross - */ + * Scroll to previous item, it takes one optional argument (count), + * which allows you to specify how many items to cross + */ prev: (opts?: Omit) => void /** - * Scroll to next item, it takes one optional argument (count), - * which allows you to specify how many items to cross - */ + * Scroll to next item, it takes one optional argument (count), + * which allows you to specify how many items to cross + */ next: (opts?: Omit) => void /** - * Get current item index - */ + * Get current item index + */ getCurrentIndex: () => number /** - * Use value to scroll to a position where relative to the current position, - * scrollTo(-2) is equivalent to prev(2), scrollTo(2) is equivalent to next(2) - */ + * Use value to scroll to a position where relative to the current position, + * scrollTo(-2) is equivalent to prev(2), scrollTo(2) is equivalent to next(2) + */ scrollTo: (opts?: TCarouselActionOptions) => void } diff --git a/src/hooks/computeNewIndexWhenDataChanges.ts b/src/utils/computeNewIndexWhenDataChanges.ts similarity index 100% rename from src/hooks/computeNewIndexWhenDataChanges.ts rename to src/utils/computeNewIndexWhenDataChanges.ts diff --git a/src/utils/computedWithAutoFillData.ts b/src/utils/computed-with-auto-fill-data.ts similarity index 100% rename from src/utils/computedWithAutoFillData.ts rename to src/utils/computed-with-auto-fill-data.ts diff --git a/src/utils/dealWithAnimation.ts b/src/utils/deal-with-animation.ts similarity index 100% rename from src/utils/dealWithAnimation.ts rename to src/utils/deal-with-animation.ts diff --git a/src/utils/handlerOffsetDirection.ts b/src/utils/handleroffset-direction.ts similarity index 100% rename from src/utils/handlerOffsetDirection.ts rename to src/utils/handleroffset-direction.ts diff --git a/src/hooks/index.test.ts b/src/utils/index.test.ts similarity index 100% rename from src/hooks/index.test.ts rename to src/utils/index.test.ts