From 13c18c5b7ba093ca031073ccc6cba9fd1aa6f283 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Wed, 7 Dec 2022 14:20:07 -0800 Subject: [PATCH 01/29] fix(docs): Part measurements fix --- markdown/dev/reference/api/part/config/measurements/en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/markdown/dev/reference/api/part/config/measurements/en.md b/markdown/dev/reference/api/part/config/measurements/en.md index cf372d90d5a..3fbbf6aba7d 100644 --- a/markdown/dev/reference/api/part/config/measurements/en.md +++ b/markdown/dev/reference/api/part/config/measurements/en.md @@ -10,7 +10,7 @@ measurements respectively. ## measurements -The `measurements` property should hold the (named of the) measurements +The `measurements` property should hold the names of the measurements that are required to draft the current part. ```js @@ -23,7 +23,7 @@ const part = { ## optionalMeasurements -The `optionalMeasurements` property should hold the (named of the) measurements +The `optionalMeasurements` property should hold the names of the measurements that are optional to draft the current part. ```js From a687ca43d8d0ae2707a7b263f32141b94ff25fd1 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Wed, 7 Dec 2022 17:30:51 -0800 Subject: [PATCH 02/29] fix(docs): Update and correct Part Options docs --- .../api/part/config/options/counter/en.md | 2 +- .../api/part/config/options/deg/en.md | 9 +-- .../reference/api/part/config/options/en.md | 12 +++- .../api/part/config/options/extend/en.md | 59 ++++--------------- .../api/part/config/options/list/en.md | 11 ++-- .../api/part/config/options/mm/en.md | 8 ++- .../api/part/config/options/pct/en.md | 6 +- .../api/part/config/options/pct/fromabs/en.md | 2 +- .../api/part/config/options/pct/snap/en.md | 2 +- .../api/part/config/options/pct/toabs/en.md | 2 +- 10 files changed, 44 insertions(+), 69 deletions(-) diff --git a/markdown/dev/reference/api/part/config/options/counter/en.md b/markdown/dev/reference/api/part/config/options/counter/en.md index 63705bc0aee..3391fb18694 100644 --- a/markdown/dev/reference/api/part/config/options/counter/en.md +++ b/markdown/dev/reference/api/part/config/options/counter/en.md @@ -10,7 +10,7 @@ Counters are for integers only. Things like number of buttons and so on. Your counter option should be a plain object with these properties: - `count` : The default integer value -- `min` : The minimal integer value that's allowed +- `min` : The minimum integer value that's allowed - `max` : The maximum integer value that's allowed diff --git a/markdown/dev/reference/api/part/config/options/deg/en.md b/markdown/dev/reference/api/part/config/options/deg/en.md index 1145006007f..40e02dbb6aa 100644 --- a/markdown/dev/reference/api/part/config/options/deg/en.md +++ b/markdown/dev/reference/api/part/config/options/deg/en.md @@ -9,7 +9,7 @@ For angles, use a degree option. Your degree option should be a plain object with these properties: - `deg` : The default value in degrees -- `min` : The minimul that's allowed +- `min` : The minimum that's allowed - `max` : The maximum that's allowed @@ -28,9 +28,10 @@ more details. ```js options: { collarAngle: { - deg: 85, - min: 60 - max: 130 + deg: 85, + min: 60, + max: 130, + menu: 'fit' } } ``` diff --git a/markdown/dev/reference/api/part/config/options/en.md b/markdown/dev/reference/api/part/config/options/en.md index f4728b66628..78a7064f4db 100644 --- a/markdown/dev/reference/api/part/config/options/en.md +++ b/markdown/dev/reference/api/part/config/options/en.md @@ -9,7 +9,7 @@ list the part's options: const part = { name: 'example.front', options: { - chestEase: { pct: 12, min: 0, max: 25 }, + chestEase: { pct: 12, min: 0, max: 25, menu: 'fit' }, }, draft: ({ part }) => part } @@ -61,6 +61,14 @@ percentage options][snapped] instead. +## Specifying the menu + +The `menu` property is used to specify what menu name the option should be listed under in the Design Options section. +- Any arbitrary string can be used, and these names are used to organize options into logical sections. Examples of menu names that might be used include `fit`, `style`, and `advanced`. +- The menu property is optional. An option without a menu property will still exist but be hidden, not shown or accessible to the user in Design Options. +- Additional levels of submenus can be specified by using a menu name with text separated by "`.`" period characters. For example, `style.sleeves` can be used to have the option appear in the "Sleeves" submenu under the "Style" menu. +- Menus and options will be appear to the user in alphabetical order. The exception is the `advanced` menu which, if present, will be displayed at the end of all other menus. + [bool]: /reference/api/part/config/options/bool [const]: /reference/api/part/config/options/const [count]: /reference/api/part/config/options/counter @@ -68,4 +76,4 @@ percentage options][snapped] instead. [list]: /reference/api/part/config/options/list [pct]: /reference/api/part/config/options/pct [snapped]: /reference/api/part/config/options/pct/snap -[mm]: /reference/api/part/config/options/pct/mm +[mm]: /reference/api/part/config/options/mm diff --git a/markdown/dev/reference/api/part/config/options/extend/en.md b/markdown/dev/reference/api/part/config/options/extend/en.md index cf61e59d44a..762f942f821 100644 --- a/markdown/dev/reference/api/part/config/options/extend/en.md +++ b/markdown/dev/reference/api/part/config/options/extend/en.md @@ -1,15 +1,18 @@ --- -title: Extending options +title: Extending options and suppressing translation --- - +## Extending and overriding inherited options -Explain extending options here +Parts automatically inherit options from the parts they are based on. +However, parts can also extend their options. - +- A part can define new options. These new options are added to the ones inherited. +- Options can be redefined to override/extend an inherited option. + - For example, an inherited percentage option can be redefined to have different min, max, and/or default values. + - A different menu can be specified for an inherited option, or the menu property can be ommitted or set to `null` to prevent the option from appearing in the menus. - -## Suppress translation +## Suppressing translation In the example above, you want the different `list` options to be translated. But sometimes, there is no need for that, like in this example from Breanna: @@ -41,49 +44,7 @@ options: { } ``` -As you can see above, you can set the `doNotTranslate` property to `true` and to indicate this. - - - -##### This is not a core feature - -To be clear, setting this here does not do anything in core. It's merely extra -metadata you can add on the option to facilitate frontend integration. - - -## Suppress translation - -In the example above, you want the different `list` options to be translated. -But sometimes, there is no need for that, like in this example from Breanna: - -```js -options: { - primaryBustDart: { - list: [ - '06:00', - '07:00', - '08:00', - '09:00', - '10:00', - '11:00', - '11:30', - '12:00', - '12:30', - '13:00', - '13:30', - '14:00', - '15:00', - '16:00', - '17:00', - ], - dflt: '06:00', - doNotTranslate: true, - }, - // More here -} -``` - -As you can see above, you can set the `doNotTranslate` property to `true` and to indicate this. +As you can see above, you can set the `doNotTranslate` property to `true` to indicate this. diff --git a/markdown/dev/reference/api/part/config/options/list/en.md b/markdown/dev/reference/api/part/config/options/list/en.md index 117ca53f1fd..f88e9789c79 100644 --- a/markdown/dev/reference/api/part/config/options/list/en.md +++ b/markdown/dev/reference/api/part/config/options/list/en.md @@ -30,12 +30,13 @@ options: { dflt: "angledBarrelCuff", list: [ "roundedBarrelCuff", - "angledBarrelCuff" - "straightBarrelCuff" - "roundedFrenchCuff" - "angledFrenchCuff" + "angledBarrelCuff", + "straightBarrelCuff", + "roundedFrenchCuff", + "angledFrenchCuff", "straightFrenchCuff" - ] + ], + menu: 'style' } } ``` diff --git a/markdown/dev/reference/api/part/config/options/mm/en.md b/markdown/dev/reference/api/part/config/options/mm/en.md index 255be6b7704..9ae6688243b 100644 --- a/markdown/dev/reference/api/part/config/options/mm/en.md +++ b/markdown/dev/reference/api/part/config/options/mm/en.md @@ -2,16 +2,20 @@ title: Millimeter options --- + + While FreeSewing supports millimeter options, we recommend using [percentage options][1] and will not accept contributions that use millimeter options. + + ## Structure A millimeter option should be a plain object with these properties: -- `mm` : The default value in millimeter -- `min` : The minimul that's allowed +- `mm` : The default value in millimeters +- `min` : The minimum that's allowed - `max` : The maximum that's allowed ## Example diff --git a/markdown/dev/reference/api/part/config/options/pct/en.md b/markdown/dev/reference/api/part/config/options/pct/en.md index deb74beb081..8313cac3cd4 100644 --- a/markdown/dev/reference/api/part/config/options/pct/en.md +++ b/markdown/dev/reference/api/part/config/options/pct/en.md @@ -64,9 +64,9 @@ You can unlock those features by adding the following properties to your option: - `toAbs`: A method to [return the option value in millimeter][toabs] - `snap`: The configuration to control [snapping of percentage options][snap] -[fromabs]: /reference/api/config/options/pct/fromabs -[toabs]: /reference/api/config/options/pct/toabs -[snap]: /reference/api/config/options/pct/snap +[fromabs]: /reference/api/part/config/options/pct/fromabs +[toabs]: /reference/api/part/config/options/pct/toabs +[snap]: /reference/api/part/config/options/pct/snap Refer to the relevant documentation for more details: diff --git a/markdown/dev/reference/api/part/config/options/pct/fromabs/en.md b/markdown/dev/reference/api/part/config/options/pct/fromabs/en.md index 9ca7f968ccd..7993f27f4bb 100644 --- a/markdown/dev/reference/api/part/config/options/pct/fromabs/en.md +++ b/markdown/dev/reference/api/part/config/options/pct/fromabs/en.md @@ -91,4 +91,4 @@ it will also add a `toAbs()` method that does the inverse: return the value in millimeter of whatever percentage the option is set to. See [Reporting a percentage option value in -millimeter](/reference/api/config/options/pct/toabs) for details. +millimeter](/reference/api/part/config/options/pct/toabs) for details. diff --git a/markdown/dev/reference/api/part/config/options/pct/snap/en.md b/markdown/dev/reference/api/part/config/options/pct/snap/en.md index 8c533899524..c7064a619c6 100644 --- a/markdown/dev/reference/api/part/config/options/pct/snap/en.md +++ b/markdown/dev/reference/api/part/config/options/pct/snap/en.md @@ -90,7 +90,7 @@ of numbers. The difference is that this allows you to supply a different list of snap values for users using metric or imperial units. -In the example below, the value of [settings.units](/api/settings/units) will +In the example below, the value of [settings.units](/reference/settings/units) will determine which list of snap values gets used. Then, if the absolute value returned by `toAbs()` is in the diff --git a/markdown/dev/reference/api/part/config/options/pct/toabs/en.md b/markdown/dev/reference/api/part/config/options/pct/toabs/en.md index 7cfe0f3e735..7d7d2f28788 100644 --- a/markdown/dev/reference/api/part/config/options/pct/toabs/en.md +++ b/markdown/dev/reference/api/part/config/options/pct/toabs/en.md @@ -81,4 +81,4 @@ also add a `fromAbs()` method that does the inverse: return the percentage of any millimeter value passed into it. See [Setting a value in millimeter as a -percentage option](/api/config/options/pct/fromabs) for details. +percentage option](/reference/api/part/config/options/pct/fromabs) for details. From b53f97689fa70118bbbfd523f392110cc3f50165 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Wed, 7 Dec 2022 18:01:40 -0800 Subject: [PATCH 03/29] fix(docs): Corrections to plugin documentation. --- markdown/dev/guides/plugins/loading/en.md | 2 +- markdown/dev/reference/plugins/bust/en.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/markdown/dev/guides/plugins/loading/en.md b/markdown/dev/guides/plugins/loading/en.md index b6fb025af73..6eb462ee494 100644 --- a/markdown/dev/guides/plugins/loading/en.md +++ b/markdown/dev/guides/plugins/loading/en.md @@ -3,7 +3,7 @@ title: Loading plugins order: 140 --- -Plugins can be loaded at build time and added to the desig. Or at run time and added to an instantiated pattern. +Plugins can be loaded at build time and added to the design. Or at run time and added to an instantiated pattern. To load a plugin at build time, it should be added to [the `plugins` key of the part configuration](/reference/api/part/config/plugins). diff --git a/markdown/dev/reference/plugins/bust/en.md b/markdown/dev/reference/plugins/bust/en.md index 195218003e3..9ce8e912962 100644 --- a/markdown/dev/reference/plugins/bust/en.md +++ b/markdown/dev/reference/plugins/bust/en.md @@ -54,8 +54,8 @@ You can see this in practice in our [Carlita][2] pattern, which extends the menswear [Carlton][3] pattern. -To learn more about extending a pattern, see [Design -inheritance](/howtos/code/inheritance/) +To learn more about extending a pattern, see [Part +inheritance](/howtos/code/from/) ### Use when creating gender-neutral patterns @@ -65,17 +65,17 @@ if they are present — you can use this plugin, but you'll also need a few othe things: - You'll need to mark the breast measurements as [optional - measurements](/reference/api/config/optionalmeasurements) + measurements](/reference/api/part/config/measurements#optionalmeasurements) - You'll need to [conditionally load this - plugin](/guides/plugins/conditionally-loading-build-time-plugins) + plugin](/reference/api/part/config/plugins#conditional-plugins) You can see an example of this in [our Teagan design][4]. [1]: https://www.npmjs.com/package/@freesewing/plugin-banner -[2]: https://github.com/freesewing/freesewing/blob/develop/designs/carlita/src/index.js#L12 +[2]: https://github.com/freesewing/freesewing/blob/develop/designs/carlita/src/index.mjs#L25 [3]: https://github.com/freesewing/freesewing/blob/develop/designs/carlton -[4]: https://github.com/freesewing/freesewing/blob/develop/designs/teagan/src/index.js +[4]: https://github.com/freesewing/freesewing/blob/develop/designs/teagan/src/index.mjs From b8686c4148ef6799fa3b04ae6162d9470498c732 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Wed, 7 Dec 2022 18:02:34 -0800 Subject: [PATCH 04/29] fix(docs): Part draft method corrections --- markdown/dev/reference/api/part/draft/en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/dev/reference/api/part/draft/en.md b/markdown/dev/reference/api/part/draft/en.md index bd790e078c7..2e6a7c05c07 100644 --- a/markdown/dev/reference/api/part/draft/en.md +++ b/markdown/dev/reference/api/part/draft/en.md @@ -34,7 +34,7 @@ access the following properties: || **_Access to utilities_** | | `getId` | See [the getId documentation](/reference/api/part/getid) | | `hide` | See [the hide documentation](/reference/api/part/hide) | -| `log` | See [the logging documentation](reference/api/store/logs) | +| `log` | See [the logging documentation](/reference/api/store/log) | | `macro` | See [the macros documentation](/reference/macros/) | | `setHidden` | See [the setHidden documentation](/reference/api/part/sethidden) | | `store` | See [the store documentation](/reference/api/store) | From b000039033a06a16860985316bbeb7476e350fdb Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Wed, 7 Dec 2022 18:23:02 -0800 Subject: [PATCH 05/29] fix(core) Small corrections to utils.mjs comments --- packages/core/src/utils.mjs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/core/src/utils.mjs b/packages/core/src/utils.mjs index 9fe67be026b..a401f400ce7 100644 --- a/packages/core/src/utils.mjs +++ b/packages/core/src/utils.mjs @@ -44,7 +44,7 @@ export function beamIntersectsCircle(c, r, p1, p2, sort = 'x') { } /** - * Finds qhere an endless line intersects with a given X-value + * Finds where an endless line intersects with a given X-value * * @param {Point} from - First Point on the line * @param {Point} to - Second Point on the line @@ -60,7 +60,7 @@ export function beamIntersectsX(from, to, x) { } /** - * Finds qhere an endless line intersects with a given Y-value + * Finds where an endless line intersects with a given Y-value * * @param {Point} from - First Point 1 on the line * @param {Point} to - Second Point on the line @@ -162,7 +162,7 @@ export function circlesIntersect(c1, r1, c2, r2, sort = 'x') { * @param {BezierJs} curve - A BezierJs curve instance * @param {string} edge - The edge to find: top, bottom, right, or left * @param {int} steps - The number of steps to divide the curve in while walking it - * @return {Array} intersecions - An Array of Point objects of all intersections + * @return {Point} edgepoint - A Point object located on the edge of the curve. Returns the first point found, if more than one lies on the edge. */ export function curveEdge(curve, edge, steps = 500) { let x = Infinity @@ -194,7 +194,7 @@ export function curveEdge(curve, edge, steps = 500) { * @param {Point} cp2 - Control Point at the end of the curve * @param {Point} to - End Point of the curve * @param {float} x - X-value to check for intersections - * @return {Array} intersecions - An Array of Point objects of all intersections + * @return {Array} intersections - An Array of Point objects of all intersections */ export function curveIntersectsX(from, cp1, cp2, to, x) { let start = new Point(x, -10000) @@ -210,7 +210,7 @@ export function curveIntersectsX(from, cp1, cp2, to, x) { * @param {Point} cp2 - Control Point at the end of the curve * @param {Point} to - End Point of the curve * @param {float} y - Y-value to check for intersections - * @return {Array} intersecions - An Array of Point objects of all intersections + * @return {Array} intersections - An Array of Point objects of all intersections */ export function curveIntersectsY(from, cp1, cp2, to, y) { let start = new Point(-10000, y) @@ -229,7 +229,7 @@ export function curveIntersectsY(from, cp1, cp2, to, y) { * @param {Point} cp1B - Control Point at the start of the second curve * @param {Point} cp2B - Control Point at the end of the second curve * @param {Point} toB - End Point of the fsecond curve - * @return {Array} intersecions - An Array of Point objects of all intersections between the curves + * @return {Array} intersections - An Array of Point objects of all intersections between the curves */ export function curvesIntersect(fromA, cp1A, cp2A, toA, fromB, cp1B, cp2B, toB) { let precision = 0.005 // See https://github.com/Pomax/bezierjs/issues/99 From e359bda06c124a18d815fe1bdb0b59c6c293ce21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 04:02:30 +0000 Subject: [PATCH 06/29] chore(deps): bump @aws-sdk/client-sesv2 from 3.224.0 to 3.226.0 Bumps [@aws-sdk/client-sesv2](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sesv2) from 3.224.0 to 3.226.0. - [Release notes](https://github.com/aws/aws-sdk-js-v3/releases) - [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sesv2/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.226.0/clients/client-sesv2) --- updated-dependencies: - dependency-name: "@aws-sdk/client-sesv2" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- yarn.lock | 782 +++++++++++++++++++++++++++--------------------------- 1 file changed, 392 insertions(+), 390 deletions(-) diff --git a/yarn.lock b/yarn.lock index ce34baaadb9..a0708ea64ee 100644 --- a/yarn.lock +++ b/yarn.lock @@ -174,291 +174,291 @@ "@aws-sdk/util-utf8-browser" "^3.0.0" tslib "^1.11.1" -"@aws-sdk/abort-controller@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/abort-controller/-/abort-controller-3.224.0.tgz#4a5f53bbf4aec3acc5b94384d2130410b26e82b9" - integrity sha512-6DxaHnSDc2V5WiwtDaRwJJb2fkmDTyGr1svIM9H671aXIwe+q17mtpm5IooKL8bW5mLJoB1pT/5ntLkfxDQgSQ== +"@aws-sdk/abort-controller@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/abort-controller/-/abort-controller-3.226.0.tgz#3adffb8ee5af57ddb154e8544a8eeec76ad32271" + integrity sha512-cJVzr1xxPBd08voknXvR0RLgtZKGKt6WyDpH/BaPCu3rfSqWCDZKzwqe940eqosjmKrxC6pUZNKASIqHOQ8xxQ== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" "@aws-sdk/client-sesv2@^3.200.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sesv2/-/client-sesv2-3.224.0.tgz#a07de5d5211a421df043348ea52ad1de87aa0216" - integrity sha512-IHxDTC10gOlq0aUrCrni8MMy2UhVxZc3Ipfy+w5XVAboJE3Hv22bq3Hrd/IpEAgdxW59M1IxXGi8dpAi2BXzsw== + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sesv2/-/client-sesv2-3.226.0.tgz#d412e85caaa3fffeba1ef5614d89baff206ffe6c" + integrity sha512-5L0dGSW0CJwZtCWGzWv9Q/mKPfX5OYxXU5kJszgOSRW3om4dF9BOd+l9lgipMQDABIXH67BfekDYFBX5I8ezqQ== dependencies: "@aws-crypto/sha256-browser" "2.0.0" "@aws-crypto/sha256-js" "2.0.0" - "@aws-sdk/client-sts" "3.224.0" - "@aws-sdk/config-resolver" "3.224.0" - "@aws-sdk/credential-provider-node" "3.224.0" - "@aws-sdk/fetch-http-handler" "3.224.0" - "@aws-sdk/hash-node" "3.224.0" - "@aws-sdk/invalid-dependency" "3.224.0" - "@aws-sdk/middleware-content-length" "3.224.0" - "@aws-sdk/middleware-endpoint" "3.224.0" - "@aws-sdk/middleware-host-header" "3.224.0" - "@aws-sdk/middleware-logger" "3.224.0" - "@aws-sdk/middleware-recursion-detection" "3.224.0" - "@aws-sdk/middleware-retry" "3.224.0" - "@aws-sdk/middleware-serde" "3.224.0" - "@aws-sdk/middleware-signing" "3.224.0" - "@aws-sdk/middleware-stack" "3.224.0" - "@aws-sdk/middleware-user-agent" "3.224.0" - "@aws-sdk/node-config-provider" "3.224.0" - "@aws-sdk/node-http-handler" "3.224.0" - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/smithy-client" "3.224.0" - "@aws-sdk/types" "3.224.0" - "@aws-sdk/url-parser" "3.224.0" + "@aws-sdk/client-sts" "3.226.0" + "@aws-sdk/config-resolver" "3.226.0" + "@aws-sdk/credential-provider-node" "3.226.0" + "@aws-sdk/fetch-http-handler" "3.226.0" + "@aws-sdk/hash-node" "3.226.0" + "@aws-sdk/invalid-dependency" "3.226.0" + "@aws-sdk/middleware-content-length" "3.226.0" + "@aws-sdk/middleware-endpoint" "3.226.0" + "@aws-sdk/middleware-host-header" "3.226.0" + "@aws-sdk/middleware-logger" "3.226.0" + "@aws-sdk/middleware-recursion-detection" "3.226.0" + "@aws-sdk/middleware-retry" "3.226.0" + "@aws-sdk/middleware-serde" "3.226.0" + "@aws-sdk/middleware-signing" "3.226.0" + "@aws-sdk/middleware-stack" "3.226.0" + "@aws-sdk/middleware-user-agent" "3.226.0" + "@aws-sdk/node-config-provider" "3.226.0" + "@aws-sdk/node-http-handler" "3.226.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/smithy-client" "3.226.0" + "@aws-sdk/types" "3.226.0" + "@aws-sdk/url-parser" "3.226.0" "@aws-sdk/util-base64" "3.208.0" "@aws-sdk/util-body-length-browser" "3.188.0" "@aws-sdk/util-body-length-node" "3.208.0" - "@aws-sdk/util-defaults-mode-browser" "3.224.0" - "@aws-sdk/util-defaults-mode-node" "3.224.0" - "@aws-sdk/util-endpoints" "3.224.0" - "@aws-sdk/util-user-agent-browser" "3.224.0" - "@aws-sdk/util-user-agent-node" "3.224.0" + "@aws-sdk/util-defaults-mode-browser" "3.226.0" + "@aws-sdk/util-defaults-mode-node" "3.226.0" + "@aws-sdk/util-endpoints" "3.226.0" + "@aws-sdk/util-user-agent-browser" "3.226.0" + "@aws-sdk/util-user-agent-node" "3.226.0" "@aws-sdk/util-utf8-browser" "3.188.0" "@aws-sdk/util-utf8-node" "3.208.0" tslib "^2.3.1" -"@aws-sdk/client-sso-oidc@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.224.0.tgz#0c8909ec5e0c984c13de6c99f6527e9672d5c10f" - integrity sha512-r7QAqinMvuZvGlfC4ltEBIq3gJ1AI4tTqEi8lG06+gDoiwnqTWii0+OrZJQiaeLc3PqDHwxmRpEmjFlr/f5TKg== +"@aws-sdk/client-sso-oidc@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.226.0.tgz#6e9566a41f34d918fd1658ba968a0d33401585bf" + integrity sha512-IKzAhL6RoPs7IZ/rJvekjedQ4oesazCO+Aqh9l2Xct+XY0MFBdh4amgg4t/8fjksfIzmJH48BZoNv5gVak6yRw== dependencies: "@aws-crypto/sha256-browser" "2.0.0" "@aws-crypto/sha256-js" "2.0.0" - "@aws-sdk/config-resolver" "3.224.0" - "@aws-sdk/fetch-http-handler" "3.224.0" - "@aws-sdk/hash-node" "3.224.0" - "@aws-sdk/invalid-dependency" "3.224.0" - "@aws-sdk/middleware-content-length" "3.224.0" - "@aws-sdk/middleware-endpoint" "3.224.0" - "@aws-sdk/middleware-host-header" "3.224.0" - "@aws-sdk/middleware-logger" "3.224.0" - "@aws-sdk/middleware-recursion-detection" "3.224.0" - "@aws-sdk/middleware-retry" "3.224.0" - "@aws-sdk/middleware-serde" "3.224.0" - "@aws-sdk/middleware-stack" "3.224.0" - "@aws-sdk/middleware-user-agent" "3.224.0" - "@aws-sdk/node-config-provider" "3.224.0" - "@aws-sdk/node-http-handler" "3.224.0" - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/smithy-client" "3.224.0" - "@aws-sdk/types" "3.224.0" - "@aws-sdk/url-parser" "3.224.0" + "@aws-sdk/config-resolver" "3.226.0" + "@aws-sdk/fetch-http-handler" "3.226.0" + "@aws-sdk/hash-node" "3.226.0" + "@aws-sdk/invalid-dependency" "3.226.0" + "@aws-sdk/middleware-content-length" "3.226.0" + "@aws-sdk/middleware-endpoint" "3.226.0" + "@aws-sdk/middleware-host-header" "3.226.0" + "@aws-sdk/middleware-logger" "3.226.0" + "@aws-sdk/middleware-recursion-detection" "3.226.0" + "@aws-sdk/middleware-retry" "3.226.0" + "@aws-sdk/middleware-serde" "3.226.0" + "@aws-sdk/middleware-stack" "3.226.0" + "@aws-sdk/middleware-user-agent" "3.226.0" + "@aws-sdk/node-config-provider" "3.226.0" + "@aws-sdk/node-http-handler" "3.226.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/smithy-client" "3.226.0" + "@aws-sdk/types" "3.226.0" + "@aws-sdk/url-parser" "3.226.0" "@aws-sdk/util-base64" "3.208.0" "@aws-sdk/util-body-length-browser" "3.188.0" "@aws-sdk/util-body-length-node" "3.208.0" - "@aws-sdk/util-defaults-mode-browser" "3.224.0" - "@aws-sdk/util-defaults-mode-node" "3.224.0" - "@aws-sdk/util-endpoints" "3.224.0" - "@aws-sdk/util-user-agent-browser" "3.224.0" - "@aws-sdk/util-user-agent-node" "3.224.0" + "@aws-sdk/util-defaults-mode-browser" "3.226.0" + "@aws-sdk/util-defaults-mode-node" "3.226.0" + "@aws-sdk/util-endpoints" "3.226.0" + "@aws-sdk/util-user-agent-browser" "3.226.0" + "@aws-sdk/util-user-agent-node" "3.226.0" "@aws-sdk/util-utf8-browser" "3.188.0" "@aws-sdk/util-utf8-node" "3.208.0" tslib "^2.3.1" -"@aws-sdk/client-sso@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.224.0.tgz#2de538cb92e27e72e90fc033904ad938205043cb" - integrity sha512-ZfqjGGBhv+sKxYN9FHbepaL+ucFbAFndvNdalGj4mZsv5AqxgemkFoRofNJk4nu79JVf5cdrj7zL+BDW3KwEGg== +"@aws-sdk/client-sso@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.226.0.tgz#a7d5239e74ac9e050f91f261e6a8783893b4c95a" + integrity sha512-+Hl1YSLKrxPnQLijhWryI6uV8eKZIsUhvWlzFKx75kjxzjsC/jyk5zV59jnCu0SCCepXB8DKyLVa2WpH7iAHew== dependencies: "@aws-crypto/sha256-browser" "2.0.0" "@aws-crypto/sha256-js" "2.0.0" - "@aws-sdk/config-resolver" "3.224.0" - "@aws-sdk/fetch-http-handler" "3.224.0" - "@aws-sdk/hash-node" "3.224.0" - "@aws-sdk/invalid-dependency" "3.224.0" - "@aws-sdk/middleware-content-length" "3.224.0" - "@aws-sdk/middleware-endpoint" "3.224.0" - "@aws-sdk/middleware-host-header" "3.224.0" - "@aws-sdk/middleware-logger" "3.224.0" - "@aws-sdk/middleware-recursion-detection" "3.224.0" - "@aws-sdk/middleware-retry" "3.224.0" - "@aws-sdk/middleware-serde" "3.224.0" - "@aws-sdk/middleware-stack" "3.224.0" - "@aws-sdk/middleware-user-agent" "3.224.0" - "@aws-sdk/node-config-provider" "3.224.0" - "@aws-sdk/node-http-handler" "3.224.0" - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/smithy-client" "3.224.0" - "@aws-sdk/types" "3.224.0" - "@aws-sdk/url-parser" "3.224.0" + "@aws-sdk/config-resolver" "3.226.0" + "@aws-sdk/fetch-http-handler" "3.226.0" + "@aws-sdk/hash-node" "3.226.0" + "@aws-sdk/invalid-dependency" "3.226.0" + "@aws-sdk/middleware-content-length" "3.226.0" + "@aws-sdk/middleware-endpoint" "3.226.0" + "@aws-sdk/middleware-host-header" "3.226.0" + "@aws-sdk/middleware-logger" "3.226.0" + "@aws-sdk/middleware-recursion-detection" "3.226.0" + "@aws-sdk/middleware-retry" "3.226.0" + "@aws-sdk/middleware-serde" "3.226.0" + "@aws-sdk/middleware-stack" "3.226.0" + "@aws-sdk/middleware-user-agent" "3.226.0" + "@aws-sdk/node-config-provider" "3.226.0" + "@aws-sdk/node-http-handler" "3.226.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/smithy-client" "3.226.0" + "@aws-sdk/types" "3.226.0" + "@aws-sdk/url-parser" "3.226.0" "@aws-sdk/util-base64" "3.208.0" "@aws-sdk/util-body-length-browser" "3.188.0" "@aws-sdk/util-body-length-node" "3.208.0" - "@aws-sdk/util-defaults-mode-browser" "3.224.0" - "@aws-sdk/util-defaults-mode-node" "3.224.0" - "@aws-sdk/util-endpoints" "3.224.0" - "@aws-sdk/util-user-agent-browser" "3.224.0" - "@aws-sdk/util-user-agent-node" "3.224.0" + "@aws-sdk/util-defaults-mode-browser" "3.226.0" + "@aws-sdk/util-defaults-mode-node" "3.226.0" + "@aws-sdk/util-endpoints" "3.226.0" + "@aws-sdk/util-user-agent-browser" "3.226.0" + "@aws-sdk/util-user-agent-node" "3.226.0" "@aws-sdk/util-utf8-browser" "3.188.0" "@aws-sdk/util-utf8-node" "3.208.0" tslib "^2.3.1" -"@aws-sdk/client-sts@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.224.0.tgz#c9f8f3006d1893db39fc628d1c8bf55e8ed17e46" - integrity sha512-ao3jyjwk2fozk1d4PtrNf0BNsucPWAbALv8CCsPTC3r9g2Lg/TOi3pxmsfd69ddw89XSyP6zZATEHaWO+tk0CQ== +"@aws-sdk/client-sts@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.226.0.tgz#40b8e62152bbce2c44c607b80ccc1db280497e1f" + integrity sha512-ZBlqRVbnHvvbkN5g56+mXltNybHNzgV69+2ARubQ8ge9U2qF/LweCmGqZnZLWqdGXwaB9IOvz5ZW2npyJh1X/A== dependencies: "@aws-crypto/sha256-browser" "2.0.0" "@aws-crypto/sha256-js" "2.0.0" - "@aws-sdk/config-resolver" "3.224.0" - "@aws-sdk/credential-provider-node" "3.224.0" - "@aws-sdk/fetch-http-handler" "3.224.0" - "@aws-sdk/hash-node" "3.224.0" - "@aws-sdk/invalid-dependency" "3.224.0" - "@aws-sdk/middleware-content-length" "3.224.0" - "@aws-sdk/middleware-endpoint" "3.224.0" - "@aws-sdk/middleware-host-header" "3.224.0" - "@aws-sdk/middleware-logger" "3.224.0" - "@aws-sdk/middleware-recursion-detection" "3.224.0" - "@aws-sdk/middleware-retry" "3.224.0" - "@aws-sdk/middleware-sdk-sts" "3.224.0" - "@aws-sdk/middleware-serde" "3.224.0" - "@aws-sdk/middleware-signing" "3.224.0" - "@aws-sdk/middleware-stack" "3.224.0" - "@aws-sdk/middleware-user-agent" "3.224.0" - "@aws-sdk/node-config-provider" "3.224.0" - "@aws-sdk/node-http-handler" "3.224.0" - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/smithy-client" "3.224.0" - "@aws-sdk/types" "3.224.0" - "@aws-sdk/url-parser" "3.224.0" + "@aws-sdk/config-resolver" "3.226.0" + "@aws-sdk/credential-provider-node" "3.226.0" + "@aws-sdk/fetch-http-handler" "3.226.0" + "@aws-sdk/hash-node" "3.226.0" + "@aws-sdk/invalid-dependency" "3.226.0" + "@aws-sdk/middleware-content-length" "3.226.0" + "@aws-sdk/middleware-endpoint" "3.226.0" + "@aws-sdk/middleware-host-header" "3.226.0" + "@aws-sdk/middleware-logger" "3.226.0" + "@aws-sdk/middleware-recursion-detection" "3.226.0" + "@aws-sdk/middleware-retry" "3.226.0" + "@aws-sdk/middleware-sdk-sts" "3.226.0" + "@aws-sdk/middleware-serde" "3.226.0" + "@aws-sdk/middleware-signing" "3.226.0" + "@aws-sdk/middleware-stack" "3.226.0" + "@aws-sdk/middleware-user-agent" "3.226.0" + "@aws-sdk/node-config-provider" "3.226.0" + "@aws-sdk/node-http-handler" "3.226.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/smithy-client" "3.226.0" + "@aws-sdk/types" "3.226.0" + "@aws-sdk/url-parser" "3.226.0" "@aws-sdk/util-base64" "3.208.0" "@aws-sdk/util-body-length-browser" "3.188.0" "@aws-sdk/util-body-length-node" "3.208.0" - "@aws-sdk/util-defaults-mode-browser" "3.224.0" - "@aws-sdk/util-defaults-mode-node" "3.224.0" - "@aws-sdk/util-endpoints" "3.224.0" - "@aws-sdk/util-user-agent-browser" "3.224.0" - "@aws-sdk/util-user-agent-node" "3.224.0" + "@aws-sdk/util-defaults-mode-browser" "3.226.0" + "@aws-sdk/util-defaults-mode-node" "3.226.0" + "@aws-sdk/util-endpoints" "3.226.0" + "@aws-sdk/util-user-agent-browser" "3.226.0" + "@aws-sdk/util-user-agent-node" "3.226.0" "@aws-sdk/util-utf8-browser" "3.188.0" "@aws-sdk/util-utf8-node" "3.208.0" fast-xml-parser "4.0.11" tslib "^2.3.1" -"@aws-sdk/config-resolver@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-3.224.0.tgz#074fe9465064242cb4245920b3e1af1179404b1a" - integrity sha512-jS53QvF2jdv7d6cpPUH6N85i1WNHik1eGvxqSndsNbLf0keEGXYyN4pBLNB0xK1nk0ZG+8slRsXgWvWTCcFYKA== +"@aws-sdk/config-resolver@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-3.226.0.tgz#b4f19150cf08c9ed36ced3bdffdc64d89e6f3e5b" + integrity sha512-0UWXtfnTT0OtnRP8jJodc8V7xAnWSqsh4RCRyV5uu3Z2Tv+xyW91GKxO+gOXoUP0hHu0lvBM9lYiMJcJWZYLYw== dependencies: - "@aws-sdk/signature-v4" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/signature-v4" "3.226.0" + "@aws-sdk/types" "3.226.0" "@aws-sdk/util-config-provider" "3.208.0" - "@aws-sdk/util-middleware" "3.224.0" + "@aws-sdk/util-middleware" "3.226.0" tslib "^2.3.1" -"@aws-sdk/credential-provider-env@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.224.0.tgz#4abb96e71a73de49e6f4eabd19865f50e5426308" - integrity sha512-WUicVivCne9Ela2Nuufohy8+UV/W6GwanlpK9trJqrqHt2/zqdNYHqZbWL0zDNO8dvFN3+MC2a8boYPyR+cFRg== +"@aws-sdk/credential-provider-env@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.226.0.tgz#0bcb89a9abc166b3a48f5c255b9fcabc4cb80daf" + integrity sha512-sd8uK1ojbXxaZXlthzw/VXZwCPUtU3PjObOfr3Evj7MPIM2IH8h29foOlggx939MdLQGboJf9gKvLlvKDWtJRA== dependencies: - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/credential-provider-imds@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.224.0.tgz#ca1f80dd89366b51f803c64959e4454bb10c0ec6" - integrity sha512-n7uVR5Z9EUfVbg0gSNrJvu1g0cM/HqhRt+kaRJBGNf4q1tEbnCukKj+qUZbT1qdbDTyu9NTRphMvuIyN3RBDtQ== +"@aws-sdk/credential-provider-imds@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.226.0.tgz#0a4558449eb261412b0490ea1c3242eb91659759" + integrity sha512-//z/COQm2AjYFI1Lb0wKHTQSrvLFTyuKLFQGPJsKS7DPoxGOCKB7hmYerlbl01IDoCxTdyL//TyyPxbZEOQD5Q== dependencies: - "@aws-sdk/node-config-provider" "3.224.0" - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/types" "3.224.0" - "@aws-sdk/url-parser" "3.224.0" + "@aws-sdk/node-config-provider" "3.226.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/types" "3.226.0" + "@aws-sdk/url-parser" "3.226.0" tslib "^2.3.1" -"@aws-sdk/credential-provider-ini@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.224.0.tgz#1192e78f5953c3e66eac1c919e5feb76db974e88" - integrity sha512-YaAHoHJVspqy5f8C6EXBifMfodKXl88IHuL6eBComigTPR3s1Ed1+3AJdjA1X7SjAHfrYna/WvZEH3e8NCSzFA== +"@aws-sdk/credential-provider-ini@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.226.0.tgz#06ad59f5124044ef01413c7ad01119ef15566744" + integrity sha512-Sj7SGl53qmKkD7wvgU0MSTyj8ho6A3tKVbadTHljVz60jiauTEM97Z1DIai6U3oPFVteaKqx7npc8ozeK6mKNg== dependencies: - "@aws-sdk/credential-provider-env" "3.224.0" - "@aws-sdk/credential-provider-imds" "3.224.0" - "@aws-sdk/credential-provider-sso" "3.224.0" - "@aws-sdk/credential-provider-web-identity" "3.224.0" - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/shared-ini-file-loader" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/credential-provider-env" "3.226.0" + "@aws-sdk/credential-provider-imds" "3.226.0" + "@aws-sdk/credential-provider-sso" "3.226.0" + "@aws-sdk/credential-provider-web-identity" "3.226.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/shared-ini-file-loader" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/credential-provider-node@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.224.0.tgz#807775fb8fd8bcdcea28cb8e6066ba1665e9245e" - integrity sha512-n/gijJAA3uVFl1b3+hp2E3lPaiajsPLHqH+mMxNxPkGo39HV1v9RAyOVW4Y3AH1QcT7sURevjGoF2Eemcro88g== +"@aws-sdk/credential-provider-node@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.226.0.tgz#d81c4d8fbacf5ef9bbea6e0e2e15fb61039b5eb6" + integrity sha512-kuOeiVmlhSyMC1Eix0pqHmb4EmpbMHrTw+9ObZbQ2bRXy05Q9fLA6SVBcI01bI1KVh7Qqz9i8ojOY3A2zscjyA== dependencies: - "@aws-sdk/credential-provider-env" "3.224.0" - "@aws-sdk/credential-provider-imds" "3.224.0" - "@aws-sdk/credential-provider-ini" "3.224.0" - "@aws-sdk/credential-provider-process" "3.224.0" - "@aws-sdk/credential-provider-sso" "3.224.0" - "@aws-sdk/credential-provider-web-identity" "3.224.0" - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/shared-ini-file-loader" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/credential-provider-env" "3.226.0" + "@aws-sdk/credential-provider-imds" "3.226.0" + "@aws-sdk/credential-provider-ini" "3.226.0" + "@aws-sdk/credential-provider-process" "3.226.0" + "@aws-sdk/credential-provider-sso" "3.226.0" + "@aws-sdk/credential-provider-web-identity" "3.226.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/shared-ini-file-loader" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/credential-provider-process@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.224.0.tgz#7d8093e7b4e1168a7ba966b4319f99c7a76676dd" - integrity sha512-0nc8vGmv6vDfFlVyKREwAa4namfuGqKg3TTM0nW2vE10fpDXZM/DGVAs5HInX+27QQNLVVh3/OHHgti9wMkYkw== +"@aws-sdk/credential-provider-process@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.226.0.tgz#bcd73a6d31d1b3181917d56e54aacbee242b077f" + integrity sha512-iUDMdnrTvbvaCFhWwqyXrhvQ9+ojPqPqXhwZtY1X/Qaz+73S9gXBPJHZaZb2Ke0yKE1Ql3bJbKvmmxC/qLQMng== dependencies: - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/shared-ini-file-loader" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/shared-ini-file-loader" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/credential-provider-sso@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.224.0.tgz#5ed3bd5f1596eea03ac64e46f5b1e183c405d3cb" - integrity sha512-Qx5w8MCGAwT5cqimA3ZgtY1jSrC7QGPzZfNflY75PWQIaYgjUNNqdAW0jipr4M/dgVjvo1j/Ek+atNf/niTOsQ== +"@aws-sdk/credential-provider-sso@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.226.0.tgz#c8c91e0065153897e659afabd93df62e948058c5" + integrity sha512-QSBeyOIAus4/8u/DeAstE8w/zw+F7PQohdB8JFP/BPaCfc8uKue4UkqqvQWRfm4VSEnHeXt037MDopmCpd98Iw== dependencies: - "@aws-sdk/client-sso" "3.224.0" - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/shared-ini-file-loader" "3.224.0" - "@aws-sdk/token-providers" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/client-sso" "3.226.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/shared-ini-file-loader" "3.226.0" + "@aws-sdk/token-providers" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/credential-provider-web-identity@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.224.0.tgz#0d4f7032f2d53dd9dd39c5f5d62e9d05404aee48" - integrity sha512-Z/xRFTm9pBVyuIAkYohisb3KPJowPVng7ZuZiblU0PaESoJBTkhAFOblpPv/ZWwb6fT85ANUKrvl4858zLpk/Q== +"@aws-sdk/credential-provider-web-identity@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.226.0.tgz#2b7d20f93a40e2243c7e3857f54b103d19a946fb" + integrity sha512-CCpv847rLB0SFOHz2igvUMFAzeT2fD3YnY4C8jltuJoEkn0ITn1Hlgt13nTJ5BUuvyti2mvyXZHmNzhMIMrIlw== dependencies: - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/fetch-http-handler@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.224.0.tgz#31510173f9d5e65e0c29b3af8851ad6bf059e41b" - integrity sha512-IO1Je6ZM0fwT5YYPwQwwXcD4LlsYmP52pwit8AAI4ppz6AkSfs0747uDK0DYnqls7sevBQzUSqBSt6XjcMKjYQ== +"@aws-sdk/fetch-http-handler@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.226.0.tgz#350f78fc18fe9cb0a889ef4870838a8fcfa8855c" + integrity sha512-JewZPMNEBXfi1xVnRa7pVtK/zgZD8/lQ/YnD8pq79WuMa2cwyhDtr8oqCoqsPW+WJT5ScXoMtuHxN78l8eKWgg== dependencies: - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/querystring-builder" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/querystring-builder" "3.226.0" + "@aws-sdk/types" "3.226.0" "@aws-sdk/util-base64" "3.208.0" tslib "^2.3.1" -"@aws-sdk/hash-node@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/hash-node/-/hash-node-3.224.0.tgz#74abb86210486c53cd51f1f17e4ddb9ac342a41b" - integrity sha512-y7TXMDOSy5E2VZPvmsvRfyXkcQWcjTLFTd85yc70AAeFZiffff1nvZifQSzD78bW6ELJsWHXA2O8yxdBURyoBg== +"@aws-sdk/hash-node@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/hash-node/-/hash-node-3.226.0.tgz#252d98bcbb1e13c8f26d9d416db03cf8cceac185" + integrity sha512-MdlJhJ9/Espwd0+gUXdZRsHuostB2WxEVAszWxobP0FTT9PnicqnfK7ExmW+DUAc0ywxtEbR3e0UND65rlSTVw== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" "@aws-sdk/util-buffer-from" "3.208.0" tslib "^2.3.1" -"@aws-sdk/invalid-dependency@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/invalid-dependency/-/invalid-dependency-3.224.0.tgz#c9986d90faf4170a3a4c01e7419ca1f4f4e64a86" - integrity sha512-6huV8LBYQYx84uMhQ2SS7nqEkhTkAufwhKceXnysrcrLDuUmyth09Y7fcFblFIDTr4wTgSI0mf6DKVF4nqYCwQ== +"@aws-sdk/invalid-dependency@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/invalid-dependency/-/invalid-dependency-3.226.0.tgz#74586f60859ed1813985e3d642066cc46d2e9d40" + integrity sha512-QXOYFmap8g9QzRjumcRCIo2GEZkdCwd7ePQW0OABWPhKHzlJ74vvBxywjU3s39EEBEluWXtZ7Iufg6GxZM4ifw== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" "@aws-sdk/is-array-buffer@3.201.0": @@ -468,226 +468,228 @@ dependencies: tslib "^2.3.1" -"@aws-sdk/middleware-content-length@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-content-length/-/middleware-content-length-3.224.0.tgz#8f6bb092594bec6835dbff2e16dbdcb64e230feb" - integrity sha512-L9b84b7X/BH+sFZaXg5hQQv0TRqZIGuOIiWJ8CkYeju7OQV03DzbCoNCAgZdI28SSevfrrVK/hwjEQrv+A6x1Q== +"@aws-sdk/middleware-content-length@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-content-length/-/middleware-content-length-3.226.0.tgz#6cc952049f6e3cdc3a3778c9dce9f2aee942b5fe" + integrity sha512-ksUzlHJN2JMuyavjA46a4sctvnrnITqt2tbGGWWrAuXY1mel2j+VbgnmJUiwHKUO6bTFBBeft5Vd1TSOb4JmiA== dependencies: - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/middleware-endpoint@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.224.0.tgz#9d1d6d4cedf7fe9faa3ea0833c27779af5173442" - integrity sha512-Y+FkQmRyhQUX1E1tviodFwTrfAVjgteoALkFgIb7bxT7fmyQ/AQvdAytkDqIApTgkR61niNDSsAu7lHekDxQgg== +"@aws-sdk/middleware-endpoint@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.226.0.tgz#d776480be4b5a9534c2805b7425be05497f840b7" + integrity sha512-EvLFafjtUxTT0AC9p3aBQu1/fjhWdIeK58jIXaNFONfZ3F8QbEYUPuF/SqZvJM6cWfOO9qwYKkRDbCSTYhprIg== dependencies: - "@aws-sdk/middleware-serde" "3.224.0" - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/signature-v4" "3.224.0" - "@aws-sdk/types" "3.224.0" - "@aws-sdk/url-parser" "3.224.0" + "@aws-sdk/middleware-serde" "3.226.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/signature-v4" "3.226.0" + "@aws-sdk/types" "3.226.0" + "@aws-sdk/url-parser" "3.226.0" "@aws-sdk/util-config-provider" "3.208.0" - "@aws-sdk/util-middleware" "3.224.0" + "@aws-sdk/util-middleware" "3.226.0" tslib "^2.3.1" -"@aws-sdk/middleware-host-header@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.224.0.tgz#850f3d651dcc716d155d64fd825e0a9027839d7c" - integrity sha512-4eL8EVhgxTjvdVs+P3SSEkoMXBte7hSQ/+kOZVNR5ze8QPnUiDpJMS2BQrMoA2INxX9tSqp6zTrDNMc3LNvKbQ== +"@aws-sdk/middleware-host-header@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.226.0.tgz#1e1ecb034929e0dbc532ae501fd93781438f9a24" + integrity sha512-haVkWVh6BUPwKgWwkL6sDvTkcZWvJjv8AgC8jiQuSl8GLZdzHTB8Qhi3IsfFta9HAuoLjxheWBE5Z/L0UrfhLA== dependencies: - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/middleware-logger@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.224.0.tgz#ec38bd51cd6f292defeaf6597d7db7a6e8ad98b7" - integrity sha512-AmvuezI1vGgKZDsA2slHZJ6nQMqogUyzK27wM03458a2JgFqZvWCUPSY/P+OZ0FpnFEC34/kvvF4bI54T0C5jA== +"@aws-sdk/middleware-logger@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.226.0.tgz#37fd0e62f555befd526b03748c3aab60dcefecf3" + integrity sha512-m9gtLrrYnpN6yckcQ09rV7ExWOLMuq8mMPF/K3DbL/YL0TuILu9i2T1W+JuxSX+K9FMG2HrLAKivE/kMLr55xA== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/middleware-recursion-detection@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.224.0.tgz#66f25898b7f9d80182a3b48bc0e8c0a50867ade8" - integrity sha512-ySTGlMvNaH5J77jYVVgwOF1ozz3Kp6f/wjTvivOcBR1zlRv0FXa1y033QMnrAAtKSNkzClXtNOycBM463QImJw== +"@aws-sdk/middleware-recursion-detection@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.226.0.tgz#e149b9138e94d2fa70e7752ba6b1ccb537009706" + integrity sha512-mwRbdKEUeuNH5TEkyZ5FWxp6bL2UC1WbY+LDv6YjHxmSMKpAoOueEdtU34PqDOLrpXXxIGHDFmjeGeMfktyEcA== dependencies: - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/middleware-retry@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-retry/-/middleware-retry-3.224.0.tgz#ba415986473e09c65610c0474450224f61f7c3b4" - integrity sha512-zwl8rZZb5OWLzOnEW58RRklbehDfcdtD98qtgm0NLM9ErBALEEb2Y4MM5zhRiMtVjzrDw71+Mhk5+4TAlwJyXA== +"@aws-sdk/middleware-retry@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-retry/-/middleware-retry-3.226.0.tgz#d469d6c20984edcb58e4ca780ddf267f21558f99" + integrity sha512-uMn4dSkv9Na2uvt6K3HgTnVrCRAlGv1MBAtUDLXONqUv1L/Z1fp3CkFkLKQHKylfBwBhe6dXfYEo87i8LZFoqg== dependencies: - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/service-error-classification" "3.224.0" - "@aws-sdk/types" "3.224.0" - "@aws-sdk/util-middleware" "3.224.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/service-error-classification" "3.226.0" + "@aws-sdk/types" "3.226.0" + "@aws-sdk/util-middleware" "3.226.0" tslib "^2.3.1" uuid "^8.3.2" -"@aws-sdk/middleware-sdk-sts@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.224.0.tgz#06d01239d86b280f881254ec2b3a33e610fb106f" - integrity sha512-rUoPPejj4N8S+P39ap9Iqbprl9L7LBlkuMHwMCqgeRJBhdI+1YeDfUekegJxceJv/BDXaoI2aSE0tCUS8rK0Ug== +"@aws-sdk/middleware-sdk-sts@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.226.0.tgz#e8a8cf42bba8963259546120cde1e408628863f9" + integrity sha512-NN9T/qoSD1kZvAT+VLny3NnlqgylYQcsgV3rvi/8lYzw/G/2s8VS6sm/VTWGGZhx08wZRv20MWzYu3bftcyqUg== dependencies: - "@aws-sdk/middleware-signing" "3.224.0" - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/signature-v4" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/middleware-signing" "3.226.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/signature-v4" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/middleware-serde@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-serde/-/middleware-serde-3.224.0.tgz#2361977fff2990e2a7550b89ffbcce9df017903d" - integrity sha512-4wHJ4DyhvyqQ853zfIw6sRw909VB+hFEqatmXYvO5OYap03Eed92wslsR2Gtfw1B2/zjDscPpwPyHoCIk30sHA== +"@aws-sdk/middleware-serde@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-serde/-/middleware-serde-3.226.0.tgz#c837ef33b34bec2af19a1c177a0c02a1ae20da5e" + integrity sha512-nPuOOAkSfx9TxzdKFx0X2bDlinOxGrqD7iof926K/AEflxGD1DBdcaDdjlYlPDW2CVE8LV/rAgbYuLxh/E/1VA== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/middleware-signing@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.224.0.tgz#ddbd91288b3a0e1a84c8ccce092293d346695b54" - integrity sha512-6T+dybVn5EYsxkNc4eVKAeoj6x6FfRXkZWMRxkepDoOJufMUNTfpoDEl6PcgJU6Wq4odbqV737x/3j53VZc6dA== +"@aws-sdk/middleware-signing@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.226.0.tgz#ebb1d142ac2767466f2e464bb7dba9837143b4d1" + integrity sha512-E6HmtPcl+IjYDDzi1xI2HpCbBq2avNWcjvCriMZWuTAtRVpnA6XDDGW5GY85IfS3A8G8vuWqEVPr8JcYUcjfew== dependencies: - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/signature-v4" "3.224.0" - "@aws-sdk/types" "3.224.0" - "@aws-sdk/util-middleware" "3.224.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/signature-v4" "3.226.0" + "@aws-sdk/types" "3.226.0" + "@aws-sdk/util-middleware" "3.226.0" tslib "^2.3.1" -"@aws-sdk/middleware-stack@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-stack/-/middleware-stack-3.224.0.tgz#76583b329e5928831d10602ce41208fed32fb8ee" - integrity sha512-8mBrc3nj4h6FnDWnxbjfFXUPr/7UIAaGAG15D27Z/KNFnMjOqNTtpkbcoh3QQHRLX3PjTuvzT5WCqXmgD2/oiw== +"@aws-sdk/middleware-stack@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-stack/-/middleware-stack-3.226.0.tgz#b0408370270188103987c457c758f9cf7651754f" + integrity sha512-85wF29LvPvpoed60fZGDYLwv1Zpd/cM0C22WSSFPw1SSJeqO4gtFYyCg2squfT3KI6kF43IIkOCJ+L7GtryPug== dependencies: tslib "^2.3.1" -"@aws-sdk/middleware-user-agent@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.224.0.tgz#68ae33fbf034ddb088c09240cf6283e69740b7a3" - integrity sha512-YXHC/n8k4qeIkqFVACPmF/QfJyKSOMD1HjM7iUZmJ9yGqDRFeGgn4o2Jktd0dor7sTv6pfUDkLqspxURAsokzA== +"@aws-sdk/middleware-user-agent@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.226.0.tgz#26653189f3e8da86514f77688a80d0ad445c0799" + integrity sha512-N1WnfzCW1Y5yWhVAphf8OPGTe8Df3vmV7/LdsoQfmpkCZgLZeK2o0xITkUQhRj1mbw7yp8tVFLFV3R2lMurdAQ== dependencies: - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/node-config-provider@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/node-config-provider/-/node-config-provider-3.224.0.tgz#f5be60d3c3e9502d0fc7faaf83652d15d20479c6" - integrity sha512-ULv0Ao95vNEiwCreN9ZbZ5vntaGjdMLolCiyt3B2FDWbuOorZJR5QXFydPBpo4AQOh1y/S2MIUWLhz00DY364g== +"@aws-sdk/node-config-provider@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/node-config-provider/-/node-config-provider-3.226.0.tgz#a9e21512ef824142bb928a0b2f85b39a75b8964d" + integrity sha512-B8lQDqiRk7X5izFEUMXmi8CZLOKCTWQJU9HQf3ako+sF0gexo4nHN3jhoRWyLtcgC5S3on/2jxpAcqtm7kuY3w== dependencies: - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/shared-ini-file-loader" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/shared-ini-file-loader" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/node-http-handler@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/node-http-handler/-/node-http-handler-3.224.0.tgz#8765841e0095223c5c08e432ca41b4167f54a3cf" - integrity sha512-8h4jWsfVRUcJKkqZ9msSN4LhldBpXdNlMcA8ku8IVEBHf5waxqpIhupwR0uCMmV3FDINLqkf/8EwEYAODeRjrw== +"@aws-sdk/node-http-handler@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/node-http-handler/-/node-http-handler-3.226.0.tgz#373886e949d214a99a3521bd6c141fa17b0e89fe" + integrity sha512-xQCddnZNMiPmjr3W7HYM+f5ir4VfxgJh37eqZwX6EZmyItFpNNeVzKUgA920ka1VPz/ZUYB+2OFGiX3LCLkkaA== dependencies: - "@aws-sdk/abort-controller" "3.224.0" - "@aws-sdk/protocol-http" "3.224.0" - "@aws-sdk/querystring-builder" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/abort-controller" "3.226.0" + "@aws-sdk/protocol-http" "3.226.0" + "@aws-sdk/querystring-builder" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/property-provider@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.224.0.tgz#3b0f744082a1ff45fcbe7aae51abfa1ca806f764" - integrity sha512-1F1Hepndlmj6wykNv0ynlS9YTaT3LRF/mqXhCRGLbCWSmCiaW9BUH/ddMdBZJiSw7kcPePKid5ueW84fAO/nKg== +"@aws-sdk/property-provider@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.226.0.tgz#ef0ff37c319dc37a52f08fa7544f861308a3bbd8" + integrity sha512-TsljjG+Sg0LmdgfiAlWohluWKnxB/k8xenjeozZfzOr5bHmNHtdbWv6BtNvD/R83hw7SFXxbJHlD5H4u9p2NFg== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/protocol-http@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/protocol-http/-/protocol-http-3.224.0.tgz#8a16e0999a125357c7f13a5be04161c52238fee7" - integrity sha512-myp31UkADbktZtIZLc4cNfr5zSNVJjPReoH37NPpvgREKOGg7ZB6Lb3UyKbjzrmIv985brMOunlMgIBIJhuPIg== +"@aws-sdk/protocol-http@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/protocol-http/-/protocol-http-3.226.0.tgz#0af7bdc331508e556b722aad0cb78eefa93466e3" + integrity sha512-zWkVqiTA9RXL6y0hhfZc9bcU4DX2NI6Hw9IhQmSPeM59mdbPjJlY4bLlMr5YxywqO3yQ/ylNoAfrEzrDjlOSRg== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/querystring-builder@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-builder/-/querystring-builder-3.224.0.tgz#914685d22d2ece656220e0c2bda1eae9f91422c2" - integrity sha512-Fwzt42wWRhf04TetQPqDL03jX5W2cAkRFQewOkIRYVFV17b72z4BFhKID6bpLEtNb4YagyllCWosNg1xooDURQ== +"@aws-sdk/querystring-builder@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-builder/-/querystring-builder-3.226.0.tgz#11cd751abeac66f1f9349225454bac3e39808926" + integrity sha512-LVurypuNeotO4lmirKXRC4NYrZRAyMJXuwO0f2a5ZAUJCjauwYrifKue6yCfU7bls7gut7nfcR6B99WBYpHs3g== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" "@aws-sdk/util-uri-escape" "3.201.0" tslib "^2.3.1" -"@aws-sdk/querystring-parser@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-parser/-/querystring-parser-3.224.0.tgz#0e834174711b7c81e7d9523e43bc686cae9ce658" - integrity sha512-UIJZ76ClFtALXRIQS3Za4R76JTsjCYReSBEQ7ag7RF1jwVZLAggdfED9w3XDrN7jbaK6i+aI3Y+eFeq0sB2fcA== +"@aws-sdk/querystring-parser@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-parser/-/querystring-parser-3.226.0.tgz#ba6a26727c98d46c95180e6cdc463039c5e4740d" + integrity sha512-FzB+VrQ47KAFxiPt2YXrKZ8AOLZQqGTLCKHzx4bjxGmwgsjV8yIbtJiJhZLMcUQV4LtGeIY9ixIqQhGvnZHE4A== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/service-error-classification@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/service-error-classification/-/service-error-classification-3.224.0.tgz#7f678766608f4dc2582b7d82b9f3582798d3b140" - integrity sha512-0bnbYtCe+vqtaGItL+1UzQPt+yZLbU8G/aIXPQUL7555jdnjnbAtczCbIcLAJUqlE/OLwRhQVGLKbau8QAdxgQ== +"@aws-sdk/service-error-classification@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/service-error-classification/-/service-error-classification-3.226.0.tgz#47cc6a6d5c7be5b0f6d054ca9375cc405c9d63f6" + integrity sha512-9R01dBpE8JILe2CTft7YN2tMufT2mMWMTqxmHwPSmOpsxHTj8hEII7GTfvpb95ThHwW7XMNhg7pbHLbrTJZCVA== -"@aws-sdk/shared-ini-file-loader@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.224.0.tgz#694a3196201aeea8e8dfe3cae05c4eedb289a0c4" - integrity sha512-6a/XP3lRRcX5ic+bXzF2f644KERVqMx+s0JRrGsPAwTMaMiV0A7Ifl4HKggx6dnxh8j/MXUMsWMtuxt/kCu86A== +"@aws-sdk/shared-ini-file-loader@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.226.0.tgz#d0ade86834b1803ce4b9dcab459e57e0376fd6cf" + integrity sha512-661VQefsARxVyyV2FX9V61V+nNgImk7aN2hYlFKla6BCwZfMng+dEtD0xVGyg1PfRw0qvEv5LQyxMVgHcUSevA== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/signature-v4@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4/-/signature-v4-3.224.0.tgz#4bcc25ce5909767cadc46a22f685298e6599797c" - integrity sha512-+oq1iylYQOvdXXO7r18SEhXIZpLd3GvJhmoReX+yjvVq8mGevDAmQiw6lwFZ6748sOmH4CREWD5H9Snrj+zLMg== +"@aws-sdk/signature-v4@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4/-/signature-v4-3.226.0.tgz#100390b5c5b55a9b0abd05b06fceb36cfa0ecf98" + integrity sha512-/R5q5agdPd7HJB68XMzpxrNPk158EHUvkFkuRu5Qf3kkkHebEzWEBlWoVpUe6ss4rP9Tqcue6xPuaftEmhjpYw== dependencies: "@aws-sdk/is-array-buffer" "3.201.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" "@aws-sdk/util-hex-encoding" "3.201.0" - "@aws-sdk/util-middleware" "3.224.0" + "@aws-sdk/util-middleware" "3.226.0" "@aws-sdk/util-uri-escape" "3.201.0" tslib "^2.3.1" -"@aws-sdk/smithy-client@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/smithy-client/-/smithy-client-3.224.0.tgz#26a3e2cd03cd1b78faa53849a86d62fe78847165" - integrity sha512-KXXzzrCBv8ewWdtm/aolZHr2f9NRZOcDutFaWXbfSptEsK50Zi9PNzB9ZVKUHyAXYjwJHb2Sl18WRrwIxH6H4g== +"@aws-sdk/smithy-client@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/smithy-client/-/smithy-client-3.226.0.tgz#d6869ca3627ca33024616c0ec3f707981e080d59" + integrity sha512-BWr1FhWSUhkSBp0TLzliD5AQBjA2Jmo9FlOOt+cBwd9BKkSGlGj+HgATYJ83Sjjg2+J6qvEZBxB78LKVHhorBw== dependencies: - "@aws-sdk/middleware-stack" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/middleware-stack" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/token-providers@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.224.0.tgz#1272606088dabf334edfe2ba0e646fa5c87891e2" - integrity sha512-cswWqA4n1v3JIALYRA8Tq/4uHcFpBg5cgi2khNHBCF/H09Hu3dynGup6Ji8cCzf3fTak4eBQipcWaWUGE0hTGw== +"@aws-sdk/token-providers@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.226.0.tgz#30bf8201bd5583ed7c61350be0c11d69f84ea332" + integrity sha512-3ouRt2i3ve8ivg54PxPhtOTcipzf6BoQsMw0EiO23yYKujhyeFH2IkxV4EYC687xFrUjheqJf8FWU/DD8EQ/ow== dependencies: - "@aws-sdk/client-sso-oidc" "3.224.0" - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/shared-ini-file-loader" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/client-sso-oidc" "3.226.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/shared-ini-file-loader" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/types@3.224.0", "@aws-sdk/types@^3.1.0", "@aws-sdk/types@^3.110.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.224.0.tgz#1c3b26bb3f4d5b63068154af98078aa7bcbf892f" - integrity sha512-7te9gRondKPjEebyiPYn59Kr5LZOL48HXC05TzFIN/JXwWPJbQpROBPeKd53V1aRdr3vSQhDY01a+vDOBBrEUQ== - -"@aws-sdk/url-parser@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/url-parser/-/url-parser-3.224.0.tgz#8d61903af4f18367d3711c09537205b46ed09bd7" - integrity sha512-DGQoiOxRVq9eEbmcGF7oz/htcHxFtLlUTzKbaX1gFuh1kmhRQwJIzz6vkrMdxOgPjvUYMJuMEcYnsHolDNWbMg== +"@aws-sdk/types@3.226.0", "@aws-sdk/types@^3.1.0", "@aws-sdk/types@^3.110.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.226.0.tgz#3dba2ba223fbb8ac1ebc84de0e036ce69a81d469" + integrity sha512-MmmNHrWeO4man7wpOwrAhXlevqtOV9ZLcH4RhnG5LmRce0RFOApx24HoKENfFCcOyCm5LQBlsXCqi0dZWDWU0A== dependencies: - "@aws-sdk/querystring-parser" "3.224.0" - "@aws-sdk/types" "3.224.0" + tslib "^2.3.1" + +"@aws-sdk/url-parser@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/url-parser/-/url-parser-3.226.0.tgz#f53d1f868b27fe74aca091a799f2af56237b15a2" + integrity sha512-p5RLE0QWyP0OcTOLmFcLdVgUcUEzmEfmdrnOxyNzomcYb0p3vUagA5zfa1HVK2azsQJFBv28GfvMnba9bGhObg== + dependencies: + "@aws-sdk/querystring-parser" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" "@aws-sdk/util-base64@3.208.0": @@ -727,34 +729,34 @@ dependencies: tslib "^2.3.1" -"@aws-sdk/util-defaults-mode-browser@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.224.0.tgz#b4b6b9cfd25f78b7bb1cb448796e72abf6f44230" - integrity sha512-umk+A/pmlbuyvDCgdndgJUa0xitcTUF7XoUt/3qDTpNbzR5Dzgdbz74BgXUAEBJ8kPP5pCo2VE1ZD7fxqYU/dQ== +"@aws-sdk/util-defaults-mode-browser@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.226.0.tgz#f6f3092463533f33d95d0bdb17fc5c511ad2b072" + integrity sha512-chLx+6AeMSjuPsCVbI1B4Pg3jftjjcsuTsJucjo0DKBb1VSWqPCitmOILQVvKiA2Km8TSs3VcbUuOCyDExkzAg== dependencies: - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/types" "3.226.0" bowser "^2.11.0" tslib "^2.3.1" -"@aws-sdk/util-defaults-mode-node@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.224.0.tgz#f3916144ad3c6d197a09a5823c9ba823f667346e" - integrity sha512-ZJQJ1McbQ5Rnf5foCFAKHT8Cbwg4IbM+bb6fCkHRJFH9AXEvwc+hPtSYf0KuI7TmoZFj9WG5JOE9Ns6g7lRHSA== +"@aws-sdk/util-defaults-mode-node@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.226.0.tgz#34115b6631d0d3a7d57c1c88875e74fb5f06972f" + integrity sha512-Zr0AEj6g8gqiOhr31Pa2tdOFdPQciaAUCg3Uj/eH0znNBdVoptCj67oCW/I5v4pY4ZLZtGhr3uuoxDJH2MB3yg== dependencies: - "@aws-sdk/config-resolver" "3.224.0" - "@aws-sdk/credential-provider-imds" "3.224.0" - "@aws-sdk/node-config-provider" "3.224.0" - "@aws-sdk/property-provider" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/config-resolver" "3.226.0" + "@aws-sdk/credential-provider-imds" "3.226.0" + "@aws-sdk/node-config-provider" "3.226.0" + "@aws-sdk/property-provider" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" -"@aws-sdk/util-endpoints@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.224.0.tgz#14bae5ef71e68b9dc3049c37a841657fd08932d2" - integrity sha512-k5hHbk7AP/cajw5rF7wmKP39B0WQMFdxrn8dcVOHVK0FZeKbaGCEmOf3AYXrQhswR9Xo815Rqffoml9B1z3bCA== +"@aws-sdk/util-endpoints@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.226.0.tgz#3728b2e30f6f757ae862a0b7cf3991e75f252c3f" + integrity sha512-iqOkac/zLmyPBUJd7SLN0PeZMkOmlGgD5PHmmekTClOkce2eUjK9SNX1PzL73aXPoPTyhg9QGLH8uEZEQ8YUzg== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" "@aws-sdk/util-hex-encoding@3.201.0": @@ -771,10 +773,10 @@ dependencies: tslib "^2.3.1" -"@aws-sdk/util-middleware@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-middleware/-/util-middleware-3.224.0.tgz#17f046586b3c81cb668ea58a0a212e458be29f23" - integrity sha512-yA20k9sJdFgs7buVilWExUSJ/Ecr5UJRNQlmgzIpBo9kh5x/N8WyB4kN5MQw5UAA1UZ+j3jmA9+YLFT/mbX3IQ== +"@aws-sdk/util-middleware@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-middleware/-/util-middleware-3.226.0.tgz#7069ae96e2e00f6bb82c722e073922fb2b051ca2" + integrity sha512-B96CQnwX4gRvQdaQkdUtqvDPkrptV5+va6FVeJOocU/DbSYMAScLxtR3peMS8cnlOT6nL1Eoa42OI9AfZz1VwQ== dependencies: tslib "^2.3.1" @@ -785,22 +787,22 @@ dependencies: tslib "^2.3.1" -"@aws-sdk/util-user-agent-browser@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.224.0.tgz#8502243f543433f2a1f29e8dc74444a080293a83" - integrity sha512-Dm/30cLUIM1Oam4V//m9sPrXyGOKFslUXP7Mz2AlR1HelUYoreWAIe7Rx44HR6PaXyZmjW5K0ItmcJ7tCgyMpw== +"@aws-sdk/util-user-agent-browser@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.226.0.tgz#164bb2da8d6353133784e47f0a0ae463bc9ebb73" + integrity sha512-PhBIu2h6sPJPcv2I7ELfFizdl5pNiL4LfxrasMCYXQkJvVnoXztHA1x+CQbXIdtZOIlpjC+6BjDcE0uhnpvfcA== dependencies: - "@aws-sdk/types" "3.224.0" + "@aws-sdk/types" "3.226.0" bowser "^2.11.0" tslib "^2.3.1" -"@aws-sdk/util-user-agent-node@3.224.0": - version "3.224.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.224.0.tgz#c1f129417f9059966a070f65f8b7ed6fd4550e1f" - integrity sha512-BTj0vPorfT7AJzv6RxJHrnAKdIHwZmGjp5TFFaCYgFkHAPsyCPceSdZUjBRW+HbiwEwKfoHOXLGjnOBSqddZKg== +"@aws-sdk/util-user-agent-node@3.226.0": + version "3.226.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.226.0.tgz#7569460b9efc6bbd5295275c51357e480ff469c2" + integrity sha512-othPc5Dz/pkYkxH+nZPhc1Al0HndQT8zHD4e9h+EZ+8lkd8n+IsnLfTS/mSJWrfiC6UlNRVw55cItstmJyMe/A== dependencies: - "@aws-sdk/node-config-provider" "3.224.0" - "@aws-sdk/types" "3.224.0" + "@aws-sdk/node-config-provider" "3.226.0" + "@aws-sdk/types" "3.226.0" tslib "^2.3.1" "@aws-sdk/util-utf8-browser@3.188.0", "@aws-sdk/util-utf8-browser@^3.0.0": From c017d6efc39a69abb81d1ce95ca8efe3ed0b288f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 04:09:42 +0000 Subject: [PATCH 07/29] chore(deps-dev): bump prettier from 2.8.0 to 2.8.1 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.0 to 2.8.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.0...2.8.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index ce34baaadb9..dcdd0a3d51b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -19001,9 +19001,9 @@ prepend-http@^2.0.0: integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== prettier@^2.7.1: - version "2.8.0" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.0.tgz#c7df58393c9ba77d6fba3921ae01faf994fb9dc9" - integrity sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA== + version "2.8.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz#4e1fd11c34e2421bc1da9aea9bd8127cd0a35efc" + integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg== pretty-bytes@^4.0.2: version "4.0.2" From 2bddb66d87f3c1a450bff47b006e849f85941e71 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Wed, 7 Dec 2022 21:03:29 -0800 Subject: [PATCH 08/29] fix(docs): Change Path.SetText() docs to use correct name --- markdown/dev/reference/api/path/settext/en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/markdown/dev/reference/api/path/settext/en.md b/markdown/dev/reference/api/path/settext/en.md index 578b3c08908..2fecf3b56b8 100644 --- a/markdown/dev/reference/api/path/settext/en.md +++ b/markdown/dev/reference/api/path/settext/en.md @@ -2,7 +2,7 @@ title: Path.setText() --- -The `Path.addText()` method set text on the path. +The `Path.setText()` method sets text on the path. ## Signature @@ -25,7 +25,7 @@ The second argument will optionally be used to set the CSS class for the text. paths.line = new Path() .move(points.from) .line(points.to) - .addText('FreeSewing rocks') + .setText('FreeSewing rocks') return part } From 5cac5b8e2604741ce58d6580382c63e0f2c94fe1 Mon Sep 17 00:00:00 2001 From: Enoch Riese Date: Thu, 8 Dec 2022 19:52:05 -0600 Subject: [PATCH 09/29] clear unused dependencies from lab, add needed peers --- sites/lab/package.json | 37 +---- yarn.lock | 331 +++++------------------------------------ 2 files changed, 42 insertions(+), 326 deletions(-) diff --git a/sites/lab/package.json b/sites/lab/package.json index eecc2f7a0bf..46a561d5dc8 100644 --- a/sites/lab/package.json +++ b/sites/lab/package.json @@ -30,41 +30,14 @@ }, "dependencies": { "@headlessui/react": "^1.6.6", - "@heroicons/react": "^2.0.1", - "@mdx-js/loader": "^2.0.0-rc.2", - "@mdx-js/mdx": "^2.0.0-rc.2", - "@mdx-js/react": "^2.0.0-rc.2", - "@mdx-js/runtime": "next", - "@tailwindcss/typography": "^0.5.0", - "algoliasearch": "^4.11.0", - "d3-dispatch": "^3.0.1", - "d3-drag": "^3.0.0", - "d3-selection": "^3.0.0", - "daisyui": "^2.0.6", - "lodash.get": "^4.4.2", - "lodash.orderby": "^4.6.0", - "lodash.set": "^4.3.2", + "i18next": "^22.1.4", "next": "latest", "next-i18next": "^13.0.0", - "react-copy-to-clipboard": "^5.0.4", - "react-hotkeys-hook": "^4.0.4", - "react-instantsearch-dom": "^6.18.0", - "react-markdown": "^8.0.0", - "react-swipeable": "^7.0.0", - "react-timeago": "^7.1.0", - "rehype-highlight": "^6.0.0", - "rehype-sanitize": "^5.0.1", - "rehype-stringify": "^9.0.2", - "remark-copy-linked-files": "https://github.com/joostdecock/remark-copy-linked-files", - "remark-gfm": "^3.0.1" - }, - "devDependencies": { - "autoprefixer": "^10.4.0", - "eslint-config-next": "13.0.6", - "js-yaml": "^4.1.0", - "postcss": "^8.4.4", - "tailwindcss": "^3.0.1" + "react": "^18.2.0", + "react-i18next": "^12.1.1", + "react-swipeable": "^7.0.0" }, + "devDependencies": {}, "browserslist": [ "last 2 versions" ] diff --git a/yarn.lock b/yarn.lock index ce34baaadb9..ca9da6ccfd1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1995,7 +1995,7 @@ core-js-pure "^3.20.2" regenerator-runtime "^0.13.4" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.14.0", "@babel/runtime@^7.14.6", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.9", "@babel/runtime@^7.2.0", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.14.0", "@babel/runtime@^7.14.5", "@babel/runtime@^7.14.6", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.9", "@babel/runtime@^7.2.0", "@babel/runtime@^7.20.6", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4": version "7.20.6" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3" integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA== @@ -2482,11 +2482,6 @@ dependencies: client-only "^0.0.1" -"@heroicons/react@^2.0.1": - version "2.0.12" - resolved "https://registry.yarnpkg.com/@heroicons/react/-/react-2.0.12.tgz#7e5a16c82512f89a30266dd36f8b8465b3e3e216" - integrity sha512-FZxKh3i9aKIDxyALTgIpSF2t6V6/eZfF5mRu41QlwkX3Oxzecdm1u6dpft6PQGxIBwO7TKYWaMAYYL8mp/EaOg== - "@heroicons/react@latest": version "2.0.13" resolved "https://registry.yarnpkg.com/@heroicons/react/-/react-2.0.13.tgz#9b1cc54ff77d6625c9565efdce0054a4bcd9074c" @@ -3347,7 +3342,7 @@ string-strip-html "^8.2.0" tailwindcss "^3.2.4" -"@mdx-js/loader@^2.0.0-rc.2", "@mdx-js/loader@latest": +"@mdx-js/loader@latest": version "2.1.5" resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-2.1.5.tgz#4e764c65333530fd786dfe4f36e918dfeac0200b" integrity sha512-oXjfTa/iAcMmW8DdQ+hQFodPCLqw5VKT2yoZkLwrZfPVVpUgKrI+5/ZePYq328xxtAUStZmR3ed0PWJrwd5Pkg== @@ -3380,26 +3375,7 @@ unist-builder "2.0.3" unist-util-visit "2.0.3" -"@mdx-js/mdx@2.0.0-next.9": - version "2.0.0-next.9" - resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.0.0-next.9.tgz#6af5bf5d975ceccd11d31b4b7f180b2205c7bcfa" - integrity sha512-6i7iLIPApiCdvp4T6n3dI5IqDOvcNx4M3DUJ+AG6xj/NTssJcf5r3Gl4i3Q2tqJp0JAj6bWQ3IOLAefF18Y48g== - dependencies: - "@mdx-js/util" "2.0.0-next.1" - astring "^1.4.0" - detab "^2.0.0" - estree-walker "^2.0.0" - hast-util-to-estree "^1.1.0" - mdast-util-to-hast "^10.1.0" - periscopic "^2.0.0" - rehype-minify-whitespace "^4.0.0" - remark-mdx "2.0.0-next.9" - remark-parse "^9.0.0" - remark-squeeze-paragraphs "^4.0.0" - unified "^9.2.0" - unist-builder "^2.0.0" - -"@mdx-js/mdx@^2.0.0", "@mdx-js/mdx@^2.0.0-rc.2", "@mdx-js/mdx@latest": +"@mdx-js/mdx@^2.0.0", "@mdx-js/mdx@latest": version "2.1.5" resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.1.5.tgz#577937349fd555154382c2f805f5f52834a64903" integrity sha512-zEG0lt+Bl/r5U6e0TOS7qDbsXICtemfAPquxWFsMbdzrvlWaqMGemLl+sjVpqlyaaiCiGVQBSGdCk0t1qXjkQg== @@ -3427,12 +3403,7 @@ resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573" integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg== -"@mdx-js/react@2.0.0-next.9": - version "2.0.0-next.9" - resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.0.0-next.9.tgz#a269c2e2ecd86490e664fef789ae0d795e6ee509" - integrity sha512-ZHEwW79zXQrII6ZSaIDgxd80IDRB6Zg/2N1IivQ62j4qlAZd78rbbAc0BQKwADYpuFg96g0pFbuZ7/+vl1gR6A== - -"@mdx-js/react@^2.0.0-rc.2", "@mdx-js/react@latest": +"@mdx-js/react@latest": version "2.1.5" resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.1.5.tgz#8225a867dae6f845ae5b0ec15bb454c23be3f576" integrity sha512-3Az1I6SAWA9R38rYjz5rXBrGKeZhq96CSSyQtqY+maPj8stBsoUH5pNcmIixuGkufYsh8F5+ka2CVPo2fycWZw== @@ -3449,25 +3420,11 @@ "@mdx-js/react" "1.6.22" buble-jsx-only "^0.19.8" -"@mdx-js/runtime@next": - version "2.0.0-next.9" - resolved "https://registry.yarnpkg.com/@mdx-js/runtime/-/runtime-2.0.0-next.9.tgz#9acea9d10f225ded9ef4175c9b9a5c6f6c48620b" - integrity sha512-a4vhOaq74T0ZZyAsENj1oNAvAZr1hg11QkTogFG40H9vVvehfTDM2/zOt5/zHegP6inWIngUZbI1YWyoM07H3w== - dependencies: - "@mdx-js/mdx" "2.0.0-next.9" - "@mdx-js/react" "2.0.0-next.9" - buble-jsx-only "^0.19.8" - "@mdx-js/util@1.6.22": version "1.6.22" resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b" integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA== -"@mdx-js/util@2.0.0-next.1": - version "2.0.0-next.1" - resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-2.0.0-next.1.tgz#b17a046ed5cb1b13e75b29740504ec53a7e0b016" - integrity sha512-F36kWTFdFXrbNIsM77dhVwYZsZonUIKHkYyYgnuw1NWskBfEn1ET5B5Z5mm58ckKNf7SimchnxR9sKCCtH38WA== - "@motionone/animation@^10.13.1": version "10.14.0" resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.14.0.tgz#2f2a3517183bb58d82e389aac777fe0850079de6" @@ -6253,7 +6210,7 @@ astral-regex@^2.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== -astring@^1.4.0, astring@^1.8.0: +astring@^1.8.0: version "1.8.3" resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.3.tgz#1a0ae738c7cc558f8e5ddc8e3120636f5cebcb85" integrity sha512-sRpyiNrx2dEYIMmUXprS8nlpRg2Drs8m9ElX9vVEXaCB4XEAJhKfs7IcX0IwShjuOAjLR6wzIrgoptz1n19i1A== @@ -7419,11 +7376,6 @@ chalk@^5.0.0, chalk@^5.0.1, chalk@^5.1.2: resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.1.2.tgz#d957f370038b75ac572471e83be4c5ca9f8e8c45" integrity sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ== -character-entities-html4@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125" - integrity sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g== - character-entities-html4@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" @@ -9155,7 +9107,7 @@ destroy@~1.0.4: resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" integrity sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg== -detab@2.0.4, detab@^2.0.0: +detab@2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43" integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g== @@ -10301,11 +10253,6 @@ estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== -estree-util-attach-comments@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-1.0.0.tgz#51d280e458ce85dec0b813bd96d2ce98eae8a3f2" - integrity sha512-sL7dTwFGqzelPlB56lRZY1CC/yDxCe365WQpxNd49ispL40Yv8Tv4SmteGbvZeFwShOOVKfMlo4jrVvwoaMosA== - estree-util-attach-comments@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.0.1.tgz#57dd0ae170ce2a6d9170ad69e6a45c87bcb52d81" @@ -10322,11 +10269,6 @@ estree-util-build-jsx@^2.0.0: estree-util-is-identifier-name "^2.0.0" estree-walker "^3.0.0" -estree-util-is-identifier-name@^1.0.0, estree-util-is-identifier-name@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz#2e3488ea06d9ea2face116058864f6370b37456d" - integrity sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ== - estree-util-is-identifier-name@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz#cf07867f42705892718d9d89eb2d85eaa8f0fcb5" @@ -10349,11 +10291,6 @@ estree-util-visit@^1.0.0: "@types/estree-jsx" "^0.0.1" "@types/unist" "^2.0.0" -estree-walker@^2.0.0, estree-walker@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" - integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== - estree-walker@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.1.tgz#c2a9fb4a30232f5039b7c030b37ead691932debd" @@ -11989,13 +11926,6 @@ hast-to-hyperscript@^9.0.0: unist-util-is "^4.0.0" web-namespaces "^1.0.0" -hast-util-embedded@^1.0.0: - version "1.0.6" - resolved "https://registry.yarnpkg.com/hast-util-embedded/-/hast-util-embedded-1.0.6.tgz#ea7007323351cc43e19e1d6256b7cde66ad1aa03" - integrity sha512-JQMW+TJe0UAIXZMjCJ4Wf6ayDV9Yv3PBDPsHD4ExBpAspJ6MOcCX+nzVF+UJVv7OqPcg852WEMSHQPoRA+FVSw== - dependencies: - hast-util-is-element "^1.1.0" - hast-util-embedded@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/hast-util-embedded/-/hast-util-embedded-2.0.0.tgz#877f4261044854743fc2621f728930ca61c8376f" @@ -12060,11 +11990,6 @@ hast-util-is-body-ok-link@^2.0.0: hast-util-has-property "^2.0.0" hast-util-is-element "^2.0.0" -hast-util-is-element@^1.0.0, hast-util-is-element@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz#3b3ed5159a2707c6137b48637fbfe068e175a425" - integrity sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ== - hast-util-is-element@^2.0.0: version "2.1.2" resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz#fc0b0dc7cef3895e839b8d66979d57b0338c68f3" @@ -12157,21 +12082,6 @@ hast-util-select@~5.0.1: unist-util-visit "^4.0.0" zwitch "^2.0.0" -hast-util-to-estree@^1.1.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-1.4.0.tgz#896ef9150a3f5cfbaff37334f75f31d6a324bab6" - integrity sha512-CiOAIESUKkSOcYbvTth9+yM28z5ArpsYqxWc7LWJxOx975WRUBDjvVuuzZR2o09BNlkf7bp8G2GlOHepBRKJ8Q== - dependencies: - comma-separated-tokens "^1.0.0" - estree-util-attach-comments "^1.0.0" - estree-util-is-identifier-name "^1.1.0" - hast-util-whitespace "^1.0.0" - property-information "^5.0.0" - space-separated-tokens "^1.0.0" - style-to-object "^0.3.0" - unist-util-position "^3.1.0" - zwitch "^1.0.0" - hast-util-to-estree@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.0.2.tgz#79c5bf588915610b3f0d47ca83a74dc0269c7dc2" @@ -12247,11 +12157,6 @@ hast-util-to-text@^3.0.0: hast-util-is-element "^2.0.0" unist-util-find-after "^4.0.0" -hast-util-whitespace@^1.0.0, hast-util-whitespace@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-1.0.4.tgz#e4fe77c4a9ae1cb2e6c25e02df0043d0164f6e41" - integrity sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A== - hast-util-whitespace@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz#4fc1086467cc1ef5ba20673cb6b03cec3a970f1c" @@ -12408,6 +12313,13 @@ html-escaper@^2.0.0: resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== +html-parse-stringify@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz#dfc1017347ce9f77c8141a507f233040c59c55d2" + integrity sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg== + dependencies: + void-elements "3.1.0" + html-void-elements@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483" @@ -12594,6 +12506,13 @@ i18next-fs-backend@^2.0.0: resolved "https://registry.yarnpkg.com/i18next-fs-backend/-/i18next-fs-backend-2.0.1.tgz#5e33f28565257617682d622f6ce2c672d3f0ccc5" integrity sha512-fzeiFOXqsMiFAFUnNyC4buERI11vTAuf7JIDWqaiPgBK3R+XJQMSY1LyoXaWspBEFaAkXH/0uMbOv7nttBFztg== +i18next@^22.1.4: + version "22.1.4" + resolved "https://registry.yarnpkg.com/i18next/-/i18next-22.1.4.tgz#907a4e710889ae23fb92f3510a0f7147823f92ff" + integrity sha512-MCDtNRyovLY22rgLoZdCzg2QIza1V1A/3Hxb99akJzTDjcqCRWEsglTpFUt0vUjOxSxz+WmxmFETLHORRS+n6Q== + dependencies: + "@babel/runtime" "^7.20.6" + iconv-lite@0.4.24, iconv-lite@^0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -13389,13 +13308,6 @@ is-promise@^4.0.0: resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3" integrity sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== -is-reference@^1.1.4: - version "1.2.1" - resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" - integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== - dependencies: - "@types/estree" "*" - is-reference@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.0.tgz#b1380c03d96ddf7089709781e3208fceb0c92cd6" @@ -14821,11 +14733,6 @@ loglevelnext@^1.0.1: es6-symbol "^3.1.1" object.assign "^4.1.0" -longest-streak@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" - integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== - longest-streak@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.0.1.tgz#c97315b7afa0e7d9525db9a5a2953651432bdc5d" @@ -15080,7 +14987,7 @@ mdast-util-find-and-replace@^2.0.0: unist-util-is "^5.0.0" unist-util-visit-parents "^5.0.0" -mdast-util-from-markdown@^0.8.0, mdast-util-from-markdown@^0.8.5: +mdast-util-from-markdown@^0.8.5: version "0.8.5" resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== @@ -15191,13 +15098,6 @@ mdast-util-mdx-expression@^1.0.0, mdast-util-mdx-expression@^1.1.0: mdast-util-from-markdown "^1.0.0" mdast-util-to-markdown "^1.0.0" -mdast-util-mdx-expression@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-0.1.1.tgz#fa1a04a5ea6777b0e8db6c120adf03088595df95" - integrity sha512-SoO8y1B9NjMOYlNdwXMchuTVvqSTlUmXm1P5QvZNPv7OH7aa8qJV+3aA+vl1DHK9Vk1uZAlgwokjvDQhS6bINA== - dependencies: - strip-indent "^3.0.0" - mdast-util-mdx-jsx@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.0.2.tgz#087448dc29f6df9b9d9951132f82c20bd378bb68" @@ -15214,28 +15114,6 @@ mdast-util-mdx-jsx@^2.0.0: unist-util-stringify-position "^3.0.0" vfile-message "^3.0.0" -mdast-util-mdx-jsx@~0.1.0: - version "0.1.4" - resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-0.1.4.tgz#868371b90b17337b4f072a07021f7ce19612cf34" - integrity sha512-67KOAvCmypBSpr+AJEAVQg1Obig5Wnguo4ETTxASe5WVP4TLt57bZjDX/9EW5sWYQsO4gPqLxkUOlypVn5rkhg== - dependencies: - mdast-util-to-markdown "^0.6.0" - parse-entities "^2.0.0" - stringify-entities "^3.1.0" - unist-util-remove-position "^3.0.0" - unist-util-stringify-position "^2.0.0" - vfile-message "^2.0.0" - -mdast-util-mdx@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-0.1.1.tgz#16acbc6cabe33f4cebeb63fa9cf8be5da1d56fbf" - integrity sha512-9nncdnHNYSb4HNxY3AwE6gU632jhbXsDGXe9PkkJoEawYWJ8tTwmEOHGlGa2TCRidtkd6FF5I8ogDU9pTDlQyA== - dependencies: - mdast-util-mdx-expression "~0.1.0" - mdast-util-mdx-jsx "~0.1.0" - mdast-util-mdxjs-esm "~0.1.0" - mdast-util-to-markdown "^0.6.1" - mdast-util-mdx@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz#dd4f6c993cf27da32725e50a04874f595b7b63fb" @@ -15256,11 +15134,6 @@ mdast-util-mdxjs-esm@^1.0.0: mdast-util-from-markdown "^1.0.0" mdast-util-to-markdown "^1.0.0" -mdast-util-mdxjs-esm@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-0.1.1.tgz#69134a0dad71a59a9e0e9cfdc0633dde31dff69a" - integrity sha512-kBiYeashz+nuhfv+712nc4THQhzXIH2gBFUDbuLxuDCqU/fZeg+9FAcdRBx9E13dkpk1p2Xwufzs3wsGJ+mISQ== - mdast-util-to-hast@10.0.1: version "10.0.1" resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb" @@ -15275,20 +15148,6 @@ mdast-util-to-hast@10.0.1: unist-util-position "^3.0.0" unist-util-visit "^2.0.0" -mdast-util-to-hast@^10.1.0: - version "10.2.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.2.0.tgz#61875526a017d8857b71abc9333942700b2d3604" - integrity sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ== - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - mdast-util-definitions "^4.0.0" - mdurl "^1.0.0" - unist-builder "^2.0.0" - unist-util-generated "^1.0.0" - unist-util-position "^3.0.0" - unist-util-visit "^2.0.0" - mdast-util-to-hast@^12.0.0, mdast-util-to-hast@^12.1.0: version "12.2.0" resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.2.0.tgz#4dbff7ab2b20b8d12fc8fe98bf804d97e7358cbf" @@ -15306,18 +15165,6 @@ mdast-util-to-hast@^12.0.0, mdast-util-to-hast@^12.1.0: unist-util-position "^4.0.0" unist-util-visit "^4.0.0" -mdast-util-to-markdown@^0.6.0, mdast-util-to-markdown@^0.6.1: - version "0.6.5" - resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" - integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== - dependencies: - "@types/unist" "^2.0.0" - longest-streak "^2.0.0" - mdast-util-to-string "^2.0.0" - parse-entities "^2.0.0" - repeat-string "^1.0.0" - zwitch "^1.0.0" - mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.3.0.tgz#38b6cdc8dc417de642a469c4fc2abdf8c931bd1e" @@ -15566,14 +15413,6 @@ micromark-extension-gfm@^2.0.0: micromark-util-combine-extensions "^1.0.0" micromark-util-types "^1.0.0" -micromark-extension-mdx-expression@^0.3.0, micromark-extension-mdx-expression@^0.3.2, micromark-extension-mdx-expression@~0.3.0: - version "0.3.2" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-0.3.2.tgz#827592af50116110dc9ee27201a73c037e61aa27" - integrity sha512-Sh8YHLSAlbm/7TZkVKEC4wDcJE8XhVpZ9hUXBue1TcAicrrzs/oXu7PHH3NcyMemjGyMkiVS34Y0AHC5KG3y4A== - dependencies: - micromark "~2.11.0" - vfile-message "^2.0.0" - micromark-extension-mdx-expression@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz#cd3843573921bf55afcfff4ae0cd2e857a16dcfa" @@ -15602,16 +15441,6 @@ micromark-extension-mdx-jsx@^1.0.0: uvu "^0.5.0" vfile-message "^3.0.0" -micromark-extension-mdx-jsx@~0.3.0: - version "0.3.3" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-0.3.3.tgz#68e8e700f2860e32e96ff48e44afb7465d462e21" - integrity sha512-kG3VwaJlzAPdtIVDznfDfBfNGMTIzsHqKpTmMlew/iPnUCDRNkX+48ElpaOzXAtK5axtpFKE3Hu3VBriZDnRTQ== - dependencies: - estree-util-is-identifier-name "^1.0.0" - micromark "~2.11.0" - micromark-extension-mdx-expression "^0.3.2" - vfile-message "^2.0.0" - micromark-extension-mdx-md@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz#382f5df9ee3706dd120b51782a211f31f4760d22" @@ -15619,21 +15448,6 @@ micromark-extension-mdx-md@^1.0.0: dependencies: micromark-util-types "^1.0.0" -micromark-extension-mdx-md@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-0.1.1.tgz#277b4e82ada37bfdf222f6c3530e20563d73e064" - integrity sha512-emlFQEyfx/2aPhwyEqeNDfKE6jPH1cvLTb5ANRo4qZBjaUObnzjLRdzK8RJ4Xc8+/dOmKN8TTRxFnOYF5/EAwQ== - -micromark-extension-mdx@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/micromark-extension-mdx/-/micromark-extension-mdx-0.2.1.tgz#074b85013909481d23f382f17dced7b4cd173c0a" - integrity sha512-J+nZegf1ExPz1Ft6shxu8M9WfRom1gwRIx6gpJK1SEEqKzY5LjOR1d/WHRtjwV4KoMXrL53+PoN7T1Rw1euJew== - dependencies: - micromark "~2.11.0" - micromark-extension-mdx-expression "~0.3.0" - micromark-extension-mdx-jsx "~0.3.0" - micromark-extension-mdx-md "~0.1.0" - micromark-extension-mdxjs-esm@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz#630d9dc9db2c2fd470cac8c1e7a824851267404d" @@ -15648,28 +15462,6 @@ micromark-extension-mdxjs-esm@^1.0.0: uvu "^0.5.0" vfile-message "^3.0.0" -micromark-extension-mdxjs-esm@~0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-0.3.1.tgz#40a710fe145b381e39a2930db2813f3efaa014ac" - integrity sha512-tuLgcELrgY1a5tPxjk+MrI3BdYtwW67UaHZdzKiDYD8loNbxwIscfdagI6A2BKuAkrfeyHF6FW3B8KuDK3ZMXw== - dependencies: - micromark "~2.11.0" - micromark-extension-mdx-expression "^0.3.0" - vfile-message "^2.0.0" - -micromark-extension-mdxjs@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-0.3.0.tgz#35ecebaf14b8377b6046b659780fd3111196eccd" - integrity sha512-NQuiYA0lw+eFDtSG4+c7ao3RG9dM4P0Kx/sn8OLyPhxtIc6k+9n14k5VfLxRKfAxYRTo8c5PLZPaRNmslGWxJw== - dependencies: - acorn "^8.0.0" - acorn-jsx "^5.0.0" - micromark "~2.11.0" - micromark-extension-mdx-expression "~0.3.0" - micromark-extension-mdx-jsx "~0.3.0" - micromark-extension-mdx-md "~0.1.0" - micromark-extension-mdxjs-esm "~0.3.0" - micromark-extension-mdxjs@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz#772644e12fc8299a33e50f59c5aa15727f6689dd" @@ -17837,14 +17629,6 @@ performance-now@^2.1.0: resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== -periscopic@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-2.0.3.tgz#326e16c46068172ca9a9d20af1a684cd0796fa99" - integrity sha512-FuCZe61mWxQOJAQFEfmt9FjzebRlcpFz8sFPbyaCKtdusPkMEbA9ey0eARnRav5zAhmXznhaQkKGFAPn7X9NUw== - dependencies: - estree-walker "^2.0.2" - is-reference "^1.1.4" - periscopic@^3.0.0: version "3.0.4" resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.0.4.tgz#b3fbed0d1bc844976b977173ca2cd4a0ef4fa8d1" @@ -19527,6 +19311,14 @@ react-hotkeys-hook@^4.0.4: resolved "https://registry.yarnpkg.com/react-hotkeys-hook/-/react-hotkeys-hook-4.0.4.tgz#41675ce5f82cf1a978e89e16461242f2cd132e81" integrity sha512-3w8Sk3ElOOv8+e8YreXlF4fl57iHcJ7GacocSKvvVRhGZDBzTfOe+DKz31ogtYJx7n9PRW5wMlaw2GDKhvUJeA== +react-i18next@^12.1.1: + version "12.1.1" + resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-12.1.1.tgz#2626cdbfe6bcb76ef833861c0184a5c4e5e3c089" + integrity sha512-mFdieOI0LDy84q3JuZU6Aou1DoWW2fhapcTGeBS8+vWSJuViuoCLQAMYSb0QoHhXS8B0WKUOPpx4cffAP7r/aA== + dependencies: + "@babel/runtime" "^7.14.5" + html-parse-stringify "^3.0.1" + react-icon-base@^2.1.2: version "2.1.2" resolved "https://registry.npmjs.org/react-icon-base/-/react-icon-base-2.1.2.tgz#a17101dad9c1192652356096860a9ab43a0766c7" @@ -20162,16 +19954,6 @@ rehype-ignore@^1.0.1: unified "~10.1.2" unist-util-visit "~4.1.0" -rehype-minify-whitespace@^4.0.0: - version "4.0.5" - resolved "https://registry.yarnpkg.com/rehype-minify-whitespace/-/rehype-minify-whitespace-4.0.5.tgz#5b4781786116216f6d5d7ceadf84e2489dd7b3cd" - integrity sha512-QC3Z+bZ5wbv+jGYQewpAAYhXhzuH/TVRx7z08rurBmh9AbG8Nu8oJnvs9LWj43Fd/C7UIhXoQ7Wddgt+ThWK5g== - dependencies: - hast-util-embedded "^1.0.0" - hast-util-is-element "^1.0.0" - hast-util-whitespace "^1.0.4" - unist-util-is "^4.0.0" - rehype-minify-whitespace@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/rehype-minify-whitespace/-/rehype-minify-whitespace-5.0.1.tgz#79729a0146aa97a9d43e1eb4b5884974e2f37e77" @@ -20655,15 +20437,6 @@ remark-mdx@1.6.22: remark-parse "8.0.3" unified "9.2.0" -remark-mdx@2.0.0-next.9: - version "2.0.0-next.9" - resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.0.0-next.9.tgz#3e2088550ddd4264ce48bca15fb297569d369e65" - integrity sha512-I5dCKP5VE18SMd5ycIeeEk8Hl6oaldUY6PIvjrfm65l7d0QRnLqknb62O2g3QEmOxCswcHTtwITtz6rfUIVs+A== - dependencies: - mdast-util-mdx "^0.1.1" - micromark-extension-mdx "^0.2.0" - micromark-extension-mdxjs "^0.3.0" - remark-mdx@^2.0.0: version "2.1.2" resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.1.2.tgz#eea2784fa5697e14f6e0686700077986b88b8078" @@ -20714,13 +20487,6 @@ remark-parse@^10.0.0: mdast-util-from-markdown "^1.0.0" unified "^10.0.0" -remark-parse@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" - integrity sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw== - dependencies: - mdast-util-from-markdown "^0.8.0" - remark-preset-lint-consistent@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/remark-preset-lint-consistent/-/remark-preset-lint-consistent-5.1.1.tgz#c870a2379e109cb6d7a10cd2d3b91f34e3f89e71" @@ -20784,7 +20550,7 @@ remark-smartypants@^2.0.0: retext-smartypants "^5.1.0" unist-util-visit "^4.1.0" -remark-squeeze-paragraphs@4.0.0, remark-squeeze-paragraphs@^4.0.0: +remark-squeeze-paragraphs@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead" integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw== @@ -20820,7 +20586,7 @@ repeat-element@^1.1.2: resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== -repeat-string@^1.0.0, repeat-string@^1.5.2, repeat-string@^1.5.4, repeat-string@^1.6.1: +repeat-string@^1.5.2, repeat-string@^1.5.4, repeat-string@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== @@ -22251,15 +22017,6 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -stringify-entities@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-3.1.0.tgz#b8d3feac256d9ffcc9fa1fefdcf3ca70576ee903" - integrity sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg== - dependencies: - character-entities-html4 "^1.0.0" - character-entities-legacy "^1.0.0" - xtend "^4.0.0" - stringify-entities@^4.0.0, stringify-entities@^4.0.2: version "4.0.3" resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.3.tgz#cfabd7039d22ad30f3cc435b0ca2c1574fc88ef8" @@ -23400,18 +23157,6 @@ unified@^10.0.0, unified@^10.1.0, unified@~10.1.1, unified@~10.1.2: trough "^2.0.0" vfile "^5.0.0" -unified@^9.2.0: - version "9.2.2" - resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.2.tgz#67649a1abfc3ab85d2969502902775eb03146975" - integrity sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ== - dependencies: - bail "^1.0.0" - extend "^3.0.0" - is-buffer "^2.0.0" - is-plain-obj "^2.0.0" - trough "^1.0.0" - vfile "^4.0.0" - union-value@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" @@ -23537,7 +23282,7 @@ unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0: dependencies: "@types/unist" "^2.0.0" -unist-util-position@^3.0.0, unist-util-position@^3.1.0: +unist-util-position@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47" integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== @@ -23556,13 +23301,6 @@ unist-util-remove-position@^2.0.0: dependencies: unist-util-visit "^2.0.0" -unist-util-remove-position@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-3.0.0.tgz#4cd19e82c8e665f462b6acfcfd0a8353235a88e9" - integrity sha512-17kIOuolVuK16LMb9KyMJlqdfCtlfQY5FjY3Sdo9iC7F5wqdXhNjMq0PBvMpkVNNnAmHxXssUW+rZ9T2zbP0Rg== - dependencies: - unist-util-visit "^2.0.0" - unist-util-remove-position@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz#d5b46a7304ac114c8d91990ece085ca7c2c135c8" @@ -24046,6 +23784,11 @@ vm-browserify@^1.0.1: resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== +void-elements@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09" + integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w== + w3c-hr-time@^1.0.1: version "1.0.2" resolved "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" From 69f595babb52caf3310103513e4045851cea851a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 04:02:35 +0000 Subject: [PATCH 10/29] chore(deps-dev): bump @types/node from 18.11.11 to 18.11.12 Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.11.11 to 18.11.12. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index ce34baaadb9..99e217caf6c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5294,9 +5294,9 @@ "@types/unist" "*" "@types/node@*", "@types/node@>=10.0.0", "@types/node@^18.0.0": - version "18.11.11" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.11.tgz#1d455ac0211549a8409d3cdb371cd55cc971e8dc" - integrity sha512-KJ021B1nlQUBLopzZmPBVuGU9un7WJd/W4ya7Ih02B4Uwky5Nja0yGYav2EfYIk0RR2Q9oVhf60S2XR1BCWJ2g== + version "18.11.12" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.12.tgz#89e7f8aa8c88abf432f9bd594888144d7dba10aa" + integrity sha512-FgD3NtTAKvyMmD44T07zz2fEf+OKwutgBCEVM8GcvMGVGaDktiLNTDvPwC/LUe3PinMW+X6CuLOF2Ui1mAlSXg== "@types/node@^14.0.0": version "14.18.26" From f57a5da3bebca1eba68f9d0ccd2121f52d03da16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 04:03:53 +0000 Subject: [PATCH 11/29] chore(deps): bump @headlessui/react from 1.7.4 to 1.7.5 Bumps [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) from 1.7.4 to 1.7.5. - [Release notes](https://github.com/tailwindlabs/headlessui/releases) - [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v1.7.5/packages/@headlessui-react) --- updated-dependencies: - dependency-name: "@headlessui/react" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index ce34baaadb9..9058ea4bf34 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2476,9 +2476,9 @@ integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== "@headlessui/react@^1.6.6": - version "1.7.4" - resolved "https://registry.yarnpkg.com/@headlessui/react/-/react-1.7.4.tgz#ba7f50fda20667276ee84fcd4c2a459aa26187e3" - integrity sha512-D8n5yGCF3WIkPsjEYeM8knn9jQ70bigGGb5aUvN6y4BGxcT3OcOQOKcM3zRGllRCZCFxCZyQvYJF6ZE7bQUOyQ== + version "1.7.5" + resolved "https://registry.yarnpkg.com/@headlessui/react/-/react-1.7.5.tgz#c8864b0731d95dbb34aa6b3a60d0ee9ae6f8a7ca" + integrity sha512-UZSxOfA0CYKO7QDT5OGlFvesvlR1SKkawwSjwQJwt7XQItpzRKdE3ZUQxHcg4LEz3C0Wler2s9psdb872ynwrQ== dependencies: client-only "^0.0.1" From 24399b1f3a1b42944d9f75bd431339b3ba855f00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 04:05:35 +0000 Subject: [PATCH 12/29] chore(deps-dev): bump esbuild from 0.16.0 to 0.16.3 Bumps [esbuild](https://github.com/evanw/esbuild) from 0.16.0 to 0.16.3. - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.16.0...v0.16.3) --- updated-dependencies: - dependency-name: esbuild dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- yarn.lock | 226 +++++++++++++++++++++++++++--------------------------- 1 file changed, 113 insertions(+), 113 deletions(-) diff --git a/yarn.lock b/yarn.lock index ce34baaadb9..613c5805d71 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2326,115 +2326,115 @@ resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== -"@esbuild/android-arm64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.0.tgz#639fd34f1a303d5915c73c465b8ac1e77ef2b15a" - integrity sha512-+N2QMozEH78r7cqT8dWMDr71je5w20GWfdcIpNPvP6Dq0dCcjJ62hecIjZ09faGAXR0na60qdJXFsWCuZ5YHUw== +"@esbuild/android-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.3.tgz#6af6d16be6d534d776a51fc215bfd81a68906d2c" + integrity sha512-RolFVeinkeraDvN/OoRf1F/lP0KUfGNb5jxy/vkIMeRRChkrX/HTYN6TYZosRJs3a1+8wqpxAo5PI5hFmxyPRg== -"@esbuild/android-arm@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.0.tgz#92b7f71bd31316ae69cddeb465803a9e83dda89b" - integrity sha512-KfK1wuIhw3mNdkxHrMds09SqAjb8f9RIH84Wlfx12nKIrkxlUdv09fkbQCdzpQT6UY2CyI759zw6S/j84tPD+Q== +"@esbuild/android-arm@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.3.tgz#2a091222f3b1928e3246fb3c5202eaca88baab67" + integrity sha512-mueuEoh+s1eRbSJqq9KNBQwI4QhQV6sRXIfTyLXSHGMpyew61rOK4qY21uKbXl1iBoMb0AdL1deWFCQVlN2qHA== -"@esbuild/android-x64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.0.tgz#07e2eac7bdf8bed938c5feb3c20f98e41a65c9ec" - integrity sha512-GlvIV2O6vGpNL6Y/jk+Sn+GaNAtUQ2QA5qyC0TL1R4tgPMk+6LdxcU66EMsCVhlzkvi1NoRYB75MILTzPqeqpA== +"@esbuild/android-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.3.tgz#a6d749c58b022d371dc40d50ac1bb4aebd1eb953" + integrity sha512-SFpTUcIT1bIJuCCBMCQWq1bL2gPTjWoLZdjmIhjdcQHaUfV41OQfho6Ici5uvvkMmZRXIUGpM3GxysP/EU7ifQ== -"@esbuild/darwin-arm64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.0.tgz#9ad3afb3e63f15253cc5abb136a9fca8a21a967a" - integrity sha512-c+qO073NNzYmdZozOmivatBHJL5bBqid8P38pJNg0f1fsxD8NgM0tMh9Fz1cSOVbR0fMJOomcI5Kj9Al7k+3+g== +"@esbuild/darwin-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.3.tgz#92d1826ed2f21dcac5830b70d7215c6afbb744e2" + integrity sha512-DO8WykMyB+N9mIDfI/Hug70Dk1KipavlGAecxS3jDUwAbTpDXj0Lcwzw9svkhxfpCagDmpaTMgxWK8/C/XcXvw== -"@esbuild/darwin-x64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.0.tgz#635265146bdb70fdbf15726473225bb97564fe62" - integrity sha512-bp9Nbh1LTzxPvdCxLTuGiUlWJ4qITaLaV4Ku8FikrLO0cLuoppju4p7UXwBQGHXrCY3TYS0zON2Mi/ujGp3oew== +"@esbuild/darwin-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.3.tgz#7fc3570c2b16e9ff4fc178593a0a4adb1ae8ea57" + integrity sha512-uEqZQ2omc6BvWqdCiyZ5+XmxuHEi1SPzpVxXCSSV2+Sh7sbXbpeNhHIeFrIpRjAs0lI1FmA1iIOxFozKBhKgRQ== -"@esbuild/freebsd-arm64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.0.tgz#f2c5ffb69287f7a77fa326b4dafa97061d60f8c9" - integrity sha512-EG0G/XghR1qm3WgtKJY77BLiN5UjttqEXhhg47Pp9rZbqRsa5iw2KufbZiYUNye81jSSQLM0WJZv6sOPAvRjow== +"@esbuild/freebsd-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.3.tgz#16735ce16f8c9a4e7289e9e259aa01a8d9874307" + integrity sha512-nJansp3sSXakNkOD5i5mIz2Is/HjzIhFs49b1tjrPrpCmwgBmH9SSzhC/Z1UqlkivqMYkhfPwMw1dGFUuwmXhw== -"@esbuild/freebsd-x64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.0.tgz#40836988ae0a31d3deeb5788765a81428d4ec071" - integrity sha512-70LMjM1P72raUNIzNtuV9mbzx5A+dY9+idS/9pdwWyle8/QeS5u3XF/6NO868XsOG+LhY4B3+nY0T1u9DjVApw== +"@esbuild/freebsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.3.tgz#f4edd1464cb072799ed6b8ab5178478e71c13459" + integrity sha512-TfoDzLw+QHfc4a8aKtGSQ96Wa+6eimljjkq9HKR0rHlU83vw8aldMOUSJTUDxbcUdcgnJzPaX8/vGWm7vyV7ug== -"@esbuild/linux-arm64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.0.tgz#aa054b4fe8bbac65630757c4ac73984d3b1f26d0" - integrity sha512-mk/F4fSGQzZ68RqPxTpYZIsNwP8fp5ER6R3JBOYA3dUUR1nAaRzal0WVXAvTiWDcfdVTxpRB0QdaUBCBpf150g== +"@esbuild/linux-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.3.tgz#4b7ae6fe3618d9a40d6ca39c6edc991ac1447203" + integrity sha512-7I3RlsnxEFCHVZNBLb2w7unamgZ5sVwO0/ikE2GaYvYuUQs9Qte/w7TqWcXHtCwxvZx/2+F97ndiUQAWs47ZfQ== -"@esbuild/linux-arm@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.0.tgz#96b890d892a01ff5d80a55de23125550bd2ceda9" - integrity sha512-ZAu3k8WpclM//mfoeWiQLLihL+1MxC9k7AhYgLtPdEJp8rADyHQM7xRQvmd+BO2YKR1Ts+WGC7OCJvo7Pqz/QQ== +"@esbuild/linux-arm@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.3.tgz#4b3e9f849822e16a76a70844c4db68075b259a58" + integrity sha512-VwswmSYwVAAq6LysV59Fyqk3UIjbhuc6wb3vEcJ7HEJUtFuLK9uXWuFoH1lulEbE4+5GjtHi3MHX+w1gNHdOWQ== -"@esbuild/linux-ia32@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.0.tgz#5f1f5c4e3392d8c4ffcc33102a4b56908da5240d" - integrity sha512-565grRH/xWOKNZifcDY7Oz75X4JeWe9n49zxpuMX//mKB3JKpjhbmePCR8RK9PDSMuRJXAR2TtpmzuAiR9pLjA== +"@esbuild/linux-ia32@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.3.tgz#2ff3936b91bfff62f9ecf7f6411ef399b29ed22d" + integrity sha512-X8FDDxM9cqda2rJE+iblQhIMYY49LfvW4kaEjoFbTTQ4Go8G96Smj2w3BRTwA8IHGoi9dPOPGAX63dhuv19UqA== -"@esbuild/linux-loong64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.0.tgz#15afc3447a5b10b1717d79b7fbdf031641a60f22" - integrity sha512-iH6QAdPb2B9zCA4tx9SaDflT9ys4lrJooIBlM/vQAWL1frJkTnIL5HSR7ASqn/Be30s+FkObC5eR0fNEwjMgag== +"@esbuild/linux-loong64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.3.tgz#ff8aa59f49d9ccbc1ff952ba1f5cd01a534562df" + integrity sha512-hIbeejCOyO0X9ujfIIOKjBjNAs9XD/YdJ9JXAy1lHA+8UXuOqbFe4ErMCqMr8dhlMGBuvcQYGF7+kO7waj2KHw== -"@esbuild/linux-mips64el@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.0.tgz#1bfcfd12dfcd34618826ce9dcd3bee5b07716d02" - integrity sha512-LjVf76f20s8Sgoepa2JgnwAvEVsDal30ayxuzmNhLqJT5qXaYGgpw+rgAKPbg1e7QSNaPqutE2xqbB9nwytZXQ== +"@esbuild/linux-mips64el@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.3.tgz#5dd5e118071c3912df69beedbfd11fb117f0fe5e" + integrity sha512-znFRzICT/V8VZQMt6rjb21MtAVJv/3dmKRMlohlShrbVXdBuOdDrGb+C2cZGQAR8RFyRe7HS6klmHq103WpmVw== -"@esbuild/linux-ppc64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.0.tgz#54ad4d6d109fba582d4c7d832bccf766e997ee22" - integrity sha512-rCk3uAfAFm+Bo4c9qBPVxeYo/gsl9HdexgAvu7HkZg6cPnXScstF0JrHAt1JPYmMba0F/9ewHFR7WYe0v/G1zQ== +"@esbuild/linux-ppc64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.3.tgz#36c62e24eae7fa3f0d921506da8fc1e6098a1364" + integrity sha512-EV7LuEybxhXrVTDpbqWF2yehYRNz5e5p+u3oQUS2+ZFpknyi1NXxr8URk4ykR8Efm7iu04//4sBg249yNOwy5Q== -"@esbuild/linux-riscv64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.0.tgz#55df0b4765c884398939796c4f4652407ec42783" - integrity sha512-0lltEeulLtAfF1+hcA7YRPg6iuHYgCeXZgNaayFU/6WGtIERcjG7yhc/wY2kqbX9quyveoMcb75F7Ahlh2PHQw== +"@esbuild/linux-riscv64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.3.tgz#f0fec8e7affb5bcc817fefc61a21cbb95539e393" + integrity sha512-uDxqFOcLzFIJ+r/pkTTSE9lsCEaV/Y6rMlQjUI9BkzASEChYL/aSQjZjchtEmdnVxDKETnUAmsaZ4pqK1eE5BQ== -"@esbuild/linux-s390x@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.0.tgz#d5bc0221eec59649d09f3ce211b2aea5cd5b71ca" - integrity sha512-d/4JQcGXzYrI126ipVunENYyjHs69MpOMvnEkbsW7zyDUuEinWkKwBhbqUwo3cDeg2IvUfFAUoI6PMH3XVkkAA== +"@esbuild/linux-s390x@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.3.tgz#22e10edd6e91f53c2e1f60e46abd453d7794409b" + integrity sha512-NbeREhzSxYwFhnCAQOQZmajsPYtX71Ufej3IQ8W2Gxskfz9DK58ENEju4SbpIj48VenktRASC52N5Fhyf/aliQ== -"@esbuild/linux-x64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.0.tgz#5f74d248242bf8d6e210bb5ef7de2abc9ca9f4a1" - integrity sha512-wcduN5EXJeqdLPEt1lAk1Obm8lyS6ShSSqke6vEYarp4xjysat4FtHt2pD+wA2Vj0aafaMqEX7iHF3eF7oCE9Q== +"@esbuild/linux-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.3.tgz#38388b73fd9eebe45b073d7d8099b9c2e54f7139" + integrity sha512-SDiG0nCixYO9JgpehoKgScwic7vXXndfasjnD5DLbp1xltANzqZ425l7LSdHynt19UWOcDjG9wJJzSElsPvk0w== -"@esbuild/netbsd-x64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.0.tgz#6bd7db294b8b93552e1f2acb87cbdc4723b0b36a" - integrity sha512-UPMJEmi0rJTczhRPHRHSDcihSrERqgsD/xK+YjONneTLJ2fSzclUpKgZtIOFA61NGTh3GA8nOdoCSdWTV59vBg== +"@esbuild/netbsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.3.tgz#e0270569567f1530b8dbe6d11d5b4930b9cc71ae" + integrity sha512-AzbsJqiHEq1I/tUvOfAzCY15h4/7Ivp3ff/o1GpP16n48JMNAtbW0qui2WCgoIZArEHD0SUQ95gvR0oSO7ZbdA== -"@esbuild/openbsd-x64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.0.tgz#2c98f9e6720c1866a96c99f37e4b5b794e4df2f2" - integrity sha512-jAaGrIRjXddwry6VjV+xB6V6enYMIbM9AVmUlQgM8MQD+JceZGwPqFvKIZWau7SqVQAcnDmPROOIt8UcLdl7zg== +"@esbuild/openbsd-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.3.tgz#3b16642d443848bca605f33ee3978a1890911e6d" + integrity sha512-gSABi8qHl8k3Cbi/4toAzHiykuBuWLZs43JomTcXkjMZVkp0gj3gg9mO+9HJW/8GB5H89RX/V0QP4JGL7YEEVg== -"@esbuild/sunos-x64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.0.tgz#19fab3e80b2882c7d0a3231cd9ef12bc31838ae8" - integrity sha512-Olqs6oAqyRdm1/MyzE4OQJVl9sF6gUMXatDtd8+cgzUHc/UcMprspRogGSIngck910o964qMeY5YIcayggo20w== +"@esbuild/sunos-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.3.tgz#a838f247867380f0ae25ce1936dc5ab6f57b7734" + integrity sha512-SF9Kch5Ete4reovvRO6yNjMxrvlfT0F0Flm+NPoUw5Z4Q3r1d23LFTgaLwm3Cp0iGbrU/MoUI+ZqwCv5XJijCw== -"@esbuild/win32-arm64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.0.tgz#d96b6c2bd1b8c507fab526c72948bc62d0ebedeb" - integrity sha512-UrisFJyz6gNRPUWtPVVrxfpby1TAR4+vmOxDsXcz7l02ZRavuv5I5B1rknQuYEe5qAAOW8ZwIvpLD6XzeI7iCw== +"@esbuild/win32-arm64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.3.tgz#bedd9bef5fb41f89ce2599f1761973cf6d6a67b6" + integrity sha512-u5aBonZIyGopAZyOnoPAA6fGsDeHByZ9CnEzyML9NqntK6D/xl5jteZUKm/p6nD09+v3pTM6TuUIqSPcChk5gg== -"@esbuild/win32-ia32@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.0.tgz#044f78f47588d9cf117975e3baa516c061141347" - integrity sha512-/Eh3ictqYsce7bI1lZSCYfrWKXNutAaxgVEMeDzeIoA46MoPCdb2rlKu+0xOFPHXjbyGnJGVT77whR6B4uFPgg== +"@esbuild/win32-ia32@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.3.tgz#49800aa812d8cc35ceef61e8d3b01224684cc0b1" + integrity sha512-GlgVq1WpvOEhNioh74TKelwla9KDuAaLZrdxuuUgsP2vayxeLgVc+rbpIv0IYF4+tlIzq2vRhofV+KGLD+37EQ== -"@esbuild/win32-x64@0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.0.tgz#a7420d4ba51daf2031333c8619c6bd847e9e1bdd" - integrity sha512-zwptyNiD7ZoCPLikHWOQncjp6NGQmRAQlmZa21t69ON6+q+qyC+Ch/3quFZraJVJ+wCP4WRVdgVzxjwLgAmxlQ== +"@esbuild/win32-x64@0.16.3": + version "0.16.3" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.3.tgz#94047dae921949cfb308117d993c4b941291ae10" + integrity sha512-5/JuTd8OWW8UzEtyf19fbrtMJENza+C9JoPIkvItgTBQ1FO2ZLvjbPO6Xs54vk0s5JB5QsfieUEshRQfu7ZHow== "@eslint/eslintrc@^1.3.3": version "1.3.3" @@ -9903,32 +9903,32 @@ esbuild-plugin-yaml@^0.0.1: js-yaml "^4.0.0" esbuild@^0.16.0: - version "0.16.0" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.0.tgz#1379d2903277c4877da99f37da9d3dda6fd6fc0e" - integrity sha512-IXMG3TMMCG0/dMPPMGg2izXhIHIGlbMO56tWNq9EIXo7E9ALrfCW1MFFu8/jml8Zy0tm+36xqL0xY0FNgdDNoQ== + version "0.16.3" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.3.tgz#5868632fa23f7a8547f2a4ea359c44e946515c94" + integrity sha512-71f7EjPWTiSguen8X/kxEpkAS7BFHwtQKisCDDV3Y4GLGWBaoSCyD5uXkaUew6JDzA9FEN1W23mdnSwW9kqCeg== optionalDependencies: - "@esbuild/android-arm" "0.16.0" - "@esbuild/android-arm64" "0.16.0" - "@esbuild/android-x64" "0.16.0" - "@esbuild/darwin-arm64" "0.16.0" - "@esbuild/darwin-x64" "0.16.0" - "@esbuild/freebsd-arm64" "0.16.0" - "@esbuild/freebsd-x64" "0.16.0" - "@esbuild/linux-arm" "0.16.0" - "@esbuild/linux-arm64" "0.16.0" - "@esbuild/linux-ia32" "0.16.0" - "@esbuild/linux-loong64" "0.16.0" - "@esbuild/linux-mips64el" "0.16.0" - "@esbuild/linux-ppc64" "0.16.0" - "@esbuild/linux-riscv64" "0.16.0" - "@esbuild/linux-s390x" "0.16.0" - "@esbuild/linux-x64" "0.16.0" - "@esbuild/netbsd-x64" "0.16.0" - "@esbuild/openbsd-x64" "0.16.0" - "@esbuild/sunos-x64" "0.16.0" - "@esbuild/win32-arm64" "0.16.0" - "@esbuild/win32-ia32" "0.16.0" - "@esbuild/win32-x64" "0.16.0" + "@esbuild/android-arm" "0.16.3" + "@esbuild/android-arm64" "0.16.3" + "@esbuild/android-x64" "0.16.3" + "@esbuild/darwin-arm64" "0.16.3" + "@esbuild/darwin-x64" "0.16.3" + "@esbuild/freebsd-arm64" "0.16.3" + "@esbuild/freebsd-x64" "0.16.3" + "@esbuild/linux-arm" "0.16.3" + "@esbuild/linux-arm64" "0.16.3" + "@esbuild/linux-ia32" "0.16.3" + "@esbuild/linux-loong64" "0.16.3" + "@esbuild/linux-mips64el" "0.16.3" + "@esbuild/linux-ppc64" "0.16.3" + "@esbuild/linux-riscv64" "0.16.3" + "@esbuild/linux-s390x" "0.16.3" + "@esbuild/linux-x64" "0.16.3" + "@esbuild/netbsd-x64" "0.16.3" + "@esbuild/openbsd-x64" "0.16.3" + "@esbuild/sunos-x64" "0.16.3" + "@esbuild/win32-arm64" "0.16.3" + "@esbuild/win32-ia32" "0.16.3" + "@esbuild/win32-x64" "0.16.3" escalade@^3.1.1: version "3.1.1" From ee162bf99a11b5c33d74a158b99c553c9e41826a Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Thu, 8 Dec 2022 20:40:31 -0800 Subject: [PATCH 13/29] fix(docs): Update and correct Pattern documentation --- markdown/dev/reference/api/pattern/en.md | 8 +++++--- markdown/dev/reference/api/pattern/getconfig/en.md | 2 +- markdown/dev/reference/api/pattern/on/en.md | 2 +- markdown/dev/reference/api/pattern/sample/en.md | 12 ++++++------ .../dev/reference/api/pattern/samplemodels/en.md | 2 +- 5 files changed, 14 insertions(+), 12 deletions(-) diff --git a/markdown/dev/reference/api/pattern/en.md b/markdown/dev/reference/api/pattern/en.md index a739c643db0..946c1d8f765 100644 --- a/markdown/dev/reference/api/pattern/en.md +++ b/markdown/dev/reference/api/pattern/en.md @@ -71,9 +71,11 @@ It just so happens that in most cases, there will be only one settings object in - `Pattern.activePart`: Holds the id of the active part (while drafting) - `Pattern.activeSet`: Holds the id of the active set (while drafting) -- `Pattern.designConfig`: Holds the design's configuration -- `Pattern.designConfig`: Holds the design's configuration -- `Pattern.patternConfig`: Holds the pattern's configuration +- `Pattern.config`: Holds the resolved pattern's configuration +- `Pattern.designConfig`: Holds the design's configuration before resolution +- `Pattern.parts`: Holds the parts used in the pattern +- `Pattern.plugins`: Holds the plugins used in the pattern +- `Pattern.settings`: Holds the settings used for the pattern - `Pattern.store`: Holds the pattern-wide Store - `Pattern.setStores`: Holds an array of stores, one for each set of settings. diff --git a/markdown/dev/reference/api/pattern/getconfig/en.md b/markdown/dev/reference/api/pattern/getconfig/en.md index fa4ebcd3804..978cabc0737 100644 --- a/markdown/dev/reference/api/pattern/getconfig/en.md +++ b/markdown/dev/reference/api/pattern/getconfig/en.md @@ -10,7 +10,7 @@ housekeeping tasks that are typically done behind the scenes when you call return a Pattern's internal configuration. You can use this to see what options a pattern provides, what -measurments it requires, and so on. +measurements it requires, and so on. ## Pattern.getConfig() signature diff --git a/markdown/dev/reference/api/pattern/on/en.md b/markdown/dev/reference/api/pattern/on/en.md index b911a7aa42c..ba02fe65f45 100644 --- a/markdown/dev/reference/api/pattern/on/en.md +++ b/markdown/dev/reference/api/pattern/on/en.md @@ -18,7 +18,7 @@ Pattern pattern.on(string hook, function method) Refer to [the Lifecycle hooks documentation](/reference/hooks/) for a list -of all avaialble lifecycle hooks, as well as the signature of the function you +of all availalble lifecycle hooks, as well as the signature of the function you should pass it. diff --git a/markdown/dev/reference/api/pattern/sample/en.md b/markdown/dev/reference/api/pattern/sample/en.md index 6aacc496939..4262344ad85 100644 --- a/markdown/dev/reference/api/pattern/sample/en.md +++ b/markdown/dev/reference/api/pattern/sample/en.md @@ -9,9 +9,9 @@ top of each other. This method is chainable as it returns the Pattern object Under the hood, this method will call one of -[Pattern.sampleOption()](/reference/apu/pattern/sampleoption), -[Pattern.sampleMeasurement()](/reference/apu/pattern/sampleoption), or -[Pattern.sampleModels()](/reference/apu/pattern/sampleoption) to sample +[Pattern.sampleOption()](/reference/api/pattern/sampleoption), +[Pattern.sampleMeasurement()](/reference/api/pattern/samplemeasurement), or +[Pattern.sampleModels()](/reference/api/pattern/samplemodels) to sample an option, a measurement, or different models respectively. Unlike those three methods where you pass the relevant info to to the method, @@ -27,9 +27,9 @@ The `settings.sample` object can hold the following properties: See the specific sample methods below for more details: -- [Pattern.sampleOption()](/reference/apu/pattern/sampleoption) -- [Pattern.sampleMeasurement()](/reference/apu/pattern/sampleoption) -- [Pattern.sampleModels()](/reference/apu/pattern/sampleoption) +- [Pattern.sampleOption()](/reference/api/pattern/sampleoption) +- [Pattern.sampleMeasurement()](/reference/api/pattern/samplemeasurement) +- [Pattern.sampleModels()](/reference/api/pattern/samplemodels) ## Pattern.sample() signature diff --git a/markdown/dev/reference/api/pattern/samplemodels/en.md b/markdown/dev/reference/api/pattern/samplemodels/en.md index 2d507046bfe..6f5fd52e592 100644 --- a/markdown/dev/reference/api/pattern/samplemodels/en.md +++ b/markdown/dev/reference/api/pattern/samplemodels/en.md @@ -57,5 +57,5 @@ import { cisFemaleAdult } from "@freesewing/models" const Aaron = new Aaron() -const svg = aaron.sampleModels(cisFemaleAdult, "34').render() +const svg = aaron.sampleModels(cisFemaleAdult, "34").render() ``` From 969d481585ac77593d3ed429812eef1b8e462767 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Thu, 8 Dec 2022 20:45:17 -0800 Subject: [PATCH 14/29] fix(core): Update Pattern.sampleOptions() to work with additional option types --- packages/core/src/pattern.mjs | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/packages/core/src/pattern.mjs b/packages/core/src/pattern.mjs index dfa77d54dd3..97c6735ed0c 100644 --- a/packages/core/src/pattern.mjs +++ b/packages/core/src/pattern.mjs @@ -767,17 +767,18 @@ Pattern.prototype.__isStackHidden = function (stackName) { } /** - * Generates an array of settings.options objects for sampling a list option + * Generates an array of settings.options objects for sampling a list or boolean option * * @private * @param {string} optionName - Name of the option to sample * @return {Array} sets - The list of settings objects */ -Pattern.prototype.__listOptionSets = function (optionName) { +Pattern.prototype.__listBoolOptionSets = function (optionName) { let option = this.config.options[optionName] const base = this.__setBase() const sets = [] let run = 1 + if (typeof option.bool !== 'undefined') option = { list: [false, true] } for (const choice of option.list) { const settings = { ...base, @@ -1080,11 +1081,15 @@ Pattern.prototype.__needs = function (partName, set = 0) { * @return {Array} sets - The list of settings objects */ Pattern.prototype.__optionSets = function (optionName) { - let option = this.config.options[optionName] - if (typeof option?.list === 'object') return this.__listOptionSets(optionName) const sets = [] + if (!(optionName in this.config.options)) return sets + let option = this.config.options[optionName] + if (typeof option.list === 'object' || typeof option.bool !== 'undefined') + return this.__listBoolOptionSets(optionName) let factor = 1 let step, val + let numberRuns = 10 + let stepFactor = numberRuns - 1 if (typeof option.min === 'undefined' || typeof option.max === 'undefined') { const min = option * 0.9 const max = option * 1.1 @@ -1092,9 +1097,16 @@ Pattern.prototype.__optionSets = function (optionName) { } if (typeof option.pct !== 'undefined') factor = 100 val = option.min / factor - step = (option.max / factor - val) / 9 + if (typeof option.count !== 'undefined' || typeof option.mm !== 'undefined') { + const numberOfCounts = option.max - option.min + 1 + if (numberOfCounts < 10) { + numberRuns = numberOfCounts + stepFactor = Math.max(numberRuns - 1, 1) + } + } + step = (option.max / factor - val) / stepFactor const base = this.__setBase() - for (let run = 1; run < 11; run++) { + for (let run = 1; run <= numberRuns; run++) { const settings = { ...base, options: { @@ -1106,6 +1118,8 @@ Pattern.prototype.__optionSets = function (optionName) { settings.options[optionName] = val sets.push(settings) val += step + if (typeof option.count !== 'undefined' || typeof option.mm !== 'undefined') + val = Math.round(val) } return sets From 0260a8053463e8eae4f620b3751990412f3d0760 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Thu, 8 Dec 2022 20:45:45 -0800 Subject: [PATCH 15/29] fix(docs): Update Pattern.sampleOptions() documentation --- .../dev/reference/api/pattern/sampleoption/en.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/markdown/dev/reference/api/pattern/sampleoption/en.md b/markdown/dev/reference/api/pattern/sampleoption/en.md index 74a728df157..a7efc51b289 100644 --- a/markdown/dev/reference/api/pattern/sampleoption/en.md +++ b/markdown/dev/reference/api/pattern/sampleoption/en.md @@ -7,13 +7,13 @@ to draft multiple variants of the same pattern, and stack them on top of each other. In this particular case, the variants it drafts depend - on [the type of option](/config/options/): + on [the type of option](/reference/api/part/config/options/): -- For options that are an object with a **min** and **max** property, 10 steps will be sampled, between min and max -- For options that are a numeric value (**constants**), 10 steps will be sampled between 90% and 110% of the value -- For options with a **list** of options, each option in the list will be sampled - -Handle other option types +- For a Percentage or Degree option, 10 steps will be sampled, between min and max +- For a Counter or Millimeter option, a maximum of 10 steps will be sampled, between min and max +- For a Constant numeric option, 10 steps will be sampled between 90% and 110% of the value +- For a List option, each option in the list will be sampled +- For a Boolean option, both `false` and `true` will be sampled The goal of option sampling is to verify the impact of an option on the pattern, and verify that @@ -38,5 +38,5 @@ const pattern = new Aaron({ measurements: cisFemaleAdult34 }) -const svg = pattern.draft().sampleMeasurement('chest') +const svg = pattern.draft().sampleOption('backlineBend') ``` From db12c90956a5416056ae2da176dfa1fd29d3004d Mon Sep 17 00:00:00 2001 From: Enoch Riese Date: Fri, 9 Dec 2022 00:23:06 -0600 Subject: [PATCH 16/29] pin next version to 13.0.5 because 13.0.6 seems to be missing the bin script --- sites/dev/package.json | 2 +- sites/lab/package.json | 2 +- sites/org/package.json | 2 +- yarn.lock | 148 ++++++++++++++++++++--------------------- 4 files changed, 77 insertions(+), 77 deletions(-) diff --git a/sites/dev/package.json b/sites/dev/package.json index 2e4923133ba..133a2841c18 100644 --- a/sites/dev/package.json +++ b/sites/dev/package.json @@ -37,7 +37,7 @@ "lodash.get": "^4.4.2", "lodash.orderby": "^4.6.0", "lodash.set": "^4.3.2", - "next": "^13", + "next": "13.0.5", "react": "^18.2.0", "react-copy-to-clipboard": "^5.0.4", "react-dom": "^18.2.0", diff --git a/sites/lab/package.json b/sites/lab/package.json index 46a561d5dc8..e4b68fdc3d3 100644 --- a/sites/lab/package.json +++ b/sites/lab/package.json @@ -31,7 +31,7 @@ "dependencies": { "@headlessui/react": "^1.6.6", "i18next": "^22.1.4", - "next": "latest", + "next": "13.0.5", "next-i18next": "^13.0.0", "react": "^18.2.0", "react-i18next": "^12.1.1", diff --git a/sites/org/package.json b/sites/org/package.json index 145a091b448..838ec47340a 100644 --- a/sites/org/package.json +++ b/sites/org/package.json @@ -40,7 +40,7 @@ "lodash.get": "^4.4.2", "lodash.orderby": "^4.6.0", "lodash.set": "^4.3.2", - "next": "latest", + "next": "13.0.5", "react-hotkeys-hook": "^4.0.4", "react-instantsearch-dom": "^6.18.0", "react-markdown": "^8.0.3", diff --git a/yarn.lock b/yarn.lock index ca9da6ccfd1..ed0a60c7dfa 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3485,10 +3485,10 @@ dependencies: webpack-bundle-analyzer "4.7.0" -"@next/env@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.6.tgz#3fcab11ffbe95bff127827d9f7f3139bc5e6adff" - integrity sha512-yceT6DCHKqPRS1cAm8DHvDvK74DLIkDQdm5iV+GnIts8h0QbdHvkUIkdOvQoOODgpr6018skbmSQp12z5OWIQQ== +"@next/env@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.5.tgz#f2fafaa42c6693260e00f443853b549509715ad1" + integrity sha512-F3KLtiDrUslAZhTYTh8Zk5ZaavbYwLUn3NYPBnOjAXU8hWm0QVGVzKIOuURQ098ofRU4e9oglf3Sj9pFx5nI5w== "@next/eslint-plugin-next@13.0.6": version "13.0.6" @@ -3497,70 +3497,70 @@ dependencies: glob "7.1.7" -"@next/swc-android-arm-eabi@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.6.tgz#c971e5a3f8aae875ac1d9fdb159b7e126d8d98d5" - integrity sha512-FGFSj3v2Bluw8fD/X+1eXIEB0PhoJE0zfutsAauRhmNpjjZshLDgoXMWm1jTRL/04K/o9gwwO2+A8+sPVCH1uw== +"@next/swc-android-arm-eabi@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.5.tgz#bb83f8a8bea5d3d813059a28624e9ff3c0c22bac" + integrity sha512-YO691dxHlviy6H0eghgwqn+5kU9J3iQnKERHTDSppqjjGDBl6ab4wz9XfI5AhljjkaTg3TknHoIEWFDoZ4Ve8g== -"@next/swc-android-arm64@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.6.tgz#ecacae60f1410136cc31f9e1e09e78e624ca2d68" - integrity sha512-7MgbtU7kimxuovVsd7jSJWMkIHBDBUsNLmmlkrBRHTvgzx5nDBXogP0hzZm7EImdOPwVMPpUHRQMBP9mbsiJYQ== +"@next/swc-android-arm64@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.5.tgz#6082f7e4a7b07c5e1a1284ef0cb3b741b49f03de" + integrity sha512-ugbwffkUmp8cd2afehDC8LtQeFUxElRUBBngfB5UYSWBx18HW4OgzkPFIY8jUBH16zifvGZWXbICXJWDHrOLtw== -"@next/swc-darwin-arm64@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.6.tgz#266e9e0908024760eba0dfce17edc90ffcba5fdc" - integrity sha512-AUVEpVTxbP/fxdFsjVI9d5a0CFn6NVV7A/RXOb0Y+pXKIIZ1V5rFjPwpYfIfyOo2lrqgehMNQcyMRoTrhq04xg== +"@next/swc-darwin-arm64@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.5.tgz#764f85446590b8f2894c9aca0c96e039cd1ca5e0" + integrity sha512-mshlh8QOtOalfZbc17uNAftWgqHTKnrv6QUwBe+mpGz04eqsSUzVz1JGZEdIkmuDxOz00cK2NPoc+VHDXh99IQ== -"@next/swc-darwin-x64@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.6.tgz#4be4ca7bc37f9c93d2e38be5ff313873ad758c09" - integrity sha512-SasCDJlshglsPnbzhWaIF6VEGkQy2NECcAOxPwaPr0cwbbt4aUlZ7QmskNzgolr5eAjFS/xTr7CEeKJtZpAAtQ== +"@next/swc-darwin-x64@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.5.tgz#f0e4855639279f85f4e0d2bc3d10e5b6c3dff33d" + integrity sha512-SfigOKW4Z2UB3ruUPyvrlDIkcJq1hiw1wvYApWugD+tQsAkYZKEoz+/8emCmeYZ6Gwgi1WHV+z52Oj8u7bEHPg== -"@next/swc-freebsd-x64@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.6.tgz#42eb9043ee65ea5927ba550f4b59827d7064c47b" - integrity sha512-6Lbxd9gAdXneTkwHyYW/qtX1Tdw7ND9UbiGsGz/SP43ZInNWnW6q0au4hEVPZ9bOWWRKzcVoeTBdoMpQk9Hx9w== +"@next/swc-freebsd-x64@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.5.tgz#1ccc56db2fd6c1a8e10d3952b7cc5fb98c1eed71" + integrity sha512-0NJg8HZr4yG8ynmMGFXQf+Mahvq4ZgBmUwSlLXXymgxEQgH17erH/LoR69uITtW+KTsALgk9axEt5AAabM4ucg== -"@next/swc-linux-arm-gnueabihf@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.6.tgz#aab663282b5f15d12bf9de1120175f438a44c924" - integrity sha512-wNdi5A519e1P+ozEuYOhWPzzE6m1y7mkO6NFwn6watUwO0X9nZs7fT9THmnekvmFQpaZ6U+xf2MQ9poQoCh6jQ== +"@next/swc-linux-arm-gnueabihf@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.5.tgz#1dd70f03a33d0ea84a5cae03141437ff1e1b5642" + integrity sha512-Cye+h3oDT3NDWjACMlRaolL8fokpKie34FlPj9nfoW7bYKmoMBY1d4IO/GgBF+5xEl7HkH0Ny/qex63vQ0pN+A== -"@next/swc-linux-arm64-gnu@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.6.tgz#5e2b6df4636576a00befb7bd414820a12161a9af" - integrity sha512-e8KTRnleQY1KLk5PwGV5hrmvKksCc74QRpHl5ffWnEEAtL2FE0ave5aIkXqErsPdXkiKuA/owp3LjQrP+/AH7Q== +"@next/swc-linux-arm64-gnu@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.5.tgz#053d8379a509d005128763013e7be8b92abb0304" + integrity sha512-5BfDS/VoRDR5QUGG9oedOCEZGmV2zxUVFYLUJVPMSMeIgqkjxWQBiG2BUHZI6/LGk9yvHmjx7BTvtBCLtRg6IQ== -"@next/swc-linux-arm64-musl@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.6.tgz#4a5e91a36cf140cad974df602d647e64b1b9473f" - integrity sha512-/7RF03C3mhjYpHN+pqOolgME3guiHU5T3TsejuyteqyEyzdEyLHod+jcYH6ft7UZ71a6TdOewvmbLOtzHW2O8A== +"@next/swc-linux-arm64-musl@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.5.tgz#4a260c6e2f8003b01668c9f2ecfefc102f307d04" + integrity sha512-xenvqlXz+KxVKAB1YR723gnVNszpsCvKZkiFFaAYqDGJ502YuqU2fwLsaSm/ASRizNcBYeo9HPLTyc3r/9cdMQ== -"@next/swc-linux-x64-gnu@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.6.tgz#accb8a721a99e704565b936f16e96fa0c67e8db1" - integrity sha512-kxyEXnYHpOEkFnmrlwB1QlzJtjC6sAJytKcceIyFUHbCaD3W/Qb5tnclcnHKTaFccizZRePXvV25Ok/eUSpKTw== +"@next/swc-linux-x64-gnu@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.5.tgz#d886be84865c4b3d720add8b0c1f7e71221972c2" + integrity sha512-9Ahi1bbdXwhrWQmOyoTod23/hhK05da/FzodiNqd6drrMl1y7+RujoEcU8Dtw3H1mGWB+yuTlWo8B4Iba8hqiQ== -"@next/swc-linux-x64-musl@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.6.tgz#2affaa2f4f01bc190a539d895118a6ad1a477645" - integrity sha512-N0c6gubS3WW1oYYgo02xzZnNatfVQP/CiJq2ax+DJ55ePV62IACbRCU99TZNXXg+Kos6vNW4k+/qgvkvpGDeyA== +"@next/swc-linux-x64-musl@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.5.tgz#2d4245512761d90f7e5086df6d6042f078b8e395" + integrity sha512-V+1mnh49qmS9fOZxVRbzjhBEz9IUGJ7AQ80JPWAYQM5LI4TxfdiF4APLPvJ52rOmNeTqnVz1bbKtVOso+7EZ4w== -"@next/swc-win32-arm64-msvc@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.6.tgz#28e5c042772865efd05197a8d1db5920156997fc" - integrity sha512-QjeMB2EBqBFPb/ac0CYr7GytbhUkrG4EwFWbcE0vsRp4H8grt25kYpFQckL4Jak3SUrp7vKfDwZ/SwO7QdO8vw== +"@next/swc-win32-arm64-msvc@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.5.tgz#19df9e548b3fe1a2aa8491dd7c01ca950977ac9e" + integrity sha512-wRE9rkp7I+/3Jf2T9PFIJOKq3adMWYEFkPOA7XAkUfYbQHlDJm/U5cVCWUsKByyQq5RThwufI91sgd19MfxRxg== -"@next/swc-win32-ia32-msvc@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.6.tgz#30d91a6d847fa8bce9f8a0f9d2b469d574270be5" - integrity sha512-EQzXtdqRTcmhT/tCq81rIwE36Y3fNHPInaCuJzM/kftdXfa0F+64y7FAoMO13npX8EG1+SamXgp/emSusKrCXg== +"@next/swc-win32-ia32-msvc@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.5.tgz#a4de6f9d2556b48869f20b1c0f61c5a88a213319" + integrity sha512-Q1XQSLEhFuFhkKFdJIGt7cYQ4T3u6P5wrtUNreg5M+7P+fjSiC8+X+Vjcw+oebaacsdl0pWZlK+oACGafush1w== -"@next/swc-win32-x64-msvc@13.0.6": - version "13.0.6" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.6.tgz#dfa28ddb335c16233d22cf39ec8cdf723e6587a1" - integrity sha512-pSkqZ//UP/f2sS9T7IvHLfEWDPTX0vRyXJnAUNisKvO3eF3e1xdhDX7dix/X3Z3lnN4UjSwOzclAI87JFbOwmQ== +"@next/swc-win32-x64-msvc@13.0.5": + version "13.0.5" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.5.tgz#f95f882900fe8bf84e049b720f18e851a7187cfe" + integrity sha512-t5gRblrwwiNZP6cT7NkxlgxrFgHWtv9ei5vUraCLgBqzvIsa7X+PnarZUeQCXqz6Jg9JSGGT9j8lvzD97UqeJQ== "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": version "5.1.1-v1" @@ -16177,30 +16177,30 @@ next-tick@^1.1.0: resolved "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== -next@^13, next@latest: - version "13.0.6" - resolved "https://registry.yarnpkg.com/next/-/next-13.0.6.tgz#f9a2e9e2df9ad60e1b6b716488c9ad501a383621" - integrity sha512-COvigvms2LRt1rrzfBQcMQ2GZd86Mvk1z+LOLY5pniFtL4VrTmhZ9salrbKfSiXbhsD01TrDdD68ec3ABDyscA== +next@13.0.5: + version "13.0.5" + resolved "https://registry.yarnpkg.com/next/-/next-13.0.5.tgz#cddfd6804f84a21721da370e4425980876670173" + integrity sha512-awpc3DkphyKydwCotcBnuKwh6hMqkT5xdiBK4OatJtOZurDPBYLP62jtM2be/4OunpmwIbsS0Eyv+ZGU97ciEg== dependencies: - "@next/env" "13.0.6" + "@next/env" "13.0.5" "@swc/helpers" "0.4.14" caniuse-lite "^1.0.30001406" postcss "8.4.14" styled-jsx "5.1.0" optionalDependencies: - "@next/swc-android-arm-eabi" "13.0.6" - "@next/swc-android-arm64" "13.0.6" - "@next/swc-darwin-arm64" "13.0.6" - "@next/swc-darwin-x64" "13.0.6" - "@next/swc-freebsd-x64" "13.0.6" - "@next/swc-linux-arm-gnueabihf" "13.0.6" - "@next/swc-linux-arm64-gnu" "13.0.6" - "@next/swc-linux-arm64-musl" "13.0.6" - "@next/swc-linux-x64-gnu" "13.0.6" - "@next/swc-linux-x64-musl" "13.0.6" - "@next/swc-win32-arm64-msvc" "13.0.6" - "@next/swc-win32-ia32-msvc" "13.0.6" - "@next/swc-win32-x64-msvc" "13.0.6" + "@next/swc-android-arm-eabi" "13.0.5" + "@next/swc-android-arm64" "13.0.5" + "@next/swc-darwin-arm64" "13.0.5" + "@next/swc-darwin-x64" "13.0.5" + "@next/swc-freebsd-x64" "13.0.5" + "@next/swc-linux-arm-gnueabihf" "13.0.5" + "@next/swc-linux-arm64-gnu" "13.0.5" + "@next/swc-linux-arm64-musl" "13.0.5" + "@next/swc-linux-x64-gnu" "13.0.5" + "@next/swc-linux-x64-musl" "13.0.5" + "@next/swc-win32-arm64-msvc" "13.0.5" + "@next/swc-win32-ia32-msvc" "13.0.5" + "@next/swc-win32-x64-msvc" "13.0.5" nlcst-to-string@^2.0.0: version "2.0.4" From 2dea45febd3d6c4c9b0ab0408e45ba0df2db1e34 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Thu, 8 Dec 2022 22:37:22 -0800 Subject: [PATCH 17/29] fix(docs): Corrections to Points documentation --- markdown/dev/reference/api/point/en.md | 2 +- markdown/dev/reference/api/point/rotate/en.md | 2 +- markdown/dev/reference/api/point/setcircle/en.md | 2 +- markdown/dev/reference/api/point/settext/en.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/markdown/dev/reference/api/point/en.md b/markdown/dev/reference/api/point/en.md index 6bc9568731b..15a4db67e1f 100644 --- a/markdown/dev/reference/api/point/en.md +++ b/markdown/dev/reference/api/point/en.md @@ -21,7 +21,7 @@ Point objects come with the following properties: - `x` : The X-coordinate of the point - `y` : The Y-coordinate of the point -- `attributes` : An [Attributes](../attributes) instance holding the point's attributes +- `attributes` : An [Attributes](/reference/api/attributes) instance holding the point's attributes ## Example diff --git a/markdown/dev/reference/api/point/rotate/en.md b/markdown/dev/reference/api/point/rotate/en.md index 22f527855e8..ae55801d4c5 100644 --- a/markdown/dev/reference/api/point/rotate/en.md +++ b/markdown/dev/reference/api/point/rotate/en.md @@ -16,7 +16,7 @@ Point point.rotate(float angle, Point center) ## Example - + ```js ({ Point, points, Path, paths, Snippet, snippets, part }) => { diff --git a/markdown/dev/reference/api/point/setcircle/en.md b/markdown/dev/reference/api/point/setcircle/en.md index 6515197bdfd..811df84f563 100644 --- a/markdown/dev/reference/api/point/setcircle/en.md +++ b/markdown/dev/reference/api/point/setcircle/en.md @@ -25,7 +25,7 @@ Point point.setCircle( ## Example - + ```js ({ Point, points, part }) => { diff --git a/markdown/dev/reference/api/point/settext/en.md b/markdown/dev/reference/api/point/settext/en.md index c9a7119b9a0..fbcd8452c5e 100644 --- a/markdown/dev/reference/api/point/settext/en.md +++ b/markdown/dev/reference/api/point/settext/en.md @@ -19,7 +19,7 @@ Point point.setText( ## Example - + ```js ({ Point, points, Path, paths, part }) => { From 04b36cb1a183f7a83bddf33cac946daba41d9683 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Thu, 8 Dec 2022 22:37:50 -0800 Subject: [PATCH 18/29] fix(core): Fix typo in points.mjs comment --- packages/core/src/point.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/point.mjs b/packages/core/src/point.mjs index d10c166bab2..d6e49f51aff 100644 --- a/packages/core/src/point.mjs +++ b/packages/core/src/point.mjs @@ -320,7 +320,7 @@ Point.prototype.sitsRoughlyOn = function (that) { * Returns slope of a line made by this Point and that Point * * @param {Point} that - The Point that forms the line together with this Point - * @return {float} slote - The slope of the line made by this Point and that Point + * @return {float} slope - The slope of the line made by this Point and that Point */ Point.prototype.slope = function (that) { return (that.__check().y - this.__check().y) / (that.x - this.x) From e3b53ea1ebd0eb753c886990ef3b231086255ed0 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Fri, 9 Dec 2022 07:34:44 -0800 Subject: [PATCH 19/29] fix(docs): Update Store API documentation --- markdown/dev/reference/api/store/en.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/markdown/dev/reference/api/store/en.md b/markdown/dev/reference/api/store/en.md index e6557b43983..ce6a9158c4c 100644 --- a/markdown/dev/reference/api/store/en.md +++ b/markdown/dev/reference/api/store/en.md @@ -32,7 +32,7 @@ will run `myCustomMethod()`. ## Methods -A Store object exposes the following methods: +A Store object exposes the following methods and properties: @@ -42,4 +42,6 @@ A store is typically used to share information between parts. For example the length of the neck opening in one part can be used to calculate the length for the collar in another part. -Include link to guide +Click below to learn more about: + +- [How Stores work](/guides/patterns/store) From 2b68cb89ff054144d50ea86c5dc35e88dd39a8aa Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Fri, 9 Dec 2022 08:26:33 -0800 Subject: [PATCH 20/29] fix(docs): Correct render hooks documentation URLs --- markdown/dev/reference/hooks/postrender/en.md | 2 +- markdown/dev/reference/hooks/prerender/en.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/markdown/dev/reference/hooks/postrender/en.md b/markdown/dev/reference/hooks/postrender/en.md index 6b6556e5579..47bcbf2bbe8 100644 --- a/markdown/dev/reference/hooks/postrender/en.md +++ b/markdown/dev/reference/hooks/postrender/en.md @@ -15,5 +15,5 @@ null hook(Svg svg) The `postRender` hook is rarely used, but it's there if you need it. -Like the `preRender` hook, it receives [the SVG object](/api/svg) as its first +Like the `preRender` hook, it receives [the SVG object](/reference/api/svg) as its first parameter. diff --git a/markdown/dev/reference/hooks/prerender/en.md b/markdown/dev/reference/hooks/prerender/en.md index 0f11ea85576..af4117764aa 100644 --- a/markdown/dev/reference/hooks/prerender/en.md +++ b/markdown/dev/reference/hooks/prerender/en.md @@ -16,5 +16,5 @@ null hook(Svg svg) The `preRender` hook is typically used to change the result of the render, for example by adding CSS to the SVG output. -Like the `postRender` hook, it receives [the SVG object](/api/svg) as its first +Like the `postRender` hook, it receives [the SVG object](/reference/api/svg) as its first parameter. From 11670ddbff6f9dce792cc6e94853f0269843a4e4 Mon Sep 17 00:00:00 2001 From: Enoch Riese Date: Fri, 9 Dec 2022 16:31:39 -0600 Subject: [PATCH 21/29] all sites point to next@^13.0.6 --- sites/dev/package.json | 2 +- sites/lab/package.json | 2 +- sites/org/package.json | 2 +- yarn.lock | 148 ++++++++++++++++++++--------------------- 4 files changed, 77 insertions(+), 77 deletions(-) diff --git a/sites/dev/package.json b/sites/dev/package.json index 133a2841c18..cbcc21f97b6 100644 --- a/sites/dev/package.json +++ b/sites/dev/package.json @@ -37,7 +37,7 @@ "lodash.get": "^4.4.2", "lodash.orderby": "^4.6.0", "lodash.set": "^4.3.2", - "next": "13.0.5", + "next": "^13.0.6", "react": "^18.2.0", "react-copy-to-clipboard": "^5.0.4", "react-dom": "^18.2.0", diff --git a/sites/lab/package.json b/sites/lab/package.json index e4b68fdc3d3..479541720c4 100644 --- a/sites/lab/package.json +++ b/sites/lab/package.json @@ -31,7 +31,7 @@ "dependencies": { "@headlessui/react": "^1.6.6", "i18next": "^22.1.4", - "next": "13.0.5", + "next": "^13.0.6", "next-i18next": "^13.0.0", "react": "^18.2.0", "react-i18next": "^12.1.1", diff --git a/sites/org/package.json b/sites/org/package.json index 838ec47340a..c754af1e805 100644 --- a/sites/org/package.json +++ b/sites/org/package.json @@ -40,7 +40,7 @@ "lodash.get": "^4.4.2", "lodash.orderby": "^4.6.0", "lodash.set": "^4.3.2", - "next": "13.0.5", + "next": "^13.0.6", "react-hotkeys-hook": "^4.0.4", "react-instantsearch-dom": "^6.18.0", "react-markdown": "^8.0.3", diff --git a/yarn.lock b/yarn.lock index ed0a60c7dfa..48743f66ce1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3485,10 +3485,10 @@ dependencies: webpack-bundle-analyzer "4.7.0" -"@next/env@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.5.tgz#f2fafaa42c6693260e00f443853b549509715ad1" - integrity sha512-F3KLtiDrUslAZhTYTh8Zk5ZaavbYwLUn3NYPBnOjAXU8hWm0QVGVzKIOuURQ098ofRU4e9oglf3Sj9pFx5nI5w== +"@next/env@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.6.tgz#3fcab11ffbe95bff127827d9f7f3139bc5e6adff" + integrity sha512-yceT6DCHKqPRS1cAm8DHvDvK74DLIkDQdm5iV+GnIts8h0QbdHvkUIkdOvQoOODgpr6018skbmSQp12z5OWIQQ== "@next/eslint-plugin-next@13.0.6": version "13.0.6" @@ -3497,70 +3497,70 @@ dependencies: glob "7.1.7" -"@next/swc-android-arm-eabi@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.5.tgz#bb83f8a8bea5d3d813059a28624e9ff3c0c22bac" - integrity sha512-YO691dxHlviy6H0eghgwqn+5kU9J3iQnKERHTDSppqjjGDBl6ab4wz9XfI5AhljjkaTg3TknHoIEWFDoZ4Ve8g== +"@next/swc-android-arm-eabi@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.6.tgz#c971e5a3f8aae875ac1d9fdb159b7e126d8d98d5" + integrity sha512-FGFSj3v2Bluw8fD/X+1eXIEB0PhoJE0zfutsAauRhmNpjjZshLDgoXMWm1jTRL/04K/o9gwwO2+A8+sPVCH1uw== -"@next/swc-android-arm64@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.5.tgz#6082f7e4a7b07c5e1a1284ef0cb3b741b49f03de" - integrity sha512-ugbwffkUmp8cd2afehDC8LtQeFUxElRUBBngfB5UYSWBx18HW4OgzkPFIY8jUBH16zifvGZWXbICXJWDHrOLtw== +"@next/swc-android-arm64@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.6.tgz#ecacae60f1410136cc31f9e1e09e78e624ca2d68" + integrity sha512-7MgbtU7kimxuovVsd7jSJWMkIHBDBUsNLmmlkrBRHTvgzx5nDBXogP0hzZm7EImdOPwVMPpUHRQMBP9mbsiJYQ== -"@next/swc-darwin-arm64@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.5.tgz#764f85446590b8f2894c9aca0c96e039cd1ca5e0" - integrity sha512-mshlh8QOtOalfZbc17uNAftWgqHTKnrv6QUwBe+mpGz04eqsSUzVz1JGZEdIkmuDxOz00cK2NPoc+VHDXh99IQ== +"@next/swc-darwin-arm64@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.6.tgz#266e9e0908024760eba0dfce17edc90ffcba5fdc" + integrity sha512-AUVEpVTxbP/fxdFsjVI9d5a0CFn6NVV7A/RXOb0Y+pXKIIZ1V5rFjPwpYfIfyOo2lrqgehMNQcyMRoTrhq04xg== -"@next/swc-darwin-x64@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.5.tgz#f0e4855639279f85f4e0d2bc3d10e5b6c3dff33d" - integrity sha512-SfigOKW4Z2UB3ruUPyvrlDIkcJq1hiw1wvYApWugD+tQsAkYZKEoz+/8emCmeYZ6Gwgi1WHV+z52Oj8u7bEHPg== +"@next/swc-darwin-x64@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.6.tgz#4be4ca7bc37f9c93d2e38be5ff313873ad758c09" + integrity sha512-SasCDJlshglsPnbzhWaIF6VEGkQy2NECcAOxPwaPr0cwbbt4aUlZ7QmskNzgolr5eAjFS/xTr7CEeKJtZpAAtQ== -"@next/swc-freebsd-x64@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.5.tgz#1ccc56db2fd6c1a8e10d3952b7cc5fb98c1eed71" - integrity sha512-0NJg8HZr4yG8ynmMGFXQf+Mahvq4ZgBmUwSlLXXymgxEQgH17erH/LoR69uITtW+KTsALgk9axEt5AAabM4ucg== +"@next/swc-freebsd-x64@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.6.tgz#42eb9043ee65ea5927ba550f4b59827d7064c47b" + integrity sha512-6Lbxd9gAdXneTkwHyYW/qtX1Tdw7ND9UbiGsGz/SP43ZInNWnW6q0au4hEVPZ9bOWWRKzcVoeTBdoMpQk9Hx9w== -"@next/swc-linux-arm-gnueabihf@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.5.tgz#1dd70f03a33d0ea84a5cae03141437ff1e1b5642" - integrity sha512-Cye+h3oDT3NDWjACMlRaolL8fokpKie34FlPj9nfoW7bYKmoMBY1d4IO/GgBF+5xEl7HkH0Ny/qex63vQ0pN+A== +"@next/swc-linux-arm-gnueabihf@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.6.tgz#aab663282b5f15d12bf9de1120175f438a44c924" + integrity sha512-wNdi5A519e1P+ozEuYOhWPzzE6m1y7mkO6NFwn6watUwO0X9nZs7fT9THmnekvmFQpaZ6U+xf2MQ9poQoCh6jQ== -"@next/swc-linux-arm64-gnu@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.5.tgz#053d8379a509d005128763013e7be8b92abb0304" - integrity sha512-5BfDS/VoRDR5QUGG9oedOCEZGmV2zxUVFYLUJVPMSMeIgqkjxWQBiG2BUHZI6/LGk9yvHmjx7BTvtBCLtRg6IQ== +"@next/swc-linux-arm64-gnu@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.6.tgz#5e2b6df4636576a00befb7bd414820a12161a9af" + integrity sha512-e8KTRnleQY1KLk5PwGV5hrmvKksCc74QRpHl5ffWnEEAtL2FE0ave5aIkXqErsPdXkiKuA/owp3LjQrP+/AH7Q== -"@next/swc-linux-arm64-musl@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.5.tgz#4a260c6e2f8003b01668c9f2ecfefc102f307d04" - integrity sha512-xenvqlXz+KxVKAB1YR723gnVNszpsCvKZkiFFaAYqDGJ502YuqU2fwLsaSm/ASRizNcBYeo9HPLTyc3r/9cdMQ== +"@next/swc-linux-arm64-musl@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.6.tgz#4a5e91a36cf140cad974df602d647e64b1b9473f" + integrity sha512-/7RF03C3mhjYpHN+pqOolgME3guiHU5T3TsejuyteqyEyzdEyLHod+jcYH6ft7UZ71a6TdOewvmbLOtzHW2O8A== -"@next/swc-linux-x64-gnu@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.5.tgz#d886be84865c4b3d720add8b0c1f7e71221972c2" - integrity sha512-9Ahi1bbdXwhrWQmOyoTod23/hhK05da/FzodiNqd6drrMl1y7+RujoEcU8Dtw3H1mGWB+yuTlWo8B4Iba8hqiQ== +"@next/swc-linux-x64-gnu@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.6.tgz#accb8a721a99e704565b936f16e96fa0c67e8db1" + integrity sha512-kxyEXnYHpOEkFnmrlwB1QlzJtjC6sAJytKcceIyFUHbCaD3W/Qb5tnclcnHKTaFccizZRePXvV25Ok/eUSpKTw== -"@next/swc-linux-x64-musl@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.5.tgz#2d4245512761d90f7e5086df6d6042f078b8e395" - integrity sha512-V+1mnh49qmS9fOZxVRbzjhBEz9IUGJ7AQ80JPWAYQM5LI4TxfdiF4APLPvJ52rOmNeTqnVz1bbKtVOso+7EZ4w== +"@next/swc-linux-x64-musl@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.6.tgz#2affaa2f4f01bc190a539d895118a6ad1a477645" + integrity sha512-N0c6gubS3WW1oYYgo02xzZnNatfVQP/CiJq2ax+DJ55ePV62IACbRCU99TZNXXg+Kos6vNW4k+/qgvkvpGDeyA== -"@next/swc-win32-arm64-msvc@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.5.tgz#19df9e548b3fe1a2aa8491dd7c01ca950977ac9e" - integrity sha512-wRE9rkp7I+/3Jf2T9PFIJOKq3adMWYEFkPOA7XAkUfYbQHlDJm/U5cVCWUsKByyQq5RThwufI91sgd19MfxRxg== +"@next/swc-win32-arm64-msvc@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.6.tgz#28e5c042772865efd05197a8d1db5920156997fc" + integrity sha512-QjeMB2EBqBFPb/ac0CYr7GytbhUkrG4EwFWbcE0vsRp4H8grt25kYpFQckL4Jak3SUrp7vKfDwZ/SwO7QdO8vw== -"@next/swc-win32-ia32-msvc@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.5.tgz#a4de6f9d2556b48869f20b1c0f61c5a88a213319" - integrity sha512-Q1XQSLEhFuFhkKFdJIGt7cYQ4T3u6P5wrtUNreg5M+7P+fjSiC8+X+Vjcw+oebaacsdl0pWZlK+oACGafush1w== +"@next/swc-win32-ia32-msvc@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.6.tgz#30d91a6d847fa8bce9f8a0f9d2b469d574270be5" + integrity sha512-EQzXtdqRTcmhT/tCq81rIwE36Y3fNHPInaCuJzM/kftdXfa0F+64y7FAoMO13npX8EG1+SamXgp/emSusKrCXg== -"@next/swc-win32-x64-msvc@13.0.5": - version "13.0.5" - resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.5.tgz#f95f882900fe8bf84e049b720f18e851a7187cfe" - integrity sha512-t5gRblrwwiNZP6cT7NkxlgxrFgHWtv9ei5vUraCLgBqzvIsa7X+PnarZUeQCXqz6Jg9JSGGT9j8lvzD97UqeJQ== +"@next/swc-win32-x64-msvc@13.0.6": + version "13.0.6" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.6.tgz#dfa28ddb335c16233d22cf39ec8cdf723e6587a1" + integrity sha512-pSkqZ//UP/f2sS9T7IvHLfEWDPTX0vRyXJnAUNisKvO3eF3e1xdhDX7dix/X3Z3lnN4UjSwOzclAI87JFbOwmQ== "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": version "5.1.1-v1" @@ -16177,30 +16177,30 @@ next-tick@^1.1.0: resolved "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== -next@13.0.5: - version "13.0.5" - resolved "https://registry.yarnpkg.com/next/-/next-13.0.5.tgz#cddfd6804f84a21721da370e4425980876670173" - integrity sha512-awpc3DkphyKydwCotcBnuKwh6hMqkT5xdiBK4OatJtOZurDPBYLP62jtM2be/4OunpmwIbsS0Eyv+ZGU97ciEg== +next@^13.0.6: + version "13.0.6" + resolved "https://registry.yarnpkg.com/next/-/next-13.0.6.tgz#f9a2e9e2df9ad60e1b6b716488c9ad501a383621" + integrity sha512-COvigvms2LRt1rrzfBQcMQ2GZd86Mvk1z+LOLY5pniFtL4VrTmhZ9salrbKfSiXbhsD01TrDdD68ec3ABDyscA== dependencies: - "@next/env" "13.0.5" + "@next/env" "13.0.6" "@swc/helpers" "0.4.14" caniuse-lite "^1.0.30001406" postcss "8.4.14" styled-jsx "5.1.0" optionalDependencies: - "@next/swc-android-arm-eabi" "13.0.5" - "@next/swc-android-arm64" "13.0.5" - "@next/swc-darwin-arm64" "13.0.5" - "@next/swc-darwin-x64" "13.0.5" - "@next/swc-freebsd-x64" "13.0.5" - "@next/swc-linux-arm-gnueabihf" "13.0.5" - "@next/swc-linux-arm64-gnu" "13.0.5" - "@next/swc-linux-arm64-musl" "13.0.5" - "@next/swc-linux-x64-gnu" "13.0.5" - "@next/swc-linux-x64-musl" "13.0.5" - "@next/swc-win32-arm64-msvc" "13.0.5" - "@next/swc-win32-ia32-msvc" "13.0.5" - "@next/swc-win32-x64-msvc" "13.0.5" + "@next/swc-android-arm-eabi" "13.0.6" + "@next/swc-android-arm64" "13.0.6" + "@next/swc-darwin-arm64" "13.0.6" + "@next/swc-darwin-x64" "13.0.6" + "@next/swc-freebsd-x64" "13.0.6" + "@next/swc-linux-arm-gnueabihf" "13.0.6" + "@next/swc-linux-arm64-gnu" "13.0.6" + "@next/swc-linux-arm64-musl" "13.0.6" + "@next/swc-linux-x64-gnu" "13.0.6" + "@next/swc-linux-x64-musl" "13.0.6" + "@next/swc-win32-arm64-msvc" "13.0.6" + "@next/swc-win32-ia32-msvc" "13.0.6" + "@next/swc-win32-x64-msvc" "13.0.6" nlcst-to-string@^2.0.0: version "2.0.4" From 73a6b32ae5435d042549e0d062972ce4f8608688 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Fri, 9 Dec 2022 20:59:53 -0800 Subject: [PATCH 22/29] fix(docs): Updates to macros documentation --- markdown/dev/reference/macros/banner/en.md | 6 ++++++ markdown/dev/reference/macros/bartack/en.md | 10 +++++++-- .../dev/reference/macros/bartackalong/en.md | 10 +++++++-- .../macros/bartackfractionalong/en.md | 10 +++++++-- markdown/dev/reference/macros/cutonfold/en.md | 18 +++++++++++++++- markdown/dev/reference/macros/flip/en.md | 2 +- markdown/dev/reference/macros/gore/en.md | 18 +++++++++++++--- markdown/dev/reference/macros/grainline/en.md | 18 +++++++++++++--- markdown/dev/reference/macros/hd/en.md | 12 +++++++++-- markdown/dev/reference/macros/ld/en.md | 18 +++++++++++----- markdown/dev/reference/macros/miniscale/en.md | 14 ++++++++++++- markdown/dev/reference/macros/mirror/en.md | 14 +++++++++++-- markdown/dev/reference/macros/pd/en.md | 14 ++++++++++--- markdown/dev/reference/macros/round/en.md | 16 +++++++++++--- markdown/dev/reference/macros/scalebox/en.md | 17 ++++++++++++++- markdown/dev/reference/macros/sprinkle/en.md | 20 +++++++++++------- markdown/dev/reference/macros/title/en.md | 19 +++++++++++++---- markdown/dev/reference/macros/vd/en.md | 21 +++++++++++++++---- 18 files changed, 211 insertions(+), 46 deletions(-) diff --git a/markdown/dev/reference/macros/banner/en.md b/markdown/dev/reference/macros/banner/en.md index ccfe81c1fd5..98af64e127d 100644 --- a/markdown/dev/reference/macros/banner/en.md +++ b/markdown/dev/reference/macros/banner/en.md @@ -50,3 +50,9 @@ macro('banner', { | `dy` | `1` | `number` | Controls how far the text will be located above the path | | `spaces` | `12` | `number` | The number of spaces to place between repetitions | | `repeat` | `10` | `number` | The number of repetitions | + +## Notes + +Under the hood, this macro will: + +- Add `data-text`, `data-text-dy`, and `data-text-class` Attributes to the path to generate the text. diff --git a/markdown/dev/reference/macros/bartack/en.md b/markdown/dev/reference/macros/bartack/en.md index 5583ea1dfc3..56f621e9bab 100644 --- a/markdown/dev/reference/macros/bartack/en.md +++ b/markdown/dev/reference/macros/bartack/en.md @@ -43,6 +43,12 @@ macro('banner', { | `angle` | `0` | `number` | The angle under which to draw the bartack | | `density` | `3` | `number` | Controls how close the stitches are togeter | | `length` | `15` | `number` | Length of the bartack | -| `prefix` | | `string` | A prefix to apply to the names of the generated path and points | -| `suffix` | | `string` | A suffix to apply to the names of the generated path and points | +| `prefix` | | `string` | A prefix to apply to the name of the generated path | +| `suffix` | | `string` | A suffix to apply to the name of the generated path | | `width` | `3` | `number` | Width of the bartack | + +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${prefix}bartack${suffix}` | Path generated for the bartack marker | diff --git a/markdown/dev/reference/macros/bartackalong/en.md b/markdown/dev/reference/macros/bartackalong/en.md index e46726d04b5..4b35b93f91d 100644 --- a/markdown/dev/reference/macros/bartackalong/en.md +++ b/markdown/dev/reference/macros/bartackalong/en.md @@ -49,6 +49,12 @@ macro('banner', { | `density` | `3` | `number` | Controls how close the stitches are togeter | | `length` | `15` | `number` | Length of the bartack | | `path` | | `Path` | The path the bartack should follow | -| `prefix` | | `string` | A prefix to apply to the names of the generated path and points | -| `suffix` | | `string` | A suffix to apply to the names of the generated path and points | +| `prefix` | | `string` | A prefix to apply to the name of the generated path | +| `suffix` | | `string` | A suffix to apply to the name of the generated path | | `width` | `3` | `number` | Width of the bartack | + +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${prefix}bartack${suffix}` | Path generated for the bartack marker | diff --git a/markdown/dev/reference/macros/bartackfractionalong/en.md b/markdown/dev/reference/macros/bartackfractionalong/en.md index 4b182045154..528409b4e8c 100644 --- a/markdown/dev/reference/macros/bartackfractionalong/en.md +++ b/markdown/dev/reference/macros/bartackfractionalong/en.md @@ -54,7 +54,13 @@ macro('banner', { | `end` | `1` | `number` | At which fraction of the path length (from `0` to `1`) should the bartack end | | `length` | `15` | `number` | Length of the bartack | | `path` | | `Path` | The path the bartack should follow | -| `prefix` | | `string` | A prefix to apply to the names of the generated path and points | +| `prefix` | | `string` | A prefix to apply to the name of the generated path | | `start` | `0` | `number` | At which fraction of the path length (from `0` to `1`) should the bartack start | -| `suffix` | | `string` | A suffix to apply to the names of the generated path and points | +| `suffix` | | `string` | A suffix to apply to the name of the generated path | | `width` | `3` | `number` | Width of the bartack | + +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${prefix}bartack${suffix}` | Path generated for the bartack marker | diff --git a/markdown/dev/reference/macros/cutonfold/en.md b/markdown/dev/reference/macros/cutonfold/en.md index b94ab69c491..8e34b584b1f 100644 --- a/markdown/dev/reference/macros/cutonfold/en.md +++ b/markdown/dev/reference/macros/cutonfold/en.md @@ -22,7 +22,7 @@ macro('cutonfold', { ```js -({ Point, macro, part }) => { +({ Point, macro, Path, paths, part }) => { macro('cutonfold', { from: new Point(0,0), @@ -30,6 +30,11 @@ macro('cutonfold', { grainline: true }) + // Prevent clipping + paths.diag = new Path() + .move(new Point(-10,-20)) + .move(new Point(110,0)) + return part } ``` @@ -43,8 +48,19 @@ macro('cutonfold', { | `to` | | [Point](/reference/api/point) | The endpoint of the _cut on fold_ indicator | | `margin` | 5 | [Point](/reference/api/point) | The distance in % to keep from the start/end edge | | `offset` | 15 | Number | The distance in mm to offset from the line from start to end | +| `prefix` | | String | A prefix to apply to the names of the generated path and points | | `grainline` | `false` | Boolean | Whether this cutonfold indicator is also the grainline | +## Result + +| Generated Element | Description | +|------|-------------| +| `paths.cutonfold${prefix}` | The Path for the _cut on fold_ indicator | +| `points.cutonfoldFrom${prefix}` | Point used to create the path | +| `points.cutonfoldVia1${prefix}` | Point used to create the path | +| `points.cutonfoldVia2${prefix}` | Point used to create the path | +| `points.cutonfoldTo${prefix}` | Point used to create the path | + ## Notes ### It's safe to use a corner of your pattern part for this diff --git a/markdown/dev/reference/macros/flip/en.md b/markdown/dev/reference/macros/flip/en.md index 96e50d78407..43ba9f9f67f 100644 --- a/markdown/dev/reference/macros/flip/en.md +++ b/markdown/dev/reference/macros/flip/en.md @@ -46,4 +46,4 @@ Under the hood, this macro will: - Go through all Points in your Part, and multiply their (X or Y)-coordinate by -1 - Go through all the Paths in your Part, and for each drawing operation will multiply the (X or Y)-coordinare by -1 - Go through all the Snippets in your Part and multiply the (X or Y)-coordinate of the anchor point by -1 - +- Add a 'flipped` Attribute to Points and Paths to keep track of the number of times they have been flipped (to avoid issues when multiple flips are performed) diff --git a/markdown/dev/reference/macros/gore/en.md b/markdown/dev/reference/macros/gore/en.md index cd6794c0cb2..c7b18872c5d 100644 --- a/markdown/dev/reference/macros/gore/en.md +++ b/markdown/dev/reference/macros/gore/en.md @@ -2,8 +2,7 @@ title: gore --- -The `gore` macro facilitates the drafting of [gores][1] which are typically -used in hats. +The `gore` macro facilitates the drafting of [gores][1] to create spherical or other roundish objects. They are are typically used in hats. It is provided by the [gore plugin](/reference/plugins/grainline/). ## Signature @@ -16,6 +15,7 @@ macro('gore', { Number extraLength, Boolean hidden=true, String class='', + String prefix='', ) ``` @@ -45,10 +45,22 @@ macro('gore', { |--------------:|---------|------------|----------------------------------------------| | `from` | | [Point][2] | The point to start drafting the gore from | | `radius` | | number | The radius of the sphere the gores should cover | -| `gores` | | number | The text to put on the _grainline_ indicator | +| `gores` | | number | The number of gores into which the sphere is divided | | `extraLength` | | number | The length of the straight section after a complete semisphere | | `hidden` | `true` | boolean | Whether or not to hide the generated path | | `class` | | boolean | Any classes to add to the generated path | +| `prefix` | | string | A prefix to apply to the names of the generated path and points | + +## Result + +| Generated Element | Description | +|------|-------------| +| `paths.${prefix}seam` | The Path for the gore | +| `points.${prefix}p1` | Point for the gore tip | +| `points.${prefix}p2` | Point between the tip and side corner | +| `points.${prefix}p3` | Point for the gore side corner | +| `points.${prefix}Cp1` | Control Point used to create the curved path | +| `points.${prefix}Cp2` | Control Point used to create the curved path | [1]: https://en.wikipedia.org/wiki/Gore_\(segment\) diff --git a/markdown/dev/reference/macros/grainline/en.md b/markdown/dev/reference/macros/grainline/en.md index 3e0b0621ce4..730c91e916d 100644 --- a/markdown/dev/reference/macros/grainline/en.md +++ b/markdown/dev/reference/macros/grainline/en.md @@ -2,7 +2,7 @@ title: grainline --- -The `grainline` macro adds a _grainline_ indicator to your pattern. +The `grainline` macro adds a _grainline_ indicator to your pattern. It is provided by the [grainline plugin](/reference/plugins/grainline/). ## Signature @@ -19,19 +19,23 @@ macro('grainline', { ```js -({ Point, macro, part }) => { +({ Point, macro, Path, paths, part }) => { macro('grainline', { from: new Point(0,0), to: new Point(100,0), }) + // Prevent clipping + paths.diag = new Path() + .move(new Point(-20,-10)) + .move(new Point(110, 0)) + return part } ``` - ## Configuration | Property | Default | Type | Description | @@ -40,6 +44,14 @@ macro('grainline', { | `to` | | [Point][1] | The endpoint of the _grainline_ indicator | | `text` | 'grainline' | string | The text to put on the _grainline_ indicator | +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.grainline` | The Path for the _grainline_ indicator | +| `points.grainlineFrom` | Point used to create the path | +| `points.grainlineTo` | Point used to create the path | + [1]: /reference/api/point ## Notes diff --git a/markdown/dev/reference/macros/hd/en.md b/markdown/dev/reference/macros/hd/en.md index 8d1e85dfe4a..aa62b099786 100644 --- a/markdown/dev/reference/macros/hd/en.md +++ b/markdown/dev/reference/macros/hd/en.md @@ -11,7 +11,7 @@ It is provided by the [dimension plugin](/reference/plugins/dimension/). macro('hd', { String id, Point from, - Boolean noEndtMarker, + Boolean noEndMarker, Boolean noStartMarker, String text, Point to, @@ -43,11 +43,19 @@ macro('hd', { | `from` | | [Point](/reference/api/point) | The startpoint of the dimension | | `to` | | [Point](/reference/api/point) | The endpoint of the dimension | | `y` | | Number | The Y-value at which to draw the dimension | -| `id` | auto-assigned | String | A custom ID under wich paths and points will be created | +| `id` | auto-assigned | String | A custom ID under which paths and points will be created | | `text` | Horizontal distance | Number | The text to go on the dimension if not the from-to horizontal distance | | `noStartMarker` | `false` | Boolean | Whether to not draw a start marker | | `noEndMarker` | `false` | Boolean | Whether to not draw an end marker | +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${id}` | Path for the span of the dimension | +| `paths.${id}_ls` | Path for the leader to the start of the dimension | +| `paths.${id}_le` | Path for the leader to the end of the dimension | + ## Notes Setting a custom ID will: diff --git a/markdown/dev/reference/macros/ld/en.md b/markdown/dev/reference/macros/ld/en.md index ba25aa9c97e..3fa4919a246 100644 --- a/markdown/dev/reference/macros/ld/en.md +++ b/markdown/dev/reference/macros/ld/en.md @@ -2,7 +2,7 @@ title: ld --- -The `ld` macro adds a _linear dimension_ to your pattern. +The `ld` macro adds a _linear dimension_ to your pattern. It is provided by the [dimension plugin](/reference/plugins/dimension/). ## Signature @@ -12,7 +12,7 @@ macro('ld', { Number d, String id, Point from, - Boolean noEndtMarker, + Boolean noEndMarker, Boolean noStartMarker, String text, Point to, @@ -39,14 +39,22 @@ macro('ld', { ## Configuration | Property | Default | Type | Description | -|-----------------|---------|---------------------|-------------| +|----------------:|---------|---------------------|-------------| | `from` | | [Point](/reference/api/point) | The startpoint of the dimension | | `to` | | [Point](/reference/api/point) | The endpoint of the dimension | | `d` | 0 | Number | The offset at which to draw the dimension | -| `id` | auto-assigned | String | A custom ID under wich paths and points will be created | +| `id` | auto-assigned | String | A custom ID under which paths and points will be created | | `text` | Linear distance | Number | The text to go on the dimension if not the from-to linear distance | | `noStartMarker` | `false` | Boolean | Whether to not draw a start marker | -| `noEndMarker` | `false` | Boolean | Whether to not draw an end marker | +| `noEndMarker` | `false` | Boolean | Whether to not draw an end marker | + +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${id}` | Path for the span of the dimension | +| `paths.${id}_ls` | Path for the leader to the start of the dimension | +| `paths.${id}_le` | Path for the leader to the end of the dimension | ## Notes diff --git a/markdown/dev/reference/macros/miniscale/en.md b/markdown/dev/reference/macros/miniscale/en.md index 43fa2169eb9..b3be680d972 100644 --- a/markdown/dev/reference/macros/miniscale/en.md +++ b/markdown/dev/reference/macros/miniscale/en.md @@ -4,6 +4,8 @@ title: miniscale The `miniscale` macro adds a mini _scale box_ to your pattern. This box allows users to verify their pattern is printed to scale. +The white inside of the box provides a metric scale, and the black outside +of the box provides an imperial scale. The `miniscale` macro is provided by the [scalebox plugin](/reference/plugins/scalebox). It is the mini version of [the scalebox macro](/reference/macros/scalebox/). @@ -35,10 +37,20 @@ macro('miniscale', { ## Configuration | Property | Default | Type | Description | -|-------------|---------|---------------------|-------------| +|------------:|---------|---------------------|-------------| | `at` | | [Point](/reference/api/point) | The point to anchor the _scale box_ on | | `rotate` | 0 | Number | Rotation in degrees | +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.__miniscaleImperial` | Path of the imperial, outer box | +| `paths.__miniscaleMetric` | Path of the metric, inner box | +| `points.__miniscaleImperial` | Point anchoring the imperial text | +| `points.__miniscaleMetric` | Point anchoring the metric text | +| `points.__miniscale[Metric/Imperial][Top/Bottom][Left/Right]` | Points for the corners of the boxes | + ## Notes If you inherit a part with a miniscale on it and you'd like to remove all diff --git a/markdown/dev/reference/macros/mirror/en.md b/markdown/dev/reference/macros/mirror/en.md index bf533ab4765..e9afd325e99 100644 --- a/markdown/dev/reference/macros/mirror/en.md +++ b/markdown/dev/reference/macros/mirror/en.md @@ -53,7 +53,17 @@ macro('mirror', { |-------------:|------------|------------|-------------| | `mirror` | | `array` | Array with 2 [Point](/reference/api/point) objects that define the _mirror line_ | | `clone` | `true` | `bool` | Whether to clone mirrored points and or paths | -| `points` | | `array` | An array of [Point](/reference/api/point) objects | -| `paths` | | `array` | An array of [Path](/reference/api/path) objects | +| `points` | | `array` | An array of pointnames, the names of Points in the `points` array to mirror | +| `paths` | | `array` | An array of pathnames, the names of Paths in the `paths` array to mirror | | `prefix` | `mirrored` | `string` | A prefix to apply to the names of the clones points and or paths. Ignored if `nameFormat` is set | | `nameFormat` | | `function` | A method that receives the name of the path or point and should return the name for the cloned path and or point | + +## Result + +If `nameFormat` is set, its method determines the names of cloned, mirrored Points and Paths. +If it is not set, the names are as below. + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${prefix}${Pathname}` | The cloned, mirrored Path(s) (with the first letter of pathname capitalized) | +| `points.${prefix}${Pointname}` | The cloned, mirrored Point(s) (with the first letter of pointname capitalized) | diff --git a/markdown/dev/reference/macros/pd/en.md b/markdown/dev/reference/macros/pd/en.md index d33f06f3a0a..5b47aef89f6 100644 --- a/markdown/dev/reference/macros/pd/en.md +++ b/markdown/dev/reference/macros/pd/en.md @@ -13,7 +13,7 @@ macro('pd', { Number d, String id, Path path, - Boolean noEndtMarker, + Boolean noEndMarker, Boolean noStartMarker, String text, }) @@ -44,12 +44,20 @@ macro('pd', { | Property | Default | Type | Description | |----------------:|---------|---------------------|-------------| | `path` | | [Path](/reference/api/path) | The path to draw the dimension along | -| `d` | 0 | Number | The offset at which to draw the dimension | +| `d` | 10 | Number | The offset at which to draw the dimension | | `text` | Path length | Number | The text to go on the dimension if not the length of the path | -| `id` | auto-assigned | String | A custom ID under wich paths and points will be created | +| `id` | auto-assigned | String | A custom ID under which paths and points will be created | | `noStartMarker` | `false` | Boolean | Whether to not draw a start marker | | `noEndMarker` | `false` | Boolean | Whether to not draw an end marker | +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${id}` | Path for the span of the dimension | +| `paths.${id}_ls` | Path for the leader to the start of the dimension | +| `paths.${id}_le` | Path for the leader to the end of the dimension | + ## Notes Setting a custom ID will: diff --git a/markdown/dev/reference/macros/round/en.md b/markdown/dev/reference/macros/round/en.md index 825d8d4dad7..f0c1dd7e7b4 100644 --- a/markdown/dev/reference/macros/round/en.md +++ b/markdown/dev/reference/macros/round/en.md @@ -2,7 +2,7 @@ title: round --- -The `round` macro rounds a corner. It is provided by the [round +The `round` macro creates a rounded corner. It is provided by the [round plugin](/reference/plugins/round/). ## Signature @@ -44,12 +44,22 @@ macro('round', { |------------:|---------|---------------------|-------------| | `from` | | [Point](/reference/api/point) | The startpoint towards the corner to round | | `to` | | [Point](/reference/api/point) | The endpoint away from the corner to round | -| `via` | | [Point](/reference/api/point) | The corner to round | -| `radius` | Maximum | Number | The radius in mm in not the maximum | +| `via` | | [Point](/reference/api/point) | The cornerpoint to round | +| `radius` | Maximum | Number | The radius in mm if not the maximum possible | | `prefix` | | String | A prefix to give to the points and paths created by this macro | | `hide` | `true` | Boolean | Whether to hide the path created by this macro | | `class` | | String | Class(es) to assign to the path created by this macro | +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${prefix}Rounded` | Path for the rounded corner | +| `points.${prefix}Start` | Point for the start of the rounded corner | +| `points.${prefix}End` | Point for the end of the rounded corner | +| `points.${prefix}Cp1` | Control Point used to create the curved path | +| `points.${prefix}Cp2` | Control Point used to create the curved path | + ## Notes This macro is only intended for 90 degree corners. diff --git a/markdown/dev/reference/macros/scalebox/en.md b/markdown/dev/reference/macros/scalebox/en.md index 5dccfc16389..5bd9125558f 100644 --- a/markdown/dev/reference/macros/scalebox/en.md +++ b/markdown/dev/reference/macros/scalebox/en.md @@ -4,6 +4,8 @@ title: scalebox The `scalebox` macro adds a _scale box_ to your pattern. This box allows users to verify their pattern is printed to scale. +The white inside of the box provides a metric scale, and the black outside +of the box provides an imperial scale. The `scalebox` macro is provided by the [scalebox plugin](/reference/plugins/scalebox). @@ -40,7 +42,7 @@ macro('scalebox', { ## Configuration | Property | Default | Type | Description | -|-------------|---------|---------------------|-------------| +|------------:|---------|---------------------|-------------| | `at` | | [Point](/reference/api/point) | The point to anchor the _scale box_ on | | `lead` | FreeSewing | String | The lead text above the title | | `title` | _pattern name + version_ | String | The title text | @@ -49,6 +51,19 @@ macro('scalebox', { (\*) `freesewingIsMadeByJoostDeCockAndContributors \n withTheFinancialSupportOfOurPatrons` +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.__scaleboxImperial` | Path of the imperial, outer box | +| `paths.__scaleboxMetric` | Path of the metric, inner box | +| `points.__scaleboxLead` | Point anchoring the lead text above the title | +| `points.__scaleboxTitle` | Point anchoring the title text | +| `points.__scaleboxTitle` | Point anchoring the text below the title | +| `points.__scaleboxImperial` | Point anchoring the imperial text | +| `points.__scaleboxMetric` | Point anchoring the metric text | +| `points.__scalebox[Metric/Imperial][Top/Bottom][Left/Right]` | Points for the corners of the boxes | + ## Notes ### Removing the scalebox diff --git a/markdown/dev/reference/macros/sprinkle/en.md b/markdown/dev/reference/macros/sprinkle/en.md index 277caa5a37d..d769e2cd38b 100644 --- a/markdown/dev/reference/macros/sprinkle/en.md +++ b/markdown/dev/reference/macros/sprinkle/en.md @@ -2,8 +2,8 @@ title: sprinkle --- -The `sprinkle` macro facilitates adding snippets to your pattern in bulk. -It is by the [sprinkle plugin](/reference/plugins/sprinkle). +The `sprinkle` macro facilitates adding snippets to your pattern in bulk. +It is provided by the [sprinkle plugin](/reference/plugins/sprinkle). ## Signature @@ -38,7 +38,7 @@ macro('sprinkle', { // Prevent clipping paths.diag = new Path() .move(points.a) - .move(points.g) + .move(new Point(points.g.x, points.g.y + 5)) return part } @@ -49,7 +49,13 @@ macro('sprinkle', { | Property | Default | Type | Description | |------------:|---------|------------------|-------------| -| `snippet` | | String | Name of the snippet to sprinkle | -| `on` | `[]` | Array of strings | An array with **the names** of points to add the snippet on | -| `scale` | 1 | number | Scale for the individual snippets | -| `rotate` | 0 | number | Rotation for the individual snippets | +| `snippet` | | String | Name of the Snippet to sprinkle | +| `on` | `[]` | Array of strings | Array of pointnames, the names of Points in the `points` array to add the Snippets on | +| `scale` | 1 | number | Scale for the individual Snippets | +| `rotate` | 0 | number | Rotation for the individual Snippets | + +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `snippets.${pointname}-${snippet}` | The Snippet(s) created | diff --git a/markdown/dev/reference/macros/title/en.md b/markdown/dev/reference/macros/title/en.md index 3c3168699e2..6fbe9e3d57b 100644 --- a/markdown/dev/reference/macros/title/en.md +++ b/markdown/dev/reference/macros/title/en.md @@ -2,7 +2,7 @@ title: title --- -The `title` macro adds a title to a pattern part. +The `title` macro adds a title to a pattern part. It is provided by the [title plugin](/reference/plugins/title). ## Signature @@ -25,9 +25,10 @@ macro('title', { ```js ({ Point, Path, paths, macro, store, part }) => { - // This is where name/version is supposed to be stored + // This is where name/version/etc. is supposed to be stored store.set('data.version', 3) store.set('data.name', 'Example') + store.set('data.for', 'Person') macro('title', { nr: 9, @@ -37,8 +38,8 @@ macro('title', { // Prevent clipping paths.diag = new Path() - .move(new Point(0,-50)) - .move(new Point(80,20)) + .move(new Point(-20,-50)) + .move(new Point(80,35)) return part } @@ -56,3 +57,13 @@ macro('title', { | `append` | `false` | Boolean | Set this to `true` to append the `nr` to any text already set in Point `at`'s attributes, rather than overwrite it | | `rotation` | 0 | Number | An optional rotation in degrees | | `scale` | 1 | Number | An optional scaling factor | + +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `points._${prefix}_titleNr` | Point anchoring the part number text | +| `points._${prefix}_titleName` | Point anchoring the part name text | +| `points._${prefix}_titlePattern` | Point anchoring the pattern name text | +| `points._${prefix}_titleFor` | Point anchoring the name of the person for whom the pattern was made, if that information exists | +| `points._${prefix}_exportDate` | Point anchoring the pattern export date | diff --git a/markdown/dev/reference/macros/vd/en.md b/markdown/dev/reference/macros/vd/en.md index b8f04ebdc87..0fb43c9c383 100644 --- a/markdown/dev/reference/macros/vd/en.md +++ b/markdown/dev/reference/macros/vd/en.md @@ -2,7 +2,7 @@ title: vd --- -The `vd` macro adds a _vertical dimension_ to your pattern. +The `vd` macro adds a _vertical dimension_ to your pattern. It is provided by the [dimension plugin](/reference/plugins/dimension/). ## Signature @@ -11,7 +11,7 @@ It is provided by the [dimension plugin](/reference/plugins/dimension/). macro('vd', { String id, Point from, - Boolean noEndtMarker, + Boolean noEndMarker, Boolean noStartMarker, String text, Point to, @@ -23,7 +23,7 @@ macro('vd', { ```js -({ Point, macro, part }) => { +({ Point, macro, Path, paths, part }) => { macro('vd', { from: new Point(0,0), @@ -31,6 +31,11 @@ macro('vd', { x:10, }) + // Prevent clipping + paths.diag = new Path() + .move(new Point(-20,0)) + .move(new Point(90,40)) + return part } ``` @@ -44,10 +49,18 @@ macro('vd', { | `to` | | [Point](/reference/api/point) | The endpoint of the dimension | | `x` | | Number | The X-value at which to draw the dimension | | `text` | Vertical distance | Number | The text to go on the dimension if not the from-to vertical distance | -| `id` | auto-assigned | String | A custom ID under wich paths and points will be created | +| `id` | auto-assigned | String | A custom ID under which paths and points will be created | | `noStartMarker` | `false` | Boolean | Whether to not draw a start marker | | `noEndMarker` | `false` | Boolean | Whether to not draw an end marker | +## Result + +| Generated Element | Description | +|-------------------|-------------| +| `paths.${id}` | Path for the span of the dimension | +| `paths.${id}_ls` | Path for the leader to the start of the dimension | +| `paths.${id}_le` | Path for the leader to the end of the dimension | + ## Notes Setting a custom ID will: From 1ba6fc4e7fe38a2cfa9a6b828481af5f34d8761c Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Fri, 9 Dec 2022 21:23:35 -0800 Subject: [PATCH 23/29] fix(docs): Add paths to prevent Example clipping --- markdown/dev/reference/api/path/move/en.md | 5 +++++ markdown/dev/reference/api/point/dy/en.md | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/markdown/dev/reference/api/path/move/en.md b/markdown/dev/reference/api/path/move/en.md index f80354c7f19..473d3a6f1e7 100644 --- a/markdown/dev/reference/api/path/move/en.md +++ b/markdown/dev/reference/api/path/move/en.md @@ -22,6 +22,11 @@ Path path.move(Point to) paths.noline = new Path().move(points.to) + // Prevents clipping + paths.diag = new Path() + .move(new Point(40,19)) + .move(new Point(70,21)) + return part } ``` diff --git a/markdown/dev/reference/api/point/dy/en.md b/markdown/dev/reference/api/point/dy/en.md index 9043286197c..4ebcda6c133 100644 --- a/markdown/dev/reference/api/point/dy/en.md +++ b/markdown/dev/reference/api/point/dy/en.md @@ -26,6 +26,11 @@ float point.dy(Point point) .setClass("dotted") .setText(units(points.from.dy(points.to)), 'center') + // Prevents clipping + paths.diag = new Path() + .move(new Point(-10,40)) + .move(new Point(60,10)) + return part } ``` From a8912b3e605882b62a9f9e515be66a4e2deaf7a6 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Sat, 10 Dec 2022 11:50:27 -0800 Subject: [PATCH 24/29] chore(docs): Revert changes to Extending Options documentation --- .../api/part/config/options/extend/en.md | 59 +++++++++++++++---- 1 file changed, 49 insertions(+), 10 deletions(-) diff --git a/markdown/dev/reference/api/part/config/options/extend/en.md b/markdown/dev/reference/api/part/config/options/extend/en.md index 762f942f821..cf61e59d44a 100644 --- a/markdown/dev/reference/api/part/config/options/extend/en.md +++ b/markdown/dev/reference/api/part/config/options/extend/en.md @@ -1,18 +1,15 @@ --- -title: Extending options and suppressing translation +title: Extending options --- -## Extending and overriding inherited options + -Parts automatically inherit options from the parts they are based on. -However, parts can also extend their options. +Explain extending options here -- A part can define new options. These new options are added to the ones inherited. -- Options can be redefined to override/extend an inherited option. - - For example, an inherited percentage option can be redefined to have different min, max, and/or default values. - - A different menu can be specified for an inherited option, or the menu property can be ommitted or set to `null` to prevent the option from appearing in the menus. + -## Suppressing translation + +## Suppress translation In the example above, you want the different `list` options to be translated. But sometimes, there is no need for that, like in this example from Breanna: @@ -44,7 +41,49 @@ options: { } ``` -As you can see above, you can set the `doNotTranslate` property to `true` to indicate this. +As you can see above, you can set the `doNotTranslate` property to `true` and to indicate this. + + + +##### This is not a core feature + +To be clear, setting this here does not do anything in core. It's merely extra +metadata you can add on the option to facilitate frontend integration. + + +## Suppress translation + +In the example above, you want the different `list` options to be translated. +But sometimes, there is no need for that, like in this example from Breanna: + +```js +options: { + primaryBustDart: { + list: [ + '06:00', + '07:00', + '08:00', + '09:00', + '10:00', + '11:00', + '11:30', + '12:00', + '12:30', + '13:00', + '13:30', + '14:00', + '15:00', + '16:00', + '17:00', + ], + dflt: '06:00', + doNotTranslate: true, + }, + // More here +} +``` + +As you can see above, you can set the `doNotTranslate` property to `true` and to indicate this. From 922562ac2556197cede6ab9c3a15c2b081271f45 Mon Sep 17 00:00:00 2001 From: Benjamin F Date: Sat, 10 Dec 2022 11:58:26 -0800 Subject: [PATCH 25/29] chore(docs): Revert non-core API edits --- .../dev/reference/api/part/config/options/deg/en.md | 1 - markdown/dev/reference/api/part/config/options/en.md | 10 +--------- .../dev/reference/api/part/config/options/list/en.md | 3 +-- 3 files changed, 2 insertions(+), 12 deletions(-) diff --git a/markdown/dev/reference/api/part/config/options/deg/en.md b/markdown/dev/reference/api/part/config/options/deg/en.md index 40e02dbb6aa..5c45014122f 100644 --- a/markdown/dev/reference/api/part/config/options/deg/en.md +++ b/markdown/dev/reference/api/part/config/options/deg/en.md @@ -31,7 +31,6 @@ options: { deg: 85, min: 60, max: 130, - menu: 'fit' } } ``` diff --git a/markdown/dev/reference/api/part/config/options/en.md b/markdown/dev/reference/api/part/config/options/en.md index 78a7064f4db..7ef5560c643 100644 --- a/markdown/dev/reference/api/part/config/options/en.md +++ b/markdown/dev/reference/api/part/config/options/en.md @@ -9,7 +9,7 @@ list the part's options: const part = { name: 'example.front', options: { - chestEase: { pct: 12, min: 0, max: 25, menu: 'fit' }, + chestEase: { pct: 12, min: 0, max: 25 }, }, draft: ({ part }) => part } @@ -61,14 +61,6 @@ percentage options][snapped] instead. -## Specifying the menu - -The `menu` property is used to specify what menu name the option should be listed under in the Design Options section. -- Any arbitrary string can be used, and these names are used to organize options into logical sections. Examples of menu names that might be used include `fit`, `style`, and `advanced`. -- The menu property is optional. An option without a menu property will still exist but be hidden, not shown or accessible to the user in Design Options. -- Additional levels of submenus can be specified by using a menu name with text separated by "`.`" period characters. For example, `style.sleeves` can be used to have the option appear in the "Sleeves" submenu under the "Style" menu. -- Menus and options will be appear to the user in alphabetical order. The exception is the `advanced` menu which, if present, will be displayed at the end of all other menus. - [bool]: /reference/api/part/config/options/bool [const]: /reference/api/part/config/options/const [count]: /reference/api/part/config/options/counter diff --git a/markdown/dev/reference/api/part/config/options/list/en.md b/markdown/dev/reference/api/part/config/options/list/en.md index f88e9789c79..437b84353cd 100644 --- a/markdown/dev/reference/api/part/config/options/list/en.md +++ b/markdown/dev/reference/api/part/config/options/list/en.md @@ -35,8 +35,7 @@ options: { "roundedFrenchCuff", "angledFrenchCuff", "straightFrenchCuff" - ], - menu: 'style' + ] } } ``` From d491a37bcf08b21f307f862ca4a5471bfdac2a23 Mon Sep 17 00:00:00 2001 From: Enoch Riese Date: Sun, 11 Dec 2022 14:33:05 -0600 Subject: [PATCH 26/29] add back unused dependencies for lab. set everyone to next@13.0.0 --- sites/dev/package.json | 2 +- sites/lab/package.json | 38 ++++- sites/org/package.json | 2 +- yarn.lock | 309 +++++++++++++++++++++++++++++++++++++++-- 4 files changed, 330 insertions(+), 21 deletions(-) diff --git a/sites/dev/package.json b/sites/dev/package.json index cbcc21f97b6..b152c9ce610 100644 --- a/sites/dev/package.json +++ b/sites/dev/package.json @@ -37,7 +37,7 @@ "lodash.get": "^4.4.2", "lodash.orderby": "^4.6.0", "lodash.set": "^4.3.2", - "next": "^13.0.6", + "next": "^13.0.0", "react": "^18.2.0", "react-copy-to-clipboard": "^5.0.4", "react-dom": "^18.2.0", diff --git a/sites/lab/package.json b/sites/lab/package.json index 479541720c4..16c3c7aa809 100644 --- a/sites/lab/package.json +++ b/sites/lab/package.json @@ -30,14 +30,44 @@ }, "dependencies": { "@headlessui/react": "^1.6.6", - "i18next": "^22.1.4", - "next": "^13.0.6", + "@heroicons/react": "^2.0.1", + "@mdx-js/loader": "^2.0.0-rc.2", + "@mdx-js/mdx": "^2.0.0-rc.2", + "@mdx-js/react": "^2.0.0-rc.2", + "@mdx-js/runtime": "next", + "@tailwindcss/typography": "^0.5.0", + "algoliasearch": "^4.11.0", + "d3-dispatch": "^3.0.1", + "d3-drag": "^3.0.0", + "d3-selection": "^3.0.0", + "daisyui": "^2.0.6", + "i18next": "^22.4.0", + "lodash.get": "^4.4.2", + "lodash.orderby": "^4.6.0", + "lodash.set": "^4.3.2", + "next": "^13.0.0", "next-i18next": "^13.0.0", "react": "^18.2.0", + "react-copy-to-clipboard": "^5.0.4", + "react-hotkeys-hook": "^4.0.4", "react-i18next": "^12.1.1", - "react-swipeable": "^7.0.0" + "react-instantsearch-dom": "^6.18.0", + "react-markdown": "^8.0.0", + "react-swipeable": "^7.0.0", + "react-timeago": "^7.1.0", + "rehype-highlight": "^6.0.0", + "rehype-sanitize": "^5.0.1", + "rehype-stringify": "^9.0.2", + "remark-copy-linked-files": "https://github.com/joostdecock/remark-copy-linked-files", + "remark-gfm": "^3.0.1" + }, + "devDependencies": { + "autoprefixer": "^10.4.0", + "eslint-config-next": "13.0.6", + "js-yaml": "^4.1.0", + "postcss": "^8.4.4", + "tailwindcss": "^3.0.1" }, - "devDependencies": {}, "browserslist": [ "last 2 versions" ] diff --git a/sites/org/package.json b/sites/org/package.json index c754af1e805..952a297f2eb 100644 --- a/sites/org/package.json +++ b/sites/org/package.json @@ -40,7 +40,7 @@ "lodash.get": "^4.4.2", "lodash.orderby": "^4.6.0", "lodash.set": "^4.3.2", - "next": "^13.0.6", + "next": "^13.0.0", "react-hotkeys-hook": "^4.0.4", "react-instantsearch-dom": "^6.18.0", "react-markdown": "^8.0.3", diff --git a/yarn.lock b/yarn.lock index 90d4a5f30b8..d34b6e2b2d5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2484,7 +2484,7 @@ dependencies: client-only "^0.0.1" -"@heroicons/react@latest": +"@heroicons/react@^2.0.1", "@heroicons/react@latest": version "2.0.13" resolved "https://registry.yarnpkg.com/@heroicons/react/-/react-2.0.13.tgz#9b1cc54ff77d6625c9565efdce0054a4bcd9074c" integrity sha512-iSN5XwmagrnirWlYEWNPdCDj9aRYVD/lnK3JlsC9/+fqGF80k8C7rl+1HCvBX0dBoagKqOFBs6fMhJJ1hOg1EQ== @@ -3344,7 +3344,7 @@ string-strip-html "^8.2.0" tailwindcss "^3.2.4" -"@mdx-js/loader@latest": +"@mdx-js/loader@^2.0.0-rc.2", "@mdx-js/loader@latest": version "2.1.5" resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-2.1.5.tgz#4e764c65333530fd786dfe4f36e918dfeac0200b" integrity sha512-oXjfTa/iAcMmW8DdQ+hQFodPCLqw5VKT2yoZkLwrZfPVVpUgKrI+5/ZePYq328xxtAUStZmR3ed0PWJrwd5Pkg== @@ -3377,7 +3377,26 @@ unist-builder "2.0.3" unist-util-visit "2.0.3" -"@mdx-js/mdx@^2.0.0", "@mdx-js/mdx@latest": +"@mdx-js/mdx@2.0.0-next.9": + version "2.0.0-next.9" + resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.0.0-next.9.tgz#6af5bf5d975ceccd11d31b4b7f180b2205c7bcfa" + integrity sha512-6i7iLIPApiCdvp4T6n3dI5IqDOvcNx4M3DUJ+AG6xj/NTssJcf5r3Gl4i3Q2tqJp0JAj6bWQ3IOLAefF18Y48g== + dependencies: + "@mdx-js/util" "2.0.0-next.1" + astring "^1.4.0" + detab "^2.0.0" + estree-walker "^2.0.0" + hast-util-to-estree "^1.1.0" + mdast-util-to-hast "^10.1.0" + periscopic "^2.0.0" + rehype-minify-whitespace "^4.0.0" + remark-mdx "2.0.0-next.9" + remark-parse "^9.0.0" + remark-squeeze-paragraphs "^4.0.0" + unified "^9.2.0" + unist-builder "^2.0.0" + +"@mdx-js/mdx@^2.0.0", "@mdx-js/mdx@^2.0.0-rc.2", "@mdx-js/mdx@latest": version "2.1.5" resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.1.5.tgz#577937349fd555154382c2f805f5f52834a64903" integrity sha512-zEG0lt+Bl/r5U6e0TOS7qDbsXICtemfAPquxWFsMbdzrvlWaqMGemLl+sjVpqlyaaiCiGVQBSGdCk0t1qXjkQg== @@ -3405,7 +3424,12 @@ resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573" integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg== -"@mdx-js/react@latest": +"@mdx-js/react@2.0.0-next.9": + version "2.0.0-next.9" + resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.0.0-next.9.tgz#a269c2e2ecd86490e664fef789ae0d795e6ee509" + integrity sha512-ZHEwW79zXQrII6ZSaIDgxd80IDRB6Zg/2N1IivQ62j4qlAZd78rbbAc0BQKwADYpuFg96g0pFbuZ7/+vl1gR6A== + +"@mdx-js/react@^2.0.0-rc.2", "@mdx-js/react@latest": version "2.1.5" resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.1.5.tgz#8225a867dae6f845ae5b0ec15bb454c23be3f576" integrity sha512-3Az1I6SAWA9R38rYjz5rXBrGKeZhq96CSSyQtqY+maPj8stBsoUH5pNcmIixuGkufYsh8F5+ka2CVPo2fycWZw== @@ -3422,11 +3446,25 @@ "@mdx-js/react" "1.6.22" buble-jsx-only "^0.19.8" +"@mdx-js/runtime@next": + version "2.0.0-next.9" + resolved "https://registry.yarnpkg.com/@mdx-js/runtime/-/runtime-2.0.0-next.9.tgz#9acea9d10f225ded9ef4175c9b9a5c6f6c48620b" + integrity sha512-a4vhOaq74T0ZZyAsENj1oNAvAZr1hg11QkTogFG40H9vVvehfTDM2/zOt5/zHegP6inWIngUZbI1YWyoM07H3w== + dependencies: + "@mdx-js/mdx" "2.0.0-next.9" + "@mdx-js/react" "2.0.0-next.9" + buble-jsx-only "^0.19.8" + "@mdx-js/util@1.6.22": version "1.6.22" resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b" integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA== +"@mdx-js/util@2.0.0-next.1": + version "2.0.0-next.1" + resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-2.0.0-next.1.tgz#b17a046ed5cb1b13e75b29740504ec53a7e0b016" + integrity sha512-F36kWTFdFXrbNIsM77dhVwYZsZonUIKHkYyYgnuw1NWskBfEn1ET5B5Z5mm58ckKNf7SimchnxR9sKCCtH38WA== + "@motionone/animation@^10.13.1": version "10.14.0" resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.14.0.tgz#2f2a3517183bb58d82e389aac777fe0850079de6" @@ -6212,7 +6250,7 @@ astral-regex@^2.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== -astring@^1.8.0: +astring@^1.4.0, astring@^1.8.0: version "1.8.3" resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.3.tgz#1a0ae738c7cc558f8e5ddc8e3120636f5cebcb85" integrity sha512-sRpyiNrx2dEYIMmUXprS8nlpRg2Drs8m9ElX9vVEXaCB4XEAJhKfs7IcX0IwShjuOAjLR6wzIrgoptz1n19i1A== @@ -7378,6 +7416,11 @@ chalk@^5.0.0, chalk@^5.0.1, chalk@^5.1.2: resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.1.2.tgz#d957f370038b75ac572471e83be4c5ca9f8e8c45" integrity sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ== +character-entities-html4@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125" + integrity sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g== + character-entities-html4@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b" @@ -9109,7 +9152,7 @@ destroy@~1.0.4: resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" integrity sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg== -detab@2.0.4: +detab@2.0.4, detab@^2.0.0: version "2.0.4" resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43" integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g== @@ -10255,6 +10298,11 @@ estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== +estree-util-attach-comments@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-1.0.0.tgz#51d280e458ce85dec0b813bd96d2ce98eae8a3f2" + integrity sha512-sL7dTwFGqzelPlB56lRZY1CC/yDxCe365WQpxNd49ispL40Yv8Tv4SmteGbvZeFwShOOVKfMlo4jrVvwoaMosA== + estree-util-attach-comments@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.0.1.tgz#57dd0ae170ce2a6d9170ad69e6a45c87bcb52d81" @@ -10271,6 +10319,11 @@ estree-util-build-jsx@^2.0.0: estree-util-is-identifier-name "^2.0.0" estree-walker "^3.0.0" +estree-util-is-identifier-name@^1.0.0, estree-util-is-identifier-name@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-1.1.0.tgz#2e3488ea06d9ea2face116058864f6370b37456d" + integrity sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ== + estree-util-is-identifier-name@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz#cf07867f42705892718d9d89eb2d85eaa8f0fcb5" @@ -10293,6 +10346,11 @@ estree-util-visit@^1.0.0: "@types/estree-jsx" "^0.0.1" "@types/unist" "^2.0.0" +estree-walker@^2.0.0, estree-walker@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + estree-walker@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.1.tgz#c2a9fb4a30232f5039b7c030b37ead691932debd" @@ -11928,6 +11986,13 @@ hast-to-hyperscript@^9.0.0: unist-util-is "^4.0.0" web-namespaces "^1.0.0" +hast-util-embedded@^1.0.0: + version "1.0.6" + resolved "https://registry.yarnpkg.com/hast-util-embedded/-/hast-util-embedded-1.0.6.tgz#ea7007323351cc43e19e1d6256b7cde66ad1aa03" + integrity sha512-JQMW+TJe0UAIXZMjCJ4Wf6ayDV9Yv3PBDPsHD4ExBpAspJ6MOcCX+nzVF+UJVv7OqPcg852WEMSHQPoRA+FVSw== + dependencies: + hast-util-is-element "^1.1.0" + hast-util-embedded@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/hast-util-embedded/-/hast-util-embedded-2.0.0.tgz#877f4261044854743fc2621f728930ca61c8376f" @@ -11992,6 +12057,11 @@ hast-util-is-body-ok-link@^2.0.0: hast-util-has-property "^2.0.0" hast-util-is-element "^2.0.0" +hast-util-is-element@^1.0.0, hast-util-is-element@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-1.1.0.tgz#3b3ed5159a2707c6137b48637fbfe068e175a425" + integrity sha512-oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ== + hast-util-is-element@^2.0.0: version "2.1.2" resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz#fc0b0dc7cef3895e839b8d66979d57b0338c68f3" @@ -12084,6 +12154,21 @@ hast-util-select@~5.0.1: unist-util-visit "^4.0.0" zwitch "^2.0.0" +hast-util-to-estree@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-1.4.0.tgz#896ef9150a3f5cfbaff37334f75f31d6a324bab6" + integrity sha512-CiOAIESUKkSOcYbvTth9+yM28z5ArpsYqxWc7LWJxOx975WRUBDjvVuuzZR2o09BNlkf7bp8G2GlOHepBRKJ8Q== + dependencies: + comma-separated-tokens "^1.0.0" + estree-util-attach-comments "^1.0.0" + estree-util-is-identifier-name "^1.1.0" + hast-util-whitespace "^1.0.0" + property-information "^5.0.0" + space-separated-tokens "^1.0.0" + style-to-object "^0.3.0" + unist-util-position "^3.1.0" + zwitch "^1.0.0" + hast-util-to-estree@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.0.2.tgz#79c5bf588915610b3f0d47ca83a74dc0269c7dc2" @@ -12159,6 +12244,11 @@ hast-util-to-text@^3.0.0: hast-util-is-element "^2.0.0" unist-util-find-after "^4.0.0" +hast-util-whitespace@^1.0.0, hast-util-whitespace@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-1.0.4.tgz#e4fe77c4a9ae1cb2e6c25e02df0043d0164f6e41" + integrity sha512-I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A== + hast-util-whitespace@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz#4fc1086467cc1ef5ba20673cb6b03cec3a970f1c" @@ -12508,10 +12598,10 @@ i18next-fs-backend@^2.0.0: resolved "https://registry.yarnpkg.com/i18next-fs-backend/-/i18next-fs-backend-2.0.1.tgz#5e33f28565257617682d622f6ce2c672d3f0ccc5" integrity sha512-fzeiFOXqsMiFAFUnNyC4buERI11vTAuf7JIDWqaiPgBK3R+XJQMSY1LyoXaWspBEFaAkXH/0uMbOv7nttBFztg== -i18next@^22.1.4: - version "22.1.4" - resolved "https://registry.yarnpkg.com/i18next/-/i18next-22.1.4.tgz#907a4e710889ae23fb92f3510a0f7147823f92ff" - integrity sha512-MCDtNRyovLY22rgLoZdCzg2QIza1V1A/3Hxb99akJzTDjcqCRWEsglTpFUt0vUjOxSxz+WmxmFETLHORRS+n6Q== +i18next@^22.4.0: + version "22.4.0" + resolved "https://registry.yarnpkg.com/i18next/-/i18next-22.4.0.tgz#fd79558f3d7855589c1fe447a5e10c0550f41195" + integrity sha512-1P6s/V/phMB1uQzV3EIaD/BJimz1d0P6sLZmfcMFbsfyfQ/2NiKcPyxP84aIrobhK2rMpkcOVAdneuH/NI/wBg== dependencies: "@babel/runtime" "^7.20.6" @@ -13310,6 +13400,13 @@ is-promise@^4.0.0: resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3" integrity sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ== +is-reference@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" + integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== + dependencies: + "@types/estree" "*" + is-reference@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.0.tgz#b1380c03d96ddf7089709781e3208fceb0c92cd6" @@ -14735,6 +14832,11 @@ loglevelnext@^1.0.1: es6-symbol "^3.1.1" object.assign "^4.1.0" +longest-streak@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" + integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== + longest-streak@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.0.1.tgz#c97315b7afa0e7d9525db9a5a2953651432bdc5d" @@ -14989,7 +15091,7 @@ mdast-util-find-and-replace@^2.0.0: unist-util-is "^5.0.0" unist-util-visit-parents "^5.0.0" -mdast-util-from-markdown@^0.8.5: +mdast-util-from-markdown@^0.8.0, mdast-util-from-markdown@^0.8.5: version "0.8.5" resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== @@ -15100,6 +15202,13 @@ mdast-util-mdx-expression@^1.0.0, mdast-util-mdx-expression@^1.1.0: mdast-util-from-markdown "^1.0.0" mdast-util-to-markdown "^1.0.0" +mdast-util-mdx-expression@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-0.1.1.tgz#fa1a04a5ea6777b0e8db6c120adf03088595df95" + integrity sha512-SoO8y1B9NjMOYlNdwXMchuTVvqSTlUmXm1P5QvZNPv7OH7aa8qJV+3aA+vl1DHK9Vk1uZAlgwokjvDQhS6bINA== + dependencies: + strip-indent "^3.0.0" + mdast-util-mdx-jsx@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.0.2.tgz#087448dc29f6df9b9d9951132f82c20bd378bb68" @@ -15116,6 +15225,28 @@ mdast-util-mdx-jsx@^2.0.0: unist-util-stringify-position "^3.0.0" vfile-message "^3.0.0" +mdast-util-mdx-jsx@~0.1.0: + version "0.1.4" + resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-0.1.4.tgz#868371b90b17337b4f072a07021f7ce19612cf34" + integrity sha512-67KOAvCmypBSpr+AJEAVQg1Obig5Wnguo4ETTxASe5WVP4TLt57bZjDX/9EW5sWYQsO4gPqLxkUOlypVn5rkhg== + dependencies: + mdast-util-to-markdown "^0.6.0" + parse-entities "^2.0.0" + stringify-entities "^3.1.0" + unist-util-remove-position "^3.0.0" + unist-util-stringify-position "^2.0.0" + vfile-message "^2.0.0" + +mdast-util-mdx@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-0.1.1.tgz#16acbc6cabe33f4cebeb63fa9cf8be5da1d56fbf" + integrity sha512-9nncdnHNYSb4HNxY3AwE6gU632jhbXsDGXe9PkkJoEawYWJ8tTwmEOHGlGa2TCRidtkd6FF5I8ogDU9pTDlQyA== + dependencies: + mdast-util-mdx-expression "~0.1.0" + mdast-util-mdx-jsx "~0.1.0" + mdast-util-mdxjs-esm "~0.1.0" + mdast-util-to-markdown "^0.6.1" + mdast-util-mdx@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz#dd4f6c993cf27da32725e50a04874f595b7b63fb" @@ -15136,6 +15267,11 @@ mdast-util-mdxjs-esm@^1.0.0: mdast-util-from-markdown "^1.0.0" mdast-util-to-markdown "^1.0.0" +mdast-util-mdxjs-esm@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-0.1.1.tgz#69134a0dad71a59a9e0e9cfdc0633dde31dff69a" + integrity sha512-kBiYeashz+nuhfv+712nc4THQhzXIH2gBFUDbuLxuDCqU/fZeg+9FAcdRBx9E13dkpk1p2Xwufzs3wsGJ+mISQ== + mdast-util-to-hast@10.0.1: version "10.0.1" resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb" @@ -15150,6 +15286,20 @@ mdast-util-to-hast@10.0.1: unist-util-position "^3.0.0" unist-util-visit "^2.0.0" +mdast-util-to-hast@^10.1.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.2.0.tgz#61875526a017d8857b71abc9333942700b2d3604" + integrity sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ== + dependencies: + "@types/mdast" "^3.0.0" + "@types/unist" "^2.0.0" + mdast-util-definitions "^4.0.0" + mdurl "^1.0.0" + unist-builder "^2.0.0" + unist-util-generated "^1.0.0" + unist-util-position "^3.0.0" + unist-util-visit "^2.0.0" + mdast-util-to-hast@^12.0.0, mdast-util-to-hast@^12.1.0: version "12.2.0" resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.2.0.tgz#4dbff7ab2b20b8d12fc8fe98bf804d97e7358cbf" @@ -15167,6 +15317,18 @@ mdast-util-to-hast@^12.0.0, mdast-util-to-hast@^12.1.0: unist-util-position "^4.0.0" unist-util-visit "^4.0.0" +mdast-util-to-markdown@^0.6.0, mdast-util-to-markdown@^0.6.1: + version "0.6.5" + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" + integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== + dependencies: + "@types/unist" "^2.0.0" + longest-streak "^2.0.0" + mdast-util-to-string "^2.0.0" + parse-entities "^2.0.0" + repeat-string "^1.0.0" + zwitch "^1.0.0" + mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.3.0.tgz#38b6cdc8dc417de642a469c4fc2abdf8c931bd1e" @@ -15415,6 +15577,14 @@ micromark-extension-gfm@^2.0.0: micromark-util-combine-extensions "^1.0.0" micromark-util-types "^1.0.0" +micromark-extension-mdx-expression@^0.3.0, micromark-extension-mdx-expression@^0.3.2, micromark-extension-mdx-expression@~0.3.0: + version "0.3.2" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-0.3.2.tgz#827592af50116110dc9ee27201a73c037e61aa27" + integrity sha512-Sh8YHLSAlbm/7TZkVKEC4wDcJE8XhVpZ9hUXBue1TcAicrrzs/oXu7PHH3NcyMemjGyMkiVS34Y0AHC5KG3y4A== + dependencies: + micromark "~2.11.0" + vfile-message "^2.0.0" + micromark-extension-mdx-expression@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz#cd3843573921bf55afcfff4ae0cd2e857a16dcfa" @@ -15443,6 +15613,16 @@ micromark-extension-mdx-jsx@^1.0.0: uvu "^0.5.0" vfile-message "^3.0.0" +micromark-extension-mdx-jsx@~0.3.0: + version "0.3.3" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-0.3.3.tgz#68e8e700f2860e32e96ff48e44afb7465d462e21" + integrity sha512-kG3VwaJlzAPdtIVDznfDfBfNGMTIzsHqKpTmMlew/iPnUCDRNkX+48ElpaOzXAtK5axtpFKE3Hu3VBriZDnRTQ== + dependencies: + estree-util-is-identifier-name "^1.0.0" + micromark "~2.11.0" + micromark-extension-mdx-expression "^0.3.2" + vfile-message "^2.0.0" + micromark-extension-mdx-md@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz#382f5df9ee3706dd120b51782a211f31f4760d22" @@ -15450,6 +15630,21 @@ micromark-extension-mdx-md@^1.0.0: dependencies: micromark-util-types "^1.0.0" +micromark-extension-mdx-md@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-0.1.1.tgz#277b4e82ada37bfdf222f6c3530e20563d73e064" + integrity sha512-emlFQEyfx/2aPhwyEqeNDfKE6jPH1cvLTb5ANRo4qZBjaUObnzjLRdzK8RJ4Xc8+/dOmKN8TTRxFnOYF5/EAwQ== + +micromark-extension-mdx@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/micromark-extension-mdx/-/micromark-extension-mdx-0.2.1.tgz#074b85013909481d23f382f17dced7b4cd173c0a" + integrity sha512-J+nZegf1ExPz1Ft6shxu8M9WfRom1gwRIx6gpJK1SEEqKzY5LjOR1d/WHRtjwV4KoMXrL53+PoN7T1Rw1euJew== + dependencies: + micromark "~2.11.0" + micromark-extension-mdx-expression "~0.3.0" + micromark-extension-mdx-jsx "~0.3.0" + micromark-extension-mdx-md "~0.1.0" + micromark-extension-mdxjs-esm@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz#630d9dc9db2c2fd470cac8c1e7a824851267404d" @@ -15464,6 +15659,28 @@ micromark-extension-mdxjs-esm@^1.0.0: uvu "^0.5.0" vfile-message "^3.0.0" +micromark-extension-mdxjs-esm@~0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-0.3.1.tgz#40a710fe145b381e39a2930db2813f3efaa014ac" + integrity sha512-tuLgcELrgY1a5tPxjk+MrI3BdYtwW67UaHZdzKiDYD8loNbxwIscfdagI6A2BKuAkrfeyHF6FW3B8KuDK3ZMXw== + dependencies: + micromark "~2.11.0" + micromark-extension-mdx-expression "^0.3.0" + vfile-message "^2.0.0" + +micromark-extension-mdxjs@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-0.3.0.tgz#35ecebaf14b8377b6046b659780fd3111196eccd" + integrity sha512-NQuiYA0lw+eFDtSG4+c7ao3RG9dM4P0Kx/sn8OLyPhxtIc6k+9n14k5VfLxRKfAxYRTo8c5PLZPaRNmslGWxJw== + dependencies: + acorn "^8.0.0" + acorn-jsx "^5.0.0" + micromark "~2.11.0" + micromark-extension-mdx-expression "~0.3.0" + micromark-extension-mdx-jsx "~0.3.0" + micromark-extension-mdx-md "~0.1.0" + micromark-extension-mdxjs-esm "~0.3.0" + micromark-extension-mdxjs@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz#772644e12fc8299a33e50f59c5aa15727f6689dd" @@ -16179,7 +16396,7 @@ next-tick@^1.1.0: resolved "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== -next@^13.0.6: +next@^13.0.0: version "13.0.6" resolved "https://registry.yarnpkg.com/next/-/next-13.0.6.tgz#f9a2e9e2df9ad60e1b6b716488c9ad501a383621" integrity sha512-COvigvms2LRt1rrzfBQcMQ2GZd86Mvk1z+LOLY5pniFtL4VrTmhZ9salrbKfSiXbhsD01TrDdD68ec3ABDyscA== @@ -17631,6 +17848,14 @@ performance-now@^2.1.0: resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== +periscopic@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-2.0.3.tgz#326e16c46068172ca9a9d20af1a684cd0796fa99" + integrity sha512-FuCZe61mWxQOJAQFEfmt9FjzebRlcpFz8sFPbyaCKtdusPkMEbA9ey0eARnRav5zAhmXznhaQkKGFAPn7X9NUw== + dependencies: + estree-walker "^2.0.2" + is-reference "^1.1.4" + periscopic@^3.0.0: version "3.0.4" resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.0.4.tgz#b3fbed0d1bc844976b977173ca2cd4a0ef4fa8d1" @@ -19956,6 +20181,16 @@ rehype-ignore@^1.0.1: unified "~10.1.2" unist-util-visit "~4.1.0" +rehype-minify-whitespace@^4.0.0: + version "4.0.5" + resolved "https://registry.yarnpkg.com/rehype-minify-whitespace/-/rehype-minify-whitespace-4.0.5.tgz#5b4781786116216f6d5d7ceadf84e2489dd7b3cd" + integrity sha512-QC3Z+bZ5wbv+jGYQewpAAYhXhzuH/TVRx7z08rurBmh9AbG8Nu8oJnvs9LWj43Fd/C7UIhXoQ7Wddgt+ThWK5g== + dependencies: + hast-util-embedded "^1.0.0" + hast-util-is-element "^1.0.0" + hast-util-whitespace "^1.0.4" + unist-util-is "^4.0.0" + rehype-minify-whitespace@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/rehype-minify-whitespace/-/rehype-minify-whitespace-5.0.1.tgz#79729a0146aa97a9d43e1eb4b5884974e2f37e77" @@ -20439,6 +20674,15 @@ remark-mdx@1.6.22: remark-parse "8.0.3" unified "9.2.0" +remark-mdx@2.0.0-next.9: + version "2.0.0-next.9" + resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.0.0-next.9.tgz#3e2088550ddd4264ce48bca15fb297569d369e65" + integrity sha512-I5dCKP5VE18SMd5ycIeeEk8Hl6oaldUY6PIvjrfm65l7d0QRnLqknb62O2g3QEmOxCswcHTtwITtz6rfUIVs+A== + dependencies: + mdast-util-mdx "^0.1.1" + micromark-extension-mdx "^0.2.0" + micromark-extension-mdxjs "^0.3.0" + remark-mdx@^2.0.0: version "2.1.2" resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.1.2.tgz#eea2784fa5697e14f6e0686700077986b88b8078" @@ -20489,6 +20733,13 @@ remark-parse@^10.0.0: mdast-util-from-markdown "^1.0.0" unified "^10.0.0" +remark-parse@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" + integrity sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw== + dependencies: + mdast-util-from-markdown "^0.8.0" + remark-preset-lint-consistent@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/remark-preset-lint-consistent/-/remark-preset-lint-consistent-5.1.1.tgz#c870a2379e109cb6d7a10cd2d3b91f34e3f89e71" @@ -20552,7 +20803,7 @@ remark-smartypants@^2.0.0: retext-smartypants "^5.1.0" unist-util-visit "^4.1.0" -remark-squeeze-paragraphs@4.0.0: +remark-squeeze-paragraphs@4.0.0, remark-squeeze-paragraphs@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead" integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw== @@ -20588,7 +20839,7 @@ repeat-element@^1.1.2: resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== -repeat-string@^1.5.2, repeat-string@^1.5.4, repeat-string@^1.6.1: +repeat-string@^1.0.0, repeat-string@^1.5.2, repeat-string@^1.5.4, repeat-string@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== @@ -22019,6 +22270,15 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +stringify-entities@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-3.1.0.tgz#b8d3feac256d9ffcc9fa1fefdcf3ca70576ee903" + integrity sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg== + dependencies: + character-entities-html4 "^1.0.0" + character-entities-legacy "^1.0.0" + xtend "^4.0.0" + stringify-entities@^4.0.0, stringify-entities@^4.0.2: version "4.0.3" resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.3.tgz#cfabd7039d22ad30f3cc435b0ca2c1574fc88ef8" @@ -23159,6 +23419,18 @@ unified@^10.0.0, unified@^10.1.0, unified@~10.1.1, unified@~10.1.2: trough "^2.0.0" vfile "^5.0.0" +unified@^9.2.0: + version "9.2.2" + resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.2.tgz#67649a1abfc3ab85d2969502902775eb03146975" + integrity sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ== + dependencies: + bail "^1.0.0" + extend "^3.0.0" + is-buffer "^2.0.0" + is-plain-obj "^2.0.0" + trough "^1.0.0" + vfile "^4.0.0" + union-value@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" @@ -23284,7 +23556,7 @@ unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0: dependencies: "@types/unist" "^2.0.0" -unist-util-position@^3.0.0: +unist-util-position@^3.0.0, unist-util-position@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47" integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== @@ -23303,6 +23575,13 @@ unist-util-remove-position@^2.0.0: dependencies: unist-util-visit "^2.0.0" +unist-util-remove-position@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-3.0.0.tgz#4cd19e82c8e665f462b6acfcfd0a8353235a88e9" + integrity sha512-17kIOuolVuK16LMb9KyMJlqdfCtlfQY5FjY3Sdo9iC7F5wqdXhNjMq0PBvMpkVNNnAmHxXssUW+rZ9T2zbP0Rg== + dependencies: + unist-util-visit "^2.0.0" + unist-util-remove-position@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz#d5b46a7304ac114c8d91990ece085ca7c2c135c8" From 1a3b74f2cbc4a0e4147d5ef1ead009d83b02215a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Dec 2022 04:08:00 +0000 Subject: [PATCH 27/29] chore(deps): bump postcss from 8.4.19 to 8.4.20 Bumps [postcss](https://github.com/postcss/postcss) from 8.4.19 to 8.4.20. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/8.4.19...8.4.20) --- updated-dependencies: - dependency-name: postcss dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 20ef9e27390..3a8c66b151a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -18778,9 +18778,9 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.2, postcss@^7.0.27: source-map "^0.6.1" postcss@^8.1.10, postcss@^8.2.0, postcss@^8.4.18, postcss@^8.4.19, postcss@^8.4.4, postcss@^8.4.5, postcss@^8.4.6: - version "8.4.19" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.19.tgz#61178e2add236b17351897c8bcc0b4c8ecab56fc" - integrity sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA== + version "8.4.20" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.20.tgz#64c52f509644cecad8567e949f4081d98349dc56" + integrity sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g== dependencies: nanoid "^3.3.4" picocolors "^1.0.0" From 909fe710ca6eeda9ee53230e17a4a32dd58fed0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Dec 2022 04:11:48 +0000 Subject: [PATCH 28/29] chore(deps): bump daisyui from 2.42.1 to 2.43.0 Bumps [daisyui](https://github.com/saadeghi/daisyui) from 2.42.1 to 2.43.0. - [Release notes](https://github.com/saadeghi/daisyui/releases) - [Changelog](https://github.com/saadeghi/daisyui/blob/master/CHANGELOG.md) - [Commits](https://github.com/saadeghi/daisyui/commits) --- updated-dependencies: - dependency-name: daisyui dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 20ef9e27390..0d58dc6b8e3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8789,9 +8789,9 @@ d@1, d@^1.0.1: type "^1.0.1" daisyui@^2.0.6: - version "2.42.1" - resolved "https://registry.yarnpkg.com/daisyui/-/daisyui-2.42.1.tgz#68a5778249117bf013be93808ef091256ee54c54" - integrity sha512-IVeEvP8gvOzHR47fMrOp2YocQJMRmYskhdt7OsuhKJNn+YzLRGOpVpY7AGXt/56pYeYy7h03THHXRTW5cVU9rQ== + version "2.43.0" + resolved "https://registry.yarnpkg.com/daisyui/-/daisyui-2.43.0.tgz#c449288cd27e84b3db23a7afb95bbd43afa9ae59" + integrity sha512-0nwDQggoRB6F6Oezmgkx+9bJG7Xz8IYxgZK6/wdKN1RQZtYOTk+9DO1bsf9lyYyJ/NSBwgPKwkNnuuQFAPJCGg== dependencies: color "^4.2" css-selector-tokenizer "^0.8.0" From 0875c00c362cb86ead7414391c216a4fcb5f79b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Dec 2022 04:13:21 +0000 Subject: [PATCH 29/29] chore(deps-dev): bump @types/node from 18.11.12 to 18.11.13 Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.11.12 to 18.11.13. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 20ef9e27390..405672435ac 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5296,9 +5296,9 @@ "@types/unist" "*" "@types/node@*", "@types/node@>=10.0.0", "@types/node@^18.0.0": - version "18.11.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.12.tgz#89e7f8aa8c88abf432f9bd594888144d7dba10aa" - integrity sha512-FgD3NtTAKvyMmD44T07zz2fEf+OKwutgBCEVM8GcvMGVGaDktiLNTDvPwC/LUe3PinMW+X6CuLOF2Ui1mAlSXg== + version "18.11.13" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.13.tgz#dff34f226ec1ac0432ae3b136ec5552bd3b9c0fe" + integrity sha512-IASpMGVcWpUsx5xBOrxMj7Bl8lqfuTY7FKAnPmu5cHkfQVWF8GulWS1jbRqA934qZL35xh5xN/+Xe/i26Bod4w== "@types/node@^14.0.0": version "14.18.26"